Brizy – Page Builder - Version 1.0.62

Version Description

  • 2019-03-06 =
  • New: Border Styles on mobile and tablet for all containers (Sections, Row, Column)
  • New: Added wp language placeholder
  • New: Added facebook placeholders
  • Fixed: Vertical align option on mobile
  • Fixed: SectionFooter toolbar icon that shows that its a global block missing
  • Fixed: Increased the image quality to 100%
  • Fixed: The edit with Brizy buttons
  • Fixed: Removed template select for posts
  • Fixed: Added compatibility with phastpress
  • Fixed: Removed redirect_to_mapped_domain function handled on the hook template_redirect
Download this release

Release Info

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

Code changes from version 1.0.61 to 1.0.62

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
- Stable tag: 1.0.61<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,6 +118,18 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  ### 1.0.61 - 2019-02-21 ###
122
  * New: Added column revert option for tablet and mobile device modes
123
  * New: Added filters for support and upgrade to pro urls
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
+ Stable tag: 1.0.62<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 1.0.62 - 2019-03-06 ###
122
+ * New: Border Styles on mobile and tablet for all containers (Sections, Row, Column)
123
+ * New: Added wp language placeholder
124
+ * New: Added facebook placeholders
125
+ * Fixed: Vertical align option on mobile
126
+ * Fixed: SectionFooter toolbar icon that shows that it’s a global block missing
127
+ * Fixed: Increased the image quality to 100%
128
+ * Fixed: The edit with Brizy buttons
129
+ * Fixed: Removed template select for posts
130
+ * Fixed: Added compatibility with phastpress
131
+ * Fixed: Removed redirect_to_mapped_domain function handled on the hook template_redirect
132
+
133
  ### 1.0.61 - 2019-02-21 ###
134
  * New: Added column revert option for tablet and mobile device modes
135
  * New: Added filters for support and upgrade to pro urls
admin/static/css/style.css CHANGED
@@ -51,10 +51,8 @@
51
  .brizy-buttons-gutenberg {
52
  height: 300px;
53
  border: 1px solid #dedede;
54
- background:#f9f9f9;
55
  margin-top: 10px;
56
- margin-left: 20%;
57
- margin-right: 20%;
58
  line-height: 300px;
59
  text-align: center;
60
  }
@@ -79,11 +77,11 @@
79
  color: #fff !important;
80
  font-style: italic;
81
  line-height: 1;
82
- height: auto;
83
  display: inline-flex;
84
  align-items: center;
85
  text-decoration: none;
86
  transition: all 200ms linear;
 
87
  }
88
 
89
  .brizy-button img {
@@ -102,6 +100,7 @@
102
  }
103
 
104
  .brizy-button--primary {
 
105
  color: #fff !important;
106
  border-color: #d62c64 !important;
107
  background-color: #d62c64 !important;
@@ -257,6 +256,6 @@
257
  height: 1em;
258
  position: relative;
259
  color: #efefef;
260
- fill: #efefef;
261
  stroke: none;
262
  }
51
  .brizy-buttons-gutenberg {
52
  height: 300px;
53
  border: 1px solid #dedede;
54
+ background: #f9f9f9;
55
  margin-top: 10px;
 
 
56
  line-height: 300px;
57
  text-align: center;
58
  }
77
  color: #fff !important;
78
  font-style: italic;
79
  line-height: 1;
 
80
  display: inline-flex;
81
  align-items: center;
82
  text-decoration: none;
83
  transition: all 200ms linear;
84
+ height: 33px;
85
  }
86
 
87
  .brizy-button img {
100
  }
101
 
102
  .brizy-button--primary {
103
+ height: 33px;
104
  color: #fff !important;
105
  border-color: #d62c64 !important;
106
  background-color: #d62c64 !important;
256
  height: 1em;
257
  position: relative;
258
  color: #efefef;
259
+ fill: #efefef;
260
  stroke: none;
261
  }
admin/static/js/script.js CHANGED
@@ -16,8 +16,14 @@ jQuery(document).ready(function ($) {
16
 
17
  insertBrizyBtn: function () {
18
  $('#editor').find('.edit-post-header-toolbar').append($('#brizy-gutenberg-btn-switch-mode').html());
19
- $('#editor').find('.editor-block-list__layout>*').css('display','none');
20
- $('#editor').find('.editor-block-list__layout').append($('#brizy-gutenberg-btn-middle').html())
 
 
 
 
 
 
21
  },
22
 
23
  init: function () {
16
 
17
  insertBrizyBtn: function () {
18
  $('#editor').find('.edit-post-header-toolbar').append($('#brizy-gutenberg-btn-switch-mode').html());
19
+
20
+ var html = $('#brizy-gutenberg-btn-middle').html();
21
+
22
+ if(html)
23
+ {
24
+ $('#editor').find('.editor-block-list__layout>*').css('display', 'none');
25
+ $('#editor').find('.editor-block-list__layout').append(html);
26
+ }
27
  },
28
 
29
  init: function () {
autoload.php CHANGED
@@ -1,6 +1,9 @@
1
  <?php
2
 
3
  include_once "vendor/autoload.php";
 
 
 
4
 
5
  /**.
6
  * @param $class_name
1
  <?php
2
 
3
  include_once "vendor/autoload.php";
4
+ include_once "vendor/twig/twig/lib/Twig/Autoloader.php";
5
+
6
+ Twig_Autoloader::register(true);
7
 
8
  /**.
9
  * @param $class_name
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 1.0.61
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -20,8 +20,8 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
- define( 'BRIZY_VERSION', '1.0.61' );
24
- define( 'BRIZY_EDITOR_VERSION', '1.0.86' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
@@ -30,8 +30,8 @@ define( 'BRIZY_MAX_REVISIONS_TO_KEEP', 100 );
30
 
31
  include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/autoload.php';
32
 
33
-
34
  add_action( 'plugins_loaded', 'brizy_load' );
 
35
  add_action( 'upgrader_process_complete', 'brizy_upgrade_completed', 10, 2 );
36
 
37
  register_activation_hook( BRIZY_FILE, 'brizy_install' );
@@ -48,6 +48,9 @@ function brizy_load() {
48
  $instance = Brizy_Editor::get();
49
  }
50
 
 
 
 
51
 
52
  function brizy_notices() {
53
  ?>
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.62
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
+ define( 'BRIZY_VERSION', '1.0.62' );
24
+ define( 'BRIZY_EDITOR_VERSION', '1.0.87' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
30
 
31
  include_once rtrim( BRIZY_PLUGIN_PATH, "/" ) . '/autoload.php';
32
 
 
33
  add_action( 'plugins_loaded', 'brizy_load' );
34
+ add_action( 'plugins_loaded', 'brizy_load_compatibilities', 0 );
35
  add_action( 'upgrader_process_complete', 'brizy_upgrade_completed', 10, 2 );
36
 
37
  register_activation_hook( BRIZY_FILE, 'brizy_install' );
48
  $instance = Brizy_Editor::get();
49
  }
50
 
51
+ function brizy_load_compatibilities() {
52
+ new Brizy_Compatibilities_Init();
53
+ }
54
 
55
  function brizy_notices() {
56
  ?>
compatibilities/gutenberg.php CHANGED
@@ -88,34 +88,38 @@ class Brizy_Compatibilities_Gutenberg {
88
 
89
  if ( $post->uses_editor() ) {
90
  $edit_url = esc_url( admin_url( 'admin-post.php?action=_brizy_admin_editor_disable&post=' . get_the_ID() ) );
91
- echo
92
- '<script id="brizy-gutenberg-btn-switch-mode" type="text/html">
93
- <div class="brizy-buttons" style="margin-top:15px;">
94
- <a class="brizy-button brizy-button--primary enable-brizy-editor" type="button" href="' . $edit_url . '" style="padding:5px 27px 5px;">' .
95
- '<img src="' . plugins_url( '../admin/static/img/arrow.png', __FILE__ ) . '" class="brizy-button--arrow"/> ' . __( 'Back to WordPress Editor', 'brizy' ) . '
96
- </a>
97
- </div>
98
- </script>';
99
- echo
100
- '<script id="brizy-gutenberg-btn-middle" type="text/html">
101
- <div class="brizy-buttons-gutenberg" style="margin-top:15px;">
102
- <a class="brizy-button brizy-button--primary " type="button" href="' . $continueUrl . '" style="padding:5px 27px 5px;">'
103
- . __( 'Continue to edit with ', 'brizy' ) . '&nbsp;
104
- <img src="' . plugins_url( '../admin/static/img/brizy.png', __FILE__ ) . '" class="brizy-button--arrow"/>
105
- </a>
106
- </div>
107
- </script>';
 
 
 
 
108
  } else {
109
  $edit_url = esc_url( admin_url( 'admin-post.php?action=_brizy_admin_editor_enable&post=' . get_the_ID() ) );
110
- echo
111
- '<script id="brizy-gutenberg-btn-switch-mode" type="text/html">
112
  <div class="brizy-buttons" style="margin-top:15px;">
113
- <a class="brizy-button brizy-button--primary enable-brizy-editor" type="button" href="' . $edit_url . '" style="padding:5px 27px 5px;">' .
114
- esc_html__( 'Edit with', 'brizy' ) .
115
- '<img src="' . $log_dir . 'brizy.png" srcset="' . $log_dir . 'brizy.png' . ' 1x, ' . $log_dir . 'brizy-2x.png 2x" class="brizy-logo">
116
  </a>
117
  </div>
118
- </script>';
 
119
  }
120
  } catch ( Exception $e ) {
121
 
88
 
89
  if ( $post->uses_editor() ) {
90
  $edit_url = esc_url( admin_url( 'admin-post.php?action=_brizy_admin_editor_disable&post=' . get_the_ID() ) );
91
+ ?>
92
+ <script id="brizy-gutenberg-btn-switch-mode" type="text/html">
93
+ <div class="brizy-buttons" style="margin-top:15px;">
94
+ <a class="brizy-button brizy-button--primary enable-brizy-editor" type="button"
95
+ href="<?php echo $edit_url ?>" style="padding:5px 27px 5px;">
96
+ <img src="<?php echo plugins_url( '../admin/static/img/arrow.png', __FILE__ ) ?>"
97
+ class="brizy-button--arrow"/> <?php echo __( 'Back to WordPress Editor', 'brizy' ) ?>
98
+ </a>
99
+ </div>
100
+ </script>
101
+ <script id="brizy-gutenberg-btn-middle" type="text/html">
102
+ <div class="brizy-buttons-gutenberg" style="margin-top:15px;">
103
+ <a class="brizy-button brizy-button--primary " type="button" href="<?php echo $continueUrl; ?>"
104
+ style="padding:5px 27px 5px;"><?php echo __( 'Continue to edit with ', 'brizy' ); ?>&nbsp;
105
+ <img src="<?php echo plugins_url( '../admin/static/img/brizy.png', __FILE__ ); ?>"
106
+ class="brizy-button--arrow"/>
107
+ </a>
108
+ </div>
109
+ </script>
110
+
111
+ <?php
112
  } else {
113
  $edit_url = esc_url( admin_url( 'admin-post.php?action=_brizy_admin_editor_enable&post=' . get_the_ID() ) );
114
+ ?>
115
+ <script id="brizy-gutenberg-btn-switch-mode" type="text/html">
116
  <div class="brizy-buttons" style="margin-top:15px;">
117
+ <a class="brizy-button brizy-button--primary enable-brizy-editor" type="button" href="<?php echo $edit_url;?>" style="padding:5px 27px 5px;"><?php echo esc_html__( 'Edit with', 'brizy' ) ?>
118
+ <img src="<?php echo $log_dir;?>brizy.png" srcset="<?php echo $log_dir ?>brizy.png 1x, <?php echo $log_dir;?>brizy-2x.png 2x" class="brizy-logo">
 
119
  </a>
120
  </div>
121
+ </script>
122
+ <?php
123
  }
124
  } catch ( Exception $e ) {
125
 
compatibilities/init.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Compatibilities_Init {
4
+
5
+ public function __construct() {
6
+ $this->loadCompatibilities();
7
+ }
8
+
9
+ private function loadCompatibilities() {
10
+ global $wp_version;
11
+
12
+ if ( function_exists( 'w3tc_add_ob_callback' ) || function_exists( 'w3tc_class_autoload' ) ) {
13
+ new Brizy_Compatibilities_Wtc();
14
+ }
15
+
16
+ $version_compare = version_compare( $wp_version, '5' );
17
+
18
+ if ( function_exists( 'gutenberg_init' ) || $version_compare >= 0 ) {
19
+ new Brizy_Compatibilities_Gutenberg();
20
+ }
21
+
22
+ if ( function_exists( 'autoptimize' ) ) {
23
+ new Brizy_Compatibilities_Autoptimize();
24
+ }
25
+
26
+ if ( defined( 'ICL_SITEPRESS_VERSION' ) ) {
27
+ new Brizy_Compatibilities_WPML();
28
+ }
29
+
30
+ if ( class_exists( 'LiteSpeed_Cache_Config' ) ) {
31
+ new Brizy_Compatibilities_LiteSpeed();
32
+ }
33
+
34
+ if ( function_exists( 'fvm_cachepath' ) ) {
35
+ new Brizy_Compatibilities_FastVelocityMinify();
36
+ }
37
+
38
+ if ( class_exists( 'Phast_Plugins_Bootstrap' ) ) {
39
+ new Brizy_Compatibilities_Phastpress();
40
+ }
41
+
42
+ if ( function_exists( 'domain_mapping_siteurl' ) ) {
43
+ new Brizy_Compatibilities_WordpressMuDomainMapping();
44
+ }
45
+ }
46
+ }
compatibilities/phastpress.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Compatibility with PhastPress plugin: https://wordpress.org/plugins/phastpress/
4
+ */
5
+ class Brizy_Compatibilities_Phastpress {
6
+
7
+ public function __construct() {
8
+ add_action( 'plugins_loaded', array( $this, 'disable_phastpress' ), 9 );
9
+ }
10
+
11
+ public function disable_phastpress() {
12
+
13
+ if ( ! isset( $_GET['brizy-edit'] ) && ! isset( $_GET['brizy-edit-iframe'] ) ) {
14
+ return;
15
+ }
16
+
17
+ add_filter( 'phastpress_disable', '__return_true' );
18
+ }
19
+ }
compatibilities/wordpress-mu-domain-mapping.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Compatibility with Fast Velocity Minify plugin: https://wordpress.org/plugins/wordpress-mu-domain-mapping/
4
+ */
5
+ class Brizy_Compatibilities_WordpressMuDomainMapping {
6
+
7
+ public function __construct() {
8
+ add_action( 'template_redirect', array( $this, 'remove_redirect_to_mapped_domain' ), 9 );
9
+ }
10
+
11
+ public function remove_redirect_to_mapped_domain() {
12
+
13
+ if ( ! isset( $_GET['brizy-edit'] ) && ! isset( $_GET['brizy-edit-iframe'] ) ) {
14
+ return;
15
+ }
16
+
17
+ remove_action( 'template_redirect', 'redirect_to_mapped_domain' );
18
+ }
19
+ }
content/placeholder-extractor.php CHANGED
@@ -33,7 +33,7 @@ class Brizy_Content_PlaceholderExtractor {
33
  preg_match_all( $expression, $content, $matches );
34
 
35
  if ( count( $matches['placeholder'] ) == 0 ) {
36
- return array($placeholders, $content);
37
  }
38
 
39
  foreach ( $matches['placeholder'] as $i => $name ) {
@@ -51,9 +51,16 @@ class Brizy_Content_PlaceholderExtractor {
51
  continue;
52
  }
53
 
54
- $pos = strpos( $content, $placeholder->getPlaceholder() );
 
 
 
 
 
 
 
55
  if ( $pos !== false ) {
56
- $content = substr_replace( $content, $placeholder->getUid(), $pos, strlen( $placeholder->getPlaceholder() ) );
57
  }
58
 
59
  }
33
  preg_match_all( $expression, $content, $matches );
34
 
35
  if ( count( $matches['placeholder'] ) == 0 ) {
36
+ return array( $placeholders, $content );
37
  }
38
 
39
  foreach ( $matches['placeholder'] as $i => $name ) {
51
  continue;
52
  }
53
 
54
+ $pos = strpos( $content, $placeholder->getPlaceholder() );
55
+
56
+ // if ( function_exists( 'mb_strpos' ) ) {
57
+ // $pos = mb_strpos( utf8_encode( $content ), utf8_encode($placeholder->getPlaceholder()) );
58
+ // }
59
+
60
+ $length = strlen( $placeholder->getPlaceholder() );
61
+
62
  if ( $pos !== false ) {
63
+ $content = substr_replace( $content, $placeholder->getUid(), $pos, $length );
64
  }
65
 
66
  }
content/placeholders/unique-page-url.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_Placeholders_UniquePageUrl extends Brizy_Content_Placeholders_Simple {
4
+
5
+
6
+ /**
7
+ * Brizy_Content_Placeholders_Simple constructor.
8
+ *
9
+ * @param $label
10
+ * @param $placeholder
11
+ * @param $value
12
+ * @param string $display
13
+ */
14
+ public function __construct( $label, $placeholder = 'brizy_dc_current_page_unique_url', $value = null, $display = Brizy_Content_Placeholders_Abstract::DISPLAY_INLINE ) {
15
+ $this->setLabel( $label );
16
+ $this->setPlaceholder( $placeholder );
17
+ $this->setDisplay( $display );
18
+
19
+ $this->value = null;
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
+
32
+ $url = home_url( add_query_arg(array(), $wp->request) );
33
+
34
+ $closure = function () {
35
+ return false;
36
+ };
37
+
38
+ add_filter( 'pre_term_link', $closure );
39
+
40
+ $object = get_queried_object();
41
+
42
+ if(is_archive()) {
43
+ $url = add_query_arg($wp->query_vars, home_url() );
44
+ }
45
+
46
+ if ( $object instanceof WP_User ) {
47
+ $file = home_url( '/' );
48
+ $url = $file . '?author=' . $object->ID;
49
+ }
50
+
51
+ if ( $object instanceof WP_Post ) {
52
+ $url = $object->guid;
53
+ }
54
+
55
+ if ( $object instanceof WP_Term ) {
56
+ $url = get_term_link( $object );
57
+ }
58
+
59
+ remove_filter( 'pre_term_link', $closure );
60
+
61
+ return $url;
62
+ }
63
+
64
+
65
+ }
content/providers/free-provider.php CHANGED
@@ -18,7 +18,9 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
18
 
19
  return array(
20
  new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
21
- new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' )
 
 
22
  );
23
  }
24
  }
18
 
19
  return array(
20
  new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
21
+ new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' ),
22
+ new Brizy_Content_Placeholders_UniquePageUrl( 'Uniquer page url','brizy_dc_current_page_unique_url' ),
23
+ new Brizy_Content_Placeholders_Simple( 'WP Language', 'brizy_dc_page_language', get_locale() )
24
  );
25
  }
26
  }
editor.php CHANGED
@@ -26,7 +26,6 @@ class Brizy_Editor {
26
  return;
27
  }
28
 
29
- add_action( 'after_setup_theme', array( $this, 'loadCompatibilityClasses' ), - 2000 );
30
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
31
  }
32
 
@@ -62,7 +61,13 @@ class Brizy_Editor {
62
 
63
  $supported_post_types = $this->supported_post_types();
64
  $supported_post_types[] = Brizy_Admin_Templates::CP_TEMPLATE;
 
65
  foreach ( $supported_post_types as $type ) {
 
 
 
 
 
66
  add_filter( "theme_{$type}_templates", array( $this, 'registerPageTemplates' ) );
67
  }
68
  }
@@ -123,41 +128,6 @@ class Brizy_Editor {
123
  return $num;
124
  }
125
 
126
- public function loadCompatibilityClasses() {
127
-
128
- global $wp_version;
129
-
130
- if ( function_exists( 'w3tc_add_ob_callback' ) || function_exists( 'w3tc_class_autoload' ) ) {
131
- new Brizy_Compatibilities_Wtc();
132
- }
133
-
134
- $version_compare = version_compare( $wp_version, '5' );
135
-
136
- if ( function_exists( 'gutenberg_init' ) || $version_compare >= 0 ) {
137
- new Brizy_Compatibilities_Gutenberg();
138
- }
139
-
140
- if ( function_exists( 'autoptimize' ) ) {
141
- new Brizy_Compatibilities_Autoptimize();
142
- }
143
-
144
- if ( defined( 'ICL_SITEPRESS_VERSION' ) ) {
145
- new Brizy_Compatibilities_WPML();
146
- }
147
-
148
- if ( class_exists( 'LiteSpeed_Cache_Config' ) ) {
149
- new Brizy_Compatibilities_LiteSpeed();
150
- }
151
-
152
- if ( function_exists( 'fvm_cachepath' ) ) {
153
- new Brizy_Compatibilities_FastVelocityMinify();
154
- }
155
-
156
- if ( class_exists( 'WCL_Plugin' ) ) {
157
- new Brizy_Compatibilities_WebcrafticClearfy();
158
- }
159
- }
160
-
161
  /**
162
  * @param $templates
163
  *
26
  return;
27
  }
28
 
 
29
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
30
  }
31
 
61
 
62
  $supported_post_types = $this->supported_post_types();
63
  $supported_post_types[] = Brizy_Admin_Templates::CP_TEMPLATE;
64
+
65
  foreach ( $supported_post_types as $type ) {
66
+
67
+ if ( $type == 'post' ) {
68
+ continue;
69
+ }
70
+
71
  add_filter( "theme_{$type}_templates", array( $this, 'registerPageTemplates' ) );
72
  }
73
  }
128
  return $num;
129
  }
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  /**
132
  * @param $templates
133
  *
editor/asset/static-file.php CHANGED
@@ -52,7 +52,7 @@ abstract class Brizy_Editor_Asset_StaticFile {
52
 
53
  $content = self::get_asset_content( $asset_source );
54
 
55
- if($content!==false) {
56
  file_put_contents( $asset_path, $content );
57
  } else {
58
  return false;
@@ -70,17 +70,17 @@ abstract class Brizy_Editor_Asset_StaticFile {
70
  return true;
71
  }
72
 
73
- protected function create_attachment( $madia_name, $asset_path, $post_id = null, $uid = null ) {
74
- $filetype = wp_check_filetype( $asset_path );
75
 
76
  $attachment = array(
77
  'post_mime_type' => $filetype['type'],
78
- 'post_title' => basename( $asset_path ),
79
  'post_content' => '',
80
  'post_status' => 'inherit'
81
  );
82
 
83
- $attachment_id = wp_insert_attachment( $attachment, $asset_path, $post_id );
84
 
85
  if ( is_wp_error( $attachment_id ) || $attachment_id === 0 ) {
86
  return false;
@@ -93,7 +93,7 @@ abstract class Brizy_Editor_Asset_StaticFile {
93
  include_once ABSPATH . "/wp-admin/includes/image.php";
94
  }
95
 
96
- $attach_data = wp_generate_attachment_metadata( $attachment_id, $asset_path );
97
  wp_update_attachment_metadata( $attachment_id, $attach_data );
98
 
99
  return $attachment_id;
52
 
53
  $content = self::get_asset_content( $asset_source );
54
 
55
+ if ( $content !== false ) {
56
  file_put_contents( $asset_path, $content );
57
  } else {
58
  return false;
70
  return true;
71
  }
72
 
73
+ protected function create_attachment( $madia_name, $absolute_asset_path, $relative_asset_path, $post_id = null, $uid = null ) {
74
+ $filetype = wp_check_filetype( $absolute_asset_path );
75
 
76
  $attachment = array(
77
  'post_mime_type' => $filetype['type'],
78
+ 'post_title' => basename( $absolute_asset_path ),
79
  'post_content' => '',
80
  'post_status' => 'inherit'
81
  );
82
 
83
+ $attachment_id = wp_insert_attachment( $attachment, $relative_asset_path, $post_id );
84
 
85
  if ( is_wp_error( $attachment_id ) || $attachment_id === 0 ) {
86
  return false;
93
  include_once ABSPATH . "/wp-admin/includes/image.php";
94
  }
95
 
96
+ $attach_data = wp_generate_attachment_metadata( $attachment_id, $absolute_asset_path );
97
  wp_update_attachment_metadata( $attachment_id, $attach_data );
98
 
99
  return $attachment_id;
editor/crop-cache-media.php CHANGED
@@ -67,7 +67,7 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
67
  }
68
  }
69
 
70
- $attachmentId = $this->create_attachment( $madia_name, $original_asset_path, $this->post_id, $madia_name );
71
  }
72
 
73
  if ( $attachmentId === 0 || is_wp_error( $attachmentId ) ) {
@@ -111,13 +111,18 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
111
  // resize image
112
  if ( $media_filter ) {
113
 
114
- if ( ! file_exists( $resized_image_path ) ) {
115
 
116
  @mkdir( $resized_page_asset_path, 0755, true );
117
 
118
  // Set artificially high because GD uses uncompressed images in memory.
119
  wp_raise_memory_limit( 'image' );
120
 
 
 
 
 
 
121
  $imagine = $this->crop( $original_asset_path, $media_filter );
122
 
123
  if ( $imagine ) {
@@ -126,9 +131,10 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
126
 
127
  return $resized_image_path;
128
  }
 
 
129
  }
130
  }
131
-
132
  return $resized_image_path;
133
  }
134
 
67
  }
68
  }
69
 
70
+ $attachmentId = $this->create_attachment( $madia_name, $original_asset_path, $original_asset_path_relative, $this->post_id, $madia_name );
71
  }
72
 
73
  if ( $attachmentId === 0 || is_wp_error( $attachmentId ) ) {
111
  // resize image
112
  if ( $media_filter ) {
113
 
114
+ if ( true || ! file_exists( $resized_image_path ) ) {
115
 
116
  @mkdir( $resized_page_asset_path, 0755, true );
117
 
118
  // Set artificially high because GD uses uncompressed images in memory.
119
  wp_raise_memory_limit( 'image' );
120
 
121
+ $closure = function ( $arg ) {
122
+ return 100;
123
+ };
124
+ add_filter('jpeg_quality', $closure );
125
+
126
  $imagine = $this->crop( $original_asset_path, $media_filter );
127
 
128
  if ( $imagine ) {
131
 
132
  return $resized_image_path;
133
  }
134
+
135
+ remove_filter('jpeg_quality', $closure );
136
  }
137
  }
 
138
  return $resized_image_path;
139
  }
140
 
languages/texts.php CHANGED
@@ -8,22 +8,22 @@ class Brizy_Languages_Texts
8
  // First Block Adder
9
  "START BUILDING YOUR PAGE" => __("START BUILDING YOUR PAGE", "brizy"),
10
  "Press the button above to add blocks" => __(
11
- "Press the button above to add blocks",
12
- "brizy"
13
  ),
14
  "SWITCH TO DESKTOP" => __("SWITCH TO DESKTOP", "brizy"),
15
  "Switch to desktop to add blocks" => __(
16
- "Switch to desktop to add blocks",
17
- "brizy"
18
  ),
19
-
20
  // Last Block Adder
21
  "Add a new block" => __("Add a new block", "brizy"),
22
  "Press the button to add blocks" => __(
23
- "Press the button to add blocks",
24
- "brizy"
25
  ),
26
-
27
  // Left SideBar
28
  //-> Add Elements
29
  "Add Elements" => __("Add Elements", "brizy"),
@@ -86,12 +86,12 @@ class Brizy_Languages_Texts
86
  "Featured Image" => __("Featured Image", "brizy"),
87
  "Submit an Issue" => __("Submit an Issue", "brizy"),
88
  "Upgrade to Pro" => __("Upgrade to Pro", "brizy"),
89
-
90
  // Fixed Bottom Panel
91
  "Save HTML" => __("Save HTML", "brizy"),
92
  "Update" => __("Update", "brizy"),
93
  "Publish" => __("Publish", "brizy"),
94
-
95
  // Right SideBar
96
  "More Settings" => __("More Settings", "brizy"),
97
  "Advanced" => __("Advanced", "brizy"),
@@ -100,11 +100,13 @@ class Brizy_Languages_Texts
100
  "Disable on Tablet" => __("Disable on Tablet", "brizy"),
101
  "Enable on Mobile" => __("Enable on Mobile", "brizy"),
102
  "Enable on Tablet" => __("Enable on Tablet", "brizy"),
 
103
  "Z-index" => __("Z-index", "brizy"),
104
  "Anchor Name" => __("Anchor Name", "brizy"),
105
  "CSS Class" => __("CSS Class", "brizy"),
106
-
107
-
 
108
  // Section
109
  "Slider" => __("Slider", "brizy"),
110
  //-> Make a Slider
@@ -133,15 +135,15 @@ class Brizy_Languages_Texts
133
  "Custom" => __("Custom", "brizy"),
134
  "Full" => __("Full", "brizy"),
135
  "Hover Transition" => __("Hover Transition", "brizy"),
136
-
137
  "Carousel" => __("Carousel", "brizy"),
138
  "Swipe" => __("Swipe", "brizy"),
139
-
140
  // Not Found
141
  "Missing Element" => __("Missing Element", "brizy"),
142
  "Could not find" => __("Could not find", "brizy"),
143
  "component" => __("component", "brizy"),
144
-
145
  // Popover
146
  "Add New Column" => __("Add New Column", "brizy"),
147
  //-> Bg
@@ -284,24 +286,24 @@ class Brizy_Languages_Texts
284
  "Anchor" => __("Anchor", "brizy"),
285
  "Link to" => __("Link to", "brizy"),
286
  "Open In New Tab" => __("Open In New Tab", "brizy"),
287
-
288
  // Option Style Element: padding, margin, border etc
289
  "Padding" => __("Padding", "brizy"),
290
  "Margin" => __("Margin", "brizy"),
291
  "Corner" => __("Corner", "brizy"),
292
  "Fill" => __("Fill", "brizy"),
293
  "Spacing" => __("Spacing", "brizy"),
294
-
295
  // Shadow
296
  "Shadow" => __("Shadow","brizy"),
297
-
298
  // State
299
  "Normal" => __("Normal", "brizy"),
300
  "Hover" => __("Hover", "brizy"),
301
-
302
  // Reverse Columns
303
  "Reverse Columns" => __("Reverse Columns", "brizy"),
304
-
305
  // Other Option in Shortcode
306
  //-> CountDown
307
  "Date" => __("Date", "brizy"),
@@ -361,7 +363,7 @@ class Brizy_Languages_Texts
361
  "Number" => __("Number", "brizy"),
362
  "Paragraph" => __("Paragraph", "brizy"),
363
  "Select" => __("Select", "brizy"),
364
-
365
  //-> Image
366
  "Style" => __("Style", "brizy"),
367
  "Opacity" => __("Opacity", "brizy"),
@@ -387,25 +389,51 @@ class Brizy_Languages_Texts
387
  "Controls" => __("Controls", "brizy"),
388
  "Cover" => __("Cover", "brizy"),
389
  "Play" => __("Play", "brizy"),
390
-
391
  // Header
392
  "Header" => __("Header", "brizy"),
393
-
394
  // Footer
395
  "Footer" => __("Footer", "brizy"),
396
  "MultiPage" => __("MultiPage", "brizy"),
397
-
398
  // SectionMenu
399
  "Type" => __("Type", "brizy"),
400
  "Static" => __("Static", "brizy"),
401
-
402
  // No matches found
403
  "No matches found" => __("No matches found", "brizy"),
404
-
405
  // Popup
406
  "Popup" => __("Popup", "brizy"),
407
  "Close" => __("Close", "brizy"),
408
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  // WordPress
410
  "Query" => __("Query", "brizy"),
411
  "Product ID" => __("Product ID", "brizy"),
@@ -486,6 +514,7 @@ class Brizy_Languages_Texts
486
  "in your WordPress admin" => __("in your WordPress admin", "brizy"),
487
  "Drawer Position" => __("Drawer Position", "brizy"),
488
  "anchor-name" => __("anchor-name", "brizy"),
 
489
  );
490
 
491
  return apply_filters('brizy_editor_config_texts', $texts);
8
  // First Block Adder
9
  "START BUILDING YOUR PAGE" => __("START BUILDING YOUR PAGE", "brizy"),
10
  "Press the button above to add blocks" => __(
11
+ "Press the button above to add blocks",
12
+ "brizy"
13
  ),
14
  "SWITCH TO DESKTOP" => __("SWITCH TO DESKTOP", "brizy"),
15
  "Switch to desktop to add blocks" => __(
16
+ "Switch to desktop to add blocks",
17
+ "brizy"
18
  ),
19
+
20
  // Last Block Adder
21
  "Add a new block" => __("Add a new block", "brizy"),
22
  "Press the button to add blocks" => __(
23
+ "Press the button to add blocks",
24
+ "brizy"
25
  ),
26
+
27
  // Left SideBar
28
  //-> Add Elements
29
  "Add Elements" => __("Add Elements", "brizy"),
86
  "Featured Image" => __("Featured Image", "brizy"),
87
  "Submit an Issue" => __("Submit an Issue", "brizy"),
88
  "Upgrade to Pro" => __("Upgrade to Pro", "brizy"),
89
+
90
  // Fixed Bottom Panel
91
  "Save HTML" => __("Save HTML", "brizy"),
92
  "Update" => __("Update", "brizy"),
93
  "Publish" => __("Publish", "brizy"),
94
+
95
  // Right SideBar
96
  "More Settings" => __("More Settings", "brizy"),
97
  "Advanced" => __("Advanced", "brizy"),
100
  "Disable on Tablet" => __("Disable on Tablet", "brizy"),
101
  "Enable on Mobile" => __("Enable on Mobile", "brizy"),
102
  "Enable on Tablet" => __("Enable on Tablet", "brizy"),
103
+ "Write your CSS here..." => __("Write your CSS here...", "brizy"),
104
  "Z-index" => __("Z-index", "brizy"),
105
  "Anchor Name" => __("Anchor Name", "brizy"),
106
  "CSS Class" => __("CSS Class", "brizy"),
107
+ "Custom CSS" => __("Custom CSS", "brizy"),
108
+
109
+
110
  // Section
111
  "Slider" => __("Slider", "brizy"),
112
  //-> Make a Slider
135
  "Custom" => __("Custom", "brizy"),
136
  "Full" => __("Full", "brizy"),
137
  "Hover Transition" => __("Hover Transition", "brizy"),
138
+
139
  "Carousel" => __("Carousel", "brizy"),
140
  "Swipe" => __("Swipe", "brizy"),
141
+
142
  // Not Found
143
  "Missing Element" => __("Missing Element", "brizy"),
144
  "Could not find" => __("Could not find", "brizy"),
145
  "component" => __("component", "brizy"),
146
+
147
  // Popover
148
  "Add New Column" => __("Add New Column", "brizy"),
149
  //-> Bg
286
  "Anchor" => __("Anchor", "brizy"),
287
  "Link to" => __("Link to", "brizy"),
288
  "Open In New Tab" => __("Open In New Tab", "brizy"),
289
+
290
  // Option Style Element: padding, margin, border etc
291
  "Padding" => __("Padding", "brizy"),
292
  "Margin" => __("Margin", "brizy"),
293
  "Corner" => __("Corner", "brizy"),
294
  "Fill" => __("Fill", "brizy"),
295
  "Spacing" => __("Spacing", "brizy"),
296
+
297
  // Shadow
298
  "Shadow" => __("Shadow","brizy"),
299
+
300
  // State
301
  "Normal" => __("Normal", "brizy"),
302
  "Hover" => __("Hover", "brizy"),
303
+
304
  // Reverse Columns
305
  "Reverse Columns" => __("Reverse Columns", "brizy"),
306
+
307
  // Other Option in Shortcode
308
  //-> CountDown
309
  "Date" => __("Date", "brizy"),
363
  "Number" => __("Number", "brizy"),
364
  "Paragraph" => __("Paragraph", "brizy"),
365
  "Select" => __("Select", "brizy"),
366
+
367
  //-> Image
368
  "Style" => __("Style", "brizy"),
369
  "Opacity" => __("Opacity", "brizy"),
389
  "Controls" => __("Controls", "brizy"),
390
  "Cover" => __("Cover", "brizy"),
391
  "Play" => __("Play", "brizy"),
392
+
393
  // Header
394
  "Header" => __("Header", "brizy"),
395
+
396
  // Footer
397
  "Footer" => __("Footer", "brizy"),
398
  "MultiPage" => __("MultiPage", "brizy"),
399
+
400
  // SectionMenu
401
  "Type" => __("Type", "brizy"),
402
  "Static" => __("Static", "brizy"),
403
+
404
  // No matches found
405
  "No matches found" => __("No matches found", "brizy"),
406
+
407
  // Popup
408
  "Popup" => __("Popup", "brizy"),
409
  "Close" => __("Close", "brizy"),
410
+
411
+ // Facebook
412
+ "Comments" => __("Comments", "brizy"),
413
+ "Like" => __("Like", "brizy"),
414
+ "Recommend" => __("Recommend", "brizy"),
415
+ "Include Share Button" => __("Include Share Button", "brizy"),
416
+ "Show Friends' Faces" => __("Show Friends' Faces", "brizy"),
417
+ "Show Button Counter" => __("Show Button Counter", "brizy"),
418
+ "Dark Scheme" => __("Dark Scheme", "brizy"),
419
+ "Target URL" => __("Target URL", "brizy"),
420
+ "Current Page" => __("Current Page", "brizy"),
421
+ "Custom Page" => __("Custom Page", "brizy"),
422
+ "Include Full Post" => __("Include Full Post", "brizy"),
423
+ "Full Screen" => __("Full Screen", "brizy"),
424
+ "AutoPlay" => __("AutoPlay", "brizy"),
425
+ "Captions" => __("Captions", "brizy"),
426
+ "Timeline" => __("Timeline", "brizy"),
427
+ "Events" => __("Events", "brizy"),
428
+ "Messages" => __("Messages", "brizy"),
429
+ "Use Small Header" => __("Use Small Header", "brizy"),
430
+ "Hide Cover Photo" => __("Hide Cover Photo", "brizy"),
431
+ "Show Friend's Faces" => __("Show Friend's Faces", "brizy"),
432
+ "Facebook Button" => __("Facebook Button", "brizy"),
433
+ "Facebook Comments" => __("Facebook Comments", "brizy"),
434
+ "Facebook Embed" => __("Facebook Embed", "brizy"),
435
+ "Facebook Page" => __("Facebook Page", "brizy"),
436
+
437
  // WordPress
438
  "Query" => __("Query", "brizy"),
439
  "Product ID" => __("Product ID", "brizy"),
514
  "in your WordPress admin" => __("in your WordPress admin", "brizy"),
515
  "Drawer Position" => __("Drawer Position", "brizy"),
516
  "anchor-name" => __("anchor-name", "brizy"),
517
+ "APPS" => __("APPS", "brizy"),
518
  );
519
 
520
  return apply_filters('brizy_editor_config_texts', $texts);
public/editor-build/editor/css/editor.css CHANGED
@@ -4893,7 +4893,7 @@ body.brz::after,body.brz::before{display:none}
4893
  .brz .brz-dfn{font-style:italic}
4894
  .brz .brz-b,.brz .brz-strong{font-weight:700}
4895
  .brz .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
4896
- .brz .brz-a[href]:hover{color:#1aabd8;text-decoration:underline;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
4897
  .brz .brz-a:active,.brz .brz-a:focus,.brz .brz-a:hover{outline:0}
4898
  .brz .brz-a.brz-btn[href]{text-decoration:none}
4899
  .brz .brz-figure{margin:0;min-width:auto;min-height:auto}
@@ -5618,7 +5618,7 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
5618
  .brz .brz-video .brz-video__cover:hover{cursor:pointer}
5619
  .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
5620
  .brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
5621
- .brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:10px;height:auto;word-break:break-all;word-wrap:break-word}
5622
  .brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
5623
  .brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;white-space:pre-wrap;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
5624
  .brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
@@ -5844,6 +5844,8 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
5844
  .brz .brz-root__container.mm-page{position:relative;background:inherit}
5845
  .brz .brz-root__container.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
5846
  .brz .mm-wrapper__blocker.mm-slideout{z-index:1099}
 
 
5847
  .brz .screen-reader-text{display:none}
5848
  .brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}
5849
  .brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}
@@ -5872,6 +5874,7 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
5872
  .brz .media-frame button.media-button-select{margin-top:15px;font-size:13px;line-height:26px;height:28px}
5873
  .brz .media-frame button.browser{color:#555!important;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc}
5874
  .brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}
 
5875
  .brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}
5876
  .brz .media-frame-title h1{padding:0 16px;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:22px;font-weight:600;font-style:normal;line-height:50px;color:#23282d;text-shadow:none;text-transform:capitalize}
5877
  .brz .media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#666;z-index:1000;cursor:pointer;outline:0;text-align:center;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}
@@ -6292,7 +6295,7 @@ body.brz::after,body.brz::before{display:none}
6292
  .brz-ed .brz-dfn{font-style:italic}
6293
  .brz-ed .brz-b,.brz-ed .brz-strong{font-weight:700}
6294
  .brz-ed .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
6295
- .brz-ed .brz-a[href]:hover{color:#1aabd8;text-decoration:underline;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
6296
  .brz-ed .brz-a:active,.brz-ed .brz-a:focus,.brz-ed .brz-a:hover{outline:0}
6297
  .brz-ed .brz-a.brz-btn[href]{text-decoration:none}
6298
  .brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}
@@ -9641,7 +9644,7 @@ body.brz::after,body.brz::before{display:none}
9641
  .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg{font-size:16px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}
9642
  .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg+.brz-span:not(:empty){margin-left:10px}
9643
  .brz-ed .brz-ed-control__tabs__left{position:absolute;z-index:0;left:-38px;top:34px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
9644
- .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab{width:38px;height:41px;background-color:rgba(139,147,154,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-top-left-radius:20px;border-bottom-left-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px;color:#fff;font-size:14px;cursor:pointer;margin-bottom:1px}
9645
  .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}
9646
  .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}
9647
  .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}
@@ -9757,8 +9760,8 @@ body.brz::after,body.brz::before{display:none}
9757
  .brz-ed .brz-ed-control__tabs__content__left .brz-ed-control__tab__content{min-height:89px}
9758
  .brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}
9759
  .brz-ed .brz-ed-option__inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;text-align:left}
9760
- .brz-ed .brz-ed-option__block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;text-align:left}
9761
- .brz-ed .brz-ed-option__block .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__block .brz-ed-option__label{-ms-flex-preferred-size:auto;flex-basis:auto;margin-bottom:6px;margin-right:0}
9762
  .brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}
9763
  .brz-ed .brz-ed-option__advanced{padding-top:15px;min-height:initial!important;color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear;font-size:0}
9764
  .brz-ed .brz-ed-option__advanced .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__advanced .brz-ed-option__label{-ms-flex-preferred-size:100%;flex-basis:100%;color:inherit;font-weight:600;margin:0;margin-left:9px;cursor:pointer;font-size:13px}
@@ -9895,10 +9898,8 @@ body.brz::after,body.brz::before{display:none}
9895
  .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography:last-child{padding-bottom:0}
9896
  .brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(130,139,146,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
9897
  .brz-ed .brz-ed-option__helper:hover{color:rgba(130,139,146,.6)}
9898
- .brz-ed .brz-ed-option__helper:hover .brz-ed-option__helper__content:not(:empty){visibility:visible;opacity:1}
9899
  .brz-ed .brz-ed-option__helper svg{overflow:visible}
9900
- .brz-ed .brz-ed-option__helper__content{font-size:13px;line-height:1;font-family:pn,"Open Sans",Arial,sans-serif;visibility:hidden;width:auto;white-space:nowrap;background-color:#03080f;color:#fff;text-align:center;padding:10px;border-radius:2px;position:absolute;z-index:1;bottom:calc(100% + 6px);left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);will-change:transform,opacity;opacity:0;-webkit-transition:opacity .4s linear;transition:opacity .4s linear;-webkit-transition-delay:.6s;transition-delay:.6s}
9901
- .brz-ed .brz-ed-option__helper__content:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border:5px solid transparent;border-top-color:#03080f}
9902
  .brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}
9903
  .brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
9904
  .brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}
@@ -10088,9 +10089,10 @@ body.brz::after,body.brz::before{display:none}
10088
  .brz-ed .brz-ed-popup__select .brz-control__select--arrow{font-size:10px;right:14px}
10089
  .brz-ed .brz-ed-popup__select .brz-control__select-option{border-bottom-color:transparent;text-align:left;font-size:14px;padding-left:0;padding-right:0;height:30px;line-height:30px}
10090
  .brz-ed .brz-ed-popup__select .brz-control__select-options{padding:15px 28px;top:100%;margin-top:4px;-webkit-box-shadow:0 0 10px 0 rgba(0,0,1,.1);box-shadow:0 0 10px 0 rgba(0,0,1,.1)}
 
10091
  .brz-ed .brz-ed-fixed.brz-ed-fixed-visible{visibility:visible;opacity:1;display:block}
10092
  .brz-ed .brz-ed-popup-header{position:relative;height:79px;background:#292e37;border-radius:5px 5px 0 0;text-align:center}
10093
- .brz-ed .brz-ed-popup-tab-item{position:relative;display:inline-block;width:81px;height:79px;background:#292e37;border-left:1px solid rgba(0,0,0,.7);color:rgba(255,255,255,.5);cursor:pointer}
10094
  .brz-ed .brz-ed-popup-tab-item:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;border-left:1px solid rgba(255,255,255,.05)}
10095
  .brz-ed .brz-ed-popup-tab-item:last-child{border-right:1px solid rgba(0,0,0,.7)}
10096
  .brz-ed .brz-ed-popup-tab-item:last-child:before{content:"";display:block;position:absolute;top:0;right:-2px;bottom:0;border-right:1px solid rgba(255,255,255,.05)}
@@ -10154,7 +10156,7 @@ body.brz::after,body.brz::before{display:none}
10154
  .brz-ed .brz-ed-popup-block__remove .brz-icon-svg{font-size:18px;margin-top:-1px;margin-left:-1px}
10155
  .brz-ed .brz-ed-popup-block:hover .brz-ed-popup-block__remove{opacity:1}
10156
  .brz-ed .brz-ed-popup-block:hover .brz-ed-popup-block-item figcaption{opacity:1}
10157
- @media screen and (min-height:700px){.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{height:500px}}@media (min-width:768px){.brz-ed .brz-ed-popup-blocks{width:694px}}@media screen and (min-height:840px){.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{height:634px}}@media (min-width:992px){.brz-ed .brz-ed-popup-blocks{width:1009px}}.brz-ed .brz-ed-popup-integrations{font-family:pn,"Open Sans",Arial,sans-serif;-webkit-transform:translate(-300px,-300px);transform:translate(-300px,-300px)}
10158
  .brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:560px;overflow:hidden}
10159
  .brz-ed .brz-ed-popup-integrations .brz-ed-alert{margin-bottom:26px}
10160
  .brz-ed .brz-ed-popup-integrations__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track{right:0;width:5px}
@@ -10198,16 +10200,22 @@ body.brz::after,body.brz::before{display:none}
10198
  .brz-ed .brz-ed-popup-integrations__progress-stage:first-of-type{border-radius:.25em 0 0 .25em}
10199
  .brz-ed .brz-ed-popup-integrations__progress .brz-span{display:block;position:relative;height:80px;line-height:80px;padding-left:2.5em;padding-right:2.5em;color:#292e37;background-color:#e0e1e2;border-color:#e0e1e2}
10200
  .brz-ed .brz-ed-popup-integrations__progress .brz-span:after{border-top-width:40px;border-bottom-width:40px;z-index:2;border-left-color:inherit}
 
10201
  .brz-ed .brz-ed-popup-integrations__progress-stage--active .brz-span{background-color:rgba(34,176,218,.25);border-color:rgba(34,176,218,.25);color:#102750}
 
10202
  .brz-ed .brz-ed-popup-integrations__confirmation{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
10203
  .brz-ed .brz-ed-popup-integrations-step{margin-right:36px;margin-left:36px;padding-top:11px}
10204
  .brz-ed .brz-ed-popup-integrations-step__head{font-size:13px;color:#292e37;margin-bottom:19px}
10205
- .brz-ed .brz-ed-popup-integrations-step__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:35px}
 
 
10206
  .brz-ed .brz-ed-popup-integrations-account--delete{cursor:pointer;margin-left:auto;color:#626b70;-webkit-transition:.2s linear color;transition:.2s linear color;font-size:0;line-height:1}
10207
  .brz-ed .brz-ed-popup-integrations-account--delete:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10208
  .brz-ed .brz-ed-popup-integrations-account--delete .brz-icon-svg{font-size:16px}
10209
- .brz-ed .brz-ed-popup-integrations-option__radio .brz-ed-control-radio-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:15px;font-weight:500;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 9px 16px 4px;height:51px;cursor:pointer}
10210
- .brz-ed .brz-ed-popup-integrations-option__radio .brz-ed-control-radio-check{margin-right:10px}
 
 
10211
  .brz-ed .brz-ed-popup-integrations-new__option{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:15px;line-height:1;color:#626b70;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 0 17px 4px;-webkit-transition:.2s linear color;transition:.2s linear color}
10212
  .brz-ed .brz-ed-popup-integrations-new__option:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10213
  .brz-ed .brz-ed-popup-integrations-new__option .brz-icon-svg{font-size:16px;margin-right:10px}
@@ -10226,11 +10234,19 @@ body.brz::after,body.brz::before{display:none}
10226
  .brz-ed .brz-ed-popup-integrations-step__fields-input,.brz-ed .brz-ed-popup-integrations-step__fields-select{max-width:223px;width:100%}
10227
  .brz-ed .brz-ed-popup-integrations-step__fields-input .brz-input,.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea{width:100%;height:30px;font-size:13px;padding:0 10px;border-radius:5px;background-color:#fff;color:#383e48;border-color:transparent;outline:0}
10228
  .brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea{height:auto;min-height:70px;resize:none;padding:10px}
10229
- .brz-ed .brz-ed-popup-integrations-step__done{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;margin:0;text-align:center;padding-top:78px}
10230
  .brz-ed .brz-ed-popup-integrations-step__done-icon{margin-bottom:30px;font-size:0;line-height:1;color:#48be24}
10231
  .brz-ed .brz-ed-popup-integrations-step__done-icon .brz-icon-svg{font-size:47px}
10232
  .brz-ed .brz-ed-popup-integrations-step__done-content{font-size:14px;color:#626b70;line-height:21px;max-width:234px;margin-bottom:42px}
10233
- .brz-ed .brz-ed-draggable{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}
 
 
 
 
 
 
 
 
10234
  .brz-ed .brz-ed-draggable-active{opacity:1;-webkit-transition-delay:.5s;transition-delay:.5s}
10235
  .brz-ed .brz-ed-draggable__column{position:absolute;top:0;z-index:1030;width:20px;height:100%;cursor:col-resize}
10236
  .brz-ed .brz-ed-draggable__column--item{width:8px;height:50px;position:absolute;top:50%;left:50%;border-radius:8px;-webkit-transform:translate(-3px,-50%);transform:translate(-3px,-50%);background-color:#22b0da}
@@ -10355,9 +10371,7 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
10355
  .brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__main .brz-ed-control__tabs{margin-bottom:15px;padding-left:0;padding-right:0}
10356
  .brz-ed .brz-ed-sidebar__right__tabs{padding:0 30px 30px}
10357
  .brz-ed .brz-ed-sidebar__right__option{padding:15px 0}
10358
- .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
10359
- .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__label{margin-bottom:7px}
10360
- .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-control__input,.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__input-container,.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__input__population{width:100%;max-width:100%}
10361
  .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__multiPicker .brz-ed-popover__tooltip .brz-ed-tooltip__content{width:100%;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
10362
  .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__multiPicker .brz-ed-popover__tooltip .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom{width:23px;height:23px;border:1px solid #555b64;cursor:pointer}
10363
  .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__multiPicker .brz-ed-popover__tooltip .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom:hover{border:2px solid #3dbfe8}
@@ -10648,6 +10662,101 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
10648
  .brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:0}
10649
  .brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:before{right:0}
10650
  .brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-active+.slick-active>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-active+.slick-active>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-active+.slick-active>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:-2px}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10651
  .brz-ed .brz-form .brz-input,.brz-ed .brz-form .brz-textarea{cursor:default}
10652
  .brz-ed .brz-form .brz-input.brz-ed-dd-cancel,.brz-ed .brz-form .brz-textarea.brz-ed-dd-cancel{cursor:text}
10653
  .brz-ed .brz-btn .brz-span[contenteditable]{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}
@@ -10686,4 +10795,6 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
10686
  .brz-ed .brz-rich-text .link--anchor:not(.is-empty),.brz-ed .brz-rich-text .link--external:not(.is-empty),.brz-ed .brz-rich-text .link--popup:not(.is-empty){text-decoration:underline}
10687
  .brz-ed .brz-rich-text .link--anchor:not(.is-empty):hover,.brz-ed .brz-rich-text .link--external:not(.is-empty):hover,.brz-ed .brz-rich-text .link--popup:not(.is-empty):hover{text-decoration:underline}
10688
  .brz-ed .brz-rich-text .link--anchor.is-empty,.brz-ed .brz-rich-text .link--external.is-empty,.brz-ed .brz-rich-text .link--popup.is-empty{text-decoration:none}
10689
- .brz-ed .brz-rich-text .link--anchor.is-empty:hover,.brz-ed .brz-rich-text .link--external.is-empty:hover,.brz-ed .brz-rich-text .link--popup.is-empty:hover{text-decoration:none}
 
 
4893
  .brz .brz-dfn{font-style:italic}
4894
  .brz .brz-b,.brz .brz-strong{font-weight:700}
4895
  .brz .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
4896
+ .brz .brz-a[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
4897
  .brz .brz-a:active,.brz .brz-a:focus,.brz .brz-a:hover{outline:0}
4898
  .brz .brz-a.brz-btn[href]{text-decoration:none}
4899
  .brz .brz-figure{margin:0;min-width:auto;min-height:auto}
5618
  .brz .brz-video .brz-video__cover:hover{cursor:pointer}
5619
  .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
5620
  .brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
5621
+ .brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:20px;height:auto;word-break:break-all;word-wrap:break-word}
5622
  .brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
5623
  .brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;white-space:pre-wrap;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
5624
  .brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
5844
  .brz .brz-root__container.mm-page{position:relative;background:inherit}
5845
  .brz .brz-root__container.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
5846
  .brz .mm-wrapper__blocker.mm-slideout{z-index:1099}
5847
+ .brz .fb_iframe_widget{min-height:20px}
5848
+ .brz .fb-comments,.brz .fb-comments span,.brz .fb-comments span iframe[style],.brz .fb-page,.brz .fb-page span,.brz .fb-page span iframe[style],.brz .fb-post,.brz .fb-video{width:100%!important;min-width:100%!important}
5849
  .brz .screen-reader-text{display:none}
5850
  .brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}
5851
  .brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}
5874
  .brz .media-frame button.media-button-select{margin-top:15px;font-size:13px;line-height:26px;height:28px}
5875
  .brz .media-frame button.browser{color:#555!important;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc}
5876
  .brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}
5877
+ .brz .media-modal .media-frame-title h1:before{display:none}
5878
  .brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}
5879
  .brz .media-frame-title h1{padding:0 16px;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:22px;font-weight:600;font-style:normal;line-height:50px;color:#23282d;text-shadow:none;text-transform:capitalize}
5880
  .brz .media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#666;z-index:1000;cursor:pointer;outline:0;text-align:center;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}
6295
  .brz-ed .brz-dfn{font-style:italic}
6296
  .brz-ed .brz-b,.brz-ed .brz-strong{font-weight:700}
6297
  .brz-ed .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
6298
+ .brz-ed .brz-a[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
6299
  .brz-ed .brz-a:active,.brz-ed .brz-a:focus,.brz-ed .brz-a:hover{outline:0}
6300
  .brz-ed .brz-a.brz-btn[href]{text-decoration:none}
6301
  .brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}
9644
  .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg{font-size:16px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}
9645
  .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg+.brz-span:not(:empty){margin-left:10px}
9646
  .brz-ed .brz-ed-control__tabs__left{position:absolute;z-index:0;left:-38px;top:34px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
9647
+ .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab{width:30px;height:35px;background-color:rgba(139,147,154,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-top-left-radius:7px;border-bottom-left-radius:7px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:11px;color:#fff;font-size:13px;cursor:pointer;margin-bottom:1px;position:relative;left:8px}
9648
  .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}
9649
  .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}
9650
  .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}
9760
  .brz-ed .brz-ed-control__tabs__content__left .brz-ed-control__tab__content{min-height:89px}
9761
  .brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}
9762
  .brz-ed .brz-ed-option__inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;text-align:left}
9763
+ .brz-ed .brz-ed-option__block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal;text-align:left}
9764
+ .brz-ed .brz-ed-option__block .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__block .brz-ed-option__label{-ms-flex-preferred-size:auto;flex-basis:auto;margin-right:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
9765
  .brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}
9766
  .brz-ed .brz-ed-option__advanced{padding-top:15px;min-height:initial!important;color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear;font-size:0}
9767
  .brz-ed .brz-ed-option__advanced .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__advanced .brz-ed-option__label{-ms-flex-preferred-size:100%;flex-basis:100%;color:inherit;font-weight:600;margin:0;margin-left:9px;cursor:pointer;font-size:13px}
9898
  .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography:last-child{padding-bottom:0}
9899
  .brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(130,139,146,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
9900
  .brz-ed .brz-ed-option__helper:hover{color:rgba(130,139,146,.6)}
 
9901
  .brz-ed .brz-ed-option__helper svg{overflow:visible}
9902
+ .brz-ed .brz-ed-option__helper__content{font-size:13px;line-height:1.5;font-family:pn,"Open Sans",Arial,sans-serif;width:240px;background-color:#03080f;color:#fff;text-align:left;padding:5px 20px 5px 20px;border-radius:10px}
 
9903
  .brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}
9904
  .brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
9905
  .brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}
10089
  .brz-ed .brz-ed-popup__select .brz-control__select--arrow{font-size:10px;right:14px}
10090
  .brz-ed .brz-ed-popup__select .brz-control__select-option{border-bottom-color:transparent;text-align:left;font-size:14px;padding-left:0;padding-right:0;height:30px;line-height:30px}
10091
  .brz-ed .brz-ed-popup__select .brz-control__select-options{padding:15px 28px;top:100%;margin-top:4px;-webkit-box-shadow:0 0 10px 0 rgba(0,0,1,.1);box-shadow:0 0 10px 0 rgba(0,0,1,.1)}
10092
+ .brz-ed .brz-ed-popup-content--loading{position:absolute;top:79px;bottom:0;left:0;width:100%;z-index:2;background-color:rgba(0,0,0,.5);color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:40px}
10093
  .brz-ed .brz-ed-fixed.brz-ed-fixed-visible{visibility:visible;opacity:1;display:block}
10094
  .brz-ed .brz-ed-popup-header{position:relative;height:79px;background:#292e37;border-radius:5px 5px 0 0;text-align:center}
10095
+ .brz-ed .brz-ed-popup-tab-item{position:relative;display:inline-block;vertical-align:middle;width:81px;height:79px;background:#292e37;border-left:1px solid rgba(0,0,0,.7);color:rgba(255,255,255,.5);cursor:pointer}
10096
  .brz-ed .brz-ed-popup-tab-item:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;border-left:1px solid rgba(255,255,255,.05)}
10097
  .brz-ed .brz-ed-popup-tab-item:last-child{border-right:1px solid rgba(0,0,0,.7)}
10098
  .brz-ed .brz-ed-popup-tab-item:last-child:before{content:"";display:block;position:absolute;top:0;right:-2px;bottom:0;border-right:1px solid rgba(255,255,255,.05)}
10156
  .brz-ed .brz-ed-popup-block__remove .brz-icon-svg{font-size:18px;margin-top:-1px;margin-left:-1px}
10157
  .brz-ed .brz-ed-popup-block:hover .brz-ed-popup-block__remove{opacity:1}
10158
  .brz-ed .brz-ed-popup-block:hover .brz-ed-popup-block-item figcaption{opacity:1}
10159
+ @media screen and (min-height:700px){.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{height:500px}}@media (min-width:768px){.brz-ed .brz-ed-popup-blocks{width:694px}}@media screen and (min-height:840px){.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{height:634px}}@media (min-width:992px){.brz-ed .brz-ed-popup-blocks{width:1009px}}.brz-ed .brz-ed-popup-integrations{font-family:pn,"Open Sans",Arial,sans-serif;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
10160
  .brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:560px;overflow:hidden}
10161
  .brz-ed .brz-ed-popup-integrations .brz-ed-alert{margin-bottom:26px}
10162
  .brz-ed .brz-ed-popup-integrations__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track{right:0;width:5px}
10200
  .brz-ed .brz-ed-popup-integrations__progress-stage:first-of-type{border-radius:.25em 0 0 .25em}
10201
  .brz-ed .brz-ed-popup-integrations__progress .brz-span{display:block;position:relative;height:80px;line-height:80px;padding-left:2.5em;padding-right:2.5em;color:#292e37;background-color:#e0e1e2;border-color:#e0e1e2}
10202
  .brz-ed .brz-ed-popup-integrations__progress .brz-span:after{border-top-width:40px;border-bottom-width:40px;z-index:2;border-left-color:inherit}
10203
+ .brz-ed .brz-ed-popup-integrations__progress .brz-span .brz-img{max-width:42px}
10204
  .brz-ed .brz-ed-popup-integrations__progress-stage--active .brz-span{background-color:rgba(34,176,218,.25);border-color:rgba(34,176,218,.25);color:#102750}
10205
+ .brz-ed .brz-ed-popup-integrations__progress+.brz-ed-popup-integrations-step__done{height:auto;padding-top:78px}
10206
  .brz-ed .brz-ed-popup-integrations__confirmation{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
10207
  .brz-ed .brz-ed-popup-integrations-step{margin-right:36px;margin-left:36px;padding-top:11px}
10208
  .brz-ed .brz-ed-popup-integrations-step__head{font-size:13px;color:#292e37;margin-bottom:19px}
10209
+ .brz-ed .brz-ed-popup-integrations-step__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:35px}
10210
+ .brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(1){margin-right:auto}
10211
+ .brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(1):last-child,.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(2){margin-left:auto;margin-right:0}
10212
  .brz-ed .brz-ed-popup-integrations-account--delete{cursor:pointer;margin-left:auto;color:#626b70;-webkit-transition:.2s linear color;transition:.2s linear color;font-size:0;line-height:1}
10213
  .brz-ed .brz-ed-popup-integrations-account--delete:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10214
  .brz-ed .brz-ed-popup-integrations-account--delete .brz-icon-svg{font-size:16px}
10215
+ .brz-ed .brz-ed-popup-integrations-option__radio{color:#626b70}
10216
+ .brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:15px;font-weight:500;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 9px 16px 4px;height:51px;cursor:pointer}
10217
+ .brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-option--active{color:#3dbfe8}
10218
+ .brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-check{margin-right:10px}
10219
  .brz-ed .brz-ed-popup-integrations-new__option{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:15px;line-height:1;color:#626b70;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 0 17px 4px;-webkit-transition:.2s linear color;transition:.2s linear color}
10220
  .brz-ed .brz-ed-popup-integrations-new__option:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10221
  .brz-ed .brz-ed-popup-integrations-new__option .brz-icon-svg{font-size:16px;margin-right:10px}
10234
  .brz-ed .brz-ed-popup-integrations-step__fields-input,.brz-ed .brz-ed-popup-integrations-step__fields-select{max-width:223px;width:100%}
10235
  .brz-ed .brz-ed-popup-integrations-step__fields-input .brz-input,.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea{width:100%;height:30px;font-size:13px;padding:0 10px;border-radius:5px;background-color:#fff;color:#383e48;border-color:transparent;outline:0}
10236
  .brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea{height:auto;min-height:70px;resize:none;padding:10px}
10237
+ .brz-ed .brz-ed-popup-integrations-step__done{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;margin:0;text-align:center;padding-top:0}
10238
  .brz-ed .brz-ed-popup-integrations-step__done-icon{margin-bottom:30px;font-size:0;line-height:1;color:#48be24}
10239
  .brz-ed .brz-ed-popup-integrations-step__done-icon .brz-icon-svg{font-size:47px}
10240
  .brz-ed .brz-ed-popup-integrations-step__done-content{font-size:14px;color:#626b70;line-height:21px;max-width:234px;margin-bottom:42px}
10241
+ .brz-ed .brz-ed-popup-integration{height:100%}
10242
+ @media screen and (max-height:899px){.brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:465px}
10243
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__account .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:155px!important}
10244
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:153px!important}
10245
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists .brz-ed-popup-integrations__scroll-pane--small .brz-ed-scroll-inner{max-height:204px!important}
10246
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists .brz-ed-popup-integrations__scroll-pane--big .brz-ed-scroll-inner{max-height:102px!important}
10247
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists-create .brz-ed-popup-integrations-step__head{margin-bottom:5px}
10248
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists-create .brz-ed-popup-integrations-step__buttons{margin-top:25px}
10249
+ .brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__fields .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:205px!important}}.brz-ed .brz-ed-draggable{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}
10250
  .brz-ed .brz-ed-draggable-active{opacity:1;-webkit-transition-delay:.5s;transition-delay:.5s}
10251
  .brz-ed .brz-ed-draggable__column{position:absolute;top:0;z-index:1030;width:20px;height:100%;cursor:col-resize}
10252
  .brz-ed .brz-ed-draggable__column--item{width:8px;height:50px;position:absolute;top:50%;left:50%;border-radius:8px;-webkit-transform:translate(-3px,-50%);transform:translate(-3px,-50%);background-color:#22b0da}
10371
  .brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__main .brz-ed-control__tabs{margin-bottom:15px;padding-left:0;padding-right:0}
10372
  .brz-ed .brz-ed-sidebar__right__tabs{padding:0 30px 30px}
10373
  .brz-ed .brz-ed-sidebar__right__option{padding:15px 0}
10374
+ .brz-ed .brz-ed-sidebar__right__option .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__right__option .brz-ed-option__label{margin-bottom:7px}
 
 
10375
  .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__multiPicker .brz-ed-popover__tooltip .brz-ed-tooltip__content{width:100%;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
10376
  .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__multiPicker .brz-ed-popover__tooltip .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom{width:23px;height:23px;border:1px solid #555b64;cursor:pointer}
10377
  .brz-ed .brz-ed-sidebar__right__option.brz-ed-option__multiPicker .brz-ed-popover__tooltip .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom:hover{border:2px solid #3dbfe8}
10662
  .brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:0}
10663
  .brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:before{right:0}
10664
  .brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-active+.slick-active>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-active+.slick-active>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-active+.slick-active>div>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:-2px}
10665
+ .brz-ed .brz-ed-option__code .brz-ed-tooltip__overlay p .brz-ed-tooltip__overlay-code{color:#91cb8a}
10666
+ .brz-ed .CodeMirror-scrollbar-filler{display:none!important}
10667
+ .brz-ed .CodeMirror-hscrollbar{overflow-x:hidden!important}
10668
+ .brz-ed .ReactCodeMirror{width:100%}
10669
+ .brz-ed .CodeMirror{font-family:monospace;height:30px;color:#000;direction:ltr;padding:3px;border-radius:4px}
10670
+ .brz-ed .CodeMirror .CodeMirror-placeholder{color:#ccc}
10671
+ .brz-ed .CodeMirror pre{border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:19px;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}
10672
+ .brz-ed .CodeMirror:focus-within{height:300px;line-height:1.5}
10673
+ .brz-ed .CodeMirror:focus-within pre{line-height:inherit}
10674
+ .brz-ed .CodeMirror-lines{padding:3px}
10675
+ .brz-ed .CodeMirror pre{padding:0 4px}
10676
+ .brz-ed .CodeMirror-gutter-filler,.brz-ed .CodeMirror-scrollbar-filler{background-color:#fff}
10677
+ .brz-ed .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}
10678
+ .brz-ed .CodeMirror-guttermarker{color:#fff}
10679
+ .brz-ed .CodeMirror-guttermarker-subtle{color:#999}
10680
+ .brz-ed .CodeMirror-cursor{border-left:1px solid #fff;border-right:none;width:0}
10681
+ .brz-ed .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}
10682
+ .brz-ed .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}
10683
+ .brz-ed .cm-fat-cursor div.CodeMirror-cursors{z-index:1}
10684
+ .brz-ed .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}
10685
+ .brz-ed .cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}
10686
+ @-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.brz-ed .cm-tab{display:inline-block;text-decoration:inherit}
10687
+ .brz-ed .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}
10688
+ .brz-ed .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}
10689
+ .brz-ed .cm-s-default .cm-header{color:#00f}
10690
+ .brz-ed .cm-s-default .cm-quote{color:#090}
10691
+ .brz-ed .cm-negative{color:#d44}
10692
+ .brz-ed .cm-positive{color:#292}
10693
+ .brz-ed .cm-header,.brz-ed .cm-strong{font-weight:700}
10694
+ .brz-ed .cm-em{font-style:italic}
10695
+ .brz-ed .cm-link{text-decoration:underline}
10696
+ .brz-ed .cm-strikethrough{text-decoration:line-through}
10697
+ .brz-ed .cm-s-default .cm-keyword{color:#be85c8}
10698
+ .brz-ed .cm-s-default .cm-atom{color:#9195da}
10699
+ .brz-ed .cm-s-default .cm-number{color:#78b9a1}
10700
+ .brz-ed .cm-s-default .cm-def{color:#00f}
10701
+ .brz-ed .cm-s-default .cm-variable-2{color:#05a}
10702
+ .brz-ed .cm-s-default .cm-type,.brz-ed .cm-s-default .cm-variable-3{color:#085}
10703
+ .brz-ed .cm-s-default .cm-comment{color:#a50}
10704
+ .brz-ed .cm-s-default .cm-string{color:#a11}
10705
+ .brz-ed .cm-s-default .cm-string-2{color:#f50}
10706
+ .brz-ed .cm-s-default .cm-meta{color:#555}
10707
+ .brz-ed .cm-s-default .cm-qualifier{color:#555}
10708
+ .brz-ed .cm-s-default .cm-builtin{color:#30a}
10709
+ .brz-ed .cm-s-default .cm-bracket{color:#997}
10710
+ .brz-ed .cm-s-default .cm-tag{color:#91cb8a}
10711
+ .brz-ed .cm-s-default .cm-attribute{color:#00c}
10712
+ .brz-ed .cm-s-default .cm-hr{color:#999}
10713
+ .brz-ed .cm-s-default .cm-link{color:#00c}
10714
+ .brz-ed .cm-s-default .cm-error{color:red}
10715
+ .brz-ed .cm-invalidchar{color:red}
10716
+ .brz-ed .CodeMirror-composing{border-bottom:2px solid}
10717
+ .brz-ed div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}
10718
+ .brz-ed div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}
10719
+ .brz-ed .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}
10720
+ .brz-ed .CodeMirror-activeline-background{background:#e8f2ff}
10721
+ .brz-ed .CodeMirror{position:relative;overflow:hidden;background:#383e48;color:#fff}
10722
+ .brz-ed .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}
10723
+ .brz-ed .CodeMirror-sizer{position:relative;border-right:30px solid transparent}
10724
+ .brz-ed .CodeMirror-gutter-filler,.brz-ed .CodeMirror-hscrollbar,.brz-ed .CodeMirror-scrollbar-filler,.brz-ed .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}
10725
+ .brz-ed .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:hidden}
10726
+ .brz-ed .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}
10727
+ .brz-ed .CodeMirror-scrollbar-filler{right:0;bottom:0}
10728
+ .brz-ed .CodeMirror-gutter-filler{left:0;bottom:0}
10729
+ .brz-ed .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}
10730
+ .brz-ed .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}
10731
+ .brz-ed .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}
10732
+ .brz-ed .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}
10733
+ .brz-ed .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}
10734
+ .brz-ed .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}
10735
+ .brz-ed .CodeMirror-gutter-wrapper ::selection{background-color:transparent}
10736
+ .brz-ed .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}
10737
+ .brz-ed .CodeMirror-lines{cursor:text;min-height:1px}
10738
+ .brz-ed .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}
10739
+ .brz-ed .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}
10740
+ .brz-ed .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}
10741
+ .brz-ed .CodeMirror-rtl pre{direction:rtl}
10742
+ .brz-ed .CodeMirror-code{outline:0}
10743
+ .brz-ed .CodeMirror-gutter,.brz-ed .CodeMirror-gutters,.brz-ed .CodeMirror-linenumber,.brz-ed .CodeMirror-scroll,.brz-ed .CodeMirror-sizer{-webkit-box-sizing:content-box;box-sizing:content-box}
10744
+ .brz-ed .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}
10745
+ .brz-ed .CodeMirror-cursor{position:absolute;pointer-events:none}
10746
+ .brz-ed .CodeMirror-measure pre{position:static}
10747
+ .brz-ed div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}
10748
+ .brz-ed div.CodeMirror-dragcursors{visibility:visible}
10749
+ .brz-ed .CodeMirror-focused div.CodeMirror-cursors{visibility:visible}
10750
+ .brz-ed .CodeMirror-selected{background:#0b69da}
10751
+ .brz-ed .CodeMirror-focused .CodeMirror-selected{background:#0b69da}
10752
+ .brz-ed .CodeMirror-crosshair{cursor:crosshair}
10753
+ .brz-ed .CodeMirror-line::-moz-selection,.brz-ed .CodeMirror-line>span::-moz-selection,.brz-ed .CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}
10754
+ .brz-ed .CodeMirror-line::selection,.brz-ed .CodeMirror-line>span::selection,.brz-ed .CodeMirror-line>span>span::selection{background:#d7d4f0}
10755
+ .brz-ed .CodeMirror-line::-moz-selection,.brz-ed .CodeMirror-line>span::-moz-selection,.brz-ed .CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}
10756
+ .brz-ed .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}
10757
+ .brz-ed .cm-force-border{padding-right:.1px}
10758
+ @media print{.brz-ed .CodeMirror div.CodeMirror-cursors{visibility:hidden}}.brz-ed .cm-tab-wrap-hack:after{content:""}
10759
+ .brz-ed span.CodeMirror-selectedtext{background:0 0}
10760
  .brz-ed .brz-form .brz-input,.brz-ed .brz-form .brz-textarea{cursor:default}
10761
  .brz-ed .brz-form .brz-input.brz-ed-dd-cancel,.brz-ed .brz-form .brz-textarea.brz-ed-dd-cancel{cursor:text}
10762
  .brz-ed .brz-btn .brz-span[contenteditable]{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}
10795
  .brz-ed .brz-rich-text .link--anchor:not(.is-empty),.brz-ed .brz-rich-text .link--external:not(.is-empty),.brz-ed .brz-rich-text .link--popup:not(.is-empty){text-decoration:underline}
10796
  .brz-ed .brz-rich-text .link--anchor:not(.is-empty):hover,.brz-ed .brz-rich-text .link--external:not(.is-empty):hover,.brz-ed .brz-rich-text .link--popup:not(.is-empty):hover{text-decoration:underline}
10797
  .brz-ed .brz-rich-text .link--anchor.is-empty,.brz-ed .brz-rich-text .link--external.is-empty,.brz-ed .brz-rich-text .link--popup.is-empty{text-decoration:none}
10798
+ .brz-ed .brz-rich-text .link--anchor.is-empty:hover,.brz-ed .brz-rich-text .link--external.is-empty:hover,.brz-ed .brz-rich-text .link--popup.is-empty:hover{text-decoration:none}
10799
+ .brz-ed .fb-comments,.brz-ed .fb-like,.brz-ed .fb-page,.brz-ed .fb-post,.brz-ed .fb-video{pointer-events:none}
10800
+ .brz-ed .brz-fb-comments,.brz-ed .brz-fb-embed,.brz-ed .brz-fb-page{width:100%}
public/editor-build/editor/css/preview.css CHANGED
@@ -1,69 +1,387 @@
1
- .brz-ow-hidden{overflow:hidden!important}
2
- .brz-ow-visible{overflow:visible!important}
3
- .mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}
4
- .mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}
5
- .mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}
6
- .mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}
7
- .mfp-align-top .mfp-container:before{display:none}
8
- .mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}
9
- .mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}
10
- .mfp-ajax-cur{cursor:progress}
11
- .mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}
12
- .mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}
13
- .mfp-auto-cursor .mfp-content{cursor:auto}
14
- .mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
15
- .mfp-loading.mfp-figure{display:none}
16
- .mfp-hide{display:none!important}
17
- .mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}
18
- .mfp-preloader a{color:#ccc}
19
- .mfp-preloader a:hover{color:#fff}
20
- .mfp-s-ready .mfp-preloader{display:none}
21
- .mfp-s-error .mfp-content{display:none}
22
- button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}
23
- button::-moz-focus-inner{padding:0;border:0}
24
- .mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}
25
- .mfp-close:focus,.mfp-close:hover{opacity:1}
26
- .mfp-close:active{top:1px}
27
- .mfp-close-btn-in .mfp-close{color:#333}
28
- .mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}
29
- .mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}
30
- .mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}
31
- .mfp-arrow:active{margin-top:-54px}
32
- .mfp-arrow:focus,.mfp-arrow:hover{opacity:1}
33
- .mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}
34
- .mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}
35
- .mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}
36
- .mfp-arrow-left{left:0}
37
- .mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}
38
- .mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}
39
- .mfp-arrow-right{right:0}
40
- .mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}
41
- .mfp-arrow-right:before{border-left:27px solid #3f3f3f}
42
- .mfp-iframe-holder{padding-top:40px;padding-bottom:40px}
43
- .mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}
44
- .mfp-iframe-holder .mfp-close{top:-40px}
45
- .mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}
46
- .mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}
47
- img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}
48
- .mfp-figure{line-height:0}
49
- .mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}
50
- .mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}
51
- .mfp-figure figure{margin:0}
52
- .mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}
53
- .mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}
54
- .mfp-image-holder .mfp-content{max-width:100%}
55
- .mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}
56
- @media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}
57
- .mfp-img-mobile img.mfp-img{padding:0}
58
- .mfp-img-mobile .mfp-figure:after{top:0;bottom:0}
59
- .mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}
60
- .mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}
61
- .mfp-img-mobile .mfp-bottom-bar:empty{padding:0}
62
- .mfp-img-mobile .mfp-counter{right:5px;top:3px}
63
- .mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}
64
- .mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}
65
- .mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}
66
- .mfp-container{padding-left:6px;padding-right:6px}}/*!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  * jQuery mmenu v7.2.2
68
  * @requires jQuery 1.7.0 or later
69
  *
@@ -74,4448 +392,15621 @@ img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-w
74
  *
75
  * License: CC-BY-NC-4.0
76
  * http://creativecommons.org/licenses/by-nc/4.0/
77
- */.mm-menu{--mm-line-height:20px;--mm-listitem-size:44px;--mm-navbar-size:44px;--mm-offset-top:0;--mm-offset-right:0;--mm-offset-bottom:0;--mm-offset-left:0;--mm-color-border:rgba(0, 0, 0, 0.1);--mm-color-button:rgba(0, 0, 0, 0.3);--mm-color-text:rgba(0, 0, 0, 0.75);--mm-color-text-dimmed:rgba(0, 0, 0, 0.3);--mm-color-background:#f3f3f3;--mm-color-background-highlight:rgba(0, 0, 0, 0.05);--mm-color-background-emphasis:rgba(255, 255, 255, 0.4);--mm-shadow:0 0 10px rgba( 0,0,0, 0.3 )}
78
- .mm-hidden{display:none!important}
79
- .mm-wrapper{overflow-x:hidden;position:relative}
80
- .mm-menu{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:20px;line-height:var(--mm-line-height);-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:0;margin:0;position:absolute;z-index:0;top:0;right:0;bottom:0;left:0;top:var(--mm-offset-top);right:var(--mm-offset-right);bottom:var(--mm-offset-bottom);left:var(--mm-offset-left);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
81
- .mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{color:inherit;text-decoration:none}
82
- [dir=rtl] .mm-menu{direction:rtl}
83
- .mm-panels,.mm-panels>.mm-panel{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}
84
- .mm-panel,.mm-panels{-webkit-box-sizing:border-box;box-sizing:border-box;background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}
85
- .mm-panels{overflow:hidden}
86
- .mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;width:100%;padding:0 20px;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
87
- .mm-panel:not(.mm-hidden){display:block}
88
- .mm-panel:after,.mm-panel:before{content:'';display:block;height:20px}
89
- .mm-panel_has-navbar{padding-top:44px;padding-top:var(--mm-navbar-size)}
90
- .mm-panel_opened{z-index:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
91
- .mm-panel_opened-parent{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}
92
- .mm-panel_highest{z-index:2}
93
- .mm-panel_noanimation{-webkit-transition:none!important;transition:none!important}
94
- .mm-panel_noanimation.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
95
- [dir=rtl] .mm-panel:not(.mm-panel_opened){-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
96
- [dir=rtl] .mm-panel.mm-panel_opened-parent{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}
97
- .mm-listitem_vertical>.mm-panel{-webkit-transform:none!important;transform:none!important;display:none;width:100%;padding:10px 0 10px 10px}
98
- .mm-listitem_vertical>.mm-panel:after,.mm-listitem_vertical>.mm-panel:before{content:none;display:none}
99
- .mm-listitem_opened>.mm-panel{display:block}
100
- .mm-listitem_vertical>.mm-listitem__btn{height:44px;height:var(--mm-listitem-size);bottom:auto}
101
- .mm-listitem_vertical .mm-listitem:last-child:after{border-color:transparent}
102
- .mm-listitem_opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);transform:rotate(225deg);right:19px}
103
- .mm-btn{-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;padding:0}
104
- .mm-btn:after,.mm-btn:before{border-color:rgba(0,0,0,.1);border-color:var(--mm-color-button);border-width:2px;border-style:solid}
105
- .mm-btn_close:after,.mm-btn_close:before{content:'';-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
106
- .mm-btn_close:before{border-right:none;border-bottom:none;right:18px}
107
- .mm-btn_close:after{border-left:none;border-top:none;right:25px}
108
- .mm-btn_next:after,.mm-btn_prev:before{content:'';border-bottom:none;border-right:none;-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0}
109
- .mm-btn_prev:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}
110
- .mm-btn_next:after{-webkit-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}
111
- [dir=rtl] .mm-btn_next:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}
112
- [dir=rtl] .mm-btn_prev:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}
113
- [dir=rtl] .mm-btn_close:after,[dir=rtl] .mm-btn_close:before{right:auto}
114
- [dir=rtl] .mm-btn_close:before{left:25px}
115
- [dir=rtl] .mm-btn_close:after{left:18px}
116
- .mm-navbar{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.3);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text-dimmed);border-bottom-width:1px;border-bottom-style:solid;text-align:center;display:none;height:44px;height:var(--mm-navbar-size);padding:0 44px;margin:0;position:absolute;top:0;left:0;right:0;opacity:1;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
117
- .mm-navbar>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:12px;padding:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-left:0;padding-right:0}
118
- .mm-navbar a,.mm-navbar a:hover{text-decoration:none}
119
- .mm-navbar__title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
120
- .mm-navbar__btn{position:absolute;top:0;bottom:0;z-index:1}
121
- .mm-navbar__btn:first-child{text-align:left;left:0}
122
- .mm-navbar__btn:last-child{text-align:right;right:0}
123
- .mm-panel_has-navbar .mm-navbar{display:block}
124
- [dir=rtl] .mm-navbar__btn:first-child{text-align:right;right:0;left:auto}
125
- [dir=rtl] .mm-navbar__btn:last-child{text-align:left;left:0;right:auto}
126
- .mm-listitem,.mm-listview{list-style:none;display:block;padding:0;margin:0}
127
- .mm-listitem{color:rgba(0,0,0,.75);color:var(--mm-color-text);border-color:rgba(0,0,0,.1);border-color:var(--mm-color-border);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
128
- .mm-listitem:after{content:'';border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:20px;right:0;bottom:0}
129
- .mm-listitem a,.mm-listitem a:hover{text-decoration:none}
130
- .mm-listitem__btn,.mm-listitem__text{color:inherit;display:block;padding-top:12px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);padding-bottom:12px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2)}
131
- .mm-listitem__text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%}
132
- .mm-listitem__btn{-webkit-tap-highlight-color:rgba(255,255,255,.4);tap-highlight-color:rgba(255,255,255,.4);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);tap-highlight-color:var(--mm-color-background-emphasis);background:rgba(3,2,1,0);border-color:inherit;width:auto;padding-right:54px;position:relative}
133
- .mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}
134
- .mm-listitem_selected>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
135
- .mm-listitem_opened>.mm-listitem__btn,.mm-listitem_opened>.mm-panel{background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight)}
136
- .mm-panels>.mm-panel>.mm-listview{margin:20px -20px}
137
- .mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}
138
- .mm-listitem_divider{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);font-size:75%;text-transform:uppercase;min-height:20px;min-height:var(--mm-line-height);padding:6.5px;padding:calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);padding-right:10px;padding-left:20px}
139
- .mm-listitem_spacer{padding-top:44px;padding-top:var(--mm-listitem-size)}
140
- .mm-listitem_spacer>.mm-btn_next{top:44px;top:var(--mm-listitem-size)}
141
- [dir=rtl] .mm-listitem:after{left:0;right:20px}
142
- [dir=rtl] .mm-listitem__text{padding-left:10px;padding-right:20px}
143
- [dir=rtl] .mm-listitem__btn{padding-left:54px;border-left-width:0;border-left-style:none}
144
- [dir=rtl] .mm-listitem__btn:not(.mm-listitem__text){padding-right:0;border-right-width:1px;border-right-style:solid}
145
- .mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}
146
- .mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}
147
- .mm-wrapper_opened{overflow-x:hidden;position:relative}
148
- .mm-wrapper_background .mm-page{background:inherit}
149
- .mm-menu_offcanvas{display:none;position:fixed;right:auto;z-index:0}
150
- .mm-menu_offcanvas.mm-menu_opened{display:block}
151
- .mm-menu_offcanvas{width:80%;min-width:240px;max-width:440px}
152
- .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
153
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper__blocker{background:rgba(3,2,1,0);overflow:hidden;display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}
154
- .mm-wrapper_blocking{overflow:hidden}
155
- .mm-wrapper_blocking body{overflow:hidden}
156
- .mm-wrapper_blocking .mm-wrapper__blocker{display:block}
157
- .mm-sronly{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;white-space:nowrap!important;width:1px!important;min-width:1px!important;height:1px!important;min-height:1px!important;padding:0!important;overflow:hidden!important;position:absolute!important}
158
- .mm-menu_autoheight{-webkit-transition:none .4s ease;transition:none .4s ease;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}
159
- .mm-menu_autoheight:not(.mm-menu_offcanvas){position:relative}
160
- .mm-menu_autoheight.mm-menu_position-bottom,.mm-menu_autoheight.mm-menu_position-top{max-height:80%}
161
- .mm-menu_autoheight-measuring .mm-panel{display:block!important}
162
- .mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel{display:none!important}
163
- .mm-menu_autoheight-measuring .mm-panels>.mm-panel{bottom:auto!important;height:auto!important}
164
- [class*=mm-menu_columns-]{-webkit-transition-property:width;transition-property:width}
165
- [class*=mm-menu_columns-] .mm-panels>.mm-panel{right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}
166
- [class*=mm-menu_columns-] .mm-panels>.mm-panel_opened,[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent{display:block!important}
167
- [class*=mm-panel_columns-]{border-right:1px solid;border-color:inherit}
168
- .mm-menu_columns-1 .mm-panel_columns-0,.mm-menu_columns-2 .mm-panel_columns-1,.mm-menu_columns-3 .mm-panel_columns-2,.mm-menu_columns-4 .mm-panel_columns-3{border-right:none}
169
- [class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
170
- .mm-menu_columns-0 .mm-panels>.mm-panel{z-index:0}
171
- .mm-menu_columns-0 .mm-panels>.mm-panel else{width:100%}
172
- .mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
173
- .mm-menu_columns-0{width:80%;min-width:240px;max-width:0}
174
- .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
175
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
176
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
177
- .mm-menu_columns-1 .mm-panels>.mm-panel{z-index:1;width:100%}
178
- .mm-menu_columns-1 .mm-panels>.mm-panel else{width:100%}
179
- .mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}
180
- .mm-menu_columns-1{width:80%;min-width:240px;max-width:440px}
181
- .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
182
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
183
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2{-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}
184
- .mm-menu_columns-2 .mm-panels>.mm-panel{z-index:2;width:50%}
185
- .mm-menu_columns-2 .mm-panels>.mm-panel else{width:100%}
186
- .mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}
187
- .mm-menu_columns-2{width:80%;min-width:240px;max-width:880px}
188
- .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
189
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(880px,0,0);transform:translate3d(880px,0,0)}}.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
190
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-880px,0,0);transform:translate3d(-880px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3{-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}
191
- .mm-menu_columns-3 .mm-panels>.mm-panel{z-index:3;width:33.34%}
192
- .mm-menu_columns-3 .mm-panels>.mm-panel else{width:100%}
193
- .mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}
194
- .mm-menu_columns-3{width:80%;min-width:240px;max-width:1320px}
195
- .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
196
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(1320px,0,0);transform:translate3d(1320px,0,0)}}.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
197
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1320px,0,0);transform:translate3d(-1320px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4{-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}
198
- .mm-menu_columns-4 .mm-panels>.mm-panel{z-index:4;width:25%}
199
- .mm-menu_columns-4 .mm-panels>.mm-panel else{width:100%}
200
- .mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(500%,0,0);transform:translate3d(500%,0,0)}
201
- .mm-menu_columns-4{width:80%;min-width:240px;max-width:1760px}
202
- .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
203
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(1760px,0,0);transform:translate3d(1760px,0,0)}}.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
204
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1760px,0,0);transform:translate3d(-1760px,0,0)}}[class*=mm-menu_columns-].mm-menu_position-bottom,[class*=mm-menu_columns-].mm-menu_position-top{width:100%;max-width:100%;min-width:100%}
205
- .mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front{-webkit-transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform,-webkit-transform}
206
- .mm-counter{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);text-align:right;display:block;min-width:44px;float:right}
207
- .mm-listitem_nosubitems>.mm-counter{display:none}
208
- [dir=rtl] .mm-counter{text-align:left;float:left}
209
- .mm-listitem_divider{opacity:1;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
210
- .mm-menu_dividers-light .mm-listitem_divider{background:inherit;font-size:inherit;color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);padding-top:18px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);padding-bottom:6px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25)}
211
- .mm-menu_border-none .mm-listitem_divider{border-top-width:1px;border-top-style:solid}
212
- .mm-listview_fixeddivider{background:inherit;display:none;width:100%;position:absolute;top:0;left:0;right:0;z-index:10}
213
- .mm-listview_fixeddivider:after{content:none!important;display:none!important}
214
- .mm-panel_dividers .mm-listview_fixeddivider{display:block}
215
- .mm-wrapper_opened.mm-dragging .mm-menu,.mm-wrapper_opened.mm-dragging .mm-slideout{-webkit-transition-duration:0s;transition-duration:0s}
216
- .mm-menu_dropdown{-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%}
217
- .mm-wrapper_dropdown .mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}
218
- .mm-wrapper_dropdown .mm-wrapper__blocker{-webkit-transition-delay:0s!important;transition-delay:0s!important;z-index:1}
219
- .mm-wrapper_dropdown .mm-menu_dropdown{z-index:2}
220
- .mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown{display:none}
221
- [class*=mm-menu_tip-]:before{content:'';background:inherit;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);display:block;width:15px;height:15px;position:absolute;z-index:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}
222
- .mm-menu_tip-left:before{left:22px}
223
- .mm-menu_tip-right:before{right:22px}
224
- .mm-menu_tip-top:before{top:-8px}
225
- .mm-menu_tip-bottom:before{bottom:-8px}
226
- .mm-menu{--mm-iconbar-size:44px}
227
- .mm-iconbar{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);border:0 solid rgba(0,0,0,.1);border-color:var(--mm-color-border);border-right-width:1px;text-align:center;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;width:var(--mm-iconbar-size);position:absolute;top:0;left:0;bottom:0;z-index:2}
228
- .mm-menu_iconbar .mm-navbars_bottom,.mm-menu_iconbar .mm-navbars_top,.mm-menu_iconbar .mm-panels{left:44px;left:var(--mm-iconbar-size)}
229
- .mm-iconbar__bottom,.mm-iconbar__top{width:inherit;position:absolute}
230
- .mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:11px 0}
231
- .mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}
232
- .mm-iconbar__top{top:0}
233
- .mm-iconbar__bottom{bottom:0}
234
- .mm-iconbar__tab_selected{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
235
- .mm-menu{--mm-iconpanel-size:44px}
236
- .mm-panel_iconpanel-1,.mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 1));width:calc(100% - (var(--mm-iconpanel-size) * 1))}
237
- .mm-panel_iconpanel-2,.mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 2));width:calc(100% - (var(--mm-iconpanel-size) * 2))}
238
- .mm-panel_iconpanel-3,.mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 3));width:calc(100% - (var(--mm-iconpanel-size) * 3))}
239
- .mm-panel_iconpanel-first~.mm-panel,.mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - 44px);width:calc(100% - var(--mm-iconpanel-size))}
240
- .mm-menu_iconpanel .mm-panels>.mm-listview_fixeddivider,.mm-menu_iconpanel .mm-panels>.mm-panel{left:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:transform,width;transition-property:transform,width,-webkit-transform}
241
- .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left-width:1px;border-left-style:solid}
242
- .mm-menu_iconpanel .mm-panels>.mm-panel_opened,.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{display:block!important}
243
- .mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{overflow-y:hidden;-webkit-transform:unset;transform:unset}
244
- .mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider,.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar{opacity:0}
245
- .mm-panel__blocker{background:inherit;opacity:0;display:block;position:absolute;top:0;right:0;left:0;z-index:3;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
246
- .mm-panel_opened-parent .mm-panel__blocker{opacity:.6;bottom:-100000px}
247
- [dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-listview_fixeddivider,[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel{left:0;right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:transform,width;transition-property:transform,width,-webkit-transform}
248
- [dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left:none;border-right:1px solid;border-color:inherit}
249
- .mm-menu_keyboardfocus a:focus,.mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus{outline:0;background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
250
- .mm-wrapper__blocker .mm-tabstart{cursor:default;display:block;width:100%;height:100%}
251
- .mm-wrapper__blocker .mm-tabend{opacity:0;position:absolute;bottom:0}
252
- .mm-navbars_bottom,.mm-navbars_top{background:inherit;border-color:inherit;border-width:0;position:absolute;left:0;right:0;z-index:1}
253
- .mm-navbars_bottom>.mm-navbar,.mm-navbars_top>.mm-navbar{border-width:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}
254
- .mm-navbars_bottom>.mm-navbar:not(.mm-navbar_has-btns),.mm-navbars_top>.mm-navbar:not(.mm-navbar_has-btns){padding:0}
255
- .mm-navbars_bottom>.mm-navbar>:not(img):not(.mm-btn),.mm-navbars_top>.mm-navbar>:not(img):not(.mm-btn){-webkit-box-flex:1;-ms-flex:1;flex:1}
256
- .mm-navbars_top{border-bottom-style:solid;border-bottom-width:1px;top:0;bottom:auto}
257
- .mm-menu_navbar_top-1 .mm-panels{top:44px;top:calc(var(--mm-navbar-size) * 1)}
258
- .mm-menu_navbar_top-2 .mm-panels{top:88px;top:calc(var(--mm-navbar-size) * 2)}
259
- .mm-menu_navbar_top-3 .mm-panels{top:132px;top:calc(var(--mm-navbar-size) * 3)}
260
- .mm-menu_navbar_top-4 .mm-panels{top:176px;top:calc(var(--mm-navbar-size) * 4)}
261
- .mm-navbars_bottom{border-top-style:solid;border-top-width:1px;bottom:0;top:auto}
262
- .mm-menu_navbar_bottom-1 .mm-panels{bottom:44px;bottom:calc(var(--mm-navbar-size) * 1)}
263
- .mm-menu_navbar_bottom-2 .mm-panels{bottom:88px;bottom:calc(var(--mm-navbar-size) * 2)}
264
- .mm-menu_navbar_bottom-3 .mm-panels{bottom:132px;bottom:calc(var(--mm-navbar-size) * 3)}
265
- .mm-menu_navbar_bottom-4 .mm-panels{bottom:176px;bottom:calc(var(--mm-navbar-size) * 4)}
266
- .mm-navbar_size-2{height:88px;height:calc(var(--mm-navbar-size) * 2)}
267
- .mm-navbar_size-3{height:132px;height:calc(var(--mm-navbar-size) * 3)}
268
- .mm-navbar_size-4{height:176px;height:calc(var(--mm-navbar-size) * 4)}
269
- .mm-navbar__breadcrumbs{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-x:auto;text-align:left;padding:0 0 0 20px}
270
- .mm-navbar__breadcrumbs>*{display:inline-block;padding-right:6px;padding-top:12px;padding-top:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-bottom:12px;padding-bottom:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5)}
271
- .mm-navbar__breadcrumbs>a{text-decoration:underline}
272
- .mm-navbar_has-btns .mm-navbar__breadcrumbs{margin-left:-44px}
273
- .mm-navbar_has-btns .mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs{margin-left:0;padding-left:0}
274
- .mm-navbar__tab_selected{background:inherit!important;color:inherit!important;border-width:1px;border-style:solid;border-color:inherit}
275
- .mm-navbar__tab_selected:first-child{border-left:none}
276
- .mm-navbar__tab_selected:last-child{border-right:none}
277
- .mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs,.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar{background:inherit!important;color:inherit!important}
278
- .mm-navbars_top .mm-navbar_tabs:not(:last-child){border-bottom-width:1px;border-bottom-style:solid}
279
- .mm-navbars_top .mm-navbar__tab_selected{border-bottom:none;margin-bottom:-1px}
280
- .mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected{border-top:none}
281
- .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar{background:inherit;color:inherit}
282
- .mm-navbars_bottom .mm-navbar_tabs:not(:first-child){border-top-width:1px;border-top-style:solid}
283
- .mm-navbars_bottom .mm-navbar__tab_selected{border-top:none;margin-top:-1px}
284
- .mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected{border-bottom:none}
285
- .mm-navbar_tabs>a:not(.mm-navbar__tab_selected),.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar,.mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs){background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis);color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed)}
286
- .mm-searchfield{height:44px;height:var(--mm-navbar-size);padding:0;display:-webkit-box;display:-ms-flexbox;display:flex}
287
- .mm-searchfield input{border:none!important;outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;border-radius:4px;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);color:rgba(0,0,0,.75);color:var(--mm-color-text);font:inherit;font-size:inherit;line-height:35.2px;line-height:calc(var(--mm-navbar-size) * .7);display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%;height:24px;height:calc(var(--mm-navbar-size) * .7);min-height:unset;max-height:unset;margin:0;padding:0 10px}
288
- .mm-searchfield input::-ms-clear{display:none}
289
- .mm-searchfield__input{padding:6.6px 10px 0 10px;padding-top:calc(var(--mm-navbar-size) * .15);position:relative}
290
- .mm-panel__noresultsmsg{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;padding:44px 0}
291
- .mm-searchfield__btn{position:absolute;right:0;top:0;bottom:0}
292
- .mm-panel_search{left:0!important;right:0!important;width:100%!important;border-left:none!important}
293
- .mm-searchfield__input{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%}
294
- .mm-searchfield__cancel{line-height:44px;line-height:var(--mm-navbar-size);text-decoration:none;display:block;padding-right:10px;margin-right:-100px;-webkit-transition:margin .4s ease;transition:margin .4s ease}
295
- .mm-searchfield__cancel-active{margin-right:0}
296
- .mm-panel>.mm-searchfield{width:100%;position:absolute;top:0;left:0}
297
- .mm-panel_has-searchfield{padding-top:44px;padding-top:var(--mm-navbar-size)}
298
- .mm-panel_has-navbar.mm-panel_has-searchfield{padding-top:88px;padding-top:calc(var(--mm-navbar-size) * 2)}
299
- .mm-panel_has-navbar.mm-panel_has-searchfield>.mm-searchfield{top:44px;top:var(--mm-navbar-size)}
300
- .mm-listitem_nosubitems>.mm-listitem__btn{display:none}
301
- .mm-listitem_nosubitems>.mm-listitem__text{padding-right:10px}
302
- .mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:20px;position:absolute;top:0;bottom:0;right:-20px;z-index:15;-webkit-transition:right .4s ease;transition:right .4s ease;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}
303
- .mm-sectionindexer a{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}
304
- .mm-sectionindexer~.mm-panels{-webkit-transition:right .4s ease;transition:right .4s ease}
305
- .mm-menu_has-sectionindexer .mm-sectionindexer{right:0}
306
- .mm-menu_has-sectionindexer .mm-panels{right:20px}
307
- .mm-menu_navbar_top-1 .mm-sectionindexer{top:46px;top:calc((var(--mm-navbar-size) * 1) + 2px)}
308
- .mm-menu_navbar_top-2 .mm-sectionindexer{top:90px;top:calc((var(--mm-navbar-size) * 2) + 2px)}
309
- .mm-menu_navbar_top-3 .mm-sectionindexer{top:134px;top:calc((var(--mm-navbar-size) * 3) + 2px)}
310
- .mm-menu_navbar_top-4 .mm-sectionindexer{top:178px;top:calc((var(--mm-navbar-size) * 4) + 2px)}
311
- .mm-menu_navbar_bottom-1 .mm-sectionindexer{bottom:46px;bottom:calc((var(--mm-navbar-size) * 1) + 2px)}
312
- .mm-menu_navbar_bottom-2 .mm-sectionindexer{bottom:90px;bottom:calc((var(--mm-navbar-size) * 2) + 2px)}
313
- .mm-menu_navbar_bottom-3 .mm-sectionindexer{bottom:134px;bottom:calc((var(--mm-navbar-size) * 3) + 2px)}
314
- .mm-menu_navbar_bottom-4 .mm-sectionindexer{bottom:178px;bottom:calc((var(--mm-navbar-size) * 4) + 2px)}
315
- .mm-menu_selected-hover .mm-listitem>.mm-listitem__btn,.mm-menu_selected-hover .mm-listitem>.mm-listitem__text,.mm-menu_selected-parent .mm-listitem>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem>.mm-listitem__text{-webkit-transition:background .4s ease;transition:background .4s ease}
316
- .mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected .mm-listitem__text{background:0 0}
317
- .mm-menu_selected-hover .mm-listitem__btn:hover,.mm-menu_selected-hover .mm-listitem__text:hover{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
318
- .mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) .mm-listitem__text{background:0 0}
319
- .mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
320
- .mm-menu,.mm-slideout{--mm-sidebar-collapsed-size:44px;--mm-sidebar-expanded-size:440px}
321
- .mm-wrapper_sidebar-collapsed body,.mm-wrapper_sidebar-expanded body{position:relative}
322
- .mm-wrapper_sidebar-collapsed .mm-slideout,.mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}
323
- .mm-wrapper_sidebar-collapsed .mm-page,.mm-wrapper_sidebar-expanded .mm-page{background:inherit;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh}
324
- .mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{display:block!important;top:0!important;right:auto!important;bottom:0!important;left:0!important}
325
- .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider,.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar{opacity:0}
326
- .mm-wrapper_sidebar-collapsed .mm-slideout{width:calc(100% - 44px);width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(44px,0,0);transform:translate3d(44px,0,0);-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}
327
- .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{border-right-width:1px;border-right-style:solid;min-width:0!important;max-width:100000px!important}
328
- .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after{content:none;display:none}
329
- .mm-wrapper_sidebar-expanded.mm-wrapper_blocking,.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body{overflow:visible}
330
- .mm-wrapper_sidebar-expanded .mm-wrapper__blocker{display:none!important}
331
- .mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{width:calc(100% - 440px);width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0);-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}
332
- .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{width:440px;width:var(--mm-sidebar-expanded-size)}
333
- .mm-menu__blocker{background:rgba(3,2,1,0);display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:3}
334
- .mm-menu_opened .mm-menu__blocker{display:none}
335
- [dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
336
- [dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
337
- [dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
338
- label.mm-toggle{border-radius:34px;min-width:58px;width:58px;height:34px;margin:0 10px;margin-top:5px;margin-top:calc((var(--mm-listitem-size) - 34px)/ 2)}
339
- label.mm-toggle:before{content:'';display:block;border-radius:34px;width:32px;height:32px;margin:1px}
340
- input.mm-toggle{position:absolute;left:-10000px}
341
- input.mm-toggle:checked~label.mm-toggle:before{float:right}
342
- label.mm-toggle{background:rgba(0,0,0,.1);background:var(--mm-color-border)}
343
- label.mm-toggle:before{background:#f3f3f3;background:var(--mm-color-background)}
344
- input.mm-toggle:checked~label.mm-toggle{background:#4bd963}
345
- label.mm-check{width:34px;height:34px}
346
- label.mm-check:before{border-color:rgba(0,0,0,.75);border-color:var(--mm-color-text);content:'';display:block;border-left:3px solid;border-bottom:3px solid;width:40%;height:20%;margin:25% 0 0 20%;opacity:.1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
347
- input.mm-check{position:absolute;left:-10000px}
348
- input.mm-check:checked~label.mm-check:before{opacity:1}
349
- [dir=rtl] input.mm-toggle:checked~label.mm-toggle:before{float:left}
350
- .mm-menu_border-none .mm-listitem:after,.mm-panel_border-none .mm-listitem:after{content:none}
351
- .mm-menu_border-full .mm-listitem:after,.mm-panel_border-full .mm-listitem:after{left:0!important}
352
- .mm-menu_border-offset .mm-listitem:after,.mm-panel_border-offset .mm-listitem:after{right:20px}
353
- .mm-menu_fx-menu-zoom{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
354
- .mm-wrapper_opened .mm-menu_fx-menu-zoom{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0);-webkit-transform-origin:left center;transform-origin:left center}
355
- .mm-wrapper_opening .mm-menu_fx-menu-zoom{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}
356
- .mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(.7,.7) translate3d(30%,0,0);transform:scale(.7,.7) translate3d(30%,0,0);-webkit-transform-origin:right center;transform-origin:right center}
357
- .mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}
358
- .mm-menu_fx-menu-slide{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
359
- .mm-wrapper_opened .mm-menu_fx-menu-slide{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}
360
- .mm-wrapper_opening .mm-menu_fx-menu-slide{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
361
- .mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}
362
- .mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
363
- .mm-menu_fx-menu-fade{opacity:0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
364
- .mm-wrapper_opening .mm-menu_fx-menu-fade{opacity:1}
365
- .mm-menu_fx-panels-none .mm-panel,.mm-panel_fx-none{-webkit-transition-property:none;transition-property:none}
366
- .mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,.mm-panel_fx-none.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
367
- .mm-menu_fx-panels-zoom .mm-panel,.mm-panel_fx-zoom{-webkit-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1.5,1.5) translate3d(100%,0,0);transform:scale(1.5,1.5) translate3d(100%,0,0)}
368
- .mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened,.mm-panel_fx-zoom.mm-panel_opened{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}
369
- .mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent,.mm-panel_fx-zoom.mm-panel_opened-parent{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0)}
370
- .mm-menu_fx-panels-slide-0 .mm-panel_opened-parent,.mm-panel_fx-slide-0.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
371
- .mm-menu_fx-panels-slide-100 .mm-panel_opened-parent,.mm-panel_fx-slide-100.mm-panel_opened-parent{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
372
- .mm-menu_fx-panels-slide-up .mm-panel,.mm-panel_fx-slide-up{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
373
- .mm-menu_fx-panels-slide-up .mm-panel_opened,.mm-menu_fx-panels-slide-up .mm-panel_opened-parent,.mm-panel_fx-slide-up.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
374
- .mm-menu_fx-panels-slide-right .mm-panel,.mm-panel_fx-slide-right{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
375
- .mm-menu_fx-panels-slide-right .mm-panel_opened,.mm-menu_fx-panels-slide-right .mm-panel_opened-parent,.mm-panel_fx-slide-right.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
376
- [class*=mm-menu_fx-listitems-] .mm-listitem{-webkit-transition:none .4s ease;transition:none .4s ease}
377
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1){-webkit-transition-delay:50ms;transition-delay:50ms}
378
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2){-webkit-transition-delay:.1s;transition-delay:.1s}
379
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3){-webkit-transition-delay:150ms;transition-delay:150ms}
380
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4){-webkit-transition-delay:.2s;transition-delay:.2s}
381
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5){-webkit-transition-delay:250ms;transition-delay:250ms}
382
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6){-webkit-transition-delay:.3s;transition-delay:.3s}
383
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7){-webkit-transition-delay:350ms;transition-delay:350ms}
384
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8){-webkit-transition-delay:.4s;transition-delay:.4s}
385
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9){-webkit-transition-delay:450ms;transition-delay:450ms}
386
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10){-webkit-transition-delay:.5s;transition-delay:.5s}
387
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11){-webkit-transition-delay:550ms;transition-delay:550ms}
388
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12){-webkit-transition-delay:.6s;transition-delay:.6s}
389
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13){-webkit-transition-delay:650ms;transition-delay:650ms}
390
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14){-webkit-transition-delay:.7s;transition-delay:.7s}
391
- [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15){-webkit-transition-delay:750ms;transition-delay:750ms}
392
- .mm-menu_fx-listitems-slide .mm-listitem{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0);opacity:0}
393
- .mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}
394
- .mm-menu_fx-listitems-fade .mm-listitem{-webkit-transition-property:opacity;transition-property:opacity;opacity:0}
395
- .mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem{opacity:1}
396
- .mm-menu_fx-listitems-drop .mm-listitem{-webkit-transition-property:opacity,top;transition-property:opacity,top;opacity:0;top:-25%}
397
- .mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem{opacity:1;top:0}
398
- .mm-menu_fullscreen{width:100%;min-width:140px;max-width:10000px}
399
- .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(100vw,0,0);transform:translate3d(100vw,0,0)}
400
- @media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(10000px,0,0);transform:translate3d(10000px,0,0)}}.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-100vw,0,0);transform:translate3d(-100vw,0,0)}
401
- @media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-10000px,0,0);transform:translate3d(-10000px,0,0)}}.mm-menu_fullscreen.mm-menu_position-top{height:100vh;min-height:140px;max-height:10000px}
402
- .mm-menu_fullscreen.mm-menu_position-bottom{height:100vh;min-height:140px;max-height:10000px}
403
- .mm-menu_listview-justify .mm-panels>.mm-panel:after,.mm-menu_listview-justify .mm-panels>.mm-panel:before,.mm-panels>.mm-panel_listview-justify:after,.mm-panels>.mm-panel_listview-justify:before{content:none;display:none}
404
- .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview,.mm-panels>.mm-panel_listview-justify .mm-listview{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;margin-top:0;margin-bottom:0}
405
- .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem,.mm-panels>.mm-panel_listview-justify .mm-listitem{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:44px}
406
- .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem:not(.mm-listitem_divider),.mm-panels>.mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
407
- .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text,.mm-panels>.mm-panel_listview-justify .mm-listitem__text{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
408
- .mm-listview_inset{list-style:inside disc;width:100%;padding:0 30px 15px 30px;margin:0}
409
- .mm-listview_inset .mm-listitem{padding:5px 0}
410
- .mm-menu_multiline .mm-listitem__text,.mm-panel_multiline .mm-listitem__text{text-overflow:clip;white-space:normal}
411
- [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:0}
412
- .mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:.3;-webkit-transition:opacity .4s ease .4s;transition:opacity .4s ease .4s}
413
- .mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker{background:inherit}
414
- .mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker{background:#000}
415
- .mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker{background:#fff}
416
- .mm-menu_popup{-webkit-transition:opacity .4s ease;transition:opacity .4s ease;opacity:0;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;min-height:140px;max-height:880px;top:50%;left:50%;bottom:auto;right:auto;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}
417
- .mm-menu_popup.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}
418
- .mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker{-webkit-transition-delay:0s!important;transition-delay:0s!important;z-index:1}
419
- .mm-wrapper_opening .mm-menu_popup{opacity:1}
420
- .mm-menu_position-right{left:auto;right:0}
421
- .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
422
- @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}.mm-menu_position-bottom,.mm-menu_position-front,.mm-menu_position-top{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
423
- .mm-menu_position-bottom.mm-menu_opened,.mm-menu_position-front.mm-menu_opened,.mm-menu_position-top.mm-menu_opened{z-index:2}
424
- .mm-menu_position-bottom.mm-menu_opened~.mm-slideout,.mm-menu_position-front.mm-menu_opened~.mm-slideout,.mm-menu_position-top.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}
425
- .mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker{z-index:1}
426
- .mm-menu_position-front{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
427
- .mm-menu_position-front.mm-menu_position-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
428
- .mm-menu_position-bottom,.mm-menu_position-top{width:100%;min-width:100%;max-width:100%}
429
- .mm-menu_position-top{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
430
- .mm-menu_position-top{height:80vh;min-height:140px;max-height:880px}
431
- .mm-menu_position-bottom{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);top:auto}
432
- .mm-menu_position-bottom{height:80vh;min-height:140px;max-height:880px}
433
- .mm-wrapper_opening .mm-menu_position-bottom,.mm-wrapper_opening .mm-menu_position-front,.mm-wrapper_opening .mm-menu_position-top{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
434
- .mm-menu_shadow-page:after{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow);content:"";display:block;width:20px;height:120%;position:absolute;left:100%;top:-10%;z-index:100;-webkit-clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%);clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%)}
435
- .mm-menu_shadow-page.mm-menu_position-right:after{left:auto;right:100%;-webkit-clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%);clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%)}
436
- .mm-menu_shadow-page.mm-menu_position-front:after{content:none;display:none}
437
- .mm-menu_shadow-menu{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}
438
- .mm-menu_shadow-panels .mm-panels>.mm-panel{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}
439
- .mm-menu_theme-white{--mm-color-border:rgba( 0,0,0, 0.1 );--mm-color-button:rgba( 0,0,0, 0.3 );--mm-color-text:rgba( 0,0,0, 0.7 );--mm-color-text-dimmed:rgba( 0,0,0, 0.3 );--mm-color-background:#fff;--mm-color-background-highlight:rgba( 0,0,0, 0.06 );--mm-color-background-emphasis:rgba( 0,0,0, 0.03 );--mm-shadow:0 0 10px rgba( 0,0,0, 0.2 )}
440
- .mm-menu_theme-dark{--mm-color-border:rgba( 0,0,0, 0.3 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.85 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#333;--mm-color-background-highlight:rgba( 255,255,255, 0.08 );--mm-color-background-emphasis:rgba( 0,0,0, 0.1 );--mm-shadow:0 0 20px rgba( 0,0,0, 0.5 )}
441
- .mm-menu_theme-black{--mm-color-border:rgba( 255,255,255, 0.25 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.75 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#000;--mm-color-background-highlight:rgba( 255,255,255, 0.2 );--mm-color-background-emphasis:rgba( 255,255,255, 0.15 );--mm-shadow:none}
442
- .mm-menu_tileview .mm-listview,.mm-panel_tileview .mm-listview{margin:0!important}
443
- .mm-menu_tileview .mm-listview:after,.mm-panel_tileview .mm-listview:after{content:'';display:block;clear:both}
444
- .mm-menu_tileview .mm-listitem,.mm-panel_tileview .mm-listitem{padding:0;float:left;position:relative;width:50%;height:0;padding-top:50%}
445
- .mm-menu_tileview .mm-listitem:after,.mm-panel_tileview .mm-listitem:after{left:0;top:0;border-right-width:1px;border-right-style:solid;z-index:-1}
446
- .mm-menu_tileview .mm-listitem.mm-tile-xs,.mm-panel_tileview .mm-listitem.mm-tile-xs{width:12.5%;padding-top:12.5%}
447
- .mm-menu_tileview .mm-listitem.mm-tile-s,.mm-panel_tileview .mm-listitem.mm-tile-s{width:25%;padding-top:25%}
448
- .mm-menu_tileview .mm-listitem.mm-tile-l,.mm-panel_tileview .mm-listitem.mm-tile-l{width:75%;padding-top:75%}
449
- .mm-menu_tileview .mm-listitem.mm-tile-xl,.mm-panel_tileview .mm-listitem.mm-tile-xl{width:100%;padding-top:100%}
450
- .mm-menu_tileview .mm-listitem__text,.mm-panel_tileview .mm-listitem__text{line-height:1px;text-align:center;padding:50% 10px 0 10px;margin:0;position:absolute;top:0;right:1px;bottom:1px;left:0}
451
- .mm-menu_tileview .mm-listitem__btn,.mm-panel_tileview .mm-listitem__btn{width:auto}
452
- .mm-menu_tileview .mm-listitem__btn:after,.mm-menu_tileview .mm-listitem__btn:before,.mm-panel_tileview .mm-listitem__btn:after,.mm-panel_tileview .mm-listitem__btn:before{content:none;display:none}
453
- .mm-menu_tileview .mm-listitem_divider,.mm-panel_tileview .mm-listitem_divider{display:none}
454
- .mm-menu_tileview .mm-panel,.mm-panel_tileview{padding-left:0;padding-right:0}
455
- .mm-menu_tileview .mm-panel:after,.mm-menu_tileview .mm-panel:before,.mm-panel_tileview:after,.mm-panel_tileview:before{content:none;display:none}
456
- body.modal-open .mm-slideout{z-index:unset}
457
- .brz{/*!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  * animate.css -http://daneden.me/animate
459
  * Version - 3.7.0
460
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
461
  *
462
  * Copyright (c) 2018 Daniel Eden
463
- *//*!
 
 
 
 
 
464
  * animate.css -http://daneden.me/animate
465
  * Version - 3.7.0
466
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
467
  *
468
  * Copyright (c) 2018 Daniel Eden
469
- */}
470
- html{-webkit-box-sizing:border-box;box-sizing:border-box}
471
- *,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
472
- @-ms-viewport{width:device-width}
473
- .brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}
474
- body{margin:0}
475
- body.brz-ed{background-color:#f3f3f3}
476
- body.brz::after,body.brz::before{display:none}
477
- .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
478
- .brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
479
- .brz .brz-root__container.brz-reset-all{display:block;overflow:hidden}
480
- .brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}
481
- .brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{margin-top:0;margin-bottom:0;padding:0}
482
- .brz .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}
483
- .brz .brz-span{float:none;margin:0;padding:0;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit}
484
- .brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}
485
- .brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}
486
- .brz .brz-dt{font-weight:700}
487
- .brz .brz-dd{margin-bottom:.5rem;margin-left:0}
488
- .brz .brz-blockquote{margin:0 0 1rem}
489
- .brz .brz-dfn{font-style:italic}
490
- .brz .brz-b,.brz .brz-strong{font-weight:700}
491
- .brz .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
492
- .brz .brz-a[href]:hover{color:#1aabd8;text-decoration:underline;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
493
- .brz .brz-a:active,.brz .brz-a:focus,.brz .brz-a:hover{outline:0}
494
- .brz .brz-a.brz-btn[href]{text-decoration:none}
495
- .brz .brz-figure{margin:0;min-width:auto;min-height:auto}
496
- .brz .brz-img{vertical-align:middle;border-style:none}
497
- .brz svg:not(:root){overflow:hidden}
498
- .brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}
499
- .brz .brz-table{border-collapse:collapse}
500
- .brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#828b92;text-align:left;caption-side:bottom}
501
- .brz .brz-th{text-align:left}
502
- .brz .brz-form{margin:0}
503
- .brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}
504
- .brz .brz-button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
505
- .brz .brz-button,.brz .brz-input,.brz .brz-optgroup,.brz .brz-select,.brz .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}
506
- .brz .brz-button,.brz .brz-input{overflow:visible}
507
- .brz .brz-button,.brz .brz-select{text-transform:none}
508
- .brz .brz-button{-webkit-appearance:button}
509
- .brz .brz-button::-moz-focus-inner{padding:0;border-style:none}
510
- .brz .brz-input[type=checkbox],.brz .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
511
- .brz .brz-input[type=date],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month],.brz .brz-input[type=time]{-webkit-appearance:listbox}
512
- .brz .brz-textarea{overflow:auto;resize:vertical}
513
- .brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
514
- .brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}
515
- .brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
516
- .brz [hidden]{display:none!important}
517
- .brz .brz-reset-all{-ms-flex-line-pack:stretch;align-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-duration:0s;animation-duration:0s;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;azimuth:center;-webkit-backface-visibility:visible;backface-visibility:visible;background-attachment:scroll;background-blend-mode:normal;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-repeat:repeat;background-size:auto auto;block-size:auto;border-block-end-color:currentcolor;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-block-start-width:medium;border-bottom-color:currentcolor;border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-style:none;border-bottom-width:medium;border-collapse:separate;border-image-outset:0s;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;border-inline-end-color:currentcolor;border-inline-end-style:none;border-inline-end-width:medium;border-inline-start-color:currentcolor;border-inline-start-style:none;border-inline-start-width:medium;border-left-color:currentcolor;border-left-style:none;border-left-width:medium;border-right-color:currentcolor;border-right-style:none;border-right-width:medium;border-spacing:0;border-top-color:currentcolor;border-top-left-radius:0;border-top-right-radius:0;border-top-style:none;border-top-width:medium;bottom:auto;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-column-break-after:auto;break-after:auto;-webkit-column-break-before:auto;break-before:auto;-webkit-column-break-inside:auto;break-inside:auto;caption-side:top;caret-color:auto;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;empty-cells:show;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;grid-auto-columns:auto;grid-auto-flow:row;grid-auto-rows:auto;grid-column-end:auto;grid-column-gap:0;grid-column-start:auto;grid-row-end:auto;grid-row-gap:0;grid-row-start:auto;grid-template-areas:none;grid-template-columns:none;grid-template-rows:none;height:auto;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;image-orientation:0deg;image-rendering:auto;image-resolution:1dppx;ime-mode:auto;inline-size:auto;isolation:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-break:auto;line-height:normal;list-style-image:none;list-style-position:outside;list-style-type:disc;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-before:0;margin-block-start:0;margin-bottom:0;-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;margin-inline-start:0;margin-left:0;margin-right:0;margin-top:0;-webkit-mask-clip:border-box;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;mask-mode:match-source;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;mask-type:luminance;max-height:none;max-width:none;min-block-size:0;min-height:0;min-inline-size:0;min-width:0;mix-blend-mode:normal;-o-object-fit:fill;object-fit:fill;-o-object-position:50% 50%;object-position:50% 50%;offset-block-end:auto;offset-block-start:auto;offset-inline-end:auto;offset-inline-start:auto;opacity:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;orphans:2;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;padding-bottom:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;padding-inline-start:0;padding-left:0;padding-right:0;padding-top:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;quotes:initial;resize:none;right:auto;ruby-align:space-around;ruby-merge:separate;ruby-position:over;scroll-behavior:auto;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-ms-scroll-snap-type:none;scroll-snap-type:none;shape-image-threshold:0;shape-margin:0;shape-outside:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:initial;text-align-last:auto;text-combine-upright:none;-webkit-text-decoration-color:currentcolor;text-decoration-color:currentcolor;-webkit-text-decoration-line:none;text-decoration-line:none;-webkit-text-decoration-style:solid;text-decoration-style:solid;-webkit-text-emphasis-color:currentcolor;text-emphasis-color:currentcolor;-webkit-text-emphasis-position:over;text-emphasis-position:over right;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-indent:0;text-justify:auto;text-orientation:mixed;text-overflow:clip;text-rendering:auto;text-shadow:none;text-transform:none;text-underline-position:auto;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;will-change:auto;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none}
518
- .brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}
519
- .brz .brz-h1{font-size:55px;font-weight:400}
520
- .brz .brz-h2{font-size:40px}
521
- .brz .brz-h3{font-size:32px}
522
- .brz .brz-h4{font-size:26px}
523
- .brz .brz-h5{font-size:19px}
524
- .brz .brz-h6{font-size:14px}
525
- .brz .brz-p{font-size:14px;font-weight:400}
526
- .brz .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
527
- .brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
528
- .brz .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
529
- .brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
530
- .brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
531
- .brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
532
- .brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
533
- .brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
534
- .brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
535
- .brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
536
- .brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
537
- .brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
538
- .brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
539
- .brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
540
- .brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
541
- .brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
542
- .brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
543
- .brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}
544
- .brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
545
- .brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
546
- .brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
547
- .brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
548
- .brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
549
- .brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
550
- .brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}
551
- .brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
552
- .brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
553
- .brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
554
- @media (min-width:480px){.brz .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
555
- .brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
556
- .brz .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
557
- .brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
558
- .brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
559
- .brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
560
- .brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
561
- .brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
562
- .brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
563
- .brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
564
- .brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
565
- .brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
566
- .brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
567
- .brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
568
- .brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
569
- .brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
570
- .brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
571
- .brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}
572
- .brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
573
- .brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
574
- .brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
575
- .brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
576
- .brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
577
- .brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
578
- .brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}
579
- .brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
580
- .brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
581
- .brz .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
582
- .brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
583
- .brz .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
584
- .brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
585
- .brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
586
- .brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
587
- .brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
588
- .brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
589
- .brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
590
- .brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
591
- .brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
592
- .brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
593
- .brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
594
- .brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
595
- .brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
596
- .brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
597
- .brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
598
- .brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}
599
- .brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
600
- .brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
601
- .brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
602
- .brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
603
- .brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
604
- .brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
605
- .brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}
606
- .brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
607
- .brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
608
- .brz .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
609
- .brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
610
- .brz .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
611
- .brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
612
- .brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
613
- .brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
614
- .brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
615
- .brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
616
- .brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
617
- .brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
618
- .brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
619
- .brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
620
- .brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
621
- .brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
622
- .brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
623
- .brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
624
- .brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
625
- .brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
626
- .brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
627
- .brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
628
- .brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
629
- .brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
630
- .brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
631
- .brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
632
- .brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
633
- .brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
634
- .brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
635
- .brz .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:1200px){.brz .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
636
- .brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
637
- .brz .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
638
- .brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
639
- .brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
640
- .brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
641
- .brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
642
- .brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
643
- .brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
644
- .brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
645
- .brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
646
- .brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
647
- .brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
648
- .brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
649
- .brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
650
- .brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
651
- .brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
652
- .brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}
653
- .brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
654
- .brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
655
- .brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
656
- .brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
657
- .brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
658
- .brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
659
- .brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}
660
- .brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
661
- .brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
662
- .brz .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:1400px){.brz .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
663
- .brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
664
- .brz .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
665
- .brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
666
- .brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
667
- .brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
668
- .brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
669
- .brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
670
- .brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
671
- .brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
672
- .brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
673
- .brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
674
- .brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
675
- .brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
676
- .brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
677
- .brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
678
- .brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
679
- .brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}
680
- .brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
681
- .brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
682
- .brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
683
- .brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
684
- .brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
685
- .brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
686
- .brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}
687
- .brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
688
- .brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
689
- .brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-d-block{display:block!important}
690
- .brz .brz-d-inline-block{display:inline-block!important}
691
- .brz .brz-d-inline{display:inline!important}
692
- .brz .brz-d-table{width:100%;display:table;position:relative}
693
- .brz .brz-d-table-cell{display:table-cell}
694
- .brz .brz-blocked{pointer-events:none}
695
- .brz .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
696
- .brz .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
697
- @media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
698
- .brz .brz-d-ms-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:768px){.brz .brz-d-sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
699
- .brz .brz-d-sm-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:992px){.brz .brz-d-md-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
700
- .brz .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
701
- .brz .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
702
- .brz .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}.brz .brz-p-relative{position:relative!important}
703
- .brz .brz-p-absolute{position:absolute!important}
704
- .brz .brz-p-fixed{position:fixed!important}
705
- .brz .brz-invisible{visibility:hidden!important}
706
- .brz .brz-visible{visibility:visible!important}
707
- .brz .brz-hidden-xs-up{display:none!important}
708
- @media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}}.brz .brz-invisible-xs-up{visibility:hidden!important}
709
- @media (max-width:479px){.brz .brz-invisible-xs-down{visibility:hidden!important}}.brz .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}
710
- @media (max-width:479px){.brz .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz .brz-hidden-ms-up{display:none!important}}@media (max-width:767px){.brz .brz-hidden-ms-down{display:none!important}}@media (min-width:480px){.brz .brz-invisible-ms-up{visibility:hidden!important}}@media (max-width:767px){.brz .brz-invisible-ms-down{visibility:hidden!important}}@media (min-width:480px){.brz .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:768px){.brz .brz-hidden-sm-up{display:none!important}}@media (max-width:991px){.brz .brz-hidden-sm-down{display:none!important}}@media (min-width:768px){.brz .brz-invisible-sm-up{visibility:hidden!important}}@media (max-width:991px){.brz .brz-invisible-sm-down{visibility:hidden!important}}@media (min-width:768px){.brz .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz .brz-hidden-md-up{display:none!important}}@media (max-width:1199px){.brz .brz-hidden-md-down{display:none!important}}@media (min-width:992px){.brz .brz-invisible-md-up{visibility:hidden!important}}@media (max-width:1199px){.brz .brz-invisible-md-down{visibility:hidden!important}}@media (min-width:992px){.brz .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz .brz-hidden-lg-up{display:none!important}}@media (max-width:1399px){.brz .brz-hidden-lg-down{display:none!important}}@media (min-width:1200px){.brz .brz-invisible-lg-up{visibility:hidden!important}}@media (max-width:1399px){.brz .brz-invisible-lg-down{visibility:hidden!important}}@media (min-width:1200px){.brz .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz .brz-hidden-xl-up{display:none!important}}.brz .brz-hidden-xl-down{display:none!important}
711
- @media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}}.brz .brz-invisible-xl-down{visibility:hidden!important}
712
- @media (min-width:1400px){.brz .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}
713
- .brz .brz-hidden{display:none!important}
714
- .brz .brz-visible-print-block{display:none!important}
715
- @media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}
716
- @media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}
717
- @media print{.brz .brz-visible-print-inline-block{display:inline-block!important}}@media print{.brz .brz-hidden-print{display:none!important}}.brz .brz-ow-hidden{overflow:hidden!important}
718
- .brz .brz-ow-visible{overflow:visible!important}
719
- .brz .brz-fw-100{font-weight:100!important}
720
- .brz .brz-fw-200{font-weight:200!important}
721
- .brz .brz-fw-300{font-weight:300!important}
722
- .brz .brz-fw-400{font-weight:400!important}
723
- .brz .brz-fw-500{font-weight:500!important}
724
- .brz .brz-fw-600{font-weight:600!important}
725
- .brz .brz-fw-700{font-weight:700!important}
726
- .brz .brz-fw-800{font-weight:800!important}
727
- .brz .brz-fw-900{font-weight:900!important}
728
- @-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
729
- 40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}
730
- 70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}
731
- 90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
732
- 40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}
733
- 70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}
734
- 90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.brz .bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}
735
- @-webkit-keyframes flash{50%,from,to{opacity:1}
736
- 25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}
737
- 25%,75%{opacity:0}}.brz .flash{-webkit-animation-name:flash;animation-name:flash}
738
- @-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
739
- 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
740
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
741
- 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
742
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .pulse{-webkit-animation-name:pulse;animation-name:pulse}
743
- @-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
744
- 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
745
- 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
746
- 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
747
- 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
748
- 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
749
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
750
- 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
751
- 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
752
- 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
753
- 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
754
- 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
755
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}
756
- @-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
757
- 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
758
- 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
759
- 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
760
- 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.brz .shake{-webkit-animation-name:shake;animation-name:shake}
761
- @-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
762
- 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
763
- 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
764
- 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
765
- 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
766
- 50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
767
- 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
768
- 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
769
- 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
770
- 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
771
- 50%{-webkit-transform:translateX(0);transform:translateX(0)}}.brz .headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}
772
- @-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
773
- 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
774
- 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
775
- 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
776
- to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
777
- 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
778
- 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
779
- 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
780
- to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.brz .swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}
781
- @-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
782
- 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
783
- 30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}
784
- 40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}
785
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
786
- 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
787
- 30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}
788
- 40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}
789
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .tada{-webkit-animation-name:tada;animation-name:tada}
790
- @-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
791
- 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
792
- 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
793
- 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
794
- 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
795
- 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
796
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
797
- 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
798
- 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
799
- 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
800
- 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
801
- 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
802
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .wobble{-webkit-animation-name:wobble;animation-name:wobble}
803
- @-webkit-keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
804
- 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
805
- 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
806
- 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
807
- 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
808
- 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
809
- 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
810
- 88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
811
- 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
812
- 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
813
- 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
814
- 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
815
- 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
816
- 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
817
- 88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}.brz .jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}
818
- @-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
819
- 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
820
- 28%{-webkit-transform:scale(1);transform:scale(1)}
821
- 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
822
- 70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
823
- 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
824
- 28%{-webkit-transform:scale(1);transform:scale(1)}
825
- 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
826
- 70%{-webkit-transform:scale(1);transform:scale(1)}}.brz .heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
827
- @-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
828
- 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
829
- 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
830
- 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
831
- 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
832
- 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
833
- to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
834
- 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
835
- 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
836
- 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
837
- 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
838
- 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
839
- to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}
840
- @-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
841
- 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
842
- 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
843
- 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
844
- 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
845
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
846
- 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
847
- 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
848
- 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
849
- 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
850
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}
851
- @-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
852
- 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
853
- 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
854
- 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
855
- 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
856
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
857
- 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
858
- 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
859
- 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
860
- 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
861
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}
862
- @-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
863
- from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
864
- 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
865
- 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
866
- 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
867
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
868
- from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
869
- 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
870
- 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
871
- 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
872
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}
873
- @-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
874
- from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
875
- 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
876
- 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
877
- 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
878
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
879
- from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
880
- 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
881
- 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
882
- 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
883
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}
884
- @-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
885
- 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
886
- to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
887
- 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
888
- to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.brz .bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}
889
- @-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
890
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
891
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
892
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
893
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}
894
- @-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
895
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
896
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}
897
- @-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
898
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
899
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}
900
- @-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
901
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
902
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
903
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
904
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}
905
- @-webkit-keyframes fadeIn{from{opacity:0}
906
- to{opacity:1}}@keyframes fadeIn{from{opacity:0}
907
- to{opacity:1}}.brz .fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}
908
- @-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
909
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
910
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}
911
- @-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
912
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
913
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}
914
- @-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
915
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
916
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}
917
- @-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
918
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
919
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}
920
- @-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
921
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
922
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}
923
- @-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
924
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
925
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}
926
- @-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
927
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
928
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}
929
- @-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
930
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
931
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}
932
- @-webkit-keyframes fadeOut{from{opacity:1}
933
- to{opacity:0}}@keyframes fadeOut{from{opacity:1}
934
- to{opacity:0}}.brz .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}
935
- @-webkit-keyframes fadeOutDown{from{opacity:1}
936
- to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}
937
- to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}
938
- @-webkit-keyframes fadeOutDownBig{from{opacity:1}
939
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}
940
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}
941
- @-webkit-keyframes fadeOutLeft{from{opacity:1}
942
- to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}
943
- to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}
944
- @-webkit-keyframes fadeOutLeftBig{from{opacity:1}
945
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}
946
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}
947
- @-webkit-keyframes fadeOutRight{from{opacity:1}
948
- to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}
949
- to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}
950
- @-webkit-keyframes fadeOutRightBig{from{opacity:1}
951
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}
952
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}
953
- @-webkit-keyframes fadeOutUp{from{opacity:1}
954
- to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}
955
- to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}
956
- @-webkit-keyframes fadeOutUpBig{from{opacity:1}
957
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}
958
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}
959
- @-webkit-keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
960
- 40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
961
- 50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
962
- 80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
963
- to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
964
- 40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
965
- 50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
966
- 80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
967
- to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.brz .animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}
968
- @-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
969
- 40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
970
- 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
971
- 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
972
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
973
- 40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
974
- 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
975
- 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
976
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz .flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}
977
- @-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
978
- 40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
979
- 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
980
- 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
981
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
982
- 40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
983
- 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
984
- 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
985
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz .flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}
986
- @-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
987
- 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
988
- to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
989
- 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
990
- to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.brz .flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
991
- @-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
992
- 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
993
- to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
994
- 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
995
- to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.brz .flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}
996
- @-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
997
- 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
998
- 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
999
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
1000
- 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
1001
- 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
1002
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
1003
- @-webkit-keyframes lightSpeedOut{from{opacity:1}
1004
- to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}
1005
- to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.brz .lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
1006
- @-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}
1007
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}
1008
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}
1009
- @-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}
1010
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}
1011
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}
1012
- @-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
1013
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
1014
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}
1015
- @-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
1016
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
1017
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}
1018
- @-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}
1019
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}
1020
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}
1021
- @-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
1022
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
1023
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.brz .rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}
1024
- @-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
1025
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
1026
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.brz .rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}
1027
- @-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
1028
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
1029
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz .rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}
1030
- @-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
1031
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
1032
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz .rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}
1033
- @-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
1034
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
1035
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.brz .rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}
1036
- @-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
1037
- 20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
1038
- 40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}
1039
- to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
1040
- 20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
1041
- 40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}
1042
- to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.brz .hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}
1043
- @-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}
1044
- 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
1045
- 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
1046
- to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}
1047
- 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
1048
- 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
1049
- to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.brz .jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}
1050
- @-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}
1051
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}
1052
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}
1053
- @-webkit-keyframes rollOut{from{opacity:1}
1054
- to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}
1055
- to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.brz .rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}
1056
- @-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1057
- 50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1058
- 50%{opacity:1}}.brz .zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}
1059
- @-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1060
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1061
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}
1062
- @-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1063
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1064
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}
1065
- @-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1066
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1067
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}
1068
- @-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1069
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1070
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}
1071
- @-webkit-keyframes zoomOut{from{opacity:1}
1072
- 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1073
- to{opacity:0}}@keyframes zoomOut{from{opacity:1}
1074
- 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1075
- to{opacity:0}}.brz .zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}
1076
- @-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1077
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1078
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}
1079
- @-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}
1080
- to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}
1081
- to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.brz .zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}
1082
- @-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}
1083
- to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}
1084
- to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.brz .zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}
1085
- @-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1086
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
1087
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}
1088
- @-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
1089
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
1090
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}
1091
- @-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
1092
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
1093
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}
1094
- @-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
1095
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
1096
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}
1097
- @-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
1098
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
1099
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}
1100
- @-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1101
- to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1102
- to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}
1103
- @-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1104
- to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1105
- to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}
1106
- @-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1107
- to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1108
- to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}
1109
- @-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1110
- to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1111
- to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
1112
- .brz .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
1113
- .brz .animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
1114
- .brz .animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}
1115
- .brz .animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}
1116
- .brz .animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}
1117
- .brz .animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}
1118
- .brz .animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}
1119
- .brz .animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}
1120
- .brz .animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}
1121
- .brz .animated.slow{-webkit-animation-duration:2s;animation-duration:2s}
1122
- .brz .animated.slower{-webkit-animation-duration:3s;animation-duration:3s}
1123
- @media (prefers-reduced-motion){.brz .animated{-webkit-animation:unset!important;animation:unset!important;-webkit-transition:none!important;transition:none!important}}.brz .brz-animated{opacity:0;-webkit-animation-fill-mode:both;animation-fill-mode:both}
1124
- .brz .brz-animated.brz-animate{opacity:1}
1125
- .brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;position:relative;fill:currentColor;color:currentColor}
1126
- .brz .brz-icon-svg use{fill:inherit}
1127
- .brz .brz-icon-svg.grid-16{height:16px;width:16px}
1128
- .brz .brz-icon-svg.grid-24{height:24px;width:24px}
1129
- .brz .brz-icon-svg.glyph{fill:currentColor;stroke:none}
1130
- .brz .brz-icon-svg.outline{stroke:currentColor;fill:none}
1131
- .brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}
1132
- .brz .brz-section{background-color:#fff;position:relative;margin:0;overflow:visible}
1133
- .brz .brz-section__content{position:relative;width:100%}
1134
- .brz .brz-section__content>.brz-bg{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}
1135
- .brz .brz-section__items{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}
1136
- .brz .brz-section>.brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1137
- .brz .brz-section>.brz-slick-slider:not(.slick-initialized)>.brz-section__items:not(:first-child){display:none}
1138
- .brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.slick-slide{height:auto}
1139
- .brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.slick-slide .brz-section__content>.brz-bg>.brz-bg-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}
1140
- .brz .brz-sec-full-height .brz-container__wrap,.brz .brz-sec-full-height .brz-container__wrap--fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100vh}
1141
- .brz .brz-section__header>.brz-section__menu-item{position:relative;z-index:1050}
1142
- .brz .brz-section__header--animated{position:fixed;z-index:1051;top:0;left:0;width:100%;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0;-webkit-transition:opacity .2s linear,-webkit-transform .2s linear;transition:opacity .2s linear,-webkit-transform .2s linear;transition:transform .2s linear,opacity .2s linear;transition:transform .2s linear,opacity .2s linear,-webkit-transform .2s linear}
1143
- .brz .brz-section__header--animated-opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;-webkit-transition:opacity .2s linear,-webkit-transform .2s linear;transition:opacity .2s linear,-webkit-transform .2s linear;transition:transform .2s linear,opacity .2s linear;transition:transform .2s linear,opacity .2s linear,-webkit-transform .2s linear}
1144
- .brz .brz-section__header--fixed{position:relative;z-index:1050}
1145
- .brz .brz-section__header--fixed-opened{position:fixed;z-index:1051;top:0;left:0;width:100%}
1146
- @media (max-width:991px){.brz.brz-ed .brz-section__header--animated{padding-left:15px;padding-right:15px}}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}
1147
- .brz .brz-container__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1148
- @media (max-width:991px){.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}.brz .brz-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1149
- .brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:1px;-ms-flex-preferred-size:100%;flex-basis:100%}
1150
- .brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
1151
- .brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}
1152
- .brz .brz-wrapper-clone__wrap{height:100%}
1153
- .brz .brz-wrapper-clone__wrap>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1154
- .brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}
1155
- .brz .brz-bg{position:relative}
1156
- .brz .brz-bg-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}
1157
- .brz .brz-bg-media{overflow:hidden}
1158
- .brz .brz-bg-color,.brz .brz-bg-image,.brz .brz-bg-map,.brz .brz-bg-media,.brz .brz-bg-video{position:absolute;top:0;left:0;width:100%;height:100%}
1159
- .brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}
1160
- .brz.brz-is-mobile .brz-bg-media>.brz-bg-image{background-attachment:scroll}
1161
- .brz .brz-iframe.brz-bg-map__cover,.brz .brz-iframe.brz-bg-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none;max-width:none;background-repeat:no-repeat;background-size:cover}
1162
- .brz .brz-bg-color{opacity:1}
1163
- .brz .brz-bg-shape{width:100%;height:100px;position:absolute;left:0;right:0;background-repeat:no-repeat;pointer-events:none}
1164
- .brz .brz-bg-shape__top{top:0}
1165
- .brz .brz-bg-shape__bottom{bottom:0;-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}
1166
- .brz .brz-bg-image-parallax{width:100%;background-size:cover!important;background-position:50% 50%;left:0;top:-50vh;height:100vh;-webkit-transition:all 0s ease!important;transition:all 0s ease!important;-webkit-transform-origin:center center 0;transform-origin:center center 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}
1167
- @media (max-width:991px){.brz .brz-bg-video .brz-iframe{display:none!important}}.brz .brz-btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #ccc;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;color:#fff;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;background-image:none;white-space:nowrap;font-weight:400;-webkit-backface-visibility:hidden;backface-visibility:hidden}
1168
- .brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}
1169
- .brz .brz-btn:focus{text-decoration:none}
1170
- .brz .brz-btn .brz-span{display:block}
1171
- .brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1172
- .brz .buttons .brz-wrapper-clone__item{padding:10px}
1173
- .brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;max-width:100%;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}
1174
- .brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1175
- .brz .brz-list .brz-list__item{padding:6px}
1176
- .brz .brz-countdown{display:-webkit-box;display:-ms-flexbox;display:flex}
1177
- .brz .brz-countdown__item{-webkit-box-flex:1;-ms-flex:1 0 25%;flex:1 0 25%;text-align:center;padding-left:15px;padding-right:15px;word-break:break-word;word-wrap:break-word}
1178
- .brz .brz-countdown__number{font-size:1em;margin-bottom:15px}
1179
- .brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}
1180
- .brz .brz-spacer{width:100%}
1181
- .brz .brz-icon-text{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;text-align:left;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}
1182
- .brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}
1183
- .brz .brz-icon-text .brz-icon__container{min-width:auto}
1184
- .brz .brz-line{position:relative;line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}
1185
- .brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0;background:0 0}
1186
- .brz .brz-map{position:relative;width:100%;display:inline-block;vertical-align:middle}
1187
- .brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
1188
- .brz .brz-image{display:inherit;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;-ms-flex-preferred-size:100%;flex-basis:100%;width:100%}
1189
- .brz .brz-image .brz-img{max-width:100%;border-radius:inherit}
1190
- .brz .brz-image .brz-a,.brz .brz-image picture{outline:0;border-radius:inherit}
1191
- .brz .brz-ed-image__content{position:relative;width:100%}
1192
- .brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}
1193
- .brz .brz-ed-image__wrapper .brz-img{max-width:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;display:block}
1194
- .brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}
1195
- .brz .brz-image-fix-1-1{padding-top:100%}
1196
- .brz .brz-image-fix-2-1{padding-top:50%}
1197
- .brz .brz-image-fix-2-3{padding-top:150%}
1198
- .brz .brz-image-fix-3-4{padding-top:125%}
1199
- .brz .brz-image-fix-4-3{padding-top:75%}
1200
- .brz .brz-image-fix-9-16{padding-top:177.8%}
1201
- .brz .brz-image-fix-16-9{padding-top:56.25%}
1202
- .brz:not(.brz-ed) .brz-image .brz-a,.brz:not(.brz-ed) .brz-image .brz-img,.brz:not(.brz-ed) .brz-image picture{width:100%;height:auto}
1203
- .brz:not(.brz-ed) .brz-image__lightbox *{cursor:-webkit-zoom-in;cursor:zoom-in}
1204
- .brz .mfp-bg{z-index:1100}
1205
- .brz .mfp-wrap{z-index:1101}
1206
- .brz .mfp-figure:after,.brz .mfp-iframe-scaler iframe{-webkit-box-shadow:0 0 40px rgba(0,0,0,.35);box-shadow:0 0 40px rgba(0,0,0,.35)}
1207
- .brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}
1208
- .brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
1209
- .brz .brz-video .brz-video__cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-repeat:no-repeat}
1210
- .brz .brz-video .brz-video__cover::before{content:'';display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto}
1211
- .brz .brz-video .brz-video__cover .brz-video__cover-icon{position:relative;z-index:1;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}
1212
- .brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg{width:100%;left:2px}
1213
- .brz .brz-video .brz-video__cover .brz-video__cover-icon a{line-height:0}
1214
- .brz .brz-video .brz-video__cover:hover{cursor:pointer}
1215
- .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
1216
- .brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
1217
- .brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:10px;height:auto;word-break:break-all;word-wrap:break-word}
1218
- .brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
1219
- .brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;white-space:pre-wrap;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
1220
- .brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
1221
- .brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none;padding-left:1em}
1222
- .brz .brz-rich-text ol li:before,.brz .brz-rich-text ul li:before{margin-left:-1em}
1223
- .brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}
1224
- .brz .brz-rich-text ol{counter-reset:number}
1225
- .brz .brz-rich-text ol li{counter-increment:number}
1226
- .brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}
1227
- .brz .brz-rich-text .ql-editor{white-space:pre-wrap}
1228
- .brz .brz-rich-text h1,.brz .brz-rich-text h2,.brz .brz-rich-text h3,.brz .brz-rich-text h4,.brz .brz-rich-text h5,.brz .brz-rich-text h6{margin-top:0;margin-bottom:0;padding:0;text-shadow:none;text-transform:initial;text-decoration:initial}
1229
- .brz .brz-rich-text h1:before,.brz .brz-rich-text h2:before,.brz .brz-rich-text h3:before,.brz .brz-rich-text h4:before,.brz .brz-rich-text h5:before,.brz .brz-rich-text h6:before{display:none}
1230
- .brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;text-shadow:none;text-transform:initial;text-decoration:initial}
1231
- .brz .brz-rich-text span{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit}
1232
- .brz .brz-rich-text p{display:block}
1233
- .brz .brz-rich-text a,.brz .brz-rich-text em,.brz .brz-rich-text span{display:inline}
1234
- .brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}
1235
- .brz .brz-rich-text ol ol,.brz .brz-rich-text ol ul,.brz .brz-rich-text ul ol,.brz .brz-rich-text ul ul{margin:0}
1236
- .brz .brz-rich-text a{text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}
1237
- .brz .brz-rich-text a[href]:hover{text-decoration:underline}
1238
- .brz .brz-rich-text .link--anchor,.brz .brz-rich-text .link--external,.brz .brz-rich-text .link--popup{text-decoration:none}
1239
- .brz .brz-rich-text .link--anchor:hover,.brz .brz-rich-text .link--external:hover,.brz .brz-rich-text .link--popup:hover{text-decoration:underline}
1240
- .brz .brz-rich-text .brz-tp__dc-block:after{content:"";display:table;clear:both}
1241
- .brz .brz-text__editor{min-width:10px}
1242
- .brz .brz-text__editor:empty:before{content:"\00a0\00a0"}
1243
- .brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}
1244
- .brz .brz-progress-bar__wrapper{overflow:hidden}
1245
- .brz .brz-progress-bar .brz-text__editor{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
1246
- .brz .brz-shortcode__placeholder{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%;background-color:#373e48;color:#151924}
1247
- .brz .brz-shortcode__placeholder .brz-icon-svg{width:calc(16px + (.075 * 100%));height:calc(16px + (.075 * 100%))}
1248
- .brz .brz-soundcloud{font-size:0}
1249
- .brz .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
1250
- .brz .slick-slider.slick-dotted{margin:0}
1251
- .brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}
1252
- .brz .slick-list:focus{outline:0}
1253
- .brz .slick-list.dragging{cursor:pointer;cursor:hand}
1254
- .brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1255
- .brz .slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}
1256
- .slick-loading .brz .slick-track{visibility:hidden}
1257
- .brz .slick-track:after,.brz .slick-track:before{content:none}
1258
- .brz .slick-slide{height:100%;min-height:1px;display:none;float:none}
1259
- .brz .slick-slide img{display:block}
1260
- .brz .slick-slide.slick-loading img{display:none}
1261
- .brz .slick-slide.dragging img{pointer-events:none}
1262
- .slick-initialized .brz .slick-slide{display:block}
1263
- .slick-loading .brz .slick-slide{visibility:hidden}
1264
- .slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}
1265
- .brz .slick-arrow.slick-hidden{display:none}
1266
- .brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
1267
- .brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}
1268
- .brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}
1269
- .brz .brz-slick-slider .brz-section__items,.brz .brz-slick-slider .slick-slide>div{height:100%}
1270
- .brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}
1271
- .brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}
1272
- .brz .slick-initialized .slick-slide{display:block}
1273
- .brz .slick-track{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1274
- .brz .brz-slick-slider__dots{position:absolute;bottom:50px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);padding:0;list-style:none;margin:0;font-size:0}
1275
- .brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}
1276
- .brz .brz-slick-slider__dots li:first-child{padding-left:0}
1277
- .brz .brz-slick-slider__dots li:last-child{padding-right:0}
1278
- .brz .brz-slick-slider__dots button{cursor:pointer;color:inherit;outline:0;overflow:hidden;padding:0;text-indent:-9999px;border:2px solid currentColor;background-color:transparent;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}
1279
- .brz .brz-slick-slider__dots .slick-active button{background-color:currentColor;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}
1280
- .brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}
1281
- .brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
1282
- .brz .brz-slick-slider__dots--square button{width:10px;height:10px}
1283
- .brz .brz-slick-slider__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2;font-size:30px;cursor:pointer;-webkit-transition:linear .2s opacity;transition:linear .2s opacity;color:#000;background-color:transparent;border:none}
1284
- .brz .brz-slick-slider__arrow:hover{-webkit-transition:linear .2s opacity;transition:linear .2s opacity}
1285
- .brz .brz-slick-slider__arrow .brz-icon-svg{display:block}
1286
- .brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}
1287
- .brz .brz-slick-slider__arrow-next{right:30px}
1288
- .brz .brz-form{width:100%}
1289
- .brz .brz-form__fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1290
- .brz .brz-form__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}
1291
- .brz .brz-form .brz-input,.brz .brz-form .brz-textarea{display:block;width:100%;height:auto;background-color:transparent;border:none;outline:0;color:inherit;font-size:inherit;font-family:inherit;letter-spacing:inherit;font-weight:inherit;line-height:inherit}
1292
- .brz .brz-form .brz-textarea{height:100%;resize:none}
1293
- .brz .brz-form .brz-form__field{padding:14px 24px}
1294
- .brz .brz-form__select{position:relative}
1295
- .brz .brz-form__select-current{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
1296
- .brz .brz-form__select-list{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1041;top:100%;left:0;width:100%;background-color:#fff}
1297
- .brz .brz-form__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}
1298
- .brz .brz-form__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}
1299
- .brz .brz-form__select-item__input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;color:rgba(115,119,127,.7);line-height:1;font-family:inherit;font-weight:inherit;padding:14px 24px}
1300
- .brz .brz-form__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}
1301
- .brz .brz-form__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1302
- .brz .brz-form__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1303
- .brz .brz-form__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1304
- .brz .brz-form__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1305
- .brz .brz-form__select-item__input .brz-input.brz-input{cursor:text}
1306
- .brz .brz-form__select-item__icon{color:rgba(115,119,127,.7);-ms-flex-preferred-size:52px;flex-basis:52px;text-align:center;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}
1307
- .brz .brz-form__select--arrow{font-size:14px}
1308
- .brz .brz-form .brz-control__select{position:relative}
1309
- .brz .brz-form .brz-control__select-current,.brz .brz-form .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:inherit;color:inherit}
1310
- .brz .brz-form .brz-control__select-current{padding:14px 24px;cursor:pointer}
1311
- .brz .brz-form .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}
1312
- .brz .brz-form .brz-control__select-current .brz-control__select--arrow{font-size:14px}
1313
- .brz .brz-form .brz-control__select-options{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1030;top:100%;left:0;width:100%;background-color:#fff;display:none}
1314
- .brz .brz-form .brz-control__select-options .brz-control__select-option{padding:14px 24px;font-size:16px;height:52px;line-height:1.5;cursor:pointer}
1315
- .brz .brz-form .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}
1316
- .brz .brz-form__alert{height:55px;width:100%;font-size:12px;line-height:2;letter-spacing:2.5px;font-weight:600;text-transform:uppercase;padding:17px 30px;color:#fff;margin-top:15px}
1317
- .brz .brz-form__alert--success{background-color:#15d053}
1318
- .brz .brz-form__alert--error{background-color:red}
1319
- .brz .brz-form__item--error .brz-control__select-current,.brz .brz-form__item--error .brz-form__field{border-color:red!important}
1320
- @media (max-width:767px){.brz .brz-form__select-item__input{font-size:14px;padding:10px 16px}
1321
- .brz .brz-form .brz-form__field{padding:10px 16px}
1322
- .brz .brz-form .brz-control__select-current{padding:10px 16px}
1323
- .brz .brz-form .brz-control__select-options .brz-control__select-option{padding:10px 16px;font-size:14px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
1324
- .brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}
1325
- .brz .brz-tabs__nav--item{list-style:none}
1326
- .brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}
1327
- .brz .brz-tabs__nav--active{position:relative}
1328
- .brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}
1329
- .brz .brz-tabs__nav--active:before{left:-100vw}
1330
- .brz .brz-tabs__nav--active:after{right:-100vw}
1331
- .brz .brz-tabs__nav--button{padding:10px 15px;cursor:pointer;border-style:solid;background-clip:padding-box}
1332
- .brz .brz-tabs__nav--mobile{display:none}
1333
- .brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}
1334
- .brz .brz-tabs__items--active{display:block;border-top:none}
1335
- .brz .brz-tabs__items--active>.brz-tabs__item--content{-webkit-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
1336
- .brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}
1337
- @media (max-width:991px){.brz .brz-tabs__nav--mobile{display:block}
1338
- .brz .brz-tabs__nav--desktop{display:none}
1339
- .brz .brz-tabs__items{display:block}
1340
- .brz .brz-tabs__items>.brz-tabs__item--content{display:none}
1341
- .brz .brz-tabs__items:not(:last-child){margin-bottom:3px}
1342
- .brz .brz-tabs__items--active{border-top:solid}
1343
- .brz .brz-tabs__items--active>.brz-tabs__nav--button{border-bottom:solid}
1344
- .brz .brz-tabs__items--active>.brz-tabs__item--content{display:block}}.brz .brz-accordion{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
1345
- .brz .brz-accordion__nav{padding:10px 15px;cursor:pointer;border-style:solid;background-clip:padding-box}
1346
- .brz .brz-accordion__item{display:block;width:100%}
1347
- .brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}
1348
- .brz .brz-accordion__item:not(:last-child){margin-bottom:3px}
1349
- .brz .brz-accordion__item--active>.brz-accordion__content{display:block}
1350
- .brz .brz-accordion__item--active>.brz-accordion__content:empty{min-height:50px}
1351
- .brz .brz-image__gallery{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1352
- .brz .brz-image__gallery .brz-image{display:block}
1353
- .brz .brz-image__gallery-item{-webkit-transition:none!important;transition:none!important}
1354
- .brz .brz-popup{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1070}
1355
- .brz .brz-popup__close{position:absolute;z-index:2;top:36px;left:50px;color:#fff;font-size:0;cursor:pointer}
1356
- .brz .brz-popup__close .brz-icon-svg{font-size:26px}
1357
- .brz .brz-popup__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}
1358
- .brz .brz-popup__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
1359
- .brz .brz-popup__preview.brz-popup--opened{z-index:1070;visibility:visible;-webkit-transform:translate(0);transform:translate(0);opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
1360
- .brz .brz-carousel{display:block;width:100%}
1361
- .brz .brz-carousel__slider:not(.slick-initialized){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1362
- .brz .brz-carousel>.slick-slider{overflow:hidden}
1363
- .brz .brz-carousel>.slick-slider>.slick-list{padding-top:30px;padding-bottom:30px}
1364
- .brz .brz-carousel>.slick-slider .slick-slide{height:auto}
1365
- .brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div{height:100%}
1366
- .brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-carousel__item,.brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-carousel__item>.brz-columns,.brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns{height:100%}
1367
- .brz .brz-carousel>.slick-slider>.brz-slick-slider__arrow{opacity:1}
1368
- .brz .brz-carousel>.slick-slider>.brz-slick-slider__dots{bottom:10px}
1369
- .brz .brz-carousel>.slick-slider .slick-slide{outline:0}
1370
- .brz .brz-carousel>.slick-slider .slick-track{-ms-flex-wrap:nowrap;flex-wrap:nowrap}
1371
- .brz .brz-carousel .brz-icon-svg,.brz .brz-carousel .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
1372
- @media (max-width:767px){.brz.brz:not(.brz-ed) .slick-slider *{min-width:0;min-height:0}}.brz .brz-posts{width:100%;display:grid}
1373
- .brz .brz-posts ul.page-numbers{margin:0;list-style:none;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;grid-column:1/-1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
1374
- .brz .brz-posts ul.page-numbers>li{position:relative;margin-left:4px;margin-right:4px}
1375
- .brz .brz-posts ul.page-numbers>li:first-child{margin-left:0}
1376
- .brz .brz-posts ul.page-numbers>li:last-child{margin-right:0}
1377
- .brz .brz-posts ul.page-numbers .page-numbers{position:relative;display:block;color:inherit;font-size:18px;line-height:1;text-decoration:none;padding:6px 10px;-webkit-transition:.2s linear color;transition:.2s linear color;outline:0}
1378
- .brz .brz-posts ul.page-numbers .page-numbers:before{content:"";width:28px;height:28px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border:2px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color;opacity:.75}
1379
- .brz .brz-posts ul.page-numbers .page-numbers:hover{-webkit-transition:.2s linear color;transition:.2s linear color}
1380
- .brz .brz-posts ul.page-numbers .page-numbers.current:before{border-color:currentColor;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
1381
- .brz .brz-menu__container{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1382
- .brz .brz-menu__container .brz-mm-menu__icon:hover{cursor:pointer}
1383
- .brz .brz-menu:not(.mm-menu){position:relative;width:100%;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1384
- .brz .brz-menu:not(.mm-menu) .brz-menu__item{list-style:none;padding-left:5px;padding-right:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1385
- .brz .brz-menu:not(.mm-menu) .brz-menu__item>.brz-a{color:inherit;font-weight:inherit;font-family:inherit;letter-spacing:inherit;line-height:inherit;font-size:inherit;display:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;text-decoration:none}
1386
- .brz .brz-menu:not(.mm-menu) .brz-menu__item>.brz-a:hover{text-decoration:none}
1387
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;padding:0}
1388
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-left{left:0;padding-left:0}
1389
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-left:after{left:15px}
1390
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-right{right:0;padding-right:0}
1391
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-right:after{right:15px}
1392
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown{width:300px;top:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}
1393
- .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown:before{top:-5px;left:0;right:0}
1394
- .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown{position:relative}
1395
- .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown .brz-menu__item{padding:0;-webkit-transition:background-color .2s linear,border-bottom-color .2s linear;transition:background-color .2s linear,border-bottom-color .2s linear}
1396
- .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown .brz-menu__item .brz-a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:15px 35px 15px 15px;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
1397
- .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown>.brz-menu__sub-menu{top:5px}
1398
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown{margin:0;width:300px;position:absolute;top:100%;visibility:hidden;opacity:0;z-index:-1}
1399
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left,.brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right{top:0;width:305px}
1400
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left:before,.brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right:before{content:"";position:absolute;top:-5px;right:0;bottom:0;left:0;z-index:-1}
1401
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left{left:calc(100% + 5px);-webkit-transform:translateX(-5px);transform:translateX(-5px)}
1402
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left:before{left:-5px}
1403
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right{right:calc(100% + 5px);-webkit-transform:translateX(5px);transform:translateX(5px)}
1404
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right:before{right:-5px}
1405
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}
1406
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}
1407
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item-dropdown{position:relative}
1408
- .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item-dropdown:after{content:"";display:block;position:absolute;top:0;right:23px;bottom:0;left:auto;width:7px;height:7px;border:2px solid #fff;border-right-style:none;border-bottom-style:none;margin:auto;-webkit-transform:rotate(135deg);transform:rotate(135deg);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}
1409
- .brz .brz-menu:not(.mm-menu) .brz-mega-menu{width:100%;position:absolute;top:100%;left:0;visibility:hidden;opacity:0;z-index:-1;-webkit-transition:.2s visibility linear,.2s z-index linear,.2s opacity linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear}
1410
- .brz .brz-menu__editor .mm-panel_has-navbar{padding-top:0}
1411
- .brz .brz-menu__editor .mm-panel_has-navbar>.mm-navbar{display:none}
1412
- .brz .brz-menu.brz-menu__mmenu:not(.mm-menu){display:none}
1413
- .brz .brz-menu.mm-menu{text-transform:initial}
1414
- .brz .brz-menu.mm-menu.mm-menu_opened{display:block;z-index:1100}
1415
- .brz .brz-menu.mm-menu .mm-navbar a,.brz .brz-menu.mm-menu .mm-navbar>*{color:inherit}
1416
- .brz .brz-menu.mm-menu .mm-navbar:not(.mm-listitem){height:44px;background-color:transparent}
1417
- .brz .brz-menu.mm-menu .brz-menu__ul>.mm-navbar{height:44px;border-bottom:inherit;background-color:transparent}
1418
- .brz .brz-menu.mm-menu .brz-menu__ul .mm-listitem_opened>.mm-panel{background-color:rgba(255,255,255,.05)}
1419
- .brz .brz-menu.mm-menu .brz-menu__ul--has-dropdown .mm-listitem_opened>.mm-panel{background-color:transparent}
1420
- .brz .brz-menu.mm-menu .brz-mm-menu__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transform:none;transform:none;padding:0;position:relative;left:auto;top:auto;visibility:visible;opacity:1;width:auto}
1421
- .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_vertical>.mm-panel{padding:0 10px}
1422
- .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_opened>.mm-listitem__text{position:relative}
1423
- .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_opened>.mm-listitem__text:after{content:"";position:absolute;display:block;left:0;right:0;bottom:0;border-bottom:1px solid}
1424
- .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-listitem__text{color:inherit;font-weight:inherit;font-family:inherit;letter-spacing:inherit;line-height:inherit;font-size:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 20px}
1425
- .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-btn_next{position:absolute;right:0;left:auto;background:0 0;padding:0;width:50px;border:0;color:inherit}
1426
- .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-btn_next:after{border-color:inherit;width:7px;height:7px}
1427
- .brz .brz-menu .mm-navbar__title{line-height:20px;font-size:13px;padding:12px 20px}
1428
- .brz .brz-menu--has-dropdown.mm-menu .mm-navbar{padding:0}
1429
- .brz .brz-menu--has-dropdown.mm-menu .mm-navbar__title{padding:12px 50px 12px 20px}
1430
- .brz .brz-menu--has-dropdown.mm-menu .brz-mm-menu__item>.mm-listitem__text{padding-right:50px}
1431
- .brz .brz-menu .brz-a,.brz .brz-menu .mm-btn_next{-webkit-transition:color .2s linear;transition:color .2s linear}
1432
- .brz .brz-menu .brz-a:active,.brz .brz-menu .brz-a:focus,.brz .brz-menu .brz-a:hover,.brz .brz-menu .mm-btn_next:active,.brz .brz-menu .mm-btn_next:focus,.brz .brz-menu .mm-btn_next:hover{outline:0}
1433
- .brz .brz-menu--error{height:50px;line-height:50px;padding:0 10px;background-color:#d3d3d3}
1434
- .brz .brz-menu--error--not-found .brz-a{text-decoration:underline;margin-right:1ch}
1435
- .brz .brz-menu.mm-menu_opened~.mm-wrapper__blocker{-webkit-transition-delay:0s;transition-delay:0s}
1436
- .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover>.brz-mega-menu,.brz:not(.brz-ed) .brz-menu .brz-menu__item:hover>.brz-menu__sub-menu{visibility:visible;opacity:1;z-index:1050;-webkit-transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,-webkit-transform .2s linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,-webkit-transform .2s linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,transform .2s linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,transform .2s linear,-webkit-transform .2s linear}
1437
- .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover>.brz-menu__sub-menu{-webkit-transform:translateX(0);transform:translateX(0)}
1438
- .brz:not(.brz-ed) .brz-menu:not(.brz-menu--has-dropdown) .mm-navbar__title{padding-left:0;padding-right:0}
1439
- .brz:not(.brz-ed) .brz-menu .mm-panel_has-navbar{padding-top:44px}
1440
- .brz .brz-root__container.mm-page{position:relative;background:inherit}
1441
- .brz .brz-root__container.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
1442
- .brz .mm-wrapper__blocker.mm-slideout{z-index:1099}
1443
- @media (max-width:767px){.brz .brz-fs-xs-6{font-size:6px!important}
1444
- .brz .brz-fs-xs-7{font-size:7px!important}
1445
- .brz .brz-fs-xs-8{font-size:8px!important}
1446
- .brz .brz-fs-xs-9{font-size:9px!important}
1447
- .brz .brz-fs-xs-10{font-size:10px!important}
1448
- .brz .brz-fs-xs-11{font-size:11px!important}
1449
- .brz .brz-fs-xs-12{font-size:12px!important}
1450
- .brz .brz-fs-xs-13{font-size:13px!important}
1451
- .brz .brz-fs-xs-14{font-size:14px!important}
1452
- .brz .brz-fs-xs-15{font-size:15px!important}
1453
- .brz .brz-fs-xs-16{font-size:16px!important}
1454
- .brz .brz-fs-xs-17{font-size:17px!important}
1455
- .brz .brz-fs-xs-18{font-size:18px!important}
1456
- .brz .brz-fs-xs-19{font-size:19px!important}
1457
- .brz .brz-fs-xs-20{font-size:20px!important}
1458
- .brz .brz-fs-xs-21{font-size:21px!important}
1459
- .brz .brz-fs-xs-22{font-size:22px!important}
1460
- .brz .brz-fs-xs-23{font-size:23px!important}
1461
- .brz .brz-fs-xs-24{font-size:24px!important}
1462
- .brz .brz-fs-xs-25{font-size:25px!important}
1463
- .brz .brz-fs-xs-26{font-size:26px!important}
1464
- .brz .brz-fs-xs-27{font-size:27px!important}
1465
- .brz .brz-fs-xs-28{font-size:28px!important}
1466
- .brz .brz-fs-xs-29{font-size:29px!important}
1467
- .brz .brz-fs-xs-30{font-size:30px!important}
1468
- .brz .brz-fs-xs-31{font-size:31px!important}
1469
- .brz .brz-fs-xs-32{font-size:32px!important}
1470
- .brz .brz-fs-xs-33{font-size:33px!important}
1471
- .brz .brz-fs-xs-34{font-size:34px!important}
1472
- .brz .brz-fs-xs-35{font-size:35px!important}
1473
- .brz .brz-fs-xs-36{font-size:36px!important}
1474
- .brz .brz-fs-xs-37{font-size:37px!important}
1475
- .brz .brz-fs-xs-38{font-size:38px!important}
1476
- .brz .brz-fs-xs-39{font-size:39px!important}
1477
- .brz .brz-fs-xs-40{font-size:40px!important}
1478
- .brz .brz-fs-xs-41{font-size:41px!important}
1479
- .brz .brz-fs-xs-42{font-size:42px!important}
1480
- .brz .brz-fs-xs-43{font-size:43px!important}
1481
- .brz .brz-fs-xs-44{font-size:44px!important}
1482
- .brz .brz-fs-xs-45{font-size:45px!important}
1483
- .brz .brz-fs-xs-46{font-size:46px!important}
1484
- .brz .brz-fs-xs-47{font-size:47px!important}
1485
- .brz .brz-fs-xs-48{font-size:48px!important}
1486
- .brz .brz-fs-xs-49{font-size:49px!important}
1487
- .brz .brz-fs-xs-50{font-size:50px!important}
1488
- .brz .brz-fs-xs-51{font-size:51px!important}
1489
- .brz .brz-fs-xs-52{font-size:52px!important}
1490
- .brz .brz-fs-xs-53{font-size:53px!important}
1491
- .brz .brz-fs-xs-54{font-size:54px!important}
1492
- .brz .brz-fs-xs-55{font-size:55px!important}
1493
- .brz .brz-fs-xs-56{font-size:56px!important}
1494
- .brz .brz-fs-xs-57{font-size:57px!important}
1495
- .brz .brz-fs-xs-58{font-size:58px!important}
1496
- .brz .brz-fs-xs-59{font-size:59px!important}
1497
- .brz .brz-fs-xs-60{font-size:60px!important}
1498
- .brz .brz-fs-xs-61{font-size:61px!important}
1499
- .brz .brz-fs-xs-62{font-size:62px!important}
1500
- .brz .brz-fs-xs-63{font-size:63px!important}
1501
- .brz .brz-fs-xs-64{font-size:64px!important}
1502
- .brz .brz-fs-xs-65{font-size:65px!important}
1503
- .brz .brz-fs-xs-66{font-size:66px!important}
1504
- .brz .brz-fs-xs-67{font-size:67px!important}
1505
- .brz .brz-fs-xs-68{font-size:68px!important}
1506
- .brz .brz-fs-xs-69{font-size:69px!important}
1507
- .brz .brz-fs-xs-70{font-size:70px!important}
1508
- .brz .brz-fs-xs-71{font-size:71px!important}
1509
- .brz .brz-fs-xs-72{font-size:72px!important}
1510
- .brz .brz-fs-xs-73{font-size:73px!important}
1511
- .brz .brz-fs-xs-74{font-size:74px!important}
1512
- .brz .brz-fs-xs-75{font-size:75px!important}
1513
- .brz .brz-fs-xs-76{font-size:76px!important}
1514
- .brz .brz-fs-xs-77{font-size:77px!important}
1515
- .brz .brz-fs-xs-78{font-size:78px!important}
1516
- .brz .brz-fs-xs-79{font-size:79px!important}
1517
- .brz .brz-fs-xs-80{font-size:80px!important}
1518
- .brz .brz-fs-xs-81{font-size:81px!important}
1519
- .brz .brz-fs-xs-82{font-size:82px!important}
1520
- .brz .brz-fs-xs-83{font-size:83px!important}
1521
- .brz .brz-fs-xs-84{font-size:84px!important}
1522
- .brz .brz-fs-xs-85{font-size:85px!important}
1523
- .brz .brz-fs-xs-86{font-size:86px!important}
1524
- .brz .brz-fs-xs-87{font-size:87px!important}
1525
- .brz .brz-fs-xs-88{font-size:88px!important}
1526
- .brz .brz-fs-xs-89{font-size:89px!important}
1527
- .brz .brz-fs-xs-90{font-size:90px!important}
1528
- .brz .brz-fs-xs-91{font-size:91px!important}
1529
- .brz .brz-fs-xs-92{font-size:92px!important}
1530
- .brz .brz-fs-xs-93{font-size:93px!important}
1531
- .brz .brz-fs-xs-94{font-size:94px!important}
1532
- .brz .brz-fs-xs-95{font-size:95px!important}
1533
- .brz .brz-fs-xs-96{font-size:96px!important}
1534
- .brz .brz-fs-xs-97{font-size:97px!important}
1535
- .brz .brz-fs-xs-98{font-size:98px!important}
1536
- .brz .brz-fs-xs-99{font-size:99px!important}
1537
- .brz .brz-fs-xs-100{font-size:100px!important}
1538
- .brz .brz-fs-xs-101{font-size:101px!important}
1539
- .brz .brz-fs-xs-102{font-size:102px!important}
1540
- .brz .brz-fs-xs-103{font-size:103px!important}
1541
- .brz .brz-fs-xs-104{font-size:104px!important}
1542
- .brz .brz-fs-xs-105{font-size:105px!important}
1543
- .brz .brz-fs-xs-106{font-size:106px!important}
1544
- .brz .brz-fs-xs-107{font-size:107px!important}
1545
- .brz .brz-fs-xs-108{font-size:108px!important}
1546
- .brz .brz-fs-xs-109{font-size:109px!important}
1547
- .brz .brz-fs-xs-110{font-size:110px!important}
1548
- .brz .brz-fs-xs-111{font-size:111px!important}
1549
- .brz .brz-fs-xs-112{font-size:112px!important}
1550
- .brz .brz-fs-xs-113{font-size:113px!important}
1551
- .brz .brz-fs-xs-114{font-size:114px!important}
1552
- .brz .brz-fs-xs-115{font-size:115px!important}
1553
- .brz .brz-fs-xs-116{font-size:116px!important}
1554
- .brz .brz-fs-xs-117{font-size:117px!important}
1555
- .brz .brz-fs-xs-118{font-size:118px!important}
1556
- .brz .brz-fs-xs-119{font-size:119px!important}
1557
- .brz .brz-fs-xs-120{font-size:120px!important}
1558
- .brz .brz-fs-xs-121{font-size:121px!important}
1559
- .brz .brz-fs-xs-122{font-size:122px!important}
1560
- .brz .brz-fs-xs-123{font-size:123px!important}
1561
- .brz .brz-fs-xs-124{font-size:124px!important}
1562
- .brz .brz-fs-xs-125{font-size:125px!important}
1563
- .brz .brz-fs-xs-126{font-size:126px!important}
1564
- .brz .brz-fs-xs-127{font-size:127px!important}
1565
- .brz .brz-fs-xs-128{font-size:128px!important}
1566
- .brz .brz-fs-xs-129{font-size:129px!important}
1567
- .brz .brz-fs-xs-130{font-size:130px!important}
1568
- .brz .brz-fs-xs-131{font-size:131px!important}
1569
- .brz .brz-fs-xs-132{font-size:132px!important}
1570
- .brz .brz-fs-xs-133{font-size:133px!important}
1571
- .brz .brz-fs-xs-134{font-size:134px!important}
1572
- .brz .brz-fs-xs-135{font-size:135px!important}
1573
- .brz .brz-fs-xs-136{font-size:136px!important}
1574
- .brz .brz-fs-xs-137{font-size:137px!important}
1575
- .brz .brz-fs-xs-138{font-size:138px!important}
1576
- .brz .brz-fs-xs-139{font-size:139px!important}
1577
- .brz .brz-fs-xs-140{font-size:140px!important}
1578
- .brz .brz-fs-xs-141{font-size:141px!important}
1579
- .brz .brz-fs-xs-142{font-size:142px!important}
1580
- .brz .brz-fs-xs-143{font-size:143px!important}
1581
- .brz .brz-fs-xs-144{font-size:144px!important}
1582
- .brz .brz-fs-xs-145{font-size:145px!important}
1583
- .brz .brz-fs-xs-146{font-size:146px!important}
1584
- .brz .brz-fs-xs-147{font-size:147px!important}
1585
- .brz .brz-fs-xs-148{font-size:148px!important}
1586
- .brz .brz-fs-xs-149{font-size:149px!important}
1587
- .brz .brz-fs-xs-150{font-size:150px!important}
1588
- .brz .brz-fs-xs-151{font-size:151px!important}
1589
- .brz .brz-fs-xs-152{font-size:152px!important}
1590
- .brz .brz-fs-xs-153{font-size:153px!important}
1591
- .brz .brz-fs-xs-154{font-size:154px!important}
1592
- .brz .brz-fs-xs-155{font-size:155px!important}
1593
- .brz .brz-fs-xs-156{font-size:156px!important}
1594
- .brz .brz-fs-xs-157{font-size:157px!important}
1595
- .brz .brz-fs-xs-158{font-size:158px!important}
1596
- .brz .brz-fs-xs-159{font-size:159px!important}
1597
- .brz .brz-fs-xs-160{font-size:160px!important}
1598
- .brz .brz-fs-xs-161{font-size:161px!important}
1599
- .brz .brz-fs-xs-162{font-size:162px!important}
1600
- .brz .brz-fs-xs-163{font-size:163px!important}
1601
- .brz .brz-fs-xs-164{font-size:164px!important}
1602
- .brz .brz-fs-xs-165{font-size:165px!important}
1603
- .brz .brz-fs-xs-166{font-size:166px!important}
1604
- .brz .brz-fs-xs-167{font-size:167px!important}
1605
- .brz .brz-fs-xs-168{font-size:168px!important}
1606
- .brz .brz-fs-xs-169{font-size:169px!important}
1607
- .brz .brz-fs-xs-170{font-size:170px!important}
1608
- .brz .brz-fs-xs-171{font-size:171px!important}
1609
- .brz .brz-fs-xs-172{font-size:172px!important}
1610
- .brz .brz-fs-xs-173{font-size:173px!important}
1611
- .brz .brz-fs-xs-174{font-size:174px!important}
1612
- .brz .brz-fs-xs-175{font-size:175px!important}
1613
- .brz .brz-fs-xs-176{font-size:176px!important}
1614
- .brz .brz-fs-xs-177{font-size:177px!important}
1615
- .brz .brz-fs-xs-178{font-size:178px!important}
1616
- .brz .brz-fs-xs-179{font-size:179px!important}
1617
- .brz .brz-fs-xs-180{font-size:180px!important}
1618
- .brz .brz-fs-xs-181{font-size:181px!important}
1619
- .brz .brz-fs-xs-182{font-size:182px!important}
1620
- .brz .brz-fs-xs-183{font-size:183px!important}
1621
- .brz .brz-fs-xs-184{font-size:184px!important}
1622
- .brz .brz-fs-xs-185{font-size:185px!important}
1623
- .brz .brz-fs-xs-186{font-size:186px!important}
1624
- .brz .brz-fs-xs-187{font-size:187px!important}
1625
- .brz .brz-fs-xs-188{font-size:188px!important}
1626
- .brz .brz-fs-xs-189{font-size:189px!important}
1627
- .brz .brz-fs-xs-190{font-size:190px!important}
1628
- .brz .brz-fs-xs-191{font-size:191px!important}
1629
- .brz .brz-fs-xs-192{font-size:192px!important}
1630
- .brz .brz-fs-xs-193{font-size:193px!important}
1631
- .brz .brz-fs-xs-194{font-size:194px!important}
1632
- .brz .brz-fs-xs-195{font-size:195px!important}
1633
- .brz .brz-fs-xs-196{font-size:196px!important}
1634
- .brz .brz-fs-xs-197{font-size:197px!important}
1635
- .brz .brz-fs-xs-198{font-size:198px!important}
1636
- .brz .brz-fs-xs-199{font-size:199px!important}
1637
- .brz .brz-fs-xs-200{font-size:200px!important}
1638
- .brz .brz-fs-xs-201{font-size:201px!important}
1639
- .brz .brz-fs-xs-202{font-size:202px!important}
1640
- .brz .brz-fs-xs-203{font-size:203px!important}
1641
- .brz .brz-fs-xs-204{font-size:204px!important}
1642
- .brz .brz-fs-xs-205{font-size:205px!important}
1643
- .brz .brz-fs-xs-206{font-size:206px!important}
1644
- .brz .brz-fs-xs-207{font-size:207px!important}
1645
- .brz .brz-fs-xs-208{font-size:208px!important}
1646
- .brz .brz-fs-xs-209{font-size:209px!important}
1647
- .brz .brz-fs-xs-210{font-size:210px!important}
1648
- .brz .brz-fs-xs-211{font-size:211px!important}
1649
- .brz .brz-fs-xs-212{font-size:212px!important}
1650
- .brz .brz-fs-xs-213{font-size:213px!important}
1651
- .brz .brz-fs-xs-214{font-size:214px!important}
1652
- .brz .brz-fs-xs-215{font-size:215px!important}
1653
- .brz .brz-fs-xs-216{font-size:216px!important}
1654
- .brz .brz-fs-xs-217{font-size:217px!important}
1655
- .brz .brz-fs-xs-218{font-size:218px!important}
1656
- .brz .brz-fs-xs-219{font-size:219px!important}
1657
- .brz .brz-fs-xs-220{font-size:220px!important}
1658
- .brz .brz-fs-xs-221{font-size:221px!important}
1659
- .brz .brz-fs-xs-222{font-size:222px!important}
1660
- .brz .brz-fs-xs-223{font-size:223px!important}
1661
- .brz .brz-fs-xs-224{font-size:224px!important}
1662
- .brz .brz-fs-xs-225{font-size:225px!important}
1663
- .brz .brz-fs-xs-226{font-size:226px!important}
1664
- .brz .brz-fs-xs-227{font-size:227px!important}
1665
- .brz .brz-fs-xs-228{font-size:228px!important}
1666
- .brz .brz-fs-xs-229{font-size:229px!important}
1667
- .brz .brz-fs-xs-230{font-size:230px!important}
1668
- .brz .brz-fs-xs-231{font-size:231px!important}
1669
- .brz .brz-fs-xs-232{font-size:232px!important}
1670
- .brz .brz-fs-xs-233{font-size:233px!important}
1671
- .brz .brz-fs-xs-234{font-size:234px!important}
1672
- .brz .brz-fs-xs-235{font-size:235px!important}
1673
- .brz .brz-fs-xs-236{font-size:236px!important}
1674
- .brz .brz-fs-xs-237{font-size:237px!important}
1675
- .brz .brz-fs-xs-238{font-size:238px!important}
1676
- .brz .brz-fs-xs-239{font-size:239px!important}
1677
- .brz .brz-fs-xs-240{font-size:240px!important}
1678
- .brz .brz-fs-xs-241{font-size:241px!important}
1679
- .brz .brz-fs-xs-242{font-size:242px!important}
1680
- .brz .brz-fs-xs-243{font-size:243px!important}
1681
- .brz .brz-fs-xs-244{font-size:244px!important}
1682
- .brz .brz-fs-xs-245{font-size:245px!important}
1683
- .brz .brz-fs-xs-246{font-size:246px!important}
1684
- .brz .brz-fs-xs-247{font-size:247px!important}
1685
- .brz .brz-fs-xs-248{font-size:248px!important}
1686
- .brz .brz-fs-xs-249{font-size:249px!important}
1687
- .brz .brz-fs-xs-250{font-size:250px!important}
1688
- .brz .brz-fs-xs-251{font-size:251px!important}
1689
- .brz .brz-fs-xs-252{font-size:252px!important}
1690
- .brz .brz-fs-xs-253{font-size:253px!important}
1691
- .brz .brz-fs-xs-254{font-size:254px!important}
1692
- .brz .brz-fs-xs-255{font-size:255px!important}
1693
- .brz .brz-fs-xs-256{font-size:256px!important}
1694
- .brz .brz-fs-xs-257{font-size:257px!important}
1695
- .brz .brz-fs-xs-258{font-size:258px!important}
1696
- .brz .brz-fs-xs-259{font-size:259px!important}
1697
- .brz .brz-fs-xs-260{font-size:260px!important}
1698
- .brz .brz-fs-xs-261{font-size:261px!important}
1699
- .brz .brz-fs-xs-262{font-size:262px!important}
1700
- .brz .brz-fs-xs-263{font-size:263px!important}
1701
- .brz .brz-fs-xs-264{font-size:264px!important}
1702
- .brz .brz-fs-xs-265{font-size:265px!important}
1703
- .brz .brz-fs-xs-266{font-size:266px!important}
1704
- .brz .brz-fs-xs-267{font-size:267px!important}
1705
- .brz .brz-fs-xs-268{font-size:268px!important}
1706
- .brz .brz-fs-xs-269{font-size:269px!important}
1707
- .brz .brz-fs-xs-270{font-size:270px!important}
1708
- .brz .brz-fs-xs-271{font-size:271px!important}
1709
- .brz .brz-fs-xs-272{font-size:272px!important}
1710
- .brz .brz-fs-xs-273{font-size:273px!important}
1711
- .brz .brz-fs-xs-274{font-size:274px!important}
1712
- .brz .brz-fs-xs-275{font-size:275px!important}
1713
- .brz .brz-fs-xs-276{font-size:276px!important}
1714
- .brz .brz-fs-xs-277{font-size:277px!important}
1715
- .brz .brz-fs-xs-278{font-size:278px!important}
1716
- .brz .brz-fs-xs-279{font-size:279px!important}
1717
- .brz .brz-fs-xs-280{font-size:280px!important}
1718
- .brz .brz-fs-xs-281{font-size:281px!important}
1719
- .brz .brz-fs-xs-282{font-size:282px!important}
1720
- .brz .brz-fs-xs-283{font-size:283px!important}
1721
- .brz .brz-fs-xs-284{font-size:284px!important}
1722
- .brz .brz-fs-xs-285{font-size:285px!important}
1723
- .brz .brz-fs-xs-286{font-size:286px!important}
1724
- .brz .brz-fs-xs-287{font-size:287px!important}
1725
- .brz .brz-fs-xs-288{font-size:288px!important}
1726
- .brz .brz-fs-xs-289{font-size:289px!important}
1727
- .brz .brz-fs-xs-290{font-size:290px!important}
1728
- .brz .brz-fs-xs-291{font-size:291px!important}
1729
- .brz .brz-fs-xs-292{font-size:292px!important}
1730
- .brz .brz-fs-xs-293{font-size:293px!important}
1731
- .brz .brz-fs-xs-294{font-size:294px!important}
1732
- .brz .brz-fs-xs-295{font-size:295px!important}
1733
- .brz .brz-fs-xs-296{font-size:296px!important}
1734
- .brz .brz-fs-xs-297{font-size:297px!important}
1735
- .brz .brz-fs-xs-298{font-size:298px!important}
1736
- .brz .brz-fs-xs-299{font-size:299px!important}
1737
- .brz .brz-fs-xs-300{font-size:300px!important}
1738
- .brz .brz-lh-xs-1{line-height:1em!important}
1739
- .brz .brz-lh-xs-1_1{line-height:1.1em!important}
1740
- .brz .brz-lh-xs-1_2{line-height:1.2em!important}
1741
- .brz .brz-lh-xs-1_3{line-height:1.3em!important}
1742
- .brz .brz-lh-xs-1_4{line-height:1.4em!important}
1743
- .brz .brz-lh-xs-1_5{line-height:1.5em!important}
1744
- .brz .brz-lh-xs-1_6{line-height:1.6em!important}
1745
- .brz .brz-lh-xs-1_7{line-height:1.7em!important}
1746
- .brz .brz-lh-xs-1_8{line-height:1.8em!important}
1747
- .brz .brz-lh-xs-1_9{line-height:1.9em!important}
1748
- .brz .brz-lh-xs-2{line-height:2em!important}
1749
- .brz .brz-lh-xs-2_1{line-height:2.1em!important}
1750
- .brz .brz-lh-xs-2_2{line-height:2.2em!important}
1751
- .brz .brz-lh-xs-2_3{line-height:2.3em!important}
1752
- .brz .brz-lh-xs-2_4{line-height:2.4em!important}
1753
- .brz .brz-lh-xs-2_5{line-height:2.5em!important}
1754
- .brz .brz-lh-xs-2_6{line-height:2.6em!important}
1755
- .brz .brz-lh-xs-2_7{line-height:2.7em!important}
1756
- .brz .brz-lh-xs-2_8{line-height:2.8em!important}
1757
- .brz .brz-lh-xs-2_9{line-height:2.9em!important}
1758
- .brz .brz-lh-xs-3{line-height:3em!important}
1759
- .brz .brz-lh-xs-3_1{line-height:3.1em!important}
1760
- .brz .brz-lh-xs-3_2{line-height:3.2em!important}
1761
- .brz .brz-lh-xs-3_3{line-height:3.3em!important}
1762
- .brz .brz-lh-xs-3_4{line-height:3.4em!important}
1763
- .brz .brz-lh-xs-3_5{line-height:3.5em!important}
1764
- .brz .brz-lh-xs-3_6{line-height:3.6em!important}
1765
- .brz .brz-lh-xs-3_7{line-height:3.7em!important}
1766
- .brz .brz-lh-xs-3_8{line-height:3.8em!important}
1767
- .brz .brz-lh-xs-3_9{line-height:3.9em!important}
1768
- .brz .brz-lh-xs-4{line-height:4em!important}
1769
- .brz .brz-lh-xs-4_1{line-height:4.1em!important}
1770
- .brz .brz-lh-xs-4_2{line-height:4.2em!important}
1771
- .brz .brz-lh-xs-4_3{line-height:4.3em!important}
1772
- .brz .brz-lh-xs-4_4{line-height:4.4em!important}
1773
- .brz .brz-lh-xs-4_5{line-height:4.5em!important}
1774
- .brz .brz-lh-xs-4_6{line-height:4.6em!important}
1775
- .brz .brz-lh-xs-4_7{line-height:4.7em!important}
1776
- .brz .brz-lh-xs-4_8{line-height:4.8em!important}
1777
- .brz .brz-lh-xs-4_9{line-height:4.9em!important}
1778
- .brz .brz-lh-xs-5{line-height:5em!important}
1779
- .brz .brz-lh-xs-5_1{line-height:5.1em!important}
1780
- .brz .brz-lh-xs-5_2{line-height:5.2em!important}
1781
- .brz .brz-lh-xs-5_3{line-height:5.3em!important}
1782
- .brz .brz-lh-xs-5_4{line-height:5.4em!important}
1783
- .brz .brz-lh-xs-5_5{line-height:5.5em!important}
1784
- .brz .brz-lh-xs-5_6{line-height:5.6em!important}
1785
- .brz .brz-lh-xs-5_7{line-height:5.7em!important}
1786
- .brz .brz-lh-xs-5_8{line-height:5.8em!important}
1787
- .brz .brz-lh-xs-5_9{line-height:5.9em!important}
1788
- .brz .brz-fw-xs-100{font-weight:100!important}
1789
- .brz .brz-fw-xs-200{font-weight:200!important}
1790
- .brz .brz-fw-xs-300{font-weight:300!important}
1791
- .brz .brz-fw-xs-400{font-weight:400!important}
1792
- .brz .brz-fw-xs-500{font-weight:500!important}
1793
- .brz .brz-fw-xs-600{font-weight:600!important}
1794
- .brz .brz-fw-xs-700{font-weight:700!important}
1795
- .brz .brz-fw-xs-800{font-weight:800!important}
1796
- .brz .brz-fw-xs-900{font-weight:900!important}
1797
- .brz .brz-fw-xs-1000{font-weight:1000!important}
1798
- .brz .brz-fw-xs-1100{font-weight:1100!important}
1799
- .brz .brz-fw-xs-1200{font-weight:1200!important}
1800
- .brz .brz-fw-xs-1300{font-weight:1300!important}
1801
- .brz .brz-fw-xs-1400{font-weight:1400!important}
1802
- .brz .brz-fw-xs-1500{font-weight:1500!important}
1803
- .brz .brz-ls-xs-m_5{letter-spacing:-5px!important}
1804
- .brz .brz-ls-xs-m_5_5{letter-spacing:-5.5px!important}
1805
- .brz .brz-ls-xs-m_4{letter-spacing:-4px!important}
1806
- .brz .brz-ls-xs-m_4_5{letter-spacing:-4.5px!important}
1807
- .brz .brz-ls-xs-m_3{letter-spacing:-3px!important}
1808
- .brz .brz-ls-xs-m_3_5{letter-spacing:-3.5px!important}
1809
- .brz .brz-ls-xs-m_2{letter-spacing:-2px!important}
1810
- .brz .brz-ls-xs-m_2_5{letter-spacing:-2.5px!important}
1811
- .brz .brz-ls-xs-m_1{letter-spacing:-1px!important}
1812
- .brz .brz-ls-xs-m_1_5{letter-spacing:-1.5px!important}
1813
- .brz .brz-ls-xs-m_0{letter-spacing:0!important}
1814
- .brz .brz-ls-xs-m_0_5{letter-spacing:-.5px!important}
1815
- .brz .brz-ls-xs-0{letter-spacing:0!important}
1816
- .brz .brz-ls-xs-0_5{letter-spacing:.5px!important}
1817
- .brz .brz-ls-xs-1{letter-spacing:1px!important}
1818
- .brz .brz-ls-xs-1_5{letter-spacing:1.5px!important}
1819
- .brz .brz-ls-xs-2{letter-spacing:2px!important}
1820
- .brz .brz-ls-xs-2_5{letter-spacing:2.5px!important}
1821
- .brz .brz-ls-xs-3{letter-spacing:3px!important}
1822
- .brz .brz-ls-xs-3_5{letter-spacing:3.5px!important}
1823
- .brz .brz-ls-xs-4{letter-spacing:4px!important}
1824
- .brz .brz-ls-xs-4_5{letter-spacing:4.5px!important}
1825
- .brz .brz-ls-xs-5{letter-spacing:5px!important}
1826
- .brz .brz-ls-xs-5_5{letter-spacing:5.5px!important}
1827
- .brz .brz-ls-xs-6{letter-spacing:6px!important}
1828
- .brz .brz-ls-xs-6_5{letter-spacing:6.5px!important}
1829
- .brz .brz-ls-xs-7{letter-spacing:7px!important}
1830
- .brz .brz-ls-xs-7_5{letter-spacing:7.5px!important}
1831
- .brz .brz-ls-xs-8{letter-spacing:8px!important}
1832
- .brz .brz-ls-xs-8_5{letter-spacing:8.5px!important}
1833
- .brz .brz-ls-xs-9{letter-spacing:9px!important}
1834
- .brz .brz-ls-xs-9_5{letter-spacing:9.5px!important}
1835
- .brz .brz-ls-xs-10{letter-spacing:10px!important}
1836
- .brz .brz-ls-xs-10_5{letter-spacing:10.5px!important}
1837
- .brz .brz-ls-xs-11{letter-spacing:11px!important}
1838
- .brz .brz-ls-xs-11_5{letter-spacing:11.5px!important}
1839
- .brz .brz-ls-xs-12{letter-spacing:12px!important}
1840
- .brz .brz-ls-xs-12_5{letter-spacing:12.5px!important}
1841
- .brz .brz-ls-xs-13{letter-spacing:13px!important}
1842
- .brz .brz-ls-xs-13_5{letter-spacing:13.5px!important}
1843
- .brz .brz-ls-xs-14{letter-spacing:14px!important}
1844
- .brz .brz-ls-xs-14_5{letter-spacing:14.5px!important}
1845
- .brz .brz-ls-xs-15{letter-spacing:15px!important}
1846
- .brz .brz-ls-xs-15_5{letter-spacing:15.5px!important}
1847
- .brz .brz-fs-xs-im-6{font-size:6px!important}
1848
- .brz .brz-fs-xs-im-7{font-size:7px!important}
1849
- .brz .brz-fs-xs-im-8{font-size:8px!important}
1850
- .brz .brz-fs-xs-im-9{font-size:9px!important}
1851
- .brz .brz-fs-xs-im-10{font-size:10px!important}
1852
- .brz .brz-fs-xs-im-11{font-size:11px!important}
1853
- .brz .brz-fs-xs-im-12{font-size:12px!important}
1854
- .brz .brz-fs-xs-im-13{font-size:13px!important}
1855
- .brz .brz-fs-xs-im-14{font-size:14px!important}
1856
- .brz .brz-fs-xs-im-15{font-size:15px!important}
1857
- .brz .brz-fs-xs-im-16{font-size:16px!important}
1858
- .brz .brz-fs-xs-im-17{font-size:17px!important}
1859
- .brz .brz-fs-xs-im-18{font-size:18px!important}
1860
- .brz .brz-fs-xs-im-19{font-size:19px!important}
1861
- .brz .brz-fs-xs-im-20{font-size:20px!important}
1862
- .brz .brz-fs-xs-im-21{font-size:21px!important}
1863
- .brz .brz-fs-xs-im-22{font-size:22px!important}
1864
- .brz .brz-fs-xs-im-23{font-size:23px!important}
1865
- .brz .brz-fs-xs-im-24{font-size:24px!important}
1866
- .brz .brz-fs-xs-im-25{font-size:25px!important}
1867
- .brz .brz-fs-xs-im-26{font-size:26px!important}
1868
- .brz .brz-fs-xs-im-27{font-size:27px!important}
1869
- .brz .brz-fs-xs-im-28{font-size:28px!important}
1870
- .brz .brz-fs-xs-im-29{font-size:29px!important}
1871
- .brz .brz-fs-xs-im-30{font-size:30px!important}
1872
- .brz .brz-fs-xs-im-31{font-size:31px!important}
1873
- .brz .brz-fs-xs-im-32{font-size:32px!important}
1874
- .brz .brz-fs-xs-im-33{font-size:33px!important}
1875
- .brz .brz-fs-xs-im-34{font-size:34px!important}
1876
- .brz .brz-fs-xs-im-35{font-size:35px!important}
1877
- .brz .brz-fs-xs-im-36{font-size:36px!important}
1878
- .brz .brz-fs-xs-im-37{font-size:37px!important}
1879
- .brz .brz-fs-xs-im-38{font-size:38px!important}
1880
- .brz .brz-fs-xs-im-39{font-size:39px!important}
1881
- .brz .brz-fs-xs-im-40{font-size:40px!important}
1882
- .brz .brz-fs-xs-im-41{font-size:41px!important}
1883
- .brz .brz-fs-xs-im-42{font-size:42px!important}
1884
- .brz .brz-fs-xs-im-43{font-size:43px!important}
1885
- .brz .brz-fs-xs-im-44{font-size:44px!important}
1886
- .brz .brz-fs-xs-im-45{font-size:45px!important}
1887
- .brz .brz-fs-xs-im-46{font-size:46px!important}
1888
- .brz .brz-fs-xs-im-47{font-size:47px!important}
1889
- .brz .brz-fs-xs-im-48{font-size:48px!important}
1890
- .brz .brz-fs-xs-im-49{font-size:49px!important}
1891
- .brz .brz-fs-xs-im-50{font-size:50px!important}
1892
- .brz .brz-fs-xs-im-51{font-size:51px!important}
1893
- .brz .brz-fs-xs-im-52{font-size:52px!important}
1894
- .brz .brz-fs-xs-im-53{font-size:53px!important}
1895
- .brz .brz-fs-xs-im-54{font-size:54px!important}
1896
- .brz .brz-fs-xs-im-55{font-size:55px!important}
1897
- .brz .brz-fs-xs-im-56{font-size:56px!important}
1898
- .brz .brz-fs-xs-im-57{font-size:57px!important}
1899
- .brz .brz-fs-xs-im-58{font-size:58px!important}
1900
- .brz .brz-fs-xs-im-59{font-size:59px!important}
1901
- .brz .brz-fs-xs-im-60{font-size:60px!important}
1902
- .brz .brz-fs-xs-im-61{font-size:61px!important}
1903
- .brz .brz-fs-xs-im-62{font-size:62px!important}
1904
- .brz .brz-fs-xs-im-63{font-size:63px!important}
1905
- .brz .brz-fs-xs-im-64{font-size:64px!important}
1906
- .brz .brz-fs-xs-im-65{font-size:65px!important}
1907
- .brz .brz-fs-xs-im-66{font-size:66px!important}
1908
- .brz .brz-fs-xs-im-67{font-size:67px!important}
1909
- .brz .brz-fs-xs-im-68{font-size:68px!important}
1910
- .brz .brz-fs-xs-im-69{font-size:69px!important}
1911
- .brz .brz-fs-xs-im-70{font-size:70px!important}
1912
- .brz .brz-fs-xs-im-71{font-size:71px!important}
1913
- .brz .brz-fs-xs-im-72{font-size:72px!important}
1914
- .brz .brz-fs-xs-im-73{font-size:73px!important}
1915
- .brz .brz-fs-xs-im-74{font-size:74px!important}
1916
- .brz .brz-fs-xs-im-75{font-size:75px!important}
1917
- .brz .brz-fs-xs-im-76{font-size:76px!important}
1918
- .brz .brz-fs-xs-im-77{font-size:77px!important}
1919
- .brz .brz-fs-xs-im-78{font-size:78px!important}
1920
- .brz .brz-fs-xs-im-79{font-size:79px!important}
1921
- .brz .brz-fs-xs-im-80{font-size:80px!important}
1922
- .brz .brz-fs-xs-im-81{font-size:81px!important}
1923
- .brz .brz-fs-xs-im-82{font-size:82px!important}
1924
- .brz .brz-fs-xs-im-83{font-size:83px!important}
1925
- .brz .brz-fs-xs-im-84{font-size:84px!important}
1926
- .brz .brz-fs-xs-im-85{font-size:85px!important}
1927
- .brz .brz-fs-xs-im-86{font-size:86px!important}
1928
- .brz .brz-fs-xs-im-87{font-size:87px!important}
1929
- .brz .brz-fs-xs-im-88{font-size:88px!important}
1930
- .brz .brz-fs-xs-im-89{font-size:89px!important}
1931
- .brz .brz-fs-xs-im-90{font-size:90px!important}
1932
- .brz .brz-fs-xs-im-91{font-size:91px!important}
1933
- .brz .brz-fs-xs-im-92{font-size:92px!important}
1934
- .brz .brz-fs-xs-im-93{font-size:93px!important}
1935
- .brz .brz-fs-xs-im-94{font-size:94px!important}
1936
- .brz .brz-fs-xs-im-95{font-size:95px!important}
1937
- .brz .brz-fs-xs-im-96{font-size:96px!important}
1938
- .brz .brz-fs-xs-im-97{font-size:97px!important}
1939
- .brz .brz-fs-xs-im-98{font-size:98px!important}
1940
- .brz .brz-fs-xs-im-99{font-size:99px!important}
1941
- .brz .brz-fs-xs-im-100{font-size:100px!important}
1942
- .brz .brz-fs-xs-im-101{font-size:101px!important}
1943
- .brz .brz-fs-xs-im-102{font-size:102px!important}
1944
- .brz .brz-fs-xs-im-103{font-size:103px!important}
1945
- .brz .brz-fs-xs-im-104{font-size:104px!important}
1946
- .brz .brz-fs-xs-im-105{font-size:105px!important}
1947
- .brz .brz-fs-xs-im-106{font-size:106px!important}
1948
- .brz .brz-fs-xs-im-107{font-size:107px!important}
1949
- .brz .brz-fs-xs-im-108{font-size:108px!important}
1950
- .brz .brz-fs-xs-im-109{font-size:109px!important}
1951
- .brz .brz-fs-xs-im-110{font-size:110px!important}
1952
- .brz .brz-fs-xs-im-111{font-size:111px!important}
1953
- .brz .brz-fs-xs-im-112{font-size:112px!important}
1954
- .brz .brz-fs-xs-im-113{font-size:113px!important}
1955
- .brz .brz-fs-xs-im-114{font-size:114px!important}
1956
- .brz .brz-fs-xs-im-115{font-size:115px!important}
1957
- .brz .brz-fs-xs-im-116{font-size:116px!important}
1958
- .brz .brz-fs-xs-im-117{font-size:117px!important}
1959
- .brz .brz-fs-xs-im-118{font-size:118px!important}
1960
- .brz .brz-fs-xs-im-119{font-size:119px!important}
1961
- .brz .brz-fs-xs-im-120{font-size:120px!important}
1962
- .brz .brz-fs-xs-im-121{font-size:121px!important}
1963
- .brz .brz-fs-xs-im-122{font-size:122px!important}
1964
- .brz .brz-fs-xs-im-123{font-size:123px!important}
1965
- .brz .brz-fs-xs-im-124{font-size:124px!important}
1966
- .brz .brz-fs-xs-im-125{font-size:125px!important}
1967
- .brz .brz-fs-xs-im-126{font-size:126px!important}
1968
- .brz .brz-fs-xs-im-127{font-size:127px!important}
1969
- .brz .brz-fs-xs-im-128{font-size:128px!important}
1970
- .brz .brz-fs-xs-im-129{font-size:129px!important}
1971
- .brz .brz-fs-xs-im-130{font-size:130px!important}
1972
- .brz .brz-fs-xs-im-131{font-size:131px!important}
1973
- .brz .brz-fs-xs-im-132{font-size:132px!important}
1974
- .brz .brz-fs-xs-im-133{font-size:133px!important}
1975
- .brz .brz-fs-xs-im-134{font-size:134px!important}
1976
- .brz .brz-fs-xs-im-135{font-size:135px!important}
1977
- .brz .brz-fs-xs-im-136{font-size:136px!important}
1978
- .brz .brz-fs-xs-im-137{font-size:137px!important}
1979
- .brz .brz-fs-xs-im-138{font-size:138px!important}
1980
- .brz .brz-fs-xs-im-139{font-size:139px!important}
1981
- .brz .brz-fs-xs-im-140{font-size:140px!important}
1982
- .brz .brz-fs-xs-im-141{font-size:141px!important}
1983
- .brz .brz-fs-xs-im-142{font-size:142px!important}
1984
- .brz .brz-fs-xs-im-143{font-size:143px!important}
1985
- .brz .brz-fs-xs-im-144{font-size:144px!important}
1986
- .brz .brz-fs-xs-im-145{font-size:145px!important}
1987
- .brz .brz-fs-xs-im-146{font-size:146px!important}
1988
- .brz .brz-fs-xs-im-147{font-size:147px!important}
1989
- .brz .brz-fs-xs-im-148{font-size:148px!important}
1990
- .brz .brz-fs-xs-im-149{font-size:149px!important}
1991
- .brz .brz-fs-xs-im-150{font-size:150px!important}
1992
- .brz .brz-fs-xs-im-151{font-size:151px!important}
1993
- .brz .brz-fs-xs-im-152{font-size:152px!important}
1994
- .brz .brz-fs-xs-im-153{font-size:153px!important}
1995
- .brz .brz-fs-xs-im-154{font-size:154px!important}
1996
- .brz .brz-fs-xs-im-155{font-size:155px!important}
1997
- .brz .brz-fs-xs-im-156{font-size:156px!important}
1998
- .brz .brz-fs-xs-im-157{font-size:157px!important}
1999
- .brz .brz-fs-xs-im-158{font-size:158px!important}
2000
- .brz .brz-fs-xs-im-159{font-size:159px!important}
2001
- .brz .brz-fs-xs-im-160{font-size:160px!important}
2002
- .brz .brz-fs-xs-im-161{font-size:161px!important}
2003
- .brz .brz-fs-xs-im-162{font-size:162px!important}
2004
- .brz .brz-fs-xs-im-163{font-size:163px!important}
2005
- .brz .brz-fs-xs-im-164{font-size:164px!important}
2006
- .brz .brz-fs-xs-im-165{font-size:165px!important}
2007
- .brz .brz-fs-xs-im-166{font-size:166px!important}
2008
- .brz .brz-fs-xs-im-167{font-size:167px!important}
2009
- .brz .brz-fs-xs-im-168{font-size:168px!important}
2010
- .brz .brz-fs-xs-im-169{font-size:169px!important}
2011
- .brz .brz-fs-xs-im-170{font-size:170px!important}
2012
- .brz .brz-fs-xs-im-171{font-size:171px!important}
2013
- .brz .brz-fs-xs-im-172{font-size:172px!important}
2014
- .brz .brz-fs-xs-im-173{font-size:173px!important}
2015
- .brz .brz-fs-xs-im-174{font-size:174px!important}
2016
- .brz .brz-fs-xs-im-175{font-size:175px!important}
2017
- .brz .brz-fs-xs-im-176{font-size:176px!important}
2018
- .brz .brz-fs-xs-im-177{font-size:177px!important}
2019
- .brz .brz-fs-xs-im-178{font-size:178px!important}
2020
- .brz .brz-fs-xs-im-179{font-size:179px!important}
2021
- .brz .brz-fs-xs-im-180{font-size:180px!important}
2022
- .brz .brz-fs-xs-im-181{font-size:181px!important}
2023
- .brz .brz-fs-xs-im-182{font-size:182px!important}
2024
- .brz .brz-fs-xs-im-183{font-size:183px!important}
2025
- .brz .brz-fs-xs-im-184{font-size:184px!important}
2026
- .brz .brz-fs-xs-im-185{font-size:185px!important}
2027
- .brz .brz-fs-xs-im-186{font-size:186px!important}
2028
- .brz .brz-fs-xs-im-187{font-size:187px!important}
2029
- .brz .brz-fs-xs-im-188{font-size:188px!important}
2030
- .brz .brz-fs-xs-im-189{font-size:189px!important}
2031
- .brz .brz-fs-xs-im-190{font-size:190px!important}
2032
- .brz .brz-fs-xs-im-191{font-size:191px!important}
2033
- .brz .brz-fs-xs-im-192{font-size:192px!important}
2034
- .brz .brz-fs-xs-im-193{font-size:193px!important}
2035
- .brz .brz-fs-xs-im-194{font-size:194px!important}
2036
- .brz .brz-fs-xs-im-195{font-size:195px!important}
2037
- .brz .brz-fs-xs-im-196{font-size:196px!important}
2038
- .brz .brz-fs-xs-im-197{font-size:197px!important}
2039
- .brz .brz-fs-xs-im-198{font-size:198px!important}
2040
- .brz .brz-fs-xs-im-199{font-size:199px!important}
2041
- .brz .brz-fs-xs-im-200{font-size:200px!important}
2042
- .brz .brz-fs-xs-im-201{font-size:201px!important}
2043
- .brz .brz-fs-xs-im-202{font-size:202px!important}
2044
- .brz .brz-fs-xs-im-203{font-size:203px!important}
2045
- .brz .brz-fs-xs-im-204{font-size:204px!important}
2046
- .brz .brz-fs-xs-im-205{font-size:205px!important}
2047
- .brz .brz-fs-xs-im-206{font-size:206px!important}
2048
- .brz .brz-fs-xs-im-207{font-size:207px!important}
2049
- .brz .brz-fs-xs-im-208{font-size:208px!important}
2050
- .brz .brz-fs-xs-im-209{font-size:209px!important}
2051
- .brz .brz-fs-xs-im-210{font-size:210px!important}
2052
- .brz .brz-fs-xs-im-211{font-size:211px!important}
2053
- .brz .brz-fs-xs-im-212{font-size:212px!important}
2054
- .brz .brz-fs-xs-im-213{font-size:213px!important}
2055
- .brz .brz-fs-xs-im-214{font-size:214px!important}
2056
- .brz .brz-fs-xs-im-215{font-size:215px!important}
2057
- .brz .brz-fs-xs-im-216{font-size:216px!important}
2058
- .brz .brz-fs-xs-im-217{font-size:217px!important}
2059
- .brz .brz-fs-xs-im-218{font-size:218px!important}
2060
- .brz .brz-fs-xs-im-219{font-size:219px!important}
2061
- .brz .brz-fs-xs-im-220{font-size:220px!important}
2062
- .brz .brz-fs-xs-im-221{font-size:221px!important}
2063
- .brz .brz-fs-xs-im-222{font-size:222px!important}
2064
- .brz .brz-fs-xs-im-223{font-size:223px!important}
2065
- .brz .brz-fs-xs-im-224{font-size:224px!important}
2066
- .brz .brz-fs-xs-im-225{font-size:225px!important}
2067
- .brz .brz-fs-xs-im-226{font-size:226px!important}
2068
- .brz .brz-fs-xs-im-227{font-size:227px!important}
2069
- .brz .brz-fs-xs-im-228{font-size:228px!important}
2070
- .brz .brz-fs-xs-im-229{font-size:229px!important}
2071
- .brz .brz-fs-xs-im-230{font-size:230px!important}
2072
- .brz .brz-fs-xs-im-231{font-size:231px!important}
2073
- .brz .brz-fs-xs-im-232{font-size:232px!important}
2074
- .brz .brz-fs-xs-im-233{font-size:233px!important}
2075
- .brz .brz-fs-xs-im-234{font-size:234px!important}
2076
- .brz .brz-fs-xs-im-235{font-size:235px!important}
2077
- .brz .brz-fs-xs-im-236{font-size:236px!important}
2078
- .brz .brz-fs-xs-im-237{font-size:237px!important}
2079
- .brz .brz-fs-xs-im-238{font-size:238px!important}
2080
- .brz .brz-fs-xs-im-239{font-size:239px!important}
2081
- .brz .brz-fs-xs-im-240{font-size:240px!important}
2082
- .brz .brz-fs-xs-im-241{font-size:241px!important}
2083
- .brz .brz-fs-xs-im-242{font-size:242px!important}
2084
- .brz .brz-fs-xs-im-243{font-size:243px!important}
2085
- .brz .brz-fs-xs-im-244{font-size:244px!important}
2086
- .brz .brz-fs-xs-im-245{font-size:245px!important}
2087
- .brz .brz-fs-xs-im-246{font-size:246px!important}
2088
- .brz .brz-fs-xs-im-247{font-size:247px!important}
2089
- .brz .brz-fs-xs-im-248{font-size:248px!important}
2090
- .brz .brz-fs-xs-im-249{font-size:249px!important}
2091
- .brz .brz-fs-xs-im-250{font-size:250px!important}
2092
- .brz .brz-fs-xs-im-251{font-size:251px!important}
2093
- .brz .brz-fs-xs-im-252{font-size:252px!important}
2094
- .brz .brz-fs-xs-im-253{font-size:253px!important}
2095
- .brz .brz-fs-xs-im-254{font-size:254px!important}
2096
- .brz .brz-fs-xs-im-255{font-size:255px!important}
2097
- .brz .brz-fs-xs-im-256{font-size:256px!important}
2098
- .brz .brz-fs-xs-im-257{font-size:257px!important}
2099
- .brz .brz-fs-xs-im-258{font-size:258px!important}
2100
- .brz .brz-fs-xs-im-259{font-size:259px!important}
2101
- .brz .brz-fs-xs-im-260{font-size:260px!important}
2102
- .brz .brz-fs-xs-im-261{font-size:261px!important}
2103
- .brz .brz-fs-xs-im-262{font-size:262px!important}
2104
- .brz .brz-fs-xs-im-263{font-size:263px!important}
2105
- .brz .brz-fs-xs-im-264{font-size:264px!important}
2106
- .brz .brz-fs-xs-im-265{font-size:265px!important}
2107
- .brz .brz-fs-xs-im-266{font-size:266px!important}
2108
- .brz .brz-fs-xs-im-267{font-size:267px!important}
2109
- .brz .brz-fs-xs-im-268{font-size:268px!important}
2110
- .brz .brz-fs-xs-im-269{font-size:269px!important}
2111
- .brz .brz-fs-xs-im-270{font-size:270px!important}
2112
- .brz .brz-fs-xs-im-271{font-size:271px!important}
2113
- .brz .brz-fs-xs-im-272{font-size:272px!important}
2114
- .brz .brz-fs-xs-im-273{font-size:273px!important}
2115
- .brz .brz-fs-xs-im-274{font-size:274px!important}
2116
- .brz .brz-fs-xs-im-275{font-size:275px!important}
2117
- .brz .brz-fs-xs-im-276{font-size:276px!important}
2118
- .brz .brz-fs-xs-im-277{font-size:277px!important}
2119
- .brz .brz-fs-xs-im-278{font-size:278px!important}
2120
- .brz .brz-fs-xs-im-279{font-size:279px!important}
2121
- .brz .brz-fs-xs-im-280{font-size:280px!important}
2122
- .brz .brz-fs-xs-im-281{font-size:281px!important}
2123
- .brz .brz-fs-xs-im-282{font-size:282px!important}
2124
- .brz .brz-fs-xs-im-283{font-size:283px!important}
2125
- .brz .brz-fs-xs-im-284{font-size:284px!important}
2126
- .brz .brz-fs-xs-im-285{font-size:285px!important}
2127
- .brz .brz-fs-xs-im-286{font-size:286px!important}
2128
- .brz .brz-fs-xs-im-287{font-size:287px!important}
2129
- .brz .brz-fs-xs-im-288{font-size:288px!important}
2130
- .brz .brz-fs-xs-im-289{font-size:289px!important}
2131
- .brz .brz-fs-xs-im-290{font-size:290px!important}
2132
- .brz .brz-fs-xs-im-291{font-size:291px!important}
2133
- .brz .brz-fs-xs-im-292{font-size:292px!important}
2134
- .brz .brz-fs-xs-im-293{font-size:293px!important}
2135
- .brz .brz-fs-xs-im-294{font-size:294px!important}
2136
- .brz .brz-fs-xs-im-295{font-size:295px!important}
2137
- .brz .brz-fs-xs-im-296{font-size:296px!important}
2138
- .brz .brz-fs-xs-im-297{font-size:297px!important}
2139
- .brz .brz-fs-xs-im-298{font-size:298px!important}
2140
- .brz .brz-fs-xs-im-299{font-size:299px!important}
2141
- .brz .brz-fs-xs-im-300{font-size:300px!important}
2142
- .brz .brz-lh-xs-im-1{line-height:1em!important}
2143
- .brz .brz-lh-xs-im-1_1{line-height:1.1em!important}
2144
- .brz .brz-lh-xs-im-1_2{line-height:1.2em!important}
2145
- .brz .brz-lh-xs-im-1_3{line-height:1.3em!important}
2146
- .brz .brz-lh-xs-im-1_4{line-height:1.4em!important}
2147
- .brz .brz-lh-xs-im-1_5{line-height:1.5em!important}
2148
- .brz .brz-lh-xs-im-1_6{line-height:1.6em!important}
2149
- .brz .brz-lh-xs-im-1_7{line-height:1.7em!important}
2150
- .brz .brz-lh-xs-im-1_8{line-height:1.8em!important}
2151
- .brz .brz-lh-xs-im-1_9{line-height:1.9em!important}
2152
- .brz .brz-lh-xs-im-2{line-height:2em!important}
2153
- .brz .brz-lh-xs-im-2_1{line-height:2.1em!important}
2154
- .brz .brz-lh-xs-im-2_2{line-height:2.2em!important}
2155
- .brz .brz-lh-xs-im-2_3{line-height:2.3em!important}
2156
- .brz .brz-lh-xs-im-2_4{line-height:2.4em!important}
2157
- .brz .brz-lh-xs-im-2_5{line-height:2.5em!important}
2158
- .brz .brz-lh-xs-im-2_6{line-height:2.6em!important}
2159
- .brz .brz-lh-xs-im-2_7{line-height:2.7em!important}
2160
- .brz .brz-lh-xs-im-2_8{line-height:2.8em!important}
2161
- .brz .brz-lh-xs-im-2_9{line-height:2.9em!important}
2162
- .brz .brz-lh-xs-im-3{line-height:3em!important}
2163
- .brz .brz-lh-xs-im-3_1{line-height:3.1em!important}
2164
- .brz .brz-lh-xs-im-3_2{line-height:3.2em!important}
2165
- .brz .brz-lh-xs-im-3_3{line-height:3.3em!important}
2166
- .brz .brz-lh-xs-im-3_4{line-height:3.4em!important}
2167
- .brz .brz-lh-xs-im-3_5{line-height:3.5em!important}
2168
- .brz .brz-lh-xs-im-3_6{line-height:3.6em!important}
2169
- .brz .brz-lh-xs-im-3_7{line-height:3.7em!important}
2170
- .brz .brz-lh-xs-im-3_8{line-height:3.8em!important}
2171
- .brz .brz-lh-xs-im-3_9{line-height:3.9em!important}
2172
- .brz .brz-lh-xs-im-4{line-height:4em!important}
2173
- .brz .brz-lh-xs-im-4_1{line-height:4.1em!important}
2174
- .brz .brz-lh-xs-im-4_2{line-height:4.2em!important}
2175
- .brz .brz-lh-xs-im-4_3{line-height:4.3em!important}
2176
- .brz .brz-lh-xs-im-4_4{line-height:4.4em!important}
2177
- .brz .brz-lh-xs-im-4_5{line-height:4.5em!important}
2178
- .brz .brz-lh-xs-im-4_6{line-height:4.6em!important}
2179
- .brz .brz-lh-xs-im-4_7{line-height:4.7em!important}
2180
- .brz .brz-lh-xs-im-4_8{line-height:4.8em!important}
2181
- .brz .brz-lh-xs-im-4_9{line-height:4.9em!important}
2182
- .brz .brz-lh-xs-im-5{line-height:5em!important}
2183
- .brz .brz-lh-xs-im-5_1{line-height:5.1em!important}
2184
- .brz .brz-lh-xs-im-5_2{line-height:5.2em!important}
2185
- .brz .brz-lh-xs-im-5_3{line-height:5.3em!important}
2186
- .brz .brz-lh-xs-im-5_4{line-height:5.4em!important}
2187
- .brz .brz-lh-xs-im-5_5{line-height:5.5em!important}
2188
- .brz .brz-lh-xs-im-5_6{line-height:5.6em!important}
2189
- .brz .brz-lh-xs-im-5_7{line-height:5.7em!important}
2190
- .brz .brz-lh-xs-im-5_8{line-height:5.8em!important}
2191
- .brz .brz-lh-xs-im-5_9{line-height:5.9em!important}
2192
- .brz .brz-fw-xs-im-100{font-weight:100!important}
2193
- .brz .brz-fw-xs-im-200{font-weight:200!important}
2194
- .brz .brz-fw-xs-im-300{font-weight:300!important}
2195
- .brz .brz-fw-xs-im-400{font-weight:400!important}
2196
- .brz .brz-fw-xs-im-500{font-weight:500!important}
2197
- .brz .brz-fw-xs-im-600{font-weight:600!important}
2198
- .brz .brz-fw-xs-im-700{font-weight:700!important}
2199
- .brz .brz-fw-xs-im-800{font-weight:800!important}
2200
- .brz .brz-fw-xs-im-900{font-weight:900!important}
2201
- .brz .brz-fw-xs-im-1000{font-weight:1000!important}
2202
- .brz .brz-fw-xs-im-1100{font-weight:1100!important}
2203
- .brz .brz-fw-xs-im-1200{font-weight:1200!important}
2204
- .brz .brz-fw-xs-im-1300{font-weight:1300!important}
2205
- .brz .brz-fw-xs-im-1400{font-weight:1400!important}
2206
- .brz .brz-fw-xs-im-1500{font-weight:1500!important}
2207
- .brz .brz-ls-xs-im-m_5{letter-spacing:-5px!important}
2208
- .brz .brz-ls-xs-im-m_5_5{letter-spacing:-5.5px!important}
2209
- .brz .brz-ls-xs-im-m_4{letter-spacing:-4px!important}
2210
- .brz .brz-ls-xs-im-m_4_5{letter-spacing:-4.5px!important}
2211
- .brz .brz-ls-xs-im-m_3{letter-spacing:-3px!important}
2212
- .brz .brz-ls-xs-im-m_3_5{letter-spacing:-3.5px!important}
2213
- .brz .brz-ls-xs-im-m_2{letter-spacing:-2px!important}
2214
- .brz .brz-ls-xs-im-m_2_5{letter-spacing:-2.5px!important}
2215
- .brz .brz-ls-xs-im-m_1{letter-spacing:-1px!important}
2216
- .brz .brz-ls-xs-im-m_1_5{letter-spacing:-1.5px!important}
2217
- .brz .brz-ls-xs-im-m_0{letter-spacing:0!important}
2218
- .brz .brz-ls-xs-im-m_0_5{letter-spacing:-.5px!important}
2219
- .brz .brz-ls-xs-im-0{letter-spacing:0!important}
2220
- .brz .brz-ls-xs-im-0_5{letter-spacing:.5px!important}
2221
- .brz .brz-ls-xs-im-1{letter-spacing:1px!important}
2222
- .brz .brz-ls-xs-im-1_5{letter-spacing:1.5px!important}
2223
- .brz .brz-ls-xs-im-2{letter-spacing:2px!important}
2224
- .brz .brz-ls-xs-im-2_5{letter-spacing:2.5px!important}
2225
- .brz .brz-ls-xs-im-3{letter-spacing:3px!important}
2226
- .brz .brz-ls-xs-im-3_5{letter-spacing:3.5px!important}
2227
- .brz .brz-ls-xs-im-4{letter-spacing:4px!important}
2228
- .brz .brz-ls-xs-im-4_5{letter-spacing:4.5px!important}
2229
- .brz .brz-ls-xs-im-5{letter-spacing:5px!important}
2230
- .brz .brz-ls-xs-im-5_5{letter-spacing:5.5px!important}
2231
- .brz .brz-ls-xs-im-6{letter-spacing:6px!important}
2232
- .brz .brz-ls-xs-im-6_5{letter-spacing:6.5px!important}
2233
- .brz .brz-ls-xs-im-7{letter-spacing:7px!important}
2234
- .brz .brz-ls-xs-im-7_5{letter-spacing:7.5px!important}
2235
- .brz .brz-ls-xs-im-8{letter-spacing:8px!important}
2236
- .brz .brz-ls-xs-im-8_5{letter-spacing:8.5px!important}
2237
- .brz .brz-ls-xs-im-9{letter-spacing:9px!important}
2238
- .brz .brz-ls-xs-im-9_5{letter-spacing:9.5px!important}
2239
- .brz .brz-ls-xs-im-10{letter-spacing:10px!important}
2240
- .brz .brz-ls-xs-im-10_5{letter-spacing:10.5px!important}
2241
- .brz .brz-ls-xs-im-11{letter-spacing:11px!important}
2242
- .brz .brz-ls-xs-im-11_5{letter-spacing:11.5px!important}
2243
- .brz .brz-ls-xs-im-12{letter-spacing:12px!important}
2244
- .brz .brz-ls-xs-im-12_5{letter-spacing:12.5px!important}
2245
- .brz .brz-ls-xs-im-13{letter-spacing:13px!important}
2246
- .brz .brz-ls-xs-im-13_5{letter-spacing:13.5px!important}
2247
- .brz .brz-ls-xs-im-14{letter-spacing:14px!important}
2248
- .brz .brz-ls-xs-im-14_5{letter-spacing:14.5px!important}
2249
- .brz .brz-ls-xs-im-15{letter-spacing:15px!important}
2250
- .brz .brz-ls-xs-im-15_5{letter-spacing:15.5px!important}}@media (min-width:768px) and (max-width:991px){.brz .brz-fs-sm-6{font-size:6px!important}
2251
- .brz .brz-fs-sm-7{font-size:7px!important}
2252
- .brz .brz-fs-sm-8{font-size:8px!important}
2253
- .brz .brz-fs-sm-9{font-size:9px!important}
2254
- .brz .brz-fs-sm-10{font-size:10px!important}
2255
- .brz .brz-fs-sm-11{font-size:11px!important}
2256
- .brz .brz-fs-sm-12{font-size:12px!important}
2257
- .brz .brz-fs-sm-13{font-size:13px!important}
2258
- .brz .brz-fs-sm-14{font-size:14px!important}
2259
- .brz .brz-fs-sm-15{font-size:15px!important}
2260
- .brz .brz-fs-sm-16{font-size:16px!important}
2261
- .brz .brz-fs-sm-17{font-size:17px!important}
2262
- .brz .brz-fs-sm-18{font-size:18px!important}
2263
- .brz .brz-fs-sm-19{font-size:19px!important}
2264
- .brz .brz-fs-sm-20{font-size:20px!important}
2265
- .brz .brz-fs-sm-21{font-size:21px!important}
2266
- .brz .brz-fs-sm-22{font-size:22px!important}
2267
- .brz .brz-fs-sm-23{font-size:23px!important}
2268
- .brz .brz-fs-sm-24{font-size:24px!important}
2269
- .brz .brz-fs-sm-25{font-size:25px!important}
2270
- .brz .brz-fs-sm-26{font-size:26px!important}
2271
- .brz .brz-fs-sm-27{font-size:27px!important}
2272
- .brz .brz-fs-sm-28{font-size:28px!important}
2273
- .brz .brz-fs-sm-29{font-size:29px!important}
2274
- .brz .brz-fs-sm-30{font-size:30px!important}
2275
- .brz .brz-fs-sm-31{font-size:31px!important}
2276
- .brz .brz-fs-sm-32{font-size:32px!important}
2277
- .brz .brz-fs-sm-33{font-size:33px!important}
2278
- .brz .brz-fs-sm-34{font-size:34px!important}
2279
- .brz .brz-fs-sm-35{font-size:35px!important}
2280
- .brz .brz-fs-sm-36{font-size:36px!important}
2281
- .brz .brz-fs-sm-37{font-size:37px!important}
2282
- .brz .brz-fs-sm-38{font-size:38px!important}
2283
- .brz .brz-fs-sm-39{font-size:39px!important}
2284
- .brz .brz-fs-sm-40{font-size:40px!important}
2285
- .brz .brz-fs-sm-41{font-size:41px!important}
2286
- .brz .brz-fs-sm-42{font-size:42px!important}
2287
- .brz .brz-fs-sm-43{font-size:43px!important}
2288
- .brz .brz-fs-sm-44{font-size:44px!important}
2289
- .brz .brz-fs-sm-45{font-size:45px!important}
2290
- .brz .brz-fs-sm-46{font-size:46px!important}
2291
- .brz .brz-fs-sm-47{font-size:47px!important}
2292
- .brz .brz-fs-sm-48{font-size:48px!important}
2293
- .brz .brz-fs-sm-49{font-size:49px!important}
2294
- .brz .brz-fs-sm-50{font-size:50px!important}
2295
- .brz .brz-fs-sm-51{font-size:51px!important}
2296
- .brz .brz-fs-sm-52{font-size:52px!important}
2297
- .brz .brz-fs-sm-53{font-size:53px!important}
2298
- .brz .brz-fs-sm-54{font-size:54px!important}
2299
- .brz .brz-fs-sm-55{font-size:55px!important}
2300
- .brz .brz-fs-sm-56{font-size:56px!important}
2301
- .brz .brz-fs-sm-57{font-size:57px!important}
2302
- .brz .brz-fs-sm-58{font-size:58px!important}
2303
- .brz .brz-fs-sm-59{font-size:59px!important}
2304
- .brz .brz-fs-sm-60{font-size:60px!important}
2305
- .brz .brz-fs-sm-61{font-size:61px!important}
2306
- .brz .brz-fs-sm-62{font-size:62px!important}
2307
- .brz .brz-fs-sm-63{font-size:63px!important}
2308
- .brz .brz-fs-sm-64{font-size:64px!important}
2309
- .brz .brz-fs-sm-65{font-size:65px!important}
2310
- .brz .brz-fs-sm-66{font-size:66px!important}
2311
- .brz .brz-fs-sm-67{font-size:67px!important}
2312
- .brz .brz-fs-sm-68{font-size:68px!important}
2313
- .brz .brz-fs-sm-69{font-size:69px!important}
2314
- .brz .brz-fs-sm-70{font-size:70px!important}
2315
- .brz .brz-fs-sm-71{font-size:71px!important}
2316
- .brz .brz-fs-sm-72{font-size:72px!important}
2317
- .brz .brz-fs-sm-73{font-size:73px!important}
2318
- .brz .brz-fs-sm-74{font-size:74px!important}
2319
- .brz .brz-fs-sm-75{font-size:75px!important}
2320
- .brz .brz-fs-sm-76{font-size:76px!important}
2321
- .brz .brz-fs-sm-77{font-size:77px!important}
2322
- .brz .brz-fs-sm-78{font-size:78px!important}
2323
- .brz .brz-fs-sm-79{font-size:79px!important}
2324
- .brz .brz-fs-sm-80{font-size:80px!important}
2325
- .brz .brz-fs-sm-81{font-size:81px!important}
2326
- .brz .brz-fs-sm-82{font-size:82px!important}
2327
- .brz .brz-fs-sm-83{font-size:83px!important}
2328
- .brz .brz-fs-sm-84{font-size:84px!important}
2329
- .brz .brz-fs-sm-85{font-size:85px!important}
2330
- .brz .brz-fs-sm-86{font-size:86px!important}
2331
- .brz .brz-fs-sm-87{font-size:87px!important}
2332
- .brz .brz-fs-sm-88{font-size:88px!important}
2333
- .brz .brz-fs-sm-89{font-size:89px!important}
2334
- .brz .brz-fs-sm-90{font-size:90px!important}
2335
- .brz .brz-fs-sm-91{font-size:91px!important}
2336
- .brz .brz-fs-sm-92{font-size:92px!important}
2337
- .brz .brz-fs-sm-93{font-size:93px!important}
2338
- .brz .brz-fs-sm-94{font-size:94px!important}
2339
- .brz .brz-fs-sm-95{font-size:95px!important}
2340
- .brz .brz-fs-sm-96{font-size:96px!important}
2341
- .brz .brz-fs-sm-97{font-size:97px!important}
2342
- .brz .brz-fs-sm-98{font-size:98px!important}
2343
- .brz .brz-fs-sm-99{font-size:99px!important}
2344
- .brz .brz-fs-sm-100{font-size:100px!important}
2345
- .brz .brz-fs-sm-101{font-size:101px!important}
2346
- .brz .brz-fs-sm-102{font-size:102px!important}
2347
- .brz .brz-fs-sm-103{font-size:103px!important}
2348
- .brz .brz-fs-sm-104{font-size:104px!important}
2349
- .brz .brz-fs-sm-105{font-size:105px!important}
2350
- .brz .brz-fs-sm-106{font-size:106px!important}
2351
- .brz .brz-fs-sm-107{font-size:107px!important}
2352
- .brz .brz-fs-sm-108{font-size:108px!important}
2353
- .brz .brz-fs-sm-109{font-size:109px!important}
2354
- .brz .brz-fs-sm-110{font-size:110px!important}
2355
- .brz .brz-fs-sm-111{font-size:111px!important}
2356
- .brz .brz-fs-sm-112{font-size:112px!important}
2357
- .brz .brz-fs-sm-113{font-size:113px!important}
2358
- .brz .brz-fs-sm-114{font-size:114px!important}
2359
- .brz .brz-fs-sm-115{font-size:115px!important}
2360
- .brz .brz-fs-sm-116{font-size:116px!important}
2361
- .brz .brz-fs-sm-117{font-size:117px!important}
2362
- .brz .brz-fs-sm-118{font-size:118px!important}
2363
- .brz .brz-fs-sm-119{font-size:119px!important}
2364
- .brz .brz-fs-sm-120{font-size:120px!important}
2365
- .brz .brz-fs-sm-121{font-size:121px!important}
2366
- .brz .brz-fs-sm-122{font-size:122px!important}
2367
- .brz .brz-fs-sm-123{font-size:123px!important}
2368
- .brz .brz-fs-sm-124{font-size:124px!important}
2369
- .brz .brz-fs-sm-125{font-size:125px!important}
2370
- .brz .brz-fs-sm-126{font-size:126px!important}
2371
- .brz .brz-fs-sm-127{font-size:127px!important}
2372
- .brz .brz-fs-sm-128{font-size:128px!important}
2373
- .brz .brz-fs-sm-129{font-size:129px!important}
2374
- .brz .brz-fs-sm-130{font-size:130px!important}
2375
- .brz .brz-fs-sm-131{font-size:131px!important}
2376
- .brz .brz-fs-sm-132{font-size:132px!important}
2377
- .brz .brz-fs-sm-133{font-size:133px!important}
2378
- .brz .brz-fs-sm-134{font-size:134px!important}
2379
- .brz .brz-fs-sm-135{font-size:135px!important}
2380
- .brz .brz-fs-sm-136{font-size:136px!important}
2381
- .brz .brz-fs-sm-137{font-size:137px!important}
2382
- .brz .brz-fs-sm-138{font-size:138px!important}
2383
- .brz .brz-fs-sm-139{font-size:139px!important}
2384
- .brz .brz-fs-sm-140{font-size:140px!important}
2385
- .brz .brz-fs-sm-141{font-size:141px!important}
2386
- .brz .brz-fs-sm-142{font-size:142px!important}
2387
- .brz .brz-fs-sm-143{font-size:143px!important}
2388
- .brz .brz-fs-sm-144{font-size:144px!important}
2389
- .brz .brz-fs-sm-145{font-size:145px!important}
2390
- .brz .brz-fs-sm-146{font-size:146px!important}
2391
- .brz .brz-fs-sm-147{font-size:147px!important}
2392
- .brz .brz-fs-sm-148{font-size:148px!important}
2393
- .brz .brz-fs-sm-149{font-size:149px!important}
2394
- .brz .brz-fs-sm-150{font-size:150px!important}
2395
- .brz .brz-fs-sm-151{font-size:151px!important}
2396
- .brz .brz-fs-sm-152{font-size:152px!important}
2397
- .brz .brz-fs-sm-153{font-size:153px!important}
2398
- .brz .brz-fs-sm-154{font-size:154px!important}
2399
- .brz .brz-fs-sm-155{font-size:155px!important}
2400
- .brz .brz-fs-sm-156{font-size:156px!important}
2401
- .brz .brz-fs-sm-157{font-size:157px!important}
2402
- .brz .brz-fs-sm-158{font-size:158px!important}
2403
- .brz .brz-fs-sm-159{font-size:159px!important}
2404
- .brz .brz-fs-sm-160{font-size:160px!important}
2405
- .brz .brz-fs-sm-161{font-size:161px!important}
2406
- .brz .brz-fs-sm-162{font-size:162px!important}
2407
- .brz .brz-fs-sm-163{font-size:163px!important}
2408
- .brz .brz-fs-sm-164{font-size:164px!important}
2409
- .brz .brz-fs-sm-165{font-size:165px!important}
2410
- .brz .brz-fs-sm-166{font-size:166px!important}
2411
- .brz .brz-fs-sm-167{font-size:167px!important}
2412
- .brz .brz-fs-sm-168{font-size:168px!important}
2413
- .brz .brz-fs-sm-169{font-size:169px!important}
2414
- .brz .brz-fs-sm-170{font-size:170px!important}
2415
- .brz .brz-fs-sm-171{font-size:171px!important}
2416
- .brz .brz-fs-sm-172{font-size:172px!important}
2417
- .brz .brz-fs-sm-173{font-size:173px!important}
2418
- .brz .brz-fs-sm-174{font-size:174px!important}
2419
- .brz .brz-fs-sm-175{font-size:175px!important}
2420
- .brz .brz-fs-sm-176{font-size:176px!important}
2421
- .brz .brz-fs-sm-177{font-size:177px!important}
2422
- .brz .brz-fs-sm-178{font-size:178px!important}
2423
- .brz .brz-fs-sm-179{font-size:179px!important}
2424
- .brz .brz-fs-sm-180{font-size:180px!important}
2425
- .brz .brz-fs-sm-181{font-size:181px!important}
2426
- .brz .brz-fs-sm-182{font-size:182px!important}
2427
- .brz .brz-fs-sm-183{font-size:183px!important}
2428
- .brz .brz-fs-sm-184{font-size:184px!important}
2429
- .brz .brz-fs-sm-185{font-size:185px!important}
2430
- .brz .brz-fs-sm-186{font-size:186px!important}
2431
- .brz .brz-fs-sm-187{font-size:187px!important}
2432
- .brz .brz-fs-sm-188{font-size:188px!important}
2433
- .brz .brz-fs-sm-189{font-size:189px!important}
2434
- .brz .brz-fs-sm-190{font-size:190px!important}
2435
- .brz .brz-fs-sm-191{font-size:191px!important}
2436
- .brz .brz-fs-sm-192{font-size:192px!important}
2437
- .brz .brz-fs-sm-193{font-size:193px!important}
2438
- .brz .brz-fs-sm-194{font-size:194px!important}
2439
- .brz .brz-fs-sm-195{font-size:195px!important}
2440
- .brz .brz-fs-sm-196{font-size:196px!important}
2441
- .brz .brz-fs-sm-197{font-size:197px!important}
2442
- .brz .brz-fs-sm-198{font-size:198px!important}
2443
- .brz .brz-fs-sm-199{font-size:199px!important}
2444
- .brz .brz-fs-sm-200{font-size:200px!important}
2445
- .brz .brz-fs-sm-201{font-size:201px!important}
2446
- .brz .brz-fs-sm-202{font-size:202px!important}
2447
- .brz .brz-fs-sm-203{font-size:203px!important}
2448
- .brz .brz-fs-sm-204{font-size:204px!important}
2449
- .brz .brz-fs-sm-205{font-size:205px!important}
2450
- .brz .brz-fs-sm-206{font-size:206px!important}
2451
- .brz .brz-fs-sm-207{font-size:207px!important}
2452
- .brz .brz-fs-sm-208{font-size:208px!important}
2453
- .brz .brz-fs-sm-209{font-size:209px!important}
2454
- .brz .brz-fs-sm-210{font-size:210px!important}
2455
- .brz .brz-fs-sm-211{font-size:211px!important}
2456
- .brz .brz-fs-sm-212{font-size:212px!important}
2457
- .brz .brz-fs-sm-213{font-size:213px!important}
2458
- .brz .brz-fs-sm-214{font-size:214px!important}
2459
- .brz .brz-fs-sm-215{font-size:215px!important}
2460
- .brz .brz-fs-sm-216{font-size:216px!important}
2461
- .brz .brz-fs-sm-217{font-size:217px!important}
2462
- .brz .brz-fs-sm-218{font-size:218px!important}
2463
- .brz .brz-fs-sm-219{font-size:219px!important}
2464
- .brz .brz-fs-sm-220{font-size:220px!important}
2465
- .brz .brz-fs-sm-221{font-size:221px!important}
2466
- .brz .brz-fs-sm-222{font-size:222px!important}
2467
- .brz .brz-fs-sm-223{font-size:223px!important}
2468
- .brz .brz-fs-sm-224{font-size:224px!important}
2469
- .brz .brz-fs-sm-225{font-size:225px!important}
2470
- .brz .brz-fs-sm-226{font-size:226px!important}
2471
- .brz .brz-fs-sm-227{font-size:227px!important}
2472
- .brz .brz-fs-sm-228{font-size:228px!important}
2473
- .brz .brz-fs-sm-229{font-size:229px!important}
2474
- .brz .brz-fs-sm-230{font-size:230px!important}
2475
- .brz .brz-fs-sm-231{font-size:231px!important}
2476
- .brz .brz-fs-sm-232{font-size:232px!important}
2477
- .brz .brz-fs-sm-233{font-size:233px!important}
2478
- .brz .brz-fs-sm-234{font-size:234px!important}
2479
- .brz .brz-fs-sm-235{font-size:235px!important}
2480
- .brz .brz-fs-sm-236{font-size:236px!important}
2481
- .brz .brz-fs-sm-237{font-size:237px!important}
2482
- .brz .brz-fs-sm-238{font-size:238px!important}
2483
- .brz .brz-fs-sm-239{font-size:239px!important}
2484
- .brz .brz-fs-sm-240{font-size:240px!important}
2485
- .brz .brz-fs-sm-241{font-size:241px!important}
2486
- .brz .brz-fs-sm-242{font-size:242px!important}
2487
- .brz .brz-fs-sm-243{font-size:243px!important}
2488
- .brz .brz-fs-sm-244{font-size:244px!important}
2489
- .brz .brz-fs-sm-245{font-size:245px!important}
2490
- .brz .brz-fs-sm-246{font-size:246px!important}
2491
- .brz .brz-fs-sm-247{font-size:247px!important}
2492
- .brz .brz-fs-sm-248{font-size:248px!important}
2493
- .brz .brz-fs-sm-249{font-size:249px!important}
2494
- .brz .brz-fs-sm-250{font-size:250px!important}
2495
- .brz .brz-fs-sm-251{font-size:251px!important}
2496
- .brz .brz-fs-sm-252{font-size:252px!important}
2497
- .brz .brz-fs-sm-253{font-size:253px!important}
2498
- .brz .brz-fs-sm-254{font-size:254px!important}
2499
- .brz .brz-fs-sm-255{font-size:255px!important}
2500
- .brz .brz-fs-sm-256{font-size:256px!important}
2501
- .brz .brz-fs-sm-257{font-size:257px!important}
2502
- .brz .brz-fs-sm-258{font-size:258px!important}
2503
- .brz .brz-fs-sm-259{font-size:259px!important}
2504
- .brz .brz-fs-sm-260{font-size:260px!important}
2505
- .brz .brz-fs-sm-261{font-size:261px!important}
2506
- .brz .brz-fs-sm-262{font-size:262px!important}
2507
- .brz .brz-fs-sm-263{font-size:263px!important}
2508
- .brz .brz-fs-sm-264{font-size:264px!important}
2509
- .brz .brz-fs-sm-265{font-size:265px!important}
2510
- .brz .brz-fs-sm-266{font-size:266px!important}
2511
- .brz .brz-fs-sm-267{font-size:267px!important}
2512
- .brz .brz-fs-sm-268{font-size:268px!important}
2513
- .brz .brz-fs-sm-269{font-size:269px!important}
2514
- .brz .brz-fs-sm-270{font-size:270px!important}
2515
- .brz .brz-fs-sm-271{font-size:271px!important}
2516
- .brz .brz-fs-sm-272{font-size:272px!important}
2517
- .brz .brz-fs-sm-273{font-size:273px!important}
2518
- .brz .brz-fs-sm-274{font-size:274px!important}
2519
- .brz .brz-fs-sm-275{font-size:275px!important}
2520
- .brz .brz-fs-sm-276{font-size:276px!important}
2521
- .brz .brz-fs-sm-277{font-size:277px!important}
2522
- .brz .brz-fs-sm-278{font-size:278px!important}
2523
- .brz .brz-fs-sm-279{font-size:279px!important}
2524
- .brz .brz-fs-sm-280{font-size:280px!important}
2525
- .brz .brz-fs-sm-281{font-size:281px!important}
2526
- .brz .brz-fs-sm-282{font-size:282px!important}
2527
- .brz .brz-fs-sm-283{font-size:283px!important}
2528
- .brz .brz-fs-sm-284{font-size:284px!important}
2529
- .brz .brz-fs-sm-285{font-size:285px!important}
2530
- .brz .brz-fs-sm-286{font-size:286px!important}
2531
- .brz .brz-fs-sm-287{font-size:287px!important}
2532
- .brz .brz-fs-sm-288{font-size:288px!important}
2533
- .brz .brz-fs-sm-289{font-size:289px!important}
2534
- .brz .brz-fs-sm-290{font-size:290px!important}
2535
- .brz .brz-fs-sm-291{font-size:291px!important}
2536
- .brz .brz-fs-sm-292{font-size:292px!important}
2537
- .brz .brz-fs-sm-293{font-size:293px!important}
2538
- .brz .brz-fs-sm-294{font-size:294px!important}
2539
- .brz .brz-fs-sm-295{font-size:295px!important}
2540
- .brz .brz-fs-sm-296{font-size:296px!important}
2541
- .brz .brz-fs-sm-297{font-size:297px!important}
2542
- .brz .brz-fs-sm-298{font-size:298px!important}
2543
- .brz .brz-fs-sm-299{font-size:299px!important}
2544
- .brz .brz-fs-sm-300{font-size:300px!important}
2545
- .brz .brz-lh-sm-1{line-height:1em!important}
2546
- .brz .brz-lh-sm-1_1{line-height:1.1em!important}
2547
- .brz .brz-lh-sm-1_2{line-height:1.2em!important}
2548
- .brz .brz-lh-sm-1_3{line-height:1.3em!important}
2549
- .brz .brz-lh-sm-1_4{line-height:1.4em!important}
2550
- .brz .brz-lh-sm-1_5{line-height:1.5em!important}
2551
- .brz .brz-lh-sm-1_6{line-height:1.6em!important}
2552
- .brz .brz-lh-sm-1_7{line-height:1.7em!important}
2553
- .brz .brz-lh-sm-1_8{line-height:1.8em!important}
2554
- .brz .brz-lh-sm-1_9{line-height:1.9em!important}
2555
- .brz .brz-lh-sm-2{line-height:2em!important}
2556
- .brz .brz-lh-sm-2_1{line-height:2.1em!important}
2557
- .brz .brz-lh-sm-2_2{line-height:2.2em!important}
2558
- .brz .brz-lh-sm-2_3{line-height:2.3em!important}
2559
- .brz .brz-lh-sm-2_4{line-height:2.4em!important}
2560
- .brz .brz-lh-sm-2_5{line-height:2.5em!important}
2561
- .brz .brz-lh-sm-2_6{line-height:2.6em!important}
2562
- .brz .brz-lh-sm-2_7{line-height:2.7em!important}
2563
- .brz .brz-lh-sm-2_8{line-height:2.8em!important}
2564
- .brz .brz-lh-sm-2_9{line-height:2.9em!important}
2565
- .brz .brz-lh-sm-3{line-height:3em!important}
2566
- .brz .brz-lh-sm-3_1{line-height:3.1em!important}
2567
- .brz .brz-lh-sm-3_2{line-height:3.2em!important}
2568
- .brz .brz-lh-sm-3_3{line-height:3.3em!important}
2569
- .brz .brz-lh-sm-3_4{line-height:3.4em!important}
2570
- .brz .brz-lh-sm-3_5{line-height:3.5em!important}
2571
- .brz .brz-lh-sm-3_6{line-height:3.6em!important}
2572
- .brz .brz-lh-sm-3_7{line-height:3.7em!important}
2573
- .brz .brz-lh-sm-3_8{line-height:3.8em!important}
2574
- .brz .brz-lh-sm-3_9{line-height:3.9em!important}
2575
- .brz .brz-lh-sm-4{line-height:4em!important}
2576
- .brz .brz-lh-sm-4_1{line-height:4.1em!important}
2577
- .brz .brz-lh-sm-4_2{line-height:4.2em!important}
2578
- .brz .brz-lh-sm-4_3{line-height:4.3em!important}
2579
- .brz .brz-lh-sm-4_4{line-height:4.4em!important}
2580
- .brz .brz-lh-sm-4_5{line-height:4.5em!important}
2581
- .brz .brz-lh-sm-4_6{line-height:4.6em!important}
2582
- .brz .brz-lh-sm-4_7{line-height:4.7em!important}
2583
- .brz .brz-lh-sm-4_8{line-height:4.8em!important}
2584
- .brz .brz-lh-sm-4_9{line-height:4.9em!important}
2585
- .brz .brz-lh-sm-5{line-height:5em!important}
2586
- .brz .brz-lh-sm-5_1{line-height:5.1em!important}
2587
- .brz .brz-lh-sm-5_2{line-height:5.2em!important}
2588
- .brz .brz-lh-sm-5_3{line-height:5.3em!important}
2589
- .brz .brz-lh-sm-5_4{line-height:5.4em!important}
2590
- .brz .brz-lh-sm-5_5{line-height:5.5em!important}
2591
- .brz .brz-lh-sm-5_6{line-height:5.6em!important}
2592
- .brz .brz-lh-sm-5_7{line-height:5.7em!important}
2593
- .brz .brz-lh-sm-5_8{line-height:5.8em!important}
2594
- .brz .brz-lh-sm-5_9{line-height:5.9em!important}
2595
- .brz .brz-fw-sm-100{font-weight:100!important}
2596
- .brz .brz-fw-sm-200{font-weight:200!important}
2597
- .brz .brz-fw-sm-300{font-weight:300!important}
2598
- .brz .brz-fw-sm-400{font-weight:400!important}
2599
- .brz .brz-fw-sm-500{font-weight:500!important}
2600
- .brz .brz-fw-sm-600{font-weight:600!important}
2601
- .brz .brz-fw-sm-700{font-weight:700!important}
2602
- .brz .brz-fw-sm-800{font-weight:800!important}
2603
- .brz .brz-fw-sm-900{font-weight:900!important}
2604
- .brz .brz-fw-sm-1000{font-weight:1000!important}
2605
- .brz .brz-fw-sm-1100{font-weight:1100!important}
2606
- .brz .brz-fw-sm-1200{font-weight:1200!important}
2607
- .brz .brz-fw-sm-1300{font-weight:1300!important}
2608
- .brz .brz-fw-sm-1400{font-weight:1400!important}
2609
- .brz .brz-fw-sm-1500{font-weight:1500!important}
2610
- .brz .brz-ls-sm-m_5{letter-spacing:-5px!important}
2611
- .brz .brz-ls-sm-m_5_5{letter-spacing:-5.5px!important}
2612
- .brz .brz-ls-sm-m_4{letter-spacing:-4px!important}
2613
- .brz .brz-ls-sm-m_4_5{letter-spacing:-4.5px!important}
2614
- .brz .brz-ls-sm-m_3{letter-spacing:-3px!important}
2615
- .brz .brz-ls-sm-m_3_5{letter-spacing:-3.5px!important}
2616
- .brz .brz-ls-sm-m_2{letter-spacing:-2px!important}
2617
- .brz .brz-ls-sm-m_2_5{letter-spacing:-2.5px!important}
2618
- .brz .brz-ls-sm-m_1{letter-spacing:-1px!important}
2619
- .brz .brz-ls-sm-m_1_5{letter-spacing:-1.5px!important}
2620
- .brz .brz-ls-sm-m_0{letter-spacing:0!important}
2621
- .brz .brz-ls-sm-m_0_5{letter-spacing:-.5px!important}
2622
- .brz .brz-ls-sm-0{letter-spacing:0!important}
2623
- .brz .brz-ls-sm-0_5{letter-spacing:.5px!important}
2624
- .brz .brz-ls-sm-1{letter-spacing:1px!important}
2625
- .brz .brz-ls-sm-1_5{letter-spacing:1.5px!important}
2626
- .brz .brz-ls-sm-2{letter-spacing:2px!important}
2627
- .brz .brz-ls-sm-2_5{letter-spacing:2.5px!important}
2628
- .brz .brz-ls-sm-3{letter-spacing:3px!important}
2629
- .brz .brz-ls-sm-3_5{letter-spacing:3.5px!important}
2630
- .brz .brz-ls-sm-4{letter-spacing:4px!important}
2631
- .brz .brz-ls-sm-4_5{letter-spacing:4.5px!important}
2632
- .brz .brz-ls-sm-5{letter-spacing:5px!important}
2633
- .brz .brz-ls-sm-5_5{letter-spacing:5.5px!important}
2634
- .brz .brz-ls-sm-6{letter-spacing:6px!important}
2635
- .brz .brz-ls-sm-6_5{letter-spacing:6.5px!important}
2636
- .brz .brz-ls-sm-7{letter-spacing:7px!important}
2637
- .brz .brz-ls-sm-7_5{letter-spacing:7.5px!important}
2638
- .brz .brz-ls-sm-8{letter-spacing:8px!important}
2639
- .brz .brz-ls-sm-8_5{letter-spacing:8.5px!important}
2640
- .brz .brz-ls-sm-9{letter-spacing:9px!important}
2641
- .brz .brz-ls-sm-9_5{letter-spacing:9.5px!important}
2642
- .brz .brz-ls-sm-10{letter-spacing:10px!important}
2643
- .brz .brz-ls-sm-10_5{letter-spacing:10.5px!important}
2644
- .brz .brz-ls-sm-11{letter-spacing:11px!important}
2645
- .brz .brz-ls-sm-11_5{letter-spacing:11.5px!important}
2646
- .brz .brz-ls-sm-12{letter-spacing:12px!important}
2647
- .brz .brz-ls-sm-12_5{letter-spacing:12.5px!important}
2648
- .brz .brz-ls-sm-13{letter-spacing:13px!important}
2649
- .brz .brz-ls-sm-13_5{letter-spacing:13.5px!important}
2650
- .brz .brz-ls-sm-14{letter-spacing:14px!important}
2651
- .brz .brz-ls-sm-14_5{letter-spacing:14.5px!important}
2652
- .brz .brz-ls-sm-15{letter-spacing:15px!important}
2653
- .brz .brz-ls-sm-15_5{letter-spacing:15.5px!important}
2654
- .brz .brz-fs-sm-im-6{font-size:6px!important}
2655
- .brz .brz-fs-sm-im-7{font-size:7px!important}
2656
- .brz .brz-fs-sm-im-8{font-size:8px!important}
2657
- .brz .brz-fs-sm-im-9{font-size:9px!important}
2658
- .brz .brz-fs-sm-im-10{font-size:10px!important}
2659
- .brz .brz-fs-sm-im-11{font-size:11px!important}
2660
- .brz .brz-fs-sm-im-12{font-size:12px!important}
2661
- .brz .brz-fs-sm-im-13{font-size:13px!important}
2662
- .brz .brz-fs-sm-im-14{font-size:14px!important}
2663
- .brz .brz-fs-sm-im-15{font-size:15px!important}
2664
- .brz .brz-fs-sm-im-16{font-size:16px!important}
2665
- .brz .brz-fs-sm-im-17{font-size:17px!important}
2666
- .brz .brz-fs-sm-im-18{font-size:18px!important}
2667
- .brz .brz-fs-sm-im-19{font-size:19px!important}
2668
- .brz .brz-fs-sm-im-20{font-size:20px!important}
2669
- .brz .brz-fs-sm-im-21{font-size:21px!important}
2670
- .brz .brz-fs-sm-im-22{font-size:22px!important}
2671
- .brz .brz-fs-sm-im-23{font-size:23px!important}
2672
- .brz .brz-fs-sm-im-24{font-size:24px!important}
2673
- .brz .brz-fs-sm-im-25{font-size:25px!important}
2674
- .brz .brz-fs-sm-im-26{font-size:26px!important}
2675
- .brz .brz-fs-sm-im-27{font-size:27px!important}
2676
- .brz .brz-fs-sm-im-28{font-size:28px!important}
2677
- .brz .brz-fs-sm-im-29{font-size:29px!important}
2678
- .brz .brz-fs-sm-im-30{font-size:30px!important}
2679
- .brz .brz-fs-sm-im-31{font-size:31px!important}
2680
- .brz .brz-fs-sm-im-32{font-size:32px!important}
2681
- .brz .brz-fs-sm-im-33{font-size:33px!important}
2682
- .brz .brz-fs-sm-im-34{font-size:34px!important}
2683
- .brz .brz-fs-sm-im-35{font-size:35px!important}
2684
- .brz .brz-fs-sm-im-36{font-size:36px!important}
2685
- .brz .brz-fs-sm-im-37{font-size:37px!important}
2686
- .brz .brz-fs-sm-im-38{font-size:38px!important}
2687
- .brz .brz-fs-sm-im-39{font-size:39px!important}
2688
- .brz .brz-fs-sm-im-40{font-size:40px!important}
2689
- .brz .brz-fs-sm-im-41{font-size:41px!important}
2690
- .brz .brz-fs-sm-im-42{font-size:42px!important}
2691
- .brz .brz-fs-sm-im-43{font-size:43px!important}
2692
- .brz .brz-fs-sm-im-44{font-size:44px!important}
2693
- .brz .brz-fs-sm-im-45{font-size:45px!important}
2694
- .brz .brz-fs-sm-im-46{font-size:46px!important}
2695
- .brz .brz-fs-sm-im-47{font-size:47px!important}
2696
- .brz .brz-fs-sm-im-48{font-size:48px!important}
2697
- .brz .brz-fs-sm-im-49{font-size:49px!important}
2698
- .brz .brz-fs-sm-im-50{font-size:50px!important}
2699
- .brz .brz-fs-sm-im-51{font-size:51px!important}
2700
- .brz .brz-fs-sm-im-52{font-size:52px!important}
2701
- .brz .brz-fs-sm-im-53{font-size:53px!important}
2702
- .brz .brz-fs-sm-im-54{font-size:54px!important}
2703
- .brz .brz-fs-sm-im-55{font-size:55px!important}
2704
- .brz .brz-fs-sm-im-56{font-size:56px!important}
2705
- .brz .brz-fs-sm-im-57{font-size:57px!important}
2706
- .brz .brz-fs-sm-im-58{font-size:58px!important}
2707
- .brz .brz-fs-sm-im-59{font-size:59px!important}
2708
- .brz .brz-fs-sm-im-60{font-size:60px!important}
2709
- .brz .brz-fs-sm-im-61{font-size:61px!important}
2710
- .brz .brz-fs-sm-im-62{font-size:62px!important}
2711
- .brz .brz-fs-sm-im-63{font-size:63px!important}
2712
- .brz .brz-fs-sm-im-64{font-size:64px!important}
2713
- .brz .brz-fs-sm-im-65{font-size:65px!important}
2714
- .brz .brz-fs-sm-im-66{font-size:66px!important}
2715
- .brz .brz-fs-sm-im-67{font-size:67px!important}
2716
- .brz .brz-fs-sm-im-68{font-size:68px!important}
2717
- .brz .brz-fs-sm-im-69{font-size:69px!important}
2718
- .brz .brz-fs-sm-im-70{font-size:70px!important}
2719
- .brz .brz-fs-sm-im-71{font-size:71px!important}
2720
- .brz .brz-fs-sm-im-72{font-size:72px!important}
2721
- .brz .brz-fs-sm-im-73{font-size:73px!important}
2722
- .brz .brz-fs-sm-im-74{font-size:74px!important}
2723
- .brz .brz-fs-sm-im-75{font-size:75px!important}
2724
- .brz .brz-fs-sm-im-76{font-size:76px!important}
2725
- .brz .brz-fs-sm-im-77{font-size:77px!important}
2726
- .brz .brz-fs-sm-im-78{font-size:78px!important}
2727
- .brz .brz-fs-sm-im-79{font-size:79px!important}
2728
- .brz .brz-fs-sm-im-80{font-size:80px!important}
2729
- .brz .brz-fs-sm-im-81{font-size:81px!important}
2730
- .brz .brz-fs-sm-im-82{font-size:82px!important}
2731
- .brz .brz-fs-sm-im-83{font-size:83px!important}
2732
- .brz .brz-fs-sm-im-84{font-size:84px!important}
2733
- .brz .brz-fs-sm-im-85{font-size:85px!important}
2734
- .brz .brz-fs-sm-im-86{font-size:86px!important}
2735
- .brz .brz-fs-sm-im-87{font-size:87px!important}
2736
- .brz .brz-fs-sm-im-88{font-size:88px!important}
2737
- .brz .brz-fs-sm-im-89{font-size:89px!important}
2738
- .brz .brz-fs-sm-im-90{font-size:90px!important}
2739
- .brz .brz-fs-sm-im-91{font-size:91px!important}
2740
- .brz .brz-fs-sm-im-92{font-size:92px!important}
2741
- .brz .brz-fs-sm-im-93{font-size:93px!important}
2742
- .brz .brz-fs-sm-im-94{font-size:94px!important}
2743
- .brz .brz-fs-sm-im-95{font-size:95px!important}
2744
- .brz .brz-fs-sm-im-96{font-size:96px!important}
2745
- .brz .brz-fs-sm-im-97{font-size:97px!important}
2746
- .brz .brz-fs-sm-im-98{font-size:98px!important}
2747
- .brz .brz-fs-sm-im-99{font-size:99px!important}
2748
- .brz .brz-fs-sm-im-100{font-size:100px!important}
2749
- .brz .brz-fs-sm-im-101{font-size:101px!important}
2750
- .brz .brz-fs-sm-im-102{font-size:102px!important}
2751
- .brz .brz-fs-sm-im-103{font-size:103px!important}
2752
- .brz .brz-fs-sm-im-104{font-size:104px!important}
2753
- .brz .brz-fs-sm-im-105{font-size:105px!important}
2754
- .brz .brz-fs-sm-im-106{font-size:106px!important}
2755
- .brz .brz-fs-sm-im-107{font-size:107px!important}
2756
- .brz .brz-fs-sm-im-108{font-size:108px!important}
2757
- .brz .brz-fs-sm-im-109{font-size:109px!important}
2758
- .brz .brz-fs-sm-im-110{font-size:110px!important}
2759
- .brz .brz-fs-sm-im-111{font-size:111px!important}
2760
- .brz .brz-fs-sm-im-112{font-size:112px!important}
2761
- .brz .brz-fs-sm-im-113{font-size:113px!important}
2762
- .brz .brz-fs-sm-im-114{font-size:114px!important}
2763
- .brz .brz-fs-sm-im-115{font-size:115px!important}
2764
- .brz .brz-fs-sm-im-116{font-size:116px!important}
2765
- .brz .brz-fs-sm-im-117{font-size:117px!important}
2766
- .brz .brz-fs-sm-im-118{font-size:118px!important}
2767
- .brz .brz-fs-sm-im-119{font-size:119px!important}
2768
- .brz .brz-fs-sm-im-120{font-size:120px!important}
2769
- .brz .brz-fs-sm-im-121{font-size:121px!important}
2770
- .brz .brz-fs-sm-im-122{font-size:122px!important}
2771
- .brz .brz-fs-sm-im-123{font-size:123px!important}
2772
- .brz .brz-fs-sm-im-124{font-size:124px!important}
2773
- .brz .brz-fs-sm-im-125{font-size:125px!important}
2774
- .brz .brz-fs-sm-im-126{font-size:126px!important}
2775
- .brz .brz-fs-sm-im-127{font-size:127px!important}
2776
- .brz .brz-fs-sm-im-128{font-size:128px!important}
2777
- .brz .brz-fs-sm-im-129{font-size:129px!important}
2778
- .brz .brz-fs-sm-im-130{font-size:130px!important}
2779
- .brz .brz-fs-sm-im-131{font-size:131px!important}
2780
- .brz .brz-fs-sm-im-132{font-size:132px!important}
2781
- .brz .brz-fs-sm-im-133{font-size:133px!important}
2782
- .brz .brz-fs-sm-im-134{font-size:134px!important}
2783
- .brz .brz-fs-sm-im-135{font-size:135px!important}
2784
- .brz .brz-fs-sm-im-136{font-size:136px!important}
2785
- .brz .brz-fs-sm-im-137{font-size:137px!important}
2786
- .brz .brz-fs-sm-im-138{font-size:138px!important}
2787
- .brz .brz-fs-sm-im-139{font-size:139px!important}
2788
- .brz .brz-fs-sm-im-140{font-size:140px!important}
2789
- .brz .brz-fs-sm-im-141{font-size:141px!important}
2790
- .brz .brz-fs-sm-im-142{font-size:142px!important}
2791
- .brz .brz-fs-sm-im-143{font-size:143px!important}
2792
- .brz .brz-fs-sm-im-144{font-size:144px!important}
2793
- .brz .brz-fs-sm-im-145{font-size:145px!important}
2794
- .brz .brz-fs-sm-im-146{font-size:146px!important}
2795
- .brz .brz-fs-sm-im-147{font-size:147px!important}
2796
- .brz .brz-fs-sm-im-148{font-size:148px!important}
2797
- .brz .brz-fs-sm-im-149{font-size:149px!important}
2798
- .brz .brz-fs-sm-im-150{font-size:150px!important}
2799
- .brz .brz-fs-sm-im-151{font-size:151px!important}
2800
- .brz .brz-fs-sm-im-152{font-size:152px!important}
2801
- .brz .brz-fs-sm-im-153{font-size:153px!important}
2802
- .brz .brz-fs-sm-im-154{font-size:154px!important}
2803
- .brz .brz-fs-sm-im-155{font-size:155px!important}
2804
- .brz .brz-fs-sm-im-156{font-size:156px!important}
2805
- .brz .brz-fs-sm-im-157{font-size:157px!important}
2806
- .brz .brz-fs-sm-im-158{font-size:158px!important}
2807
- .brz .brz-fs-sm-im-159{font-size:159px!important}
2808
- .brz .brz-fs-sm-im-160{font-size:160px!important}
2809
- .brz .brz-fs-sm-im-161{font-size:161px!important}
2810
- .brz .brz-fs-sm-im-162{font-size:162px!important}
2811
- .brz .brz-fs-sm-im-163{font-size:163px!important}
2812
- .brz .brz-fs-sm-im-164{font-size:164px!important}
2813
- .brz .brz-fs-sm-im-165{font-size:165px!important}
2814
- .brz .brz-fs-sm-im-166{font-size:166px!important}
2815
- .brz .brz-fs-sm-im-167{font-size:167px!important}
2816
- .brz .brz-fs-sm-im-168{font-size:168px!important}
2817
- .brz .brz-fs-sm-im-169{font-size:169px!important}
2818
- .brz .brz-fs-sm-im-170{font-size:170px!important}
2819
- .brz .brz-fs-sm-im-171{font-size:171px!important}
2820
- .brz .brz-fs-sm-im-172{font-size:172px!important}
2821
- .brz .brz-fs-sm-im-173{font-size:173px!important}
2822
- .brz .brz-fs-sm-im-174{font-size:174px!important}
2823
- .brz .brz-fs-sm-im-175{font-size:175px!important}
2824
- .brz .brz-fs-sm-im-176{font-size:176px!important}
2825
- .brz .brz-fs-sm-im-177{font-size:177px!important}
2826
- .brz .brz-fs-sm-im-178{font-size:178px!important}
2827
- .brz .brz-fs-sm-im-179{font-size:179px!important}
2828
- .brz .brz-fs-sm-im-180{font-size:180px!important}
2829
- .brz .brz-fs-sm-im-181{font-size:181px!important}
2830
- .brz .brz-fs-sm-im-182{font-size:182px!important}
2831
- .brz .brz-fs-sm-im-183{font-size:183px!important}
2832
- .brz .brz-fs-sm-im-184{font-size:184px!important}
2833
- .brz .brz-fs-sm-im-185{font-size:185px!important}
2834
- .brz .brz-fs-sm-im-186{font-size:186px!important}
2835
- .brz .brz-fs-sm-im-187{font-size:187px!important}
2836
- .brz .brz-fs-sm-im-188{font-size:188px!important}
2837
- .brz .brz-fs-sm-im-189{font-size:189px!important}
2838
- .brz .brz-fs-sm-im-190{font-size:190px!important}
2839
- .brz .brz-fs-sm-im-191{font-size:191px!important}
2840
- .brz .brz-fs-sm-im-192{font-size:192px!important}
2841
- .brz .brz-fs-sm-im-193{font-size:193px!important}
2842
- .brz .brz-fs-sm-im-194{font-size:194px!important}
2843
- .brz .brz-fs-sm-im-195{font-size:195px!important}
2844
- .brz .brz-fs-sm-im-196{font-size:196px!important}
2845
- .brz .brz-fs-sm-im-197{font-size:197px!important}
2846
- .brz .brz-fs-sm-im-198{font-size:198px!important}
2847
- .brz .brz-fs-sm-im-199{font-size:199px!important}
2848
- .brz .brz-fs-sm-im-200{font-size:200px!important}
2849
- .brz .brz-fs-sm-im-201{font-size:201px!important}
2850
- .brz .brz-fs-sm-im-202{font-size:202px!important}
2851
- .brz .brz-fs-sm-im-203{font-size:203px!important}
2852
- .brz .brz-fs-sm-im-204{font-size:204px!important}
2853
- .brz .brz-fs-sm-im-205{font-size:205px!important}
2854
- .brz .brz-fs-sm-im-206{font-size:206px!important}
2855
- .brz .brz-fs-sm-im-207{font-size:207px!important}
2856
- .brz .brz-fs-sm-im-208{font-size:208px!important}
2857
- .brz .brz-fs-sm-im-209{font-size:209px!important}
2858
- .brz .brz-fs-sm-im-210{font-size:210px!important}
2859
- .brz .brz-fs-sm-im-211{font-size:211px!important}
2860
- .brz .brz-fs-sm-im-212{font-size:212px!important}
2861
- .brz .brz-fs-sm-im-213{font-size:213px!important}
2862
- .brz .brz-fs-sm-im-214{font-size:214px!important}
2863
- .brz .brz-fs-sm-im-215{font-size:215px!important}
2864
- .brz .brz-fs-sm-im-216{font-size:216px!important}
2865
- .brz .brz-fs-sm-im-217{font-size:217px!important}
2866
- .brz .brz-fs-sm-im-218{font-size:218px!important}
2867
- .brz .brz-fs-sm-im-219{font-size:219px!important}
2868
- .brz .brz-fs-sm-im-220{font-size:220px!important}
2869
- .brz .brz-fs-sm-im-221{font-size:221px!important}
2870
- .brz .brz-fs-sm-im-222{font-size:222px!important}
2871
- .brz .brz-fs-sm-im-223{font-size:223px!important}
2872
- .brz .brz-fs-sm-im-224{font-size:224px!important}
2873
- .brz .brz-fs-sm-im-225{font-size:225px!important}
2874
- .brz .brz-fs-sm-im-226{font-size:226px!important}
2875
- .brz .brz-fs-sm-im-227{font-size:227px!important}
2876
- .brz .brz-fs-sm-im-228{font-size:228px!important}
2877
- .brz .brz-fs-sm-im-229{font-size:229px!important}
2878
- .brz .brz-fs-sm-im-230{font-size:230px!important}
2879
- .brz .brz-fs-sm-im-231{font-size:231px!important}
2880
- .brz .brz-fs-sm-im-232{font-size:232px!important}
2881
- .brz .brz-fs-sm-im-233{font-size:233px!important}
2882
- .brz .brz-fs-sm-im-234{font-size:234px!important}
2883
- .brz .brz-fs-sm-im-235{font-size:235px!important}
2884
- .brz .brz-fs-sm-im-236{font-size:236px!important}
2885
- .brz .brz-fs-sm-im-237{font-size:237px!important}
2886
- .brz .brz-fs-sm-im-238{font-size:238px!important}
2887
- .brz .brz-fs-sm-im-239{font-size:239px!important}
2888
- .brz .brz-fs-sm-im-240{font-size:240px!important}
2889
- .brz .brz-fs-sm-im-241{font-size:241px!important}
2890
- .brz .brz-fs-sm-im-242{font-size:242px!important}
2891
- .brz .brz-fs-sm-im-243{font-size:243px!important}
2892
- .brz .brz-fs-sm-im-244{font-size:244px!important}
2893
- .brz .brz-fs-sm-im-245{font-size:245px!important}
2894
- .brz .brz-fs-sm-im-246{font-size:246px!important}
2895
- .brz .brz-fs-sm-im-247{font-size:247px!important}
2896
- .brz .brz-fs-sm-im-248{font-size:248px!important}
2897
- .brz .brz-fs-sm-im-249{font-size:249px!important}
2898
- .brz .brz-fs-sm-im-250{font-size:250px!important}
2899
- .brz .brz-fs-sm-im-251{font-size:251px!important}
2900
- .brz .brz-fs-sm-im-252{font-size:252px!important}
2901
- .brz .brz-fs-sm-im-253{font-size:253px!important}
2902
- .brz .brz-fs-sm-im-254{font-size:254px!important}
2903
- .brz .brz-fs-sm-im-255{font-size:255px!important}
2904
- .brz .brz-fs-sm-im-256{font-size:256px!important}
2905
- .brz .brz-fs-sm-im-257{font-size:257px!important}
2906
- .brz .brz-fs-sm-im-258{font-size:258px!important}
2907
- .brz .brz-fs-sm-im-259{font-size:259px!important}
2908
- .brz .brz-fs-sm-im-260{font-size:260px!important}
2909
- .brz .brz-fs-sm-im-261{font-size:261px!important}
2910
- .brz .brz-fs-sm-im-262{font-size:262px!important}
2911
- .brz .brz-fs-sm-im-263{font-size:263px!important}
2912
- .brz .brz-fs-sm-im-264{font-size:264px!important}
2913
- .brz .brz-fs-sm-im-265{font-size:265px!important}
2914
- .brz .brz-fs-sm-im-266{font-size:266px!important}
2915
- .brz .brz-fs-sm-im-267{font-size:267px!important}
2916
- .brz .brz-fs-sm-im-268{font-size:268px!important}
2917
- .brz .brz-fs-sm-im-269{font-size:269px!important}
2918
- .brz .brz-fs-sm-im-270{font-size:270px!important}
2919
- .brz .brz-fs-sm-im-271{font-size:271px!important}
2920
- .brz .brz-fs-sm-im-272{font-size:272px!important}
2921
- .brz .brz-fs-sm-im-273{font-size:273px!important}
2922
- .brz .brz-fs-sm-im-274{font-size:274px!important}
2923
- .brz .brz-fs-sm-im-275{font-size:275px!important}
2924
- .brz .brz-fs-sm-im-276{font-size:276px!important}
2925
- .brz .brz-fs-sm-im-277{font-size:277px!important}
2926
- .brz .brz-fs-sm-im-278{font-size:278px!important}
2927
- .brz .brz-fs-sm-im-279{font-size:279px!important}
2928
- .brz .brz-fs-sm-im-280{font-size:280px!important}
2929
- .brz .brz-fs-sm-im-281{font-size:281px!important}
2930
- .brz .brz-fs-sm-im-282{font-size:282px!important}
2931
- .brz .brz-fs-sm-im-283{font-size:283px!important}
2932
- .brz .brz-fs-sm-im-284{font-size:284px!important}
2933
- .brz .brz-fs-sm-im-285{font-size:285px!important}
2934
- .brz .brz-fs-sm-im-286{font-size:286px!important}
2935
- .brz .brz-fs-sm-im-287{font-size:287px!important}
2936
- .brz .brz-fs-sm-im-288{font-size:288px!important}
2937
- .brz .brz-fs-sm-im-289{font-size:289px!important}
2938
- .brz .brz-fs-sm-im-290{font-size:290px!important}
2939
- .brz .brz-fs-sm-im-291{font-size:291px!important}
2940
- .brz .brz-fs-sm-im-292{font-size:292px!important}
2941
- .brz .brz-fs-sm-im-293{font-size:293px!important}
2942
- .brz .brz-fs-sm-im-294{font-size:294px!important}
2943
- .brz .brz-fs-sm-im-295{font-size:295px!important}
2944
- .brz .brz-fs-sm-im-296{font-size:296px!important}
2945
- .brz .brz-fs-sm-im-297{font-size:297px!important}
2946
- .brz .brz-fs-sm-im-298{font-size:298px!important}
2947
- .brz .brz-fs-sm-im-299{font-size:299px!important}
2948
- .brz .brz-fs-sm-im-300{font-size:300px!important}
2949
- .brz .brz-lh-sm-im-1{line-height:1em!important}
2950
- .brz .brz-lh-sm-im-1_1{line-height:1.1em!important}
2951
- .brz .brz-lh-sm-im-1_2{line-height:1.2em!important}
2952
- .brz .brz-lh-sm-im-1_3{line-height:1.3em!important}
2953
- .brz .brz-lh-sm-im-1_4{line-height:1.4em!important}
2954
- .brz .brz-lh-sm-im-1_5{line-height:1.5em!important}
2955
- .brz .brz-lh-sm-im-1_6{line-height:1.6em!important}
2956
- .brz .brz-lh-sm-im-1_7{line-height:1.7em!important}
2957
- .brz .brz-lh-sm-im-1_8{line-height:1.8em!important}
2958
- .brz .brz-lh-sm-im-1_9{line-height:1.9em!important}
2959
- .brz .brz-lh-sm-im-2{line-height:2em!important}
2960
- .brz .brz-lh-sm-im-2_1{line-height:2.1em!important}
2961
- .brz .brz-lh-sm-im-2_2{line-height:2.2em!important}
2962
- .brz .brz-lh-sm-im-2_3{line-height:2.3em!important}
2963
- .brz .brz-lh-sm-im-2_4{line-height:2.4em!important}
2964
- .brz .brz-lh-sm-im-2_5{line-height:2.5em!important}
2965
- .brz .brz-lh-sm-im-2_6{line-height:2.6em!important}
2966
- .brz .brz-lh-sm-im-2_7{line-height:2.7em!important}
2967
- .brz .brz-lh-sm-im-2_8{line-height:2.8em!important}
2968
- .brz .brz-lh-sm-im-2_9{line-height:2.9em!important}
2969
- .brz .brz-lh-sm-im-3{line-height:3em!important}
2970
- .brz .brz-lh-sm-im-3_1{line-height:3.1em!important}
2971
- .brz .brz-lh-sm-im-3_2{line-height:3.2em!important}
2972
- .brz .brz-lh-sm-im-3_3{line-height:3.3em!important}
2973
- .brz .brz-lh-sm-im-3_4{line-height:3.4em!important}
2974
- .brz .brz-lh-sm-im-3_5{line-height:3.5em!important}
2975
- .brz .brz-lh-sm-im-3_6{line-height:3.6em!important}
2976
- .brz .brz-lh-sm-im-3_7{line-height:3.7em!important}
2977
- .brz .brz-lh-sm-im-3_8{line-height:3.8em!important}
2978
- .brz .brz-lh-sm-im-3_9{line-height:3.9em!important}
2979
- .brz .brz-lh-sm-im-4{line-height:4em!important}
2980
- .brz .brz-lh-sm-im-4_1{line-height:4.1em!important}
2981
- .brz .brz-lh-sm-im-4_2{line-height:4.2em!important}
2982
- .brz .brz-lh-sm-im-4_3{line-height:4.3em!important}
2983
- .brz .brz-lh-sm-im-4_4{line-height:4.4em!important}
2984
- .brz .brz-lh-sm-im-4_5{line-height:4.5em!important}
2985
- .brz .brz-lh-sm-im-4_6{line-height:4.6em!important}
2986
- .brz .brz-lh-sm-im-4_7{line-height:4.7em!important}
2987
- .brz .brz-lh-sm-im-4_8{line-height:4.8em!important}
2988
- .brz .brz-lh-sm-im-4_9{line-height:4.9em!important}
2989
- .brz .brz-lh-sm-im-5{line-height:5em!important}
2990
- .brz .brz-lh-sm-im-5_1{line-height:5.1em!important}
2991
- .brz .brz-lh-sm-im-5_2{line-height:5.2em!important}
2992
- .brz .brz-lh-sm-im-5_3{line-height:5.3em!important}
2993
- .brz .brz-lh-sm-im-5_4{line-height:5.4em!important}
2994
- .brz .brz-lh-sm-im-5_5{line-height:5.5em!important}
2995
- .brz .brz-lh-sm-im-5_6{line-height:5.6em!important}
2996
- .brz .brz-lh-sm-im-5_7{line-height:5.7em!important}
2997
- .brz .brz-lh-sm-im-5_8{line-height:5.8em!important}
2998
- .brz .brz-lh-sm-im-5_9{line-height:5.9em!important}
2999
- .brz .brz-fw-sm-im-100{font-weight:100!important}
3000
- .brz .brz-fw-sm-im-200{font-weight:200!important}
3001
- .brz .brz-fw-sm-im-300{font-weight:300!important}
3002
- .brz .brz-fw-sm-im-400{font-weight:400!important}
3003
- .brz .brz-fw-sm-im-500{font-weight:500!important}
3004
- .brz .brz-fw-sm-im-600{font-weight:600!important}
3005
- .brz .brz-fw-sm-im-700{font-weight:700!important}
3006
- .brz .brz-fw-sm-im-800{font-weight:800!important}
3007
- .brz .brz-fw-sm-im-900{font-weight:900!important}
3008
- .brz .brz-fw-sm-im-1000{font-weight:1000!important}
3009
- .brz .brz-fw-sm-im-1100{font-weight:1100!important}
3010
- .brz .brz-fw-sm-im-1200{font-weight:1200!important}
3011
- .brz .brz-fw-sm-im-1300{font-weight:1300!important}
3012
- .brz .brz-fw-sm-im-1400{font-weight:1400!important}
3013
- .brz .brz-fw-sm-im-1500{font-weight:1500!important}
3014
- .brz .brz-ls-sm-im-m_5{letter-spacing:-5px!important}
3015
- .brz .brz-ls-sm-im-m_5_5{letter-spacing:-5.5px!important}
3016
- .brz .brz-ls-sm-im-m_4{letter-spacing:-4px!important}
3017
- .brz .brz-ls-sm-im-m_4_5{letter-spacing:-4.5px!important}
3018
- .brz .brz-ls-sm-im-m_3{letter-spacing:-3px!important}
3019
- .brz .brz-ls-sm-im-m_3_5{letter-spacing:-3.5px!important}
3020
- .brz .brz-ls-sm-im-m_2{letter-spacing:-2px!important}
3021
- .brz .brz-ls-sm-im-m_2_5{letter-spacing:-2.5px!important}
3022
- .brz .brz-ls-sm-im-m_1{letter-spacing:-1px!important}
3023
- .brz .brz-ls-sm-im-m_1_5{letter-spacing:-1.5px!important}
3024
- .brz .brz-ls-sm-im-m_0{letter-spacing:0!important}
3025
- .brz .brz-ls-sm-im-m_0_5{letter-spacing:-.5px!important}
3026
- .brz .brz-ls-sm-im-0{letter-spacing:0!important}
3027
- .brz .brz-ls-sm-im-0_5{letter-spacing:.5px!important}
3028
- .brz .brz-ls-sm-im-1{letter-spacing:1px!important}
3029
- .brz .brz-ls-sm-im-1_5{letter-spacing:1.5px!important}
3030
- .brz .brz-ls-sm-im-2{letter-spacing:2px!important}
3031
- .brz .brz-ls-sm-im-2_5{letter-spacing:2.5px!important}
3032
- .brz .brz-ls-sm-im-3{letter-spacing:3px!important}
3033
- .brz .brz-ls-sm-im-3_5{letter-spacing:3.5px!important}
3034
- .brz .brz-ls-sm-im-4{letter-spacing:4px!important}
3035
- .brz .brz-ls-sm-im-4_5{letter-spacing:4.5px!important}
3036
- .brz .brz-ls-sm-im-5{letter-spacing:5px!important}
3037
- .brz .brz-ls-sm-im-5_5{letter-spacing:5.5px!important}
3038
- .brz .brz-ls-sm-im-6{letter-spacing:6px!important}
3039
- .brz .brz-ls-sm-im-6_5{letter-spacing:6.5px!important}
3040
- .brz .brz-ls-sm-im-7{letter-spacing:7px!important}
3041
- .brz .brz-ls-sm-im-7_5{letter-spacing:7.5px!important}
3042
- .brz .brz-ls-sm-im-8{letter-spacing:8px!important}
3043
- .brz .brz-ls-sm-im-8_5{letter-spacing:8.5px!important}
3044
- .brz .brz-ls-sm-im-9{letter-spacing:9px!important}
3045
- .brz .brz-ls-sm-im-9_5{letter-spacing:9.5px!important}
3046
- .brz .brz-ls-sm-im-10{letter-spacing:10px!important}
3047
- .brz .brz-ls-sm-im-10_5{letter-spacing:10.5px!important}
3048
- .brz .brz-ls-sm-im-11{letter-spacing:11px!important}
3049
- .brz .brz-ls-sm-im-11_5{letter-spacing:11.5px!important}
3050
- .brz .brz-ls-sm-im-12{letter-spacing:12px!important}
3051
- .brz .brz-ls-sm-im-12_5{letter-spacing:12.5px!important}
3052
- .brz .brz-ls-sm-im-13{letter-spacing:13px!important}
3053
- .brz .brz-ls-sm-im-13_5{letter-spacing:13.5px!important}
3054
- .brz .brz-ls-sm-im-14{letter-spacing:14px!important}
3055
- .brz .brz-ls-sm-im-14_5{letter-spacing:14.5px!important}
3056
- .brz .brz-ls-sm-im-15{letter-spacing:15px!important}
3057
- .brz .brz-ls-sm-im-15_5{letter-spacing:15.5px!important}}@media (min-width:992px){.brz .brz-fs-lg-6{font-size:6px!important}
3058
- .brz .brz-fs-lg-7{font-size:7px!important}
3059
- .brz .brz-fs-lg-8{font-size:8px!important}
3060
- .brz .brz-fs-lg-9{font-size:9px!important}
3061
- .brz .brz-fs-lg-10{font-size:10px!important}
3062
- .brz .brz-fs-lg-11{font-size:11px!important}
3063
- .brz .brz-fs-lg-12{font-size:12px!important}
3064
- .brz .brz-fs-lg-13{font-size:13px!important}
3065
- .brz .brz-fs-lg-14{font-size:14px!important}
3066
- .brz .brz-fs-lg-15{font-size:15px!important}
3067
- .brz .brz-fs-lg-16{font-size:16px!important}
3068
- .brz .brz-fs-lg-17{font-size:17px!important}
3069
- .brz .brz-fs-lg-18{font-size:18px!important}
3070
- .brz .brz-fs-lg-19{font-size:19px!important}
3071
- .brz .brz-fs-lg-20{font-size:20px!important}
3072
- .brz .brz-fs-lg-21{font-size:21px!important}
3073
- .brz .brz-fs-lg-22{font-size:22px!important}
3074
- .brz .brz-fs-lg-23{font-size:23px!important}
3075
- .brz .brz-fs-lg-24{font-size:24px!important}
3076
- .brz .brz-fs-lg-25{font-size:25px!important}
3077
- .brz .brz-fs-lg-26{font-size:26px!important}
3078
- .brz .brz-fs-lg-27{font-size:27px!important}
3079
- .brz .brz-fs-lg-28{font-size:28px!important}
3080
- .brz .brz-fs-lg-29{font-size:29px!important}
3081
- .brz .brz-fs-lg-30{font-size:30px!important}
3082
- .brz .brz-fs-lg-31{font-size:31px!important}
3083
- .brz .brz-fs-lg-32{font-size:32px!important}
3084
- .brz .brz-fs-lg-33{font-size:33px!important}
3085
- .brz .brz-fs-lg-34{font-size:34px!important}
3086
- .brz .brz-fs-lg-35{font-size:35px!important}
3087
- .brz .brz-fs-lg-36{font-size:36px!important}
3088
- .brz .brz-fs-lg-37{font-size:37px!important}
3089
- .brz .brz-fs-lg-38{font-size:38px!important}
3090
- .brz .brz-fs-lg-39{font-size:39px!important}
3091
- .brz .brz-fs-lg-40{font-size:40px!important}
3092
- .brz .brz-fs-lg-41{font-size:41px!important}
3093
- .brz .brz-fs-lg-42{font-size:42px!important}
3094
- .brz .brz-fs-lg-43{font-size:43px!important}
3095
- .brz .brz-fs-lg-44{font-size:44px!important}
3096
- .brz .brz-fs-lg-45{font-size:45px!important}
3097
- .brz .brz-fs-lg-46{font-size:46px!important}
3098
- .brz .brz-fs-lg-47{font-size:47px!important}
3099
- .brz .brz-fs-lg-48{font-size:48px!important}
3100
- .brz .brz-fs-lg-49{font-size:49px!important}
3101
- .brz .brz-fs-lg-50{font-size:50px!important}
3102
- .brz .brz-fs-lg-51{font-size:51px!important}
3103
- .brz .brz-fs-lg-52{font-size:52px!important}
3104
- .brz .brz-fs-lg-53{font-size:53px!important}
3105
- .brz .brz-fs-lg-54{font-size:54px!important}
3106
- .brz .brz-fs-lg-55{font-size:55px!important}
3107
- .brz .brz-fs-lg-56{font-size:56px!important}
3108
- .brz .brz-fs-lg-57{font-size:57px!important}
3109
- .brz .brz-fs-lg-58{font-size:58px!important}
3110
- .brz .brz-fs-lg-59{font-size:59px!important}
3111
- .brz .brz-fs-lg-60{font-size:60px!important}
3112
- .brz .brz-fs-lg-61{font-size:61px!important}
3113
- .brz .brz-fs-lg-62{font-size:62px!important}
3114
- .brz .brz-fs-lg-63{font-size:63px!important}
3115
- .brz .brz-fs-lg-64{font-size:64px!important}
3116
- .brz .brz-fs-lg-65{font-size:65px!important}
3117
- .brz .brz-fs-lg-66{font-size:66px!important}
3118
- .brz .brz-fs-lg-67{font-size:67px!important}
3119
- .brz .brz-fs-lg-68{font-size:68px!important}
3120
- .brz .brz-fs-lg-69{font-size:69px!important}
3121
- .brz .brz-fs-lg-70{font-size:70px!important}
3122
- .brz .brz-fs-lg-71{font-size:71px!important}
3123
- .brz .brz-fs-lg-72{font-size:72px!important}
3124
- .brz .brz-fs-lg-73{font-size:73px!important}
3125
- .brz .brz-fs-lg-74{font-size:74px!important}
3126
- .brz .brz-fs-lg-75{font-size:75px!important}
3127
- .brz .brz-fs-lg-76{font-size:76px!important}
3128
- .brz .brz-fs-lg-77{font-size:77px!important}
3129
- .brz .brz-fs-lg-78{font-size:78px!important}
3130
- .brz .brz-fs-lg-79{font-size:79px!important}
3131
- .brz .brz-fs-lg-80{font-size:80px!important}
3132
- .brz .brz-fs-lg-81{font-size:81px!important}
3133
- .brz .brz-fs-lg-82{font-size:82px!important}
3134
- .brz .brz-fs-lg-83{font-size:83px!important}
3135
- .brz .brz-fs-lg-84{font-size:84px!important}
3136
- .brz .brz-fs-lg-85{font-size:85px!important}
3137
- .brz .brz-fs-lg-86{font-size:86px!important}
3138
- .brz .brz-fs-lg-87{font-size:87px!important}
3139
- .brz .brz-fs-lg-88{font-size:88px!important}
3140
- .brz .brz-fs-lg-89{font-size:89px!important}
3141
- .brz .brz-fs-lg-90{font-size:90px!important}
3142
- .brz .brz-fs-lg-91{font-size:91px!important}
3143
- .brz .brz-fs-lg-92{font-size:92px!important}
3144
- .brz .brz-fs-lg-93{font-size:93px!important}
3145
- .brz .brz-fs-lg-94{font-size:94px!important}
3146
- .brz .brz-fs-lg-95{font-size:95px!important}
3147
- .brz .brz-fs-lg-96{font-size:96px!important}
3148
- .brz .brz-fs-lg-97{font-size:97px!important}
3149
- .brz .brz-fs-lg-98{font-size:98px!important}
3150
- .brz .brz-fs-lg-99{font-size:99px!important}
3151
- .brz .brz-fs-lg-100{font-size:100px!important}
3152
- .brz .brz-fs-lg-101{font-size:101px!important}
3153
- .brz .brz-fs-lg-102{font-size:102px!important}
3154
- .brz .brz-fs-lg-103{font-size:103px!important}
3155
- .brz .brz-fs-lg-104{font-size:104px!important}
3156
- .brz .brz-fs-lg-105{font-size:105px!important}
3157
- .brz .brz-fs-lg-106{font-size:106px!important}
3158
- .brz .brz-fs-lg-107{font-size:107px!important}
3159
- .brz .brz-fs-lg-108{font-size:108px!important}
3160
- .brz .brz-fs-lg-109{font-size:109px!important}
3161
- .brz .brz-fs-lg-110{font-size:110px!important}
3162
- .brz .brz-fs-lg-111{font-size:111px!important}
3163
- .brz .brz-fs-lg-112{font-size:112px!important}
3164
- .brz .brz-fs-lg-113{font-size:113px!important}
3165
- .brz .brz-fs-lg-114{font-size:114px!important}
3166
- .brz .brz-fs-lg-115{font-size:115px!important}
3167
- .brz .brz-fs-lg-116{font-size:116px!important}
3168
- .brz .brz-fs-lg-117{font-size:117px!important}
3169
- .brz .brz-fs-lg-118{font-size:118px!important}
3170
- .brz .brz-fs-lg-119{font-size:119px!important}
3171
- .brz .brz-fs-lg-120{font-size:120px!important}
3172
- .brz .brz-fs-lg-121{font-size:121px!important}
3173
- .brz .brz-fs-lg-122{font-size:122px!important}
3174
- .brz .brz-fs-lg-123{font-size:123px!important}
3175
- .brz .brz-fs-lg-124{font-size:124px!important}
3176
- .brz .brz-fs-lg-125{font-size:125px!important}
3177
- .brz .brz-fs-lg-126{font-size:126px!important}
3178
- .brz .brz-fs-lg-127{font-size:127px!important}
3179
- .brz .brz-fs-lg-128{font-size:128px!important}
3180
- .brz .brz-fs-lg-129{font-size:129px!important}
3181
- .brz .brz-fs-lg-130{font-size:130px!important}
3182
- .brz .brz-fs-lg-131{font-size:131px!important}
3183
- .brz .brz-fs-lg-132{font-size:132px!important}
3184
- .brz .brz-fs-lg-133{font-size:133px!important}
3185
- .brz .brz-fs-lg-134{font-size:134px!important}
3186
- .brz .brz-fs-lg-135{font-size:135px!important}
3187
- .brz .brz-fs-lg-136{font-size:136px!important}
3188
- .brz .brz-fs-lg-137{font-size:137px!important}
3189
- .brz .brz-fs-lg-138{font-size:138px!important}
3190
- .brz .brz-fs-lg-139{font-size:139px!important}
3191
- .brz .brz-fs-lg-140{font-size:140px!important}
3192
- .brz .brz-fs-lg-141{font-size:141px!important}
3193
- .brz .brz-fs-lg-142{font-size:142px!important}
3194
- .brz .brz-fs-lg-143{font-size:143px!important}
3195
- .brz .brz-fs-lg-144{font-size:144px!important}
3196
- .brz .brz-fs-lg-145{font-size:145px!important}
3197
- .brz .brz-fs-lg-146{font-size:146px!important}
3198
- .brz .brz-fs-lg-147{font-size:147px!important}
3199
- .brz .brz-fs-lg-148{font-size:148px!important}
3200
- .brz .brz-fs-lg-149{font-size:149px!important}
3201
- .brz .brz-fs-lg-150{font-size:150px!important}
3202
- .brz .brz-fs-lg-151{font-size:151px!important}
3203
- .brz .brz-fs-lg-152{font-size:152px!important}
3204
- .brz .brz-fs-lg-153{font-size:153px!important}
3205
- .brz .brz-fs-lg-154{font-size:154px!important}
3206
- .brz .brz-fs-lg-155{font-size:155px!important}
3207
- .brz .brz-fs-lg-156{font-size:156px!important}
3208
- .brz .brz-fs-lg-157{font-size:157px!important}
3209
- .brz .brz-fs-lg-158{font-size:158px!important}
3210
- .brz .brz-fs-lg-159{font-size:159px!important}
3211
- .brz .brz-fs-lg-160{font-size:160px!important}
3212
- .brz .brz-fs-lg-161{font-size:161px!important}
3213
- .brz .brz-fs-lg-162{font-size:162px!important}
3214
- .brz .brz-fs-lg-163{font-size:163px!important}
3215
- .brz .brz-fs-lg-164{font-size:164px!important}
3216
- .brz .brz-fs-lg-165{font-size:165px!important}
3217
- .brz .brz-fs-lg-166{font-size:166px!important}
3218
- .brz .brz-fs-lg-167{font-size:167px!important}
3219
- .brz .brz-fs-lg-168{font-size:168px!important}
3220
- .brz .brz-fs-lg-169{font-size:169px!important}
3221
- .brz .brz-fs-lg-170{font-size:170px!important}
3222
- .brz .brz-fs-lg-171{font-size:171px!important}
3223
- .brz .brz-fs-lg-172{font-size:172px!important}
3224
- .brz .brz-fs-lg-173{font-size:173px!important}
3225
- .brz .brz-fs-lg-174{font-size:174px!important}
3226
- .brz .brz-fs-lg-175{font-size:175px!important}
3227
- .brz .brz-fs-lg-176{font-size:176px!important}
3228
- .brz .brz-fs-lg-177{font-size:177px!important}
3229
- .brz .brz-fs-lg-178{font-size:178px!important}
3230
- .brz .brz-fs-lg-179{font-size:179px!important}
3231
- .brz .brz-fs-lg-180{font-size:180px!important}
3232
- .brz .brz-fs-lg-181{font-size:181px!important}
3233
- .brz .brz-fs-lg-182{font-size:182px!important}
3234
- .brz .brz-fs-lg-183{font-size:183px!important}
3235
- .brz .brz-fs-lg-184{font-size:184px!important}
3236
- .brz .brz-fs-lg-185{font-size:185px!important}
3237
- .brz .brz-fs-lg-186{font-size:186px!important}
3238
- .brz .brz-fs-lg-187{font-size:187px!important}
3239
- .brz .brz-fs-lg-188{font-size:188px!important}
3240
- .brz .brz-fs-lg-189{font-size:189px!important}
3241
- .brz .brz-fs-lg-190{font-size:190px!important}
3242
- .brz .brz-fs-lg-191{font-size:191px!important}
3243
- .brz .brz-fs-lg-192{font-size:192px!important}
3244
- .brz .brz-fs-lg-193{font-size:193px!important}
3245
- .brz .brz-fs-lg-194{font-size:194px!important}
3246
- .brz .brz-fs-lg-195{font-size:195px!important}
3247
- .brz .brz-fs-lg-196{font-size:196px!important}
3248
- .brz .brz-fs-lg-197{font-size:197px!important}
3249
- .brz .brz-fs-lg-198{font-size:198px!important}
3250
- .brz .brz-fs-lg-199{font-size:199px!important}
3251
- .brz .brz-fs-lg-200{font-size:200px!important}
3252
- .brz .brz-fs-lg-201{font-size:201px!important}
3253
- .brz .brz-fs-lg-202{font-size:202px!important}
3254
- .brz .brz-fs-lg-203{font-size:203px!important}
3255
- .brz .brz-fs-lg-204{font-size:204px!important}
3256
- .brz .brz-fs-lg-205{font-size:205px!important}
3257
- .brz .brz-fs-lg-206{font-size:206px!important}
3258
- .brz .brz-fs-lg-207{font-size:207px!important}
3259
- .brz .brz-fs-lg-208{font-size:208px!important}
3260
- .brz .brz-fs-lg-209{font-size:209px!important}
3261
- .brz .brz-fs-lg-210{font-size:210px!important}
3262
- .brz .brz-fs-lg-211{font-size:211px!important}
3263
- .brz .brz-fs-lg-212{font-size:212px!important}
3264
- .brz .brz-fs-lg-213{font-size:213px!important}
3265
- .brz .brz-fs-lg-214{font-size:214px!important}
3266
- .brz .brz-fs-lg-215{font-size:215px!important}
3267
- .brz .brz-fs-lg-216{font-size:216px!important}
3268
- .brz .brz-fs-lg-217{font-size:217px!important}
3269
- .brz .brz-fs-lg-218{font-size:218px!important}
3270
- .brz .brz-fs-lg-219{font-size:219px!important}
3271
- .brz .brz-fs-lg-220{font-size:220px!important}
3272
- .brz .brz-fs-lg-221{font-size:221px!important}
3273
- .brz .brz-fs-lg-222{font-size:222px!important}
3274
- .brz .brz-fs-lg-223{font-size:223px!important}
3275
- .brz .brz-fs-lg-224{font-size:224px!important}
3276
- .brz .brz-fs-lg-225{font-size:225px!important}
3277
- .brz .brz-fs-lg-226{font-size:226px!important}
3278
- .brz .brz-fs-lg-227{font-size:227px!important}
3279
- .brz .brz-fs-lg-228{font-size:228px!important}
3280
- .brz .brz-fs-lg-229{font-size:229px!important}
3281
- .brz .brz-fs-lg-230{font-size:230px!important}
3282
- .brz .brz-fs-lg-231{font-size:231px!important}
3283
- .brz .brz-fs-lg-232{font-size:232px!important}
3284
- .brz .brz-fs-lg-233{font-size:233px!important}
3285
- .brz .brz-fs-lg-234{font-size:234px!important}
3286
- .brz .brz-fs-lg-235{font-size:235px!important}
3287
- .brz .brz-fs-lg-236{font-size:236px!important}
3288
- .brz .brz-fs-lg-237{font-size:237px!important}
3289
- .brz .brz-fs-lg-238{font-size:238px!important}
3290
- .brz .brz-fs-lg-239{font-size:239px!important}
3291
- .brz .brz-fs-lg-240{font-size:240px!important}
3292
- .brz .brz-fs-lg-241{font-size:241px!important}
3293
- .brz .brz-fs-lg-242{font-size:242px!important}
3294
- .brz .brz-fs-lg-243{font-size:243px!important}
3295
- .brz .brz-fs-lg-244{font-size:244px!important}
3296
- .brz .brz-fs-lg-245{font-size:245px!important}
3297
- .brz .brz-fs-lg-246{font-size:246px!important}
3298
- .brz .brz-fs-lg-247{font-size:247px!important}
3299
- .brz .brz-fs-lg-248{font-size:248px!important}
3300
- .brz .brz-fs-lg-249{font-size:249px!important}
3301
- .brz .brz-fs-lg-250{font-size:250px!important}
3302
- .brz .brz-fs-lg-251{font-size:251px!important}
3303
- .brz .brz-fs-lg-252{font-size:252px!important}
3304
- .brz .brz-fs-lg-253{font-size:253px!important}
3305
- .brz .brz-fs-lg-254{font-size:254px!important}
3306
- .brz .brz-fs-lg-255{font-size:255px!important}
3307
- .brz .brz-fs-lg-256{font-size:256px!important}
3308
- .brz .brz-fs-lg-257{font-size:257px!important}
3309
- .brz .brz-fs-lg-258{font-size:258px!important}
3310
- .brz .brz-fs-lg-259{font-size:259px!important}
3311
- .brz .brz-fs-lg-260{font-size:260px!important}
3312
- .brz .brz-fs-lg-261{font-size:261px!important}
3313
- .brz .brz-fs-lg-262{font-size:262px!important}
3314
- .brz .brz-fs-lg-263{font-size:263px!important}
3315
- .brz .brz-fs-lg-264{font-size:264px!important}
3316
- .brz .brz-fs-lg-265{font-size:265px!important}
3317
- .brz .brz-fs-lg-266{font-size:266px!important}
3318
- .brz .brz-fs-lg-267{font-size:267px!important}
3319
- .brz .brz-fs-lg-268{font-size:268px!important}
3320
- .brz .brz-fs-lg-269{font-size:269px!important}
3321
- .brz .brz-fs-lg-270{font-size:270px!important}
3322
- .brz .brz-fs-lg-271{font-size:271px!important}
3323
- .brz .brz-fs-lg-272{font-size:272px!important}
3324
- .brz .brz-fs-lg-273{font-size:273px!important}
3325
- .brz .brz-fs-lg-274{font-size:274px!important}
3326
- .brz .brz-fs-lg-275{font-size:275px!important}
3327
- .brz .brz-fs-lg-276{font-size:276px!important}
3328
- .brz .brz-fs-lg-277{font-size:277px!important}
3329
- .brz .brz-fs-lg-278{font-size:278px!important}
3330
- .brz .brz-fs-lg-279{font-size:279px!important}
3331
- .brz .brz-fs-lg-280{font-size:280px!important}
3332
- .brz .brz-fs-lg-281{font-size:281px!important}
3333
- .brz .brz-fs-lg-282{font-size:282px!important}
3334
- .brz .brz-fs-lg-283{font-size:283px!important}
3335
- .brz .brz-fs-lg-284{font-size:284px!important}
3336
- .brz .brz-fs-lg-285{font-size:285px!important}
3337
- .brz .brz-fs-lg-286{font-size:286px!important}
3338
- .brz .brz-fs-lg-287{font-size:287px!important}
3339
- .brz .brz-fs-lg-288{font-size:288px!important}
3340
- .brz .brz-fs-lg-289{font-size:289px!important}
3341
- .brz .brz-fs-lg-290{font-size:290px!important}
3342
- .brz .brz-fs-lg-291{font-size:291px!important}
3343
- .brz .brz-fs-lg-292{font-size:292px!important}
3344
- .brz .brz-fs-lg-293{font-size:293px!important}
3345
- .brz .brz-fs-lg-294{font-size:294px!important}
3346
- .brz .brz-fs-lg-295{font-size:295px!important}
3347
- .brz .brz-fs-lg-296{font-size:296px!important}
3348
- .brz .brz-fs-lg-297{font-size:297px!important}
3349
- .brz .brz-fs-lg-298{font-size:298px!important}
3350
- .brz .brz-fs-lg-299{font-size:299px!important}
3351
- .brz .brz-fs-lg-300{font-size:300px!important}
3352
- .brz .brz-lh-lg-1{line-height:1em!important}
3353
- .brz .brz-lh-lg-1_1{line-height:1.1em!important}
3354
- .brz .brz-lh-lg-1_2{line-height:1.2em!important}
3355
- .brz .brz-lh-lg-1_3{line-height:1.3em!important}
3356
- .brz .brz-lh-lg-1_4{line-height:1.4em!important}
3357
- .brz .brz-lh-lg-1_5{line-height:1.5em!important}
3358
- .brz .brz-lh-lg-1_6{line-height:1.6em!important}
3359
- .brz .brz-lh-lg-1_7{line-height:1.7em!important}
3360
- .brz .brz-lh-lg-1_8{line-height:1.8em!important}
3361
- .brz .brz-lh-lg-1_9{line-height:1.9em!important}
3362
- .brz .brz-lh-lg-2{line-height:2em!important}
3363
- .brz .brz-lh-lg-2_1{line-height:2.1em!important}
3364
- .brz .brz-lh-lg-2_2{line-height:2.2em!important}
3365
- .brz .brz-lh-lg-2_3{line-height:2.3em!important}
3366
- .brz .brz-lh-lg-2_4{line-height:2.4em!important}
3367
- .brz .brz-lh-lg-2_5{line-height:2.5em!important}
3368
- .brz .brz-lh-lg-2_6{line-height:2.6em!important}
3369
- .brz .brz-lh-lg-2_7{line-height:2.7em!important}
3370
- .brz .brz-lh-lg-2_8{line-height:2.8em!important}
3371
- .brz .brz-lh-lg-2_9{line-height:2.9em!important}
3372
- .brz .brz-lh-lg-3{line-height:3em!important}
3373
- .brz .brz-lh-lg-3_1{line-height:3.1em!important}
3374
- .brz .brz-lh-lg-3_2{line-height:3.2em!important}
3375
- .brz .brz-lh-lg-3_3{line-height:3.3em!important}
3376
- .brz .brz-lh-lg-3_4{line-height:3.4em!important}
3377
- .brz .brz-lh-lg-3_5{line-height:3.5em!important}
3378
- .brz .brz-lh-lg-3_6{line-height:3.6em!important}
3379
- .brz .brz-lh-lg-3_7{line-height:3.7em!important}
3380
- .brz .brz-lh-lg-3_8{line-height:3.8em!important}
3381
- .brz .brz-lh-lg-3_9{line-height:3.9em!important}
3382
- .brz .brz-lh-lg-4{line-height:4em!important}
3383
- .brz .brz-lh-lg-4_1{line-height:4.1em!important}
3384
- .brz .brz-lh-lg-4_2{line-height:4.2em!important}
3385
- .brz .brz-lh-lg-4_3{line-height:4.3em!important}
3386
- .brz .brz-lh-lg-4_4{line-height:4.4em!important}
3387
- .brz .brz-lh-lg-4_5{line-height:4.5em!important}
3388
- .brz .brz-lh-lg-4_6{line-height:4.6em!important}
3389
- .brz .brz-lh-lg-4_7{line-height:4.7em!important}
3390
- .brz .brz-lh-lg-4_8{line-height:4.8em!important}
3391
- .brz .brz-lh-lg-4_9{line-height:4.9em!important}
3392
- .brz .brz-lh-lg-5{line-height:5em!important}
3393
- .brz .brz-lh-lg-5_1{line-height:5.1em!important}
3394
- .brz .brz-lh-lg-5_2{line-height:5.2em!important}
3395
- .brz .brz-lh-lg-5_3{line-height:5.3em!important}
3396
- .brz .brz-lh-lg-5_4{line-height:5.4em!important}
3397
- .brz .brz-lh-lg-5_5{line-height:5.5em!important}
3398
- .brz .brz-lh-lg-5_6{line-height:5.6em!important}
3399
- .brz .brz-lh-lg-5_7{line-height:5.7em!important}
3400
- .brz .brz-lh-lg-5_8{line-height:5.8em!important}
3401
- .brz .brz-lh-lg-5_9{line-height:5.9em!important}
3402
- .brz .brz-ls-lg-m_5{letter-spacing:-5px!important}
3403
- .brz .brz-ls-lg-m_5_5{letter-spacing:-5.5px!important}
3404
- .brz .brz-ls-lg-m_4{letter-spacing:-4px!important}
3405
- .brz .brz-ls-lg-m_4_5{letter-spacing:-4.5px!important}
3406
- .brz .brz-ls-lg-m_3{letter-spacing:-3px!important}
3407
- .brz .brz-ls-lg-m_3_5{letter-spacing:-3.5px!important}
3408
- .brz .brz-ls-lg-m_2{letter-spacing:-2px!important}
3409
- .brz .brz-ls-lg-m_2_5{letter-spacing:-2.5px!important}
3410
- .brz .brz-ls-lg-m_1{letter-spacing:-1px!important}
3411
- .brz .brz-ls-lg-m_1_5{letter-spacing:-1.5px!important}
3412
- .brz .brz-ls-lg-m_0{letter-spacing:0!important}
3413
- .brz .brz-ls-lg-m_0_5{letter-spacing:-.5px!important}
3414
- .brz .brz-ls-lg-0{letter-spacing:0!important}
3415
- .brz .brz-ls-lg-0_5{letter-spacing:.5px!important}
3416
- .brz .brz-ls-lg-1{letter-spacing:1px!important}
3417
- .brz .brz-ls-lg-1_5{letter-spacing:1.5px!important}
3418
- .brz .brz-ls-lg-2{letter-spacing:2px!important}
3419
- .brz .brz-ls-lg-2_5{letter-spacing:2.5px!important}
3420
- .brz .brz-ls-lg-3{letter-spacing:3px!important}
3421
- .brz .brz-ls-lg-3_5{letter-spacing:3.5px!important}
3422
- .brz .brz-ls-lg-4{letter-spacing:4px!important}
3423
- .brz .brz-ls-lg-4_5{letter-spacing:4.5px!important}
3424
- .brz .brz-ls-lg-5{letter-spacing:5px!important}
3425
- .brz .brz-ls-lg-5_5{letter-spacing:5.5px!important}
3426
- .brz .brz-ls-lg-6{letter-spacing:6px!important}
3427
- .brz .brz-ls-lg-6_5{letter-spacing:6.5px!important}
3428
- .brz .brz-ls-lg-7{letter-spacing:7px!important}
3429
- .brz .brz-ls-lg-7_5{letter-spacing:7.5px!important}
3430
- .brz .brz-ls-lg-8{letter-spacing:8px!important}
3431
- .brz .brz-ls-lg-8_5{letter-spacing:8.5px!important}
3432
- .brz .brz-ls-lg-9{letter-spacing:9px!important}
3433
- .brz .brz-ls-lg-9_5{letter-spacing:9.5px!important}
3434
- .brz .brz-ls-lg-10{letter-spacing:10px!important}
3435
- .brz .brz-ls-lg-10_5{letter-spacing:10.5px!important}
3436
- .brz .brz-ls-lg-11{letter-spacing:11px!important}
3437
- .brz .brz-ls-lg-11_5{letter-spacing:11.5px!important}
3438
- .brz .brz-ls-lg-12{letter-spacing:12px!important}
3439
- .brz .brz-ls-lg-12_5{letter-spacing:12.5px!important}
3440
- .brz .brz-ls-lg-13{letter-spacing:13px!important}
3441
- .brz .brz-ls-lg-13_5{letter-spacing:13.5px!important}
3442
- .brz .brz-ls-lg-14{letter-spacing:14px!important}
3443
- .brz .brz-ls-lg-14_5{letter-spacing:14.5px!important}
3444
- .brz .brz-ls-lg-15{letter-spacing:15px!important}
3445
- .brz .brz-ls-lg-15_5{letter-spacing:15.5px!important}
3446
- .brz .brz-fw-lg-100{font-weight:100!important}
3447
- .brz .brz-fw-lg-200{font-weight:200!important}
3448
- .brz .brz-fw-lg-300{font-weight:300!important}
3449
- .brz .brz-fw-lg-400{font-weight:400!important}
3450
- .brz .brz-fw-lg-500{font-weight:500!important}
3451
- .brz .brz-fw-lg-600{font-weight:600!important}
3452
- .brz .brz-fw-lg-700{font-weight:700!important}
3453
- .brz .brz-fw-lg-800{font-weight:800!important}
3454
- .brz .brz-fw-lg-900{font-weight:900!important}
3455
- .brz .brz-fw-lg-1000{font-weight:1000!important}
3456
- .brz .brz-fw-lg-1100{font-weight:1100!important}
3457
- .brz .brz-fw-lg-1200{font-weight:1200!important}
3458
- .brz .brz-fw-lg-1300{font-weight:1300!important}
3459
- .brz .brz-fw-lg-1400{font-weight:1400!important}
3460
- .brz .brz-fw-lg-1500{font-weight:1500!important}}.brz .brz-mt-lg-0{margin-top:0!important}
3461
- .brz .brz-mt-lg-1{margin-top:1px!important}
3462
- .brz .brz-mt-lg-2{margin-top:2px!important}
3463
- .brz .brz-mt-lg-3{margin-top:3px!important}
3464
- .brz .brz-mt-lg-4{margin-top:4px!important}
3465
- .brz .brz-mt-lg-5{margin-top:5px!important}
3466
- .brz .brz-mt-lg-6{margin-top:6px!important}
3467
- .brz .brz-mt-lg-7{margin-top:7px!important}
3468
- .brz .brz-mt-lg-8{margin-top:8px!important}
3469
- .brz .brz-mt-lg-9{margin-top:9px!important}
3470
- .brz .brz-mt-lg-10{margin-top:10px!important}
3471
- .brz .brz-mt-lg-11{margin-top:11px!important}
3472
- .brz .brz-mt-lg-12{margin-top:12px!important}
3473
- .brz .brz-mt-lg-13{margin-top:13px!important}
3474
- .brz .brz-mt-lg-14{margin-top:14px!important}
3475
- .brz .brz-mt-lg-15{margin-top:15px!important}
3476
- .brz .brz-mt-lg-16{margin-top:16px!important}
3477
- .brz .brz-mt-lg-17{margin-top:17px!important}
3478
- .brz .brz-mt-lg-18{margin-top:18px!important}
3479
- .brz .brz-mt-lg-19{margin-top:19px!important}
3480
- .brz .brz-mt-lg-20{margin-top:20px!important}
3481
- .brz .brz-mt-lg-21{margin-top:21px!important}
3482
- .brz .brz-mt-lg-22{margin-top:22px!important}
3483
- .brz .brz-mt-lg-23{margin-top:23px!important}
3484
- .brz .brz-mt-lg-24{margin-top:24px!important}
3485
- .brz .brz-mt-lg-25{margin-top:25px!important}
3486
- .brz .brz-mt-lg-26{margin-top:26px!important}
3487
- .brz .brz-mt-lg-27{margin-top:27px!important}
3488
- .brz .brz-mt-lg-28{margin-top:28px!important}
3489
- .brz .brz-mt-lg-29{margin-top:29px!important}
3490
- .brz .brz-mt-lg-30{margin-top:30px!important}
3491
- .brz .brz-mt-lg-31{margin-top:31px!important}
3492
- .brz .brz-mt-lg-32{margin-top:32px!important}
3493
- .brz .brz-mt-lg-33{margin-top:33px!important}
3494
- .brz .brz-mt-lg-34{margin-top:34px!important}
3495
- .brz .brz-mt-lg-35{margin-top:35px!important}
3496
- .brz .brz-mt-lg-36{margin-top:36px!important}
3497
- .brz .brz-mt-lg-37{margin-top:37px!important}
3498
- .brz .brz-mt-lg-38{margin-top:38px!important}
3499
- .brz .brz-mt-lg-39{margin-top:39px!important}
3500
- .brz .brz-mt-lg-40{margin-top:40px!important}
3501
- .brz .brz-mt-lg-41{margin-top:41px!important}
3502
- .brz .brz-mt-lg-42{margin-top:42px!important}
3503
- .brz .brz-mt-lg-43{margin-top:43px!important}
3504
- .brz .brz-mt-lg-44{margin-top:44px!important}
3505
- .brz .brz-mt-lg-45{margin-top:45px!important}
3506
- .brz .brz-mt-lg-46{margin-top:46px!important}
3507
- .brz .brz-mt-lg-47{margin-top:47px!important}
3508
- .brz .brz-mt-lg-48{margin-top:48px!important}
3509
- .brz .brz-mt-lg-49{margin-top:49px!important}
3510
- .brz .brz-mt-lg-50{margin-top:50px!important}
3511
- .brz .brz-mt-lg-51{margin-top:51px!important}
3512
- .brz .brz-mt-lg-52{margin-top:52px!important}
3513
- .brz .brz-mt-lg-53{margin-top:53px!important}
3514
- .brz .brz-mt-lg-54{margin-top:54px!important}
3515
- .brz .brz-mt-lg-55{margin-top:55px!important}
3516
- .brz .brz-mt-lg-56{margin-top:56px!important}
3517
- .brz .brz-mt-lg-57{margin-top:57px!important}
3518
- .brz .brz-mt-lg-58{margin-top:58px!important}
3519
- .brz .brz-mt-lg-59{margin-top:59px!important}
3520
- .brz .brz-mt-lg-60{margin-top:60px!important}
3521
- .brz .brz-mt-lg-61{margin-top:61px!important}
3522
- .brz .brz-mt-lg-62{margin-top:62px!important}
3523
- .brz .brz-mt-lg-63{margin-top:63px!important}
3524
- .brz .brz-mt-lg-64{margin-top:64px!important}
3525
- .brz .brz-mt-lg-65{margin-top:65px!important}
3526
- .brz .brz-mt-lg-66{margin-top:66px!important}
3527
- .brz .brz-mt-lg-67{margin-top:67px!important}
3528
- .brz .brz-mt-lg-68{margin-top:68px!important}
3529
- .brz .brz-mt-lg-69{margin-top:69px!important}
3530
- .brz .brz-mt-lg-70{margin-top:70px!important}
3531
- .brz .brz-mt-lg-71{margin-top:71px!important}
3532
- .brz .brz-mt-lg-72{margin-top:72px!important}
3533
- .brz .brz-mt-lg-73{margin-top:73px!important}
3534
- .brz .brz-mt-lg-74{margin-top:74px!important}
3535
- .brz .brz-mt-lg-75{margin-top:75px!important}
3536
- .brz .brz-mt-lg-76{margin-top:76px!important}
3537
- .brz .brz-mt-lg-77{margin-top:77px!important}
3538
- .brz .brz-mt-lg-78{margin-top:78px!important}
3539
- .brz .brz-mt-lg-79{margin-top:79px!important}
3540
- .brz .brz-mt-lg-80{margin-top:80px!important}
3541
- .brz .brz-mt-lg-81{margin-top:81px!important}
3542
- .brz .brz-mt-lg-82{margin-top:82px!important}
3543
- .brz .brz-mt-lg-83{margin-top:83px!important}
3544
- .brz .brz-mt-lg-84{margin-top:84px!important}
3545
- .brz .brz-mt-lg-85{margin-top:85px!important}
3546
- .brz .brz-mt-lg-86{margin-top:86px!important}
3547
- .brz .brz-mt-lg-87{margin-top:87px!important}
3548
- .brz .brz-mt-lg-88{margin-top:88px!important}
3549
- .brz .brz-mt-lg-89{margin-top:89px!important}
3550
- .brz .brz-mt-lg-90{margin-top:90px!important}
3551
- .brz .brz-mt-lg-91{margin-top:91px!important}
3552
- .brz .brz-mt-lg-92{margin-top:92px!important}
3553
- .brz .brz-mt-lg-93{margin-top:93px!important}
3554
- .brz .brz-mt-lg-94{margin-top:94px!important}
3555
- .brz .brz-mt-lg-95{margin-top:95px!important}
3556
- .brz .brz-mt-lg-96{margin-top:96px!important}
3557
- .brz .brz-mt-lg-97{margin-top:97px!important}
3558
- .brz .brz-mt-lg-98{margin-top:98px!important}
3559
- .brz .brz-mt-lg-99{margin-top:99px!important}
3560
- .brz .brz-mt-lg-100{margin-top:100px!important}
3561
- .brz .brz-mb-lg-0{margin-bottom:0!important}
3562
- .brz .brz-mb-lg-1{margin-bottom:1px!important}
3563
- .brz .brz-mb-lg-2{margin-bottom:2px!important}
3564
- .brz .brz-mb-lg-3{margin-bottom:3px!important}
3565
- .brz .brz-mb-lg-4{margin-bottom:4px!important}
3566
- .brz .brz-mb-lg-5{margin-bottom:5px!important}
3567
- .brz .brz-mb-lg-6{margin-bottom:6px!important}
3568
- .brz .brz-mb-lg-7{margin-bottom:7px!important}
3569
- .brz .brz-mb-lg-8{margin-bottom:8px!important}
3570
- .brz .brz-mb-lg-9{margin-bottom:9px!important}
3571
- .brz .brz-mb-lg-10{margin-bottom:10px!important}
3572
- .brz .brz-mb-lg-11{margin-bottom:11px!important}
3573
- .brz .brz-mb-lg-12{margin-bottom:12px!important}
3574
- .brz .brz-mb-lg-13{margin-bottom:13px!important}
3575
- .brz .brz-mb-lg-14{margin-bottom:14px!important}
3576
- .brz .brz-mb-lg-15{margin-bottom:15px!important}
3577
- .brz .brz-mb-lg-16{margin-bottom:16px!important}
3578
- .brz .brz-mb-lg-17{margin-bottom:17px!important}
3579
- .brz .brz-mb-lg-18{margin-bottom:18px!important}
3580
- .brz .brz-mb-lg-19{margin-bottom:19px!important}
3581
- .brz .brz-mb-lg-20{margin-bottom:20px!important}
3582
- .brz .brz-mb-lg-21{margin-bottom:21px!important}
3583
- .brz .brz-mb-lg-22{margin-bottom:22px!important}
3584
- .brz .brz-mb-lg-23{margin-bottom:23px!important}
3585
- .brz .brz-mb-lg-24{margin-bottom:24px!important}
3586
- .brz .brz-mb-lg-25{margin-bottom:25px!important}
3587
- .brz .brz-mb-lg-26{margin-bottom:26px!important}
3588
- .brz .brz-mb-lg-27{margin-bottom:27px!important}
3589
- .brz .brz-mb-lg-28{margin-bottom:28px!important}
3590
- .brz .brz-mb-lg-29{margin-bottom:29px!important}
3591
- .brz .brz-mb-lg-30{margin-bottom:30px!important}
3592
- .brz .brz-mb-lg-31{margin-bottom:31px!important}
3593
- .brz .brz-mb-lg-32{margin-bottom:32px!important}
3594
- .brz .brz-mb-lg-33{margin-bottom:33px!important}
3595
- .brz .brz-mb-lg-34{margin-bottom:34px!important}
3596
- .brz .brz-mb-lg-35{margin-bottom:35px!important}
3597
- .brz .brz-mb-lg-36{margin-bottom:36px!important}
3598
- .brz .brz-mb-lg-37{margin-bottom:37px!important}
3599
- .brz .brz-mb-lg-38{margin-bottom:38px!important}
3600
- .brz .brz-mb-lg-39{margin-bottom:39px!important}
3601
- .brz .brz-mb-lg-40{margin-bottom:40px!important}
3602
- .brz .brz-mb-lg-41{margin-bottom:41px!important}
3603
- .brz .brz-mb-lg-42{margin-bottom:42px!important}
3604
- .brz .brz-mb-lg-43{margin-bottom:43px!important}
3605
- .brz .brz-mb-lg-44{margin-bottom:44px!important}
3606
- .brz .brz-mb-lg-45{margin-bottom:45px!important}
3607
- .brz .brz-mb-lg-46{margin-bottom:46px!important}
3608
- .brz .brz-mb-lg-47{margin-bottom:47px!important}
3609
- .brz .brz-mb-lg-48{margin-bottom:48px!important}
3610
- .brz .brz-mb-lg-49{margin-bottom:49px!important}
3611
- .brz .brz-mb-lg-50{margin-bottom:50px!important}
3612
- .brz .brz-mb-lg-51{margin-bottom:51px!important}
3613
- .brz .brz-mb-lg-52{margin-bottom:52px!important}
3614
- .brz .brz-mb-lg-53{margin-bottom:53px!important}
3615
- .brz .brz-mb-lg-54{margin-bottom:54px!important}
3616
- .brz .brz-mb-lg-55{margin-bottom:55px!important}
3617
- .brz .brz-mb-lg-56{margin-bottom:56px!important}
3618
- .brz .brz-mb-lg-57{margin-bottom:57px!important}
3619
- .brz .brz-mb-lg-58{margin-bottom:58px!important}
3620
- .brz .brz-mb-lg-59{margin-bottom:59px!important}
3621
- .brz .brz-mb-lg-60{margin-bottom:60px!important}
3622
- .brz .brz-mb-lg-61{margin-bottom:61px!important}
3623
- .brz .brz-mb-lg-62{margin-bottom:62px!important}
3624
- .brz .brz-mb-lg-63{margin-bottom:63px!important}
3625
- .brz .brz-mb-lg-64{margin-bottom:64px!important}
3626
- .brz .brz-mb-lg-65{margin-bottom:65px!important}
3627
- .brz .brz-mb-lg-66{margin-bottom:66px!important}
3628
- .brz .brz-mb-lg-67{margin-bottom:67px!important}
3629
- .brz .brz-mb-lg-68{margin-bottom:68px!important}
3630
- .brz .brz-mb-lg-69{margin-bottom:69px!important}
3631
- .brz .brz-mb-lg-70{margin-bottom:70px!important}
3632
- .brz .brz-mb-lg-71{margin-bottom:71px!important}
3633
- .brz .brz-mb-lg-72{margin-bottom:72px!important}
3634
- .brz .brz-mb-lg-73{margin-bottom:73px!important}
3635
- .brz .brz-mb-lg-74{margin-bottom:74px!important}
3636
- .brz .brz-mb-lg-75{margin-bottom:75px!important}
3637
- .brz .brz-mb-lg-76{margin-bottom:76px!important}
3638
- .brz .brz-mb-lg-77{margin-bottom:77px!important}
3639
- .brz .brz-mb-lg-78{margin-bottom:78px!important}
3640
- .brz .brz-mb-lg-79{margin-bottom:79px!important}
3641
- .brz .brz-mb-lg-80{margin-bottom:80px!important}
3642
- .brz .brz-mb-lg-81{margin-bottom:81px!important}
3643
- .brz .brz-mb-lg-82{margin-bottom:82px!important}
3644
- .brz .brz-mb-lg-83{margin-bottom:83px!important}
3645
- .brz .brz-mb-lg-84{margin-bottom:84px!important}
3646
- .brz .brz-mb-lg-85{margin-bottom:85px!important}
3647
- .brz .brz-mb-lg-86{margin-bottom:86px!important}
3648
- .brz .brz-mb-lg-87{margin-bottom:87px!important}
3649
- .brz .brz-mb-lg-88{margin-bottom:88px!important}
3650
- .brz .brz-mb-lg-89{margin-bottom:89px!important}
3651
- .brz .brz-mb-lg-90{margin-bottom:90px!important}
3652
- .brz .brz-mb-lg-91{margin-bottom:91px!important}
3653
- .brz .brz-mb-lg-92{margin-bottom:92px!important}
3654
- .brz .brz-mb-lg-93{margin-bottom:93px!important}
3655
- .brz .brz-mb-lg-94{margin-bottom:94px!important}
3656
- .brz .brz-mb-lg-95{margin-bottom:95px!important}
3657
- .brz .brz-mb-lg-96{margin-bottom:96px!important}
3658
- .brz .brz-mb-lg-97{margin-bottom:97px!important}
3659
- .brz .brz-mb-lg-98{margin-bottom:98px!important}
3660
- .brz .brz-mb-lg-99{margin-bottom:99px!important}
3661
- .brz .brz-mb-lg-100{margin-bottom:100px!important}
3662
- @media (min-width:768px) and (max-width:991px){.brz .brz-mt-sm-0{margin-top:0!important}
3663
- .brz .brz-mt-sm-1{margin-top:1px!important}
3664
- .brz .brz-mt-sm-2{margin-top:2px!important}
3665
- .brz .brz-mt-sm-3{margin-top:3px!important}
3666
- .brz .brz-mt-sm-4{margin-top:4px!important}
3667
- .brz .brz-mt-sm-5{margin-top:5px!important}
3668
- .brz .brz-mt-sm-6{margin-top:6px!important}
3669
- .brz .brz-mt-sm-7{margin-top:7px!important}
3670
- .brz .brz-mt-sm-8{margin-top:8px!important}
3671
- .brz .brz-mt-sm-9{margin-top:9px!important}
3672
- .brz .brz-mt-sm-10{margin-top:10px!important}
3673
- .brz .brz-mt-sm-11{margin-top:11px!important}
3674
- .brz .brz-mt-sm-12{margin-top:12px!important}
3675
- .brz .brz-mt-sm-13{margin-top:13px!important}
3676
- .brz .brz-mt-sm-14{margin-top:14px!important}
3677
- .brz .brz-mt-sm-15{margin-top:15px!important}
3678
- .brz .brz-mt-sm-16{margin-top:16px!important}
3679
- .brz .brz-mt-sm-17{margin-top:17px!important}
3680
- .brz .brz-mt-sm-18{margin-top:18px!important}
3681
- .brz .brz-mt-sm-19{margin-top:19px!important}
3682
- .brz .brz-mt-sm-20{margin-top:20px!important}
3683
- .brz .brz-mt-sm-21{margin-top:21px!important}
3684
- .brz .brz-mt-sm-22{margin-top:22px!important}
3685
- .brz .brz-mt-sm-23{margin-top:23px!important}
3686
- .brz .brz-mt-sm-24{margin-top:24px!important}
3687
- .brz .brz-mt-sm-25{margin-top:25px!important}
3688
- .brz .brz-mt-sm-26{margin-top:26px!important}
3689
- .brz .brz-mt-sm-27{margin-top:27px!important}
3690
- .brz .brz-mt-sm-28{margin-top:28px!important}
3691
- .brz .brz-mt-sm-29{margin-top:29px!important}
3692
- .brz .brz-mt-sm-30{margin-top:30px!important}
3693
- .brz .brz-mt-sm-31{margin-top:31px!important}
3694
- .brz .brz-mt-sm-32{margin-top:32px!important}
3695
- .brz .brz-mt-sm-33{margin-top:33px!important}
3696
- .brz .brz-mt-sm-34{margin-top:34px!important}
3697
- .brz .brz-mt-sm-35{margin-top:35px!important}
3698
- .brz .brz-mt-sm-36{margin-top:36px!important}
3699
- .brz .brz-mt-sm-37{margin-top:37px!important}
3700
- .brz .brz-mt-sm-38{margin-top:38px!important}
3701
- .brz .brz-mt-sm-39{margin-top:39px!important}
3702
- .brz .brz-mt-sm-40{margin-top:40px!important}
3703
- .brz .brz-mt-sm-41{margin-top:41px!important}
3704
- .brz .brz-mt-sm-42{margin-top:42px!important}
3705
- .brz .brz-mt-sm-43{margin-top:43px!important}
3706
- .brz .brz-mt-sm-44{margin-top:44px!important}
3707
- .brz .brz-mt-sm-45{margin-top:45px!important}
3708
- .brz .brz-mt-sm-46{margin-top:46px!important}
3709
- .brz .brz-mt-sm-47{margin-top:47px!important}
3710
- .brz .brz-mt-sm-48{margin-top:48px!important}
3711
- .brz .brz-mt-sm-49{margin-top:49px!important}
3712
- .brz .brz-mt-sm-50{margin-top:50px!important}
3713
- .brz .brz-mt-sm-51{margin-top:51px!important}
3714
- .brz .brz-mt-sm-52{margin-top:52px!important}
3715
- .brz .brz-mt-sm-53{margin-top:53px!important}
3716
- .brz .brz-mt-sm-54{margin-top:54px!important}
3717
- .brz .brz-mt-sm-55{margin-top:55px!important}
3718
- .brz .brz-mt-sm-56{margin-top:56px!important}
3719
- .brz .brz-mt-sm-57{margin-top:57px!important}
3720
- .brz .brz-mt-sm-58{margin-top:58px!important}
3721
- .brz .brz-mt-sm-59{margin-top:59px!important}
3722
- .brz .brz-mt-sm-60{margin-top:60px!important}
3723
- .brz .brz-mt-sm-61{margin-top:61px!important}
3724
- .brz .brz-mt-sm-62{margin-top:62px!important}
3725
- .brz .brz-mt-sm-63{margin-top:63px!important}
3726
- .brz .brz-mt-sm-64{margin-top:64px!important}
3727
- .brz .brz-mt-sm-65{margin-top:65px!important}
3728
- .brz .brz-mt-sm-66{margin-top:66px!important}
3729
- .brz .brz-mt-sm-67{margin-top:67px!important}
3730
- .brz .brz-mt-sm-68{margin-top:68px!important}
3731
- .brz .brz-mt-sm-69{margin-top:69px!important}
3732
- .brz .brz-mt-sm-70{margin-top:70px!important}
3733
- .brz .brz-mt-sm-71{margin-top:71px!important}
3734
- .brz .brz-mt-sm-72{margin-top:72px!important}
3735
- .brz .brz-mt-sm-73{margin-top:73px!important}
3736
- .brz .brz-mt-sm-74{margin-top:74px!important}
3737
- .brz .brz-mt-sm-75{margin-top:75px!important}
3738
- .brz .brz-mt-sm-76{margin-top:76px!important}
3739
- .brz .brz-mt-sm-77{margin-top:77px!important}
3740
- .brz .brz-mt-sm-78{margin-top:78px!important}
3741
- .brz .brz-mt-sm-79{margin-top:79px!important}
3742
- .brz .brz-mt-sm-80{margin-top:80px!important}
3743
- .brz .brz-mt-sm-81{margin-top:81px!important}
3744
- .brz .brz-mt-sm-82{margin-top:82px!important}
3745
- .brz .brz-mt-sm-83{margin-top:83px!important}
3746
- .brz .brz-mt-sm-84{margin-top:84px!important}
3747
- .brz .brz-mt-sm-85{margin-top:85px!important}
3748
- .brz .brz-mt-sm-86{margin-top:86px!important}
3749
- .brz .brz-mt-sm-87{margin-top:87px!important}
3750
- .brz .brz-mt-sm-88{margin-top:88px!important}
3751
- .brz .brz-mt-sm-89{margin-top:89px!important}
3752
- .brz .brz-mt-sm-90{margin-top:90px!important}
3753
- .brz .brz-mt-sm-91{margin-top:91px!important}
3754
- .brz .brz-mt-sm-92{margin-top:92px!important}
3755
- .brz .brz-mt-sm-93{margin-top:93px!important}
3756
- .brz .brz-mt-sm-94{margin-top:94px!important}
3757
- .brz .brz-mt-sm-95{margin-top:95px!important}
3758
- .brz .brz-mt-sm-96{margin-top:96px!important}
3759
- .brz .brz-mt-sm-97{margin-top:97px!important}
3760
- .brz .brz-mt-sm-98{margin-top:98px!important}
3761
- .brz .brz-mt-sm-99{margin-top:99px!important}
3762
- .brz .brz-mt-sm-100{margin-top:100px!important}
3763
- .brz .brz-mb-sm-0{margin-bottom:0!important}
3764
- .brz .brz-mb-sm-1{margin-bottom:1px!important}
3765
- .brz .brz-mb-sm-2{margin-bottom:2px!important}
3766
- .brz .brz-mb-sm-3{margin-bottom:3px!important}
3767
- .brz .brz-mb-sm-4{margin-bottom:4px!important}
3768
- .brz .brz-mb-sm-5{margin-bottom:5px!important}
3769
- .brz .brz-mb-sm-6{margin-bottom:6px!important}
3770
- .brz .brz-mb-sm-7{margin-bottom:7px!important}
3771
- .brz .brz-mb-sm-8{margin-bottom:8px!important}
3772
- .brz .brz-mb-sm-9{margin-bottom:9px!important}
3773
- .brz .brz-mb-sm-10{margin-bottom:10px!important}
3774
- .brz .brz-mb-sm-11{margin-bottom:11px!important}
3775
- .brz .brz-mb-sm-12{margin-bottom:12px!important}
3776
- .brz .brz-mb-sm-13{margin-bottom:13px!important}
3777
- .brz .brz-mb-sm-14{margin-bottom:14px!important}
3778
- .brz .brz-mb-sm-15{margin-bottom:15px!important}
3779
- .brz .brz-mb-sm-16{margin-bottom:16px!important}
3780
- .brz .brz-mb-sm-17{margin-bottom:17px!important}
3781
- .brz .brz-mb-sm-18{margin-bottom:18px!important}
3782
- .brz .brz-mb-sm-19{margin-bottom:19px!important}
3783
- .brz .brz-mb-sm-20{margin-bottom:20px!important}
3784
- .brz .brz-mb-sm-21{margin-bottom:21px!important}
3785
- .brz .brz-mb-sm-22{margin-bottom:22px!important}
3786
- .brz .brz-mb-sm-23{margin-bottom:23px!important}
3787
- .brz .brz-mb-sm-24{margin-bottom:24px!important}
3788
- .brz .brz-mb-sm-25{margin-bottom:25px!important}
3789
- .brz .brz-mb-sm-26{margin-bottom:26px!important}
3790
- .brz .brz-mb-sm-27{margin-bottom:27px!important}
3791
- .brz .brz-mb-sm-28{margin-bottom:28px!important}
3792
- .brz .brz-mb-sm-29{margin-bottom:29px!important}
3793
- .brz .brz-mb-sm-30{margin-bottom:30px!important}
3794
- .brz .brz-mb-sm-31{margin-bottom:31px!important}
3795
- .brz .brz-mb-sm-32{margin-bottom:32px!important}
3796
- .brz .brz-mb-sm-33{margin-bottom:33px!important}
3797
- .brz .brz-mb-sm-34{margin-bottom:34px!important}
3798
- .brz .brz-mb-sm-35{margin-bottom:35px!important}
3799
- .brz .brz-mb-sm-36{margin-bottom:36px!important}
3800
- .brz .brz-mb-sm-37{margin-bottom:37px!important}
3801
- .brz .brz-mb-sm-38{margin-bottom:38px!important}
3802
- .brz .brz-mb-sm-39{margin-bottom:39px!important}
3803
- .brz .brz-mb-sm-40{margin-bottom:40px!important}
3804
- .brz .brz-mb-sm-41{margin-bottom:41px!important}
3805
- .brz .brz-mb-sm-42{margin-bottom:42px!important}
3806
- .brz .brz-mb-sm-43{margin-bottom:43px!important}
3807
- .brz .brz-mb-sm-44{margin-bottom:44px!important}
3808
- .brz .brz-mb-sm-45{margin-bottom:45px!important}
3809
- .brz .brz-mb-sm-46{margin-bottom:46px!important}
3810
- .brz .brz-mb-sm-47{margin-bottom:47px!important}
3811
- .brz .brz-mb-sm-48{margin-bottom:48px!important}
3812
- .brz .brz-mb-sm-49{margin-bottom:49px!important}
3813
- .brz .brz-mb-sm-50{margin-bottom:50px!important}
3814
- .brz .brz-mb-sm-51{margin-bottom:51px!important}
3815
- .brz .brz-mb-sm-52{margin-bottom:52px!important}
3816
- .brz .brz-mb-sm-53{margin-bottom:53px!important}
3817
- .brz .brz-mb-sm-54{margin-bottom:54px!important}
3818
- .brz .brz-mb-sm-55{margin-bottom:55px!important}
3819
- .brz .brz-mb-sm-56{margin-bottom:56px!important}
3820
- .brz .brz-mb-sm-57{margin-bottom:57px!important}
3821
- .brz .brz-mb-sm-58{margin-bottom:58px!important}
3822
- .brz .brz-mb-sm-59{margin-bottom:59px!important}
3823
- .brz .brz-mb-sm-60{margin-bottom:60px!important}
3824
- .brz .brz-mb-sm-61{margin-bottom:61px!important}
3825
- .brz .brz-mb-sm-62{margin-bottom:62px!important}
3826
- .brz .brz-mb-sm-63{margin-bottom:63px!important}
3827
- .brz .brz-mb-sm-64{margin-bottom:64px!important}
3828
- .brz .brz-mb-sm-65{margin-bottom:65px!important}
3829
- .brz .brz-mb-sm-66{margin-bottom:66px!important}
3830
- .brz .brz-mb-sm-67{margin-bottom:67px!important}
3831
- .brz .brz-mb-sm-68{margin-bottom:68px!important}
3832
- .brz .brz-mb-sm-69{margin-bottom:69px!important}
3833
- .brz .brz-mb-sm-70{margin-bottom:70px!important}
3834
- .brz .brz-mb-sm-71{margin-bottom:71px!important}
3835
- .brz .brz-mb-sm-72{margin-bottom:72px!important}
3836
- .brz .brz-mb-sm-73{margin-bottom:73px!important}
3837
- .brz .brz-mb-sm-74{margin-bottom:74px!important}
3838
- .brz .brz-mb-sm-75{margin-bottom:75px!important}
3839
- .brz .brz-mb-sm-76{margin-bottom:76px!important}
3840
- .brz .brz-mb-sm-77{margin-bottom:77px!important}
3841
- .brz .brz-mb-sm-78{margin-bottom:78px!important}
3842
- .brz .brz-mb-sm-79{margin-bottom:79px!important}
3843
- .brz .brz-mb-sm-80{margin-bottom:80px!important}
3844
- .brz .brz-mb-sm-81{margin-bottom:81px!important}
3845
- .brz .brz-mb-sm-82{margin-bottom:82px!important}
3846
- .brz .brz-mb-sm-83{margin-bottom:83px!important}
3847
- .brz .brz-mb-sm-84{margin-bottom:84px!important}
3848
- .brz .brz-mb-sm-85{margin-bottom:85px!important}
3849
- .brz .brz-mb-sm-86{margin-bottom:86px!important}
3850
- .brz .brz-mb-sm-87{margin-bottom:87px!important}
3851
- .brz .brz-mb-sm-88{margin-bottom:88px!important}
3852
- .brz .brz-mb-sm-89{margin-bottom:89px!important}
3853
- .brz .brz-mb-sm-90{margin-bottom:90px!important}
3854
- .brz .brz-mb-sm-91{margin-bottom:91px!important}
3855
- .brz .brz-mb-sm-92{margin-bottom:92px!important}
3856
- .brz .brz-mb-sm-93{margin-bottom:93px!important}
3857
- .brz .brz-mb-sm-94{margin-bottom:94px!important}
3858
- .brz .brz-mb-sm-95{margin-bottom:95px!important}
3859
- .brz .brz-mb-sm-96{margin-bottom:96px!important}
3860
- .brz .brz-mb-sm-97{margin-bottom:97px!important}
3861
- .brz .brz-mb-sm-98{margin-bottom:98px!important}
3862
- .brz .brz-mb-sm-99{margin-bottom:99px!important}
3863
- .brz .brz-mb-sm-100{margin-bottom:100px!important}}@media (max-width:767px){.brz .brz-mt-xs-0{margin-top:0!important}
3864
- .brz .brz-mt-xs-1{margin-top:1px!important}
3865
- .brz .brz-mt-xs-2{margin-top:2px!important}
3866
- .brz .brz-mt-xs-3{margin-top:3px!important}
3867
- .brz .brz-mt-xs-4{margin-top:4px!important}
3868
- .brz .brz-mt-xs-5{margin-top:5px!important}
3869
- .brz .brz-mt-xs-6{margin-top:6px!important}
3870
- .brz .brz-mt-xs-7{margin-top:7px!important}
3871
- .brz .brz-mt-xs-8{margin-top:8px!important}
3872
- .brz .brz-mt-xs-9{margin-top:9px!important}
3873
- .brz .brz-mt-xs-10{margin-top:10px!important}
3874
- .brz .brz-mt-xs-11{margin-top:11px!important}
3875
- .brz .brz-mt-xs-12{margin-top:12px!important}
3876
- .brz .brz-mt-xs-13{margin-top:13px!important}
3877
- .brz .brz-mt-xs-14{margin-top:14px!important}
3878
- .brz .brz-mt-xs-15{margin-top:15px!important}
3879
- .brz .brz-mt-xs-16{margin-top:16px!important}
3880
- .brz .brz-mt-xs-17{margin-top:17px!important}
3881
- .brz .brz-mt-xs-18{margin-top:18px!important}
3882
- .brz .brz-mt-xs-19{margin-top:19px!important}
3883
- .brz .brz-mt-xs-20{margin-top:20px!important}
3884
- .brz .brz-mt-xs-21{margin-top:21px!important}
3885
- .brz .brz-mt-xs-22{margin-top:22px!important}
3886
- .brz .brz-mt-xs-23{margin-top:23px!important}
3887
- .brz .brz-mt-xs-24{margin-top:24px!important}
3888
- .brz .brz-mt-xs-25{margin-top:25px!important}
3889
- .brz .brz-mt-xs-26{margin-top:26px!important}
3890
- .brz .brz-mt-xs-27{margin-top:27px!important}
3891
- .brz .brz-mt-xs-28{margin-top:28px!important}
3892
- .brz .brz-mt-xs-29{margin-top:29px!important}
3893
- .brz .brz-mt-xs-30{margin-top:30px!important}
3894
- .brz .brz-mt-xs-31{margin-top:31px!important}
3895
- .brz .brz-mt-xs-32{margin-top:32px!important}
3896
- .brz .brz-mt-xs-33{margin-top:33px!important}
3897
- .brz .brz-mt-xs-34{margin-top:34px!important}
3898
- .brz .brz-mt-xs-35{margin-top:35px!important}
3899
- .brz .brz-mt-xs-36{margin-top:36px!important}
3900
- .brz .brz-mt-xs-37{margin-top:37px!important}
3901
- .brz .brz-mt-xs-38{margin-top:38px!important}
3902
- .brz .brz-mt-xs-39{margin-top:39px!important}
3903
- .brz .brz-mt-xs-40{margin-top:40px!important}
3904
- .brz .brz-mt-xs-41{margin-top:41px!important}
3905
- .brz .brz-mt-xs-42{margin-top:42px!important}
3906
- .brz .brz-mt-xs-43{margin-top:43px!important}
3907
- .brz .brz-mt-xs-44{margin-top:44px!important}
3908
- .brz .brz-mt-xs-45{margin-top:45px!important}
3909
- .brz .brz-mt-xs-46{margin-top:46px!important}
3910
- .brz .brz-mt-xs-47{margin-top:47px!important}
3911
- .brz .brz-mt-xs-48{margin-top:48px!important}
3912
- .brz .brz-mt-xs-49{margin-top:49px!important}
3913
- .brz .brz-mt-xs-50{margin-top:50px!important}
3914
- .brz .brz-mt-xs-51{margin-top:51px!important}
3915
- .brz .brz-mt-xs-52{margin-top:52px!important}
3916
- .brz .brz-mt-xs-53{margin-top:53px!important}
3917
- .brz .brz-mt-xs-54{margin-top:54px!important}
3918
- .brz .brz-mt-xs-55{margin-top:55px!important}
3919
- .brz .brz-mt-xs-56{margin-top:56px!important}
3920
- .brz .brz-mt-xs-57{margin-top:57px!important}
3921
- .brz .brz-mt-xs-58{margin-top:58px!important}
3922
- .brz .brz-mt-xs-59{margin-top:59px!important}
3923
- .brz .brz-mt-xs-60{margin-top:60px!important}
3924
- .brz .brz-mt-xs-61{margin-top:61px!important}
3925
- .brz .brz-mt-xs-62{margin-top:62px!important}
3926
- .brz .brz-mt-xs-63{margin-top:63px!important}
3927
- .brz .brz-mt-xs-64{margin-top:64px!important}
3928
- .brz .brz-mt-xs-65{margin-top:65px!important}
3929
- .brz .brz-mt-xs-66{margin-top:66px!important}
3930
- .brz .brz-mt-xs-67{margin-top:67px!important}
3931
- .brz .brz-mt-xs-68{margin-top:68px!important}
3932
- .brz .brz-mt-xs-69{margin-top:69px!important}
3933
- .brz .brz-mt-xs-70{margin-top:70px!important}
3934
- .brz .brz-mt-xs-71{margin-top:71px!important}
3935
- .brz .brz-mt-xs-72{margin-top:72px!important}
3936
- .brz .brz-mt-xs-73{margin-top:73px!important}
3937
- .brz .brz-mt-xs-74{margin-top:74px!important}
3938
- .brz .brz-mt-xs-75{margin-top:75px!important}
3939
- .brz .brz-mt-xs-76{margin-top:76px!important}
3940
- .brz .brz-mt-xs-77{margin-top:77px!important}
3941
- .brz .brz-mt-xs-78{margin-top:78px!important}
3942
- .brz .brz-mt-xs-79{margin-top:79px!important}
3943
- .brz .brz-mt-xs-80{margin-top:80px!important}
3944
- .brz .brz-mt-xs-81{margin-top:81px!important}
3945
- .brz .brz-mt-xs-82{margin-top:82px!important}
3946
- .brz .brz-mt-xs-83{margin-top:83px!important}
3947
- .brz .brz-mt-xs-84{margin-top:84px!important}
3948
- .brz .brz-mt-xs-85{margin-top:85px!important}
3949
- .brz .brz-mt-xs-86{margin-top:86px!important}
3950
- .brz .brz-mt-xs-87{margin-top:87px!important}
3951
- .brz .brz-mt-xs-88{margin-top:88px!important}
3952
- .brz .brz-mt-xs-89{margin-top:89px!important}
3953
- .brz .brz-mt-xs-90{margin-top:90px!important}
3954
- .brz .brz-mt-xs-91{margin-top:91px!important}
3955
- .brz .brz-mt-xs-92{margin-top:92px!important}
3956
- .brz .brz-mt-xs-93{margin-top:93px!important}
3957
- .brz .brz-mt-xs-94{margin-top:94px!important}
3958
- .brz .brz-mt-xs-95{margin-top:95px!important}
3959
- .brz .brz-mt-xs-96{margin-top:96px!important}
3960
- .brz .brz-mt-xs-97{margin-top:97px!important}
3961
- .brz .brz-mt-xs-98{margin-top:98px!important}
3962
- .brz .brz-mt-xs-99{margin-top:99px!important}
3963
- .brz .brz-mt-xs-100{margin-top:100px!important}
3964
- .brz .brz-mb-xs-0{margin-bottom:0!important}
3965
- .brz .brz-mb-xs-1{margin-bottom:1px!important}
3966
- .brz .brz-mb-xs-2{margin-bottom:2px!important}
3967
- .brz .brz-mb-xs-3{margin-bottom:3px!important}
3968
- .brz .brz-mb-xs-4{margin-bottom:4px!important}
3969
- .brz .brz-mb-xs-5{margin-bottom:5px!important}
3970
- .brz .brz-mb-xs-6{margin-bottom:6px!important}
3971
- .brz .brz-mb-xs-7{margin-bottom:7px!important}
3972
- .brz .brz-mb-xs-8{margin-bottom:8px!important}
3973
- .brz .brz-mb-xs-9{margin-bottom:9px!important}
3974
- .brz .brz-mb-xs-10{margin-bottom:10px!important}
3975
- .brz .brz-mb-xs-11{margin-bottom:11px!important}
3976
- .brz .brz-mb-xs-12{margin-bottom:12px!important}
3977
- .brz .brz-mb-xs-13{margin-bottom:13px!important}
3978
- .brz .brz-mb-xs-14{margin-bottom:14px!important}
3979
- .brz .brz-mb-xs-15{margin-bottom:15px!important}
3980
- .brz .brz-mb-xs-16{margin-bottom:16px!important}
3981
- .brz .brz-mb-xs-17{margin-bottom:17px!important}
3982
- .brz .brz-mb-xs-18{margin-bottom:18px!important}
3983
- .brz .brz-mb-xs-19{margin-bottom:19px!important}
3984
- .brz .brz-mb-xs-20{margin-bottom:20px!important}
3985
- .brz .brz-mb-xs-21{margin-bottom:21px!important}
3986
- .brz .brz-mb-xs-22{margin-bottom:22px!important}
3987
- .brz .brz-mb-xs-23{margin-bottom:23px!important}
3988
- .brz .brz-mb-xs-24{margin-bottom:24px!important}
3989
- .brz .brz-mb-xs-25{margin-bottom:25px!important}
3990
- .brz .brz-mb-xs-26{margin-bottom:26px!important}
3991
- .brz .brz-mb-xs-27{margin-bottom:27px!important}
3992
- .brz .brz-mb-xs-28{margin-bottom:28px!important}
3993
- .brz .brz-mb-xs-29{margin-bottom:29px!important}
3994
- .brz .brz-mb-xs-30{margin-bottom:30px!important}
3995
- .brz .brz-mb-xs-31{margin-bottom:31px!important}
3996
- .brz .brz-mb-xs-32{margin-bottom:32px!important}
3997
- .brz .brz-mb-xs-33{margin-bottom:33px!important}
3998
- .brz .brz-mb-xs-34{margin-bottom:34px!important}
3999
- .brz .brz-mb-xs-35{margin-bottom:35px!important}
4000
- .brz .brz-mb-xs-36{margin-bottom:36px!important}
4001
- .brz .brz-mb-xs-37{margin-bottom:37px!important}
4002
- .brz .brz-mb-xs-38{margin-bottom:38px!important}
4003
- .brz .brz-mb-xs-39{margin-bottom:39px!important}
4004
- .brz .brz-mb-xs-40{margin-bottom:40px!important}
4005
- .brz .brz-mb-xs-41{margin-bottom:41px!important}
4006
- .brz .brz-mb-xs-42{margin-bottom:42px!important}
4007
- .brz .brz-mb-xs-43{margin-bottom:43px!important}
4008
- .brz .brz-mb-xs-44{margin-bottom:44px!important}
4009
- .brz .brz-mb-xs-45{margin-bottom:45px!important}
4010
- .brz .brz-mb-xs-46{margin-bottom:46px!important}
4011
- .brz .brz-mb-xs-47{margin-bottom:47px!important}
4012
- .brz .brz-mb-xs-48{margin-bottom:48px!important}
4013
- .brz .brz-mb-xs-49{margin-bottom:49px!important}
4014
- .brz .brz-mb-xs-50{margin-bottom:50px!important}
4015
- .brz .brz-mb-xs-51{margin-bottom:51px!important}
4016
- .brz .brz-mb-xs-52{margin-bottom:52px!important}
4017
- .brz .brz-mb-xs-53{margin-bottom:53px!important}
4018
- .brz .brz-mb-xs-54{margin-bottom:54px!important}
4019
- .brz .brz-mb-xs-55{margin-bottom:55px!important}
4020
- .brz .brz-mb-xs-56{margin-bottom:56px!important}
4021
- .brz .brz-mb-xs-57{margin-bottom:57px!important}
4022
- .brz .brz-mb-xs-58{margin-bottom:58px!important}
4023
- .brz .brz-mb-xs-59{margin-bottom:59px!important}
4024
- .brz .brz-mb-xs-60{margin-bottom:60px!important}
4025
- .brz .brz-mb-xs-61{margin-bottom:61px!important}
4026
- .brz .brz-mb-xs-62{margin-bottom:62px!important}
4027
- .brz .brz-mb-xs-63{margin-bottom:63px!important}
4028
- .brz .brz-mb-xs-64{margin-bottom:64px!important}
4029
- .brz .brz-mb-xs-65{margin-bottom:65px!important}
4030
- .brz .brz-mb-xs-66{margin-bottom:66px!important}
4031
- .brz .brz-mb-xs-67{margin-bottom:67px!important}
4032
- .brz .brz-mb-xs-68{margin-bottom:68px!important}
4033
- .brz .brz-mb-xs-69{margin-bottom:69px!important}
4034
- .brz .brz-mb-xs-70{margin-bottom:70px!important}
4035
- .brz .brz-mb-xs-71{margin-bottom:71px!important}
4036
- .brz .brz-mb-xs-72{margin-bottom:72px!important}
4037
- .brz .brz-mb-xs-73{margin-bottom:73px!important}
4038
- .brz .brz-mb-xs-74{margin-bottom:74px!important}
4039
- .brz .brz-mb-xs-75{margin-bottom:75px!important}
4040
- .brz .brz-mb-xs-76{margin-bottom:76px!important}
4041
- .brz .brz-mb-xs-77{margin-bottom:77px!important}
4042
- .brz .brz-mb-xs-78{margin-bottom:78px!important}
4043
- .brz .brz-mb-xs-79{margin-bottom:79px!important}
4044
- .brz .brz-mb-xs-80{margin-bottom:80px!important}
4045
- .brz .brz-mb-xs-81{margin-bottom:81px!important}
4046
- .brz .brz-mb-xs-82{margin-bottom:82px!important}
4047
- .brz .brz-mb-xs-83{margin-bottom:83px!important}
4048
- .brz .brz-mb-xs-84{margin-bottom:84px!important}
4049
- .brz .brz-mb-xs-85{margin-bottom:85px!important}
4050
- .brz .brz-mb-xs-86{margin-bottom:86px!important}
4051
- .brz .brz-mb-xs-87{margin-bottom:87px!important}
4052
- .brz .brz-mb-xs-88{margin-bottom:88px!important}
4053
- .brz .brz-mb-xs-89{margin-bottom:89px!important}
4054
- .brz .brz-mb-xs-90{margin-bottom:90px!important}
4055
- .brz .brz-mb-xs-91{margin-bottom:91px!important}
4056
- .brz .brz-mb-xs-92{margin-bottom:92px!important}
4057
- .brz .brz-mb-xs-93{margin-bottom:93px!important}
4058
- .brz .brz-mb-xs-94{margin-bottom:94px!important}
4059
- .brz .brz-mb-xs-95{margin-bottom:95px!important}
4060
- .brz .brz-mb-xs-96{margin-bottom:96px!important}
4061
- .brz .brz-mb-xs-97{margin-bottom:97px!important}
4062
- .brz .brz-mb-xs-98{margin-bottom:98px!important}
4063
- .brz .brz-mb-xs-99{margin-bottom:99px!important}
4064
- .brz .brz-mb-xs-100{margin-bottom:100px!important}}.brz .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
4065
- .brz .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
4066
- .brz .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
4067
- .brz .brz-text-lg-justify{text-align:justify!important}
4068
- @media (min-width:768px) and (max-width:991px){.brz .brz-text-sm-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
4069
- .brz .brz-text-sm-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
4070
- .brz .brz-text-sm-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
4071
- .brz .brz-text-sm-justify{text-align:justify!important}}@media (max-width:767px){.brz .brz-text-xs-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
4072
- .brz .brz-text-xs-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
4073
- .brz .brz-text-xs-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
4074
- .brz .brz-text-xs-justify{text-align:justify!important}}@-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4075
- 40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}
4076
- 70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}
4077
- 90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4078
- 40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}
4079
- 70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}
4080
- 90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.brz .bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}
4081
- @-webkit-keyframes flash{50%,from,to{opacity:1}
4082
- 25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}
4083
- 25%,75%{opacity:0}}.brz .flash{-webkit-animation-name:flash;animation-name:flash}
4084
- @-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
4085
- 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
4086
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
4087
- 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
4088
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .pulse{-webkit-animation-name:pulse;animation-name:pulse}
4089
- @-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
4090
- 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
4091
- 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
4092
- 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
4093
- 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
4094
- 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
4095
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
4096
- 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
4097
- 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
4098
- 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
4099
- 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
4100
- 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
4101
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}
4102
- @-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4103
- 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
4104
- 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4105
- 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
4106
- 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.brz .shake{-webkit-animation-name:shake;animation-name:shake}
4107
- @-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
4108
- 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
4109
- 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
4110
- 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
4111
- 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
4112
- 50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
4113
- 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
4114
- 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
4115
- 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
4116
- 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
4117
- 50%{-webkit-transform:translateX(0);transform:translateX(0)}}.brz .headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}
4118
- @-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
4119
- 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
4120
- 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
4121
- 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
4122
- to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
4123
- 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
4124
- 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
4125
- 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
4126
- to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.brz .swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}
4127
- @-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
4128
- 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
4129
- 30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}
4130
- 40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}
4131
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
4132
- 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
4133
- 30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}
4134
- 40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}
4135
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .tada{-webkit-animation-name:tada;animation-name:tada}
4136
- @-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4137
- 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
4138
- 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
4139
- 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
4140
- 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
4141
- 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
4142
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4143
- 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
4144
- 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
4145
- 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
4146
- 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
4147
- 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
4148
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .wobble{-webkit-animation-name:wobble;animation-name:wobble}
4149
- @-webkit-keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4150
- 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
4151
- 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
4152
- 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
4153
- 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
4154
- 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
4155
- 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
4156
- 88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4157
- 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
4158
- 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
4159
- 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
4160
- 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
4161
- 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
4162
- 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
4163
- 88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}.brz .jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}
4164
- @-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
4165
- 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
4166
- 28%{-webkit-transform:scale(1);transform:scale(1)}
4167
- 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
4168
- 70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
4169
- 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
4170
- 28%{-webkit-transform:scale(1);transform:scale(1)}
4171
- 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
4172
- 70%{-webkit-transform:scale(1);transform:scale(1)}}.brz .heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
4173
- @-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4174
- 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
4175
- 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
4176
- 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
4177
- 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
4178
- 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
4179
- to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4180
- 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
4181
- 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
4182
- 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
4183
- 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
4184
- 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
4185
- to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}
4186
- @-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4187
- 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
4188
- 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
4189
- 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
4190
- 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
4191
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4192
- 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
4193
- 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
4194
- 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
4195
- 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
4196
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}
4197
- @-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4198
- 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
4199
- 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
4200
- 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
4201
- 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
4202
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4203
- 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
4204
- 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
4205
- 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
4206
- 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
4207
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}
4208
- @-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4209
- from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
4210
- 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
4211
- 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
4212
- 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
4213
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4214
- from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
4215
- 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
4216
- 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
4217
- 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
4218
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}
4219
- @-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4220
- from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
4221
- 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
4222
- 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
4223
- 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
4224
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
4225
- from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
4226
- 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
4227
- 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
4228
- 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
4229
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}
4230
- @-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
4231
- 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
4232
- to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
4233
- 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
4234
- to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.brz .bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}
4235
- @-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
4236
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
4237
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
4238
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
4239
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}
4240
- @-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
4241
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
4242
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}
4243
- @-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
4244
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
4245
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}
4246
- @-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
4247
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
4248
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
4249
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
4250
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}
4251
- @-webkit-keyframes fadeIn{from{opacity:0}
4252
- to{opacity:1}}@keyframes fadeIn{from{opacity:0}
4253
- to{opacity:1}}.brz .fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}
4254
- @-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
4255
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
4256
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}
4257
- @-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
4258
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
4259
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}
4260
- @-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
4261
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
4262
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}
4263
- @-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
4264
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
4265
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}
4266
- @-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
4267
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
4268
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}
4269
- @-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
4270
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
4271
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}
4272
- @-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
4273
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
4274
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}
4275
- @-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
4276
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
4277
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}
4278
- @-webkit-keyframes fadeOut{from{opacity:1}
4279
- to{opacity:0}}@keyframes fadeOut{from{opacity:1}
4280
- to{opacity:0}}.brz .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}
4281
- @-webkit-keyframes fadeOutDown{from{opacity:1}
4282
- to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}
4283
- to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}
4284
- @-webkit-keyframes fadeOutDownBig{from{opacity:1}
4285
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}
4286
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}
4287
- @-webkit-keyframes fadeOutLeft{from{opacity:1}
4288
- to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}
4289
- to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}
4290
- @-webkit-keyframes fadeOutLeftBig{from{opacity:1}
4291
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}
4292
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}
4293
- @-webkit-keyframes fadeOutRight{from{opacity:1}
4294
- to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}
4295
- to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}
4296
- @-webkit-keyframes fadeOutRightBig{from{opacity:1}
4297
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}
4298
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}
4299
- @-webkit-keyframes fadeOutUp{from{opacity:1}
4300
- to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}
4301
- to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}
4302
- @-webkit-keyframes fadeOutUpBig{from{opacity:1}
4303
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}
4304
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}
4305
- @-webkit-keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
4306
- 40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
4307
- 50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4308
- 80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4309
- to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
4310
- 40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
4311
- 50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4312
- 80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4313
- to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.brz .animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}
4314
- @-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
4315
- 40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4316
- 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
4317
- 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
4318
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
4319
- 40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4320
- 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
4321
- 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
4322
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz .flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}
4323
- @-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
4324
- 40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4325
- 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
4326
- 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
4327
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
4328
- 40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4329
- 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
4330
- 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
4331
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz .flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}
4332
- @-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
4333
- 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
4334
- to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
4335
- 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
4336
- to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.brz .flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
4337
- @-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
4338
- 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
4339
- to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
4340
- 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
4341
- to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.brz .flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}
4342
- @-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
4343
- 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
4344
- 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
4345
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
4346
- 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
4347
- 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
4348
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
4349
- @-webkit-keyframes lightSpeedOut{from{opacity:1}
4350
- to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}
4351
- to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.brz .lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
4352
- @-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}
4353
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}
4354
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}
4355
- @-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}
4356
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}
4357
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}
4358
- @-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
4359
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
4360
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}
4361
- @-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
4362
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
4363
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}
4364
- @-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}
4365
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}
4366
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}
4367
- @-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
4368
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
4369
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.brz .rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}
4370
- @-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
4371
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
4372
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.brz .rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}
4373
- @-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
4374
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
4375
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz .rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}
4376
- @-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
4377
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
4378
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz .rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}
4379
- @-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
4380
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
4381
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.brz .rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}
4382
- @-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
4383
- 20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
4384
- 40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}
4385
- to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
4386
- 20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
4387
- 40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}
4388
- to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.brz .hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}
4389
- @-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}
4390
- 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
4391
- 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
4392
- to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}
4393
- 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
4394
- 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
4395
- to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.brz .jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}
4396
- @-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}
4397
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}
4398
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}
4399
- @-webkit-keyframes rollOut{from{opacity:1}
4400
- to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}
4401
- to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.brz .rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}
4402
- @-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
4403
- 50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
4404
- 50%{opacity:1}}.brz .zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}
4405
- @-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4406
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4407
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}
4408
- @-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4409
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4410
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}
4411
- @-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4412
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4413
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}
4414
- @-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4415
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4416
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}
4417
- @-webkit-keyframes zoomOut{from{opacity:1}
4418
- 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
4419
- to{opacity:0}}@keyframes zoomOut{from{opacity:1}
4420
- 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
4421
- to{opacity:0}}.brz .zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}
4422
- @-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4423
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4424
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}
4425
- @-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}
4426
- to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}
4427
- to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.brz .zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}
4428
- @-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}
4429
- to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}
4430
- to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.brz .zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}
4431
- @-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4432
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
4433
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}
4434
- @-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
4435
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
4436
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}
4437
- @-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
4438
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
4439
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}
4440
- @-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
4441
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
4442
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}
4443
- @-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
4444
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
4445
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}
4446
- @-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4447
- to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4448
- to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}
4449
- @-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4450
- to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4451
- to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}
4452
- @-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4453
- to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4454
- to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}
4455
- @-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4456
- to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
4457
- to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
4458
- .brz .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
4459
- .brz .animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
4460
- .brz .animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}
4461
- .brz .animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}
4462
- .brz .animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}
4463
- .brz .animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}
4464
- .brz .animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}
4465
- .brz .animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}
4466
- .brz .animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}
4467
- .brz .animated.slow{-webkit-animation-duration:2s;animation-duration:2s}
4468
- .brz .animated.slower{-webkit-animation-duration:3s;animation-duration:3s}
4469
- @media (prefers-reduced-motion){.brz .animated{-webkit-animation:unset!important;animation:unset!important;-webkit-transition:none!important;transition:none!important}}.brz .brz-animated{opacity:0;-webkit-animation-fill-mode:both;animation-fill-mode:both}
4470
- .brz .brz-animated.brz-animate{opacity:1}
4471
- .brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}
4472
- .brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}
4473
- .brz .brz-wp__sidebar{width:100%}
4474
- .brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}
4475
- .brz .brz-wp-shortcode{width:100%}
4476
- .brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}
4477
- .brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}
4478
- .brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}
4479
- .brz .brz-wp-shortcode__menu .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;list-style:none;margin:0 auto;padding:0}
4480
- .brz .brz-wp-shortcode__menu .menu .menu-item{position:relative;text-align:left;list-style:none}
4481
- .brz .brz-wp-shortcode__menu .menu .menu-item a span{display:block}
4482
- .brz .brz-wp-shortcode__menu .menu .sub-menu{position:absolute;left:0;padding-left:0;padding-right:0;text-align:center;text-transform:none;list-style:none;margin:0!important;display:none;width:280px;background-color:#33344b;z-index:110}
4483
- .brz .brz-wp-shortcode__menu .menu .sub-menu .menu-item{display:block;margin:0;padding:0}
4484
- .brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu{display:none;left:100%;top:0}
4485
- .brz .brz-wp-shortcode__menu .menu .sub-menu a{display:block;line-height:1.2em;padding:10px 12%;color:#fcfcfc}
4486
- .brz .brz-wp-shortcode__menu .menu .sub-menu a:hover{background:rgba(36,36,53,.94)}
4487
- .brz .brz-wp-shortcode__menu .menu>.menu-item{display:inline-block;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;padding-top:5px;padding-bottom:5px}
4488
- .brz .brz-wp-shortcode__menu .menu>.menu-item>.sub-menu{top:100%;padding-top:15px;padding-bottom:15px}
4489
- .brz .brz-wp-shortcode__menu .menu>.menu-item:hover>.sub-menu{display:block}
4490
- .brz .brz-wp-shortcode__menu .menu>.menu-item>.sub-menu>.menu-item:hover>.sub-menu{display:block}
4491
- .brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}
4492
- .brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}
4493
- .brz .brz-wp-shortcode__menu__toggle .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}
4494
- .brz .brz-wp-shortcode__menu__icon{display:none;padding:15px;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0}
4495
- .brz .brz-wp-shortcode__menu__icon--bars{display:block;height:2px;position:relative;-webkit-transition:background .2s ease-out;transition:background .2s ease-out;width:18px}
4496
- .brz .brz-wp-shortcode__menu__icon--bars:after,.brz .brz-wp-shortcode__menu__icon--bars:before{background-color:currentColor;content:"";display:block;height:100%;position:absolute;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;width:100%}
4497
- .brz .brz-wp-shortcode__menu__icon--bars:before{top:5px}
4498
- .brz .brz-wp-shortcode__menu__icon--bars:after{top:-5px}
4499
- .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn{display:none}
4500
- .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked~div .menu{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:100%}
4501
- .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars{background:0 0}
4502
- .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
4503
- .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}
4504
- .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:after,.brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:before{top:0}
4505
- @media (max-width:767px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
4506
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
4507
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
4508
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a{padding:5px}
4509
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a:hover{background-color:transparent}
4510
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
4511
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>.menu-item{padding:0}
4512
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
4513
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .brz-wp-shortcode__menu__icon{display:inline-block}}@media (min-width:768px) and (max-width:991px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
4514
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
4515
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
4516
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a{padding:5px}
4517
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a:hover{background-color:transparent}
4518
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
4519
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
4520
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
4521
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .brz-wp-shortcode__menu__icon{display:inline-block}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /*!
385
  * jQuery mmenu v7.2.2
386
  * @requires jQuery 1.7.0 or later
387
  *
392
  *
393
  * License: CC-BY-NC-4.0
394
  * http://creativecommons.org/licenses/by-nc/4.0/
395
+ */
396
+ .mm-menu {
397
+ --mm-line-height:20px;
398
+ --mm-listitem-size:44px;
399
+ --mm-navbar-size:44px;
400
+ --mm-offset-top:0;
401
+ --mm-offset-right:0;
402
+ --mm-offset-bottom:0;
403
+ --mm-offset-left:0;
404
+ --mm-color-border:rgba(0, 0, 0, 0.1);
405
+ --mm-color-button:rgba(0, 0, 0, 0.3);
406
+ --mm-color-text:rgba(0, 0, 0, 0.75);
407
+ --mm-color-text-dimmed:rgba(0, 0, 0, 0.3);
408
+ --mm-color-background:#f3f3f3;
409
+ --mm-color-background-highlight:rgba(0, 0, 0, 0.05);
410
+ --mm-color-background-emphasis:rgba(255, 255, 255, 0.4);
411
+ --mm-shadow:0 0 10px rgba( 0,0,0, 0.3 ); }
412
+
413
+ .mm-hidden {
414
+ display: none !important; }
415
+
416
+ .mm-wrapper {
417
+ overflow-x: hidden;
418
+ position: relative; }
419
+
420
+ .mm-menu {
421
+ background: #f3f3f3;
422
+ border-color: rgba(0, 0, 0, 0.1);
423
+ color: rgba(0, 0, 0, 0.75);
424
+ background: var(--mm-color-background);
425
+ border-color: var(--mm-color-border);
426
+ color: var(--mm-color-text);
427
+ line-height: 20px;
428
+ line-height: var(--mm-line-height);
429
+ -webkit-box-sizing: border-box;
430
+ box-sizing: border-box;
431
+ display: block;
432
+ padding: 0;
433
+ margin: 0;
434
+ position: absolute;
435
+ z-index: 0;
436
+ top: 0;
437
+ right: 0;
438
+ bottom: 0;
439
+ left: 0;
440
+ top: var(--mm-offset-top);
441
+ right: var(--mm-offset-right);
442
+ bottom: var(--mm-offset-bottom);
443
+ left: var(--mm-offset-left);
444
+ -webkit-font-smoothing: antialiased;
445
+ -moz-osx-font-smoothing: grayscale; }
446
+
447
+ .mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
448
+ color: inherit;
449
+ text-decoration: none; }
450
+
451
+ [dir=rtl] .mm-menu {
452
+ direction: rtl; }
453
+
454
+ .mm-panels, .mm-panels > .mm-panel {
455
+ position: absolute;
456
+ left: 0;
457
+ right: 0;
458
+ top: 0;
459
+ bottom: 0;
460
+ z-index: 0; }
461
+
462
+ .mm-panel, .mm-panels {
463
+ -webkit-box-sizing: border-box;
464
+ box-sizing: border-box;
465
+ background: #f3f3f3;
466
+ border-color: rgba(0, 0, 0, 0.1);
467
+ color: rgba(0, 0, 0, 0.75);
468
+ background: var(--mm-color-background);
469
+ border-color: var(--mm-color-border);
470
+ color: var(--mm-color-text); }
471
+
472
+ .mm-panels {
473
+ overflow: hidden; }
474
+
475
+ .mm-panel {
476
+ -webkit-overflow-scrolling: touch;
477
+ overflow: scroll;
478
+ overflow-x: hidden;
479
+ overflow-y: auto;
480
+ width: 100%;
481
+ padding: 0 20px;
482
+ -webkit-transform: translate3d(100%, 0, 0);
483
+ transform: translate3d(100%, 0, 0);
484
+ -webkit-transition: -webkit-transform .4s ease;
485
+ transition: -webkit-transform .4s ease;
486
+ transition: transform .4s ease;
487
+ transition: transform .4s ease, -webkit-transform .4s ease;
488
+ transition: transform .4s ease,-webkit-transform .4s ease; }
489
+
490
+ .mm-panel:not(.mm-hidden) {
491
+ display: block; }
492
+
493
+ .mm-panel:after, .mm-panel:before {
494
+ content: '';
495
+ display: block;
496
+ height: 20px; }
497
+
498
+ .mm-panel_has-navbar {
499
+ padding-top: 44px;
500
+ padding-top: var(--mm-navbar-size); }
501
+
502
+ .mm-panel_opened {
503
+ z-index: 1;
504
+ -webkit-transform: translate3d(0, 0, 0);
505
+ transform: translate3d(0, 0, 0); }
506
+
507
+ .mm-panel_opened-parent {
508
+ -webkit-transform: translate3d(-30%, 0, 0);
509
+ transform: translate3d(-30%, 0, 0); }
510
+
511
+ .mm-panel_highest {
512
+ z-index: 2; }
513
+
514
+ .mm-panel_noanimation {
515
+ -webkit-transition: none !important;
516
+ transition: none !important; }
517
+
518
+ .mm-panel_noanimation.mm-panel_opened-parent {
519
+ -webkit-transform: translate3d(0, 0, 0);
520
+ transform: translate3d(0, 0, 0); }
521
+
522
+ [dir=rtl] .mm-panel:not(.mm-panel_opened) {
523
+ -webkit-transform: translate3d(-100%, 0, 0);
524
+ transform: translate3d(-100%, 0, 0); }
525
+
526
+ [dir=rtl] .mm-panel.mm-panel_opened-parent {
527
+ -webkit-transform: translate3d(30%, 0, 0);
528
+ transform: translate3d(30%, 0, 0); }
529
+
530
+ .mm-listitem_vertical > .mm-panel {
531
+ -webkit-transform: none !important;
532
+ transform: none !important;
533
+ display: none;
534
+ width: 100%;
535
+ padding: 10px 0 10px 10px; }
536
+
537
+ .mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
538
+ content: none;
539
+ display: none; }
540
+
541
+ .mm-listitem_opened > .mm-panel {
542
+ display: block; }
543
+
544
+ .mm-listitem_vertical > .mm-listitem__btn {
545
+ height: 44px;
546
+ height: var(--mm-listitem-size);
547
+ bottom: auto; }
548
+
549
+ .mm-listitem_vertical .mm-listitem:last-child:after {
550
+ border-color: transparent; }
551
+
552
+ .mm-listitem_opened > .mm-listitem__btn:after {
553
+ -webkit-transform: rotate(225deg);
554
+ transform: rotate(225deg);
555
+ right: 19px; }
556
+
557
+ .mm-btn {
558
+ -webkit-box-sizing: border-box;
559
+ box-sizing: border-box;
560
+ width: 44px;
561
+ padding: 0; }
562
+
563
+ .mm-btn:after, .mm-btn:before {
564
+ border-color: rgba(0, 0, 0, 0.1);
565
+ border-color: var(--mm-color-button);
566
+ border-width: 2px;
567
+ border-style: solid; }
568
+
569
+ .mm-btn_close:after, .mm-btn_close:before {
570
+ content: '';
571
+ -webkit-box-sizing: content-box;
572
+ box-sizing: content-box;
573
+ display: block;
574
+ width: 5px;
575
+ height: 5px;
576
+ margin: auto;
577
+ position: absolute;
578
+ top: 0;
579
+ bottom: 0;
580
+ -webkit-transform: rotate(-45deg);
581
+ transform: rotate(-45deg); }
582
+
583
+ .mm-btn_close:before {
584
+ border-right: none;
585
+ border-bottom: none;
586
+ right: 18px; }
587
+
588
+ .mm-btn_close:after {
589
+ border-left: none;
590
+ border-top: none;
591
+ right: 25px; }
592
+
593
+ .mm-btn_next:after, .mm-btn_prev:before {
594
+ content: '';
595
+ border-bottom: none;
596
+ border-right: none;
597
+ -webkit-box-sizing: content-box;
598
+ box-sizing: content-box;
599
+ display: block;
600
+ width: 8px;
601
+ height: 8px;
602
+ margin: auto;
603
+ position: absolute;
604
+ top: 0;
605
+ bottom: 0; }
606
+
607
+ .mm-btn_prev:before {
608
+ -webkit-transform: rotate(-45deg);
609
+ transform: rotate(-45deg);
610
+ left: 23px;
611
+ right: auto; }
612
+
613
+ .mm-btn_next:after {
614
+ -webkit-transform: rotate(135deg);
615
+ transform: rotate(135deg);
616
+ right: 23px;
617
+ left: auto; }
618
+
619
+ [dir=rtl] .mm-btn_next:after {
620
+ -webkit-transform: rotate(-45deg);
621
+ transform: rotate(-45deg);
622
+ left: 23px;
623
+ right: auto; }
624
+
625
+ [dir=rtl] .mm-btn_prev:before {
626
+ -webkit-transform: rotate(135deg);
627
+ transform: rotate(135deg);
628
+ right: 23px;
629
+ left: auto; }
630
+
631
+ [dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
632
+ right: auto; }
633
+
634
+ [dir=rtl] .mm-btn_close:before {
635
+ left: 25px; }
636
+
637
+ [dir=rtl] .mm-btn_close:after {
638
+ left: 18px; }
639
+
640
+ .mm-navbar {
641
+ background: #f3f3f3;
642
+ border-color: rgba(0, 0, 0, 0.1);
643
+ color: rgba(0, 0, 0, 0.3);
644
+ background: var(--mm-color-background);
645
+ border-color: var(--mm-color-border);
646
+ color: var(--mm-color-text-dimmed);
647
+ border-bottom-width: 1px;
648
+ border-bottom-style: solid;
649
+ text-align: center;
650
+ display: none;
651
+ height: 44px;
652
+ height: var(--mm-navbar-size);
653
+ padding: 0 44px;
654
+ margin: 0;
655
+ position: absolute;
656
+ top: 0;
657
+ left: 0;
658
+ right: 0;
659
+ opacity: 1;
660
+ -webkit-transition: opacity .4s ease;
661
+ transition: opacity .4s ease; }
662
+
663
+ .mm-navbar > * {
664
+ -webkit-box-sizing: border-box;
665
+ box-sizing: border-box;
666
+ display: block;
667
+ padding: 12px;
668
+ padding: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);
669
+ padding-left: 0;
670
+ padding-right: 0; }
671
+
672
+ .mm-navbar a, .mm-navbar a:hover {
673
+ text-decoration: none; }
674
+
675
+ .mm-navbar__title {
676
+ text-overflow: ellipsis;
677
+ white-space: nowrap;
678
+ overflow: hidden; }
679
+
680
+ .mm-navbar__btn {
681
+ position: absolute;
682
+ top: 0;
683
+ bottom: 0;
684
+ z-index: 1; }
685
+
686
+ .mm-navbar__btn:first-child {
687
+ text-align: left;
688
+ left: 0; }
689
+
690
+ .mm-navbar__btn:last-child {
691
+ text-align: right;
692
+ right: 0; }
693
+
694
+ .mm-panel_has-navbar .mm-navbar {
695
+ display: block; }
696
+
697
+ [dir=rtl] .mm-navbar__btn:first-child {
698
+ text-align: right;
699
+ right: 0;
700
+ left: auto; }
701
+
702
+ [dir=rtl] .mm-navbar__btn:last-child {
703
+ text-align: left;
704
+ left: 0;
705
+ right: auto; }
706
+
707
+ .mm-listitem, .mm-listview {
708
+ list-style: none;
709
+ display: block;
710
+ padding: 0;
711
+ margin: 0; }
712
+
713
+ .mm-listitem {
714
+ color: rgba(0, 0, 0, 0.75);
715
+ color: var(--mm-color-text);
716
+ border-color: rgba(0, 0, 0, 0.1);
717
+ border-color: var(--mm-color-border);
718
+ position: relative;
719
+ display: -webkit-box;
720
+ display: -ms-flexbox;
721
+ display: flex;
722
+ -ms-flex-wrap: wrap;
723
+ flex-wrap: wrap; }
724
+
725
+ .mm-listitem:after {
726
+ content: '';
727
+ border-color: inherit;
728
+ border-bottom-width: 1px;
729
+ border-bottom-style: solid;
730
+ display: block;
731
+ position: absolute;
732
+ left: 20px;
733
+ right: 0;
734
+ bottom: 0; }
735
+
736
+ .mm-listitem a, .mm-listitem a:hover {
737
+ text-decoration: none; }
738
+
739
+ .mm-listitem__btn, .mm-listitem__text {
740
+ color: inherit;
741
+ display: block;
742
+ padding-top: 12px;
743
+ padding-top: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
744
+ padding-bottom: 12px;
745
+ padding-bottom: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2); }
746
+
747
+ .mm-listitem__text {
748
+ text-overflow: ellipsis;
749
+ white-space: nowrap;
750
+ overflow: hidden;
751
+ padding-left: 20px;
752
+ padding-right: 10px;
753
+ -webkit-box-flex: 1;
754
+ -ms-flex-positive: 1;
755
+ flex-grow: 1;
756
+ -ms-flex-preferred-size: 10%;
757
+ flex-basis: 10%; }
758
+
759
+ .mm-listitem__btn {
760
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
761
+ tap-highlight-color: rgba(255, 255, 255, 0.4);
762
+ -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
763
+ tap-highlight-color: var(--mm-color-background-emphasis);
764
+ background: rgba(3, 2, 1, 0);
765
+ border-color: inherit;
766
+ width: auto;
767
+ padding-right: 54px;
768
+ position: relative; }
769
+
770
+ .mm-listitem__btn:not(.mm-listitem__text) {
771
+ border-left-width: 1px;
772
+ border-left-style: solid; }
773
+
774
+ .mm-listitem_selected > .mm-listitem__text {
775
+ background: rgba(255, 255, 255, 0.4);
776
+ background: var(--mm-color-background-emphasis); }
777
+
778
+ .mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
779
+ background: rgba(0, 0, 0, 0.05);
780
+ background: var(--mm-color-background-highlight); }
781
+
782
+ .mm-panels > .mm-panel > .mm-listview {
783
+ margin: 20px -20px; }
784
+
785
+ .mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
786
+ margin-top: -20px; }
787
+
788
+ .mm-listitem_divider {
789
+ text-overflow: ellipsis;
790
+ white-space: nowrap;
791
+ overflow: hidden;
792
+ background: rgba(0, 0, 0, 0.05);
793
+ background: var(--mm-color-background-highlight);
794
+ font-size: 75%;
795
+ text-transform: uppercase;
796
+ min-height: 20px;
797
+ min-height: var(--mm-line-height);
798
+ padding: 6.5px;
799
+ padding: calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);
800
+ padding-right: 10px;
801
+ padding-left: 20px; }
802
+
803
+ .mm-listitem_spacer {
804
+ padding-top: 44px;
805
+ padding-top: var(--mm-listitem-size); }
806
+
807
+ .mm-listitem_spacer > .mm-btn_next {
808
+ top: 44px;
809
+ top: var(--mm-listitem-size); }
810
+
811
+ [dir=rtl] .mm-listitem:after {
812
+ left: 0;
813
+ right: 20px; }
814
+
815
+ [dir=rtl] .mm-listitem__text {
816
+ padding-left: 10px;
817
+ padding-right: 20px; }
818
+
819
+ [dir=rtl] .mm-listitem__btn {
820
+ padding-left: 54px;
821
+ border-left-width: 0;
822
+ border-left-style: none; }
823
+
824
+ [dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
825
+ padding-right: 0;
826
+ border-right-width: 1px;
827
+ border-right-style: solid; }
828
+
829
+ .mm-page {
830
+ -webkit-box-sizing: border-box;
831
+ box-sizing: border-box;
832
+ position: relative; }
833
+
834
+ .mm-slideout {
835
+ -webkit-transition: -webkit-transform .4s ease;
836
+ transition: -webkit-transform .4s ease;
837
+ transition: transform .4s ease;
838
+ transition: transform .4s ease, -webkit-transform .4s ease;
839
+ transition: transform .4s ease,-webkit-transform .4s ease;
840
+ z-index: 1; }
841
+
842
+ .mm-wrapper_opened {
843
+ overflow-x: hidden;
844
+ position: relative; }
845
+
846
+ .mm-wrapper_background .mm-page {
847
+ background: inherit; }
848
+
849
+ .mm-menu_offcanvas {
850
+ display: none;
851
+ position: fixed;
852
+ right: auto;
853
+ z-index: 0; }
854
+
855
+ .mm-menu_offcanvas.mm-menu_opened {
856
+ display: block; }
857
+
858
+ .mm-menu_offcanvas {
859
+ width: 80%;
860
+ min-width: 240px;
861
+ max-width: 440px; }
862
+
863
+ .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
864
+ -webkit-transform: translate3d(80vw, 0, 0);
865
+ transform: translate3d(80vw, 0, 0); }
866
+
867
+ @media all and (max-width: 300px) {
868
+ .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
869
+ -webkit-transform: translate3d(240px, 0, 0);
870
+ transform: translate3d(240px, 0, 0); } }
871
+
872
+ @media all and (min-width: 550px) {
873
+ .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
874
+ -webkit-transform: translate3d(440px, 0, 0);
875
+ transform: translate3d(440px, 0, 0); } }
876
+
877
+ .mm-wrapper__blocker {
878
+ background: rgba(3, 2, 1, 0);
879
+ overflow: hidden;
880
+ display: none;
881
+ width: 100%;
882
+ height: 100%;
883
+ position: fixed;
884
+ top: 0;
885
+ left: 0;
886
+ z-index: 2; }
887
+
888
+ .mm-wrapper_blocking {
889
+ overflow: hidden; }
890
+
891
+ .mm-wrapper_blocking body {
892
+ overflow: hidden; }
893
+
894
+ .mm-wrapper_blocking .mm-wrapper__blocker {
895
+ display: block; }
896
+
897
+ .mm-sronly {
898
+ border: 0 !important;
899
+ clip: rect(1px, 1px, 1px, 1px) !important;
900
+ -webkit-clip-path: inset(50%) !important;
901
+ clip-path: inset(50%) !important;
902
+ white-space: nowrap !important;
903
+ width: 1px !important;
904
+ min-width: 1px !important;
905
+ height: 1px !important;
906
+ min-height: 1px !important;
907
+ padding: 0 !important;
908
+ overflow: hidden !important;
909
+ position: absolute !important; }
910
+
911
+ .mm-menu_autoheight {
912
+ -webkit-transition: none .4s ease;
913
+ transition: none .4s ease;
914
+ -webkit-transition-property: height,-webkit-transform;
915
+ transition-property: height,-webkit-transform;
916
+ transition-property: transform,height;
917
+ transition-property: transform,height,-webkit-transform; }
918
+
919
+ .mm-menu_autoheight:not(.mm-menu_offcanvas) {
920
+ position: relative; }
921
+
922
+ .mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
923
+ max-height: 80%; }
924
+
925
+ .mm-menu_autoheight-measuring .mm-panel {
926
+ display: block !important; }
927
+
928
+ .mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
929
+ display: none !important; }
930
+
931
+ .mm-menu_autoheight-measuring .mm-panels > .mm-panel {
932
+ bottom: auto !important;
933
+ height: auto !important; }
934
+
935
+ [class*=mm-menu_columns-] {
936
+ -webkit-transition-property: width;
937
+ transition-property: width; }
938
+
939
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel {
940
+ right: auto;
941
+ -webkit-transition-property: width,-webkit-transform;
942
+ transition-property: width,-webkit-transform;
943
+ transition-property: width,transform;
944
+ transition-property: width,transform,-webkit-transform; }
945
+
946
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
947
+ display: block !important; }
948
+
949
+ [class*=mm-panel_columns-] {
950
+ border-right: 1px solid;
951
+ border-color: inherit; }
952
+
953
+ .mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
954
+ border-right: none; }
955
+
956
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
957
+ -webkit-transform: translate3d(0, 0, 0);
958
+ transform: translate3d(0, 0, 0); }
959
+
960
+ .mm-menu_columns-0 .mm-panels > .mm-panel {
961
+ z-index: 0; }
962
+
963
+ .mm-menu_columns-0 .mm-panels > .mm-panel else {
964
+ width: 100%; }
965
+
966
+ .mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
967
+ -webkit-transform: translate3d(100%, 0, 0);
968
+ transform: translate3d(100%, 0, 0); }
969
+
970
+ .mm-menu_columns-0 {
971
+ width: 80%;
972
+ min-width: 240px;
973
+ max-width: 0; }
974
+
975
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
976
+ -webkit-transform: translate3d(80vw, 0, 0);
977
+ transform: translate3d(80vw, 0, 0); }
978
+
979
+ @media all and (max-width: 300px) {
980
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
981
+ -webkit-transform: translate3d(240px, 0, 0);
982
+ transform: translate3d(240px, 0, 0); } }
983
+
984
+ @media all and (min-width: 0px) {
985
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
986
+ -webkit-transform: translate3d(0, 0, 0);
987
+ transform: translate3d(0, 0, 0); } }
988
+
989
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
990
+ -webkit-transform: translate3d(-80vw, 0, 0);
991
+ transform: translate3d(-80vw, 0, 0); }
992
+
993
+ @media all and (max-width: 300px) {
994
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
995
+ -webkit-transform: translate3d(-240px, 0, 0);
996
+ transform: translate3d(-240px, 0, 0); } }
997
+
998
+ @media all and (min-width: 0px) {
999
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1000
+ -webkit-transform: translate3d(0, 0, 0);
1001
+ transform: translate3d(0, 0, 0); } }
1002
+
1003
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
1004
+ -webkit-transform: translate3d(100%, 0, 0);
1005
+ transform: translate3d(100%, 0, 0); }
1006
+
1007
+ .mm-menu_columns-1 .mm-panels > .mm-panel {
1008
+ z-index: 1;
1009
+ width: 100%; }
1010
+
1011
+ .mm-menu_columns-1 .mm-panels > .mm-panel else {
1012
+ width: 100%; }
1013
+
1014
+ .mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
1015
+ -webkit-transform: translate3d(200%, 0, 0);
1016
+ transform: translate3d(200%, 0, 0); }
1017
+
1018
+ .mm-menu_columns-1 {
1019
+ width: 80%;
1020
+ min-width: 240px;
1021
+ max-width: 440px; }
1022
+
1023
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
1024
+ -webkit-transform: translate3d(80vw, 0, 0);
1025
+ transform: translate3d(80vw, 0, 0); }
1026
+
1027
+ @media all and (max-width: 300px) {
1028
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
1029
+ -webkit-transform: translate3d(240px, 0, 0);
1030
+ transform: translate3d(240px, 0, 0); } }
1031
+
1032
+ @media all and (min-width: 550px) {
1033
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
1034
+ -webkit-transform: translate3d(440px, 0, 0);
1035
+ transform: translate3d(440px, 0, 0); } }
1036
+
1037
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1038
+ -webkit-transform: translate3d(-80vw, 0, 0);
1039
+ transform: translate3d(-80vw, 0, 0); }
1040
+
1041
+ @media all and (max-width: 300px) {
1042
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1043
+ -webkit-transform: translate3d(-240px, 0, 0);
1044
+ transform: translate3d(-240px, 0, 0); } }
1045
+
1046
+ @media all and (min-width: 550px) {
1047
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1048
+ -webkit-transform: translate3d(-440px, 0, 0);
1049
+ transform: translate3d(-440px, 0, 0); } }
1050
+
1051
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
1052
+ -webkit-transform: translate3d(200%, 0, 0);
1053
+ transform: translate3d(200%, 0, 0); }
1054
+
1055
+ .mm-menu_columns-2 .mm-panels > .mm-panel {
1056
+ z-index: 2;
1057
+ width: 50%; }
1058
+
1059
+ .mm-menu_columns-2 .mm-panels > .mm-panel else {
1060
+ width: 100%; }
1061
+
1062
+ .mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
1063
+ -webkit-transform: translate3d(300%, 0, 0);
1064
+ transform: translate3d(300%, 0, 0); }
1065
+
1066
+ .mm-menu_columns-2 {
1067
+ width: 80%;
1068
+ min-width: 240px;
1069
+ max-width: 880px; }
1070
+
1071
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
1072
+ -webkit-transform: translate3d(80vw, 0, 0);
1073
+ transform: translate3d(80vw, 0, 0); }
1074
+
1075
+ @media all and (max-width: 300px) {
1076
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
1077
+ -webkit-transform: translate3d(240px, 0, 0);
1078
+ transform: translate3d(240px, 0, 0); } }
1079
+
1080
+ @media all and (min-width: 1100px) {
1081
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
1082
+ -webkit-transform: translate3d(880px, 0, 0);
1083
+ transform: translate3d(880px, 0, 0); } }
1084
+
1085
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1086
+ -webkit-transform: translate3d(-80vw, 0, 0);
1087
+ transform: translate3d(-80vw, 0, 0); }
1088
+
1089
+ @media all and (max-width: 300px) {
1090
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1091
+ -webkit-transform: translate3d(-240px, 0, 0);
1092
+ transform: translate3d(-240px, 0, 0); } }
1093
+
1094
+ @media all and (min-width: 1100px) {
1095
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1096
+ -webkit-transform: translate3d(-880px, 0, 0);
1097
+ transform: translate3d(-880px, 0, 0); } }
1098
+
1099
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
1100
+ -webkit-transform: translate3d(300%, 0, 0);
1101
+ transform: translate3d(300%, 0, 0); }
1102
+
1103
+ .mm-menu_columns-3 .mm-panels > .mm-panel {
1104
+ z-index: 3;
1105
+ width: 33.34%; }
1106
+
1107
+ .mm-menu_columns-3 .mm-panels > .mm-panel else {
1108
+ width: 100%; }
1109
+
1110
+ .mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
1111
+ -webkit-transform: translate3d(400%, 0, 0);
1112
+ transform: translate3d(400%, 0, 0); }
1113
+
1114
+ .mm-menu_columns-3 {
1115
+ width: 80%;
1116
+ min-width: 240px;
1117
+ max-width: 1320px; }
1118
+
1119
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
1120
+ -webkit-transform: translate3d(80vw, 0, 0);
1121
+ transform: translate3d(80vw, 0, 0); }
1122
+
1123
+ @media all and (max-width: 300px) {
1124
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
1125
+ -webkit-transform: translate3d(240px, 0, 0);
1126
+ transform: translate3d(240px, 0, 0); } }
1127
+
1128
+ @media all and (min-width: 1650px) {
1129
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
1130
+ -webkit-transform: translate3d(1320px, 0, 0);
1131
+ transform: translate3d(1320px, 0, 0); } }
1132
+
1133
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1134
+ -webkit-transform: translate3d(-80vw, 0, 0);
1135
+ transform: translate3d(-80vw, 0, 0); }
1136
+
1137
+ @media all and (max-width: 300px) {
1138
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1139
+ -webkit-transform: translate3d(-240px, 0, 0);
1140
+ transform: translate3d(-240px, 0, 0); } }
1141
+
1142
+ @media all and (min-width: 1650px) {
1143
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1144
+ -webkit-transform: translate3d(-1320px, 0, 0);
1145
+ transform: translate3d(-1320px, 0, 0); } }
1146
+
1147
+ [class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
1148
+ -webkit-transform: translate3d(400%, 0, 0);
1149
+ transform: translate3d(400%, 0, 0); }
1150
+
1151
+ .mm-menu_columns-4 .mm-panels > .mm-panel {
1152
+ z-index: 4;
1153
+ width: 25%; }
1154
+
1155
+ .mm-menu_columns-4 .mm-panels > .mm-panel else {
1156
+ width: 100%; }
1157
+
1158
+ .mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
1159
+ -webkit-transform: translate3d(500%, 0, 0);
1160
+ transform: translate3d(500%, 0, 0); }
1161
+
1162
+ .mm-menu_columns-4 {
1163
+ width: 80%;
1164
+ min-width: 240px;
1165
+ max-width: 1760px; }
1166
+
1167
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
1168
+ -webkit-transform: translate3d(80vw, 0, 0);
1169
+ transform: translate3d(80vw, 0, 0); }
1170
+
1171
+ @media all and (max-width: 300px) {
1172
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
1173
+ -webkit-transform: translate3d(240px, 0, 0);
1174
+ transform: translate3d(240px, 0, 0); } }
1175
+
1176
+ @media all and (min-width: 2200px) {
1177
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
1178
+ -webkit-transform: translate3d(1760px, 0, 0);
1179
+ transform: translate3d(1760px, 0, 0); } }
1180
+
1181
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1182
+ -webkit-transform: translate3d(-80vw, 0, 0);
1183
+ transform: translate3d(-80vw, 0, 0); }
1184
+
1185
+ @media all and (max-width: 300px) {
1186
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1187
+ -webkit-transform: translate3d(-240px, 0, 0);
1188
+ transform: translate3d(-240px, 0, 0); } }
1189
+
1190
+ @media all and (min-width: 2200px) {
1191
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
1192
+ -webkit-transform: translate3d(-1760px, 0, 0);
1193
+ transform: translate3d(-1760px, 0, 0); } }
1194
+
1195
+ [class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
1196
+ width: 100%;
1197
+ max-width: 100%;
1198
+ min-width: 100%; }
1199
+
1200
+ .mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
1201
+ -webkit-transition-property: width,min-width,max-width,-webkit-transform;
1202
+ transition-property: width,min-width,max-width,-webkit-transform;
1203
+ transition-property: width,min-width,max-width,transform;
1204
+ transition-property: width,min-width,max-width,transform,-webkit-transform; }
1205
+
1206
+ .mm-counter {
1207
+ color: rgba(0, 0, 0, 0.3);
1208
+ color: var(--mm-color-text-dimmed);
1209
+ text-align: right;
1210
+ display: block;
1211
+ min-width: 44px;
1212
+ float: right; }
1213
+
1214
+ .mm-listitem_nosubitems > .mm-counter {
1215
+ display: none; }
1216
+
1217
+ [dir=rtl] .mm-counter {
1218
+ text-align: left;
1219
+ float: left; }
1220
+
1221
+ .mm-listitem_divider {
1222
+ opacity: 1;
1223
+ -webkit-transition: opacity .4s ease;
1224
+ transition: opacity .4s ease; }
1225
+
1226
+ .mm-menu_dividers-light .mm-listitem_divider {
1227
+ background: inherit;
1228
+ font-size: inherit;
1229
+ color: rgba(0, 0, 0, 0.3);
1230
+ color: var(--mm-color-text-dimmed);
1231
+ padding-top: 18px;
1232
+ padding-top: calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);
1233
+ padding-bottom: 6px;
1234
+ padding-bottom: calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25); }
1235
+
1236
+ .mm-menu_border-none .mm-listitem_divider {
1237
+ border-top-width: 1px;
1238
+ border-top-style: solid; }
1239
+
1240
+ .mm-listview_fixeddivider {
1241
+ background: inherit;
1242
+ display: none;
1243
+ width: 100%;
1244
+ position: absolute;
1245
+ top: 0;
1246
+ left: 0;
1247
+ right: 0;
1248
+ z-index: 10; }
1249
+
1250
+ .mm-listview_fixeddivider:after {
1251
+ content: none !important;
1252
+ display: none !important; }
1253
+
1254
+ .mm-panel_dividers .mm-listview_fixeddivider {
1255
+ display: block; }
1256
+
1257
+ .mm-wrapper_opened.mm-dragging .mm-menu, .mm-wrapper_opened.mm-dragging .mm-slideout {
1258
+ -webkit-transition-duration: 0s;
1259
+ transition-duration: 0s; }
1260
+
1261
+ .mm-menu_dropdown {
1262
+ -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
1263
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
1264
+ height: 80%; }
1265
+
1266
+ .mm-wrapper_dropdown .mm-slideout {
1267
+ -webkit-transform: none !important;
1268
+ transform: none !important;
1269
+ z-index: 0; }
1270
+
1271
+ .mm-wrapper_dropdown .mm-wrapper__blocker {
1272
+ -webkit-transition-delay: 0s !important;
1273
+ transition-delay: 0s !important;
1274
+ z-index: 1; }
1275
+
1276
+ .mm-wrapper_dropdown .mm-menu_dropdown {
1277
+ z-index: 2; }
1278
+
1279
+ .mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
1280
+ display: none; }
1281
+
1282
+ [class*=mm-menu_tip-]:before {
1283
+ content: '';
1284
+ background: inherit;
1285
+ -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
1286
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
1287
+ display: block;
1288
+ width: 15px;
1289
+ height: 15px;
1290
+ position: absolute;
1291
+ z-index: 0;
1292
+ -webkit-transform: rotate(45deg);
1293
+ transform: rotate(45deg); }
1294
+
1295
+ .mm-menu_tip-left:before {
1296
+ left: 22px; }
1297
+
1298
+ .mm-menu_tip-right:before {
1299
+ right: 22px; }
1300
+
1301
+ .mm-menu_tip-top:before {
1302
+ top: -8px; }
1303
+
1304
+ .mm-menu_tip-bottom:before {
1305
+ bottom: -8px; }
1306
+
1307
+ .mm-menu {
1308
+ --mm-iconbar-size:44px; }
1309
+
1310
+ .mm-iconbar {
1311
+ color: rgba(0, 0, 0, 0.3);
1312
+ color: var(--mm-color-text-dimmed);
1313
+ border: 0 solid rgba(0, 0, 0, 0.1);
1314
+ border-color: var(--mm-color-border);
1315
+ border-right-width: 1px;
1316
+ text-align: center;
1317
+ overflow: hidden;
1318
+ -webkit-box-sizing: border-box;
1319
+ box-sizing: border-box;
1320
+ width: 44px;
1321
+ width: var(--mm-iconbar-size);
1322
+ position: absolute;
1323
+ top: 0;
1324
+ left: 0;
1325
+ bottom: 0;
1326
+ z-index: 2; }
1327
+
1328
+ .mm-menu_iconbar .mm-navbars_bottom, .mm-menu_iconbar .mm-navbars_top, .mm-menu_iconbar .mm-panels {
1329
+ left: 44px;
1330
+ left: var(--mm-iconbar-size); }
1331
+
1332
+ .mm-iconbar__bottom, .mm-iconbar__top {
1333
+ width: inherit;
1334
+ position: absolute; }
1335
+
1336
+ .mm-iconbar__bottom > *, .mm-iconbar__top > * {
1337
+ -webkit-box-sizing: border-box;
1338
+ box-sizing: border-box;
1339
+ display: block;
1340
+ padding: 11px 0; }
1341
+
1342
+ .mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
1343
+ text-decoration: none; }
1344
+
1345
+ .mm-iconbar__top {
1346
+ top: 0; }
1347
+
1348
+ .mm-iconbar__bottom {
1349
+ bottom: 0; }
1350
+
1351
+ .mm-iconbar__tab_selected {
1352
+ background: rgba(255, 255, 255, 0.4);
1353
+ background: var(--mm-color-background-emphasis); }
1354
+
1355
+ .mm-menu {
1356
+ --mm-iconpanel-size:44px; }
1357
+
1358
+ .mm-panel_iconpanel-1, .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
1359
+ width: calc(100% - (44px * 1));
1360
+ width: calc(100% - (var(--mm-iconpanel-size) * 1)); }
1361
+
1362
+ .mm-panel_iconpanel-2, .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
1363
+ width: calc(100% - (44px * 2));
1364
+ width: calc(100% - (var(--mm-iconpanel-size) * 2)); }
1365
+
1366
+ .mm-panel_iconpanel-3, .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
1367
+ width: calc(100% - (44px * 3));
1368
+ width: calc(100% - (var(--mm-iconpanel-size) * 3)); }
1369
+
1370
+ .mm-panel_iconpanel-first ~ .mm-panel, .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
1371
+ width: calc(100% - 44px);
1372
+ width: calc(100% - var(--mm-iconpanel-size)); }
1373
+
1374
+ .mm-menu_iconpanel .mm-panels > .mm-listview_fixeddivider, .mm-menu_iconpanel .mm-panels > .mm-panel {
1375
+ left: auto;
1376
+ -webkit-transition-property: width,-webkit-transform;
1377
+ transition-property: width,-webkit-transform;
1378
+ transition-property: transform,width;
1379
+ transition-property: transform,width,-webkit-transform; }
1380
+
1381
+ .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
1382
+ border-left-width: 1px;
1383
+ border-left-style: solid; }
1384
+
1385
+ .mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
1386
+ display: block !important; }
1387
+
1388
+ .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
1389
+ overflow-y: hidden;
1390
+ -webkit-transform: unset;
1391
+ transform: unset; }
1392
+
1393
+ .mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
1394
+ opacity: 0; }
1395
+
1396
+ .mm-panel__blocker {
1397
+ background: inherit;
1398
+ opacity: 0;
1399
+ display: block;
1400
+ position: absolute;
1401
+ top: 0;
1402
+ right: 0;
1403
+ left: 0;
1404
+ z-index: 3;
1405
+ -webkit-transition: opacity .4s ease;
1406
+ transition: opacity .4s ease; }
1407
+
1408
+ .mm-panel_opened-parent .mm-panel__blocker {
1409
+ opacity: .6;
1410
+ bottom: -100000px; }
1411
+
1412
+ [dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-listview_fixeddivider, [dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
1413
+ left: 0;
1414
+ right: auto;
1415
+ -webkit-transition-property: width,-webkit-transform;
1416
+ transition-property: width,-webkit-transform;
1417
+ transition-property: transform,width;
1418
+ transition-property: transform,width,-webkit-transform; }
1419
+
1420
+ [dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
1421
+ border-left: none;
1422
+ border-right: 1px solid;
1423
+ border-color: inherit; }
1424
+
1425
+ .mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
1426
+ outline: 0;
1427
+ background: rgba(255, 255, 255, 0.4);
1428
+ background: var(--mm-color-background-emphasis); }
1429
+
1430
+ .mm-wrapper__blocker .mm-tabstart {
1431
+ cursor: default;
1432
+ display: block;
1433
+ width: 100%;
1434
+ height: 100%; }
1435
+
1436
+ .mm-wrapper__blocker .mm-tabend {
1437
+ opacity: 0;
1438
+ position: absolute;
1439
+ bottom: 0; }
1440
+
1441
+ .mm-navbars_bottom, .mm-navbars_top {
1442
+ background: inherit;
1443
+ border-color: inherit;
1444
+ border-width: 0;
1445
+ position: absolute;
1446
+ left: 0;
1447
+ right: 0;
1448
+ z-index: 1; }
1449
+
1450
+ .mm-navbars_bottom > .mm-navbar, .mm-navbars_top > .mm-navbar {
1451
+ border-width: 0;
1452
+ display: -webkit-box;
1453
+ display: -ms-flexbox;
1454
+ display: flex;
1455
+ position: relative; }
1456
+
1457
+ .mm-navbars_bottom > .mm-navbar:not(.mm-navbar_has-btns), .mm-navbars_top > .mm-navbar:not(.mm-navbar_has-btns) {
1458
+ padding: 0; }
1459
+
1460
+ .mm-navbars_bottom > .mm-navbar > :not(img):not(.mm-btn), .mm-navbars_top > .mm-navbar > :not(img):not(.mm-btn) {
1461
+ -webkit-box-flex: 1;
1462
+ -ms-flex: 1;
1463
+ flex: 1; }
1464
+
1465
+ .mm-navbars_top {
1466
+ border-bottom-style: solid;
1467
+ border-bottom-width: 1px;
1468
+ top: 0;
1469
+ bottom: auto; }
1470
+
1471
+ .mm-menu_navbar_top-1 .mm-panels {
1472
+ top: 44px;
1473
+ top: calc(var(--mm-navbar-size) * 1); }
1474
+
1475
+ .mm-menu_navbar_top-2 .mm-panels {
1476
+ top: 88px;
1477
+ top: calc(var(--mm-navbar-size) * 2); }
1478
+
1479
+ .mm-menu_navbar_top-3 .mm-panels {
1480
+ top: 132px;
1481
+ top: calc(var(--mm-navbar-size) * 3); }
1482
+
1483
+ .mm-menu_navbar_top-4 .mm-panels {
1484
+ top: 176px;
1485
+ top: calc(var(--mm-navbar-size) * 4); }
1486
+
1487
+ .mm-navbars_bottom {
1488
+ border-top-style: solid;
1489
+ border-top-width: 1px;
1490
+ bottom: 0;
1491
+ top: auto; }
1492
+
1493
+ .mm-menu_navbar_bottom-1 .mm-panels {
1494
+ bottom: 44px;
1495
+ bottom: calc(var(--mm-navbar-size) * 1); }
1496
+
1497
+ .mm-menu_navbar_bottom-2 .mm-panels {
1498
+ bottom: 88px;
1499
+ bottom: calc(var(--mm-navbar-size) * 2); }
1500
+
1501
+ .mm-menu_navbar_bottom-3 .mm-panels {
1502
+ bottom: 132px;
1503
+ bottom: calc(var(--mm-navbar-size) * 3); }
1504
+
1505
+ .mm-menu_navbar_bottom-4 .mm-panels {
1506
+ bottom: 176px;
1507
+ bottom: calc(var(--mm-navbar-size) * 4); }
1508
+
1509
+ .mm-navbar_size-2 {
1510
+ height: 88px;
1511
+ height: calc(var(--mm-navbar-size) * 2); }
1512
+
1513
+ .mm-navbar_size-3 {
1514
+ height: 132px;
1515
+ height: calc(var(--mm-navbar-size) * 3); }
1516
+
1517
+ .mm-navbar_size-4 {
1518
+ height: 176px;
1519
+ height: calc(var(--mm-navbar-size) * 4); }
1520
+
1521
+ .mm-navbar__breadcrumbs {
1522
+ text-overflow: ellipsis;
1523
+ white-space: nowrap;
1524
+ overflow: hidden;
1525
+ -webkit-overflow-scrolling: touch;
1526
+ overflow-x: auto;
1527
+ text-align: left;
1528
+ padding: 0 0 0 20px; }
1529
+
1530
+ .mm-navbar__breadcrumbs > * {
1531
+ display: inline-block;
1532
+ padding-right: 6px;
1533
+ padding-top: 12px;
1534
+ padding-top: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);
1535
+ padding-bottom: 12px;
1536
+ padding-bottom: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5); }
1537
+
1538
+ .mm-navbar__breadcrumbs > a {
1539
+ text-decoration: underline; }
1540
+
1541
+ .mm-navbar_has-btns .mm-navbar__breadcrumbs {
1542
+ margin-left: -44px; }
1543
+
1544
+ .mm-navbar_has-btns .mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
1545
+ margin-left: 0;
1546
+ padding-left: 0; }
1547
+
1548
+ .mm-navbar__tab_selected {
1549
+ background: inherit !important;
1550
+ color: inherit !important;
1551
+ border-width: 1px;
1552
+ border-style: solid;
1553
+ border-color: inherit; }
1554
+
1555
+ .mm-navbar__tab_selected:first-child {
1556
+ border-left: none; }
1557
+
1558
+ .mm-navbar__tab_selected:last-child {
1559
+ border-right: none; }
1560
+
1561
+ .mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
1562
+ background: inherit !important;
1563
+ color: inherit !important; }
1564
+
1565
+ .mm-navbars_top .mm-navbar_tabs:not(:last-child) {
1566
+ border-bottom-width: 1px;
1567
+ border-bottom-style: solid; }
1568
+
1569
+ .mm-navbars_top .mm-navbar__tab_selected {
1570
+ border-bottom: none;
1571
+ margin-bottom: -1px; }
1572
+
1573
+ .mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected {
1574
+ border-top: none; }
1575
+
1576
+ .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
1577
+ background: inherit;
1578
+ color: inherit; }
1579
+
1580
+ .mm-navbars_bottom .mm-navbar_tabs:not(:first-child) {
1581
+ border-top-width: 1px;
1582
+ border-top-style: solid; }
1583
+
1584
+ .mm-navbars_bottom .mm-navbar__tab_selected {
1585
+ border-top: none;
1586
+ margin-top: -1px; }
1587
+
1588
+ .mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected {
1589
+ border-bottom: none; }
1590
+
1591
+ .mm-navbar_tabs > a:not(.mm-navbar__tab_selected), .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
1592
+ background: rgba(255, 255, 255, 0.4);
1593
+ background: var(--mm-color-background-emphasis);
1594
+ color: rgba(0, 0, 0, 0.3);
1595
+ color: var(--mm-color-text-dimmed); }
1596
+
1597
+ .mm-searchfield {
1598
+ height: 44px;
1599
+ height: var(--mm-navbar-size);
1600
+ padding: 0;
1601
+ display: -webkit-box;
1602
+ display: -ms-flexbox;
1603
+ display: flex; }
1604
+
1605
+ .mm-searchfield input {
1606
+ border: none !important;
1607
+ outline: 0 !important;
1608
+ -webkit-box-shadow: none !important;
1609
+ box-shadow: none !important;
1610
+ border-radius: 4px;
1611
+ background: rgba(0, 0, 0, 0.05);
1612
+ background: var(--mm-color-background-highlight);
1613
+ color: rgba(0, 0, 0, 0.75);
1614
+ color: var(--mm-color-text);
1615
+ font: inherit;
1616
+ font-size: inherit;
1617
+ line-height: 35.2px;
1618
+ line-height: calc(var(--mm-navbar-size) * .7);
1619
+ display: block;
1620
+ -webkit-box-sizing: border-box;
1621
+ box-sizing: border-box;
1622
+ width: 100%;
1623
+ max-width: 100%;
1624
+ height: 24px;
1625
+ height: calc(var(--mm-navbar-size) * .7);
1626
+ min-height: unset;
1627
+ max-height: unset;
1628
+ margin: 0;
1629
+ padding: 0 10px; }
1630
+
1631
+ .mm-searchfield input::-ms-clear {
1632
+ display: none; }
1633
+
1634
+ .mm-searchfield__input {
1635
+ padding: 6.6px 10px 0 10px;
1636
+ padding-top: calc(var(--mm-navbar-size) * .15);
1637
+ position: relative; }
1638
+
1639
+ .mm-panel__noresultsmsg {
1640
+ color: rgba(0, 0, 0, 0.3);
1641
+ color: var(--mm-color-text-dimmed);
1642
+ text-align: center;
1643
+ font-size: 150%;
1644
+ padding: 44px 0; }
1645
+
1646
+ .mm-searchfield__btn {
1647
+ position: absolute;
1648
+ right: 0;
1649
+ top: 0;
1650
+ bottom: 0; }
1651
+
1652
+ .mm-panel_search {
1653
+ left: 0 !important;
1654
+ right: 0 !important;
1655
+ width: 100% !important;
1656
+ border-left: none !important; }
1657
+
1658
+ .mm-searchfield__input {
1659
+ -webkit-box-flex: 1;
1660
+ -ms-flex: 1;
1661
+ flex: 1;
1662
+ -webkit-box-sizing: border-box;
1663
+ box-sizing: border-box;
1664
+ width: 100%;
1665
+ max-width: 100%; }
1666
+
1667
+ .mm-searchfield__cancel {
1668
+ line-height: 44px;
1669
+ line-height: var(--mm-navbar-size);
1670
+ text-decoration: none;
1671
+ display: block;
1672
+ padding-right: 10px;
1673
+ margin-right: -100px;
1674
+ -webkit-transition: margin .4s ease;
1675
+ transition: margin .4s ease; }
1676
+
1677
+ .mm-searchfield__cancel-active {
1678
+ margin-right: 0; }
1679
+
1680
+ .mm-panel > .mm-searchfield {
1681
+ width: 100%;
1682
+ position: absolute;
1683
+ top: 0;
1684
+ left: 0; }
1685
+
1686
+ .mm-panel_has-searchfield {
1687
+ padding-top: 44px;
1688
+ padding-top: var(--mm-navbar-size); }
1689
+
1690
+ .mm-panel_has-navbar.mm-panel_has-searchfield {
1691
+ padding-top: 88px;
1692
+ padding-top: calc(var(--mm-navbar-size) * 2); }
1693
+
1694
+ .mm-panel_has-navbar.mm-panel_has-searchfield > .mm-searchfield {
1695
+ top: 44px;
1696
+ top: var(--mm-navbar-size); }
1697
+
1698
+ .mm-listitem_nosubitems > .mm-listitem__btn {
1699
+ display: none; }
1700
+
1701
+ .mm-listitem_nosubitems > .mm-listitem__text {
1702
+ padding-right: 10px; }
1703
+
1704
+ .mm-sectionindexer {
1705
+ background: inherit;
1706
+ text-align: center;
1707
+ font-size: 12px;
1708
+ -webkit-box-sizing: border-box;
1709
+ box-sizing: border-box;
1710
+ width: 20px;
1711
+ position: absolute;
1712
+ top: 0;
1713
+ bottom: 0;
1714
+ right: -20px;
1715
+ z-index: 15;
1716
+ -webkit-transition: right .4s ease;
1717
+ transition: right .4s ease;
1718
+ display: -webkit-box;
1719
+ display: -ms-flexbox;
1720
+ display: flex;
1721
+ -webkit-box-orient: vertical;
1722
+ -webkit-box-direction: normal;
1723
+ -ms-flex-direction: column;
1724
+ flex-direction: column;
1725
+ -webkit-box-pack: space-evenly;
1726
+ -ms-flex-pack: space-evenly;
1727
+ justify-content: space-evenly; }
1728
+
1729
+ .mm-sectionindexer a {
1730
+ color: rgba(0, 0, 0, 0.3);
1731
+ color: var(--mm-color-text-dimmed);
1732
+ line-height: 1;
1733
+ text-decoration: none;
1734
+ display: block; }
1735
+
1736
+ .mm-sectionindexer ~ .mm-panels {
1737
+ -webkit-transition: right .4s ease;
1738
+ transition: right .4s ease; }
1739
+
1740
+ .mm-menu_has-sectionindexer .mm-sectionindexer {
1741
+ right: 0; }
1742
+
1743
+ .mm-menu_has-sectionindexer .mm-panels {
1744
+ right: 20px; }
1745
+
1746
+ .mm-menu_navbar_top-1 .mm-sectionindexer {
1747
+ top: 46px;
1748
+ top: calc((var(--mm-navbar-size) * 1) + 2px); }
1749
+
1750
+ .mm-menu_navbar_top-2 .mm-sectionindexer {
1751
+ top: 90px;
1752
+ top: calc((var(--mm-navbar-size) * 2) + 2px); }
1753
+
1754
+ .mm-menu_navbar_top-3 .mm-sectionindexer {
1755
+ top: 134px;
1756
+ top: calc((var(--mm-navbar-size) * 3) + 2px); }
1757
+
1758
+ .mm-menu_navbar_top-4 .mm-sectionindexer {
1759
+ top: 178px;
1760
+ top: calc((var(--mm-navbar-size) * 4) + 2px); }
1761
+
1762
+ .mm-menu_navbar_bottom-1 .mm-sectionindexer {
1763
+ bottom: 46px;
1764
+ bottom: calc((var(--mm-navbar-size) * 1) + 2px); }
1765
+
1766
+ .mm-menu_navbar_bottom-2 .mm-sectionindexer {
1767
+ bottom: 90px;
1768
+ bottom: calc((var(--mm-navbar-size) * 2) + 2px); }
1769
+
1770
+ .mm-menu_navbar_bottom-3 .mm-sectionindexer {
1771
+ bottom: 134px;
1772
+ bottom: calc((var(--mm-navbar-size) * 3) + 2px); }
1773
+
1774
+ .mm-menu_navbar_bottom-4 .mm-sectionindexer {
1775
+ bottom: 178px;
1776
+ bottom: calc((var(--mm-navbar-size) * 4) + 2px); }
1777
+
1778
+ .mm-menu_selected-hover .mm-listitem > .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem > .mm-listitem__text, .mm-menu_selected-parent .mm-listitem > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem > .mm-listitem__text {
1779
+ -webkit-transition: background .4s ease;
1780
+ transition: background .4s ease; }
1781
+
1782
+ .mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected .mm-listitem__text {
1783
+ background: 0 0; }
1784
+
1785
+ .mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
1786
+ background: rgba(255, 255, 255, 0.4);
1787
+ background: var(--mm-color-background-emphasis); }
1788
+
1789
+ .mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) .mm-listitem__text {
1790
+ background: 0 0; }
1791
+
1792
+ .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
1793
+ background: rgba(255, 255, 255, 0.4);
1794
+ background: var(--mm-color-background-emphasis); }
1795
+
1796
+ .mm-menu, .mm-slideout {
1797
+ --mm-sidebar-collapsed-size:44px;
1798
+ --mm-sidebar-expanded-size:440px; }
1799
+
1800
+ .mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
1801
+ position: relative; }
1802
+
1803
+ .mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
1804
+ -webkit-transition-property: width,-webkit-transform;
1805
+ transition-property: width,-webkit-transform;
1806
+ transition-property: width,transform;
1807
+ transition-property: width,transform,-webkit-transform; }
1808
+
1809
+ .mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
1810
+ background: inherit;
1811
+ -webkit-box-sizing: border-box;
1812
+ box-sizing: border-box;
1813
+ min-height: 100vh; }
1814
+
1815
+ .mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
1816
+ display: block !important;
1817
+ top: 0 !important;
1818
+ right: auto !important;
1819
+ bottom: 0 !important;
1820
+ left: 0 !important; }
1821
+
1822
+ .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
1823
+ opacity: 0; }
1824
+
1825
+ .mm-wrapper_sidebar-collapsed .mm-slideout {
1826
+ width: calc(100% - 44px);
1827
+ width: calc(100% - var(--mm-sidebar-collapsed-size));
1828
+ -webkit-transform: translate3d(44px, 0, 0);
1829
+ transform: translate3d(44px, 0, 0);
1830
+ -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
1831
+ transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0); }
1832
+
1833
+ .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
1834
+ border-right-width: 1px;
1835
+ border-right-style: solid;
1836
+ min-width: 0 !important;
1837
+ max-width: 100000px !important; }
1838
+
1839
+ .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
1840
+ content: none;
1841
+ display: none; }
1842
+
1843
+ .mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
1844
+ overflow: visible; }
1845
+
1846
+ .mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
1847
+ display: none !important; }
1848
+
1849
+ .mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
1850
+ width: calc(100% - 440px);
1851
+ width: calc(100% - var(--mm-sidebar-expanded-size));
1852
+ -webkit-transform: translate3d(440px, 0, 0);
1853
+ transform: translate3d(440px, 0, 0);
1854
+ -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
1855
+ transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0); }
1856
+
1857
+ .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
1858
+ width: 440px;
1859
+ width: var(--mm-sidebar-expanded-size); }
1860
+
1861
+ .mm-menu__blocker {
1862
+ background: rgba(3, 2, 1, 0);
1863
+ display: block;
1864
+ position: absolute;
1865
+ top: 0;
1866
+ right: 0;
1867
+ bottom: 0;
1868
+ left: 0;
1869
+ z-index: 3; }
1870
+
1871
+ .mm-menu_opened .mm-menu__blocker {
1872
+ display: none; }
1873
+
1874
+ [dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
1875
+ -webkit-transform: translate3d(0, 0, 0);
1876
+ transform: translate3d(0, 0, 0); }
1877
+
1878
+ [dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
1879
+ -webkit-transform: translate3d(0, 0, 0);
1880
+ transform: translate3d(0, 0, 0); }
1881
+
1882
+ [dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
1883
+ -webkit-transform: translate3d(0, 0, 0);
1884
+ transform: translate3d(0, 0, 0); }
1885
+
1886
+ label.mm-toggle {
1887
+ border-radius: 34px;
1888
+ min-width: 58px;
1889
+ width: 58px;
1890
+ height: 34px;
1891
+ margin: 0 10px;
1892
+ margin-top: 5px;
1893
+ margin-top: calc((var(--mm-listitem-size) - 34px)/ 2); }
1894
+
1895
+ label.mm-toggle:before {
1896
+ content: '';
1897
+ display: block;
1898
+ border-radius: 34px;
1899
+ width: 32px;
1900
+ height: 32px;
1901
+ margin: 1px; }
1902
+
1903
+ input.mm-toggle {
1904
+ position: absolute;
1905
+ left: -10000px; }
1906
+
1907
+ input.mm-toggle:checked ~ label.mm-toggle:before {
1908
+ float: right; }
1909
+
1910
+ label.mm-toggle {
1911
+ background: rgba(0, 0, 0, 0.1);
1912
+ background: var(--mm-color-border); }
1913
+
1914
+ label.mm-toggle:before {
1915
+ background: #f3f3f3;
1916
+ background: var(--mm-color-background); }
1917
+
1918
+ input.mm-toggle:checked ~ label.mm-toggle {
1919
+ background: #4bd963; }
1920
+
1921
+ label.mm-check {
1922
+ width: 34px;
1923
+ height: 34px; }
1924
+
1925
+ label.mm-check:before {
1926
+ border-color: rgba(0, 0, 0, 0.75);
1927
+ border-color: var(--mm-color-text);
1928
+ content: '';
1929
+ display: block;
1930
+ border-left: 3px solid;
1931
+ border-bottom: 3px solid;
1932
+ width: 40%;
1933
+ height: 20%;
1934
+ margin: 25% 0 0 20%;
1935
+ opacity: .1;
1936
+ -webkit-transform: rotate(-45deg);
1937
+ transform: rotate(-45deg); }
1938
+
1939
+ input.mm-check {
1940
+ position: absolute;
1941
+ left: -10000px; }
1942
+
1943
+ input.mm-check:checked ~ label.mm-check:before {
1944
+ opacity: 1; }
1945
+
1946
+ [dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
1947
+ float: left; }
1948
+
1949
+ .mm-menu_border-none .mm-listitem:after, .mm-panel_border-none .mm-listitem:after {
1950
+ content: none; }
1951
+
1952
+ .mm-menu_border-full .mm-listitem:after, .mm-panel_border-full .mm-listitem:after {
1953
+ left: 0 !important; }
1954
+
1955
+ .mm-menu_border-offset .mm-listitem:after, .mm-panel_border-offset .mm-listitem:after {
1956
+ right: 20px; }
1957
+
1958
+ .mm-menu_fx-menu-zoom {
1959
+ -webkit-transition: -webkit-transform .4s ease;
1960
+ transition: -webkit-transform .4s ease;
1961
+ transition: transform .4s ease;
1962
+ transition: transform .4s ease, -webkit-transform .4s ease;
1963
+ transition: transform .4s ease,-webkit-transform .4s ease; }
1964
+
1965
+ .mm-wrapper_opened .mm-menu_fx-menu-zoom {
1966
+ -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
1967
+ transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
1968
+ -webkit-transform-origin: left center;
1969
+ transform-origin: left center; }
1970
+
1971
+ .mm-wrapper_opening .mm-menu_fx-menu-zoom {
1972
+ -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
1973
+ transform: scale(1, 1) translate3d(0, 0, 0); }
1974
+
1975
+ .mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right {
1976
+ -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
1977
+ transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
1978
+ -webkit-transform-origin: right center;
1979
+ transform-origin: right center; }
1980
+
1981
+ .mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right {
1982
+ -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
1983
+ transform: scale(1, 1) translate3d(0, 0, 0); }
1984
+
1985
+ .mm-menu_fx-menu-slide {
1986
+ -webkit-transition: -webkit-transform .4s ease;
1987
+ transition: -webkit-transform .4s ease;
1988
+ transition: transform .4s ease;
1989
+ transition: transform .4s ease, -webkit-transform .4s ease;
1990
+ transition: transform .4s ease,-webkit-transform .4s ease; }
1991
+
1992
+ .mm-wrapper_opened .mm-menu_fx-menu-slide {
1993
+ -webkit-transform: translate3d(-30%, 0, 0);
1994
+ transform: translate3d(-30%, 0, 0); }
1995
+
1996
+ .mm-wrapper_opening .mm-menu_fx-menu-slide {
1997
+ -webkit-transform: translate3d(0, 0, 0);
1998
+ transform: translate3d(0, 0, 0); }
1999
+
2000
+ .mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
2001
+ -webkit-transform: translate3d(30%, 0, 0);
2002
+ transform: translate3d(30%, 0, 0); }
2003
+
2004
+ .mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
2005
+ -webkit-transform: translate3d(0, 0, 0);
2006
+ transform: translate3d(0, 0, 0); }
2007
+
2008
+ .mm-menu_fx-menu-fade {
2009
+ opacity: 0;
2010
+ -webkit-transition: opacity .4s ease;
2011
+ transition: opacity .4s ease; }
2012
+
2013
+ .mm-wrapper_opening .mm-menu_fx-menu-fade {
2014
+ opacity: 1; }
2015
+
2016
+ .mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
2017
+ -webkit-transition-property: none;
2018
+ transition-property: none; }
2019
+
2020
+ .mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
2021
+ -webkit-transform: translate3d(0, 0, 0);
2022
+ transform: translate3d(0, 0, 0); }
2023
+
2024
+ .mm-menu_fx-panels-zoom .mm-panel, .mm-panel_fx-zoom {
2025
+ -webkit-transform-origin: left center;
2026
+ transform-origin: left center;
2027
+ -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
2028
+ transform: scale(1.5, 1.5) translate3d(100%, 0, 0); }
2029
+
2030
+ .mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened, .mm-panel_fx-zoom.mm-panel_opened {
2031
+ -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
2032
+ transform: scale(1, 1) translate3d(0, 0, 0); }
2033
+
2034
+ .mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent, .mm-panel_fx-zoom.mm-panel_opened-parent {
2035
+ -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
2036
+ transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }
2037
+
2038
+ .mm-menu_fx-panels-slide-0 .mm-panel_opened-parent, .mm-panel_fx-slide-0.mm-panel_opened-parent {
2039
+ -webkit-transform: translate3d(0, 0, 0);
2040
+ transform: translate3d(0, 0, 0); }
2041
+
2042
+ .mm-menu_fx-panels-slide-100 .mm-panel_opened-parent, .mm-panel_fx-slide-100.mm-panel_opened-parent {
2043
+ -webkit-transform: translate3d(-100%, 0, 0);
2044
+ transform: translate3d(-100%, 0, 0); }
2045
+
2046
+ .mm-menu_fx-panels-slide-up .mm-panel, .mm-panel_fx-slide-up {
2047
+ -webkit-transform: translate3d(0, 100%, 0);
2048
+ transform: translate3d(0, 100%, 0); }
2049
+
2050
+ .mm-menu_fx-panels-slide-up .mm-panel_opened, .mm-menu_fx-panels-slide-up .mm-panel_opened-parent, .mm-panel_fx-slide-up.mm-panel_opened {
2051
+ -webkit-transform: translate3d(0, 0, 0);
2052
+ transform: translate3d(0, 0, 0); }
2053
+
2054
+ .mm-menu_fx-panels-slide-right .mm-panel, .mm-panel_fx-slide-right {
2055
+ -webkit-transform: translate3d(-100%, 0, 0);
2056
+ transform: translate3d(-100%, 0, 0); }
2057
+
2058
+ .mm-menu_fx-panels-slide-right .mm-panel_opened, .mm-menu_fx-panels-slide-right .mm-panel_opened-parent, .mm-panel_fx-slide-right.mm-panel_opened {
2059
+ -webkit-transform: translate3d(0, 0, 0);
2060
+ transform: translate3d(0, 0, 0); }
2061
+
2062
+ [class*=mm-menu_fx-listitems-] .mm-listitem {
2063
+ -webkit-transition: none .4s ease;
2064
+ transition: none .4s ease; }
2065
+
2066
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1) {
2067
+ -webkit-transition-delay: 50ms;
2068
+ transition-delay: 50ms; }
2069
+
2070
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2) {
2071
+ -webkit-transition-delay: .1s;
2072
+ transition-delay: .1s; }
2073
+
2074
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3) {
2075
+ -webkit-transition-delay: 150ms;
2076
+ transition-delay: 150ms; }
2077
+
2078
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4) {
2079
+ -webkit-transition-delay: .2s;
2080
+ transition-delay: .2s; }
2081
+
2082
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5) {
2083
+ -webkit-transition-delay: 250ms;
2084
+ transition-delay: 250ms; }
2085
+
2086
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6) {
2087
+ -webkit-transition-delay: .3s;
2088
+ transition-delay: .3s; }
2089
+
2090
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7) {
2091
+ -webkit-transition-delay: 350ms;
2092
+ transition-delay: 350ms; }
2093
+
2094
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8) {
2095
+ -webkit-transition-delay: .4s;
2096
+ transition-delay: .4s; }
2097
+
2098
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9) {
2099
+ -webkit-transition-delay: 450ms;
2100
+ transition-delay: 450ms; }
2101
+
2102
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10) {
2103
+ -webkit-transition-delay: .5s;
2104
+ transition-delay: .5s; }
2105
+
2106
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11) {
2107
+ -webkit-transition-delay: 550ms;
2108
+ transition-delay: 550ms; }
2109
+
2110
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12) {
2111
+ -webkit-transition-delay: .6s;
2112
+ transition-delay: .6s; }
2113
+
2114
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13) {
2115
+ -webkit-transition-delay: 650ms;
2116
+ transition-delay: 650ms; }
2117
+
2118
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14) {
2119
+ -webkit-transition-delay: .7s;
2120
+ transition-delay: .7s; }
2121
+
2122
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15) {
2123
+ -webkit-transition-delay: 750ms;
2124
+ transition-delay: 750ms; }
2125
+
2126
+ .mm-menu_fx-listitems-slide .mm-listitem {
2127
+ -webkit-transition-property: opacity,-webkit-transform;
2128
+ transition-property: opacity,-webkit-transform;
2129
+ transition-property: transform,opacity;
2130
+ transition-property: transform,opacity,-webkit-transform;
2131
+ -webkit-transform: translate3d(50%, 0, 0);
2132
+ transform: translate3d(50%, 0, 0);
2133
+ opacity: 0; }
2134
+
2135
+ .mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem {
2136
+ -webkit-transform: translate3d(0, 0, 0);
2137
+ transform: translate3d(0, 0, 0);
2138
+ opacity: 1; }
2139
+
2140
+ .mm-menu_fx-listitems-fade .mm-listitem {
2141
+ -webkit-transition-property: opacity;
2142
+ transition-property: opacity;
2143
+ opacity: 0; }
2144
+
2145
+ .mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem {
2146
+ opacity: 1; }
2147
+
2148
+ .mm-menu_fx-listitems-drop .mm-listitem {
2149
+ -webkit-transition-property: opacity,top;
2150
+ transition-property: opacity,top;
2151
+ opacity: 0;
2152
+ top: -25%; }
2153
+
2154
+ .mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem {
2155
+ opacity: 1;
2156
+ top: 0; }
2157
+
2158
+ .mm-menu_fullscreen {
2159
+ width: 100%;
2160
+ min-width: 140px;
2161
+ max-width: 10000px; }
2162
+
2163
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
2164
+ -webkit-transform: translate3d(100vw, 0, 0);
2165
+ transform: translate3d(100vw, 0, 0); }
2166
+
2167
+ @media all and (max-width: 140px) {
2168
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
2169
+ -webkit-transform: translate3d(140px, 0, 0);
2170
+ transform: translate3d(140px, 0, 0); } }
2171
+
2172
+ @media all and (min-width: 10000px) {
2173
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
2174
+ -webkit-transform: translate3d(10000px, 0, 0);
2175
+ transform: translate3d(10000px, 0, 0); } }
2176
+
2177
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
2178
+ -webkit-transform: translate3d(-100vw, 0, 0);
2179
+ transform: translate3d(-100vw, 0, 0); }
2180
+
2181
+ @media all and (max-width: 140px) {
2182
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
2183
+ -webkit-transform: translate3d(-140px, 0, 0);
2184
+ transform: translate3d(-140px, 0, 0); } }
2185
+
2186
+ @media all and (min-width: 10000px) {
2187
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
2188
+ -webkit-transform: translate3d(-10000px, 0, 0);
2189
+ transform: translate3d(-10000px, 0, 0); } }
2190
+
2191
+ .mm-menu_fullscreen.mm-menu_position-top {
2192
+ height: 100vh;
2193
+ min-height: 140px;
2194
+ max-height: 10000px; }
2195
+
2196
+ .mm-menu_fullscreen.mm-menu_position-bottom {
2197
+ height: 100vh;
2198
+ min-height: 140px;
2199
+ max-height: 10000px; }
2200
+
2201
+ .mm-menu_listview-justify .mm-panels > .mm-panel:after, .mm-menu_listview-justify .mm-panels > .mm-panel:before, .mm-panels > .mm-panel_listview-justify:after, .mm-panels > .mm-panel_listview-justify:before {
2202
+ content: none;
2203
+ display: none; }
2204
+
2205
+ .mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview, .mm-panels > .mm-panel_listview-justify .mm-listview {
2206
+ display: -webkit-box;
2207
+ display: -ms-flexbox;
2208
+ display: flex;
2209
+ -webkit-box-orient: vertical;
2210
+ -webkit-box-direction: normal;
2211
+ -ms-flex-direction: column;
2212
+ flex-direction: column;
2213
+ height: 100%;
2214
+ margin-top: 0;
2215
+ margin-bottom: 0; }
2216
+
2217
+ .mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem, .mm-panels > .mm-panel_listview-justify .mm-listitem {
2218
+ -webkit-box-flex: 1;
2219
+ -ms-flex: 1 0 auto;
2220
+ flex: 1 0 auto;
2221
+ min-height: 44px; }
2222
+
2223
+ .mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem:not(.mm-listitem_divider), .mm-panels > .mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider) {
2224
+ display: -webkit-box;
2225
+ display: -ms-flexbox;
2226
+ display: flex;
2227
+ -webkit-box-orient: vertical;
2228
+ -webkit-box-direction: normal;
2229
+ -ms-flex-direction: column;
2230
+ flex-direction: column; }
2231
+
2232
+ .mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text, .mm-panels > .mm-panel_listview-justify .mm-listitem__text {
2233
+ -webkit-box-sizing: border-box;
2234
+ box-sizing: border-box;
2235
+ -webkit-box-flex: 1;
2236
+ -ms-flex: 1 0 auto;
2237
+ flex: 1 0 auto;
2238
+ display: -webkit-box;
2239
+ display: -ms-flexbox;
2240
+ display: flex;
2241
+ -webkit-box-align: center;
2242
+ -ms-flex-align: center;
2243
+ align-items: center; }
2244
+
2245
+ .mm-listview_inset {
2246
+ list-style: inside disc;
2247
+ width: 100%;
2248
+ padding: 0 30px 15px 30px;
2249
+ margin: 0; }
2250
+
2251
+ .mm-listview_inset .mm-listitem {
2252
+ padding: 5px 0; }
2253
+
2254
+ .mm-menu_multiline .mm-listitem__text, .mm-panel_multiline .mm-listitem__text {
2255
+ text-overflow: clip;
2256
+ white-space: normal; }
2257
+
2258
+ [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
2259
+ opacity: 0; }
2260
+
2261
+ .mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
2262
+ opacity: .3;
2263
+ -webkit-transition: opacity .4s ease .4s;
2264
+ transition: opacity .4s ease .4s; }
2265
+
2266
+ .mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
2267
+ background: inherit; }
2268
+
2269
+ .mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
2270
+ background: #000; }
2271
+
2272
+ .mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
2273
+ background: #fff; }
2274
+
2275
+ .mm-menu_popup {
2276
+ -webkit-transition: opacity .4s ease;
2277
+ transition: opacity .4s ease;
2278
+ opacity: 0;
2279
+ -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
2280
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
2281
+ height: 80%;
2282
+ min-height: 140px;
2283
+ max-height: 880px;
2284
+ top: 50%;
2285
+ left: 50%;
2286
+ bottom: auto;
2287
+ right: auto;
2288
+ z-index: 2;
2289
+ -webkit-transform: translate3d(-50%, -50%, 0);
2290
+ transform: translate3d(-50%, -50%, 0); }
2291
+
2292
+ .mm-menu_popup.mm-menu_opened ~ .mm-slideout {
2293
+ -webkit-transform: none !important;
2294
+ transform: none !important;
2295
+ z-index: 0; }
2296
+
2297
+ .mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
2298
+ -webkit-transition-delay: 0s !important;
2299
+ transition-delay: 0s !important;
2300
+ z-index: 1; }
2301
+
2302
+ .mm-wrapper_opening .mm-menu_popup {
2303
+ opacity: 1; }
2304
+
2305
+ .mm-menu_position-right {
2306
+ left: auto;
2307
+ right: 0; }
2308
+
2309
+ .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
2310
+ -webkit-transform: translate3d(-80vw, 0, 0);
2311
+ transform: translate3d(-80vw, 0, 0); }
2312
+
2313
+ @media all and (max-width: 300px) {
2314
+ .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
2315
+ -webkit-transform: translate3d(-240px, 0, 0);
2316
+ transform: translate3d(-240px, 0, 0); } }
2317
+
2318
+ @media all and (min-width: 550px) {
2319
+ .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
2320
+ -webkit-transform: translate3d(-440px, 0, 0);
2321
+ transform: translate3d(-440px, 0, 0); } }
2322
+
2323
+ .mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
2324
+ -webkit-transition: -webkit-transform .4s ease;
2325
+ transition: -webkit-transform .4s ease;
2326
+ transition: transform .4s ease;
2327
+ transition: transform .4s ease, -webkit-transform .4s ease;
2328
+ transition: transform .4s ease,-webkit-transform .4s ease; }
2329
+
2330
+ .mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
2331
+ z-index: 2; }
2332
+
2333
+ .mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
2334
+ -webkit-transform: none !important;
2335
+ transform: none !important;
2336
+ z-index: 0; }
2337
+
2338
+ .mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
2339
+ z-index: 1; }
2340
+
2341
+ .mm-menu_position-front {
2342
+ -webkit-transform: translate3d(-100%, 0, 0);
2343
+ transform: translate3d(-100%, 0, 0); }
2344
+
2345
+ .mm-menu_position-front.mm-menu_position-right {
2346
+ -webkit-transform: translate3d(100%, 0, 0);
2347
+ transform: translate3d(100%, 0, 0); }
2348
+
2349
+ .mm-menu_position-bottom, .mm-menu_position-top {
2350
+ width: 100%;
2351
+ min-width: 100%;
2352
+ max-width: 100%; }
2353
+
2354
+ .mm-menu_position-top {
2355
+ -webkit-transform: translate3d(0, -100%, 0);
2356
+ transform: translate3d(0, -100%, 0); }
2357
+
2358
+ .mm-menu_position-top {
2359
+ height: 80vh;
2360
+ min-height: 140px;
2361
+ max-height: 880px; }
2362
+
2363
+ .mm-menu_position-bottom {
2364
+ -webkit-transform: translate3d(0, 100%, 0);
2365
+ transform: translate3d(0, 100%, 0);
2366
+ top: auto; }
2367
+
2368
+ .mm-menu_position-bottom {
2369
+ height: 80vh;
2370
+ min-height: 140px;
2371
+ max-height: 880px; }
2372
+
2373
+ .mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
2374
+ -webkit-transform: translate3d(0, 0, 0);
2375
+ transform: translate3d(0, 0, 0); }
2376
+
2377
+ .mm-menu_shadow-page:after {
2378
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
2379
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
2380
+ -webkit-box-shadow: var(--mm-shadow);
2381
+ box-shadow: var(--mm-shadow);
2382
+ content: "";
2383
+ display: block;
2384
+ width: 20px;
2385
+ height: 120%;
2386
+ position: absolute;
2387
+ left: 100%;
2388
+ top: -10%;
2389
+ z-index: 100;
2390
+ -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
2391
+ clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%); }
2392
+
2393
+ .mm-menu_shadow-page.mm-menu_position-right:after {
2394
+ left: auto;
2395
+ right: 100%;
2396
+ -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
2397
+ clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%); }
2398
+
2399
+ .mm-menu_shadow-page.mm-menu_position-front:after {
2400
+ content: none;
2401
+ display: none; }
2402
+
2403
+ .mm-menu_shadow-menu {
2404
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
2405
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
2406
+ -webkit-box-shadow: var(--mm-shadow);
2407
+ box-shadow: var(--mm-shadow); }
2408
+
2409
+ .mm-menu_shadow-panels .mm-panels > .mm-panel {
2410
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
2411
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
2412
+ -webkit-box-shadow: var(--mm-shadow);
2413
+ box-shadow: var(--mm-shadow); }
2414
+
2415
+ .mm-menu_theme-white {
2416
+ --mm-color-border:rgba( 0,0,0, 0.1 );
2417
+ --mm-color-button:rgba( 0,0,0, 0.3 );
2418
+ --mm-color-text:rgba( 0,0,0, 0.7 );
2419
+ --mm-color-text-dimmed:rgba( 0,0,0, 0.3 );
2420
+ --mm-color-background:#fff;
2421
+ --mm-color-background-highlight:rgba( 0,0,0, 0.06 );
2422
+ --mm-color-background-emphasis:rgba( 0,0,0, 0.03 );
2423
+ --mm-shadow:0 0 10px rgba( 0,0,0, 0.2 ); }
2424
+
2425
+ .mm-menu_theme-dark {
2426
+ --mm-color-border:rgba( 0,0,0, 0.3 );
2427
+ --mm-color-button:rgba( 255,255,255, 0.4 );
2428
+ --mm-color-text:rgba( 255,255,255, 0.85 );
2429
+ --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
2430
+ --mm-color-background:#333;
2431
+ --mm-color-background-highlight:rgba( 255,255,255, 0.08 );
2432
+ --mm-color-background-emphasis:rgba( 0,0,0, 0.1 );
2433
+ --mm-shadow:0 0 20px rgba( 0,0,0, 0.5 ); }
2434
+
2435
+ .mm-menu_theme-black {
2436
+ --mm-color-border:rgba( 255,255,255, 0.25 );
2437
+ --mm-color-button:rgba( 255,255,255, 0.4 );
2438
+ --mm-color-text:rgba( 255,255,255, 0.75 );
2439
+ --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
2440
+ --mm-color-background:#000;
2441
+ --mm-color-background-highlight:rgba( 255,255,255, 0.2 );
2442
+ --mm-color-background-emphasis:rgba( 255,255,255, 0.15 );
2443
+ --mm-shadow:none; }
2444
+
2445
+ .mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
2446
+ margin: 0 !important; }
2447
+
2448
+ .mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
2449
+ content: '';
2450
+ display: block;
2451
+ clear: both; }
2452
+
2453
+ .mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
2454
+ padding: 0;
2455
+ float: left;
2456
+ position: relative;
2457
+ width: 50%;
2458
+ height: 0;
2459
+ padding-top: 50%; }
2460
+
2461
+ .mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
2462
+ left: 0;
2463
+ top: 0;
2464
+ border-right-width: 1px;
2465
+ border-right-style: solid;
2466
+ z-index: -1; }
2467
+
2468
+ .mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
2469
+ width: 12.5%;
2470
+ padding-top: 12.5%; }
2471
+
2472
+ .mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
2473
+ width: 25%;
2474
+ padding-top: 25%; }
2475
+
2476
+ .mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
2477
+ width: 75%;
2478
+ padding-top: 75%; }
2479
+
2480
+ .mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
2481
+ width: 100%;
2482
+ padding-top: 100%; }
2483
+
2484
+ .mm-menu_tileview .mm-listitem__text, .mm-panel_tileview .mm-listitem__text {
2485
+ line-height: 1px;
2486
+ text-align: center;
2487
+ padding: 50% 10px 0 10px;
2488
+ margin: 0;
2489
+ position: absolute;
2490
+ top: 0;
2491
+ right: 1px;
2492
+ bottom: 1px;
2493
+ left: 0; }
2494
+
2495
+ .mm-menu_tileview .mm-listitem__btn, .mm-panel_tileview .mm-listitem__btn {
2496
+ width: auto; }
2497
+
2498
+ .mm-menu_tileview .mm-listitem__btn:after, .mm-menu_tileview .mm-listitem__btn:before, .mm-panel_tileview .mm-listitem__btn:after, .mm-panel_tileview .mm-listitem__btn:before {
2499
+ content: none;
2500
+ display: none; }
2501
+
2502
+ .mm-menu_tileview .mm-listitem_divider, .mm-panel_tileview .mm-listitem_divider {
2503
+ display: none; }
2504
+
2505
+ .mm-menu_tileview .mm-panel, .mm-panel_tileview {
2506
+ padding-left: 0;
2507
+ padding-right: 0; }
2508
+
2509
+ .mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
2510
+ content: none;
2511
+ display: none; }
2512
+
2513
+ body.modal-open .mm-slideout {
2514
+ z-index: unset; }
2515
+
2516
+ .brz {
2517
+ /*!
2518
  * animate.css -http://daneden.me/animate
2519
  * Version - 3.7.0
2520
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
2521
  *
2522
  * Copyright (c) 2018 Daniel Eden
2523
+ */
2524
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2525
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2526
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2527
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2528
+ /*!
2529
  * animate.css -http://daneden.me/animate
2530
  * Version - 3.7.0
2531
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
2532
  *
2533
  * Copyright (c) 2018 Daniel Eden
2534
+ */
2535
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2536
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2537
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2538
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ }
2539
+ html {
2540
+ -webkit-box-sizing: border-box;
2541
+ box-sizing: border-box; }
2542
+ *,
2543
+ *:before,
2544
+ *:after {
2545
+ -webkit-box-sizing: border-box;
2546
+ box-sizing: border-box; }
2547
+
2548
+ @-ms-viewport {
2549
+ width: device-width; }
2550
+ .brz .brz-figcaption,
2551
+ .brz .brz-figure,
2552
+ .brz .brz-section {
2553
+ display: block; }
2554
+ body {
2555
+ margin: 0; }
2556
+ body.brz-ed {
2557
+ background-color: #f3f3f3; }
2558
+ body.brz::before, body.brz::after {
2559
+ display: none; }
2560
+ .brz-iframe {
2561
+ margin: 0;
2562
+ padding: 0;
2563
+ border: 0;
2564
+ font: inherit;
2565
+ font-size: 100%;
2566
+ vertical-align: baseline; }
2567
+ .brz {
2568
+ -webkit-font-smoothing: antialiased;
2569
+ -moz-osx-font-smoothing: grayscale; }
2570
+ .brz .brz-root__container.brz-reset-all {
2571
+ display: block;
2572
+ overflow: hidden; }
2573
+ .brz .brz-hr {
2574
+ -webkit-box-sizing: content-box;
2575
+ box-sizing: content-box;
2576
+ height: 0;
2577
+ overflow: visible;
2578
+ margin: 0; }
2579
+ .brz .brz-h1,
2580
+ .brz .brz-h2,
2581
+ .brz .brz-h3,
2582
+ .brz .brz-h4,
2583
+ .brz .brz-h5,
2584
+ .brz .brz-h6 {
2585
+ margin-top: 0;
2586
+ margin-bottom: 0;
2587
+ padding: 0; }
2588
+ .brz .brz-p {
2589
+ margin-top: 0;
2590
+ margin-bottom: 0;
2591
+ padding-top: 0;
2592
+ padding-bottom: 0; }
2593
+ .brz .brz-span {
2594
+ float: none;
2595
+ margin: 0;
2596
+ padding: 0;
2597
+ font-family: inherit;
2598
+ font-size: inherit;
2599
+ font-weight: inherit;
2600
+ line-height: inherit;
2601
+ letter-spacing: inherit;
2602
+ color: inherit; }
2603
+ .brz .brz-ol,
2604
+ .brz .brz-ul,
2605
+ .brz .brz-dl {
2606
+ margin: 0;
2607
+ list-style: none;
2608
+ padding: 0; }
2609
+ .brz .brz-ol .brz-ol,
2610
+ .brz .brz-ul .brz-ul,
2611
+ .brz .brz-ol .brz-ul,
2612
+ .brz .brz-ul .brz-ol {
2613
+ margin: 0; }
2614
+ .brz .brz-dt {
2615
+ font-weight: bold; }
2616
+ .brz .brz-dd {
2617
+ margin-bottom: 0.5rem;
2618
+ margin-left: 0; }
2619
+ .brz .brz-blockquote {
2620
+ margin: 0 0 1rem; }
2621
+ .brz .brz-dfn {
2622
+ font-style: italic; }
2623
+ .brz .brz-b,
2624
+ .brz .brz-strong {
2625
+ font-weight: 700; }
2626
+ .brz .brz-a {
2627
+ color: #3dbfe8;
2628
+ text-decoration: none;
2629
+ background-color: transparent;
2630
+ -webkit-text-decoration-skip: objects;
2631
+ -webkit-box-shadow: none;
2632
+ box-shadow: none; }
2633
+ .brz .brz-a[href]:hover {
2634
+ color: #1aabd8;
2635
+ -webkit-box-shadow: none;
2636
+ box-shadow: none;
2637
+ cursor: pointer; }
2638
+ .brz .brz-a:focus, .brz .brz-a:active, .brz .brz-a:hover {
2639
+ outline: none; }
2640
+ .brz .brz-a.brz-btn[href] {
2641
+ text-decoration: none; }
2642
+ .brz .brz-figure {
2643
+ margin: 0;
2644
+ min-width: auto;
2645
+ min-height: auto; }
2646
+ .brz .brz-img {
2647
+ vertical-align: middle;
2648
+ border-style: none; }
2649
+ .brz svg:not(:root) {
2650
+ overflow: hidden; }
2651
+ .brz .brz-button,
2652
+ .brz .brz-input,
2653
+ .brz .brz-label,
2654
+ .brz .brz-textarea {
2655
+ -ms-touch-action: manipulation;
2656
+ touch-action: manipulation; }
2657
+ .brz .brz-table {
2658
+ border-collapse: collapse; }
2659
+ .brz .brz-caption {
2660
+ padding-top: 0.75rem;
2661
+ padding-bottom: 0.75rem;
2662
+ color: #828b92;
2663
+ text-align: left;
2664
+ caption-side: bottom; }
2665
+ .brz .brz-th {
2666
+ text-align: left; }
2667
+ .brz .brz-form {
2668
+ margin: 0; }
2669
+ .brz .brz-label {
2670
+ display: inline-block;
2671
+ margin-bottom: 0;
2672
+ font-weight: normal; }
2673
+ .brz .brz-button:focus {
2674
+ outline: 1px dotted;
2675
+ outline: 5px auto -webkit-focus-ring-color; }
2676
+ .brz .brz-input,
2677
+ .brz .brz-button,
2678
+ .brz .brz-select,
2679
+ .brz .brz-optgroup,
2680
+ .brz .brz-textarea {
2681
+ padding: 0;
2682
+ margin: 0;
2683
+ font-family: inherit;
2684
+ font-size: inherit;
2685
+ line-height: inherit; }
2686
+ .brz .brz-button,
2687
+ .brz .brz-input {
2688
+ overflow: visible; }
2689
+ .brz .brz-button,
2690
+ .brz .brz-select {
2691
+ text-transform: none; }
2692
+ .brz .brz-button {
2693
+ -webkit-appearance: button; }
2694
+ .brz .brz-button::-moz-focus-inner {
2695
+ padding: 0;
2696
+ border-style: none; }
2697
+ .brz .brz-input[type="radio"],
2698
+ .brz .brz-input[type="checkbox"] {
2699
+ -webkit-box-sizing: border-box;
2700
+ box-sizing: border-box;
2701
+ padding: 0; }
2702
+ .brz .brz-input[type="date"],
2703
+ .brz .brz-input[type="time"],
2704
+ .brz .brz-input[type="datetime-local"],
2705
+ .brz .brz-input[type="month"] {
2706
+ -webkit-appearance: listbox; }
2707
+ .brz .brz-textarea {
2708
+ overflow: auto;
2709
+ resize: vertical; }
2710
+ .brz .brz-fieldset {
2711
+ min-width: 0;
2712
+ padding: 0;
2713
+ margin: 0;
2714
+ border: 0; }
2715
+ .brz .brz-iframe,
2716
+ .brz .brz-object {
2717
+ margin-bottom: 0;
2718
+ max-width: 100%; }
2719
+ .brz .brz-iframe {
2720
+ margin: 0;
2721
+ padding: 0;
2722
+ border: 0;
2723
+ font: inherit;
2724
+ font-size: 100%;
2725
+ vertical-align: baseline; }
2726
+ .brz [hidden] {
2727
+ display: none !important; }
2728
+ .brz .brz-reset-all {
2729
+ -ms-flex-line-pack: stretch;
2730
+ align-content: stretch;
2731
+ -webkit-box-align: stretch;
2732
+ -ms-flex-align: stretch;
2733
+ align-items: stretch;
2734
+ -ms-flex-item-align: auto;
2735
+ align-self: auto;
2736
+ -webkit-animation-delay: 0s;
2737
+ animation-delay: 0s;
2738
+ -webkit-animation-direction: normal;
2739
+ animation-direction: normal;
2740
+ -webkit-animation-duration: 0s;
2741
+ animation-duration: 0s;
2742
+ -webkit-animation-fill-mode: none;
2743
+ animation-fill-mode: none;
2744
+ -webkit-animation-iteration-count: 1;
2745
+ animation-iteration-count: 1;
2746
+ -webkit-animation-name: none;
2747
+ animation-name: none;
2748
+ -webkit-animation-play-state: running;
2749
+ animation-play-state: running;
2750
+ -webkit-animation-timing-function: ease;
2751
+ animation-timing-function: ease;
2752
+ azimuth: center;
2753
+ -webkit-backface-visibility: visible;
2754
+ backface-visibility: visible;
2755
+ background-attachment: scroll;
2756
+ background-blend-mode: normal;
2757
+ background-clip: border-box;
2758
+ background-color: transparent;
2759
+ background-image: none;
2760
+ background-origin: padding-box;
2761
+ background-position: 0% 0%;
2762
+ background-repeat: repeat;
2763
+ background-size: auto auto;
2764
+ block-size: auto;
2765
+ border-block-end-color: currentcolor;
2766
+ border-block-end-style: none;
2767
+ border-block-end-width: medium;
2768
+ border-block-start-color: currentcolor;
2769
+ border-block-start-style: none;
2770
+ border-block-start-width: medium;
2771
+ border-bottom-color: currentcolor;
2772
+ border-bottom-left-radius: 0;
2773
+ border-bottom-right-radius: 0;
2774
+ border-bottom-style: none;
2775
+ border-bottom-width: medium;
2776
+ border-collapse: separate;
2777
+ border-image-outset: 0s;
2778
+ border-image-repeat: stretch;
2779
+ border-image-slice: 100%;
2780
+ border-image-source: none;
2781
+ border-image-width: 1;
2782
+ border-inline-end-color: currentcolor;
2783
+ border-inline-end-style: none;
2784
+ border-inline-end-width: medium;
2785
+ border-inline-start-color: currentcolor;
2786
+ border-inline-start-style: none;
2787
+ border-inline-start-width: medium;
2788
+ border-left-color: currentcolor;
2789
+ border-left-style: none;
2790
+ border-left-width: medium;
2791
+ border-right-color: currentcolor;
2792
+ border-right-style: none;
2793
+ border-right-width: medium;
2794
+ border-spacing: 0;
2795
+ border-top-color: currentcolor;
2796
+ border-top-left-radius: 0;
2797
+ border-top-right-radius: 0;
2798
+ border-top-style: none;
2799
+ border-top-width: medium;
2800
+ bottom: auto;
2801
+ -webkit-box-decoration-break: slice;
2802
+ box-decoration-break: slice;
2803
+ -webkit-box-shadow: none;
2804
+ box-shadow: none;
2805
+ -webkit-box-sizing: content-box;
2806
+ box-sizing: content-box;
2807
+ -webkit-column-break-after: auto;
2808
+ break-after: auto;
2809
+ -webkit-column-break-before: auto;
2810
+ break-before: auto;
2811
+ -webkit-column-break-inside: auto;
2812
+ break-inside: auto;
2813
+ caption-side: top;
2814
+ caret-color: auto;
2815
+ clear: none;
2816
+ clip: auto;
2817
+ -webkit-clip-path: none;
2818
+ clip-path: none;
2819
+ color: initial;
2820
+ -webkit-column-count: auto;
2821
+ column-count: auto;
2822
+ -webkit-column-fill: balance;
2823
+ column-fill: balance;
2824
+ -webkit-column-gap: normal;
2825
+ column-gap: normal;
2826
+ -webkit-column-rule-color: currentcolor;
2827
+ column-rule-color: currentcolor;
2828
+ -webkit-column-rule-style: none;
2829
+ column-rule-style: none;
2830
+ -webkit-column-rule-width: medium;
2831
+ column-rule-width: medium;
2832
+ -webkit-column-span: none;
2833
+ column-span: none;
2834
+ -webkit-column-width: auto;
2835
+ column-width: auto;
2836
+ content: normal;
2837
+ counter-increment: none;
2838
+ counter-reset: none;
2839
+ cursor: auto;
2840
+ display: inline;
2841
+ empty-cells: show;
2842
+ -webkit-filter: none;
2843
+ filter: none;
2844
+ -ms-flex-preferred-size: auto;
2845
+ flex-basis: auto;
2846
+ -webkit-box-orient: horizontal;
2847
+ -webkit-box-direction: normal;
2848
+ -ms-flex-direction: row;
2849
+ flex-direction: row;
2850
+ -webkit-box-flex: 0;
2851
+ -ms-flex-positive: 0;
2852
+ flex-grow: 0;
2853
+ -ms-flex-negative: 1;
2854
+ flex-shrink: 1;
2855
+ -ms-flex-wrap: nowrap;
2856
+ flex-wrap: nowrap;
2857
+ float: none;
2858
+ font-family: initial;
2859
+ -webkit-font-feature-settings: normal;
2860
+ font-feature-settings: normal;
2861
+ -webkit-font-kerning: auto;
2862
+ font-kerning: auto;
2863
+ -webkit-font-language-override: normal;
2864
+ font-language-override: normal;
2865
+ font-size: medium;
2866
+ font-size-adjust: none;
2867
+ font-stretch: normal;
2868
+ font-style: normal;
2869
+ font-synthesis: weight style;
2870
+ font-variant: normal;
2871
+ font-variant-alternates: normal;
2872
+ font-variant-caps: normal;
2873
+ font-variant-east-asian: normal;
2874
+ -webkit-font-variant-ligatures: normal;
2875
+ font-variant-ligatures: normal;
2876
+ font-variant-numeric: normal;
2877
+ font-variant-position: normal;
2878
+ font-weight: normal;
2879
+ grid-auto-columns: auto;
2880
+ grid-auto-flow: row;
2881
+ grid-auto-rows: auto;
2882
+ grid-column-end: auto;
2883
+ grid-column-gap: 0;
2884
+ grid-column-start: auto;
2885
+ grid-row-end: auto;
2886
+ grid-row-gap: 0;
2887
+ grid-row-start: auto;
2888
+ grid-template-areas: none;
2889
+ grid-template-columns: none;
2890
+ grid-template-rows: none;
2891
+ height: auto;
2892
+ -webkit-hyphens: manual;
2893
+ -ms-hyphens: manual;
2894
+ hyphens: manual;
2895
+ image-orientation: 0deg;
2896
+ image-rendering: auto;
2897
+ image-resolution: 1dppx;
2898
+ ime-mode: auto;
2899
+ inline-size: auto;
2900
+ isolation: auto;
2901
+ -webkit-box-pack: start;
2902
+ -ms-flex-pack: start;
2903
+ justify-content: flex-start;
2904
+ left: auto;
2905
+ letter-spacing: normal;
2906
+ line-break: auto;
2907
+ line-height: normal;
2908
+ list-style-image: none;
2909
+ list-style-position: outside;
2910
+ list-style-type: disc;
2911
+ -webkit-margin-after: 0;
2912
+ margin-block-end: 0;
2913
+ -webkit-margin-before: 0;
2914
+ margin-block-start: 0;
2915
+ margin-bottom: 0;
2916
+ -webkit-margin-end: 0;
2917
+ margin-inline-end: 0;
2918
+ -webkit-margin-start: 0;
2919
+ margin-inline-start: 0;
2920
+ margin-left: 0;
2921
+ margin-right: 0;
2922
+ margin-top: 0;
2923
+ -webkit-mask-clip: border-box;
2924
+ mask-clip: border-box;
2925
+ -webkit-mask-composite: add;
2926
+ mask-composite: add;
2927
+ -webkit-mask-image: none;
2928
+ mask-image: none;
2929
+ mask-mode: match-source;
2930
+ -webkit-mask-origin: border-box;
2931
+ mask-origin: border-box;
2932
+ -webkit-mask-position: 0% 0%;
2933
+ mask-position: 0% 0%;
2934
+ -webkit-mask-repeat: repeat;
2935
+ mask-repeat: repeat;
2936
+ -webkit-mask-size: auto;
2937
+ mask-size: auto;
2938
+ mask-type: luminance;
2939
+ max-height: none;
2940
+ max-width: none;
2941
+ min-block-size: 0;
2942
+ min-height: 0;
2943
+ min-inline-size: 0;
2944
+ min-width: 0;
2945
+ mix-blend-mode: normal;
2946
+ -o-object-fit: fill;
2947
+ object-fit: fill;
2948
+ -o-object-position: 50% 50%;
2949
+ object-position: 50% 50%;
2950
+ offset-block-end: auto;
2951
+ offset-block-start: auto;
2952
+ offset-inline-end: auto;
2953
+ offset-inline-start: auto;
2954
+ opacity: 1;
2955
+ -webkit-box-ordinal-group: 1;
2956
+ -ms-flex-order: 0;
2957
+ order: 0;
2958
+ orphans: 2;
2959
+ outline-color: initial;
2960
+ outline-offset: 0;
2961
+ outline-style: none;
2962
+ outline-width: medium;
2963
+ overflow: visible;
2964
+ overflow-wrap: normal;
2965
+ overflow-x: visible;
2966
+ overflow-y: visible;
2967
+ -webkit-padding-after: 0;
2968
+ padding-block-end: 0;
2969
+ -webkit-padding-before: 0;
2970
+ padding-block-start: 0;
2971
+ padding-bottom: 0;
2972
+ -webkit-padding-end: 0;
2973
+ padding-inline-end: 0;
2974
+ -webkit-padding-start: 0;
2975
+ padding-inline-start: 0;
2976
+ padding-left: 0;
2977
+ padding-right: 0;
2978
+ padding-top: 0;
2979
+ page-break-after: auto;
2980
+ page-break-before: auto;
2981
+ page-break-inside: auto;
2982
+ -webkit-perspective: none;
2983
+ perspective: none;
2984
+ -webkit-perspective-origin: 50% 50%;
2985
+ perspective-origin: 50% 50%;
2986
+ pointer-events: auto;
2987
+ position: static;
2988
+ quotes: initial;
2989
+ resize: none;
2990
+ right: auto;
2991
+ ruby-align: space-around;
2992
+ ruby-merge: separate;
2993
+ ruby-position: over;
2994
+ scroll-behavior: auto;
2995
+ -ms-scroll-snap-coordinate: none;
2996
+ scroll-snap-coordinate: none;
2997
+ -ms-scroll-snap-destination: 0 0;
2998
+ scroll-snap-destination: 0 0;
2999
+ -ms-scroll-snap-points-x: none;
3000
+ scroll-snap-points-x: none;
3001
+ -ms-scroll-snap-points-y: none;
3002
+ scroll-snap-points-y: none;
3003
+ -ms-scroll-snap-type: none;
3004
+ scroll-snap-type: none;
3005
+ shape-image-threshold: 0;
3006
+ shape-margin: 0;
3007
+ shape-outside: none;
3008
+ -moz-tab-size: 8;
3009
+ -o-tab-size: 8;
3010
+ tab-size: 8;
3011
+ table-layout: auto;
3012
+ text-align: initial;
3013
+ text-align-last: auto;
3014
+ text-combine-upright: none;
3015
+ -webkit-text-decoration-color: currentcolor;
3016
+ text-decoration-color: currentcolor;
3017
+ -webkit-text-decoration-line: none;
3018
+ text-decoration-line: none;
3019
+ -webkit-text-decoration-style: solid;
3020
+ text-decoration-style: solid;
3021
+ -webkit-text-emphasis-color: currentcolor;
3022
+ text-emphasis-color: currentcolor;
3023
+ -webkit-text-emphasis-position: over;
3024
+ text-emphasis-position: over right;
3025
+ -webkit-text-emphasis-style: none;
3026
+ text-emphasis-style: none;
3027
+ text-indent: 0;
3028
+ text-justify: auto;
3029
+ text-orientation: mixed;
3030
+ text-overflow: clip;
3031
+ text-rendering: auto;
3032
+ text-shadow: none;
3033
+ text-transform: none;
3034
+ text-underline-position: auto;
3035
+ top: auto;
3036
+ -ms-touch-action: auto;
3037
+ touch-action: auto;
3038
+ -webkit-transform: none;
3039
+ transform: none;
3040
+ transform-box: border-box;
3041
+ -webkit-transform-origin: 50% 50% 0;
3042
+ transform-origin: 50% 50% 0;
3043
+ -webkit-transform-style: flat;
3044
+ transform-style: flat;
3045
+ -webkit-transition-delay: 0s;
3046
+ transition-delay: 0s;
3047
+ -webkit-transition-duration: 0s;
3048
+ transition-duration: 0s;
3049
+ -webkit-transition-property: all;
3050
+ transition-property: all;
3051
+ -webkit-transition-timing-function: ease;
3052
+ transition-timing-function: ease;
3053
+ vertical-align: baseline;
3054
+ visibility: visible;
3055
+ white-space: normal;
3056
+ widows: 2;
3057
+ width: auto;
3058
+ will-change: auto;
3059
+ word-break: normal;
3060
+ word-spacing: normal;
3061
+ word-wrap: normal;
3062
+ -webkit-writing-mode: horizontal-tb;
3063
+ -ms-writing-mode: lr-tb;
3064
+ writing-mode: horizontal-tb;
3065
+ z-index: auto;
3066
+ -webkit-appearance: none;
3067
+ -moz-appearance: none;
3068
+ -ms-appearance: none;
3069
+ appearance: none; }
3070
+ .brz .brz-h1,
3071
+ .brz .brz-h2,
3072
+ .brz .brz-h3,
3073
+ .brz .brz-h4,
3074
+ .brz .brz-h5,
3075
+ .brz .brz-h6 {
3076
+ font-family: inherit;
3077
+ font-weight: 700;
3078
+ line-height: 1.2;
3079
+ color: inherit; }
3080
+ .brz .brz-h1 {
3081
+ font-size: 55px;
3082
+ font-weight: 400; }
3083
+ .brz .brz-h2 {
3084
+ font-size: 40px; }
3085
+ .brz .brz-h3 {
3086
+ font-size: 32px; }
3087
+ .brz .brz-h4 {
3088
+ font-size: 26px; }
3089
+ .brz .brz-h5 {
3090
+ font-size: 19px; }
3091
+ .brz .brz-h6 {
3092
+ font-size: 14px; }
3093
+ .brz .brz-p {
3094
+ font-size: 14px;
3095
+ font-weight: normal; }
3096
+ .brz .brz-flex-xs-row-reverse {
3097
+ -webkit-box-orient: horizontal !important;
3098
+ -webkit-box-direction: reverse !important;
3099
+ -ms-flex-direction: row-reverse !important;
3100
+ flex-direction: row-reverse !important; }
3101
+ .brz .brz-flex-xs-column {
3102
+ -webkit-box-orient: vertical !important;
3103
+ -webkit-box-direction: normal !important;
3104
+ -ms-flex-direction: column !important;
3105
+ flex-direction: column !important; }
3106
+ .brz .brz-flex-xs-column-reverse {
3107
+ -webkit-box-orient: vertical !important;
3108
+ -webkit-box-direction: reverse !important;
3109
+ -ms-flex-direction: column-reverse !important;
3110
+ flex-direction: column-reverse !important; }
3111
+ .brz .brz-justify-content-xs-start {
3112
+ -webkit-box-pack: start !important;
3113
+ -ms-flex-pack: start !important;
3114
+ justify-content: flex-start !important; }
3115
+ .brz .brz-justify-content-xs-end {
3116
+ -webkit-box-pack: end !important;
3117
+ -ms-flex-pack: end !important;
3118
+ justify-content: flex-end !important; }
3119
+ .brz .brz-justify-content-xs-center {
3120
+ -webkit-box-pack: center !important;
3121
+ -ms-flex-pack: center !important;
3122
+ justify-content: center !important; }
3123
+ .brz .brz-justify-content-xs-between {
3124
+ -webkit-box-pack: justify !important;
3125
+ -ms-flex-pack: justify !important;
3126
+ justify-content: space-between !important; }
3127
+ .brz .brz-justify-content-xs-around {
3128
+ -ms-flex-pack: distribute !important;
3129
+ justify-content: space-around !important; }
3130
+ .brz .brz-align-items-xs-start {
3131
+ -webkit-box-align: start !important;
3132
+ -ms-flex-align: start !important;
3133
+ align-items: flex-start !important; }
3134
+ .brz .brz-align-items-xs-end {
3135
+ -webkit-box-align: end !important;
3136
+ -ms-flex-align: end !important;
3137
+ align-items: flex-end !important; }
3138
+ .brz .brz-align-items-xs-center {
3139
+ -webkit-box-align: center !important;
3140
+ -ms-flex-align: center !important;
3141
+ align-items: center !important; }
3142
+ .brz .brz-align-items-xs-baseline {
3143
+ -webkit-box-align: baseline !important;
3144
+ -ms-flex-align: baseline !important;
3145
+ align-items: baseline !important; }
3146
+ .brz .brz-align-items-xs-stretch {
3147
+ -webkit-box-align: stretch !important;
3148
+ -ms-flex-align: stretch !important;
3149
+ align-items: stretch !important; }
3150
+ .brz .brz-col-first-xs {
3151
+ -webkit-box-ordinal-group: 0;
3152
+ -ms-flex-order: -1;
3153
+ order: -1; }
3154
+ .brz .brz-col-last-xs {
3155
+ -webkit-box-ordinal-group: 2;
3156
+ -ms-flex-order: 1;
3157
+ order: 1; }
3158
+ .brz .brz-align-self-xs-start {
3159
+ -ms-flex-item-align: start !important;
3160
+ align-self: flex-start !important; }
3161
+ .brz .brz-align-self-xs-end {
3162
+ -ms-flex-item-align: end !important;
3163
+ align-self: flex-end !important; }
3164
+ .brz .brz-align-self-xs-center {
3165
+ -ms-flex-item-align: center !important;
3166
+ align-self: center !important; }
3167
+ .brz .brz-align-self-xs-baseline {
3168
+ -ms-flex-item-align: baseline !important;
3169
+ align-self: baseline !important; }
3170
+ .brz .brz-align-self-xs-stretch {
3171
+ -ms-flex-item-align: stretch !important;
3172
+ align-self: stretch !important; }
3173
+ .brz .brz-flex-xs-wrap {
3174
+ -ms-flex-wrap: wrap !important;
3175
+ flex-wrap: wrap !important; }
3176
+ .brz .brz-flex-xs-wrap-reverse {
3177
+ -ms-flex-wrap: wrap-reverse !important;
3178
+ flex-wrap: wrap-reverse !important; }
3179
+ .brz .brz-align-content-xs-start {
3180
+ -ms-flex-line-pack: start !important;
3181
+ align-content: flex-start !important; }
3182
+ .brz .brz-align-content-xs-end {
3183
+ -ms-flex-line-pack: end !important;
3184
+ align-content: flex-end !important; }
3185
+ .brz .brz-align-content-xs-center {
3186
+ -ms-flex-line-pack: center !important;
3187
+ align-content: center !important; }
3188
+ .brz .brz-align-content-xs-around {
3189
+ -ms-flex-line-pack: distribute !important;
3190
+ align-content: space-around !important; }
3191
+ .brz .brz-align-content-xs-stretch {
3192
+ -ms-flex-line-pack: stretch !important;
3193
+ align-content: stretch !important; }
3194
+ .brz .brz-align-content-xs-between {
3195
+ -ms-flex-line-pack: justify !important;
3196
+ align-content: space-between !important; }
3197
+ @media (min-width: 480px) {
3198
+ .brz .brz-flex-ms-row-reverse {
3199
+ -webkit-box-orient: horizontal !important;
3200
+ -webkit-box-direction: reverse !important;
3201
+ -ms-flex-direction: row-reverse !important;
3202
+ flex-direction: row-reverse !important; }
3203
+ .brz .brz-flex-ms-column {
3204
+ -webkit-box-orient: vertical !important;
3205
+ -webkit-box-direction: normal !important;
3206
+ -ms-flex-direction: column !important;
3207
+ flex-direction: column !important; }
3208
+ .brz .brz-flex-ms-column-reverse {
3209
+ -webkit-box-orient: vertical !important;
3210
+ -webkit-box-direction: reverse !important;
3211
+ -ms-flex-direction: column-reverse !important;
3212
+ flex-direction: column-reverse !important; }
3213
+ .brz .brz-justify-content-ms-start {
3214
+ -webkit-box-pack: start !important;
3215
+ -ms-flex-pack: start !important;
3216
+ justify-content: flex-start !important; }
3217
+ .brz .brz-justify-content-ms-end {
3218
+ -webkit-box-pack: end !important;
3219
+ -ms-flex-pack: end !important;
3220
+ justify-content: flex-end !important; }
3221
+ .brz .brz-justify-content-ms-center {
3222
+ -webkit-box-pack: center !important;
3223
+ -ms-flex-pack: center !important;
3224
+ justify-content: center !important; }
3225
+ .brz .brz-justify-content-ms-between {
3226
+ -webkit-box-pack: justify !important;
3227
+ -ms-flex-pack: justify !important;
3228
+ justify-content: space-between !important; }
3229
+ .brz .brz-justify-content-ms-around {
3230
+ -ms-flex-pack: distribute !important;
3231
+ justify-content: space-around !important; }
3232
+ .brz .brz-align-items-ms-start {
3233
+ -webkit-box-align: start !important;
3234
+ -ms-flex-align: start !important;
3235
+ align-items: flex-start !important; }
3236
+ .brz .brz-align-items-ms-end {
3237
+ -webkit-box-align: end !important;
3238
+ -ms-flex-align: end !important;
3239
+ align-items: flex-end !important; }
3240
+ .brz .brz-align-items-ms-center {
3241
+ -webkit-box-align: center !important;
3242
+ -ms-flex-align: center !important;
3243
+ align-items: center !important; }
3244
+ .brz .brz-align-items-ms-baseline {
3245
+ -webkit-box-align: baseline !important;
3246
+ -ms-flex-align: baseline !important;
3247
+ align-items: baseline !important; }
3248
+ .brz .brz-align-items-ms-stretch {
3249
+ -webkit-box-align: stretch !important;
3250
+ -ms-flex-align: stretch !important;
3251
+ align-items: stretch !important; }
3252
+ .brz .brz-col-first-ms {
3253
+ -webkit-box-ordinal-group: 0;
3254
+ -ms-flex-order: -1;
3255
+ order: -1; }
3256
+ .brz .brz-col-last-ms {
3257
+ -webkit-box-ordinal-group: 2;
3258
+ -ms-flex-order: 1;
3259
+ order: 1; }
3260
+ .brz .brz-align-self-ms-start {
3261
+ -ms-flex-item-align: start !important;
3262
+ align-self: flex-start !important; }
3263
+ .brz .brz-align-self-ms-end {
3264
+ -ms-flex-item-align: end !important;
3265
+ align-self: flex-end !important; }
3266
+ .brz .brz-align-self-ms-center {
3267
+ -ms-flex-item-align: center !important;
3268
+ align-self: center !important; }
3269
+ .brz .brz-align-self-ms-baseline {
3270
+ -ms-flex-item-align: baseline !important;
3271
+ align-self: baseline !important; }
3272
+ .brz .brz-align-self-ms-stretch {
3273
+ -ms-flex-item-align: stretch !important;
3274
+ align-self: stretch !important; }
3275
+ .brz .brz-flex-ms-wrap {
3276
+ -ms-flex-wrap: wrap !important;
3277
+ flex-wrap: wrap !important; }
3278
+ .brz .brz-flex-ms-wrap-reverse {
3279
+ -ms-flex-wrap: wrap-reverse !important;
3280
+ flex-wrap: wrap-reverse !important; }
3281
+ .brz .brz-align-content-ms-start {
3282
+ -ms-flex-line-pack: start !important;
3283
+ align-content: flex-start !important; }
3284
+ .brz .brz-align-content-ms-end {
3285
+ -ms-flex-line-pack: end !important;
3286
+ align-content: flex-end !important; }
3287
+ .brz .brz-align-content-ms-center {
3288
+ -ms-flex-line-pack: center !important;
3289
+ align-content: center !important; }
3290
+ .brz .brz-align-content-ms-around {
3291
+ -ms-flex-line-pack: distribute !important;
3292
+ align-content: space-around !important; }
3293
+ .brz .brz-align-content-ms-stretch {
3294
+ -ms-flex-line-pack: stretch !important;
3295
+ align-content: stretch !important; }
3296
+ .brz .brz-align-content-ms-between {
3297
+ -ms-flex-line-pack: justify !important;
3298
+ align-content: space-between !important; } }
3299
+ @media (min-width: 768px) {
3300
+ .brz .brz-flex-sm-row-reverse {
3301
+ -webkit-box-orient: horizontal !important;
3302
+ -webkit-box-direction: reverse !important;
3303
+ -ms-flex-direction: row-reverse !important;
3304
+ flex-direction: row-reverse !important; }
3305
+ .brz .brz-flex-sm-column {
3306
+ -webkit-box-orient: vertical !important;
3307
+ -webkit-box-direction: normal !important;
3308
+ -ms-flex-direction: column !important;
3309
+ flex-direction: column !important; }
3310
+ .brz .brz-flex-sm-column-reverse {
3311
+ -webkit-box-orient: vertical !important;
3312
+ -webkit-box-direction: reverse !important;
3313
+ -ms-flex-direction: column-reverse !important;
3314
+ flex-direction: column-reverse !important; }
3315
+ .brz .brz-justify-content-sm-start {
3316
+ -webkit-box-pack: start !important;
3317
+ -ms-flex-pack: start !important;
3318
+ justify-content: flex-start !important; }
3319
+ .brz .brz-justify-content-sm-end {
3320
+ -webkit-box-pack: end !important;
3321
+ -ms-flex-pack: end !important;
3322
+ justify-content: flex-end !important; }
3323
+ .brz .brz-justify-content-sm-center {
3324
+ -webkit-box-pack: center !important;
3325
+ -ms-flex-pack: center !important;
3326
+ justify-content: center !important; }
3327
+ .brz .brz-justify-content-sm-between {
3328
+ -webkit-box-pack: justify !important;
3329
+ -ms-flex-pack: justify !important;
3330
+ justify-content: space-between !important; }
3331
+ .brz .brz-justify-content-sm-around {
3332
+ -ms-flex-pack: distribute !important;
3333
+ justify-content: space-around !important; }
3334
+ .brz .brz-align-items-sm-start {
3335
+ -webkit-box-align: start !important;
3336
+ -ms-flex-align: start !important;
3337
+ align-items: flex-start !important; }
3338
+ .brz .brz-align-items-sm-end {
3339
+ -webkit-box-align: end !important;
3340
+ -ms-flex-align: end !important;
3341
+ align-items: flex-end !important; }
3342
+ .brz .brz-align-items-sm-center {
3343
+ -webkit-box-align: center !important;
3344
+ -ms-flex-align: center !important;
3345
+ align-items: center !important; }
3346
+ .brz .brz-align-items-sm-baseline {
3347
+ -webkit-box-align: baseline !important;
3348
+ -ms-flex-align: baseline !important;
3349
+ align-items: baseline !important; }
3350
+ .brz .brz-align-items-sm-stretch {
3351
+ -webkit-box-align: stretch !important;
3352
+ -ms-flex-align: stretch !important;
3353
+ align-items: stretch !important; }
3354
+ .brz .brz-col-first-sm {
3355
+ -webkit-box-ordinal-group: 0;
3356
+ -ms-flex-order: -1;
3357
+ order: -1; }
3358
+ .brz .brz-col-last-sm {
3359
+ -webkit-box-ordinal-group: 2;
3360
+ -ms-flex-order: 1;
3361
+ order: 1; }
3362
+ .brz .brz-align-self-sm-start {
3363
+ -ms-flex-item-align: start !important;
3364
+ align-self: flex-start !important; }
3365
+ .brz .brz-align-self-sm-end {
3366
+ -ms-flex-item-align: end !important;
3367
+ align-self: flex-end !important; }
3368
+ .brz .brz-align-self-sm-center {
3369
+ -ms-flex-item-align: center !important;
3370
+ align-self: center !important; }
3371
+ .brz .brz-align-self-sm-baseline {
3372
+ -ms-flex-item-align: baseline !important;
3373
+ align-self: baseline !important; }
3374
+ .brz .brz-align-self-sm-stretch {
3375
+ -ms-flex-item-align: stretch !important;
3376
+ align-self: stretch !important; }
3377
+ .brz .brz-flex-sm-wrap {
3378
+ -ms-flex-wrap: wrap !important;
3379
+ flex-wrap: wrap !important; }
3380
+ .brz .brz-flex-sm-wrap-reverse {
3381
+ -ms-flex-wrap: wrap-reverse !important;
3382
+ flex-wrap: wrap-reverse !important; }
3383
+ .brz .brz-align-content-sm-start {
3384
+ -ms-flex-line-pack: start !important;
3385
+ align-content: flex-start !important; }
3386
+ .brz .brz-align-content-sm-end {
3387
+ -ms-flex-line-pack: end !important;
3388
+ align-content: flex-end !important; }
3389
+ .brz .brz-align-content-sm-center {
3390
+ -ms-flex-line-pack: center !important;
3391
+ align-content: center !important; }
3392
+ .brz .brz-align-content-sm-around {
3393
+ -ms-flex-line-pack: distribute !important;
3394
+ align-content: space-around !important; }
3395
+ .brz .brz-align-content-sm-stretch {
3396
+ -ms-flex-line-pack: stretch !important;
3397
+ align-content: stretch !important; }
3398
+ .brz .brz-align-content-sm-between {
3399
+ -ms-flex-line-pack: justify !important;
3400
+ align-content: space-between !important; } }
3401
+ @media (min-width: 992px) {
3402
+ .brz .brz-flex-md-row-reverse {
3403
+ -webkit-box-orient: horizontal !important;
3404
+ -webkit-box-direction: reverse !important;
3405
+ -ms-flex-direction: row-reverse !important;
3406
+ flex-direction: row-reverse !important; }
3407
+ .brz .brz-flex-md-column {
3408
+ -webkit-box-orient: vertical !important;
3409
+ -webkit-box-direction: normal !important;
3410
+ -ms-flex-direction: column !important;
3411
+ flex-direction: column !important; }
3412
+ .brz .brz-flex-md-column-reverse {
3413
+ -webkit-box-orient: vertical !important;
3414
+ -webkit-box-direction: reverse !important;
3415
+ -ms-flex-direction: column-reverse !important;
3416
+ flex-direction: column-reverse !important; }
3417
+ .brz .brz-justify-content-md-start {
3418
+ -webkit-box-pack: start !important;
3419
+ -ms-flex-pack: start !important;
3420
+ justify-content: flex-start !important; }
3421
+ .brz .brz-justify-content-md-end {
3422
+ -webkit-box-pack: end !important;
3423
+ -ms-flex-pack: end !important;
3424
+ justify-content: flex-end !important; }
3425
+ .brz .brz-justify-content-md-center {
3426
+ -webkit-box-pack: center !important;
3427
+ -ms-flex-pack: center !important;
3428
+ justify-content: center !important; }
3429
+ .brz .brz-justify-content-md-between {
3430
+ -webkit-box-pack: justify !important;
3431
+ -ms-flex-pack: justify !important;
3432
+ justify-content: space-between !important; }
3433
+ .brz .brz-justify-content-md-around {
3434
+ -ms-flex-pack: distribute !important;
3435
+ justify-content: space-around !important; }
3436
+ .brz .brz-align-items-md-start {
3437
+ -webkit-box-align: start !important;
3438
+ -ms-flex-align: start !important;
3439
+ align-items: flex-start !important; }
3440
+ .brz .brz-align-items-md-end {
3441
+ -webkit-box-align: end !important;
3442
+ -ms-flex-align: end !important;
3443
+ align-items: flex-end !important; }
3444
+ .brz .brz-align-items-md-center {
3445
+ -webkit-box-align: center !important;
3446
+ -ms-flex-align: center !important;
3447
+ align-items: center !important; }
3448
+ .brz .brz-align-items-md-baseline {
3449
+ -webkit-box-align: baseline !important;
3450
+ -ms-flex-align: baseline !important;
3451
+ align-items: baseline !important; }
3452
+ .brz .brz-align-items-md-stretch {
3453
+ -webkit-box-align: stretch !important;
3454
+ -ms-flex-align: stretch !important;
3455
+ align-items: stretch !important; }
3456
+ .brz .brz-col-first-md {
3457
+ -webkit-box-ordinal-group: 0;
3458
+ -ms-flex-order: -1;
3459
+ order: -1; }
3460
+ .brz .brz-col-last-md {
3461
+ -webkit-box-ordinal-group: 2;
3462
+ -ms-flex-order: 1;
3463
+ order: 1; }
3464
+ .brz .brz-align-self-md-start {
3465
+ -ms-flex-item-align: start !important;
3466
+ align-self: flex-start !important; }
3467
+ .brz .brz-align-self-md-end {
3468
+ -ms-flex-item-align: end !important;
3469
+ align-self: flex-end !important; }
3470
+ .brz .brz-align-self-md-center {
3471
+ -ms-flex-item-align: center !important;
3472
+ align-self: center !important; }
3473
+ .brz .brz-align-self-md-baseline {
3474
+ -ms-flex-item-align: baseline !important;
3475
+ align-self: baseline !important; }
3476
+ .brz .brz-align-self-md-stretch {
3477
+ -ms-flex-item-align: stretch !important;
3478
+ align-self: stretch !important; }
3479
+ .brz .brz-flex-md-wrap {
3480
+ -ms-flex-wrap: wrap !important;
3481
+ flex-wrap: wrap !important; }
3482
+ .brz .brz-flex-md-wrap-reverse {
3483
+ -ms-flex-wrap: wrap-reverse !important;
3484
+ flex-wrap: wrap-reverse !important; }
3485
+ .brz .brz-align-content-md-start {
3486
+ -ms-flex-line-pack: start !important;
3487
+ align-content: flex-start !important; }
3488
+ .brz .brz-align-content-md-end {
3489
+ -ms-flex-line-pack: end !important;
3490
+ align-content: flex-end !important; }
3491
+ .brz .brz-align-content-md-center {
3492
+ -ms-flex-line-pack: center !important;
3493
+ align-content: center !important; }
3494
+ .brz .brz-align-content-md-around {
3495
+ -ms-flex-line-pack: distribute !important;
3496
+ align-content: space-around !important; }
3497
+ .brz .brz-align-content-md-stretch {
3498
+ -ms-flex-line-pack: stretch !important;
3499
+ align-content: stretch !important; }
3500
+ .brz .brz-align-content-md-between {
3501
+ -ms-flex-line-pack: justify !important;
3502
+ align-content: space-between !important; } }
3503
+ @media (min-width: 1200px) {
3504
+ .brz .brz-flex-lg-row-reverse {
3505
+ -webkit-box-orient: horizontal !important;
3506
+ -webkit-box-direction: reverse !important;
3507
+ -ms-flex-direction: row-reverse !important;
3508
+ flex-direction: row-reverse !important; }
3509
+ .brz .brz-flex-lg-column {
3510
+ -webkit-box-orient: vertical !important;
3511
+ -webkit-box-direction: normal !important;
3512
+ -ms-flex-direction: column !important;
3513
+ flex-direction: column !important; }
3514
+ .brz .brz-flex-lg-column-reverse {
3515
+ -webkit-box-orient: vertical !important;
3516
+ -webkit-box-direction: reverse !important;
3517
+ -ms-flex-direction: column-reverse !important;
3518
+ flex-direction: column-reverse !important; }
3519
+ .brz .brz-justify-content-lg-start {
3520
+ -webkit-box-pack: start !important;
3521
+ -ms-flex-pack: start !important;
3522
+ justify-content: flex-start !important; }
3523
+ .brz .brz-justify-content-lg-end {
3524
+ -webkit-box-pack: end !important;
3525
+ -ms-flex-pack: end !important;
3526
+ justify-content: flex-end !important; }
3527
+ .brz .brz-justify-content-lg-center {
3528
+ -webkit-box-pack: center !important;
3529
+ -ms-flex-pack: center !important;
3530
+ justify-content: center !important; }
3531
+ .brz .brz-justify-content-lg-between {
3532
+ -webkit-box-pack: justify !important;
3533
+ -ms-flex-pack: justify !important;
3534
+ justify-content: space-between !important; }
3535
+ .brz .brz-justify-content-lg-around {
3536
+ -ms-flex-pack: distribute !important;
3537
+ justify-content: space-around !important; }
3538
+ .brz .brz-align-items-lg-start {
3539
+ -webkit-box-align: start !important;
3540
+ -ms-flex-align: start !important;
3541
+ align-items: flex-start !important; }
3542
+ .brz .brz-align-items-lg-end {
3543
+ -webkit-box-align: end !important;
3544
+ -ms-flex-align: end !important;
3545
+ align-items: flex-end !important; }
3546
+ .brz .brz-align-items-lg-center {
3547
+ -webkit-box-align: center !important;
3548
+ -ms-flex-align: center !important;
3549
+ align-items: center !important; }
3550
+ .brz .brz-align-items-lg-baseline {
3551
+ -webkit-box-align: baseline !important;
3552
+ -ms-flex-align: baseline !important;
3553
+ align-items: baseline !important; }
3554
+ .brz .brz-align-items-lg-stretch {
3555
+ -webkit-box-align: stretch !important;
3556
+ -ms-flex-align: stretch !important;
3557
+ align-items: stretch !important; }
3558
+ .brz .brz-col-first-lg {
3559
+ -webkit-box-ordinal-group: 0;
3560
+ -ms-flex-order: -1;
3561
+ order: -1; }
3562
+ .brz .brz-col-last-lg {
3563
+ -webkit-box-ordinal-group: 2;
3564
+ -ms-flex-order: 1;
3565
+ order: 1; }
3566
+ .brz .brz-align-self-lg-start {
3567
+ -ms-flex-item-align: start !important;
3568
+ align-self: flex-start !important; }
3569
+ .brz .brz-align-self-lg-end {
3570
+ -ms-flex-item-align: end !important;
3571
+ align-self: flex-end !important; }
3572
+ .brz .brz-align-self-lg-center {
3573
+ -ms-flex-item-align: center !important;
3574
+ align-self: center !important; }
3575
+ .brz .brz-align-self-lg-baseline {
3576
+ -ms-flex-item-align: baseline !important;
3577
+ align-self: baseline !important; }
3578
+ .brz .brz-align-self-lg-stretch {
3579
+ -ms-flex-item-align: stretch !important;
3580
+ align-self: stretch !important; }
3581
+ .brz .brz-flex-lg-wrap {
3582
+ -ms-flex-wrap: wrap !important;
3583
+ flex-wrap: wrap !important; }
3584
+ .brz .brz-flex-lg-wrap-reverse {
3585
+ -ms-flex-wrap: wrap-reverse !important;
3586
+ flex-wrap: wrap-reverse !important; }
3587
+ .brz .brz-align-content-lg-start {
3588
+ -ms-flex-line-pack: start !important;
3589
+ align-content: flex-start !important; }
3590
+ .brz .brz-align-content-lg-end {
3591
+ -ms-flex-line-pack: end !important;
3592
+ align-content: flex-end !important; }
3593
+ .brz .brz-align-content-lg-center {
3594
+ -ms-flex-line-pack: center !important;
3595
+ align-content: center !important; }
3596
+ .brz .brz-align-content-lg-around {
3597
+ -ms-flex-line-pack: distribute !important;
3598
+ align-content: space-around !important; }
3599
+ .brz .brz-align-content-lg-stretch {
3600
+ -ms-flex-line-pack: stretch !important;
3601
+ align-content: stretch !important; }
3602
+ .brz .brz-align-content-lg-between {
3603
+ -ms-flex-line-pack: justify !important;
3604
+ align-content: space-between !important; } }
3605
+ @media (min-width: 1400px) {
3606
+ .brz .brz-flex-xl-row-reverse {
3607
+ -webkit-box-orient: horizontal !important;
3608
+ -webkit-box-direction: reverse !important;
3609
+ -ms-flex-direction: row-reverse !important;
3610
+ flex-direction: row-reverse !important; }
3611
+ .brz .brz-flex-xl-column {
3612
+ -webkit-box-orient: vertical !important;
3613
+ -webkit-box-direction: normal !important;
3614
+ -ms-flex-direction: column !important;
3615
+ flex-direction: column !important; }
3616
+ .brz .brz-flex-xl-column-reverse {
3617
+ -webkit-box-orient: vertical !important;
3618
+ -webkit-box-direction: reverse !important;
3619
+ -ms-flex-direction: column-reverse !important;
3620
+ flex-direction: column-reverse !important; }
3621
+ .brz .brz-justify-content-xl-start {
3622
+ -webkit-box-pack: start !important;
3623
+ -ms-flex-pack: start !important;
3624
+ justify-content: flex-start !important; }
3625
+ .brz .brz-justify-content-xl-end {
3626
+ -webkit-box-pack: end !important;
3627
+ -ms-flex-pack: end !important;
3628
+ justify-content: flex-end !important; }
3629
+ .brz .brz-justify-content-xl-center {
3630
+ -webkit-box-pack: center !important;
3631
+ -ms-flex-pack: center !important;
3632
+ justify-content: center !important; }
3633
+ .brz .brz-justify-content-xl-between {
3634
+ -webkit-box-pack: justify !important;
3635
+ -ms-flex-pack: justify !important;
3636
+ justify-content: space-between !important; }
3637
+ .brz .brz-justify-content-xl-around {
3638
+ -ms-flex-pack: distribute !important;
3639
+ justify-content: space-around !important; }
3640
+ .brz .brz-align-items-xl-start {
3641
+ -webkit-box-align: start !important;
3642
+ -ms-flex-align: start !important;
3643
+ align-items: flex-start !important; }
3644
+ .brz .brz-align-items-xl-end {
3645
+ -webkit-box-align: end !important;
3646
+ -ms-flex-align: end !important;
3647
+ align-items: flex-end !important; }
3648
+ .brz .brz-align-items-xl-center {
3649
+ -webkit-box-align: center !important;
3650
+ -ms-flex-align: center !important;
3651
+ align-items: center !important; }
3652
+ .brz .brz-align-items-xl-baseline {
3653
+ -webkit-box-align: baseline !important;
3654
+ -ms-flex-align: baseline !important;
3655
+ align-items: baseline !important; }
3656
+ .brz .brz-align-items-xl-stretch {
3657
+ -webkit-box-align: stretch !important;
3658
+ -ms-flex-align: stretch !important;
3659
+ align-items: stretch !important; }
3660
+ .brz .brz-col-first-xl {
3661
+ -webkit-box-ordinal-group: 0;
3662
+ -ms-flex-order: -1;
3663
+ order: -1; }
3664
+ .brz .brz-col-last-xl {
3665
+ -webkit-box-ordinal-group: 2;
3666
+ -ms-flex-order: 1;
3667
+ order: 1; }
3668
+ .brz .brz-align-self-xl-start {
3669
+ -ms-flex-item-align: start !important;
3670
+ align-self: flex-start !important; }
3671
+ .brz .brz-align-self-xl-end {
3672
+ -ms-flex-item-align: end !important;
3673
+ align-self: flex-end !important; }
3674
+ .brz .brz-align-self-xl-center {
3675
+ -ms-flex-item-align: center !important;
3676
+ align-self: center !important; }
3677
+ .brz .brz-align-self-xl-baseline {
3678
+ -ms-flex-item-align: baseline !important;
3679
+ align-self: baseline !important; }
3680
+ .brz .brz-align-self-xl-stretch {
3681
+ -ms-flex-item-align: stretch !important;
3682
+ align-self: stretch !important; }
3683
+ .brz .brz-flex-xl-wrap {
3684
+ -ms-flex-wrap: wrap !important;
3685
+ flex-wrap: wrap !important; }
3686
+ .brz .brz-flex-xl-wrap-reverse {
3687
+ -ms-flex-wrap: wrap-reverse !important;
3688
+ flex-wrap: wrap-reverse !important; }
3689
+ .brz .brz-align-content-xl-start {
3690
+ -ms-flex-line-pack: start !important;
3691
+ align-content: flex-start !important; }
3692
+ .brz .brz-align-content-xl-end {
3693
+ -ms-flex-line-pack: end !important;
3694
+ align-content: flex-end !important; }
3695
+ .brz .brz-align-content-xl-center {
3696
+ -ms-flex-line-pack: center !important;
3697
+ align-content: center !important; }
3698
+ .brz .brz-align-content-xl-around {
3699
+ -ms-flex-line-pack: distribute !important;
3700
+ align-content: space-around !important; }
3701
+ .brz .brz-align-content-xl-stretch {
3702
+ -ms-flex-line-pack: stretch !important;
3703
+ align-content: stretch !important; }
3704
+ .brz .brz-align-content-xl-between {
3705
+ -ms-flex-line-pack: justify !important;
3706
+ align-content: space-between !important; } }
3707
+ .brz .brz-d-block {
3708
+ display: block !important; }
3709
+ .brz .brz-d-inline-block {
3710
+ display: inline-block !important; }
3711
+ .brz .brz-d-inline {
3712
+ display: inline !important; }
3713
+ .brz .brz-d-table {
3714
+ width: 100%;
3715
+ display: table;
3716
+ position: relative; }
3717
+ .brz .brz-d-table-cell {
3718
+ display: table-cell; }
3719
+ .brz .brz-blocked {
3720
+ pointer-events: none; }
3721
+ .brz .brz-d-xs-flex {
3722
+ display: -webkit-box;
3723
+ display: -ms-flexbox;
3724
+ display: flex;
3725
+ min-width: 0; }
3726
+ .brz .brz-d-xs-inline-flex {
3727
+ display: -webkit-inline-box;
3728
+ display: -ms-inline-flexbox;
3729
+ display: inline-flex; }
3730
+ @media (min-width: 480px) {
3731
+ .brz .brz-d-ms-flex {
3732
+ display: -webkit-box;
3733
+ display: -ms-flexbox;
3734
+ display: flex;
3735
+ min-width: 0; }
3736
+ .brz .brz-d-ms-inline-flex {
3737
+ display: -webkit-inline-box;
3738
+ display: -ms-inline-flexbox;
3739
+ display: inline-flex; } }
3740
+ @media (min-width: 768px) {
3741
+ .brz .brz-d-sm-flex {
3742
+ display: -webkit-box;
3743
+ display: -ms-flexbox;
3744
+ display: flex;
3745
+ min-width: 0; }
3746
+ .brz .brz-d-sm-inline-flex {
3747
+ display: -webkit-inline-box;
3748
+ display: -ms-inline-flexbox;
3749
+ display: inline-flex; } }
3750
+ @media (min-width: 992px) {
3751
+ .brz .brz-d-md-flex {
3752
+ display: -webkit-box;
3753
+ display: -ms-flexbox;
3754
+ display: flex;
3755
+ min-width: 0; }
3756
+ .brz .brz-d-md-inline-flex {
3757
+ display: -webkit-inline-box;
3758
+ display: -ms-inline-flexbox;
3759
+ display: inline-flex; } }
3760
+ @media (min-width: 1200px) {
3761
+ .brz .brz-d-lg-flex {
3762
+ display: -webkit-box;
3763
+ display: -ms-flexbox;
3764
+ display: flex;
3765
+ min-width: 0; }
3766
+ .brz .brz-d-lg-inline-flex {
3767
+ display: -webkit-inline-box;
3768
+ display: -ms-inline-flexbox;
3769
+ display: inline-flex; } }
3770
+ @media (min-width: 1400px) {
3771
+ .brz .brz-d-xl-flex {
3772
+ display: -webkit-box;
3773
+ display: -ms-flexbox;
3774
+ display: flex;
3775
+ min-width: 0; }
3776
+ .brz .brz-d-xl-inline-flex {
3777
+ display: -webkit-inline-box;
3778
+ display: -ms-inline-flexbox;
3779
+ display: inline-flex; } }
3780
+ .brz .brz-p-relative {
3781
+ position: relative !important; }
3782
+ .brz .brz-p-absolute {
3783
+ position: absolute !important; }
3784
+ .brz .brz-p-fixed {
3785
+ position: fixed !important; }
3786
+ .brz .brz-invisible {
3787
+ visibility: hidden !important; }
3788
+ .brz .brz-visible {
3789
+ visibility: visible !important; }
3790
+ .brz .brz-hidden-xs-up {
3791
+ display: none !important; }
3792
+ @media (max-width: 479px) {
3793
+ .brz .brz-hidden-xs-down {
3794
+ display: none !important; } }
3795
+ .brz .brz-invisible-xs-up {
3796
+ visibility: hidden !important; }
3797
+ @media (max-width: 479px) {
3798
+ .brz .brz-invisible-xs-down {
3799
+ visibility: hidden !important; } }
3800
+ .brz .brz-invisible-blur-xs-up .brz-bg-content {
3801
+ -webkit-filter: blur(3px);
3802
+ filter: blur(3px);
3803
+ opacity: 0.9; }
3804
+ @media (max-width: 479px) {
3805
+ .brz .brz-invisible-blur-xs-down .brz-bg-content {
3806
+ -webkit-filter: blur(3px);
3807
+ filter: blur(3px);
3808
+ opacity: 0.9; } }
3809
+ @media (min-width: 480px) {
3810
+ .brz .brz-hidden-ms-up {
3811
+ display: none !important; } }
3812
+ @media (max-width: 767px) {
3813
+ .brz .brz-hidden-ms-down {
3814
+ display: none !important; } }
3815
+ @media (min-width: 480px) {
3816
+ .brz .brz-invisible-ms-up {
3817
+ visibility: hidden !important; } }
3818
+ @media (max-width: 767px) {
3819
+ .brz .brz-invisible-ms-down {
3820
+ visibility: hidden !important; } }
3821
+ @media (min-width: 480px) {
3822
+ .brz .brz-invisible-blur-ms-up .brz-bg-content {
3823
+ -webkit-filter: blur(3px);
3824
+ filter: blur(3px);
3825
+ opacity: 0.9; } }
3826
+ @media (max-width: 767px) {
3827
+ .brz .brz-invisible-blur-ms-down .brz-bg-content {
3828
+ -webkit-filter: blur(3px);
3829
+ filter: blur(3px);
3830
+ opacity: 0.9; } }
3831
+ @media (min-width: 768px) {
3832
+ .brz .brz-hidden-sm-up {
3833
+ display: none !important; } }
3834
+ @media (max-width: 991px) {
3835
+ .brz .brz-hidden-sm-down {
3836
+ display: none !important; } }
3837
+ @media (min-width: 768px) {
3838
+ .brz .brz-invisible-sm-up {
3839
+ visibility: hidden !important; } }
3840
+ @media (max-width: 991px) {
3841
+ .brz .brz-invisible-sm-down {
3842
+ visibility: hidden !important; } }
3843
+ @media (min-width: 768px) {
3844
+ .brz .brz-invisible-blur-sm-up .brz-bg-content {
3845
+ -webkit-filter: blur(3px);
3846
+ filter: blur(3px);
3847
+ opacity: 0.9; } }
3848
+ @media (max-width: 991px) {
3849
+ .brz .brz-invisible-blur-sm-down .brz-bg-content {
3850
+ -webkit-filter: blur(3px);
3851
+ filter: blur(3px);
3852
+ opacity: 0.9; } }
3853
+ @media (min-width: 992px) {
3854
+ .brz .brz-hidden-md-up {
3855
+ display: none !important; } }
3856
+ @media (max-width: 1199px) {
3857
+ .brz .brz-hidden-md-down {
3858
+ display: none !important; } }
3859
+ @media (min-width: 992px) {
3860
+ .brz .brz-invisible-md-up {
3861
+ visibility: hidden !important; } }
3862
+ @media (max-width: 1199px) {
3863
+ .brz .brz-invisible-md-down {
3864
+ visibility: hidden !important; } }
3865
+ @media (min-width: 992px) {
3866
+ .brz .brz-invisible-blur-md-up .brz-bg-content {
3867
+ -webkit-filter: blur(3px);
3868
+ filter: blur(3px);
3869
+ opacity: 0.9; } }
3870
+ @media (max-width: 1199px) {
3871
+ .brz .brz-invisible-blur-md-down .brz-bg-content {
3872
+ -webkit-filter: blur(3px);
3873
+ filter: blur(3px);
3874
+ opacity: 0.9; } }
3875
+ @media (min-width: 1200px) {
3876
+ .brz .brz-hidden-lg-up {
3877
+ display: none !important; } }
3878
+ @media (max-width: 1399px) {
3879
+ .brz .brz-hidden-lg-down {
3880
+ display: none !important; } }
3881
+ @media (min-width: 1200px) {
3882
+ .brz .brz-invisible-lg-up {
3883
+ visibility: hidden !important; } }
3884
+ @media (max-width: 1399px) {
3885
+ .brz .brz-invisible-lg-down {
3886
+ visibility: hidden !important; } }
3887
+ @media (min-width: 1200px) {
3888
+ .brz .brz-invisible-blur-lg-up .brz-bg-content {
3889
+ -webkit-filter: blur(3px);
3890
+ filter: blur(3px);
3891
+ opacity: 0.9; } }
3892
+ @media (max-width: 1399px) {
3893
+ .brz .brz-invisible-blur-lg-down .brz-bg-content {
3894
+ -webkit-filter: blur(3px);
3895
+ filter: blur(3px);
3896
+ opacity: 0.9; } }
3897
+ @media (min-width: 1400px) {
3898
+ .brz .brz-hidden-xl-up {
3899
+ display: none !important; } }
3900
+ .brz .brz-hidden-xl-down {
3901
+ display: none !important; }
3902
+ @media (min-width: 1400px) {
3903
+ .brz .brz-invisible-xl-up {
3904
+ visibility: hidden !important; } }
3905
+ .brz .brz-invisible-xl-down {
3906
+ visibility: hidden !important; }
3907
+ @media (min-width: 1400px) {
3908
+ .brz .brz-invisible-blur-xl-up .brz-bg-content {
3909
+ -webkit-filter: blur(3px);
3910
+ filter: blur(3px);
3911
+ opacity: 0.9; } }
3912
+ .brz .brz-invisible-blur-xl-down .brz-bg-content {
3913
+ -webkit-filter: blur(3px);
3914
+ filter: blur(3px);
3915
+ opacity: 0.9; }
3916
+ .brz .brz-hidden {
3917
+ display: none !important; }
3918
+ .brz .brz-visible-print-block {
3919
+ display: none !important; }
3920
+ @media print {
3921
+ .brz .brz-visible-print-block {
3922
+ display: block !important; } }
3923
+ .brz .brz-visible-print-inline {
3924
+ display: none !important; }
3925
+ @media print {
3926
+ .brz .brz-visible-print-inline {
3927
+ display: inline !important; } }
3928
+ .brz .brz-visible-print-inline-block {
3929
+ display: none !important; }
3930
+ @media print {
3931
+ .brz .brz-visible-print-inline-block {
3932
+ display: inline-block !important; } }
3933
+ @media print {
3934
+ .brz .brz-hidden-print {
3935
+ display: none !important; } }
3936
+ .brz .brz-ow-hidden {
3937
+ overflow: hidden !important; }
3938
+ .brz .brz-ow-visible {
3939
+ overflow: visible !important; }
3940
+ .brz .brz-fw-100 {
3941
+ font-weight: 100 !important; }
3942
+ .brz .brz-fw-200 {
3943
+ font-weight: 200 !important; }
3944
+ .brz .brz-fw-300 {
3945
+ font-weight: 300 !important; }
3946
+ .brz .brz-fw-400 {
3947
+ font-weight: 400 !important; }
3948
+ .brz .brz-fw-500 {
3949
+ font-weight: 500 !important; }
3950
+ .brz .brz-fw-600 {
3951
+ font-weight: 600 !important; }
3952
+ .brz .brz-fw-700 {
3953
+ font-weight: 700 !important; }
3954
+ .brz .brz-fw-800 {
3955
+ font-weight: 800 !important; }
3956
+ .brz .brz-fw-900 {
3957
+ font-weight: 900 !important; }
3958
+
3959
+ @-webkit-keyframes bounce {
3960
+ from,
3961
+ 20%,
3962
+ 53%,
3963
+ 80%,
3964
+ to {
3965
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
3966
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
3967
+ -webkit-transform: translate3d(0, 0, 0);
3968
+ transform: translate3d(0, 0, 0); }
3969
+ 40%,
3970
+ 43% {
3971
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
3972
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
3973
+ -webkit-transform: translate3d(0, -30px, 0);
3974
+ transform: translate3d(0, -30px, 0); }
3975
+ 70% {
3976
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
3977
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
3978
+ -webkit-transform: translate3d(0, -15px, 0);
3979
+ transform: translate3d(0, -15px, 0); }
3980
+ 90% {
3981
+ -webkit-transform: translate3d(0, -4px, 0);
3982
+ transform: translate3d(0, -4px, 0); } }
3983
+
3984
+ @keyframes bounce {
3985
+ from,
3986
+ 20%,
3987
+ 53%,
3988
+ 80%,
3989
+ to {
3990
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
3991
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
3992
+ -webkit-transform: translate3d(0, 0, 0);
3993
+ transform: translate3d(0, 0, 0); }
3994
+ 40%,
3995
+ 43% {
3996
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
3997
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
3998
+ -webkit-transform: translate3d(0, -30px, 0);
3999
+ transform: translate3d(0, -30px, 0); }
4000
+ 70% {
4001
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
4002
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
4003
+ -webkit-transform: translate3d(0, -15px, 0);
4004
+ transform: translate3d(0, -15px, 0); }
4005
+ 90% {
4006
+ -webkit-transform: translate3d(0, -4px, 0);
4007
+ transform: translate3d(0, -4px, 0); } }
4008
+ .brz .bounce {
4009
+ -webkit-animation-name: bounce;
4010
+ animation-name: bounce;
4011
+ -webkit-transform-origin: center bottom;
4012
+ transform-origin: center bottom; }
4013
+
4014
+ @-webkit-keyframes flash {
4015
+ from,
4016
+ 50%,
4017
+ to {
4018
+ opacity: 1; }
4019
+ 25%,
4020
+ 75% {
4021
+ opacity: 0; } }
4022
+
4023
+ @keyframes flash {
4024
+ from,
4025
+ 50%,
4026
+ to {
4027
+ opacity: 1; }
4028
+ 25%,
4029
+ 75% {
4030
+ opacity: 0; } }
4031
+ .brz .flash {
4032
+ -webkit-animation-name: flash;
4033
+ animation-name: flash; }
4034
+
4035
+ @-webkit-keyframes pulse {
4036
+ from {
4037
+ -webkit-transform: scale3d(1, 1, 1);
4038
+ transform: scale3d(1, 1, 1); }
4039
+ 50% {
4040
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
4041
+ transform: scale3d(1.05, 1.05, 1.05); }
4042
+ to {
4043
+ -webkit-transform: scale3d(1, 1, 1);
4044
+ transform: scale3d(1, 1, 1); } }
4045
+
4046
+ @keyframes pulse {
4047
+ from {
4048
+ -webkit-transform: scale3d(1, 1, 1);
4049
+ transform: scale3d(1, 1, 1); }
4050
+ 50% {
4051
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
4052
+ transform: scale3d(1.05, 1.05, 1.05); }
4053
+ to {
4054
+ -webkit-transform: scale3d(1, 1, 1);
4055
+ transform: scale3d(1, 1, 1); } }
4056
+ .brz .pulse {
4057
+ -webkit-animation-name: pulse;
4058
+ animation-name: pulse; }
4059
+
4060
+ @-webkit-keyframes rubberBand {
4061
+ from {
4062
+ -webkit-transform: scale3d(1, 1, 1);
4063
+ transform: scale3d(1, 1, 1); }
4064
+ 30% {
4065
+ -webkit-transform: scale3d(1.25, 0.75, 1);
4066
+ transform: scale3d(1.25, 0.75, 1); }
4067
+ 40% {
4068
+ -webkit-transform: scale3d(0.75, 1.25, 1);
4069
+ transform: scale3d(0.75, 1.25, 1); }
4070
+ 50% {
4071
+ -webkit-transform: scale3d(1.15, 0.85, 1);
4072
+ transform: scale3d(1.15, 0.85, 1); }
4073
+ 65% {
4074
+ -webkit-transform: scale3d(0.95, 1.05, 1);
4075
+ transform: scale3d(0.95, 1.05, 1); }
4076
+ 75% {
4077
+ -webkit-transform: scale3d(1.05, 0.95, 1);
4078
+ transform: scale3d(1.05, 0.95, 1); }
4079
+ to {
4080
+ -webkit-transform: scale3d(1, 1, 1);
4081
+ transform: scale3d(1, 1, 1); } }
4082
+
4083
+ @keyframes rubberBand {
4084
+ from {
4085
+ -webkit-transform: scale3d(1, 1, 1);
4086
+ transform: scale3d(1, 1, 1); }
4087
+ 30% {
4088
+ -webkit-transform: scale3d(1.25, 0.75, 1);
4089
+ transform: scale3d(1.25, 0.75, 1); }
4090
+ 40% {
4091
+ -webkit-transform: scale3d(0.75, 1.25, 1);
4092
+ transform: scale3d(0.75, 1.25, 1); }
4093
+ 50% {
4094
+ -webkit-transform: scale3d(1.15, 0.85, 1);
4095
+ transform: scale3d(1.15, 0.85, 1); }
4096
+ 65% {
4097
+ -webkit-transform: scale3d(0.95, 1.05, 1);
4098
+ transform: scale3d(0.95, 1.05, 1); }
4099
+ 75% {
4100
+ -webkit-transform: scale3d(1.05, 0.95, 1);
4101
+ transform: scale3d(1.05, 0.95, 1); }
4102
+ to {
4103
+ -webkit-transform: scale3d(1, 1, 1);
4104
+ transform: scale3d(1, 1, 1); } }
4105
+ .brz .rubberBand {
4106
+ -webkit-animation-name: rubberBand;
4107
+ animation-name: rubberBand; }
4108
+
4109
+ @-webkit-keyframes shake {
4110
+ from,
4111
+ to {
4112
+ -webkit-transform: translate3d(0, 0, 0);
4113
+ transform: translate3d(0, 0, 0); }
4114
+ 10%,
4115
+ 30%,
4116
+ 50%,
4117
+ 70%,
4118
+ 90% {
4119
+ -webkit-transform: translate3d(-10px, 0, 0);
4120
+ transform: translate3d(-10px, 0, 0); }
4121
+ 20%,
4122
+ 40%,
4123
+ 60%,
4124
+ 80% {
4125
+ -webkit-transform: translate3d(10px, 0, 0);
4126
+ transform: translate3d(10px, 0, 0); } }
4127
+
4128
+ @keyframes shake {
4129
+ from,
4130
+ to {
4131
+ -webkit-transform: translate3d(0, 0, 0);
4132
+ transform: translate3d(0, 0, 0); }
4133
+ 10%,
4134
+ 30%,
4135
+ 50%,
4136
+ 70%,
4137
+ 90% {
4138
+ -webkit-transform: translate3d(-10px, 0, 0);
4139
+ transform: translate3d(-10px, 0, 0); }
4140
+ 20%,
4141
+ 40%,
4142
+ 60%,
4143
+ 80% {
4144
+ -webkit-transform: translate3d(10px, 0, 0);
4145
+ transform: translate3d(10px, 0, 0); } }
4146
+ .brz .shake {
4147
+ -webkit-animation-name: shake;
4148
+ animation-name: shake; }
4149
+
4150
+ @-webkit-keyframes headShake {
4151
+ 0% {
4152
+ -webkit-transform: translateX(0);
4153
+ transform: translateX(0); }
4154
+ 6.5% {
4155
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
4156
+ transform: translateX(-6px) rotateY(-9deg); }
4157
+ 18.5% {
4158
+ -webkit-transform: translateX(5px) rotateY(7deg);
4159
+ transform: translateX(5px) rotateY(7deg); }
4160
+ 31.5% {
4161
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
4162
+ transform: translateX(-3px) rotateY(-5deg); }
4163
+ 43.5% {
4164
+ -webkit-transform: translateX(2px) rotateY(3deg);
4165
+ transform: translateX(2px) rotateY(3deg); }
4166
+ 50% {
4167
+ -webkit-transform: translateX(0);
4168
+ transform: translateX(0); } }
4169
+
4170
+ @keyframes headShake {
4171
+ 0% {
4172
+ -webkit-transform: translateX(0);
4173
+ transform: translateX(0); }
4174
+ 6.5% {
4175
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
4176
+ transform: translateX(-6px) rotateY(-9deg); }
4177
+ 18.5% {
4178
+ -webkit-transform: translateX(5px) rotateY(7deg);
4179
+ transform: translateX(5px) rotateY(7deg); }
4180
+ 31.5% {
4181
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
4182
+ transform: translateX(-3px) rotateY(-5deg); }
4183
+ 43.5% {
4184
+ -webkit-transform: translateX(2px) rotateY(3deg);
4185
+ transform: translateX(2px) rotateY(3deg); }
4186
+ 50% {
4187
+ -webkit-transform: translateX(0);
4188
+ transform: translateX(0); } }
4189
+ .brz .headShake {
4190
+ -webkit-animation-timing-function: ease-in-out;
4191
+ animation-timing-function: ease-in-out;
4192
+ -webkit-animation-name: headShake;
4193
+ animation-name: headShake; }
4194
+
4195
+ @-webkit-keyframes swing {
4196
+ 20% {
4197
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
4198
+ transform: rotate3d(0, 0, 1, 15deg); }
4199
+ 40% {
4200
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
4201
+ transform: rotate3d(0, 0, 1, -10deg); }
4202
+ 60% {
4203
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
4204
+ transform: rotate3d(0, 0, 1, 5deg); }
4205
+ 80% {
4206
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
4207
+ transform: rotate3d(0, 0, 1, -5deg); }
4208
+ to {
4209
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
4210
+ transform: rotate3d(0, 0, 1, 0deg); } }
4211
+
4212
+ @keyframes swing {
4213
+ 20% {
4214
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
4215
+ transform: rotate3d(0, 0, 1, 15deg); }
4216
+ 40% {
4217
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
4218
+ transform: rotate3d(0, 0, 1, -10deg); }
4219
+ 60% {
4220
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
4221
+ transform: rotate3d(0, 0, 1, 5deg); }
4222
+ 80% {
4223
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
4224
+ transform: rotate3d(0, 0, 1, -5deg); }
4225
+ to {
4226
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
4227
+ transform: rotate3d(0, 0, 1, 0deg); } }
4228
+ .brz .swing {
4229
+ -webkit-transform-origin: top center;
4230
+ transform-origin: top center;
4231
+ -webkit-animation-name: swing;
4232
+ animation-name: swing; }
4233
+
4234
+ @-webkit-keyframes tada {
4235
+ from {
4236
+ -webkit-transform: scale3d(1, 1, 1);
4237
+ transform: scale3d(1, 1, 1); }
4238
+ 10%,
4239
+ 20% {
4240
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
4241
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
4242
+ 30%,
4243
+ 50%,
4244
+ 70%,
4245
+ 90% {
4246
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
4247
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
4248
+ 40%,
4249
+ 60%,
4250
+ 80% {
4251
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
4252
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
4253
+ to {
4254
+ -webkit-transform: scale3d(1, 1, 1);
4255
+ transform: scale3d(1, 1, 1); } }
4256
+
4257
+ @keyframes tada {
4258
+ from {
4259
+ -webkit-transform: scale3d(1, 1, 1);
4260
+ transform: scale3d(1, 1, 1); }
4261
+ 10%,
4262
+ 20% {
4263
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
4264
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
4265
+ 30%,
4266
+ 50%,
4267
+ 70%,
4268
+ 90% {
4269
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
4270
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
4271
+ 40%,
4272
+ 60%,
4273
+ 80% {
4274
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
4275
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
4276
+ to {
4277
+ -webkit-transform: scale3d(1, 1, 1);
4278
+ transform: scale3d(1, 1, 1); } }
4279
+ .brz .tada {
4280
+ -webkit-animation-name: tada;
4281
+ animation-name: tada; }
4282
+
4283
+ @-webkit-keyframes wobble {
4284
+ from {
4285
+ -webkit-transform: translate3d(0, 0, 0);
4286
+ transform: translate3d(0, 0, 0); }
4287
+ 15% {
4288
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
4289
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
4290
+ 30% {
4291
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
4292
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
4293
+ 45% {
4294
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
4295
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
4296
+ 60% {
4297
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
4298
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
4299
+ 75% {
4300
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
4301
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
4302
+ to {
4303
+ -webkit-transform: translate3d(0, 0, 0);
4304
+ transform: translate3d(0, 0, 0); } }
4305
+
4306
+ @keyframes wobble {
4307
+ from {
4308
+ -webkit-transform: translate3d(0, 0, 0);
4309
+ transform: translate3d(0, 0, 0); }
4310
+ 15% {
4311
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
4312
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
4313
+ 30% {
4314
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
4315
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
4316
+ 45% {
4317
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
4318
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
4319
+ 60% {
4320
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
4321
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
4322
+ 75% {
4323
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
4324
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
4325
+ to {
4326
+ -webkit-transform: translate3d(0, 0, 0);
4327
+ transform: translate3d(0, 0, 0); } }
4328
+ .brz .wobble {
4329
+ -webkit-animation-name: wobble;
4330
+ animation-name: wobble; }
4331
+
4332
+ @-webkit-keyframes jello {
4333
+ from,
4334
+ 11.1%,
4335
+ to {
4336
+ -webkit-transform: translate3d(0, 0, 0);
4337
+ transform: translate3d(0, 0, 0); }
4338
+ 22.2% {
4339
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
4340
+ transform: skewX(-12.5deg) skewY(-12.5deg); }
4341
+ 33.3% {
4342
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
4343
+ transform: skewX(6.25deg) skewY(6.25deg); }
4344
+ 44.4% {
4345
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
4346
+ transform: skewX(-3.125deg) skewY(-3.125deg); }
4347
+ 55.5% {
4348
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
4349
+ transform: skewX(1.5625deg) skewY(1.5625deg); }
4350
+ 66.6% {
4351
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
4352
+ transform: skewX(-0.78125deg) skewY(-0.78125deg); }
4353
+ 77.7% {
4354
+ -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
4355
+ transform: skewX(0.39062deg) skewY(0.39062deg); }
4356
+ 88.8% {
4357
+ -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
4358
+ transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
4359
+
4360
+ @keyframes jello {
4361
+ from,
4362
+ 11.1%,
4363
+ to {
4364
+ -webkit-transform: translate3d(0, 0, 0);
4365
+ transform: translate3d(0, 0, 0); }
4366
+ 22.2% {
4367
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
4368
+ transform: skewX(-12.5deg) skewY(-12.5deg); }
4369
+ 33.3% {
4370
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
4371
+ transform: skewX(6.25deg) skewY(6.25deg); }
4372
+ 44.4% {
4373
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
4374
+ transform: skewX(-3.125deg) skewY(-3.125deg); }
4375
+ 55.5% {
4376
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
4377
+ transform: skewX(1.5625deg) skewY(1.5625deg); }
4378
+ 66.6% {
4379
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
4380
+ transform: skewX(-0.78125deg) skewY(-0.78125deg); }
4381
+ 77.7% {
4382
+ -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
4383
+ transform: skewX(0.39062deg) skewY(0.39062deg); }
4384
+ 88.8% {
4385
+ -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
4386
+ transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
4387
+ .brz .jello {
4388
+ -webkit-animation-name: jello;
4389
+ animation-name: jello;
4390
+ -webkit-transform-origin: center;
4391
+ transform-origin: center; }
4392
+
4393
+ @-webkit-keyframes heartBeat {
4394
+ 0% {
4395
+ -webkit-transform: scale(1);
4396
+ transform: scale(1); }
4397
+ 14% {
4398
+ -webkit-transform: scale(1.3);
4399
+ transform: scale(1.3); }
4400
+ 28% {
4401
+ -webkit-transform: scale(1);
4402
+ transform: scale(1); }
4403
+ 42% {
4404
+ -webkit-transform: scale(1.3);
4405
+ transform: scale(1.3); }
4406
+ 70% {
4407
+ -webkit-transform: scale(1);
4408
+ transform: scale(1); } }
4409
+
4410
+ @keyframes heartBeat {
4411
+ 0% {
4412
+ -webkit-transform: scale(1);
4413
+ transform: scale(1); }
4414
+ 14% {
4415
+ -webkit-transform: scale(1.3);
4416
+ transform: scale(1.3); }
4417
+ 28% {
4418
+ -webkit-transform: scale(1);
4419
+ transform: scale(1); }
4420
+ 42% {
4421
+ -webkit-transform: scale(1.3);
4422
+ transform: scale(1.3); }
4423
+ 70% {
4424
+ -webkit-transform: scale(1);
4425
+ transform: scale(1); } }
4426
+ .brz .heartBeat {
4427
+ -webkit-animation-name: heartBeat;
4428
+ animation-name: heartBeat;
4429
+ -webkit-animation-duration: 1.3s;
4430
+ animation-duration: 1.3s;
4431
+ -webkit-animation-timing-function: ease-in-out;
4432
+ animation-timing-function: ease-in-out; }
4433
+
4434
+ @-webkit-keyframes bounceIn {
4435
+ from,
4436
+ 20%,
4437
+ 40%,
4438
+ 60%,
4439
+ 80%,
4440
+ to {
4441
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4442
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4443
+ 0% {
4444
+ opacity: 0;
4445
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
4446
+ transform: scale3d(0.3, 0.3, 0.3); }
4447
+ 20% {
4448
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
4449
+ transform: scale3d(1.1, 1.1, 1.1); }
4450
+ 40% {
4451
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
4452
+ transform: scale3d(0.9, 0.9, 0.9); }
4453
+ 60% {
4454
+ opacity: 1;
4455
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
4456
+ transform: scale3d(1.03, 1.03, 1.03); }
4457
+ 80% {
4458
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
4459
+ transform: scale3d(0.97, 0.97, 0.97); }
4460
+ to {
4461
+ opacity: 1;
4462
+ -webkit-transform: scale3d(1, 1, 1);
4463
+ transform: scale3d(1, 1, 1); } }
4464
+
4465
+ @keyframes bounceIn {
4466
+ from,
4467
+ 20%,
4468
+ 40%,
4469
+ 60%,
4470
+ 80%,
4471
+ to {
4472
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4473
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4474
+ 0% {
4475
+ opacity: 0;
4476
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
4477
+ transform: scale3d(0.3, 0.3, 0.3); }
4478
+ 20% {
4479
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
4480
+ transform: scale3d(1.1, 1.1, 1.1); }
4481
+ 40% {
4482
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
4483
+ transform: scale3d(0.9, 0.9, 0.9); }
4484
+ 60% {
4485
+ opacity: 1;
4486
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
4487
+ transform: scale3d(1.03, 1.03, 1.03); }
4488
+ 80% {
4489
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
4490
+ transform: scale3d(0.97, 0.97, 0.97); }
4491
+ to {
4492
+ opacity: 1;
4493
+ -webkit-transform: scale3d(1, 1, 1);
4494
+ transform: scale3d(1, 1, 1); } }
4495
+ .brz .bounceIn {
4496
+ -webkit-animation-duration: 0.75s;
4497
+ animation-duration: 0.75s;
4498
+ -webkit-animation-name: bounceIn;
4499
+ animation-name: bounceIn; }
4500
+
4501
+ @-webkit-keyframes bounceInDown {
4502
+ from,
4503
+ 60%,
4504
+ 75%,
4505
+ 90%,
4506
+ to {
4507
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4508
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4509
+ 0% {
4510
+ opacity: 0;
4511
+ -webkit-transform: translate3d(0, -3000px, 0);
4512
+ transform: translate3d(0, -3000px, 0); }
4513
+ 60% {
4514
+ opacity: 1;
4515
+ -webkit-transform: translate3d(0, 25px, 0);
4516
+ transform: translate3d(0, 25px, 0); }
4517
+ 75% {
4518
+ -webkit-transform: translate3d(0, -10px, 0);
4519
+ transform: translate3d(0, -10px, 0); }
4520
+ 90% {
4521
+ -webkit-transform: translate3d(0, 5px, 0);
4522
+ transform: translate3d(0, 5px, 0); }
4523
+ to {
4524
+ -webkit-transform: translate3d(0, 0, 0);
4525
+ transform: translate3d(0, 0, 0); } }
4526
+
4527
+ @keyframes bounceInDown {
4528
+ from,
4529
+ 60%,
4530
+ 75%,
4531
+ 90%,
4532
+ to {
4533
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4534
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4535
+ 0% {
4536
+ opacity: 0;
4537
+ -webkit-transform: translate3d(0, -3000px, 0);
4538
+ transform: translate3d(0, -3000px, 0); }
4539
+ 60% {
4540
+ opacity: 1;
4541
+ -webkit-transform: translate3d(0, 25px, 0);
4542
+ transform: translate3d(0, 25px, 0); }
4543
+ 75% {
4544
+ -webkit-transform: translate3d(0, -10px, 0);
4545
+ transform: translate3d(0, -10px, 0); }
4546
+ 90% {
4547
+ -webkit-transform: translate3d(0, 5px, 0);
4548
+ transform: translate3d(0, 5px, 0); }
4549
+ to {
4550
+ -webkit-transform: translate3d(0, 0, 0);
4551
+ transform: translate3d(0, 0, 0); } }
4552
+ .brz .bounceInDown {
4553
+ -webkit-animation-name: bounceInDown;
4554
+ animation-name: bounceInDown; }
4555
+
4556
+ @-webkit-keyframes bounceInLeft {
4557
+ from,
4558
+ 60%,
4559
+ 75%,
4560
+ 90%,
4561
+ to {
4562
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4563
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4564
+ 0% {
4565
+ opacity: 0;
4566
+ -webkit-transform: translate3d(-3000px, 0, 0);
4567
+ transform: translate3d(-3000px, 0, 0); }
4568
+ 60% {
4569
+ opacity: 1;
4570
+ -webkit-transform: translate3d(25px, 0, 0);
4571
+ transform: translate3d(25px, 0, 0); }
4572
+ 75% {
4573
+ -webkit-transform: translate3d(-10px, 0, 0);
4574
+ transform: translate3d(-10px, 0, 0); }
4575
+ 90% {
4576
+ -webkit-transform: translate3d(5px, 0, 0);
4577
+ transform: translate3d(5px, 0, 0); }
4578
+ to {
4579
+ -webkit-transform: translate3d(0, 0, 0);
4580
+ transform: translate3d(0, 0, 0); } }
4581
+
4582
+ @keyframes bounceInLeft {
4583
+ from,
4584
+ 60%,
4585
+ 75%,
4586
+ 90%,
4587
+ to {
4588
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4589
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4590
+ 0% {
4591
+ opacity: 0;
4592
+ -webkit-transform: translate3d(-3000px, 0, 0);
4593
+ transform: translate3d(-3000px, 0, 0); }
4594
+ 60% {
4595
+ opacity: 1;
4596
+ -webkit-transform: translate3d(25px, 0, 0);
4597
+ transform: translate3d(25px, 0, 0); }
4598
+ 75% {
4599
+ -webkit-transform: translate3d(-10px, 0, 0);
4600
+ transform: translate3d(-10px, 0, 0); }
4601
+ 90% {
4602
+ -webkit-transform: translate3d(5px, 0, 0);
4603
+ transform: translate3d(5px, 0, 0); }
4604
+ to {
4605
+ -webkit-transform: translate3d(0, 0, 0);
4606
+ transform: translate3d(0, 0, 0); } }
4607
+ .brz .bounceInLeft {
4608
+ -webkit-animation-name: bounceInLeft;
4609
+ animation-name: bounceInLeft; }
4610
+
4611
+ @-webkit-keyframes bounceInRight {
4612
+ from,
4613
+ 60%,
4614
+ 75%,
4615
+ 90%,
4616
+ to {
4617
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4618
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4619
+ from {
4620
+ opacity: 0;
4621
+ -webkit-transform: translate3d(3000px, 0, 0);
4622
+ transform: translate3d(3000px, 0, 0); }
4623
+ 60% {
4624
+ opacity: 1;
4625
+ -webkit-transform: translate3d(-25px, 0, 0);
4626
+ transform: translate3d(-25px, 0, 0); }
4627
+ 75% {
4628
+ -webkit-transform: translate3d(10px, 0, 0);
4629
+ transform: translate3d(10px, 0, 0); }
4630
+ 90% {
4631
+ -webkit-transform: translate3d(-5px, 0, 0);
4632
+ transform: translate3d(-5px, 0, 0); }
4633
+ to {
4634
+ -webkit-transform: translate3d(0, 0, 0);
4635
+ transform: translate3d(0, 0, 0); } }
4636
+
4637
+ @keyframes bounceInRight {
4638
+ from,
4639
+ 60%,
4640
+ 75%,
4641
+ 90%,
4642
+ to {
4643
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4644
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4645
+ from {
4646
+ opacity: 0;
4647
+ -webkit-transform: translate3d(3000px, 0, 0);
4648
+ transform: translate3d(3000px, 0, 0); }
4649
+ 60% {
4650
+ opacity: 1;
4651
+ -webkit-transform: translate3d(-25px, 0, 0);
4652
+ transform: translate3d(-25px, 0, 0); }
4653
+ 75% {
4654
+ -webkit-transform: translate3d(10px, 0, 0);
4655
+ transform: translate3d(10px, 0, 0); }
4656
+ 90% {
4657
+ -webkit-transform: translate3d(-5px, 0, 0);
4658
+ transform: translate3d(-5px, 0, 0); }
4659
+ to {
4660
+ -webkit-transform: translate3d(0, 0, 0);
4661
+ transform: translate3d(0, 0, 0); } }
4662
+ .brz .bounceInRight {
4663
+ -webkit-animation-name: bounceInRight;
4664
+ animation-name: bounceInRight; }
4665
+
4666
+ @-webkit-keyframes bounceInUp {
4667
+ from,
4668
+ 60%,
4669
+ 75%,
4670
+ 90%,
4671
+ to {
4672
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4673
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4674
+ from {
4675
+ opacity: 0;
4676
+ -webkit-transform: translate3d(0, 3000px, 0);
4677
+ transform: translate3d(0, 3000px, 0); }
4678
+ 60% {
4679
+ opacity: 1;
4680
+ -webkit-transform: translate3d(0, -20px, 0);
4681
+ transform: translate3d(0, -20px, 0); }
4682
+ 75% {
4683
+ -webkit-transform: translate3d(0, 10px, 0);
4684
+ transform: translate3d(0, 10px, 0); }
4685
+ 90% {
4686
+ -webkit-transform: translate3d(0, -5px, 0);
4687
+ transform: translate3d(0, -5px, 0); }
4688
+ to {
4689
+ -webkit-transform: translate3d(0, 0, 0);
4690
+ transform: translate3d(0, 0, 0); } }
4691
+
4692
+ @keyframes bounceInUp {
4693
+ from,
4694
+ 60%,
4695
+ 75%,
4696
+ 90%,
4697
+ to {
4698
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
4699
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
4700
+ from {
4701
+ opacity: 0;
4702
+ -webkit-transform: translate3d(0, 3000px, 0);
4703
+ transform: translate3d(0, 3000px, 0); }
4704
+ 60% {
4705
+ opacity: 1;
4706
+ -webkit-transform: translate3d(0, -20px, 0);
4707
+ transform: translate3d(0, -20px, 0); }
4708
+ 75% {
4709
+ -webkit-transform: translate3d(0, 10px, 0);
4710
+ transform: translate3d(0, 10px, 0); }
4711
+ 90% {
4712
+ -webkit-transform: translate3d(0, -5px, 0);
4713
+ transform: translate3d(0, -5px, 0); }
4714
+ to {
4715
+ -webkit-transform: translate3d(0, 0, 0);
4716
+ transform: translate3d(0, 0, 0); } }
4717
+ .brz .bounceInUp {
4718
+ -webkit-animation-name: bounceInUp;
4719
+ animation-name: bounceInUp; }
4720
+
4721
+ @-webkit-keyframes bounceOut {
4722
+ 20% {
4723
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
4724
+ transform: scale3d(0.9, 0.9, 0.9); }
4725
+ 50%,
4726
+ 55% {
4727
+ opacity: 1;
4728
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
4729
+ transform: scale3d(1.1, 1.1, 1.1); }
4730
+ to {
4731
+ opacity: 0;
4732
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
4733
+ transform: scale3d(0.3, 0.3, 0.3); } }
4734
+
4735
+ @keyframes bounceOut {
4736
+ 20% {
4737
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
4738
+ transform: scale3d(0.9, 0.9, 0.9); }
4739
+ 50%,
4740
+ 55% {
4741
+ opacity: 1;
4742
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
4743
+ transform: scale3d(1.1, 1.1, 1.1); }
4744
+ to {
4745
+ opacity: 0;
4746
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
4747
+ transform: scale3d(0.3, 0.3, 0.3); } }
4748
+ .brz .bounceOut {
4749
+ -webkit-animation-duration: 0.75s;
4750
+ animation-duration: 0.75s;
4751
+ -webkit-animation-name: bounceOut;
4752
+ animation-name: bounceOut; }
4753
+
4754
+ @-webkit-keyframes bounceOutDown {
4755
+ 20% {
4756
+ -webkit-transform: translate3d(0, 10px, 0);
4757
+ transform: translate3d(0, 10px, 0); }
4758
+ 40%,
4759
+ 45% {
4760
+ opacity: 1;
4761
+ -webkit-transform: translate3d(0, -20px, 0);
4762
+ transform: translate3d(0, -20px, 0); }
4763
+ to {
4764
+ opacity: 0;
4765
+ -webkit-transform: translate3d(0, 2000px, 0);
4766
+ transform: translate3d(0, 2000px, 0); } }
4767
+
4768
+ @keyframes bounceOutDown {
4769
+ 20% {
4770
+ -webkit-transform: translate3d(0, 10px, 0);
4771
+ transform: translate3d(0, 10px, 0); }
4772
+ 40%,
4773
+ 45% {
4774
+ opacity: 1;
4775
+ -webkit-transform: translate3d(0, -20px, 0);
4776
+ transform: translate3d(0, -20px, 0); }
4777
+ to {
4778
+ opacity: 0;
4779
+ -webkit-transform: translate3d(0, 2000px, 0);
4780
+ transform: translate3d(0, 2000px, 0); } }
4781
+ .brz .bounceOutDown {
4782
+ -webkit-animation-name: bounceOutDown;
4783
+ animation-name: bounceOutDown; }
4784
+
4785
+ @-webkit-keyframes bounceOutLeft {
4786
+ 20% {
4787
+ opacity: 1;
4788
+ -webkit-transform: translate3d(20px, 0, 0);
4789
+ transform: translate3d(20px, 0, 0); }
4790
+ to {
4791
+ opacity: 0;
4792
+ -webkit-transform: translate3d(-2000px, 0, 0);
4793
+ transform: translate3d(-2000px, 0, 0); } }
4794
+
4795
+ @keyframes bounceOutLeft {
4796
+ 20% {
4797
+ opacity: 1;
4798
+ -webkit-transform: translate3d(20px, 0, 0);
4799
+ transform: translate3d(20px, 0, 0); }
4800
+ to {
4801
+ opacity: 0;
4802
+ -webkit-transform: translate3d(-2000px, 0, 0);
4803
+ transform: translate3d(-2000px, 0, 0); } }
4804
+ .brz .bounceOutLeft {
4805
+ -webkit-animation-name: bounceOutLeft;
4806
+ animation-name: bounceOutLeft; }
4807
+
4808
+ @-webkit-keyframes bounceOutRight {
4809
+ 20% {
4810
+ opacity: 1;
4811
+ -webkit-transform: translate3d(-20px, 0, 0);
4812
+ transform: translate3d(-20px, 0, 0); }
4813
+ to {
4814
+ opacity: 0;
4815
+ -webkit-transform: translate3d(2000px, 0, 0);
4816
+ transform: translate3d(2000px, 0, 0); } }
4817
+
4818
+ @keyframes bounceOutRight {
4819
+ 20% {
4820
+ opacity: 1;
4821
+ -webkit-transform: translate3d(-20px, 0, 0);
4822
+ transform: translate3d(-20px, 0, 0); }
4823
+ to {
4824
+ opacity: 0;
4825
+ -webkit-transform: translate3d(2000px, 0, 0);
4826
+ transform: translate3d(2000px, 0, 0); } }
4827
+ .brz .bounceOutRight {
4828
+ -webkit-animation-name: bounceOutRight;
4829
+ animation-name: bounceOutRight; }
4830
+
4831
+ @-webkit-keyframes bounceOutUp {
4832
+ 20% {
4833
+ -webkit-transform: translate3d(0, -10px, 0);
4834
+ transform: translate3d(0, -10px, 0); }
4835
+ 40%,
4836
+ 45% {
4837
+ opacity: 1;
4838
+ -webkit-transform: translate3d(0, 20px, 0);
4839
+ transform: translate3d(0, 20px, 0); }
4840
+ to {
4841
+ opacity: 0;
4842
+ -webkit-transform: translate3d(0, -2000px, 0);
4843
+ transform: translate3d(0, -2000px, 0); } }
4844
+
4845
+ @keyframes bounceOutUp {
4846
+ 20% {
4847
+ -webkit-transform: translate3d(0, -10px, 0);
4848
+ transform: translate3d(0, -10px, 0); }
4849
+ 40%,
4850
+ 45% {
4851
+ opacity: 1;
4852
+ -webkit-transform: translate3d(0, 20px, 0);
4853
+ transform: translate3d(0, 20px, 0); }
4854
+ to {
4855
+ opacity: 0;
4856
+ -webkit-transform: translate3d(0, -2000px, 0);
4857
+ transform: translate3d(0, -2000px, 0); } }
4858
+ .brz .bounceOutUp {
4859
+ -webkit-animation-name: bounceOutUp;
4860
+ animation-name: bounceOutUp; }
4861
+
4862
+ @-webkit-keyframes fadeIn {
4863
+ from {
4864
+ opacity: 0; }
4865
+ to {
4866
+ opacity: 1; } }
4867
+
4868
+ @keyframes fadeIn {
4869
+ from {
4870
+ opacity: 0; }
4871
+ to {
4872
+ opacity: 1; } }
4873
+ .brz .fadeIn {
4874
+ -webkit-animation-name: fadeIn;
4875
+ animation-name: fadeIn; }
4876
+
4877
+ @-webkit-keyframes fadeInDown {
4878
+ from {
4879
+ opacity: 0;
4880
+ -webkit-transform: translate3d(0, -100%, 0);
4881
+ transform: translate3d(0, -100%, 0); }
4882
+ to {
4883
+ opacity: 1;
4884
+ -webkit-transform: translate3d(0, 0, 0);
4885
+ transform: translate3d(0, 0, 0); } }
4886
+
4887
+ @keyframes fadeInDown {
4888
+ from {
4889
+ opacity: 0;
4890
+ -webkit-transform: translate3d(0, -100%, 0);
4891
+ transform: translate3d(0, -100%, 0); }
4892
+ to {
4893
+ opacity: 1;
4894
+ -webkit-transform: translate3d(0, 0, 0);
4895
+ transform: translate3d(0, 0, 0); } }
4896
+ .brz .fadeInDown {
4897
+ -webkit-animation-name: fadeInDown;
4898
+ animation-name: fadeInDown; }
4899
+
4900
+ @-webkit-keyframes fadeInDownBig {
4901
+ from {
4902
+ opacity: 0;
4903
+ -webkit-transform: translate3d(0, -2000px, 0);
4904
+ transform: translate3d(0, -2000px, 0); }
4905
+ to {
4906
+ opacity: 1;
4907
+ -webkit-transform: translate3d(0, 0, 0);
4908
+ transform: translate3d(0, 0, 0); } }
4909
+
4910
+ @keyframes fadeInDownBig {
4911
+ from {
4912
+ opacity: 0;
4913
+ -webkit-transform: translate3d(0, -2000px, 0);
4914
+ transform: translate3d(0, -2000px, 0); }
4915
+ to {
4916
+ opacity: 1;
4917
+ -webkit-transform: translate3d(0, 0, 0);
4918
+ transform: translate3d(0, 0, 0); } }
4919
+ .brz .fadeInDownBig {
4920
+ -webkit-animation-name: fadeInDownBig;
4921
+ animation-name: fadeInDownBig; }
4922
+
4923
+ @-webkit-keyframes fadeInLeft {
4924
+ from {
4925
+ opacity: 0;
4926
+ -webkit-transform: translate3d(-100%, 0, 0);
4927
+ transform: translate3d(-100%, 0, 0); }
4928
+ to {
4929
+ opacity: 1;
4930
+ -webkit-transform: translate3d(0, 0, 0);
4931
+ transform: translate3d(0, 0, 0); } }
4932
+
4933
+ @keyframes fadeInLeft {
4934
+ from {
4935
+ opacity: 0;
4936
+ -webkit-transform: translate3d(-100%, 0, 0);
4937
+ transform: translate3d(-100%, 0, 0); }
4938
+ to {
4939
+ opacity: 1;
4940
+ -webkit-transform: translate3d(0, 0, 0);
4941
+ transform: translate3d(0, 0, 0); } }
4942
+ .brz .fadeInLeft {
4943
+ -webkit-animation-name: fadeInLeft;
4944
+ animation-name: fadeInLeft; }
4945
+
4946
+ @-webkit-keyframes fadeInLeftBig {
4947
+ from {
4948
+ opacity: 0;
4949
+ -webkit-transform: translate3d(-2000px, 0, 0);
4950
+ transform: translate3d(-2000px, 0, 0); }
4951
+ to {
4952
+ opacity: 1;
4953
+ -webkit-transform: translate3d(0, 0, 0);
4954
+ transform: translate3d(0, 0, 0); } }
4955
+
4956
+ @keyframes fadeInLeftBig {
4957
+ from {
4958
+ opacity: 0;
4959
+ -webkit-transform: translate3d(-2000px, 0, 0);
4960
+ transform: translate3d(-2000px, 0, 0); }
4961
+ to {
4962
+ opacity: 1;
4963
+ -webkit-transform: translate3d(0, 0, 0);
4964
+ transform: translate3d(0, 0, 0); } }
4965
+ .brz .fadeInLeftBig {
4966
+ -webkit-animation-name: fadeInLeftBig;
4967
+ animation-name: fadeInLeftBig; }
4968
+
4969
+ @-webkit-keyframes fadeInRight {
4970
+ from {
4971
+ opacity: 0;
4972
+ -webkit-transform: translate3d(100%, 0, 0);
4973
+ transform: translate3d(100%, 0, 0); }
4974
+ to {
4975
+ opacity: 1;
4976
+ -webkit-transform: translate3d(0, 0, 0);
4977
+ transform: translate3d(0, 0, 0); } }
4978
+
4979
+ @keyframes fadeInRight {
4980
+ from {
4981
+ opacity: 0;
4982
+ -webkit-transform: translate3d(100%, 0, 0);
4983
+ transform: translate3d(100%, 0, 0); }
4984
+ to {
4985
+ opacity: 1;
4986
+ -webkit-transform: translate3d(0, 0, 0);
4987
+ transform: translate3d(0, 0, 0); } }
4988
+ .brz .fadeInRight {
4989
+ -webkit-animation-name: fadeInRight;
4990
+ animation-name: fadeInRight; }
4991
+
4992
+ @-webkit-keyframes fadeInRightBig {
4993
+ from {
4994
+ opacity: 0;
4995
+ -webkit-transform: translate3d(2000px, 0, 0);
4996
+ transform: translate3d(2000px, 0, 0); }
4997
+ to {
4998
+ opacity: 1;
4999
+ -webkit-transform: translate3d(0, 0, 0);
5000
+ transform: translate3d(0, 0, 0); } }
5001
+
5002
+ @keyframes fadeInRightBig {
5003
+ from {
5004
+ opacity: 0;
5005
+ -webkit-transform: translate3d(2000px, 0, 0);
5006
+ transform: translate3d(2000px, 0, 0); }
5007
+ to {
5008
+ opacity: 1;
5009
+ -webkit-transform: translate3d(0, 0, 0);
5010
+ transform: translate3d(0, 0, 0); } }
5011
+ .brz .fadeInRightBig {
5012
+ -webkit-animation-name: fadeInRightBig;
5013
+ animation-name: fadeInRightBig; }
5014
+
5015
+ @-webkit-keyframes fadeInUp {
5016
+ from {
5017
+ opacity: 0;
5018
+ -webkit-transform: translate3d(0, 100%, 0);
5019
+ transform: translate3d(0, 100%, 0); }
5020
+ to {
5021
+ opacity: 1;
5022
+ -webkit-transform: translate3d(0, 0, 0);
5023
+ transform: translate3d(0, 0, 0); } }
5024
+
5025
+ @keyframes fadeInUp {
5026
+ from {
5027
+ opacity: 0;
5028
+ -webkit-transform: translate3d(0, 100%, 0);
5029
+ transform: translate3d(0, 100%, 0); }
5030
+ to {
5031
+ opacity: 1;
5032
+ -webkit-transform: translate3d(0, 0, 0);
5033
+ transform: translate3d(0, 0, 0); } }
5034
+ .brz .fadeInUp {
5035
+ -webkit-animation-name: fadeInUp;
5036
+ animation-name: fadeInUp; }
5037
+
5038
+ @-webkit-keyframes fadeInUpBig {
5039
+ from {
5040
+ opacity: 0;
5041
+ -webkit-transform: translate3d(0, 2000px, 0);
5042
+ transform: translate3d(0, 2000px, 0); }
5043
+ to {
5044
+ opacity: 1;
5045
+ -webkit-transform: translate3d(0, 0, 0);
5046
+ transform: translate3d(0, 0, 0); } }
5047
+
5048
+ @keyframes fadeInUpBig {
5049
+ from {
5050
+ opacity: 0;
5051
+ -webkit-transform: translate3d(0, 2000px, 0);
5052
+ transform: translate3d(0, 2000px, 0); }
5053
+ to {
5054
+ opacity: 1;
5055
+ -webkit-transform: translate3d(0, 0, 0);
5056
+ transform: translate3d(0, 0, 0); } }
5057
+ .brz .fadeInUpBig {
5058
+ -webkit-animation-name: fadeInUpBig;
5059
+ animation-name: fadeInUpBig; }
5060
+
5061
+ @-webkit-keyframes fadeOut {
5062
+ from {
5063
+ opacity: 1; }
5064
+ to {
5065
+ opacity: 0; } }
5066
+
5067
+ @keyframes fadeOut {
5068
+ from {
5069
+ opacity: 1; }
5070
+ to {
5071
+ opacity: 0; } }
5072
+ .brz .fadeOut {
5073
+ -webkit-animation-name: fadeOut;
5074
+ animation-name: fadeOut; }
5075
+
5076
+ @-webkit-keyframes fadeOutDown {
5077
+ from {
5078
+ opacity: 1; }
5079
+ to {
5080
+ opacity: 0;
5081
+ -webkit-transform: translate3d(0, 100%, 0);
5082
+ transform: translate3d(0, 100%, 0); } }
5083
+
5084
+ @keyframes fadeOutDown {
5085
+ from {
5086
+ opacity: 1; }
5087
+ to {
5088
+ opacity: 0;
5089
+ -webkit-transform: translate3d(0, 100%, 0);
5090
+ transform: translate3d(0, 100%, 0); } }
5091
+ .brz .fadeOutDown {
5092
+ -webkit-animation-name: fadeOutDown;
5093
+ animation-name: fadeOutDown; }
5094
+
5095
+ @-webkit-keyframes fadeOutDownBig {
5096
+ from {
5097
+ opacity: 1; }
5098
+ to {
5099
+ opacity: 0;
5100
+ -webkit-transform: translate3d(0, 2000px, 0);
5101
+ transform: translate3d(0, 2000px, 0); } }
5102
+
5103
+ @keyframes fadeOutDownBig {
5104
+ from {
5105
+ opacity: 1; }
5106
+ to {
5107
+ opacity: 0;
5108
+ -webkit-transform: translate3d(0, 2000px, 0);
5109
+ transform: translate3d(0, 2000px, 0); } }
5110
+ .brz .fadeOutDownBig {
5111
+ -webkit-animation-name: fadeOutDownBig;
5112
+ animation-name: fadeOutDownBig; }
5113
+
5114
+ @-webkit-keyframes fadeOutLeft {
5115
+ from {
5116
+ opacity: 1; }
5117
+ to {
5118
+ opacity: 0;
5119
+ -webkit-transform: translate3d(-100%, 0, 0);
5120
+ transform: translate3d(-100%, 0, 0); } }
5121
+
5122
+ @keyframes fadeOutLeft {
5123
+ from {
5124
+ opacity: 1; }
5125
+ to {
5126
+ opacity: 0;
5127
+ -webkit-transform: translate3d(-100%, 0, 0);
5128
+ transform: translate3d(-100%, 0, 0); } }
5129
+ .brz .fadeOutLeft {
5130
+ -webkit-animation-name: fadeOutLeft;
5131
+ animation-name: fadeOutLeft; }
5132
+
5133
+ @-webkit-keyframes fadeOutLeftBig {
5134
+ from {
5135
+ opacity: 1; }
5136
+ to {
5137
+ opacity: 0;
5138
+ -webkit-transform: translate3d(-2000px, 0, 0);
5139
+ transform: translate3d(-2000px, 0, 0); } }
5140
+
5141
+ @keyframes fadeOutLeftBig {
5142
+ from {
5143
+ opacity: 1; }
5144
+ to {
5145
+ opacity: 0;
5146
+ -webkit-transform: translate3d(-2000px, 0, 0);
5147
+ transform: translate3d(-2000px, 0, 0); } }
5148
+ .brz .fadeOutLeftBig {
5149
+ -webkit-animation-name: fadeOutLeftBig;
5150
+ animation-name: fadeOutLeftBig; }
5151
+
5152
+ @-webkit-keyframes fadeOutRight {
5153
+ from {
5154
+ opacity: 1; }
5155
+ to {
5156
+ opacity: 0;
5157
+ -webkit-transform: translate3d(100%, 0, 0);
5158
+ transform: translate3d(100%, 0, 0); } }
5159
+
5160
+ @keyframes fadeOutRight {
5161
+ from {
5162
+ opacity: 1; }
5163
+ to {
5164
+ opacity: 0;
5165
+ -webkit-transform: translate3d(100%, 0, 0);
5166
+ transform: translate3d(100%, 0, 0); } }
5167
+ .brz .fadeOutRight {
5168
+ -webkit-animation-name: fadeOutRight;
5169
+ animation-name: fadeOutRight; }
5170
+
5171
+ @-webkit-keyframes fadeOutRightBig {
5172
+ from {
5173
+ opacity: 1; }
5174
+ to {
5175
+ opacity: 0;
5176
+ -webkit-transform: translate3d(2000px, 0, 0);
5177
+ transform: translate3d(2000px, 0, 0); } }
5178
+
5179
+ @keyframes fadeOutRightBig {
5180
+ from {
5181
+ opacity: 1; }
5182
+ to {
5183
+ opacity: 0;
5184
+ -webkit-transform: translate3d(2000px, 0, 0);
5185
+ transform: translate3d(2000px, 0, 0); } }
5186
+ .brz .fadeOutRightBig {
5187
+ -webkit-animation-name: fadeOutRightBig;
5188
+ animation-name: fadeOutRightBig; }
5189
+
5190
+ @-webkit-keyframes fadeOutUp {
5191
+ from {
5192
+ opacity: 1; }
5193
+ to {
5194
+ opacity: 0;
5195
+ -webkit-transform: translate3d(0, -100%, 0);
5196
+ transform: translate3d(0, -100%, 0); } }
5197
+
5198
+ @keyframes fadeOutUp {
5199
+ from {
5200
+ opacity: 1; }
5201
+ to {
5202
+ opacity: 0;
5203
+ -webkit-transform: translate3d(0, -100%, 0);
5204
+ transform: translate3d(0, -100%, 0); } }
5205
+ .brz .fadeOutUp {
5206
+ -webkit-animation-name: fadeOutUp;
5207
+ animation-name: fadeOutUp; }
5208
+
5209
+ @-webkit-keyframes fadeOutUpBig {
5210
+ from {
5211
+ opacity: 1; }
5212
+ to {
5213
+ opacity: 0;
5214
+ -webkit-transform: translate3d(0, -2000px, 0);
5215
+ transform: translate3d(0, -2000px, 0); } }
5216
+
5217
+ @keyframes fadeOutUpBig {
5218
+ from {
5219
+ opacity: 1; }
5220
+ to {
5221
+ opacity: 0;
5222
+ -webkit-transform: translate3d(0, -2000px, 0);
5223
+ transform: translate3d(0, -2000px, 0); } }
5224
+ .brz .fadeOutUpBig {
5225
+ -webkit-animation-name: fadeOutUpBig;
5226
+ animation-name: fadeOutUpBig; }
5227
+
5228
+ @-webkit-keyframes flip {
5229
+ from {
5230
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
5231
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
5232
+ -webkit-animation-timing-function: ease-out;
5233
+ animation-timing-function: ease-out; }
5234
+ 40% {
5235
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
5236
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
5237
+ -webkit-animation-timing-function: ease-out;
5238
+ animation-timing-function: ease-out; }
5239
+ 50% {
5240
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
5241
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
5242
+ -webkit-animation-timing-function: ease-in;
5243
+ animation-timing-function: ease-in; }
5244
+ 80% {
5245
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5246
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5247
+ -webkit-animation-timing-function: ease-in;
5248
+ animation-timing-function: ease-in; }
5249
+ to {
5250
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5251
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5252
+ -webkit-animation-timing-function: ease-in;
5253
+ animation-timing-function: ease-in; } }
5254
+
5255
+ @keyframes flip {
5256
+ from {
5257
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
5258
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
5259
+ -webkit-animation-timing-function: ease-out;
5260
+ animation-timing-function: ease-out; }
5261
+ 40% {
5262
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
5263
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
5264
+ -webkit-animation-timing-function: ease-out;
5265
+ animation-timing-function: ease-out; }
5266
+ 50% {
5267
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
5268
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
5269
+ -webkit-animation-timing-function: ease-in;
5270
+ animation-timing-function: ease-in; }
5271
+ 80% {
5272
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5273
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5274
+ -webkit-animation-timing-function: ease-in;
5275
+ animation-timing-function: ease-in; }
5276
+ to {
5277
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5278
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
5279
+ -webkit-animation-timing-function: ease-in;
5280
+ animation-timing-function: ease-in; } }
5281
+ .brz .animated.flip {
5282
+ -webkit-backface-visibility: visible;
5283
+ backface-visibility: visible;
5284
+ -webkit-animation-name: flip;
5285
+ animation-name: flip; }
5286
+
5287
+ @-webkit-keyframes flipInX {
5288
+ from {
5289
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5290
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5291
+ -webkit-animation-timing-function: ease-in;
5292
+ animation-timing-function: ease-in;
5293
+ opacity: 0; }
5294
+ 40% {
5295
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5296
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5297
+ -webkit-animation-timing-function: ease-in;
5298
+ animation-timing-function: ease-in; }
5299
+ 60% {
5300
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
5301
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
5302
+ opacity: 1; }
5303
+ 80% {
5304
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
5305
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
5306
+ to {
5307
+ -webkit-transform: perspective(400px);
5308
+ transform: perspective(400px); } }
5309
+
5310
+ @keyframes flipInX {
5311
+ from {
5312
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5313
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5314
+ -webkit-animation-timing-function: ease-in;
5315
+ animation-timing-function: ease-in;
5316
+ opacity: 0; }
5317
+ 40% {
5318
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5319
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5320
+ -webkit-animation-timing-function: ease-in;
5321
+ animation-timing-function: ease-in; }
5322
+ 60% {
5323
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
5324
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
5325
+ opacity: 1; }
5326
+ 80% {
5327
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
5328
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
5329
+ to {
5330
+ -webkit-transform: perspective(400px);
5331
+ transform: perspective(400px); } }
5332
+ .brz .flipInX {
5333
+ -webkit-backface-visibility: visible !important;
5334
+ backface-visibility: visible !important;
5335
+ -webkit-animation-name: flipInX;
5336
+ animation-name: flipInX; }
5337
+
5338
+ @-webkit-keyframes flipInY {
5339
+ from {
5340
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5341
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5342
+ -webkit-animation-timing-function: ease-in;
5343
+ animation-timing-function: ease-in;
5344
+ opacity: 0; }
5345
+ 40% {
5346
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
5347
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
5348
+ -webkit-animation-timing-function: ease-in;
5349
+ animation-timing-function: ease-in; }
5350
+ 60% {
5351
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
5352
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
5353
+ opacity: 1; }
5354
+ 80% {
5355
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
5356
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
5357
+ to {
5358
+ -webkit-transform: perspective(400px);
5359
+ transform: perspective(400px); } }
5360
+
5361
+ @keyframes flipInY {
5362
+ from {
5363
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5364
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5365
+ -webkit-animation-timing-function: ease-in;
5366
+ animation-timing-function: ease-in;
5367
+ opacity: 0; }
5368
+ 40% {
5369
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
5370
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
5371
+ -webkit-animation-timing-function: ease-in;
5372
+ animation-timing-function: ease-in; }
5373
+ 60% {
5374
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
5375
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
5376
+ opacity: 1; }
5377
+ 80% {
5378
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
5379
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
5380
+ to {
5381
+ -webkit-transform: perspective(400px);
5382
+ transform: perspective(400px); } }
5383
+ .brz .flipInY {
5384
+ -webkit-backface-visibility: visible !important;
5385
+ backface-visibility: visible !important;
5386
+ -webkit-animation-name: flipInY;
5387
+ animation-name: flipInY; }
5388
+
5389
+ @-webkit-keyframes flipOutX {
5390
+ from {
5391
+ -webkit-transform: perspective(400px);
5392
+ transform: perspective(400px); }
5393
+ 30% {
5394
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5395
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5396
+ opacity: 1; }
5397
+ to {
5398
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5399
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5400
+ opacity: 0; } }
5401
+
5402
+ @keyframes flipOutX {
5403
+ from {
5404
+ -webkit-transform: perspective(400px);
5405
+ transform: perspective(400px); }
5406
+ 30% {
5407
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5408
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
5409
+ opacity: 1; }
5410
+ to {
5411
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5412
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
5413
+ opacity: 0; } }
5414
+ .brz .flipOutX {
5415
+ -webkit-animation-duration: 0.75s;
5416
+ animation-duration: 0.75s;
5417
+ -webkit-animation-name: flipOutX;
5418
+ animation-name: flipOutX;
5419
+ -webkit-backface-visibility: visible !important;
5420
+ backface-visibility: visible !important; }
5421
+
5422
+ @-webkit-keyframes flipOutY {
5423
+ from {
5424
+ -webkit-transform: perspective(400px);
5425
+ transform: perspective(400px); }
5426
+ 30% {
5427
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
5428
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
5429
+ opacity: 1; }
5430
+ to {
5431
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5432
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5433
+ opacity: 0; } }
5434
+
5435
+ @keyframes flipOutY {
5436
+ from {
5437
+ -webkit-transform: perspective(400px);
5438
+ transform: perspective(400px); }
5439
+ 30% {
5440
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
5441
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
5442
+ opacity: 1; }
5443
+ to {
5444
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5445
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
5446
+ opacity: 0; } }
5447
+ .brz .flipOutY {
5448
+ -webkit-animation-duration: 0.75s;
5449
+ animation-duration: 0.75s;
5450
+ -webkit-backface-visibility: visible !important;
5451
+ backface-visibility: visible !important;
5452
+ -webkit-animation-name: flipOutY;
5453
+ animation-name: flipOutY; }
5454
+
5455
+ @-webkit-keyframes lightSpeedIn {
5456
+ from {
5457
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
5458
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
5459
+ opacity: 0; }
5460
+ 60% {
5461
+ -webkit-transform: skewX(20deg);
5462
+ transform: skewX(20deg);
5463
+ opacity: 1; }
5464
+ 80% {
5465
+ -webkit-transform: skewX(-5deg);
5466
+ transform: skewX(-5deg); }
5467
+ to {
5468
+ -webkit-transform: translate3d(0, 0, 0);
5469
+ transform: translate3d(0, 0, 0); } }
5470
+
5471
+ @keyframes lightSpeedIn {
5472
+ from {
5473
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
5474
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
5475
+ opacity: 0; }
5476
+ 60% {
5477
+ -webkit-transform: skewX(20deg);
5478
+ transform: skewX(20deg);
5479
+ opacity: 1; }
5480
+ 80% {
5481
+ -webkit-transform: skewX(-5deg);
5482
+ transform: skewX(-5deg); }
5483
+ to {
5484
+ -webkit-transform: translate3d(0, 0, 0);
5485
+ transform: translate3d(0, 0, 0); } }
5486
+ .brz .lightSpeedIn {
5487
+ -webkit-animation-name: lightSpeedIn;
5488
+ animation-name: lightSpeedIn;
5489
+ -webkit-animation-timing-function: ease-out;
5490
+ animation-timing-function: ease-out; }
5491
+
5492
+ @-webkit-keyframes lightSpeedOut {
5493
+ from {
5494
+ opacity: 1; }
5495
+ to {
5496
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
5497
+ transform: translate3d(100%, 0, 0) skewX(30deg);
5498
+ opacity: 0; } }
5499
+
5500
+ @keyframes lightSpeedOut {
5501
+ from {
5502
+ opacity: 1; }
5503
+ to {
5504
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
5505
+ transform: translate3d(100%, 0, 0) skewX(30deg);
5506
+ opacity: 0; } }
5507
+ .brz .lightSpeedOut {
5508
+ -webkit-animation-name: lightSpeedOut;
5509
+ animation-name: lightSpeedOut;
5510
+ -webkit-animation-timing-function: ease-in;
5511
+ animation-timing-function: ease-in; }
5512
+
5513
+ @-webkit-keyframes rotateIn {
5514
+ from {
5515
+ -webkit-transform-origin: center;
5516
+ transform-origin: center;
5517
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
5518
+ transform: rotate3d(0, 0, 1, -200deg);
5519
+ opacity: 0; }
5520
+ to {
5521
+ -webkit-transform-origin: center;
5522
+ transform-origin: center;
5523
+ -webkit-transform: translate3d(0, 0, 0);
5524
+ transform: translate3d(0, 0, 0);
5525
+ opacity: 1; } }
5526
+
5527
+ @keyframes rotateIn {
5528
+ from {
5529
+ -webkit-transform-origin: center;
5530
+ transform-origin: center;
5531
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
5532
+ transform: rotate3d(0, 0, 1, -200deg);
5533
+ opacity: 0; }
5534
+ to {
5535
+ -webkit-transform-origin: center;
5536
+ transform-origin: center;
5537
+ -webkit-transform: translate3d(0, 0, 0);
5538
+ transform: translate3d(0, 0, 0);
5539
+ opacity: 1; } }
5540
+ .brz .rotateIn {
5541
+ -webkit-animation-name: rotateIn;
5542
+ animation-name: rotateIn; }
5543
+
5544
+ @-webkit-keyframes rotateInDownLeft {
5545
+ from {
5546
+ -webkit-transform-origin: left bottom;
5547
+ transform-origin: left bottom;
5548
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
5549
+ transform: rotate3d(0, 0, 1, -45deg);
5550
+ opacity: 0; }
5551
+ to {
5552
+ -webkit-transform-origin: left bottom;
5553
+ transform-origin: left bottom;
5554
+ -webkit-transform: translate3d(0, 0, 0);
5555
+ transform: translate3d(0, 0, 0);
5556
+ opacity: 1; } }
5557
+
5558
+ @keyframes rotateInDownLeft {
5559
+ from {
5560
+ -webkit-transform-origin: left bottom;
5561
+ transform-origin: left bottom;
5562
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
5563
+ transform: rotate3d(0, 0, 1, -45deg);
5564
+ opacity: 0; }
5565
+ to {
5566
+ -webkit-transform-origin: left bottom;
5567
+ transform-origin: left bottom;
5568
+ -webkit-transform: translate3d(0, 0, 0);
5569
+ transform: translate3d(0, 0, 0);
5570
+ opacity: 1; } }
5571
+ .brz .rotateInDownLeft {
5572
+ -webkit-animation-name: rotateInDownLeft;
5573
+ animation-name: rotateInDownLeft; }
5574
+
5575
+ @-webkit-keyframes rotateInDownRight {
5576
+ from {
5577
+ -webkit-transform-origin: right bottom;
5578
+ transform-origin: right bottom;
5579
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
5580
+ transform: rotate3d(0, 0, 1, 45deg);
5581
+ opacity: 0; }
5582
+ to {
5583
+ -webkit-transform-origin: right bottom;
5584
+ transform-origin: right bottom;
5585
+ -webkit-transform: translate3d(0, 0, 0);
5586
+ transform: translate3d(0, 0, 0);
5587
+ opacity: 1; } }
5588
+
5589
+ @keyframes rotateInDownRight {
5590
+ from {
5591
+ -webkit-transform-origin: right bottom;
5592
+ transform-origin: right bottom;
5593
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
5594
+ transform: rotate3d(0, 0, 1, 45deg);
5595
+ opacity: 0; }
5596
+ to {
5597
+ -webkit-transform-origin: right bottom;
5598
+ transform-origin: right bottom;
5599
+ -webkit-transform: translate3d(0, 0, 0);
5600
+ transform: translate3d(0, 0, 0);
5601
+ opacity: 1; } }
5602
+ .brz .rotateInDownRight {
5603
+ -webkit-animation-name: rotateInDownRight;
5604
+ animation-name: rotateInDownRight; }
5605
+
5606
+ @-webkit-keyframes rotateInUpLeft {
5607
+ from {
5608
+ -webkit-transform-origin: left bottom;
5609
+ transform-origin: left bottom;
5610
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
5611
+ transform: rotate3d(0, 0, 1, 45deg);
5612
+ opacity: 0; }
5613
+ to {
5614
+ -webkit-transform-origin: left bottom;
5615
+ transform-origin: left bottom;
5616
+ -webkit-transform: translate3d(0, 0, 0);
5617
+ transform: translate3d(0, 0, 0);
5618
+ opacity: 1; } }
5619
+
5620
+ @keyframes rotateInUpLeft {
5621
+ from {
5622
+ -webkit-transform-origin: left bottom;
5623
+ transform-origin: left bottom;
5624
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
5625
+ transform: rotate3d(0, 0, 1, 45deg);
5626
+ opacity: 0; }
5627
+ to {
5628
+ -webkit-transform-origin: left bottom;
5629
+ transform-origin: left bottom;
5630
+ -webkit-transform: translate3d(0, 0, 0);
5631
+ transform: translate3d(0, 0, 0);
5632
+ opacity: 1; } }
5633
+ .brz .rotateInUpLeft {
5634
+ -webkit-animation-name: rotateInUpLeft;
5635
+ animation-name: rotateInUpLeft; }
5636
+
5637
+ @-webkit-keyframes rotateInUpRight {
5638
+ from {
5639
+ -webkit-transform-origin: right bottom;
5640
+ transform-origin: right bottom;
5641
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
5642
+ transform: rotate3d(0, 0, 1, -90deg);
5643
+ opacity: 0; }
5644
+ to {
5645
+ -webkit-transform-origin: right bottom;
5646
+ transform-origin: right bottom;
5647
+ -webkit-transform: translate3d(0, 0, 0);
5648
+ transform: translate3d(0, 0, 0);
5649
+ opacity: 1; } }
5650
+
5651
+ @keyframes rotateInUpRight {
5652
+ from {
5653
+ -webkit-transform-origin: right bottom;
5654
+ transform-origin: right bottom;
5655
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
5656
+ transform: rotate3d(0, 0, 1, -90deg);
5657
+ opacity: 0; }
5658
+ to {
5659
+ -webkit-transform-origin: right bottom;
5660
+ transform-origin: right bottom;
5661
+ -webkit-transform: translate3d(0, 0, 0);
5662
+ transform: translate3d(0, 0, 0);
5663
+ opacity: 1; } }
5664
+ .brz .rotateInUpRight {
5665
+ -webkit-animation-name: rotateInUpRight;
5666
+ animation-name: rotateInUpRight; }
5667
+
5668
+ @-webkit-keyframes rotateOut {
5669
+ from {
5670
+ -webkit-transform-origin: center;
5671
+ transform-origin: center;
5672
+ opacity: 1; }
5673
+ to {
5674
+ -webkit-transform-origin: center;
5675
+ transform-origin: center;
5676
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
5677
+ transform: rotate3d(0, 0, 1, 200deg);
5678
+ opacity: 0; } }
5679
+
5680
+ @keyframes rotateOut {
5681
+ from {
5682
+ -webkit-transform-origin: center;
5683
+ transform-origin: center;
5684
+ opacity: 1; }
5685
+ to {
5686
+ -webkit-transform-origin: center;
5687
+ transform-origin: center;
5688
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
5689
+ transform: rotate3d(0, 0, 1, 200deg);
5690
+ opacity: 0; } }
5691
+ .brz .rotateOut {
5692
+ -webkit-animation-name: rotateOut;
5693
+ animation-name: rotateOut; }
5694
+
5695
+ @-webkit-keyframes rotateOutDownLeft {
5696
+ from {
5697
+ -webkit-transform-origin: left bottom;
5698
+ transform-origin: left bottom;
5699
+ opacity: 1; }
5700
+ to {
5701
+ -webkit-transform-origin: left bottom;
5702
+ transform-origin: left bottom;
5703
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
5704
+ transform: rotate3d(0, 0, 1, 45deg);
5705
+ opacity: 0; } }
5706
+
5707
+ @keyframes rotateOutDownLeft {
5708
+ from {
5709
+ -webkit-transform-origin: left bottom;
5710
+ transform-origin: left bottom;
5711
+ opacity: 1; }
5712
+ to {
5713
+ -webkit-transform-origin: left bottom;
5714
+ transform-origin: left bottom;
5715
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
5716
+ transform: rotate3d(0, 0, 1, 45deg);
5717
+ opacity: 0; } }
5718
+ .brz .rotateOutDownLeft {
5719
+ -webkit-animation-name: rotateOutDownLeft;
5720
+ animation-name: rotateOutDownLeft; }
5721
+
5722
+ @-webkit-keyframes rotateOutDownRight {
5723
+ from {
5724
+ -webkit-transform-origin: right bottom;
5725
+ transform-origin: right bottom;
5726
+ opacity: 1; }
5727
+ to {
5728
+ -webkit-transform-origin: right bottom;
5729
+ transform-origin: right bottom;
5730
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
5731
+ transform: rotate3d(0, 0, 1, -45deg);
5732
+ opacity: 0; } }
5733
+
5734
+ @keyframes rotateOutDownRight {
5735
+ from {
5736
+ -webkit-transform-origin: right bottom;
5737
+ transform-origin: right bottom;
5738
+ opacity: 1; }
5739
+ to {
5740
+ -webkit-transform-origin: right bottom;
5741
+ transform-origin: right bottom;
5742
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
5743
+ transform: rotate3d(0, 0, 1, -45deg);
5744
+ opacity: 0; } }
5745
+ .brz .rotateOutDownRight {
5746
+ -webkit-animation-name: rotateOutDownRight;
5747
+ animation-name: rotateOutDownRight; }
5748
+
5749
+ @-webkit-keyframes rotateOutUpLeft {
5750
+ from {
5751
+ -webkit-transform-origin: left bottom;
5752
+ transform-origin: left bottom;
5753
+ opacity: 1; }
5754
+ to {
5755
+ -webkit-transform-origin: left bottom;
5756
+ transform-origin: left bottom;
5757
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
5758
+ transform: rotate3d(0, 0, 1, -45deg);
5759
+ opacity: 0; } }
5760
+
5761
+ @keyframes rotateOutUpLeft {
5762
+ from {
5763
+ -webkit-transform-origin: left bottom;
5764
+ transform-origin: left bottom;
5765
+ opacity: 1; }
5766
+ to {
5767
+ -webkit-transform-origin: left bottom;
5768
+ transform-origin: left bottom;
5769
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
5770
+ transform: rotate3d(0, 0, 1, -45deg);
5771
+ opacity: 0; } }
5772
+ .brz .rotateOutUpLeft {
5773
+ -webkit-animation-name: rotateOutUpLeft;
5774
+ animation-name: rotateOutUpLeft; }
5775
+
5776
+ @-webkit-keyframes rotateOutUpRight {
5777
+ from {
5778
+ -webkit-transform-origin: right bottom;
5779
+ transform-origin: right bottom;
5780
+ opacity: 1; }
5781
+ to {
5782
+ -webkit-transform-origin: right bottom;
5783
+ transform-origin: right bottom;
5784
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
5785
+ transform: rotate3d(0, 0, 1, 90deg);
5786
+ opacity: 0; } }
5787
+
5788
+ @keyframes rotateOutUpRight {
5789
+ from {
5790
+ -webkit-transform-origin: right bottom;
5791
+ transform-origin: right bottom;
5792
+ opacity: 1; }
5793
+ to {
5794
+ -webkit-transform-origin: right bottom;
5795
+ transform-origin: right bottom;
5796
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
5797
+ transform: rotate3d(0, 0, 1, 90deg);
5798
+ opacity: 0; } }
5799
+ .brz .rotateOutUpRight {
5800
+ -webkit-animation-name: rotateOutUpRight;
5801
+ animation-name: rotateOutUpRight; }
5802
+
5803
+ @-webkit-keyframes hinge {
5804
+ 0% {
5805
+ -webkit-transform-origin: top left;
5806
+ transform-origin: top left;
5807
+ -webkit-animation-timing-function: ease-in-out;
5808
+ animation-timing-function: ease-in-out; }
5809
+ 20%,
5810
+ 60% {
5811
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
5812
+ transform: rotate3d(0, 0, 1, 80deg);
5813
+ -webkit-transform-origin: top left;
5814
+ transform-origin: top left;
5815
+ -webkit-animation-timing-function: ease-in-out;
5816
+ animation-timing-function: ease-in-out; }
5817
+ 40%,
5818
+ 80% {
5819
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
5820
+ transform: rotate3d(0, 0, 1, 60deg);
5821
+ -webkit-transform-origin: top left;
5822
+ transform-origin: top left;
5823
+ -webkit-animation-timing-function: ease-in-out;
5824
+ animation-timing-function: ease-in-out;
5825
+ opacity: 1; }
5826
+ to {
5827
+ -webkit-transform: translate3d(0, 700px, 0);
5828
+ transform: translate3d(0, 700px, 0);
5829
+ opacity: 0; } }
5830
+
5831
+ @keyframes hinge {
5832
+ 0% {
5833
+ -webkit-transform-origin: top left;
5834
+ transform-origin: top left;
5835
+ -webkit-animation-timing-function: ease-in-out;
5836
+ animation-timing-function: ease-in-out; }
5837
+ 20%,
5838
+ 60% {
5839
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
5840
+ transform: rotate3d(0, 0, 1, 80deg);
5841
+ -webkit-transform-origin: top left;
5842
+ transform-origin: top left;
5843
+ -webkit-animation-timing-function: ease-in-out;
5844
+ animation-timing-function: ease-in-out; }
5845
+ 40%,
5846
+ 80% {
5847
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
5848
+ transform: rotate3d(0, 0, 1, 60deg);
5849
+ -webkit-transform-origin: top left;
5850
+ transform-origin: top left;
5851
+ -webkit-animation-timing-function: ease-in-out;
5852
+ animation-timing-function: ease-in-out;
5853
+ opacity: 1; }
5854
+ to {
5855
+ -webkit-transform: translate3d(0, 700px, 0);
5856
+ transform: translate3d(0, 700px, 0);
5857
+ opacity: 0; } }
5858
+ .brz .hinge {
5859
+ -webkit-animation-duration: 2s;
5860
+ animation-duration: 2s;
5861
+ -webkit-animation-name: hinge;
5862
+ animation-name: hinge; }
5863
+
5864
+ @-webkit-keyframes jackInTheBox {
5865
+ from {
5866
+ opacity: 0;
5867
+ -webkit-transform: scale(0.1) rotate(30deg);
5868
+ transform: scale(0.1) rotate(30deg);
5869
+ -webkit-transform-origin: center bottom;
5870
+ transform-origin: center bottom; }
5871
+ 50% {
5872
+ -webkit-transform: rotate(-10deg);
5873
+ transform: rotate(-10deg); }
5874
+ 70% {
5875
+ -webkit-transform: rotate(3deg);
5876
+ transform: rotate(3deg); }
5877
+ to {
5878
+ opacity: 1;
5879
+ -webkit-transform: scale(1);
5880
+ transform: scale(1); } }
5881
+
5882
+ @keyframes jackInTheBox {
5883
+ from {
5884
+ opacity: 0;
5885
+ -webkit-transform: scale(0.1) rotate(30deg);
5886
+ transform: scale(0.1) rotate(30deg);
5887
+ -webkit-transform-origin: center bottom;
5888
+ transform-origin: center bottom; }
5889
+ 50% {
5890
+ -webkit-transform: rotate(-10deg);
5891
+ transform: rotate(-10deg); }
5892
+ 70% {
5893
+ -webkit-transform: rotate(3deg);
5894
+ transform: rotate(3deg); }
5895
+ to {
5896
+ opacity: 1;
5897
+ -webkit-transform: scale(1);
5898
+ transform: scale(1); } }
5899
+ .brz .jackInTheBox {
5900
+ -webkit-animation-name: jackInTheBox;
5901
+ animation-name: jackInTheBox; }
5902
+
5903
+ @-webkit-keyframes rollIn {
5904
+ from {
5905
+ opacity: 0;
5906
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
5907
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
5908
+ to {
5909
+ opacity: 1;
5910
+ -webkit-transform: translate3d(0, 0, 0);
5911
+ transform: translate3d(0, 0, 0); } }
5912
+
5913
+ @keyframes rollIn {
5914
+ from {
5915
+ opacity: 0;
5916
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
5917
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
5918
+ to {
5919
+ opacity: 1;
5920
+ -webkit-transform: translate3d(0, 0, 0);
5921
+ transform: translate3d(0, 0, 0); } }
5922
+ .brz .rollIn {
5923
+ -webkit-animation-name: rollIn;
5924
+ animation-name: rollIn; }
5925
+
5926
+ @-webkit-keyframes rollOut {
5927
+ from {
5928
+ opacity: 1; }
5929
+ to {
5930
+ opacity: 0;
5931
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
5932
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
5933
+
5934
+ @keyframes rollOut {
5935
+ from {
5936
+ opacity: 1; }
5937
+ to {
5938
+ opacity: 0;
5939
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
5940
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
5941
+ .brz .rollOut {
5942
+ -webkit-animation-name: rollOut;
5943
+ animation-name: rollOut; }
5944
+
5945
+ @-webkit-keyframes zoomIn {
5946
+ from {
5947
+ opacity: 0;
5948
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
5949
+ transform: scale3d(0.3, 0.3, 0.3); }
5950
+ 50% {
5951
+ opacity: 1; } }
5952
+
5953
+ @keyframes zoomIn {
5954
+ from {
5955
+ opacity: 0;
5956
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
5957
+ transform: scale3d(0.3, 0.3, 0.3); }
5958
+ 50% {
5959
+ opacity: 1; } }
5960
+ .brz .zoomIn {
5961
+ -webkit-animation-name: zoomIn;
5962
+ animation-name: zoomIn; }
5963
+
5964
+ @-webkit-keyframes zoomInDown {
5965
+ from {
5966
+ opacity: 0;
5967
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
5968
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
5969
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
5970
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
5971
+ 60% {
5972
+ opacity: 1;
5973
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
5974
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
5975
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
5976
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
5977
+
5978
+ @keyframes zoomInDown {
5979
+ from {
5980
+ opacity: 0;
5981
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
5982
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
5983
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
5984
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
5985
+ 60% {
5986
+ opacity: 1;
5987
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
5988
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
5989
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
5990
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
5991
+ .brz .zoomInDown {
5992
+ -webkit-animation-name: zoomInDown;
5993
+ animation-name: zoomInDown; }
5994
+
5995
+ @-webkit-keyframes zoomInLeft {
5996
+ from {
5997
+ opacity: 0;
5998
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
5999
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
6000
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6001
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6002
+ 60% {
6003
+ opacity: 1;
6004
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
6005
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
6006
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6007
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6008
+
6009
+ @keyframes zoomInLeft {
6010
+ from {
6011
+ opacity: 0;
6012
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
6013
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
6014
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6015
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6016
+ 60% {
6017
+ opacity: 1;
6018
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
6019
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
6020
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6021
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6022
+ .brz .zoomInLeft {
6023
+ -webkit-animation-name: zoomInLeft;
6024
+ animation-name: zoomInLeft; }
6025
+
6026
+ @-webkit-keyframes zoomInRight {
6027
+ from {
6028
+ opacity: 0;
6029
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
6030
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
6031
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6032
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6033
+ 60% {
6034
+ opacity: 1;
6035
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
6036
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
6037
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6038
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6039
+
6040
+ @keyframes zoomInRight {
6041
+ from {
6042
+ opacity: 0;
6043
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
6044
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
6045
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6046
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6047
+ 60% {
6048
+ opacity: 1;
6049
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
6050
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
6051
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6052
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6053
+ .brz .zoomInRight {
6054
+ -webkit-animation-name: zoomInRight;
6055
+ animation-name: zoomInRight; }
6056
+
6057
+ @-webkit-keyframes zoomInUp {
6058
+ from {
6059
+ opacity: 0;
6060
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
6061
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
6062
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6063
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6064
+ 60% {
6065
+ opacity: 1;
6066
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6067
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6068
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6069
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6070
+
6071
+ @keyframes zoomInUp {
6072
+ from {
6073
+ opacity: 0;
6074
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
6075
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
6076
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6077
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6078
+ 60% {
6079
+ opacity: 1;
6080
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6081
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6082
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6083
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6084
+ .brz .zoomInUp {
6085
+ -webkit-animation-name: zoomInUp;
6086
+ animation-name: zoomInUp; }
6087
+
6088
+ @-webkit-keyframes zoomOut {
6089
+ from {
6090
+ opacity: 1; }
6091
+ 50% {
6092
+ opacity: 0;
6093
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
6094
+ transform: scale3d(0.3, 0.3, 0.3); }
6095
+ to {
6096
+ opacity: 0; } }
6097
+
6098
+ @keyframes zoomOut {
6099
+ from {
6100
+ opacity: 1; }
6101
+ 50% {
6102
+ opacity: 0;
6103
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
6104
+ transform: scale3d(0.3, 0.3, 0.3); }
6105
+ to {
6106
+ opacity: 0; } }
6107
+ .brz .zoomOut {
6108
+ -webkit-animation-name: zoomOut;
6109
+ animation-name: zoomOut; }
6110
+
6111
+ @-webkit-keyframes zoomOutDown {
6112
+ 40% {
6113
+ opacity: 1;
6114
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6115
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6116
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6117
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6118
+ to {
6119
+ opacity: 0;
6120
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
6121
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
6122
+ -webkit-transform-origin: center bottom;
6123
+ transform-origin: center bottom;
6124
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6125
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6126
+
6127
+ @keyframes zoomOutDown {
6128
+ 40% {
6129
+ opacity: 1;
6130
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6131
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
6132
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6133
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6134
+ to {
6135
+ opacity: 0;
6136
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
6137
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
6138
+ -webkit-transform-origin: center bottom;
6139
+ transform-origin: center bottom;
6140
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6141
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6142
+ .brz .zoomOutDown {
6143
+ -webkit-animation-name: zoomOutDown;
6144
+ animation-name: zoomOutDown; }
6145
+
6146
+ @-webkit-keyframes zoomOutLeft {
6147
+ 40% {
6148
+ opacity: 1;
6149
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
6150
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
6151
+ to {
6152
+ opacity: 0;
6153
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
6154
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
6155
+ -webkit-transform-origin: left center;
6156
+ transform-origin: left center; } }
6157
+
6158
+ @keyframes zoomOutLeft {
6159
+ 40% {
6160
+ opacity: 1;
6161
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
6162
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
6163
+ to {
6164
+ opacity: 0;
6165
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
6166
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
6167
+ -webkit-transform-origin: left center;
6168
+ transform-origin: left center; } }
6169
+ .brz .zoomOutLeft {
6170
+ -webkit-animation-name: zoomOutLeft;
6171
+ animation-name: zoomOutLeft; }
6172
+
6173
+ @-webkit-keyframes zoomOutRight {
6174
+ 40% {
6175
+ opacity: 1;
6176
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
6177
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
6178
+ to {
6179
+ opacity: 0;
6180
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
6181
+ transform: scale(0.1) translate3d(2000px, 0, 0);
6182
+ -webkit-transform-origin: right center;
6183
+ transform-origin: right center; } }
6184
+
6185
+ @keyframes zoomOutRight {
6186
+ 40% {
6187
+ opacity: 1;
6188
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
6189
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
6190
+ to {
6191
+ opacity: 0;
6192
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
6193
+ transform: scale(0.1) translate3d(2000px, 0, 0);
6194
+ -webkit-transform-origin: right center;
6195
+ transform-origin: right center; } }
6196
+ .brz .zoomOutRight {
6197
+ -webkit-animation-name: zoomOutRight;
6198
+ animation-name: zoomOutRight; }
6199
+
6200
+ @-webkit-keyframes zoomOutUp {
6201
+ 40% {
6202
+ opacity: 1;
6203
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
6204
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
6205
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6206
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6207
+ to {
6208
+ opacity: 0;
6209
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
6210
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
6211
+ -webkit-transform-origin: center bottom;
6212
+ transform-origin: center bottom;
6213
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6214
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6215
+
6216
+ @keyframes zoomOutUp {
6217
+ 40% {
6218
+ opacity: 1;
6219
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
6220
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
6221
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6222
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
6223
+ to {
6224
+ opacity: 0;
6225
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
6226
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
6227
+ -webkit-transform-origin: center bottom;
6228
+ transform-origin: center bottom;
6229
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
6230
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
6231
+ .brz .zoomOutUp {
6232
+ -webkit-animation-name: zoomOutUp;
6233
+ animation-name: zoomOutUp; }
6234
+
6235
+ @-webkit-keyframes slideInDown {
6236
+ from {
6237
+ -webkit-transform: translate3d(0, -100%, 0);
6238
+ transform: translate3d(0, -100%, 0);
6239
+ visibility: visible; }
6240
+ to {
6241
+ -webkit-transform: translate3d(0, 0, 0);
6242
+ transform: translate3d(0, 0, 0); } }
6243
+
6244
+ @keyframes slideInDown {
6245
+ from {
6246
+ -webkit-transform: translate3d(0, -100%, 0);
6247
+ transform: translate3d(0, -100%, 0);
6248
+ visibility: visible; }
6249
+ to {
6250
+ -webkit-transform: translate3d(0, 0, 0);
6251
+ transform: translate3d(0, 0, 0); } }
6252
+ .brz .slideInDown {
6253
+ -webkit-animation-name: slideInDown;
6254
+ animation-name: slideInDown; }
6255
+
6256
+ @-webkit-keyframes slideInLeft {
6257
+ from {
6258
+ -webkit-transform: translate3d(-100%, 0, 0);
6259
+ transform: translate3d(-100%, 0, 0);
6260
+ visibility: visible; }
6261
+ to {
6262
+ -webkit-transform: translate3d(0, 0, 0);
6263
+ transform: translate3d(0, 0, 0); } }
6264
+
6265
+ @keyframes slideInLeft {
6266
+ from {
6267
+ -webkit-transform: translate3d(-100%, 0, 0);
6268
+ transform: translate3d(-100%, 0, 0);
6269
+ visibility: visible; }
6270
+ to {
6271
+ -webkit-transform: translate3d(0, 0, 0);
6272
+ transform: translate3d(0, 0, 0); } }
6273
+ .brz .slideInLeft {
6274
+ -webkit-animation-name: slideInLeft;
6275
+ animation-name: slideInLeft; }
6276
+
6277
+ @-webkit-keyframes slideInRight {
6278
+ from {
6279
+ -webkit-transform: translate3d(100%, 0, 0);
6280
+ transform: translate3d(100%, 0, 0);
6281
+ visibility: visible; }
6282
+ to {
6283
+ -webkit-transform: translate3d(0, 0, 0);
6284
+ transform: translate3d(0, 0, 0); } }
6285
+
6286
+ @keyframes slideInRight {
6287
+ from {
6288
+ -webkit-transform: translate3d(100%, 0, 0);
6289
+ transform: translate3d(100%, 0, 0);
6290
+ visibility: visible; }
6291
+ to {
6292
+ -webkit-transform: translate3d(0, 0, 0);
6293
+ transform: translate3d(0, 0, 0); } }
6294
+ .brz .slideInRight {
6295
+ -webkit-animation-name: slideInRight;
6296
+ animation-name: slideInRight; }
6297
+
6298
+ @-webkit-keyframes slideInUp {
6299
+ from {
6300
+ -webkit-transform: translate3d(0, 100%, 0);
6301
+ transform: translate3d(0, 100%, 0);
6302
+ visibility: visible; }
6303
+ to {
6304
+ -webkit-transform: translate3d(0, 0, 0);
6305
+ transform: translate3d(0, 0, 0); } }
6306
+
6307
+ @keyframes slideInUp {
6308
+ from {
6309
+ -webkit-transform: translate3d(0, 100%, 0);
6310
+ transform: translate3d(0, 100%, 0);
6311
+ visibility: visible; }
6312
+ to {
6313
+ -webkit-transform: translate3d(0, 0, 0);
6314
+ transform: translate3d(0, 0, 0); } }
6315
+ .brz .slideInUp {
6316
+ -webkit-animation-name: slideInUp;
6317
+ animation-name: slideInUp; }
6318
+
6319
+ @-webkit-keyframes slideOutDown {
6320
+ from {
6321
+ -webkit-transform: translate3d(0, 0, 0);
6322
+ transform: translate3d(0, 0, 0); }
6323
+ to {
6324
+ visibility: hidden;
6325
+ -webkit-transform: translate3d(0, 100%, 0);
6326
+ transform: translate3d(0, 100%, 0); } }
6327
+
6328
+ @keyframes slideOutDown {
6329
+ from {
6330
+ -webkit-transform: translate3d(0, 0, 0);
6331
+ transform: translate3d(0, 0, 0); }
6332
+ to {
6333
+ visibility: hidden;
6334
+ -webkit-transform: translate3d(0, 100%, 0);
6335
+ transform: translate3d(0, 100%, 0); } }
6336
+ .brz .slideOutDown {
6337
+ -webkit-animation-name: slideOutDown;
6338
+ animation-name: slideOutDown; }
6339
+
6340
+ @-webkit-keyframes slideOutLeft {
6341
+ from {
6342
+ -webkit-transform: translate3d(0, 0, 0);
6343
+ transform: translate3d(0, 0, 0); }
6344
+ to {
6345
+ visibility: hidden;
6346
+ -webkit-transform: translate3d(-100%, 0, 0);
6347
+ transform: translate3d(-100%, 0, 0); } }
6348
+
6349
+ @keyframes slideOutLeft {
6350
+ from {
6351
+ -webkit-transform: translate3d(0, 0, 0);
6352
+ transform: translate3d(0, 0, 0); }
6353
+ to {
6354
+ visibility: hidden;
6355
+ -webkit-transform: translate3d(-100%, 0, 0);
6356
+ transform: translate3d(-100%, 0, 0); } }
6357
+ .brz .slideOutLeft {
6358
+ -webkit-animation-name: slideOutLeft;
6359
+ animation-name: slideOutLeft; }
6360
+
6361
+ @-webkit-keyframes slideOutRight {
6362
+ from {
6363
+ -webkit-transform: translate3d(0, 0, 0);
6364
+ transform: translate3d(0, 0, 0); }
6365
+ to {
6366
+ visibility: hidden;
6367
+ -webkit-transform: translate3d(100%, 0, 0);
6368
+ transform: translate3d(100%, 0, 0); } }
6369
+
6370
+ @keyframes slideOutRight {
6371
+ from {
6372
+ -webkit-transform: translate3d(0, 0, 0);
6373
+ transform: translate3d(0, 0, 0); }
6374
+ to {
6375
+ visibility: hidden;
6376
+ -webkit-transform: translate3d(100%, 0, 0);
6377
+ transform: translate3d(100%, 0, 0); } }
6378
+ .brz .slideOutRight {
6379
+ -webkit-animation-name: slideOutRight;
6380
+ animation-name: slideOutRight; }
6381
+
6382
+ @-webkit-keyframes slideOutUp {
6383
+ from {
6384
+ -webkit-transform: translate3d(0, 0, 0);
6385
+ transform: translate3d(0, 0, 0); }
6386
+ to {
6387
+ visibility: hidden;
6388
+ -webkit-transform: translate3d(0, -100%, 0);
6389
+ transform: translate3d(0, -100%, 0); } }
6390
+
6391
+ @keyframes slideOutUp {
6392
+ from {
6393
+ -webkit-transform: translate3d(0, 0, 0);
6394
+ transform: translate3d(0, 0, 0); }
6395
+ to {
6396
+ visibility: hidden;
6397
+ -webkit-transform: translate3d(0, -100%, 0);
6398
+ transform: translate3d(0, -100%, 0); } }
6399
+ .brz .slideOutUp {
6400
+ -webkit-animation-name: slideOutUp;
6401
+ animation-name: slideOutUp; }
6402
+ .brz .animated {
6403
+ -webkit-animation-duration: 1s;
6404
+ animation-duration: 1s;
6405
+ -webkit-animation-fill-mode: both;
6406
+ animation-fill-mode: both; }
6407
+ .brz .animated.infinite {
6408
+ -webkit-animation-iteration-count: infinite;
6409
+ animation-iteration-count: infinite; }
6410
+ .brz .animated.delay-1s {
6411
+ -webkit-animation-delay: 1s;
6412
+ animation-delay: 1s; }
6413
+ .brz .animated.delay-2s {
6414
+ -webkit-animation-delay: 2s;
6415
+ animation-delay: 2s; }
6416
+ .brz .animated.delay-3s {
6417
+ -webkit-animation-delay: 3s;
6418
+ animation-delay: 3s; }
6419
+ .brz .animated.delay-4s {
6420
+ -webkit-animation-delay: 4s;
6421
+ animation-delay: 4s; }
6422
+ .brz .animated.delay-5s {
6423
+ -webkit-animation-delay: 5s;
6424
+ animation-delay: 5s; }
6425
+ .brz .animated.fast {
6426
+ -webkit-animation-duration: 800ms;
6427
+ animation-duration: 800ms; }
6428
+ .brz .animated.faster {
6429
+ -webkit-animation-duration: 500ms;
6430
+ animation-duration: 500ms; }
6431
+ .brz .animated.slow {
6432
+ -webkit-animation-duration: 2s;
6433
+ animation-duration: 2s; }
6434
+ .brz .animated.slower {
6435
+ -webkit-animation-duration: 3s;
6436
+ animation-duration: 3s; }
6437
+ @media (prefers-reduced-motion) {
6438
+ .brz .animated {
6439
+ -webkit-animation: unset !important;
6440
+ animation: unset !important;
6441
+ -webkit-transition: none !important;
6442
+ transition: none !important; } }
6443
+ .brz .brz-animated {
6444
+ opacity: 0;
6445
+ -webkit-animation-fill-mode: both;
6446
+ animation-fill-mode: both; }
6447
+ .brz .brz-animated.brz-animate {
6448
+ opacity: 1; }
6449
+ .brz .brz-icon-svg {
6450
+ display: inline-block;
6451
+ width: 1em;
6452
+ height: 1em;
6453
+ stroke: none;
6454
+ position: relative;
6455
+ fill: currentColor;
6456
+ color: currentColor; }
6457
+ .brz .brz-icon-svg use {
6458
+ /* change 'inherit' to a color value if you want to add a secondary color to Nucleo icons */
6459
+ fill: inherit; }
6460
+ .brz .brz-icon-svg.grid-16 {
6461
+ height: 16px;
6462
+ width: 16px; }
6463
+ .brz .brz-icon-svg.grid-24 {
6464
+ height: 24px;
6465
+ width: 24px; }
6466
+ .brz .brz-icon-svg.glyph {
6467
+ fill: currentColor;
6468
+ stroke: none; }
6469
+ .brz .brz-icon-svg.outline {
6470
+ stroke: currentColor;
6471
+ fill: none; }
6472
+ .brz .brz-icon-svg.outline.stroke-2 {
6473
+ stroke-width: 2px; }
6474
+ .brz .brz-section {
6475
+ background-color: #fff;
6476
+ position: relative;
6477
+ margin: 0;
6478
+ overflow: visible; }
6479
+ .brz .brz-section__content {
6480
+ position: relative;
6481
+ width: 100%; }
6482
+ .brz .brz-section__content > .brz-bg {
6483
+ display: -webkit-box;
6484
+ display: -ms-flexbox;
6485
+ display: flex;
6486
+ -ms-flex-wrap: wrap;
6487
+ flex-wrap: wrap;
6488
+ -webkit-box-align: center;
6489
+ -ms-flex-align: center;
6490
+ align-items: center;
6491
+ height: 100%; }
6492
+ .brz .brz-section__items {
6493
+ display: -webkit-box;
6494
+ display: -ms-flexbox;
6495
+ display: flex;
6496
+ -ms-flex-wrap: wrap;
6497
+ flex-wrap: wrap;
6498
+ width: 100%; }
6499
+ .brz .brz-section > .brz-slick-slider .brz-container__wrap {
6500
+ -webkit-box-align: center;
6501
+ -ms-flex-align: center;
6502
+ align-items: center; }
6503
+ .brz .brz-section > .brz-slick-slider:not(.slick-initialized) > .brz-section__items:not(:first-child) {
6504
+ display: none; }
6505
+ .brz .brz-section > .brz-slick-slider > .slick-list > .slick-track > .slick-slide {
6506
+ height: auto; }
6507
+ .brz .brz-section > .brz-slick-slider > .slick-list > .slick-track > .slick-slide .brz-section__content > .brz-bg > .brz-bg-content {
6508
+ height: 100%;
6509
+ display: -webkit-box;
6510
+ display: -ms-flexbox;
6511
+ display: flex;
6512
+ -webkit-box-align: center;
6513
+ -ms-flex-align: center;
6514
+ align-items: center;
6515
+ -ms-flex-wrap: wrap;
6516
+ flex-wrap: wrap; }
6517
+ .brz .brz-sec-full-height .brz-container__wrap,
6518
+ .brz .brz-sec-full-height .brz-container__wrap--fluid {
6519
+ display: -webkit-box;
6520
+ display: -ms-flexbox;
6521
+ display: flex;
6522
+ -webkit-box-orient: vertical;
6523
+ -webkit-box-direction: normal;
6524
+ -ms-flex-direction: column;
6525
+ flex-direction: column;
6526
+ -webkit-box-pack: center;
6527
+ -ms-flex-pack: center;
6528
+ justify-content: center;
6529
+ min-height: 100vh; }
6530
+ .brz .brz-section__header > .brz-section__menu-item {
6531
+ position: relative;
6532
+ z-index: 1050; }
6533
+ .brz .brz-section__header--animated {
6534
+ position: fixed;
6535
+ z-index: 1051;
6536
+ top: 0;
6537
+ left: 0;
6538
+ width: 100%;
6539
+ -webkit-transform: translate3d(0, -100%, 0);
6540
+ transform: translate3d(0, -100%, 0);
6541
+ opacity: 0;
6542
+ -webkit-transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
6543
+ transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
6544
+ transition: transform 0.2s linear, opacity 0.2s linear;
6545
+ transition: transform 0.2s linear, opacity 0.2s linear, -webkit-transform 0.2s linear; }
6546
+ .brz .brz-section__header--animated-opened {
6547
+ -webkit-transform: translate3d(0, 0, 0);
6548
+ transform: translate3d(0, 0, 0);
6549
+ opacity: 1;
6550
+ -webkit-transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
6551
+ transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
6552
+ transition: transform 0.2s linear, opacity 0.2s linear;
6553
+ transition: transform 0.2s linear, opacity 0.2s linear, -webkit-transform 0.2s linear; }
6554
+ .brz .brz-section__header--fixed {
6555
+ position: relative;
6556
+ z-index: 1050; }
6557
+ .brz .brz-section__header--fixed-opened {
6558
+ position: fixed;
6559
+ z-index: 1051;
6560
+ top: 0;
6561
+ left: 0;
6562
+ width: 100%; }
6563
+ @media (max-width: 991px) {
6564
+ .brz.brz-ed .brz-section__header--animated {
6565
+ padding-left: 15px;
6566
+ padding-right: 15px; } }
6567
+ .brz .brz-container,
6568
+ .brz .brz-container__wrap {
6569
+ margin-left: auto;
6570
+ margin-right: auto;
6571
+ width: 100%; }
6572
+ .brz .brz-container__wrap {
6573
+ display: -webkit-box;
6574
+ display: -ms-flexbox;
6575
+ display: flex;
6576
+ -ms-flex-wrap: wrap;
6577
+ flex-wrap: wrap; }
6578
+ @media (max-width: 991px) {
6579
+ .brz .brz-container__wrap,
6580
+ .brz .brz-container__wrap--fluid {
6581
+ padding-left: 15px;
6582
+ padding-right: 15px; } }
6583
+ .brz .brz-row {
6584
+ display: -webkit-box;
6585
+ display: -ms-flexbox;
6586
+ display: flex;
6587
+ -ms-flex-wrap: wrap;
6588
+ flex-wrap: wrap; }
6589
+ .brz .brz-columns {
6590
+ display: -webkit-box;
6591
+ display: -ms-flexbox;
6592
+ display: flex;
6593
+ -webkit-box-orient: vertical;
6594
+ -webkit-box-direction: normal;
6595
+ -ms-flex-direction: column;
6596
+ flex-direction: column;
6597
+ min-height: 1px;
6598
+ -ms-flex-preferred-size: 100%;
6599
+ flex-basis: 100%; }
6600
+ .brz .brz-columns > .brz-bg {
6601
+ -webkit-box-flex: 1;
6602
+ -ms-flex: 1 1 auto;
6603
+ flex: 1 1 auto; }
6604
+ .brz .brz-wrapper, .brz .brz-wrapper-clone {
6605
+ border-top: 1px solid transparent;
6606
+ border-bottom: 1px solid transparent;
6607
+ margin-top: -1px;
6608
+ margin-bottom: -1px; }
6609
+ .brz .brz-wrapper-clone__wrap {
6610
+ height: 100%; }
6611
+ .brz .brz-wrapper-clone__wrap > div {
6612
+ -webkit-box-align: center;
6613
+ -ms-flex-align: center;
6614
+ align-items: center; }
6615
+ .brz .brz-wrapper-clone__item {
6616
+ position: relative;
6617
+ min-height: 1px;
6618
+ -ms-flex-preferred-size: auto;
6619
+ flex-basis: auto; }
6620
+ .brz .brz-bg {
6621
+ position: relative; }
6622
+ .brz .brz-bg-content {
6623
+ position: relative;
6624
+ -webkit-box-flex: 1;
6625
+ -ms-flex: 1;
6626
+ flex: 1;
6627
+ min-width: 0; }
6628
+ .brz .brz-bg-media {
6629
+ overflow: hidden; }
6630
+ .brz .brz-bg-media,
6631
+ .brz .brz-bg-image,
6632
+ .brz .brz-bg-video,
6633
+ .brz .brz-bg-color,
6634
+ .brz .brz-bg-map {
6635
+ position: absolute;
6636
+ top: 0;
6637
+ left: 0;
6638
+ width: 100%;
6639
+ height: 100%; }
6640
+ .brz .brz-bg-image {
6641
+ background-repeat: no-repeat;
6642
+ background-size: cover; }
6643
+ .brz.brz-is-mobile .brz-bg-media > .brz-bg-image {
6644
+ background-attachment: scroll; }
6645
+ .brz .brz-iframe.brz-bg-video__cover,
6646
+ .brz .brz-iframe.brz-bg-map__cover {
6647
+ position: absolute;
6648
+ top: 0;
6649
+ left: 0;
6650
+ width: 100%;
6651
+ height: 100%;
6652
+ border: none;
6653
+ max-width: none;
6654
+ background-repeat: no-repeat;
6655
+ background-size: cover; }
6656
+ .brz .brz-bg-color {
6657
+ opacity: 1; }
6658
+ .brz .brz-bg-shape {
6659
+ width: 100%;
6660
+ height: 100px;
6661
+ position: absolute;
6662
+ left: 0;
6663
+ right: 0;
6664
+ background-repeat: no-repeat;
6665
+ pointer-events: none; }
6666
+ .brz .brz-bg-shape__top {
6667
+ top: 0; }
6668
+ .brz .brz-bg-shape__bottom {
6669
+ bottom: 0;
6670
+ -webkit-transform: rotateX(180deg);
6671
+ transform: rotateX(180deg); }
6672
+ .brz .brz-bg-image-parallax {
6673
+ width: 100%;
6674
+ background-size: cover !important;
6675
+ background-position: 50% 50%;
6676
+ left: 0;
6677
+ top: -50vh;
6678
+ height: 100vh;
6679
+ -webkit-transition: all 0s ease !important;
6680
+ transition: all 0s ease !important;
6681
+ -webkit-transform-origin: center center 0;
6682
+ transform-origin: center center 0;
6683
+ -webkit-transform-style: preserve-3d;
6684
+ transform-style: preserve-3d; }
6685
+ @media (max-width: 991px) {
6686
+ .brz .brz-bg-video .brz-iframe {
6687
+ display: none !important; } }
6688
+ .brz .brz-btn {
6689
+ display: -webkit-inline-box;
6690
+ display: -ms-inline-flexbox;
6691
+ display: inline-flex;
6692
+ -webkit-box-pack: center;
6693
+ -ms-flex-pack: center;
6694
+ justify-content: center;
6695
+ -webkit-box-align: center;
6696
+ -ms-flex-align: center;
6697
+ align-items: center;
6698
+ border: 1px solid #ccc;
6699
+ -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
6700
+ transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
6701
+ text-align: center;
6702
+ vertical-align: middle;
6703
+ -ms-touch-action: manipulation;
6704
+ touch-action: manipulation;
6705
+ color: #fff;
6706
+ cursor: pointer;
6707
+ -webkit-user-select: none;
6708
+ -moz-user-select: none;
6709
+ -ms-user-select: none;
6710
+ user-select: none;
6711
+ -webkit-user-drag: none;
6712
+ background-image: none;
6713
+ white-space: nowrap;
6714
+ font-weight: 400;
6715
+ -webkit-backface-visibility: hidden;
6716
+ backface-visibility: hidden; }
6717
+ .brz .brz-btn:hover, .brz .brz-btn:focus, .brz .brz-btn.focus {
6718
+ text-decoration: none; }
6719
+ .brz .brz-btn:focus {
6720
+ text-decoration: none; }
6721
+ .brz .brz-btn .brz-span {
6722
+ display: block; }
6723
+ .brz .buttons {
6724
+ margin: -10px;
6725
+ -webkit-box-align: center;
6726
+ -ms-flex-align: center;
6727
+ align-items: center; }
6728
+ .brz .buttons .brz-wrapper-clone__item {
6729
+ padding: 10px; }
6730
+ .brz .brz-icon {
6731
+ display: -webkit-inline-box;
6732
+ display: -ms-inline-flexbox;
6733
+ display: inline-flex;
6734
+ -webkit-box-pack: center;
6735
+ -ms-flex-pack: center;
6736
+ justify-content: center;
6737
+ -webkit-box-align: center;
6738
+ -ms-flex-align: center;
6739
+ align-items: center;
6740
+ vertical-align: middle;
6741
+ max-width: 100%;
6742
+ -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
6743
+ transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
6744
+ .brz .brz-list {
6745
+ margin: -6px;
6746
+ -webkit-box-align: center;
6747
+ -ms-flex-align: center;
6748
+ align-items: center; }
6749
+ .brz .brz-list .brz-list__item {
6750
+ padding: 6px; }
6751
+ .brz .brz-countdown {
6752
+ display: -webkit-box;
6753
+ display: -ms-flexbox;
6754
+ display: flex; }
6755
+ .brz .brz-countdown__item {
6756
+ -webkit-box-flex: 1;
6757
+ -ms-flex: 1 0 25%;
6758
+ flex: 1 0 25%;
6759
+ text-align: center;
6760
+ padding-left: 15px;
6761
+ padding-right: 15px;
6762
+ word-break: break-word;
6763
+ word-wrap: break-word; }
6764
+ .brz .brz-countdown__number {
6765
+ font-size: 1em;
6766
+ margin-bottom: 15px; }
6767
+ .brz .brz-countdown .brz-ed-box__resizer {
6768
+ display: -webkit-inline-box;
6769
+ display: -ms-inline-flexbox;
6770
+ display: inline-flex;
6771
+ width: 100%; }
6772
+ .brz .brz-spacer {
6773
+ width: 100%; }
6774
+ .brz .brz-icon-text {
6775
+ display: -webkit-box;
6776
+ display: -ms-flexbox;
6777
+ display: flex;
6778
+ width: 100%;
6779
+ text-align: left;
6780
+ -webkit-box-align: stretch;
6781
+ -ms-flex-align: stretch;
6782
+ align-items: stretch;
6783
+ -ms-flex-wrap: nowrap;
6784
+ flex-wrap: nowrap; }
6785
+ .brz .brz-icon-text .brz-text__editor,
6786
+ .brz .brz-icon-text .brz-text-btn {
6787
+ width: 100%; }
6788
+ .brz .brz-icon-text .brz-icon__container {
6789
+ min-width: auto; }
6790
+ .brz .brz-line {
6791
+ position: relative;
6792
+ line-height: 1;
6793
+ font-size: 0;
6794
+ padding-top: 7px;
6795
+ padding-bottom: 7px;
6796
+ display: inline-block; }
6797
+ .brz .brz-line .brz-hr {
6798
+ border-right-width: 0;
6799
+ border-bottom-width: 0;
6800
+ border-left-width: 0;
6801
+ background: none; }
6802
+ .brz .brz-map {
6803
+ position: relative;
6804
+ width: 100%;
6805
+ display: inline-block;
6806
+ vertical-align: middle; }
6807
+ .brz .brz-map .brz-iframe {
6808
+ position: absolute;
6809
+ top: 0;
6810
+ left: 0;
6811
+ width: 100%;
6812
+ height: 100%;
6813
+ border: none; }
6814
+ .brz .brz-image {
6815
+ display: inherit;
6816
+ -webkit-box-pack: inherit;
6817
+ -ms-flex-pack: inherit;
6818
+ justify-content: inherit;
6819
+ -webkit-box-align: inherit;
6820
+ -ms-flex-align: inherit;
6821
+ align-items: inherit;
6822
+ -ms-flex-preferred-size: 100%;
6823
+ flex-basis: 100%;
6824
+ width: 100%; }
6825
+ .brz .brz-image .brz-img {
6826
+ max-width: 100%;
6827
+ border-radius: inherit; }
6828
+ .brz .brz-image .brz-a,
6829
+ .brz .brz-image picture {
6830
+ outline: none;
6831
+ border-radius: inherit; }
6832
+ .brz .brz-ed-image__content {
6833
+ position: relative;
6834
+ width: 100%; }
6835
+ .brz .brz-ed-image__wrapper {
6836
+ position: absolute;
6837
+ top: 0;
6838
+ left: 0;
6839
+ margin-left: auto;
6840
+ margin-right: auto;
6841
+ overflow: hidden; }
6842
+ .brz .brz-ed-image__wrapper .brz-img {
6843
+ max-width: none;
6844
+ -webkit-user-select: none;
6845
+ -moz-user-select: none;
6846
+ -ms-user-select: none;
6847
+ user-select: none;
6848
+ -webkit-user-drag: none;
6849
+ display: block; }
6850
+ .brz .brz-ed-image__wrapper picture:after {
6851
+ content: "";
6852
+ position: absolute;
6853
+ top: 0;
6854
+ left: 0;
6855
+ width: 100%;
6856
+ height: 100%; }
6857
+ .brz .brz-image-fix-1-1 {
6858
+ padding-top: 100%; }
6859
+ .brz .brz-image-fix-2-1 {
6860
+ padding-top: 50%; }
6861
+ .brz .brz-image-fix-2-3 {
6862
+ padding-top: 150%; }
6863
+ .brz .brz-image-fix-3-4 {
6864
+ padding-top: 125%; }
6865
+ .brz .brz-image-fix-4-3 {
6866
+ padding-top: 75%; }
6867
+ .brz .brz-image-fix-9-16 {
6868
+ padding-top: 177.8%; }
6869
+ .brz .brz-image-fix-16-9 {
6870
+ padding-top: 56.25%; }
6871
+ .brz:not(.brz-ed) .brz-image .brz-a,
6872
+ .brz:not(.brz-ed) .brz-image .brz-img,
6873
+ .brz:not(.brz-ed) .brz-image picture {
6874
+ width: 100%;
6875
+ height: auto; }
6876
+ .brz:not(.brz-ed) .brz-image__lightbox * {
6877
+ cursor: -webkit-zoom-in;
6878
+ cursor: zoom-in; }
6879
+ .brz .mfp-bg {
6880
+ z-index: 1100; }
6881
+ .brz .mfp-wrap {
6882
+ z-index: 1101; }
6883
+ .brz .mfp-figure:after,
6884
+ .brz .mfp-iframe-scaler iframe {
6885
+ -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
6886
+ box-shadow: 0 0 40px rgba(0, 0, 0, 0.35); }
6887
+ .brz .brz-video {
6888
+ position: relative;
6889
+ width: 100%;
6890
+ display: inline-block;
6891
+ vertical-align: middle; }
6892
+ .brz .brz-video .brz-iframe,
6893
+ .brz .brz-video .brz-video__cover {
6894
+ position: absolute;
6895
+ top: 0;
6896
+ left: 0;
6897
+ width: 100%;
6898
+ height: 100%;
6899
+ border: none; }
6900
+ .brz .brz-video .brz-video__cover {
6901
+ display: -webkit-box;
6902
+ display: -ms-flexbox;
6903
+ display: flex;
6904
+ -webkit-box-align: center;
6905
+ -ms-flex-align: center;
6906
+ align-items: center;
6907
+ -webkit-box-pack: center;
6908
+ -ms-flex-pack: center;
6909
+ justify-content: center;
6910
+ background-repeat: no-repeat; }
6911
+ .brz .brz-video .brz-video__cover::before {
6912
+ content: '';
6913
+ display: block;
6914
+ position: absolute;
6915
+ top: 0;
6916
+ left: 0;
6917
+ right: 0;
6918
+ bottom: 0;
6919
+ margin: 0 auto; }
6920
+ .brz .brz-video .brz-video__cover .brz-video__cover-icon {
6921
+ position: relative;
6922
+ z-index: 1;
6923
+ color: #fff;
6924
+ display: -webkit-box;
6925
+ display: -ms-flexbox;
6926
+ display: flex;
6927
+ -webkit-box-align: center;
6928
+ -ms-flex-align: center;
6929
+ align-items: center;
6930
+ -webkit-box-pack: center;
6931
+ -ms-flex-pack: center;
6932
+ justify-content: center;
6933
+ border-radius: 50%;
6934
+ -webkit-transition: -webkit-transform 0.3s ease;
6935
+ transition: -webkit-transform 0.3s ease;
6936
+ transition: transform 0.3s ease;
6937
+ transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
6938
+ .brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg {
6939
+ width: 100%;
6940
+ left: 2px; }
6941
+ .brz .brz-video .brz-video__cover .brz-video__cover-icon a {
6942
+ line-height: 0; }
6943
+ .brz .brz-video .brz-video__cover:hover {
6944
+ cursor: pointer; }
6945
+ .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon {
6946
+ -webkit-transform: scale(1.1);
6947
+ transform: scale(1.1); }
6948
+ .brz .brz-video .brz-shortcode__placeholder {
6949
+ position: absolute;
6950
+ top: 0; }
6951
+ .brz .brz-embed-code {
6952
+ position: relative;
6953
+ display: inline-block;
6954
+ width: 100%;
6955
+ min-height: 20px;
6956
+ height: auto;
6957
+ word-break: break-all;
6958
+ word-wrap: break-word; }
6959
+ .brz .brz-embed-code .brz-shortcode__placeholder {
6960
+ height: 250px; }
6961
+ .brz .brz-rich-text {
6962
+ -webkit-font-smoothing: antialiased;
6963
+ -webkit-box-flex: 1;
6964
+ -ms-flex: 1 1 auto;
6965
+ flex: 1 1 auto;
6966
+ min-width: 0;
6967
+ white-space: pre-wrap;
6968
+ overflow-wrap: break-word;
6969
+ word-wrap: break-word;
6970
+ word-break: break-word; }
6971
+ .brz .brz-rich-text i,
6972
+ .brz .brz-rich-text em {
6973
+ font-style: italic; }
6974
+ .brz .brz-rich-text ul li,
6975
+ .brz .brz-rich-text ol li {
6976
+ list-style: none;
6977
+ padding-left: 1em; }
6978
+ .brz .brz-rich-text ul li:before,
6979
+ .brz .brz-rich-text ol li:before {
6980
+ margin-left: -1em; }
6981
+ .brz .brz-rich-text ul li:before {
6982
+ position: relative;
6983
+ top: -0.1em;
6984
+ line-height: 1;
6985
+ content: "\2022";
6986
+ padding-right: 0.5em; }
6987
+ .brz .brz-rich-text ol {
6988
+ counter-reset: number; }
6989
+ .brz .brz-rich-text ol li {
6990
+ counter-increment: number; }
6991
+ .brz .brz-rich-text ol li:before {
6992
+ content: counter(number);
6993
+ line-height: 1;
6994
+ padding-right: 0.5em; }
6995
+ .brz .brz-rich-text .ql-editor {
6996
+ white-space: pre-wrap; }
6997
+ .brz .brz-rich-text h1,
6998
+ .brz .brz-rich-text h2,
6999
+ .brz .brz-rich-text h3,
7000
+ .brz .brz-rich-text h4,
7001
+ .brz .brz-rich-text h5,
7002
+ .brz .brz-rich-text h6 {
7003
+ margin-top: 0;
7004
+ margin-bottom: 0;
7005
+ padding: 0;
7006
+ text-shadow: none;
7007
+ text-transform: initial;
7008
+ text-decoration: initial; }
7009
+ .brz .brz-rich-text h1:before,
7010
+ .brz .brz-rich-text h2:before,
7011
+ .brz .brz-rich-text h3:before,
7012
+ .brz .brz-rich-text h4:before,
7013
+ .brz .brz-rich-text h5:before,
7014
+ .brz .brz-rich-text h6:before {
7015
+ display: none; }
7016
+ .brz .brz-rich-text p,
7017
+ .brz .brz-rich-text span {
7018
+ margin-top: 0;
7019
+ margin-bottom: 0;
7020
+ padding-top: 0;
7021
+ padding-bottom: 0;
7022
+ text-shadow: none;
7023
+ text-transform: initial;
7024
+ text-decoration: initial; }
7025
+ .brz .brz-rich-text span {
7026
+ font-family: inherit;
7027
+ font-size: inherit;
7028
+ font-weight: inherit;
7029
+ line-height: inherit;
7030
+ letter-spacing: inherit; }
7031
+ .brz .brz-rich-text p {
7032
+ display: block; }
7033
+ .brz .brz-rich-text a,
7034
+ .brz .brz-rich-text em,
7035
+ .brz .brz-rich-text span {
7036
+ display: inline; }
7037
+ .brz .brz-rich-text ol,
7038
+ .brz .brz-rich-text ul,
7039
+ .brz .brz-rich-text dl {
7040
+ margin: 0;
7041
+ list-style: none;
7042
+ padding: 0; }
7043
+ .brz .brz-rich-text ol ol,
7044
+ .brz .brz-rich-text ul ul,
7045
+ .brz .brz-rich-text ol ul,
7046
+ .brz .brz-rich-text ul ol {
7047
+ margin: 0; }
7048
+ .brz .brz-rich-text a {
7049
+ text-decoration: none;
7050
+ background-color: transparent;
7051
+ -webkit-text-decoration-skip: objects; }
7052
+ .brz .brz-rich-text a[href]:hover {
7053
+ text-decoration: underline; }
7054
+ .brz .brz-rich-text .link--anchor,
7055
+ .brz .brz-rich-text .link--external,
7056
+ .brz .brz-rich-text .link--popup {
7057
+ text-decoration: none; }
7058
+ .brz .brz-rich-text .link--anchor:hover,
7059
+ .brz .brz-rich-text .link--external:hover,
7060
+ .brz .brz-rich-text .link--popup:hover {
7061
+ text-decoration: underline; }
7062
+ .brz .brz-rich-text .brz-tp__dc-block:after {
7063
+ content: "";
7064
+ display: table;
7065
+ clear: both; }
7066
+ .brz .brz-text__editor {
7067
+ min-width: 10px; }
7068
+ .brz .brz-text__editor:empty:before {
7069
+ content: "\00a0\00a0"; }
7070
+ .brz .brz-counter {
7071
+ -webkit-transition: all 0.3s ease;
7072
+ transition: all 0.3s ease;
7073
+ cursor: default;
7074
+ text-align: center;
7075
+ display: inline-block; }
7076
+ .brz .brz-progress-bar__wrapper {
7077
+ overflow: hidden; }
7078
+ .brz .brz-progress-bar .brz-text__editor {
7079
+ -webkit-box-flex: 1;
7080
+ -ms-flex-positive: 1;
7081
+ flex-grow: 1;
7082
+ white-space: nowrap;
7083
+ overflow: hidden;
7084
+ text-overflow: ellipsis; }
7085
+ .brz .brz-shortcode__placeholder {
7086
+ display: -webkit-box;
7087
+ display: -ms-flexbox;
7088
+ display: flex;
7089
+ -webkit-box-align: center;
7090
+ -ms-flex-align: center;
7091
+ align-items: center;
7092
+ -webkit-box-pack: center;
7093
+ -ms-flex-pack: center;
7094
+ justify-content: center;
7095
+ height: 100%;
7096
+ width: 100%;
7097
+ background-color: #373e48;
7098
+ color: #151924; }
7099
+ .brz .brz-shortcode__placeholder .brz-icon-svg {
7100
+ width: calc(16px + (0.075 * 100%));
7101
+ height: calc(16px + (0.075 * 100%)); }
7102
+ .brz .brz-soundcloud {
7103
+ font-size: 0; }
7104
+ .brz .slick-slider {
7105
+ position: relative;
7106
+ display: block;
7107
+ -webkit-box-sizing: border-box;
7108
+ box-sizing: border-box;
7109
+ -ms-touch-action: pan-y;
7110
+ touch-action: pan-y;
7111
+ -webkit-tap-highlight-color: transparent; }
7112
+ .brz .slick-slider.slick-dotted {
7113
+ margin: 0; }
7114
+ .brz .slick-list {
7115
+ position: relative;
7116
+ overflow: hidden;
7117
+ display: block;
7118
+ margin: 0;
7119
+ padding: 0; }
7120
+ .brz .slick-list:focus {
7121
+ outline: none; }
7122
+ .brz .slick-list.dragging {
7123
+ cursor: pointer;
7124
+ cursor: hand; }
7125
+ .brz .slick-slider .slick-track,
7126
+ .brz .slick-slider .slick-list {
7127
+ -webkit-transform: translate3d(0, 0, 0);
7128
+ transform: translate3d(0, 0, 0); }
7129
+ .brz .slick-track {
7130
+ position: relative;
7131
+ left: 0;
7132
+ top: 0;
7133
+ display: block;
7134
+ margin-left: auto;
7135
+ margin-right: auto; }
7136
+ .slick-loading .brz .slick-track {
7137
+ visibility: hidden; }
7138
+ .brz .slick-track:before, .brz .slick-track:after {
7139
+ content: none; }
7140
+ .brz .slick-slide {
7141
+ height: 100%;
7142
+ min-height: 1px;
7143
+ display: none;
7144
+ float: none; }
7145
+ .brz .slick-slide img {
7146
+ display: block; }
7147
+ .brz .slick-slide.slick-loading img {
7148
+ display: none; }
7149
+ .brz .slick-slide.dragging img {
7150
+ pointer-events: none; }
7151
+ .slick-initialized .brz .slick-slide {
7152
+ display: block; }
7153
+ .slick-loading .brz .slick-slide {
7154
+ visibility: hidden; }
7155
+ .slick-vertical .brz .slick-slide {
7156
+ display: block;
7157
+ height: auto;
7158
+ border: 1px solid transparent; }
7159
+ .brz .slick-arrow.slick-hidden {
7160
+ display: none; }
7161
+ .brz .brz-slick-slider .brz-rich-text *,
7162
+ .brz .brz-slick-slider .brz-icon-svg {
7163
+ -webkit-backface-visibility: hidden;
7164
+ backface-visibility: hidden; }
7165
+ .brz .brz-slick-slider .brz-bg-media {
7166
+ width: calc(100% + 1px); }
7167
+ .brz .brz-slick-slider .brz-bg-color,
7168
+ .brz .brz-slick-slider .brz-bg-content {
7169
+ -webkit-transform: translateZ(0);
7170
+ transform: translateZ(0); }
7171
+ .brz .brz-slick-slider .slick-slide > div,
7172
+ .brz .brz-slick-slider .brz-section__items {
7173
+ height: 100%; }
7174
+ .brz .brz-slick-slider--fade .slick-slide {
7175
+ height: auto;
7176
+ visibility: hidden; }
7177
+ .brz .brz-slick-slider--fade .slick-slide.slick-active {
7178
+ visibility: visible; }
7179
+ .brz .slick-initialized .slick-slide {
7180
+ display: block; }
7181
+ .brz .slick-track {
7182
+ display: -webkit-box;
7183
+ display: -ms-flexbox;
7184
+ display: flex;
7185
+ -ms-flex-wrap: wrap;
7186
+ flex-wrap: wrap; }
7187
+ .brz .brz-slick-slider__dots {
7188
+ position: absolute;
7189
+ bottom: 50px;
7190
+ left: 50%;
7191
+ -webkit-transform: translateX(-50%);
7192
+ transform: translateX(-50%);
7193
+ padding: 0;
7194
+ list-style: none;
7195
+ margin: 0;
7196
+ font-size: 0; }
7197
+ .brz .brz-slick-slider__dots li {
7198
+ display: inline-block;
7199
+ vertical-align: middle;
7200
+ padding-left: 5px;
7201
+ padding-right: 5px; }
7202
+ .brz .brz-slick-slider__dots li:first-child {
7203
+ padding-left: 0; }
7204
+ .brz .brz-slick-slider__dots li:last-child {
7205
+ padding-right: 0; }
7206
+ .brz .brz-slick-slider__dots button {
7207
+ cursor: pointer;
7208
+ color: inherit;
7209
+ outline: none;
7210
+ overflow: hidden;
7211
+ padding: 0;
7212
+ text-indent: -9999px;
7213
+ border: 2px solid currentColor;
7214
+ background-color: transparent;
7215
+ -webkit-transition: linear 0.2s transform, linear 0.2s background-color;
7216
+ transition: linear 0.2s transform, linear 0.2s background-color; }
7217
+ .brz .brz-slick-slider__dots .slick-active button {
7218
+ background-color: currentColor;
7219
+ -webkit-transition: linear 0.2s transform, linear 0.2s background-color;
7220
+ transition: linear 0.2s transform, linear 0.2s background-color; }
7221
+ .brz .brz-slick-slider__dots--circle button {
7222
+ width: 10px;
7223
+ height: 10px;
7224
+ border-radius: 10px; }
7225
+ .brz .brz-slick-slider__dots--diamond button {
7226
+ width: 10px;
7227
+ height: 10px;
7228
+ -webkit-transform: rotate(-45deg);
7229
+ transform: rotate(-45deg); }
7230
+ .brz .brz-slick-slider__dots--square button {
7231
+ width: 10px;
7232
+ height: 10px; }
7233
+ .brz .brz-slick-slider__arrow {
7234
+ position: absolute;
7235
+ top: 50%;
7236
+ -webkit-transform: translateY(-50%);
7237
+ transform: translateY(-50%);
7238
+ z-index: 2;
7239
+ font-size: 30px;
7240
+ cursor: pointer;
7241
+ -webkit-transition: linear 0.2s opacity;
7242
+ transition: linear 0.2s opacity;
7243
+ color: #000;
7244
+ background-color: transparent;
7245
+ border: none; }
7246
+ .brz .brz-slick-slider__arrow:hover {
7247
+ -webkit-transition: linear 0.2s opacity;
7248
+ transition: linear 0.2s opacity; }
7249
+ .brz .brz-slick-slider__arrow .brz-icon-svg {
7250
+ display: block; }
7251
+ .brz .brz-slick-slider__arrow-prev {
7252
+ -webkit-transform: translateY(-50%) rotate(-180deg);
7253
+ transform: translateY(-50%) rotate(-180deg);
7254
+ left: 30px; }
7255
+ .brz .brz-slick-slider__arrow-next {
7256
+ right: 30px; }
7257
+ .brz .brz-form {
7258
+ width: 100%; }
7259
+ .brz .brz-form__fields {
7260
+ display: -webkit-box;
7261
+ display: -ms-flexbox;
7262
+ display: flex;
7263
+ -ms-flex-wrap: wrap;
7264
+ flex-wrap: wrap; }
7265
+ .brz .brz-form__item {
7266
+ -webkit-box-flex: 1;
7267
+ -ms-flex-positive: 1;
7268
+ flex-grow: 1;
7269
+ -ms-flex-negative: 0;
7270
+ flex-shrink: 0; }
7271
+ .brz .brz-form .brz-input,
7272
+ .brz .brz-form .brz-textarea {
7273
+ display: block;
7274
+ width: 100%;
7275
+ height: auto;
7276
+ background-color: transparent;
7277
+ border: none;
7278
+ outline: none;
7279
+ color: inherit;
7280
+ font-size: inherit;
7281
+ font-family: inherit;
7282
+ letter-spacing: inherit;
7283
+ font-weight: inherit;
7284
+ line-height: inherit; }
7285
+ .brz .brz-form .brz-textarea {
7286
+ height: 100%;
7287
+ resize: none; }
7288
+ .brz .brz-form .brz-form__field {
7289
+ padding: 14px 24px; }
7290
+ .brz .brz-form__select {
7291
+ position: relative; }
7292
+ .brz .brz-form__select-current {
7293
+ display: -webkit-box;
7294
+ display: -ms-flexbox;
7295
+ display: flex;
7296
+ -webkit-box-align: center;
7297
+ -ms-flex-align: center;
7298
+ align-items: center;
7299
+ -webkit-box-pack: justify;
7300
+ -ms-flex-pack: justify;
7301
+ justify-content: space-between; }
7302
+ .brz .brz-form__select-list {
7303
+ border: 1px solid #dcdee1;
7304
+ border-top-width: 0;
7305
+ overflow: hidden;
7306
+ position: absolute;
7307
+ z-index: 1041;
7308
+ top: 100%;
7309
+ left: 0;
7310
+ width: 100%;
7311
+ background-color: #fff; }
7312
+ .brz .brz-form__select-item {
7313
+ display: -webkit-box;
7314
+ display: -ms-flexbox;
7315
+ display: flex;
7316
+ -ms-flex-wrap: nowrap;
7317
+ flex-wrap: nowrap;
7318
+ border: 0;
7319
+ height: 52px; }
7320
+ .brz .brz-form__select-item:not(:last-child) {
7321
+ border-bottom: 1px solid #f1f1f2; }
7322
+ .brz .brz-form__select-item__input {
7323
+ -webkit-box-flex: 1;
7324
+ -ms-flex: 1 1 auto;
7325
+ flex: 1 1 auto;
7326
+ font-size: 16px;
7327
+ color: rgba(115, 119, 127, 0.7);
7328
+ line-height: 1;
7329
+ font-family: inherit;
7330
+ font-weight: inherit;
7331
+ padding: 14px 24px; }
7332
+ .brz .brz-form__select-item__input .brz-input {
7333
+ border-width: 0;
7334
+ height: 100%;
7335
+ width: 100%;
7336
+ color: inherit; }
7337
+ .brz .brz-form__select-item__input .brz-input::-webkit-input-placeholder {
7338
+ color: rgba(115, 119, 127, 0.7);
7339
+ font-style: italic; }
7340
+ .brz .brz-form__select-item__input .brz-input:-moz-placeholder {
7341
+ color: rgba(115, 119, 127, 0.7);
7342
+ font-style: italic; }
7343
+ .brz .brz-form__select-item__input .brz-input::-moz-placeholder {
7344
+ color: rgba(115, 119, 127, 0.7);
7345
+ font-style: italic; }
7346
+ .brz .brz-form__select-item__input .brz-input:-ms-input-placeholder {
7347
+ color: rgba(115, 119, 127, 0.7);
7348
+ font-style: italic; }
7349
+ .brz .brz-form__select-item__input .brz-input.brz-input {
7350
+ cursor: text; }
7351
+ .brz .brz-form__select-item__icon {
7352
+ color: rgba(115, 119, 127, 0.7);
7353
+ -ms-flex-preferred-size: 52px;
7354
+ flex-basis: 52px;
7355
+ text-align: center;
7356
+ font-size: 13px;
7357
+ display: -webkit-box;
7358
+ display: -ms-flexbox;
7359
+ display: flex;
7360
+ -webkit-box-align: center;
7361
+ -ms-flex-align: center;
7362
+ align-items: center;
7363
+ -webkit-box-pack: center;
7364
+ -ms-flex-pack: center;
7365
+ justify-content: center;
7366
+ cursor: pointer; }
7367
+ .brz .brz-form__select--arrow {
7368
+ font-size: 14px; }
7369
+ .brz .brz-form .brz-control__select {
7370
+ position: relative; }
7371
+ .brz .brz-form .brz-control__select-current,
7372
+ .brz .brz-form .brz-control__select-option {
7373
+ display: -webkit-box;
7374
+ display: -ms-flexbox;
7375
+ display: flex;
7376
+ -webkit-box-align: center;
7377
+ -ms-flex-align: center;
7378
+ align-items: center;
7379
+ -webkit-box-pack: justify;
7380
+ -ms-flex-pack: justify;
7381
+ justify-content: space-between;
7382
+ font-size: inherit;
7383
+ color: inherit; }
7384
+ .brz .brz-form .brz-control__select-current {
7385
+ padding: 14px 24px;
7386
+ cursor: pointer; }
7387
+ .brz .brz-form .brz-control__select-current .brz-control__select-option {
7388
+ border: 0;
7389
+ -ms-flex-preferred-size: 100%;
7390
+ flex-basis: 100%;
7391
+ height: 100%; }
7392
+ .brz .brz-form .brz-control__select-current .brz-control__select--arrow {
7393
+ font-size: 14px; }
7394
+ .brz .brz-form .brz-control__select-options {
7395
+ border: 1px solid #dcdee1;
7396
+ border-top-width: 0;
7397
+ overflow: hidden;
7398
+ position: absolute;
7399
+ z-index: 1030;
7400
+ top: 100%;
7401
+ left: 0;
7402
+ width: 100%;
7403
+ background-color: #fff;
7404
+ display: none; }
7405
+ .brz .brz-form .brz-control__select-options .brz-control__select-option {
7406
+ padding: 14px 24px;
7407
+ font-size: 16px;
7408
+ height: 52px;
7409
+ line-height: 1.5;
7410
+ cursor: pointer; }
7411
+ .brz .brz-form .brz-control__select-options .brz-control__select-option:not(:last-child) {
7412
+ border-bottom: 1px solid #f1f1f2; }
7413
+ .brz .brz-form__alert {
7414
+ height: 55px;
7415
+ width: 100%;
7416
+ font-size: 12px;
7417
+ line-height: 2;
7418
+ letter-spacing: 2.5px;
7419
+ font-weight: 600;
7420
+ text-transform: uppercase;
7421
+ padding: 17px 30px;
7422
+ color: #fff;
7423
+ margin-top: 15px; }
7424
+ .brz .brz-form__alert--success {
7425
+ background-color: #15d053; }
7426
+ .brz .brz-form__alert--error {
7427
+ background-color: #f00; }
7428
+ .brz .brz-form__item--error .brz-form__field,
7429
+ .brz .brz-form__item--error .brz-control__select-current {
7430
+ border-color: #f00 !important; }
7431
+ @media (max-width: 767px) {
7432
+ .brz .brz-form__select-item__input {
7433
+ font-size: 14px;
7434
+ padding: 10px 16px; }
7435
+ .brz .brz-form .brz-form__field {
7436
+ padding: 10px 16px; }
7437
+ .brz .brz-form .brz-control__select-current {
7438
+ padding: 10px 16px; }
7439
+ .brz .brz-form .brz-control__select-options .brz-control__select-option {
7440
+ padding: 10px 16px;
7441
+ font-size: 14px; } }
7442
+ .brz .brz-tabs {
7443
+ -webkit-box-flex: 1;
7444
+ -ms-flex: 1 1 auto;
7445
+ flex: 1 1 auto; }
7446
+ .brz .brz-tabs__nav {
7447
+ display: -webkit-box;
7448
+ display: -ms-flexbox;
7449
+ display: flex;
7450
+ overflow: hidden;
7451
+ margin: 0;
7452
+ padding: 0; }
7453
+ .brz .brz-tabs__nav--item {
7454
+ list-style: none; }
7455
+ .brz .brz-tabs__nav--item:not(:last-child) {
7456
+ margin-right: 3px; }
7457
+ .brz .brz-tabs__nav--active {
7458
+ position: relative; }
7459
+ .brz .brz-tabs__nav--active:before, .brz .brz-tabs__nav--active:after {
7460
+ content: "";
7461
+ position: absolute;
7462
+ width: 100vw;
7463
+ height: 2px;
7464
+ bottom: 0; }
7465
+ .brz .brz-tabs__nav--active:before {
7466
+ left: -100vw; }
7467
+ .brz .brz-tabs__nav--active:after {
7468
+ right: -100vw; }
7469
+ .brz .brz-tabs__nav--button {
7470
+ padding: 10px 15px;
7471
+ cursor: pointer;
7472
+ border-style: solid;
7473
+ background-clip: padding-box; }
7474
+ .brz .brz-tabs__nav--mobile {
7475
+ display: none; }
7476
+ .brz .brz-tabs__items {
7477
+ display: none;
7478
+ border-style: solid;
7479
+ background-clip: padding-box;
7480
+ width: 100%; }
7481
+ .brz .brz-tabs__items--active {
7482
+ display: block;
7483
+ border-top: none; }
7484
+ .brz .brz-tabs__items--active > .brz-tabs__item--content {
7485
+ -webkit-animation-name: fadeIn;
7486
+ animation-name: fadeIn;
7487
+ -webkit-animation-duration: 0.15s;
7488
+ animation-duration: 0.15s;
7489
+ -webkit-animation-fill-mode: both;
7490
+ animation-fill-mode: both; }
7491
+ .brz .brz-tabs__items--active .brz-bg-content:empty {
7492
+ min-height: 50px; }
7493
+ @media (max-width: 991px) {
7494
+ .brz .brz-tabs__nav--mobile {
7495
+ display: block; }
7496
+ .brz .brz-tabs__nav--desktop {
7497
+ display: none; }
7498
+ .brz .brz-tabs__items {
7499
+ display: block; }
7500
+ .brz .brz-tabs__items > .brz-tabs__item--content {
7501
+ display: none; }
7502
+ .brz .brz-tabs__items:not(:last-child) {
7503
+ margin-bottom: 3px; }
7504
+ .brz .brz-tabs__items--active {
7505
+ border-top: solid; }
7506
+ .brz .brz-tabs__items--active > .brz-tabs__nav--button {
7507
+ border-bottom: solid; }
7508
+ .brz .brz-tabs__items--active > .brz-tabs__item--content {
7509
+ display: block; } }
7510
+ .brz .brz-accordion {
7511
+ -webkit-box-flex: 1;
7512
+ -ms-flex: 1 1 auto;
7513
+ flex: 1 1 auto;
7514
+ display: -webkit-box;
7515
+ display: -ms-flexbox;
7516
+ display: flex;
7517
+ -webkit-box-orient: vertical;
7518
+ -webkit-box-direction: normal;
7519
+ -ms-flex-direction: column;
7520
+ flex-direction: column; }
7521
+ .brz .brz-accordion__nav {
7522
+ padding: 10px 15px;
7523
+ cursor: pointer;
7524
+ border-style: solid;
7525
+ background-clip: padding-box; }
7526
+ .brz .brz-accordion__item {
7527
+ display: block;
7528
+ width: 100%; }
7529
+ .brz .brz-accordion__item > .brz-accordion__content {
7530
+ display: none;
7531
+ border-style: solid;
7532
+ background-clip: padding-box;
7533
+ border-top-color: transparent !important; }
7534
+ .brz .brz-accordion__item:not(:last-child) {
7535
+ margin-bottom: 3px; }
7536
+ .brz .brz-accordion__item--active > .brz-accordion__content {
7537
+ display: block; }
7538
+ .brz .brz-accordion__item--active > .brz-accordion__content:empty {
7539
+ min-height: 50px; }
7540
+ .brz .brz-image__gallery {
7541
+ display: -webkit-box;
7542
+ display: -ms-flexbox;
7543
+ display: flex;
7544
+ -ms-flex-wrap: wrap;
7545
+ flex-wrap: wrap; }
7546
+ .brz .brz-image__gallery .brz-image {
7547
+ display: block; }
7548
+ .brz .brz-image__gallery-item {
7549
+ -webkit-transition: none !important;
7550
+ transition: none !important; }
7551
+ .brz .brz-popup {
7552
+ position: fixed;
7553
+ width: 100%;
7554
+ height: 100%;
7555
+ top: 0;
7556
+ left: 0;
7557
+ z-index: 1070; }
7558
+ .brz .brz-popup__close {
7559
+ position: absolute;
7560
+ z-index: 2;
7561
+ top: 36px;
7562
+ left: 50px;
7563
+ color: #fff;
7564
+ font-size: 0;
7565
+ cursor: pointer; }
7566
+ .brz .brz-popup__close .brz-icon-svg {
7567
+ font-size: 26px; }
7568
+ .brz .brz-popup__inner > .brz-bg-content {
7569
+ max-height: 100%;
7570
+ overflow: auto;
7571
+ padding-top: 70px;
7572
+ padding-bottom: 70px; }
7573
+ .brz .brz-popup__preview {
7574
+ z-index: -1;
7575
+ visibility: hidden;
7576
+ -webkit-transform: translate(-100%);
7577
+ transform: translate(-100%);
7578
+ opacity: 0;
7579
+ -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;
7580
+ 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; }
7581
+ .brz .brz-popup__preview.brz-popup--opened {
7582
+ z-index: 1070;
7583
+ visibility: visible;
7584
+ -webkit-transform: translate(0);
7585
+ transform: translate(0);
7586
+ opacity: 1;
7587
+ -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;
7588
+ 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; }
7589
+ .brz .brz-carousel {
7590
+ display: block;
7591
+ width: 100%; }
7592
+ .brz .brz-carousel__slider:not(.slick-initialized) {
7593
+ display: -webkit-box;
7594
+ display: -ms-flexbox;
7595
+ display: flex;
7596
+ -ms-flex-wrap: wrap;
7597
+ flex-wrap: wrap; }
7598
+ .brz .brz-carousel > .slick-slider {
7599
+ overflow: hidden; }
7600
+ .brz .brz-carousel > .slick-slider > .slick-list {
7601
+ padding-top: 30px;
7602
+ padding-bottom: 30px; }
7603
+ .brz .brz-carousel > .slick-slider .slick-slide {
7604
+ height: auto; }
7605
+ .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div {
7606
+ height: 100%; }
7607
+ .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div > .brz-carousel__item,
7608
+ .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div > .brz-carousel__item > .brz-columns,
7609
+ .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div > .brz-columns {
7610
+ height: 100%; }
7611
+ .brz .brz-carousel > .slick-slider > .brz-slick-slider__arrow {
7612
+ opacity: 1; }
7613
+ .brz .brz-carousel > .slick-slider > .brz-slick-slider__dots {
7614
+ bottom: 10px; }
7615
+ .brz .brz-carousel > .slick-slider .slick-slide {
7616
+ outline: none; }
7617
+ .brz .brz-carousel > .slick-slider .slick-track {
7618
+ -ms-flex-wrap: nowrap;
7619
+ flex-wrap: nowrap; }
7620
+ .brz .brz-carousel .brz-rich-text *,
7621
+ .brz .brz-carousel .brz-icon-svg {
7622
+ -webkit-backface-visibility: hidden;
7623
+ backface-visibility: hidden; }
7624
+ @media (max-width: 767px) {
7625
+ .brz.brz:not(.brz-ed) .slick-slider * {
7626
+ min-width: 0;
7627
+ min-height: 0; } }
7628
+ .brz .brz-posts {
7629
+ width: 100%;
7630
+ display: grid; }
7631
+ .brz .brz-posts ul.page-numbers {
7632
+ margin: 0;
7633
+ list-style: none;
7634
+ padding: 0;
7635
+ display: -webkit-box;
7636
+ display: -ms-flexbox;
7637
+ display: flex;
7638
+ -ms-flex-wrap: wrap;
7639
+ flex-wrap: wrap;
7640
+ grid-column: 1 / -1;
7641
+ -webkit-box-align: center;
7642
+ -ms-flex-align: center;
7643
+ align-items: center;
7644
+ -webkit-box-pack: center;
7645
+ -ms-flex-pack: center;
7646
+ justify-content: center; }
7647
+ .brz .brz-posts ul.page-numbers > li {
7648
+ position: relative;
7649
+ margin-left: 4px;
7650
+ margin-right: 4px; }
7651
+ .brz .brz-posts ul.page-numbers > li:first-child {
7652
+ margin-left: 0; }
7653
+ .brz .brz-posts ul.page-numbers > li:last-child {
7654
+ margin-right: 0; }
7655
+ .brz .brz-posts ul.page-numbers .page-numbers {
7656
+ position: relative;
7657
+ display: block;
7658
+ color: inherit;
7659
+ font-size: 18px;
7660
+ line-height: 1;
7661
+ text-decoration: none;
7662
+ padding: 6px 10px;
7663
+ -webkit-transition: 0.2s linear color;
7664
+ transition: 0.2s linear color;
7665
+ outline: none; }
7666
+ .brz .brz-posts ul.page-numbers .page-numbers:before {
7667
+ content: "";
7668
+ width: 28px;
7669
+ height: 28px;
7670
+ position: absolute;
7671
+ top: 50%;
7672
+ left: 50%;
7673
+ -webkit-transform: translate(-50%, -50%);
7674
+ transform: translate(-50%, -50%);
7675
+ border: 2px solid transparent;
7676
+ -webkit-transition: 0.2s linear border-color;
7677
+ transition: 0.2s linear border-color;
7678
+ opacity: 0.75; }
7679
+ .brz .brz-posts ul.page-numbers .page-numbers:hover {
7680
+ -webkit-transition: 0.2s linear color;
7681
+ transition: 0.2s linear color; }
7682
+ .brz .brz-posts ul.page-numbers .page-numbers.current:before {
7683
+ border-color: currentColor;
7684
+ -webkit-transition: 0.2s linear border-color;
7685
+ transition: 0.2s linear border-color; }
7686
+ .brz .brz-menu__container {
7687
+ width: 100%;
7688
+ display: -webkit-box;
7689
+ display: -ms-flexbox;
7690
+ display: flex;
7691
+ -ms-flex-wrap: wrap;
7692
+ flex-wrap: wrap;
7693
+ -webkit-box-pack: inherit;
7694
+ -ms-flex-pack: inherit;
7695
+ justify-content: inherit; }
7696
+ .brz .brz-menu__container .brz-mm-menu__icon:hover {
7697
+ cursor: pointer; }
7698
+ .brz .brz-menu:not(.mm-menu) {
7699
+ position: relative;
7700
+ width: 100%;
7701
+ -webkit-box-pack: inherit;
7702
+ -ms-flex-pack: inherit;
7703
+ justify-content: inherit; }
7704
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item {
7705
+ list-style: none;
7706
+ padding-left: 5px;
7707
+ padding-right: 5px;
7708
+ display: -webkit-box;
7709
+ display: -ms-flexbox;
7710
+ display: flex;
7711
+ -webkit-box-align: center;
7712
+ -ms-flex-align: center;
7713
+ align-items: center; }
7714
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item > .brz-a {
7715
+ color: inherit;
7716
+ font-weight: inherit;
7717
+ font-family: inherit;
7718
+ letter-spacing: inherit;
7719
+ line-height: inherit;
7720
+ font-size: inherit;
7721
+ display: inherit;
7722
+ -webkit-box-align: inherit;
7723
+ -ms-flex-align: inherit;
7724
+ align-items: inherit;
7725
+ text-decoration: none; }
7726
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item > .brz-a:hover {
7727
+ text-decoration: none; }
7728
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul {
7729
+ display: -webkit-box;
7730
+ display: -ms-flexbox;
7731
+ display: flex;
7732
+ -ms-flex-wrap: wrap;
7733
+ flex-wrap: wrap;
7734
+ -webkit-box-pack: inherit;
7735
+ -ms-flex-pack: inherit;
7736
+ justify-content: inherit;
7737
+ padding: 0; }
7738
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left {
7739
+ left: 0;
7740
+ padding-left: 0; }
7741
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-left:after {
7742
+ left: 15px; }
7743
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right {
7744
+ right: 0;
7745
+ padding-right: 0; }
7746
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown-right:after {
7747
+ right: 15px; }
7748
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown {
7749
+ width: 300px;
7750
+ top: calc(100% + 5px);
7751
+ -webkit-transform: translateX(0);
7752
+ transform: translateX(0); }
7753
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown:before {
7754
+ top: -5px;
7755
+ left: 0;
7756
+ right: 0; }
7757
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown {
7758
+ position: relative; }
7759
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown .brz-menu__item {
7760
+ padding: 0;
7761
+ -webkit-transition: background-color 0.2s linear, border-bottom-color 0.2s linear;
7762
+ transition: background-color 0.2s linear, border-bottom-color 0.2s linear; }
7763
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown .brz-menu__item .brz-a {
7764
+ display: -webkit-box;
7765
+ display: -ms-flexbox;
7766
+ display: flex;
7767
+ -webkit-box-align: center;
7768
+ -ms-flex-align: center;
7769
+ align-items: center;
7770
+ width: 100%;
7771
+ padding: 15px 35px 15px 15px;
7772
+ overflow-wrap: break-word;
7773
+ word-wrap: break-word;
7774
+ word-break: break-word; }
7775
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown > .brz-menu__sub-menu {
7776
+ top: 5px; }
7777
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown {
7778
+ margin: 0;
7779
+ width: 300px;
7780
+ position: absolute;
7781
+ top: 100%;
7782
+ visibility: hidden;
7783
+ opacity: 0;
7784
+ z-index: -1; }
7785
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left, .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right {
7786
+ top: 0;
7787
+ width: 305px; }
7788
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left:before, .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right:before {
7789
+ content: "";
7790
+ position: absolute;
7791
+ top: -5px;
7792
+ right: 0;
7793
+ bottom: 0;
7794
+ left: 0;
7795
+ z-index: -1; }
7796
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left {
7797
+ left: calc(100% + 5px);
7798
+ -webkit-transform: translateX(-5px);
7799
+ transform: translateX(-5px); }
7800
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left:before {
7801
+ left: -5px; }
7802
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right {
7803
+ right: calc(100% + 5px);
7804
+ -webkit-transform: translateX(5px);
7805
+ transform: translateX(5px); }
7806
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right:before {
7807
+ right: -5px; }
7808
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item:first-child {
7809
+ border-top-left-radius: inherit;
7810
+ border-top-right-radius: inherit; }
7811
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item:last-child {
7812
+ border-bottom-left-radius: inherit;
7813
+ border-bottom-right-radius: inherit; }
7814
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item-dropdown {
7815
+ position: relative; }
7816
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item-dropdown:after {
7817
+ content: "";
7818
+ display: block;
7819
+ position: absolute;
7820
+ top: 0;
7821
+ right: 23px;
7822
+ bottom: 0;
7823
+ left: auto;
7824
+ width: 7px;
7825
+ height: 7px;
7826
+ border: 2px solid #fff;
7827
+ border-right-style: none;
7828
+ border-bottom-style: none;
7829
+ margin: auto;
7830
+ -webkit-transform: rotate(135deg);
7831
+ transform: rotate(135deg);
7832
+ -webkit-box-sizing: content-box;
7833
+ box-sizing: content-box;
7834
+ -webkit-transition: border-color 0.2s linear;
7835
+ transition: border-color 0.2s linear; }
7836
+ .brz .brz-menu:not(.mm-menu) .brz-mega-menu {
7837
+ width: 100%;
7838
+ position: absolute;
7839
+ top: 100%;
7840
+ left: 0;
7841
+ visibility: hidden;
7842
+ opacity: 0;
7843
+ z-index: -1;
7844
+ -webkit-transition: 0.2s visibility linear, 0.2s z-index linear, 0.2s opacity linear;
7845
+ transition: 0.2s visibility linear, 0.2s z-index linear, 0.2s opacity linear; }
7846
+ .brz .brz-menu__editor .mm-panel_has-navbar {
7847
+ padding-top: 0; }
7848
+ .brz .brz-menu__editor .mm-panel_has-navbar > .mm-navbar {
7849
+ display: none; }
7850
+ .brz .brz-menu.brz-menu__mmenu:not(.mm-menu) {
7851
+ display: none; }
7852
+ .brz .brz-menu.mm-menu {
7853
+ text-transform: initial; }
7854
+ .brz .brz-menu.mm-menu.mm-menu_opened {
7855
+ display: block;
7856
+ z-index: 1100; }
7857
+ .brz .brz-menu.mm-menu .mm-navbar a,
7858
+ .brz .brz-menu.mm-menu .mm-navbar > * {
7859
+ color: inherit; }
7860
+ .brz .brz-menu.mm-menu .mm-navbar:not(.mm-listitem) {
7861
+ height: 44px;
7862
+ background-color: transparent; }
7863
+ .brz .brz-menu.mm-menu .brz-menu__ul > .mm-navbar {
7864
+ height: 44px;
7865
+ border-bottom: inherit;
7866
+ background-color: transparent; }
7867
+ .brz .brz-menu.mm-menu .brz-menu__ul .mm-listitem_opened > .mm-panel {
7868
+ background-color: rgba(255, 255, 255, 0.05); }
7869
+ .brz .brz-menu.mm-menu .brz-menu__ul--has-dropdown .mm-listitem_opened > .mm-panel {
7870
+ background-color: transparent; }
7871
+ .brz .brz-menu.mm-menu .brz-mm-menu__item {
7872
+ display: -webkit-box;
7873
+ display: -ms-flexbox;
7874
+ display: flex;
7875
+ -webkit-transform: none;
7876
+ transform: none;
7877
+ padding: 0;
7878
+ position: relative;
7879
+ left: auto;
7880
+ top: auto;
7881
+ visibility: visible;
7882
+ opacity: 1;
7883
+ width: auto; }
7884
+ .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_vertical > .mm-panel {
7885
+ padding: 0 10px; }
7886
+ .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_opened > .mm-listitem__text {
7887
+ position: relative; }
7888
+ .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_opened > .mm-listitem__text:after {
7889
+ content: "";
7890
+ position: absolute;
7891
+ display: block;
7892
+ left: 0;
7893
+ right: 0;
7894
+ bottom: 0;
7895
+ border-bottom: 1px solid; }
7896
+ .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-listitem__text {
7897
+ color: inherit;
7898
+ font-weight: inherit;
7899
+ font-family: inherit;
7900
+ letter-spacing: inherit;
7901
+ line-height: inherit;
7902
+ font-size: inherit;
7903
+ display: -webkit-box;
7904
+ display: -ms-flexbox;
7905
+ display: flex;
7906
+ -webkit-box-align: center;
7907
+ -ms-flex-align: center;
7908
+ align-items: center;
7909
+ padding: 10px 20px; }
7910
+ .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-btn_next {
7911
+ position: absolute;
7912
+ right: 0;
7913
+ left: auto;
7914
+ background: none;
7915
+ padding: 0;
7916
+ width: 50px;
7917
+ border: 0;
7918
+ color: inherit; }
7919
+ .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-btn_next:after {
7920
+ border-color: inherit;
7921
+ width: 7px;
7922
+ height: 7px; }
7923
+ .brz .brz-menu .mm-navbar__title {
7924
+ line-height: 20px;
7925
+ font-size: 13px;
7926
+ padding: 12px 20px; }
7927
+ .brz .brz-menu--has-dropdown.mm-menu .mm-navbar {
7928
+ padding: 0; }
7929
+ .brz .brz-menu--has-dropdown.mm-menu .mm-navbar__title {
7930
+ padding: 12px 50px 12px 20px; }
7931
+ .brz .brz-menu--has-dropdown.mm-menu .brz-mm-menu__item > .mm-listitem__text {
7932
+ padding-right: 50px; }
7933
+ .brz .brz-menu .brz-a,
7934
+ .brz .brz-menu .mm-btn_next {
7935
+ -webkit-transition: color 0.2s linear;
7936
+ transition: color 0.2s linear; }
7937
+ .brz .brz-menu .brz-a:focus, .brz .brz-menu .brz-a:active, .brz .brz-menu .brz-a:hover,
7938
+ .brz .brz-menu .mm-btn_next:focus,
7939
+ .brz .brz-menu .mm-btn_next:active,
7940
+ .brz .brz-menu .mm-btn_next:hover {
7941
+ outline: none; }
7942
+ .brz .brz-menu--error {
7943
+ height: 50px;
7944
+ line-height: 50px;
7945
+ padding: 0 10px;
7946
+ background-color: lightgrey; }
7947
+ .brz .brz-menu--error--not-found .brz-a {
7948
+ text-decoration: underline;
7949
+ margin-right: 1ch; }
7950
+ .brz .brz-menu.mm-menu_opened ~ .mm-wrapper__blocker {
7951
+ -webkit-transition-delay: 0s;
7952
+ transition-delay: 0s; }
7953
+ .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover > .brz-menu__sub-menu,
7954
+ .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover > .brz-mega-menu {
7955
+ visibility: visible;
7956
+ opacity: 1;
7957
+ z-index: 1050;
7958
+ -webkit-transition: 0.2s visibility linear, 0.2s z-index linear, 0.2s opacity linear, -webkit-transform 0.2s linear;
7959
+ transition: 0.2s visibility linear, 0.2s z-index linear, 0.2s opacity linear, -webkit-transform 0.2s linear;
7960
+ transition: 0.2s visibility linear, 0.2s z-index linear, 0.2s opacity linear, transform 0.2s linear;
7961
+ transition: 0.2s visibility linear, 0.2s z-index linear, 0.2s opacity linear, transform 0.2s linear, -webkit-transform 0.2s linear; }
7962
+ .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover > .brz-menu__sub-menu {
7963
+ -webkit-transform: translateX(0);
7964
+ transform: translateX(0); }
7965
+ .brz:not(.brz-ed) .brz-menu:not(.brz-menu--has-dropdown) .mm-navbar__title {
7966
+ padding-left: 0;
7967
+ padding-right: 0; }
7968
+ .brz:not(.brz-ed) .brz-menu .mm-panel_has-navbar {
7969
+ padding-top: 44px; }
7970
+ .brz .brz-root__container.mm-page {
7971
+ position: relative;
7972
+ background: inherit; }
7973
+ .brz .brz-root__container.mm-slideout {
7974
+ -webkit-transition: -webkit-transform 0.4s ease;
7975
+ transition: -webkit-transform 0.4s ease;
7976
+ transition: transform 0.4s ease;
7977
+ transition: transform 0.4s ease, -webkit-transform 0.4s ease; }
7978
+ .brz .mm-wrapper__blocker.mm-slideout {
7979
+ z-index: 1099; }
7980
+ .brz .fb_iframe_widget {
7981
+ min-height: 20px; }
7982
+ .brz .fb-page,
7983
+ .brz .fb-page span,
7984
+ .brz .fb-page span iframe[style],
7985
+ .brz .fb-post,
7986
+ .brz .fb-video,
7987
+ .brz .fb-comments,
7988
+ .brz .fb-comments span,
7989
+ .brz .fb-comments span iframe[style] {
7990
+ width: 100% !important;
7991
+ min-width: 100% !important; }
7992
+ @media (max-width: 767px) {
7993
+ .brz .brz-fs-xs-6 {
7994
+ font-size: 6px !important; }
7995
+ .brz .brz-fs-xs-7 {
7996
+ font-size: 7px !important; }
7997
+ .brz .brz-fs-xs-8 {
7998
+ font-size: 8px !important; }
7999
+ .brz .brz-fs-xs-9 {
8000
+ font-size: 9px !important; }
8001
+ .brz .brz-fs-xs-10 {
8002
+ font-size: 10px !important; }
8003
+ .brz .brz-fs-xs-11 {
8004
+ font-size: 11px !important; }
8005
+ .brz .brz-fs-xs-12 {
8006
+ font-size: 12px !important; }
8007
+ .brz .brz-fs-xs-13 {
8008
+ font-size: 13px !important; }
8009
+ .brz .brz-fs-xs-14 {
8010
+ font-size: 14px !important; }
8011
+ .brz .brz-fs-xs-15 {
8012
+ font-size: 15px !important; }
8013
+ .brz .brz-fs-xs-16 {
8014
+ font-size: 16px !important; }
8015
+ .brz .brz-fs-xs-17 {
8016
+ font-size: 17px !important; }
8017
+ .brz .brz-fs-xs-18 {
8018
+ font-size: 18px !important; }
8019
+ .brz .brz-fs-xs-19 {
8020
+ font-size: 19px !important; }
8021
+ .brz .brz-fs-xs-20 {
8022
+ font-size: 20px !important; }
8023
+ .brz .brz-fs-xs-21 {
8024
+ font-size: 21px !important; }
8025
+ .brz .brz-fs-xs-22 {
8026
+ font-size: 22px !important; }
8027
+ .brz .brz-fs-xs-23 {
8028
+ font-size: 23px !important; }
8029
+ .brz .brz-fs-xs-24 {
8030
+ font-size: 24px !important; }
8031
+ .brz .brz-fs-xs-25 {
8032
+ font-size: 25px !important; }
8033
+ .brz .brz-fs-xs-26 {
8034
+ font-size: 26px !important; }
8035
+ .brz .brz-fs-xs-27 {
8036
+ font-size: 27px !important; }
8037
+ .brz .brz-fs-xs-28 {
8038
+ font-size: 28px !important; }
8039
+ .brz .brz-fs-xs-29 {
8040
+ font-size: 29px !important; }
8041
+ .brz .brz-fs-xs-30 {
8042
+ font-size: 30px !important; }
8043
+ .brz .brz-fs-xs-31 {
8044
+ font-size: 31px !important; }
8045
+ .brz .brz-fs-xs-32 {
8046
+ font-size: 32px !important; }
8047
+ .brz .brz-fs-xs-33 {
8048
+ font-size: 33px !important; }
8049
+ .brz .brz-fs-xs-34 {
8050
+ font-size: 34px !important; }
8051
+ .brz .brz-fs-xs-35 {
8052
+ font-size: 35px !important; }
8053
+ .brz .brz-fs-xs-36 {
8054
+ font-size: 36px !important; }
8055
+ .brz .brz-fs-xs-37 {
8056
+ font-size: 37px !important; }
8057
+ .brz .brz-fs-xs-38 {
8058
+ font-size: 38px !important; }
8059
+ .brz .brz-fs-xs-39 {
8060
+ font-size: 39px !important; }
8061
+ .brz .brz-fs-xs-40 {
8062
+ font-size: 40px !important; }
8063
+ .brz .brz-fs-xs-41 {
8064
+ font-size: 41px !important; }
8065
+ .brz .brz-fs-xs-42 {
8066
+ font-size: 42px !important; }
8067
+ .brz .brz-fs-xs-43 {
8068
+ font-size: 43px !important; }
8069
+ .brz .brz-fs-xs-44 {
8070
+ font-size: 44px !important; }
8071
+ .brz .brz-fs-xs-45 {
8072
+ font-size: 45px !important; }
8073
+ .brz .brz-fs-xs-46 {
8074
+ font-size: 46px !important; }
8075
+ .brz .brz-fs-xs-47 {
8076
+ font-size: 47px !important; }
8077
+ .brz .brz-fs-xs-48 {
8078
+ font-size: 48px !important; }
8079
+ .brz .brz-fs-xs-49 {
8080
+ font-size: 49px !important; }
8081
+ .brz .brz-fs-xs-50 {
8082
+ font-size: 50px !important; }
8083
+ .brz .brz-fs-xs-51 {
8084
+ font-size: 51px !important; }
8085
+ .brz .brz-fs-xs-52 {
8086
+ font-size: 52px !important; }
8087
+ .brz .brz-fs-xs-53 {
8088
+ font-size: 53px !important; }
8089
+ .brz .brz-fs-xs-54 {
8090
+ font-size: 54px !important; }
8091
+ .brz .brz-fs-xs-55 {
8092
+ font-size: 55px !important; }
8093
+ .brz .brz-fs-xs-56 {
8094
+ font-size: 56px !important; }
8095
+ .brz .brz-fs-xs-57 {
8096
+ font-size: 57px !important; }
8097
+ .brz .brz-fs-xs-58 {
8098
+ font-size: 58px !important; }
8099
+ .brz .brz-fs-xs-59 {
8100
+ font-size: 59px !important; }
8101
+ .brz .brz-fs-xs-60 {
8102
+ font-size: 60px !important; }
8103
+ .brz .brz-fs-xs-61 {
8104
+ font-size: 61px !important; }
8105
+ .brz .brz-fs-xs-62 {
8106
+ font-size: 62px !important; }
8107
+ .brz .brz-fs-xs-63 {
8108
+ font-size: 63px !important; }
8109
+ .brz .brz-fs-xs-64 {
8110
+ font-size: 64px !important; }
8111
+ .brz .brz-fs-xs-65 {
8112
+ font-size: 65px !important; }
8113
+ .brz .brz-fs-xs-66 {
8114
+ font-size: 66px !important; }
8115
+ .brz .brz-fs-xs-67 {
8116
+ font-size: 67px !important; }
8117
+ .brz .brz-fs-xs-68 {
8118
+ font-size: 68px !important; }
8119
+ .brz .brz-fs-xs-69 {
8120
+ font-size: 69px !important; }
8121
+ .brz .brz-fs-xs-70 {
8122
+ font-size: 70px !important; }
8123
+ .brz .brz-fs-xs-71 {
8124
+ font-size: 71px !important; }
8125
+ .brz .brz-fs-xs-72 {
8126
+ font-size: 72px !important; }
8127
+ .brz .brz-fs-xs-73 {
8128
+ font-size: 73px !important; }
8129
+ .brz .brz-fs-xs-74 {
8130
+ font-size: 74px !important; }
8131
+ .brz .brz-fs-xs-75 {
8132
+ font-size: 75px !important; }
8133
+ .brz .brz-fs-xs-76 {
8134
+ font-size: 76px !important; }
8135
+ .brz .brz-fs-xs-77 {
8136
+ font-size: 77px !important; }
8137
+ .brz .brz-fs-xs-78 {
8138
+ font-size: 78px !important; }
8139
+ .brz .brz-fs-xs-79 {
8140
+ font-size: 79px !important; }
8141
+ .brz .brz-fs-xs-80 {
8142
+ font-size: 80px !important; }
8143
+ .brz .brz-fs-xs-81 {
8144
+ font-size: 81px !important; }
8145
+ .brz .brz-fs-xs-82 {
8146
+ font-size: 82px !important; }
8147
+ .brz .brz-fs-xs-83 {
8148
+ font-size: 83px !important; }
8149
+ .brz .brz-fs-xs-84 {
8150
+ font-size: 84px !important; }
8151
+ .brz .brz-fs-xs-85 {
8152
+ font-size: 85px !important; }
8153
+ .brz .brz-fs-xs-86 {
8154
+ font-size: 86px !important; }
8155
+ .brz .brz-fs-xs-87 {
8156
+ font-size: 87px !important; }
8157
+ .brz .brz-fs-xs-88 {
8158
+ font-size: 88px !important; }
8159
+ .brz .brz-fs-xs-89 {
8160
+ font-size: 89px !important; }
8161
+ .brz .brz-fs-xs-90 {
8162
+ font-size: 90px !important; }
8163
+ .brz .brz-fs-xs-91 {
8164
+ font-size: 91px !important; }
8165
+ .brz .brz-fs-xs-92 {
8166
+ font-size: 92px !important; }
8167
+ .brz .brz-fs-xs-93 {
8168
+ font-size: 93px !important; }
8169
+ .brz .brz-fs-xs-94 {
8170
+ font-size: 94px !important; }
8171
+ .brz .brz-fs-xs-95 {
8172
+ font-size: 95px !important; }
8173
+ .brz .brz-fs-xs-96 {
8174
+ font-size: 96px !important; }
8175
+ .brz .brz-fs-xs-97 {
8176
+ font-size: 97px !important; }
8177
+ .brz .brz-fs-xs-98 {
8178
+ font-size: 98px !important; }
8179
+ .brz .brz-fs-xs-99 {
8180
+ font-size: 99px !important; }
8181
+ .brz .brz-fs-xs-100 {
8182
+ font-size: 100px !important; }
8183
+ .brz .brz-fs-xs-101 {
8184
+ font-size: 101px !important; }
8185
+ .brz .brz-fs-xs-102 {
8186
+ font-size: 102px !important; }
8187
+ .brz .brz-fs-xs-103 {
8188
+ font-size: 103px !important; }
8189
+ .brz .brz-fs-xs-104 {
8190
+ font-size: 104px !important; }
8191
+ .brz .brz-fs-xs-105 {
8192
+ font-size: 105px !important; }
8193
+ .brz .brz-fs-xs-106 {
8194
+ font-size: 106px !important; }
8195
+ .brz .brz-fs-xs-107 {
8196
+ font-size: 107px !important; }
8197
+ .brz .brz-fs-xs-108 {
8198
+ font-size: 108px !important; }
8199
+ .brz .brz-fs-xs-109 {
8200
+ font-size: 109px !important; }
8201
+ .brz .brz-fs-xs-110 {
8202
+ font-size: 110px !important; }
8203
+ .brz .brz-fs-xs-111 {
8204
+ font-size: 111px !important; }
8205
+ .brz .brz-fs-xs-112 {
8206
+ font-size: 112px !important; }
8207
+ .brz .brz-fs-xs-113 {
8208
+ font-size: 113px !important; }
8209
+ .brz .brz-fs-xs-114 {
8210
+ font-size: 114px !important; }
8211
+ .brz .brz-fs-xs-115 {
8212
+ font-size: 115px !important; }
8213
+ .brz .brz-fs-xs-116 {
8214
+ font-size: 116px !important; }
8215
+ .brz .brz-fs-xs-117 {
8216
+ font-size: 117px !important; }
8217
+ .brz .brz-fs-xs-118 {
8218
+ font-size: 118px !important; }
8219
+ .brz .brz-fs-xs-119 {
8220
+ font-size: 119px !important; }
8221
+ .brz .brz-fs-xs-120 {
8222
+ font-size: 120px !important; }
8223
+ .brz .brz-fs-xs-121 {
8224
+ font-size: 121px !important; }
8225
+ .brz .brz-fs-xs-122 {
8226
+ font-size: 122px !important; }
8227
+ .brz .brz-fs-xs-123 {
8228
+ font-size: 123px !important; }
8229
+ .brz .brz-fs-xs-124 {
8230
+ font-size: 124px !important; }
8231
+ .brz .brz-fs-xs-125 {
8232
+ font-size: 125px !important; }
8233
+ .brz .brz-fs-xs-126 {
8234
+ font-size: 126px !important; }
8235
+ .brz .brz-fs-xs-127 {
8236
+ font-size: 127px !important; }
8237
+ .brz .brz-fs-xs-128 {
8238
+ font-size: 128px !important; }
8239
+ .brz .brz-fs-xs-129 {
8240
+ font-size: 129px !important; }
8241
+ .brz .brz-fs-xs-130 {
8242
+ font-size: 130px !important; }
8243
+ .brz .brz-fs-xs-131 {
8244
+ font-size: 131px !important; }
8245
+ .brz .brz-fs-xs-132 {
8246
+ font-size: 132px !important; }
8247
+ .brz .brz-fs-xs-133 {
8248
+ font-size: 133px !important; }
8249
+ .brz .brz-fs-xs-134 {
8250
+ font-size: 134px !important; }
8251
+ .brz .brz-fs-xs-135 {
8252
+ font-size: 135px !important; }
8253
+ .brz .brz-fs-xs-136 {
8254
+ font-size: 136px !important; }
8255
+ .brz .brz-fs-xs-137 {
8256
+ font-size: 137px !important; }
8257
+ .brz .brz-fs-xs-138 {
8258
+ font-size: 138px !important; }
8259
+ .brz .brz-fs-xs-139 {
8260
+ font-size: 139px !important; }
8261
+ .brz .brz-fs-xs-140 {
8262
+ font-size: 140px !important; }
8263
+ .brz .brz-fs-xs-141 {
8264
+ font-size: 141px !important; }
8265
+ .brz .brz-fs-xs-142 {
8266
+ font-size: 142px !important; }
8267
+ .brz .brz-fs-xs-143 {
8268
+ font-size: 143px !important; }
8269
+ .brz .brz-fs-xs-144 {
8270
+ font-size: 144px !important; }
8271
+ .brz .brz-fs-xs-145 {
8272
+ font-size: 145px !important; }
8273
+ .brz .brz-fs-xs-146 {
8274
+ font-size: 146px !important; }
8275
+ .brz .brz-fs-xs-147 {
8276
+ font-size: 147px !important; }
8277
+ .brz .brz-fs-xs-148 {
8278
+ font-size: 148px !important; }
8279
+ .brz .brz-fs-xs-149 {
8280
+ font-size: 149px !important; }
8281
+ .brz .brz-fs-xs-150 {
8282
+ font-size: 150px !important; }
8283
+ .brz .brz-fs-xs-151 {
8284
+ font-size: 151px !important; }
8285
+ .brz .brz-fs-xs-152 {
8286
+ font-size: 152px !important; }
8287
+ .brz .brz-fs-xs-153 {
8288
+ font-size: 153px !important; }
8289
+ .brz .brz-fs-xs-154 {
8290
+ font-size: 154px !important; }
8291
+ .brz .brz-fs-xs-155 {
8292
+ font-size: 155px !important; }
8293
+ .brz .brz-fs-xs-156 {
8294
+ font-size: 156px !important; }
8295
+ .brz .brz-fs-xs-157 {
8296
+ font-size: 157px !important; }
8297
+ .brz .brz-fs-xs-158 {
8298
+ font-size: 158px !important; }
8299
+ .brz .brz-fs-xs-159 {
8300
+ font-size: 159px !important; }
8301
+ .brz .brz-fs-xs-160 {
8302
+ font-size: 160px !important; }
8303
+ .brz .brz-fs-xs-161 {
8304
+ font-size: 161px !important; }
8305
+ .brz .brz-fs-xs-162 {
8306
+ font-size: 162px !important; }
8307
+ .brz .brz-fs-xs-163 {
8308
+ font-size: 163px !important; }
8309
+ .brz .brz-fs-xs-164 {
8310
+ font-size: 164px !important; }
8311
+ .brz .brz-fs-xs-165 {
8312
+ font-size: 165px !important; }
8313
+ .brz .brz-fs-xs-166 {
8314
+ font-size: 166px !important; }
8315
+ .brz .brz-fs-xs-167 {
8316
+ font-size: 167px !important; }
8317
+ .brz .brz-fs-xs-168 {
8318
+ font-size: 168px !important; }
8319
+ .brz .brz-fs-xs-169 {
8320
+ font-size: 169px !important; }
8321
+ .brz .brz-fs-xs-170 {
8322
+ font-size: 170px !important; }
8323
+ .brz .brz-fs-xs-171 {
8324
+ font-size: 171px !important; }
8325
+ .brz .brz-fs-xs-172 {
8326
+ font-size: 172px !important; }
8327
+ .brz .brz-fs-xs-173 {
8328
+ font-size: 173px !important; }
8329
+ .brz .brz-fs-xs-174 {
8330
+ font-size: 174px !important; }
8331
+ .brz .brz-fs-xs-175 {
8332
+ font-size: 175px !important; }
8333
+ .brz .brz-fs-xs-176 {
8334
+ font-size: 176px !important; }
8335
+ .brz .brz-fs-xs-177 {
8336
+ font-size: 177px !important; }
8337
+ .brz .brz-fs-xs-178 {
8338
+ font-size: 178px !important; }
8339
+ .brz .brz-fs-xs-179 {
8340
+ font-size: 179px !important; }
8341
+ .brz .brz-fs-xs-180 {
8342
+ font-size: 180px !important; }
8343
+ .brz .brz-fs-xs-181 {
8344
+ font-size: 181px !important; }
8345
+ .brz .brz-fs-xs-182 {
8346
+ font-size: 182px !important; }
8347
+ .brz .brz-fs-xs-183 {
8348
+ font-size: 183px !important; }
8349
+ .brz .brz-fs-xs-184 {
8350
+ font-size: 184px !important; }
8351
+ .brz .brz-fs-xs-185 {
8352
+ font-size: 185px !important; }
8353
+ .brz .brz-fs-xs-186 {
8354
+ font-size: 186px !important; }
8355
+ .brz .brz-fs-xs-187 {
8356
+ font-size: 187px !important; }
8357
+ .brz .brz-fs-xs-188 {
8358
+ font-size: 188px !important; }
8359
+ .brz .brz-fs-xs-189 {
8360
+ font-size: 189px !important; }
8361
+ .brz .brz-fs-xs-190 {
8362
+ font-size: 190px !important; }
8363
+ .brz .brz-fs-xs-191 {
8364
+ font-size: 191px !important; }
8365
+ .brz .brz-fs-xs-192 {
8366
+ font-size: 192px !important; }
8367
+ .brz .brz-fs-xs-193 {
8368
+ font-size: 193px !important; }
8369
+ .brz .brz-fs-xs-194 {
8370
+ font-size: 194px !important; }
8371
+ .brz .brz-fs-xs-195 {
8372
+ font-size: 195px !important; }
8373
+ .brz .brz-fs-xs-196 {
8374
+ font-size: 196px !important; }
8375
+ .brz .brz-fs-xs-197 {
8376
+ font-size: 197px !important; }
8377
+ .brz .brz-fs-xs-198 {
8378
+ font-size: 198px !important; }
8379
+ .brz .brz-fs-xs-199 {
8380
+ font-size: 199px !important; }
8381
+ .brz .brz-fs-xs-200 {
8382
+ font-size: 200px !important; }
8383
+ .brz .brz-fs-xs-201 {
8384
+ font-size: 201px !important; }
8385
+ .brz .brz-fs-xs-202 {
8386
+ font-size: 202px !important; }
8387
+ .brz .brz-fs-xs-203 {
8388
+ font-size: 203px !important; }
8389
+ .brz .brz-fs-xs-204 {
8390
+ font-size: 204px !important; }
8391
+ .brz .brz-fs-xs-205 {
8392
+ font-size: 205px !important; }
8393
+ .brz .brz-fs-xs-206 {
8394
+ font-size: 206px !important; }
8395
+ .brz .brz-fs-xs-207 {
8396
+ font-size: 207px !important; }
8397
+ .brz .brz-fs-xs-208 {
8398
+ font-size: 208px !important; }
8399
+ .brz .brz-fs-xs-209 {
8400
+ font-size: 209px !important; }
8401
+ .brz .brz-fs-xs-210 {
8402
+ font-size: 210px !important; }
8403
+ .brz .brz-fs-xs-211 {
8404
+ font-size: 211px !important; }
8405
+ .brz .brz-fs-xs-212 {
8406
+ font-size: 212px !important; }
8407
+ .brz .brz-fs-xs-213 {
8408
+ font-size: 213px !important; }
8409
+ .brz .brz-fs-xs-214 {
8410
+ font-size: 214px !important; }
8411
+ .brz .brz-fs-xs-215 {
8412
+ font-size: 215px !important; }
8413
+ .brz .brz-fs-xs-216 {
8414
+ font-size: 216px !important; }
8415
+ .brz .brz-fs-xs-217 {
8416
+ font-size: 217px !important; }
8417
+ .brz .brz-fs-xs-218 {
8418
+ font-size: 218px !important; }
8419
+ .brz .brz-fs-xs-219 {
8420
+ font-size: 219px !important; }
8421
+ .brz .brz-fs-xs-220 {
8422
+ font-size: 220px !important; }
8423
+ .brz .brz-fs-xs-221 {
8424
+ font-size: 221px !important; }
8425
+ .brz .brz-fs-xs-222 {
8426
+ font-size: 222px !important; }
8427
+ .brz .brz-fs-xs-223 {
8428
+ font-size: 223px !important; }
8429
+ .brz .brz-fs-xs-224 {
8430
+ font-size: 224px !important; }
8431
+ .brz .brz-fs-xs-225 {
8432
+ font-size: 225px !important; }
8433
+ .brz .brz-fs-xs-226 {
8434
+ font-size: 226px !important; }
8435
+ .brz .brz-fs-xs-227 {
8436
+ font-size: 227px !important; }
8437
+ .brz .brz-fs-xs-228 {
8438
+ font-size: 228px !important; }
8439
+ .brz .brz-fs-xs-229 {
8440
+ font-size: 229px !important; }
8441
+ .brz .brz-fs-xs-230 {
8442
+ font-size: 230px !important; }
8443
+ .brz .brz-fs-xs-231 {
8444
+ font-size: 231px !important; }
8445
+ .brz .brz-fs-xs-232 {
8446
+ font-size: 232px !important; }
8447
+ .brz .brz-fs-xs-233 {
8448
+ font-size: 233px !important; }
8449
+ .brz .brz-fs-xs-234 {
8450
+ font-size: 234px !important; }
8451
+ .brz .brz-fs-xs-235 {
8452
+ font-size: 235px !important; }
8453
+ .brz .brz-fs-xs-236 {
8454
+ font-size: 236px !important; }
8455
+ .brz .brz-fs-xs-237 {
8456
+ font-size: 237px !important; }
8457
+ .brz .brz-fs-xs-238 {
8458
+ font-size: 238px !important; }
8459
+ .brz .brz-fs-xs-239 {
8460
+ font-size: 239px !important; }
8461
+ .brz .brz-fs-xs-240 {
8462
+ font-size: 240px !important; }
8463
+ .brz .brz-fs-xs-241 {
8464
+ font-size: 241px !important; }
8465
+ .brz .brz-fs-xs-242 {
8466
+ font-size: 242px !important; }
8467
+ .brz .brz-fs-xs-243 {
8468
+ font-size: 243px !important; }
8469
+ .brz .brz-fs-xs-244 {
8470
+ font-size: 244px !important; }
8471
+ .brz .brz-fs-xs-245 {
8472
+ font-size: 245px !important; }
8473
+ .brz .brz-fs-xs-246 {
8474
+ font-size: 246px !important; }
8475
+ .brz .brz-fs-xs-247 {
8476
+ font-size: 247px !important; }
8477
+ .brz .brz-fs-xs-248 {
8478
+ font-size: 248px !important; }
8479
+ .brz .brz-fs-xs-249 {
8480
+ font-size: 249px !important; }
8481
+ .brz .brz-fs-xs-250 {
8482
+ font-size: 250px !important; }
8483
+ .brz .brz-fs-xs-251 {
8484
+ font-size: 251px !important; }
8485
+ .brz .brz-fs-xs-252 {
8486
+ font-size: 252px !important; }
8487
+ .brz .brz-fs-xs-253 {
8488
+ font-size: 253px !important; }
8489
+ .brz .brz-fs-xs-254 {
8490
+ font-size: 254px !important; }
8491
+ .brz .brz-fs-xs-255 {
8492
+ font-size: 255px !important; }
8493
+ .brz .brz-fs-xs-256 {
8494
+ font-size: 256px !important; }
8495
+ .brz .brz-fs-xs-257 {
8496
+ font-size: 257px !important; }
8497
+ .brz .brz-fs-xs-258 {
8498
+ font-size: 258px !important; }
8499
+ .brz .brz-fs-xs-259 {
8500
+ font-size: 259px !important; }
8501
+ .brz .brz-fs-xs-260 {
8502
+ font-size: 260px !important; }
8503
+ .brz .brz-fs-xs-261 {
8504
+ font-size: 261px !important; }
8505
+ .brz .brz-fs-xs-262 {
8506
+ font-size: 262px !important; }
8507
+ .brz .brz-fs-xs-263 {
8508
+ font-size: 263px !important; }
8509
+ .brz .brz-fs-xs-264 {
8510
+ font-size: 264px !important; }
8511
+ .brz .brz-fs-xs-265 {
8512
+ font-size: 265px !important; }
8513
+ .brz .brz-fs-xs-266 {
8514
+ font-size: 266px !important; }
8515
+ .brz .brz-fs-xs-267 {
8516
+ font-size: 267px !important; }
8517
+ .brz .brz-fs-xs-268 {
8518
+ font-size: 268px !important; }
8519
+ .brz .brz-fs-xs-269 {
8520
+ font-size: 269px !important; }
8521
+ .brz .brz-fs-xs-270 {
8522
+ font-size: 270px !important; }
8523
+ .brz .brz-fs-xs-271 {
8524
+ font-size: 271px !important; }
8525
+ .brz .brz-fs-xs-272 {
8526
+ font-size: 272px !important; }
8527
+ .brz .brz-fs-xs-273 {
8528
+ font-size: 273px !important; }
8529
+ .brz .brz-fs-xs-274 {
8530
+ font-size: 274px !important; }
8531
+ .brz .brz-fs-xs-275 {
8532
+ font-size: 275px !important; }
8533
+ .brz .brz-fs-xs-276 {
8534
+ font-size: 276px !important; }
8535
+ .brz .brz-fs-xs-277 {
8536
+ font-size: 277px !important; }
8537
+ .brz .brz-fs-xs-278 {
8538
+ font-size: 278px !important; }
8539
+ .brz .brz-fs-xs-279 {
8540
+ font-size: 279px !important; }
8541
+ .brz .brz-fs-xs-280 {
8542
+ font-size: 280px !important; }
8543
+ .brz .brz-fs-xs-281 {
8544
+ font-size: 281px !important; }
8545
+ .brz .brz-fs-xs-282 {
8546
+ font-size: 282px !important; }
8547
+ .brz .brz-fs-xs-283 {
8548
+ font-size: 283px !important; }
8549
+ .brz .brz-fs-xs-284 {
8550
+ font-size: 284px !important; }
8551
+ .brz .brz-fs-xs-285 {
8552
+ font-size: 285px !important; }
8553
+ .brz .brz-fs-xs-286 {
8554
+ font-size: 286px !important; }
8555
+ .brz .brz-fs-xs-287 {
8556
+ font-size: 287px !important; }
8557
+ .brz .brz-fs-xs-288 {
8558
+ font-size: 288px !important; }
8559
+ .brz .brz-fs-xs-289 {
8560
+ font-size: 289px !important; }
8561
+ .brz .brz-fs-xs-290 {
8562
+ font-size: 290px !important; }
8563
+ .brz .brz-fs-xs-291 {
8564
+ font-size: 291px !important; }
8565
+ .brz .brz-fs-xs-292 {
8566
+ font-size: 292px !important; }
8567
+ .brz .brz-fs-xs-293 {
8568
+ font-size: 293px !important; }
8569
+ .brz .brz-fs-xs-294 {
8570
+ font-size: 294px !important; }
8571
+ .brz .brz-fs-xs-295 {
8572
+ font-size: 295px !important; }
8573
+ .brz .brz-fs-xs-296 {
8574
+ font-size: 296px !important; }
8575
+ .brz .brz-fs-xs-297 {
8576
+ font-size: 297px !important; }
8577
+ .brz .brz-fs-xs-298 {
8578
+ font-size: 298px !important; }
8579
+ .brz .brz-fs-xs-299 {
8580
+ font-size: 299px !important; }
8581
+ .brz .brz-fs-xs-300 {
8582
+ font-size: 300px !important; }
8583
+ .brz .brz-lh-xs-1 {
8584
+ line-height: 1em !important; }
8585
+ .brz .brz-lh-xs-1_1 {
8586
+ line-height: 1.1em !important; }
8587
+ .brz .brz-lh-xs-1_2 {
8588
+ line-height: 1.2em !important; }
8589
+ .brz .brz-lh-xs-1_3 {
8590
+ line-height: 1.3em !important; }
8591
+ .brz .brz-lh-xs-1_4 {
8592
+ line-height: 1.4em !important; }
8593
+ .brz .brz-lh-xs-1_5 {
8594
+ line-height: 1.5em !important; }
8595
+ .brz .brz-lh-xs-1_6 {
8596
+ line-height: 1.6em !important; }
8597
+ .brz .brz-lh-xs-1_7 {
8598
+ line-height: 1.7em !important; }
8599
+ .brz .brz-lh-xs-1_8 {
8600
+ line-height: 1.8em !important; }
8601
+ .brz .brz-lh-xs-1_9 {
8602
+ line-height: 1.9em !important; }
8603
+ .brz .brz-lh-xs-2 {
8604
+ line-height: 2em !important; }
8605
+ .brz .brz-lh-xs-2_1 {
8606
+ line-height: 2.1em !important; }
8607
+ .brz .brz-lh-xs-2_2 {
8608
+ line-height: 2.2em !important; }
8609
+ .brz .brz-lh-xs-2_3 {
8610
+ line-height: 2.3em !important; }
8611
+ .brz .brz-lh-xs-2_4 {
8612
+ line-height: 2.4em !important; }
8613
+ .brz .brz-lh-xs-2_5 {
8614
+ line-height: 2.5em !important; }
8615
+ .brz .brz-lh-xs-2_6 {
8616
+ line-height: 2.6em !important; }
8617
+ .brz .brz-lh-xs-2_7 {
8618
+ line-height: 2.7em !important; }
8619
+ .brz .brz-lh-xs-2_8 {
8620
+ line-height: 2.8em !important; }
8621
+ .brz .brz-lh-xs-2_9 {
8622
+ line-height: 2.9em !important; }
8623
+ .brz .brz-lh-xs-3 {
8624
+ line-height: 3em !important; }
8625
+ .brz .brz-lh-xs-3_1 {
8626
+ line-height: 3.1em !important; }
8627
+ .brz .brz-lh-xs-3_2 {
8628
+ line-height: 3.2em !important; }
8629
+ .brz .brz-lh-xs-3_3 {
8630
+ line-height: 3.3em !important; }
8631
+ .brz .brz-lh-xs-3_4 {
8632
+ line-height: 3.4em !important; }
8633
+ .brz .brz-lh-xs-3_5 {
8634
+ line-height: 3.5em !important; }
8635
+ .brz .brz-lh-xs-3_6 {
8636
+ line-height: 3.6em !important; }
8637
+ .brz .brz-lh-xs-3_7 {
8638
+ line-height: 3.7em !important; }
8639
+ .brz .brz-lh-xs-3_8 {
8640
+ line-height: 3.8em !important; }
8641
+ .brz .brz-lh-xs-3_9 {
8642
+ line-height: 3.9em !important; }
8643
+ .brz .brz-lh-xs-4 {
8644
+ line-height: 4em !important; }
8645
+ .brz .brz-lh-xs-4_1 {
8646
+ line-height: 4.1em !important; }
8647
+ .brz .brz-lh-xs-4_2 {
8648
+ line-height: 4.2em !important; }
8649
+ .brz .brz-lh-xs-4_3 {
8650
+ line-height: 4.3em !important; }
8651
+ .brz .brz-lh-xs-4_4 {
8652
+ line-height: 4.4em !important; }
8653
+ .brz .brz-lh-xs-4_5 {
8654
+ line-height: 4.5em !important; }
8655
+ .brz .brz-lh-xs-4_6 {
8656
+ line-height: 4.6em !important; }
8657
+ .brz .brz-lh-xs-4_7 {
8658
+ line-height: 4.7em !important; }
8659
+ .brz .brz-lh-xs-4_8 {
8660
+ line-height: 4.8em !important; }
8661
+ .brz .brz-lh-xs-4_9 {
8662
+ line-height: 4.9em !important; }
8663
+ .brz .brz-lh-xs-5 {
8664
+ line-height: 5em !important; }
8665
+ .brz .brz-lh-xs-5_1 {
8666
+ line-height: 5.1em !important; }
8667
+ .brz .brz-lh-xs-5_2 {
8668
+ line-height: 5.2em !important; }
8669
+ .brz .brz-lh-xs-5_3 {
8670
+ line-height: 5.3em !important; }
8671
+ .brz .brz-lh-xs-5_4 {
8672
+ line-height: 5.4em !important; }
8673
+ .brz .brz-lh-xs-5_5 {
8674
+ line-height: 5.5em !important; }
8675
+ .brz .brz-lh-xs-5_6 {
8676
+ line-height: 5.6em !important; }
8677
+ .brz .brz-lh-xs-5_7 {
8678
+ line-height: 5.7em !important; }
8679
+ .brz .brz-lh-xs-5_8 {
8680
+ line-height: 5.8em !important; }
8681
+ .brz .brz-lh-xs-5_9 {
8682
+ line-height: 5.9em !important; }
8683
+ .brz .brz-fw-xs-100 {
8684
+ font-weight: 100 !important; }
8685
+ .brz .brz-fw-xs-200 {
8686
+ font-weight: 200 !important; }
8687
+ .brz .brz-fw-xs-300 {
8688
+ font-weight: 300 !important; }
8689
+ .brz .brz-fw-xs-400 {
8690
+ font-weight: 400 !important; }
8691
+ .brz .brz-fw-xs-500 {
8692
+ font-weight: 500 !important; }
8693
+ .brz .brz-fw-xs-600 {
8694
+ font-weight: 600 !important; }
8695
+ .brz .brz-fw-xs-700 {
8696
+ font-weight: 700 !important; }
8697
+ .brz .brz-fw-xs-800 {
8698
+ font-weight: 800 !important; }
8699
+ .brz .brz-fw-xs-900 {
8700
+ font-weight: 900 !important; }
8701
+ .brz .brz-fw-xs-1000 {
8702
+ font-weight: 1000 !important; }
8703
+ .brz .brz-fw-xs-1100 {
8704
+ font-weight: 1100 !important; }
8705
+ .brz .brz-fw-xs-1200 {
8706
+ font-weight: 1200 !important; }
8707
+ .brz .brz-fw-xs-1300 {
8708
+ font-weight: 1300 !important; }
8709
+ .brz .brz-fw-xs-1400 {
8710
+ font-weight: 1400 !important; }
8711
+ .brz .brz-fw-xs-1500 {
8712
+ font-weight: 1500 !important; }
8713
+ .brz .brz-ls-xs-m_5 {
8714
+ letter-spacing: -5px !important; }
8715
+ .brz .brz-ls-xs-m_5_5 {
8716
+ letter-spacing: -5.5px !important; }
8717
+ .brz .brz-ls-xs-m_4 {
8718
+ letter-spacing: -4px !important; }
8719
+ .brz .brz-ls-xs-m_4_5 {
8720
+ letter-spacing: -4.5px !important; }
8721
+ .brz .brz-ls-xs-m_3 {
8722
+ letter-spacing: -3px !important; }
8723
+ .brz .brz-ls-xs-m_3_5 {
8724
+ letter-spacing: -3.5px !important; }
8725
+ .brz .brz-ls-xs-m_2 {
8726
+ letter-spacing: -2px !important; }
8727
+ .brz .brz-ls-xs-m_2_5 {
8728
+ letter-spacing: -2.5px !important; }
8729
+ .brz .brz-ls-xs-m_1 {
8730
+ letter-spacing: -1px !important; }
8731
+ .brz .brz-ls-xs-m_1_5 {
8732
+ letter-spacing: -1.5px !important; }
8733
+ .brz .brz-ls-xs-m_0 {
8734
+ letter-spacing: 0px !important; }
8735
+ .brz .brz-ls-xs-m_0_5 {
8736
+ letter-spacing: -0.5px !important; }
8737
+ .brz .brz-ls-xs-0 {
8738
+ letter-spacing: 0px !important; }
8739
+ .brz .brz-ls-xs-0_5 {
8740
+ letter-spacing: 0.5px !important; }
8741
+ .brz .brz-ls-xs-1 {
8742
+ letter-spacing: 1px !important; }
8743
+ .brz .brz-ls-xs-1_5 {
8744
+ letter-spacing: 1.5px !important; }
8745
+ .brz .brz-ls-xs-2 {
8746
+ letter-spacing: 2px !important; }
8747
+ .brz .brz-ls-xs-2_5 {
8748
+ letter-spacing: 2.5px !important; }
8749
+ .brz .brz-ls-xs-3 {
8750
+ letter-spacing: 3px !important; }
8751
+ .brz .brz-ls-xs-3_5 {
8752
+ letter-spacing: 3.5px !important; }
8753
+ .brz .brz-ls-xs-4 {
8754
+ letter-spacing: 4px !important; }
8755
+ .brz .brz-ls-xs-4_5 {
8756
+ letter-spacing: 4.5px !important; }
8757
+ .brz .brz-ls-xs-5 {
8758
+ letter-spacing: 5px !important; }
8759
+ .brz .brz-ls-xs-5_5 {
8760
+ letter-spacing: 5.5px !important; }
8761
+ .brz .brz-ls-xs-6 {
8762
+ letter-spacing: 6px !important; }
8763
+ .brz .brz-ls-xs-6_5 {
8764
+ letter-spacing: 6.5px !important; }
8765
+ .brz .brz-ls-xs-7 {
8766
+ letter-spacing: 7px !important; }
8767
+ .brz .brz-ls-xs-7_5 {
8768
+ letter-spacing: 7.5px !important; }
8769
+ .brz .brz-ls-xs-8 {
8770
+ letter-spacing: 8px !important; }
8771
+ .brz .brz-ls-xs-8_5 {
8772
+ letter-spacing: 8.5px !important; }
8773
+ .brz .brz-ls-xs-9 {
8774
+ letter-spacing: 9px !important; }
8775
+ .brz .brz-ls-xs-9_5 {
8776
+ letter-spacing: 9.5px !important; }
8777
+ .brz .brz-ls-xs-10 {
8778
+ letter-spacing: 10px !important; }
8779
+ .brz .brz-ls-xs-10_5 {
8780
+ letter-spacing: 10.5px !important; }
8781
+ .brz .brz-ls-xs-11 {
8782
+ letter-spacing: 11px !important; }
8783
+ .brz .brz-ls-xs-11_5 {
8784
+ letter-spacing: 11.5px !important; }
8785
+ .brz .brz-ls-xs-12 {
8786
+ letter-spacing: 12px !important; }
8787
+ .brz .brz-ls-xs-12_5 {
8788
+ letter-spacing: 12.5px !important; }
8789
+ .brz .brz-ls-xs-13 {
8790
+ letter-spacing: 13px !important; }
8791
+ .brz .brz-ls-xs-13_5 {
8792
+ letter-spacing: 13.5px !important; }
8793
+ .brz .brz-ls-xs-14 {
8794
+ letter-spacing: 14px !important; }
8795
+ .brz .brz-ls-xs-14_5 {
8796
+ letter-spacing: 14.5px !important; }
8797
+ .brz .brz-ls-xs-15 {
8798
+ letter-spacing: 15px !important; }
8799
+ .brz .brz-ls-xs-15_5 {
8800
+ letter-spacing: 15.5px !important; }
8801
+ .brz .brz-fs-xs-im-6 {
8802
+ font-size: 6px !important; }
8803
+ .brz .brz-fs-xs-im-7 {
8804
+ font-size: 7px !important; }
8805
+ .brz .brz-fs-xs-im-8 {
8806
+ font-size: 8px !important; }
8807
+ .brz .brz-fs-xs-im-9 {
8808
+ font-size: 9px !important; }
8809
+ .brz .brz-fs-xs-im-10 {
8810
+ font-size: 10px !important; }
8811
+ .brz .brz-fs-xs-im-11 {
8812
+ font-size: 11px !important; }
8813
+ .brz .brz-fs-xs-im-12 {
8814
+ font-size: 12px !important; }
8815
+ .brz .brz-fs-xs-im-13 {
8816
+ font-size: 13px !important; }
8817
+ .brz .brz-fs-xs-im-14 {
8818
+ font-size: 14px !important; }
8819
+ .brz .brz-fs-xs-im-15 {
8820
+ font-size: 15px !important; }
8821
+ .brz .brz-fs-xs-im-16 {
8822
+ font-size: 16px !important; }
8823
+ .brz .brz-fs-xs-im-17 {
8824
+ font-size: 17px !important; }
8825
+ .brz .brz-fs-xs-im-18 {
8826
+ font-size: 18px !important; }
8827
+ .brz .brz-fs-xs-im-19 {
8828
+ font-size: 19px !important; }
8829
+ .brz .brz-fs-xs-im-20 {
8830
+ font-size: 20px !important; }
8831
+ .brz .brz-fs-xs-im-21 {
8832
+ font-size: 21px !important; }
8833
+ .brz .brz-fs-xs-im-22 {
8834
+ font-size: 22px !important; }
8835
+ .brz .brz-fs-xs-im-23 {
8836
+ font-size: 23px !important; }
8837
+ .brz .brz-fs-xs-im-24 {
8838
+ font-size: 24px !important; }
8839
+ .brz .brz-fs-xs-im-25 {
8840
+ font-size: 25px !important; }
8841
+ .brz .brz-fs-xs-im-26 {
8842
+ font-size: 26px !important; }
8843
+ .brz .brz-fs-xs-im-27 {
8844
+ font-size: 27px !important; }
8845
+ .brz .brz-fs-xs-im-28 {
8846
+ font-size: 28px !important; }
8847
+ .brz .brz-fs-xs-im-29 {
8848
+ font-size: 29px !important; }
8849
+ .brz .brz-fs-xs-im-30 {
8850
+ font-size: 30px !important; }
8851
+ .brz .brz-fs-xs-im-31 {
8852
+ font-size: 31px !important; }
8853
+ .brz .brz-fs-xs-im-32 {
8854
+ font-size: 32px !important; }
8855
+ .brz .brz-fs-xs-im-33 {
8856
+ font-size: 33px !important; }
8857
+ .brz .brz-fs-xs-im-34 {
8858
+ font-size: 34px !important; }
8859
+ .brz .brz-fs-xs-im-35 {
8860
+ font-size: 35px !important; }
8861
+ .brz .brz-fs-xs-im-36 {
8862
+ font-size: 36px !important; }
8863
+ .brz .brz-fs-xs-im-37 {
8864
+ font-size: 37px !important; }
8865
+ .brz .brz-fs-xs-im-38 {
8866
+ font-size: 38px !important; }
8867
+ .brz .brz-fs-xs-im-39 {
8868
+ font-size: 39px !important; }
8869
+ .brz .brz-fs-xs-im-40 {
8870
+ font-size: 40px !important; }
8871
+ .brz .brz-fs-xs-im-41 {
8872
+ font-size: 41px !important; }
8873
+ .brz .brz-fs-xs-im-42 {
8874
+ font-size: 42px !important; }
8875
+ .brz .brz-fs-xs-im-43 {
8876
+ font-size: 43px !important; }
8877
+ .brz .brz-fs-xs-im-44 {
8878
+ font-size: 44px !important; }
8879
+ .brz .brz-fs-xs-im-45 {
8880
+ font-size: 45px !important; }
8881
+ .brz .brz-fs-xs-im-46 {
8882
+ font-size: 46px !important; }
8883
+ .brz .brz-fs-xs-im-47 {
8884
+ font-size: 47px !important; }
8885
+ .brz .brz-fs-xs-im-48 {
8886
+ font-size: 48px !important; }
8887
+ .brz .brz-fs-xs-im-49 {
8888
+ font-size: 49px !important; }
8889
+ .brz .brz-fs-xs-im-50 {
8890
+ font-size: 50px !important; }
8891
+ .brz .brz-fs-xs-im-51 {
8892
+ font-size: 51px !important; }
8893
+ .brz .brz-fs-xs-im-52 {
8894
+ font-size: 52px !important; }
8895
+ .brz .brz-fs-xs-im-53 {
8896
+ font-size: 53px !important; }
8897
+ .brz .brz-fs-xs-im-54 {
8898
+ font-size: 54px !important; }
8899
+ .brz .brz-fs-xs-im-55 {
8900
+ font-size: 55px !important; }
8901
+ .brz .brz-fs-xs-im-56 {
8902
+ font-size: 56px !important; }
8903
+ .brz .brz-fs-xs-im-57 {
8904
+ font-size: 57px !important; }
8905
+ .brz .brz-fs-xs-im-58 {
8906
+ font-size: 58px !important; }
8907
+ .brz .brz-fs-xs-im-59 {
8908
+ font-size: 59px !important; }
8909
+ .brz .brz-fs-xs-im-60 {
8910
+ font-size: 60px !important; }
8911
+ .brz .brz-fs-xs-im-61 {
8912
+ font-size: 61px !important; }
8913
+ .brz .brz-fs-xs-im-62 {
8914
+ font-size: 62px !important; }
8915
+ .brz .brz-fs-xs-im-63 {
8916
+ font-size: 63px !important; }
8917
+ .brz .brz-fs-xs-im-64 {
8918
+ font-size: 64px !important; }
8919
+ .brz .brz-fs-xs-im-65 {
8920
+ font-size: 65px !important; }
8921
+ .brz .brz-fs-xs-im-66 {
8922
+ font-size: 66px !important; }
8923
+ .brz .brz-fs-xs-im-67 {
8924
+ font-size: 67px !important; }
8925
+ .brz .brz-fs-xs-im-68 {
8926
+ font-size: 68px !important; }
8927
+ .brz .brz-fs-xs-im-69 {
8928
+ font-size: 69px !important; }
8929
+ .brz .brz-fs-xs-im-70 {
8930
+ font-size: 70px !important; }
8931
+ .brz .brz-fs-xs-im-71 {
8932
+ font-size: 71px !important; }
8933
+ .brz .brz-fs-xs-im-72 {
8934
+ font-size: 72px !important; }
8935
+ .brz .brz-fs-xs-im-73 {
8936
+ font-size: 73px !important; }
8937
+ .brz .brz-fs-xs-im-74 {
8938
+ font-size: 74px !important; }
8939
+ .brz .brz-fs-xs-im-75 {
8940
+ font-size: 75px !important; }
8941
+ .brz .brz-fs-xs-im-76 {
8942
+ font-size: 76px !important; }
8943
+ .brz .brz-fs-xs-im-77 {
8944
+ font-size: 77px !important; }
8945
+ .brz .brz-fs-xs-im-78 {
8946
+ font-size: 78px !important; }
8947
+ .brz .brz-fs-xs-im-79 {
8948
+ font-size: 79px !important; }
8949
+ .brz .brz-fs-xs-im-80 {
8950
+ font-size: 80px !important; }
8951
+ .brz .brz-fs-xs-im-81 {
8952
+ font-size: 81px !important; }
8953
+ .brz .brz-fs-xs-im-82 {
8954
+ font-size: 82px !important; }
8955
+ .brz .brz-fs-xs-im-83 {
8956
+ font-size: 83px !important; }
8957
+ .brz .brz-fs-xs-im-84 {
8958
+ font-size: 84px !important; }
8959
+ .brz .brz-fs-xs-im-85 {
8960
+ font-size: 85px !important; }
8961
+ .brz .brz-fs-xs-im-86 {
8962
+ font-size: 86px !important; }
8963
+ .brz .brz-fs-xs-im-87 {
8964
+ font-size: 87px !important; }
8965
+ .brz .brz-fs-xs-im-88 {
8966
+ font-size: 88px !important; }
8967
+ .brz .brz-fs-xs-im-89 {
8968
+ font-size: 89px !important; }
8969
+ .brz .brz-fs-xs-im-90 {
8970
+ font-size: 90px !important; }
8971
+ .brz .brz-fs-xs-im-91 {
8972
+ font-size: 91px !important; }
8973
+ .brz .brz-fs-xs-im-92 {
8974
+ font-size: 92px !important; }
8975
+ .brz .brz-fs-xs-im-93 {
8976
+ font-size: 93px !important; }
8977
+ .brz .brz-fs-xs-im-94 {
8978
+ font-size: 94px !important; }
8979
+ .brz .brz-fs-xs-im-95 {
8980
+ font-size: 95px !important; }
8981
+ .brz .brz-fs-xs-im-96 {
8982
+ font-size: 96px !important; }
8983
+ .brz .brz-fs-xs-im-97 {
8984
+ font-size: 97px !important; }
8985
+ .brz .brz-fs-xs-im-98 {
8986
+ font-size: 98px !important; }
8987
+ .brz .brz-fs-xs-im-99 {
8988
+ font-size: 99px !important; }
8989
+ .brz .brz-fs-xs-im-100 {
8990
+ font-size: 100px !important; }
8991
+ .brz .brz-fs-xs-im-101 {
8992
+ font-size: 101px !important; }
8993
+ .brz .brz-fs-xs-im-102 {
8994
+ font-size: 102px !important; }
8995
+ .brz .brz-fs-xs-im-103 {
8996
+ font-size: 103px !important; }
8997
+ .brz .brz-fs-xs-im-104 {
8998
+ font-size: 104px !important; }
8999
+ .brz .brz-fs-xs-im-105 {
9000
+ font-size: 105px !important; }
9001
+ .brz .brz-fs-xs-im-106 {
9002
+ font-size: 106px !important; }
9003
+ .brz .brz-fs-xs-im-107 {
9004
+ font-size: 107px !important; }
9005
+ .brz .brz-fs-xs-im-108 {
9006
+ font-size: 108px !important; }
9007
+ .brz .brz-fs-xs-im-109 {
9008
+ font-size: 109px !important; }
9009
+ .brz .brz-fs-xs-im-110 {
9010
+ font-size: 110px !important; }
9011
+ .brz .brz-fs-xs-im-111 {
9012
+ font-size: 111px !important; }
9013
+ .brz .brz-fs-xs-im-112 {
9014
+ font-size: 112px !important; }
9015
+ .brz .brz-fs-xs-im-113 {
9016
+ font-size: 113px !important; }
9017
+ .brz .brz-fs-xs-im-114 {
9018
+ font-size: 114px !important; }
9019
+ .brz .brz-fs-xs-im-115 {
9020
+ font-size: 115px !important; }
9021
+ .brz .brz-fs-xs-im-116 {
9022
+ font-size: 116px !important; }
9023
+ .brz .brz-fs-xs-im-117 {
9024
+ font-size: 117px !important; }
9025
+ .brz .brz-fs-xs-im-118 {
9026
+ font-size: 118px !important; }
9027
+ .brz .brz-fs-xs-im-119 {
9028
+ font-size: 119px !important; }
9029
+ .brz .brz-fs-xs-im-120 {
9030
+ font-size: 120px !important; }
9031
+ .brz .brz-fs-xs-im-121 {
9032
+ font-size: 121px !important; }
9033
+ .brz .brz-fs-xs-im-122 {
9034
+ font-size: 122px !important; }
9035
+ .brz .brz-fs-xs-im-123 {
9036
+ font-size: 123px !important; }
9037
+ .brz .brz-fs-xs-im-124 {
9038
+ font-size: 124px !important; }
9039
+ .brz .brz-fs-xs-im-125 {
9040
+ font-size: 125px !important; }
9041
+ .brz .brz-fs-xs-im-126 {
9042
+ font-size: 126px !important; }
9043
+ .brz .brz-fs-xs-im-127 {
9044
+ font-size: 127px !important; }
9045
+ .brz .brz-fs-xs-im-128 {
9046
+ font-size: 128px !important; }
9047
+ .brz .brz-fs-xs-im-129 {
9048
+ font-size: 129px !important; }
9049
+ .brz .brz-fs-xs-im-130 {
9050
+ font-size: 130px !important; }
9051
+ .brz .brz-fs-xs-im-131 {
9052
+ font-size: 131px !important; }
9053
+ .brz .brz-fs-xs-im-132 {
9054
+ font-size: 132px !important; }
9055
+ .brz .brz-fs-xs-im-133 {
9056
+ font-size: 133px !important; }
9057
+ .brz .brz-fs-xs-im-134 {
9058
+ font-size: 134px !important; }
9059
+ .brz .brz-fs-xs-im-135 {
9060
+ font-size: 135px !important; }
9061
+ .brz .brz-fs-xs-im-136 {
9062
+ font-size: 136px !important; }
9063
+ .brz .brz-fs-xs-im-137 {
9064
+ font-size: 137px !important; }
9065
+ .brz .brz-fs-xs-im-138 {
9066
+ font-size: 138px !important; }
9067
+ .brz .brz-fs-xs-im-139 {
9068
+ font-size: 139px !important; }
9069
+ .brz .brz-fs-xs-im-140 {
9070
+ font-size: 140px !important; }
9071
+ .brz .brz-fs-xs-im-141 {
9072
+ font-size: 141px !important; }
9073
+ .brz .brz-fs-xs-im-142 {
9074
+ font-size: 142px !important; }
9075
+ .brz .brz-fs-xs-im-143 {
9076
+ font-size: 143px !important; }
9077
+ .brz .brz-fs-xs-im-144 {
9078
+ font-size: 144px !important; }
9079
+ .brz .brz-fs-xs-im-145 {
9080
+ font-size: 145px !important; }
9081
+ .brz .brz-fs-xs-im-146 {
9082
+ font-size: 146px !important; }
9083
+ .brz .brz-fs-xs-im-147 {
9084
+ font-size: 147px !important; }
9085
+ .brz .brz-fs-xs-im-148 {
9086
+ font-size: 148px !important; }
9087
+ .brz .brz-fs-xs-im-149 {
9088
+ font-size: 149px !important; }
9089
+ .brz .brz-fs-xs-im-150 {
9090
+ font-size: 150px !important; }
9091
+ .brz .brz-fs-xs-im-151 {
9092
+ font-size: 151px !important; }
9093
+ .brz .brz-fs-xs-im-152 {
9094
+ font-size: 152px !important; }
9095
+ .brz .brz-fs-xs-im-153 {
9096
+ font-size: 153px !important; }
9097
+ .brz .brz-fs-xs-im-154 {
9098
+ font-size: 154px !important; }
9099
+ .brz .brz-fs-xs-im-155 {
9100
+ font-size: 155px !important; }
9101
+ .brz .brz-fs-xs-im-156 {
9102
+ font-size: 156px !important; }
9103
+ .brz .brz-fs-xs-im-157 {
9104
+ font-size: 157px !important; }
9105
+ .brz .brz-fs-xs-im-158 {
9106
+ font-size: 158px !important; }
9107
+ .brz .brz-fs-xs-im-159 {
9108
+ font-size: 159px !important; }
9109
+ .brz .brz-fs-xs-im-160 {
9110
+ font-size: 160px !important; }
9111
+ .brz .brz-fs-xs-im-161 {
9112
+ font-size: 161px !important; }
9113
+ .brz .brz-fs-xs-im-162 {
9114
+ font-size: 162px !important; }
9115
+ .brz .brz-fs-xs-im-163 {
9116
+ font-size: 163px !important; }
9117
+ .brz .brz-fs-xs-im-164 {
9118
+ font-size: 164px !important; }
9119
+ .brz .brz-fs-xs-im-165 {
9120
+ font-size: 165px !important; }
9121
+ .brz .brz-fs-xs-im-166 {
9122
+ font-size: 166px !important; }
9123
+ .brz .brz-fs-xs-im-167 {
9124
+ font-size: 167px !important; }
9125
+ .brz .brz-fs-xs-im-168 {
9126
+ font-size: 168px !important; }
9127
+ .brz .brz-fs-xs-im-169 {
9128
+ font-size: 169px !important; }
9129
+ .brz .brz-fs-xs-im-170 {
9130
+ font-size: 170px !important; }
9131
+ .brz .brz-fs-xs-im-171 {
9132
+ font-size: 171px !important; }
9133
+ .brz .brz-fs-xs-im-172 {
9134
+ font-size: 172px !important; }
9135
+ .brz .brz-fs-xs-im-173 {
9136
+ font-size: 173px !important; }
9137
+ .brz .brz-fs-xs-im-174 {
9138
+ font-size: 174px !important; }
9139
+ .brz .brz-fs-xs-im-175 {
9140
+ font-size: 175px !important; }
9141
+ .brz .brz-fs-xs-im-176 {
9142
+ font-size: 176px !important; }
9143
+ .brz .brz-fs-xs-im-177 {
9144
+ font-size: 177px !important; }
9145
+ .brz .brz-fs-xs-im-178 {
9146
+ font-size: 178px !important; }
9147
+ .brz .brz-fs-xs-im-179 {
9148
+ font-size: 179px !important; }
9149
+ .brz .brz-fs-xs-im-180 {
9150
+ font-size: 180px !important; }
9151
+ .brz .brz-fs-xs-im-181 {
9152
+ font-size: 181px !important; }
9153
+ .brz .brz-fs-xs-im-182 {
9154
+ font-size: 182px !important; }
9155
+ .brz .brz-fs-xs-im-183 {
9156
+ font-size: 183px !important; }
9157
+ .brz .brz-fs-xs-im-184 {
9158
+ font-size: 184px !important; }
9159
+ .brz .brz-fs-xs-im-185 {
9160
+ font-size: 185px !important; }
9161
+ .brz .brz-fs-xs-im-186 {
9162
+ font-size: 186px !important; }
9163
+ .brz .brz-fs-xs-im-187 {
9164
+ font-size: 187px !important; }
9165
+ .brz .brz-fs-xs-im-188 {
9166
+ font-size: 188px !important; }
9167
+ .brz .brz-fs-xs-im-189 {
9168
+ font-size: 189px !important; }
9169
+ .brz .brz-fs-xs-im-190 {
9170
+ font-size: 190px !important; }
9171
+ .brz .brz-fs-xs-im-191 {
9172
+ font-size: 191px !important; }
9173
+ .brz .brz-fs-xs-im-192 {
9174
+ font-size: 192px !important; }
9175
+ .brz .brz-fs-xs-im-193 {
9176
+ font-size: 193px !important; }
9177
+ .brz .brz-fs-xs-im-194 {
9178
+ font-size: 194px !important; }
9179
+ .brz .brz-fs-xs-im-195 {
9180
+ font-size: 195px !important; }
9181
+ .brz .brz-fs-xs-im-196 {
9182
+ font-size: 196px !important; }
9183
+ .brz .brz-fs-xs-im-197 {
9184
+ font-size: 197px !important; }
9185
+ .brz .brz-fs-xs-im-198 {
9186
+ font-size: 198px !important; }
9187
+ .brz .brz-fs-xs-im-199 {
9188
+ font-size: 199px !important; }
9189
+ .brz .brz-fs-xs-im-200 {
9190
+ font-size: 200px !important; }
9191
+ .brz .brz-fs-xs-im-201 {
9192
+ font-size: 201px !important; }
9193
+ .brz .brz-fs-xs-im-202 {
9194
+ font-size: 202px !important; }
9195
+ .brz .brz-fs-xs-im-203 {
9196
+ font-size: 203px !important; }
9197
+ .brz .brz-fs-xs-im-204 {
9198
+ font-size: 204px !important; }
9199
+ .brz .brz-fs-xs-im-205 {
9200
+ font-size: 205px !important; }
9201
+ .brz .brz-fs-xs-im-206 {
9202
+ font-size: 206px !important; }
9203
+ .brz .brz-fs-xs-im-207 {
9204
+ font-size: 207px !important; }
9205
+ .brz .brz-fs-xs-im-208 {
9206
+ font-size: 208px !important; }
9207
+ .brz .brz-fs-xs-im-209 {
9208
+ font-size: 209px !important; }
9209
+ .brz .brz-fs-xs-im-210 {
9210
+ font-size: 210px !important; }
9211
+ .brz .brz-fs-xs-im-211 {
9212
+ font-size: 211px !important; }
9213
+ .brz .brz-fs-xs-im-212 {
9214
+ font-size: 212px !important; }
9215
+ .brz .brz-fs-xs-im-213 {
9216
+ font-size: 213px !important; }
9217
+ .brz .brz-fs-xs-im-214 {
9218
+ font-size: 214px !important; }
9219
+ .brz .brz-fs-xs-im-215 {
9220
+ font-size: 215px !important; }
9221
+ .brz .brz-fs-xs-im-216 {
9222
+ font-size: 216px !important; }
9223
+ .brz .brz-fs-xs-im-217 {
9224
+ font-size: 217px !important; }
9225
+ .brz .brz-fs-xs-im-218 {
9226
+ font-size: 218px !important; }
9227
+ .brz .brz-fs-xs-im-219 {
9228
+ font-size: 219px !important; }
9229
+ .brz .brz-fs-xs-im-220 {
9230
+ font-size: 220px !important; }
9231
+ .brz .brz-fs-xs-im-221 {
9232
+ font-size: 221px !important; }
9233
+ .brz .brz-fs-xs-im-222 {
9234
+ font-size: 222px !important; }
9235
+ .brz .brz-fs-xs-im-223 {
9236
+ font-size: 223px !important; }
9237
+ .brz .brz-fs-xs-im-224 {
9238
+ font-size: 224px !important; }
9239
+ .brz .brz-fs-xs-im-225 {
9240
+ font-size: 225px !important; }
9241
+ .brz .brz-fs-xs-im-226 {
9242
+ font-size: 226px !important; }
9243
+ .brz .brz-fs-xs-im-227 {
9244
+ font-size: 227px !important; }
9245
+ .brz .brz-fs-xs-im-228 {
9246
+ font-size: 228px !important; }
9247
+ .brz .brz-fs-xs-im-229 {
9248
+ font-size: 229px !important; }
9249
+ .brz .brz-fs-xs-im-230 {
9250
+ font-size: 230px !important; }
9251
+ .brz .brz-fs-xs-im-231 {
9252
+ font-size: 231px !important; }
9253
+ .brz .brz-fs-xs-im-232 {
9254
+ font-size: 232px !important; }
9255
+ .brz .brz-fs-xs-im-233 {
9256
+ font-size: 233px !important; }
9257
+ .brz .brz-fs-xs-im-234 {
9258
+ font-size: 234px !important; }
9259
+ .brz .brz-fs-xs-im-235 {
9260
+ font-size: 235px !important; }
9261
+ .brz .brz-fs-xs-im-236 {
9262
+ font-size: 236px !important; }
9263
+ .brz .brz-fs-xs-im-237 {
9264
+ font-size: 237px !important; }
9265
+ .brz .brz-fs-xs-im-238 {
9266
+ font-size: 238px !important; }
9267
+ .brz .brz-fs-xs-im-239 {
9268
+ font-size: 239px !important; }
9269
+ .brz .brz-fs-xs-im-240 {
9270
+ font-size: 240px !important; }
9271
+ .brz .brz-fs-xs-im-241 {
9272
+ font-size: 241px !important; }
9273
+ .brz .brz-fs-xs-im-242 {
9274
+ font-size: 242px !important; }
9275
+ .brz .brz-fs-xs-im-243 {
9276
+ font-size: 243px !important; }
9277
+ .brz .brz-fs-xs-im-244 {
9278
+ font-size: 244px !important; }
9279
+ .brz .brz-fs-xs-im-245 {
9280
+ font-size: 245px !important; }
9281
+ .brz .brz-fs-xs-im-246 {
9282
+ font-size: 246px !important; }
9283
+ .brz .brz-fs-xs-im-247 {
9284
+ font-size: 247px !important; }
9285
+ .brz .brz-fs-xs-im-248 {
9286
+ font-size: 248px !important; }
9287
+ .brz .brz-fs-xs-im-249 {
9288
+ font-size: 249px !important; }
9289
+ .brz .brz-fs-xs-im-250 {
9290
+ font-size: 250px !important; }
9291
+ .brz .brz-fs-xs-im-251 {
9292
+ font-size: 251px !important; }
9293
+ .brz .brz-fs-xs-im-252 {
9294
+ font-size: 252px !important; }
9295
+ .brz .brz-fs-xs-im-253 {
9296
+ font-size: 253px !important; }
9297
+ .brz .brz-fs-xs-im-254 {
9298
+ font-size: 254px !important; }
9299
+ .brz .brz-fs-xs-im-255 {
9300
+ font-size: 255px !important; }
9301
+ .brz .brz-fs-xs-im-256 {
9302
+ font-size: 256px !important; }
9303
+ .brz .brz-fs-xs-im-257 {
9304
+ font-size: 257px !important; }
9305
+ .brz .brz-fs-xs-im-258 {
9306
+ font-size: 258px !important; }
9307
+ .brz .brz-fs-xs-im-259 {
9308
+ font-size: 259px !important; }
9309
+ .brz .brz-fs-xs-im-260 {
9310
+ font-size: 260px !important; }
9311
+ .brz .brz-fs-xs-im-261 {
9312
+ font-size: 261px !important; }
9313
+ .brz .brz-fs-xs-im-262 {
9314
+ font-size: 262px !important; }
9315
+ .brz .brz-fs-xs-im-263 {
9316
+ font-size: 263px !important; }
9317
+ .brz .brz-fs-xs-im-264 {
9318
+ font-size: 264px !important; }
9319
+ .brz .brz-fs-xs-im-265 {
9320
+ font-size: 265px !important; }
9321
+ .brz .brz-fs-xs-im-266 {
9322
+ font-size: 266px !important; }
9323
+ .brz .brz-fs-xs-im-267 {
9324
+ font-size: 267px !important; }
9325
+ .brz .brz-fs-xs-im-268 {
9326
+ font-size: 268px !important; }
9327
+ .brz .brz-fs-xs-im-269 {
9328
+ font-size: 269px !important; }
9329
+ .brz .brz-fs-xs-im-270 {
9330
+ font-size: 270px !important; }
9331
+ .brz .brz-fs-xs-im-271 {
9332
+ font-size: 271px !important; }
9333
+ .brz .brz-fs-xs-im-272 {
9334
+ font-size: 272px !important; }
9335
+ .brz .brz-fs-xs-im-273 {
9336
+ font-size: 273px !important; }
9337
+ .brz .brz-fs-xs-im-274 {
9338
+ font-size: 274px !important; }
9339
+ .brz .brz-fs-xs-im-275 {
9340
+ font-size: 275px !important; }
9341
+ .brz .brz-fs-xs-im-276 {
9342
+ font-size: 276px !important; }
9343
+ .brz .brz-fs-xs-im-277 {
9344
+ font-size: 277px !important; }
9345
+ .brz .brz-fs-xs-im-278 {
9346
+ font-size: 278px !important; }
9347
+ .brz .brz-fs-xs-im-279 {
9348
+ font-size: 279px !important; }
9349
+ .brz .brz-fs-xs-im-280 {
9350
+ font-size: 280px !important; }
9351
+ .brz .brz-fs-xs-im-281 {
9352
+ font-size: 281px !important; }
9353
+ .brz .brz-fs-xs-im-282 {
9354
+ font-size: 282px !important; }
9355
+ .brz .brz-fs-xs-im-283 {
9356
+ font-size: 283px !important; }
9357
+ .brz .brz-fs-xs-im-284 {
9358
+ font-size: 284px !important; }
9359
+ .brz .brz-fs-xs-im-285 {
9360
+ font-size: 285px !important; }
9361
+ .brz .brz-fs-xs-im-286 {
9362
+ font-size: 286px !important; }
9363
+ .brz .brz-fs-xs-im-287 {
9364
+ font-size: 287px !important; }
9365
+ .brz .brz-fs-xs-im-288 {
9366
+ font-size: 288px !important; }
9367
+ .brz .brz-fs-xs-im-289 {
9368
+ font-size: 289px !important; }
9369
+ .brz .brz-fs-xs-im-290 {
9370
+ font-size: 290px !important; }
9371
+ .brz .brz-fs-xs-im-291 {
9372
+ font-size: 291px !important; }
9373
+ .brz .brz-fs-xs-im-292 {
9374
+ font-size: 292px !important; }
9375
+ .brz .brz-fs-xs-im-293 {
9376
+ font-size: 293px !important; }
9377
+ .brz .brz-fs-xs-im-294 {
9378
+ font-size: 294px !important; }
9379
+ .brz .brz-fs-xs-im-295 {
9380
+ font-size: 295px !important; }
9381
+ .brz .brz-fs-xs-im-296 {
9382
+ font-size: 296px !important; }
9383
+ .brz .brz-fs-xs-im-297 {
9384
+ font-size: 297px !important; }
9385
+ .brz .brz-fs-xs-im-298 {
9386
+ font-size: 298px !important; }
9387
+ .brz .brz-fs-xs-im-299 {
9388
+ font-size: 299px !important; }
9389
+ .brz .brz-fs-xs-im-300 {
9390
+ font-size: 300px !important; }
9391
+ .brz .brz-lh-xs-im-1 {
9392
+ line-height: 1em !important; }
9393
+ .brz .brz-lh-xs-im-1_1 {
9394
+ line-height: 1.1em !important; }
9395
+ .brz .brz-lh-xs-im-1_2 {
9396
+ line-height: 1.2em !important; }
9397
+ .brz .brz-lh-xs-im-1_3 {
9398
+ line-height: 1.3em !important; }
9399
+ .brz .brz-lh-xs-im-1_4 {
9400
+ line-height: 1.4em !important; }
9401
+ .brz .brz-lh-xs-im-1_5 {
9402
+ line-height: 1.5em !important; }
9403
+ .brz .brz-lh-xs-im-1_6 {
9404
+ line-height: 1.6em !important; }
9405
+ .brz .brz-lh-xs-im-1_7 {
9406
+ line-height: 1.7em !important; }
9407
+ .brz .brz-lh-xs-im-1_8 {
9408
+ line-height: 1.8em !important; }
9409
+ .brz .brz-lh-xs-im-1_9 {
9410
+ line-height: 1.9em !important; }
9411
+ .brz .brz-lh-xs-im-2 {
9412
+ line-height: 2em !important; }
9413
+ .brz .brz-lh-xs-im-2_1 {
9414
+ line-height: 2.1em !important; }
9415
+ .brz .brz-lh-xs-im-2_2 {
9416
+ line-height: 2.2em !important; }
9417
+ .brz .brz-lh-xs-im-2_3 {
9418
+ line-height: 2.3em !important; }
9419
+ .brz .brz-lh-xs-im-2_4 {
9420
+ line-height: 2.4em !important; }
9421
+ .brz .brz-lh-xs-im-2_5 {
9422
+ line-height: 2.5em !important; }
9423
+ .brz .brz-lh-xs-im-2_6 {
9424
+ line-height: 2.6em !important; }
9425
+ .brz .brz-lh-xs-im-2_7 {
9426
+ line-height: 2.7em !important; }
9427
+ .brz .brz-lh-xs-im-2_8 {
9428
+ line-height: 2.8em !important; }
9429
+ .brz .brz-lh-xs-im-2_9 {
9430
+ line-height: 2.9em !important; }
9431
+ .brz .brz-lh-xs-im-3 {
9432
+ line-height: 3em !important; }
9433
+ .brz .brz-lh-xs-im-3_1 {
9434
+ line-height: 3.1em !important; }
9435
+ .brz .brz-lh-xs-im-3_2 {
9436
+ line-height: 3.2em !important; }
9437
+ .brz .brz-lh-xs-im-3_3 {
9438
+ line-height: 3.3em !important; }
9439
+ .brz .brz-lh-xs-im-3_4 {
9440
+ line-height: 3.4em !important; }
9441
+ .brz .brz-lh-xs-im-3_5 {
9442
+ line-height: 3.5em !important; }
9443
+ .brz .brz-lh-xs-im-3_6 {
9444
+ line-height: 3.6em !important; }
9445
+ .brz .brz-lh-xs-im-3_7 {
9446
+ line-height: 3.7em !important; }
9447
+ .brz .brz-lh-xs-im-3_8 {
9448
+ line-height: 3.8em !important; }
9449
+ .brz .brz-lh-xs-im-3_9 {
9450
+ line-height: 3.9em !important; }
9451
+ .brz .brz-lh-xs-im-4 {
9452
+ line-height: 4em !important; }
9453
+ .brz .brz-lh-xs-im-4_1 {
9454
+ line-height: 4.1em !important; }
9455
+ .brz .brz-lh-xs-im-4_2 {
9456
+ line-height: 4.2em !important; }
9457
+ .brz .brz-lh-xs-im-4_3 {
9458
+ line-height: 4.3em !important; }
9459
+ .brz .brz-lh-xs-im-4_4 {
9460
+ line-height: 4.4em !important; }
9461
+ .brz .brz-lh-xs-im-4_5 {
9462
+ line-height: 4.5em !important; }
9463
+ .brz .brz-lh-xs-im-4_6 {
9464
+ line-height: 4.6em !important; }
9465
+ .brz .brz-lh-xs-im-4_7 {
9466
+ line-height: 4.7em !important; }
9467
+ .brz .brz-lh-xs-im-4_8 {
9468
+ line-height: 4.8em !important; }
9469
+ .brz .brz-lh-xs-im-4_9 {
9470
+ line-height: 4.9em !important; }
9471
+ .brz .brz-lh-xs-im-5 {
9472
+ line-height: 5em !important; }
9473
+ .brz .brz-lh-xs-im-5_1 {
9474
+ line-height: 5.1em !important; }
9475
+ .brz .brz-lh-xs-im-5_2 {
9476
+ line-height: 5.2em !important; }
9477
+ .brz .brz-lh-xs-im-5_3 {
9478
+ line-height: 5.3em !important; }
9479
+ .brz .brz-lh-xs-im-5_4 {
9480
+ line-height: 5.4em !important; }
9481
+ .brz .brz-lh-xs-im-5_5 {
9482
+ line-height: 5.5em !important; }
9483
+ .brz .brz-lh-xs-im-5_6 {
9484
+ line-height: 5.6em !important; }
9485
+ .brz .brz-lh-xs-im-5_7 {
9486
+ line-height: 5.7em !important; }
9487
+ .brz .brz-lh-xs-im-5_8 {
9488
+ line-height: 5.8em !important; }
9489
+ .brz .brz-lh-xs-im-5_9 {
9490
+ line-height: 5.9em !important; }
9491
+ .brz .brz-fw-xs-im-100 {
9492
+ font-weight: 100 !important; }
9493
+ .brz .brz-fw-xs-im-200 {
9494
+ font-weight: 200 !important; }
9495
+ .brz .brz-fw-xs-im-300 {
9496
+ font-weight: 300 !important; }
9497
+ .brz .brz-fw-xs-im-400 {
9498
+ font-weight: 400 !important; }
9499
+ .brz .brz-fw-xs-im-500 {
9500
+ font-weight: 500 !important; }
9501
+ .brz .brz-fw-xs-im-600 {
9502
+ font-weight: 600 !important; }
9503
+ .brz .brz-fw-xs-im-700 {
9504
+ font-weight: 700 !important; }
9505
+ .brz .brz-fw-xs-im-800 {
9506
+ font-weight: 800 !important; }
9507
+ .brz .brz-fw-xs-im-900 {
9508
+ font-weight: 900 !important; }
9509
+ .brz .brz-fw-xs-im-1000 {
9510
+ font-weight: 1000 !important; }
9511
+ .brz .brz-fw-xs-im-1100 {
9512
+ font-weight: 1100 !important; }
9513
+ .brz .brz-fw-xs-im-1200 {
9514
+ font-weight: 1200 !important; }
9515
+ .brz .brz-fw-xs-im-1300 {
9516
+ font-weight: 1300 !important; }
9517
+ .brz .brz-fw-xs-im-1400 {
9518
+ font-weight: 1400 !important; }
9519
+ .brz .brz-fw-xs-im-1500 {
9520
+ font-weight: 1500 !important; }
9521
+ .brz .brz-ls-xs-im-m_5 {
9522
+ letter-spacing: -5px !important; }
9523
+ .brz .brz-ls-xs-im-m_5_5 {
9524
+ letter-spacing: -5.5px !important; }
9525
+ .brz .brz-ls-xs-im-m_4 {
9526
+ letter-spacing: -4px !important; }
9527
+ .brz .brz-ls-xs-im-m_4_5 {
9528
+ letter-spacing: -4.5px !important; }
9529
+ .brz .brz-ls-xs-im-m_3 {
9530
+ letter-spacing: -3px !important; }
9531
+ .brz .brz-ls-xs-im-m_3_5 {
9532
+ letter-spacing: -3.5px !important; }
9533
+ .brz .brz-ls-xs-im-m_2 {
9534
+ letter-spacing: -2px !important; }
9535
+ .brz .brz-ls-xs-im-m_2_5 {
9536
+ letter-spacing: -2.5px !important; }
9537
+ .brz .brz-ls-xs-im-m_1 {
9538
+ letter-spacing: -1px !important; }
9539
+ .brz .brz-ls-xs-im-m_1_5 {
9540
+ letter-spacing: -1.5px !important; }
9541
+ .brz .brz-ls-xs-im-m_0 {
9542
+ letter-spacing: 0px !important; }
9543
+ .brz .brz-ls-xs-im-m_0_5 {
9544
+ letter-spacing: -0.5px !important; }
9545
+ .brz .brz-ls-xs-im-0 {
9546
+ letter-spacing: 0px !important; }
9547
+ .brz .brz-ls-xs-im-0_5 {
9548
+ letter-spacing: 0.5px !important; }
9549
+ .brz .brz-ls-xs-im-1 {
9550
+ letter-spacing: 1px !important; }
9551
+ .brz .brz-ls-xs-im-1_5 {
9552
+ letter-spacing: 1.5px !important; }
9553
+ .brz .brz-ls-xs-im-2 {
9554
+ letter-spacing: 2px !important; }
9555
+ .brz .brz-ls-xs-im-2_5 {
9556
+ letter-spacing: 2.5px !important; }
9557
+ .brz .brz-ls-xs-im-3 {
9558
+ letter-spacing: 3px !important; }
9559
+ .brz .brz-ls-xs-im-3_5 {
9560
+ letter-spacing: 3.5px !important; }
9561
+ .brz .brz-ls-xs-im-4 {
9562
+ letter-spacing: 4px !important; }
9563
+ .brz .brz-ls-xs-im-4_5 {
9564
+ letter-spacing: 4.5px !important; }
9565
+ .brz .brz-ls-xs-im-5 {
9566
+ letter-spacing: 5px !important; }
9567
+ .brz .brz-ls-xs-im-5_5 {
9568
+ letter-spacing: 5.5px !important; }
9569
+ .brz .brz-ls-xs-im-6 {
9570
+ letter-spacing: 6px !important; }
9571
+ .brz .brz-ls-xs-im-6_5 {
9572
+ letter-spacing: 6.5px !important; }
9573
+ .brz .brz-ls-xs-im-7 {
9574
+ letter-spacing: 7px !important; }
9575
+ .brz .brz-ls-xs-im-7_5 {
9576
+ letter-spacing: 7.5px !important; }
9577
+ .brz .brz-ls-xs-im-8 {
9578
+ letter-spacing: 8px !important; }
9579
+ .brz .brz-ls-xs-im-8_5 {
9580
+ letter-spacing: 8.5px !important; }
9581
+ .brz .brz-ls-xs-im-9 {
9582
+ letter-spacing: 9px !important; }
9583
+ .brz .brz-ls-xs-im-9_5 {
9584
+ letter-spacing: 9.5px !important; }
9585
+ .brz .brz-ls-xs-im-10 {
9586
+ letter-spacing: 10px !important; }
9587
+ .brz .brz-ls-xs-im-10_5 {
9588
+ letter-spacing: 10.5px !important; }
9589
+ .brz .brz-ls-xs-im-11 {
9590
+ letter-spacing: 11px !important; }
9591
+ .brz .brz-ls-xs-im-11_5 {
9592
+ letter-spacing: 11.5px !important; }
9593
+ .brz .brz-ls-xs-im-12 {
9594
+ letter-spacing: 12px !important; }
9595
+ .brz .brz-ls-xs-im-12_5 {
9596
+ letter-spacing: 12.5px !important; }
9597
+ .brz .brz-ls-xs-im-13 {
9598
+ letter-spacing: 13px !important; }
9599
+ .brz .brz-ls-xs-im-13_5 {
9600
+ letter-spacing: 13.5px !important; }
9601
+ .brz .brz-ls-xs-im-14 {
9602
+ letter-spacing: 14px !important; }
9603
+ .brz .brz-ls-xs-im-14_5 {
9604
+ letter-spacing: 14.5px !important; }
9605
+ .brz .brz-ls-xs-im-15 {
9606
+ letter-spacing: 15px !important; }
9607
+ .brz .brz-ls-xs-im-15_5 {
9608
+ letter-spacing: 15.5px !important; } }
9609
+
9610
+ @media (min-width: 768px) and (max-width: 991px) {
9611
+ .brz .brz-fs-sm-6 {
9612
+ font-size: 6px !important; }
9613
+ .brz .brz-fs-sm-7 {
9614
+ font-size: 7px !important; }
9615
+ .brz .brz-fs-sm-8 {
9616
+ font-size: 8px !important; }
9617
+ .brz .brz-fs-sm-9 {
9618
+ font-size: 9px !important; }
9619
+ .brz .brz-fs-sm-10 {
9620
+ font-size: 10px !important; }
9621
+ .brz .brz-fs-sm-11 {
9622
+ font-size: 11px !important; }
9623
+ .brz .brz-fs-sm-12 {
9624
+ font-size: 12px !important; }
9625
+ .brz .brz-fs-sm-13 {
9626
+ font-size: 13px !important; }
9627
+ .brz .brz-fs-sm-14 {
9628
+ font-size: 14px !important; }
9629
+ .brz .brz-fs-sm-15 {
9630
+ font-size: 15px !important; }
9631
+ .brz .brz-fs-sm-16 {
9632
+ font-size: 16px !important; }
9633
+ .brz .brz-fs-sm-17 {
9634
+ font-size: 17px !important; }
9635
+ .brz .brz-fs-sm-18 {
9636
+ font-size: 18px !important; }
9637
+ .brz .brz-fs-sm-19 {
9638
+ font-size: 19px !important; }
9639
+ .brz .brz-fs-sm-20 {
9640
+ font-size: 20px !important; }
9641
+ .brz .brz-fs-sm-21 {
9642
+ font-size: 21px !important; }
9643
+ .brz .brz-fs-sm-22 {
9644
+ font-size: 22px !important; }
9645
+ .brz .brz-fs-sm-23 {
9646
+ font-size: 23px !important; }
9647
+ .brz .brz-fs-sm-24 {
9648
+ font-size: 24px !important; }
9649
+ .brz .brz-fs-sm-25 {
9650
+ font-size: 25px !important; }
9651
+ .brz .brz-fs-sm-26 {
9652
+ font-size: 26px !important; }
9653
+ .brz .brz-fs-sm-27 {
9654
+ font-size: 27px !important; }
9655
+ .brz .brz-fs-sm-28 {
9656
+ font-size: 28px !important; }
9657
+ .brz .brz-fs-sm-29 {
9658
+ font-size: 29px !important; }
9659
+ .brz .brz-fs-sm-30 {
9660
+ font-size: 30px !important; }
9661
+ .brz .brz-fs-sm-31 {
9662
+ font-size: 31px !important; }
9663
+ .brz .brz-fs-sm-32 {
9664
+ font-size: 32px !important; }
9665
+ .brz .brz-fs-sm-33 {
9666
+ font-size: 33px !important; }
9667
+ .brz .brz-fs-sm-34 {
9668
+ font-size: 34px !important; }
9669
+ .brz .brz-fs-sm-35 {
9670
+ font-size: 35px !important; }
9671
+ .brz .brz-fs-sm-36 {
9672
+ font-size: 36px !important; }
9673
+ .brz .brz-fs-sm-37 {
9674
+ font-size: 37px !important; }
9675
+ .brz .brz-fs-sm-38 {
9676
+ font-size: 38px !important; }
9677
+ .brz .brz-fs-sm-39 {
9678
+ font-size: 39px !important; }
9679
+ .brz .brz-fs-sm-40 {
9680
+ font-size: 40px !important; }
9681
+ .brz .brz-fs-sm-41 {
9682
+ font-size: 41px !important; }
9683
+ .brz .brz-fs-sm-42 {
9684
+ font-size: 42px !important; }
9685
+ .brz .brz-fs-sm-43 {
9686
+ font-size: 43px !important; }
9687
+ .brz .brz-fs-sm-44 {
9688
+ font-size: 44px !important; }
9689
+ .brz .brz-fs-sm-45 {
9690
+ font-size: 45px !important; }
9691
+ .brz .brz-fs-sm-46 {
9692
+ font-size: 46px !important; }
9693
+ .brz .brz-fs-sm-47 {
9694
+ font-size: 47px !important; }
9695
+ .brz .brz-fs-sm-48 {
9696
+ font-size: 48px !important; }
9697
+ .brz .brz-fs-sm-49 {
9698
+ font-size: 49px !important; }
9699
+ .brz .brz-fs-sm-50 {
9700
+ font-size: 50px !important; }
9701
+ .brz .brz-fs-sm-51 {
9702
+ font-size: 51px !important; }
9703
+ .brz .brz-fs-sm-52 {
9704
+ font-size: 52px !important; }
9705
+ .brz .brz-fs-sm-53 {
9706
+ font-size: 53px !important; }
9707
+ .brz .brz-fs-sm-54 {
9708
+ font-size: 54px !important; }
9709
+ .brz .brz-fs-sm-55 {
9710
+ font-size: 55px !important; }
9711
+ .brz .brz-fs-sm-56 {
9712
+ font-size: 56px !important; }
9713
+ .brz .brz-fs-sm-57 {
9714
+ font-size: 57px !important; }
9715
+ .brz .brz-fs-sm-58 {
9716
+ font-size: 58px !important; }
9717
+ .brz .brz-fs-sm-59 {
9718
+ font-size: 59px !important; }
9719
+ .brz .brz-fs-sm-60 {
9720
+ font-size: 60px !important; }
9721
+ .brz .brz-fs-sm-61 {
9722
+ font-size: 61px !important; }
9723
+ .brz .brz-fs-sm-62 {
9724
+ font-size: 62px !important; }
9725
+ .brz .brz-fs-sm-63 {
9726
+ font-size: 63px !important; }
9727
+ .brz .brz-fs-sm-64 {
9728
+ font-size: 64px !important; }
9729
+ .brz .brz-fs-sm-65 {
9730
+ font-size: 65px !important; }
9731
+ .brz .brz-fs-sm-66 {
9732
+ font-size: 66px !important; }
9733
+ .brz .brz-fs-sm-67 {
9734
+ font-size: 67px !important; }
9735
+ .brz .brz-fs-sm-68 {
9736
+ font-size: 68px !important; }
9737
+ .brz .brz-fs-sm-69 {
9738
+ font-size: 69px !important; }
9739
+ .brz .brz-fs-sm-70 {
9740
+ font-size: 70px !important; }
9741
+ .brz .brz-fs-sm-71 {
9742
+ font-size: 71px !important; }
9743
+ .brz .brz-fs-sm-72 {
9744
+ font-size: 72px !important; }
9745
+ .brz .brz-fs-sm-73 {
9746
+ font-size: 73px !important; }
9747
+ .brz .brz-fs-sm-74 {
9748
+ font-size: 74px !important; }
9749
+ .brz .brz-fs-sm-75 {
9750
+ font-size: 75px !important; }
9751
+ .brz .brz-fs-sm-76 {
9752
+ font-size: 76px !important; }
9753
+ .brz .brz-fs-sm-77 {
9754
+ font-size: 77px !important; }
9755
+ .brz .brz-fs-sm-78 {
9756
+ font-size: 78px !important; }
9757
+ .brz .brz-fs-sm-79 {
9758
+ font-size: 79px !important; }
9759
+ .brz .brz-fs-sm-80 {
9760
+ font-size: 80px !important; }
9761
+ .brz .brz-fs-sm-81 {
9762
+ font-size: 81px !important; }
9763
+ .brz .brz-fs-sm-82 {
9764
+ font-size: 82px !important; }
9765
+ .brz .brz-fs-sm-83 {
9766
+ font-size: 83px !important; }
9767
+ .brz .brz-fs-sm-84 {
9768
+ font-size: 84px !important; }
9769
+ .brz .brz-fs-sm-85 {
9770
+ font-size: 85px !important; }
9771
+ .brz .brz-fs-sm-86 {
9772
+ font-size: 86px !important; }
9773
+ .brz .brz-fs-sm-87 {
9774
+ font-size: 87px !important; }
9775
+ .brz .brz-fs-sm-88 {
9776
+ font-size: 88px !important; }
9777
+ .brz .brz-fs-sm-89 {
9778
+ font-size: 89px !important; }
9779
+ .brz .brz-fs-sm-90 {
9780
+ font-size: 90px !important; }
9781
+ .brz .brz-fs-sm-91 {
9782
+ font-size: 91px !important; }
9783
+ .brz .brz-fs-sm-92 {
9784
+ font-size: 92px !important; }
9785
+ .brz .brz-fs-sm-93 {
9786
+ font-size: 93px !important; }
9787
+ .brz .brz-fs-sm-94 {
9788
+ font-size: 94px !important; }
9789
+ .brz .brz-fs-sm-95 {
9790
+ font-size: 95px !important; }
9791
+ .brz .brz-fs-sm-96 {
9792
+ font-size: 96px !important; }
9793
+ .brz .brz-fs-sm-97 {
9794
+ font-size: 97px !important; }
9795
+ .brz .brz-fs-sm-98 {
9796
+ font-size: 98px !important; }
9797
+ .brz .brz-fs-sm-99 {
9798
+ font-size: 99px !important; }
9799
+ .brz .brz-fs-sm-100 {
9800
+ font-size: 100px !important; }
9801
+ .brz .brz-fs-sm-101 {
9802
+ font-size: 101px !important; }
9803
+ .brz .brz-fs-sm-102 {
9804
+ font-size: 102px !important; }
9805
+ .brz .brz-fs-sm-103 {
9806
+ font-size: 103px !important; }
9807
+ .brz .brz-fs-sm-104 {
9808
+ font-size: 104px !important; }
9809
+ .brz .brz-fs-sm-105 {
9810
+ font-size: 105px !important; }
9811
+ .brz .brz-fs-sm-106 {
9812
+ font-size: 106px !important; }
9813
+ .brz .brz-fs-sm-107 {
9814
+ font-size: 107px !important; }
9815
+ .brz .brz-fs-sm-108 {
9816
+ font-size: 108px !important; }
9817
+ .brz .brz-fs-sm-109 {
9818
+ font-size: 109px !important; }
9819
+ .brz .brz-fs-sm-110 {
9820
+ font-size: 110px !important; }
9821
+ .brz .brz-fs-sm-111 {
9822
+ font-size: 111px !important; }
9823
+ .brz .brz-fs-sm-112 {
9824
+ font-size: 112px !important; }
9825
+ .brz .brz-fs-sm-113 {
9826
+ font-size: 113px !important; }
9827
+ .brz .brz-fs-sm-114 {
9828
+ font-size: 114px !important; }
9829
+ .brz .brz-fs-sm-115 {
9830
+ font-size: 115px !important; }
9831
+ .brz .brz-fs-sm-116 {
9832
+ font-size: 116px !important; }
9833
+ .brz .brz-fs-sm-117 {
9834
+ font-size: 117px !important; }
9835
+ .brz .brz-fs-sm-118 {
9836
+ font-size: 118px !important; }
9837
+ .brz .brz-fs-sm-119 {
9838
+ font-size: 119px !important; }
9839
+ .brz .brz-fs-sm-120 {
9840
+ font-size: 120px !important; }
9841
+ .brz .brz-fs-sm-121 {
9842
+ font-size: 121px !important; }
9843
+ .brz .brz-fs-sm-122 {
9844
+ font-size: 122px !important; }
9845
+ .brz .brz-fs-sm-123 {
9846
+ font-size: 123px !important; }
9847
+ .brz .brz-fs-sm-124 {
9848
+ font-size: 124px !important; }
9849
+ .brz .brz-fs-sm-125 {
9850
+ font-size: 125px !important; }
9851
+ .brz .brz-fs-sm-126 {
9852
+ font-size: 126px !important; }
9853
+ .brz .brz-fs-sm-127 {
9854
+ font-size: 127px !important; }
9855
+ .brz .brz-fs-sm-128 {
9856
+ font-size: 128px !important; }
9857
+ .brz .brz-fs-sm-129 {
9858
+ font-size: 129px !important; }
9859
+ .brz .brz-fs-sm-130 {
9860
+ font-size: 130px !important; }
9861
+ .brz .brz-fs-sm-131 {
9862
+ font-size: 131px !important; }
9863
+ .brz .brz-fs-sm-132 {
9864
+ font-size: 132px !important; }
9865
+ .brz .brz-fs-sm-133 {
9866
+ font-size: 133px !important; }
9867
+ .brz .brz-fs-sm-134 {
9868
+ font-size: 134px !important; }
9869
+ .brz .brz-fs-sm-135 {
9870
+ font-size: 135px !important; }
9871
+ .brz .brz-fs-sm-136 {
9872
+ font-size: 136px !important; }
9873
+ .brz .brz-fs-sm-137 {
9874
+ font-size: 137px !important; }
9875
+ .brz .brz-fs-sm-138 {
9876
+ font-size: 138px !important; }
9877
+ .brz .brz-fs-sm-139 {
9878
+ font-size: 139px !important; }
9879
+ .brz .brz-fs-sm-140 {
9880
+ font-size: 140px !important; }
9881
+ .brz .brz-fs-sm-141 {
9882
+ font-size: 141px !important; }
9883
+ .brz .brz-fs-sm-142 {
9884
+ font-size: 142px !important; }
9885
+ .brz .brz-fs-sm-143 {
9886
+ font-size: 143px !important; }
9887
+ .brz .brz-fs-sm-144 {
9888
+ font-size: 144px !important; }
9889
+ .brz .brz-fs-sm-145 {
9890
+ font-size: 145px !important; }
9891
+ .brz .brz-fs-sm-146 {
9892
+ font-size: 146px !important; }
9893
+ .brz .brz-fs-sm-147 {
9894
+ font-size: 147px !important; }
9895
+ .brz .brz-fs-sm-148 {
9896
+ font-size: 148px !important; }
9897
+ .brz .brz-fs-sm-149 {
9898
+ font-size: 149px !important; }
9899
+ .brz .brz-fs-sm-150 {
9900
+ font-size: 150px !important; }
9901
+ .brz .brz-fs-sm-151 {
9902
+ font-size: 151px !important; }
9903
+ .brz .brz-fs-sm-152 {
9904
+ font-size: 152px !important; }
9905
+ .brz .brz-fs-sm-153 {
9906
+ font-size: 153px !important; }
9907
+ .brz .brz-fs-sm-154 {
9908
+ font-size: 154px !important; }
9909
+ .brz .brz-fs-sm-155 {
9910
+ font-size: 155px !important; }
9911
+ .brz .brz-fs-sm-156 {
9912
+ font-size: 156px !important; }
9913
+ .brz .brz-fs-sm-157 {
9914
+ font-size: 157px !important; }
9915
+ .brz .brz-fs-sm-158 {
9916
+ font-size: 158px !important; }
9917
+ .brz .brz-fs-sm-159 {
9918
+ font-size: 159px !important; }
9919
+ .brz .brz-fs-sm-160 {
9920
+ font-size: 160px !important; }
9921
+ .brz .brz-fs-sm-161 {
9922
+ font-size: 161px !important; }
9923
+ .brz .brz-fs-sm-162 {
9924
+ font-size: 162px !important; }
9925
+ .brz .brz-fs-sm-163 {
9926
+ font-size: 163px !important; }
9927
+ .brz .brz-fs-sm-164 {
9928
+ font-size: 164px !important; }
9929
+ .brz .brz-fs-sm-165 {
9930
+ font-size: 165px !important; }
9931
+ .brz .brz-fs-sm-166 {
9932
+ font-size: 166px !important; }
9933
+ .brz .brz-fs-sm-167 {
9934
+ font-size: 167px !important; }
9935
+ .brz .brz-fs-sm-168 {
9936
+ font-size: 168px !important; }
9937
+ .brz .brz-fs-sm-169 {
9938
+ font-size: 169px !important; }
9939
+ .brz .brz-fs-sm-170 {
9940
+ font-size: 170px !important; }
9941
+ .brz .brz-fs-sm-171 {
9942
+ font-size: 171px !important; }
9943
+ .brz .brz-fs-sm-172 {
9944
+ font-size: 172px !important; }
9945
+ .brz .brz-fs-sm-173 {
9946
+ font-size: 173px !important; }
9947
+ .brz .brz-fs-sm-174 {
9948
+ font-size: 174px !important; }
9949
+ .brz .brz-fs-sm-175 {
9950
+ font-size: 175px !important; }
9951
+ .brz .brz-fs-sm-176 {
9952
+ font-size: 176px !important; }
9953
+ .brz .brz-fs-sm-177 {
9954
+ font-size: 177px !important; }
9955
+ .brz .brz-fs-sm-178 {
9956
+ font-size: 178px !important; }
9957
+ .brz .brz-fs-sm-179 {
9958
+ font-size: 179px !important; }
9959
+ .brz .brz-fs-sm-180 {
9960
+ font-size: 180px !important; }
9961
+ .brz .brz-fs-sm-181 {
9962
+ font-size: 181px !important; }
9963
+ .brz .brz-fs-sm-182 {
9964
+ font-size: 182px !important; }
9965
+ .brz .brz-fs-sm-183 {
9966
+ font-size: 183px !important; }
9967
+ .brz .brz-fs-sm-184 {
9968
+ font-size: 184px !important; }
9969
+ .brz .brz-fs-sm-185 {
9970
+ font-size: 185px !important; }
9971
+ .brz .brz-fs-sm-186 {
9972
+ font-size: 186px !important; }
9973
+ .brz .brz-fs-sm-187 {
9974
+ font-size: 187px !important; }
9975
+ .brz .brz-fs-sm-188 {
9976
+ font-size: 188px !important; }
9977
+ .brz .brz-fs-sm-189 {
9978
+ font-size: 189px !important; }
9979
+ .brz .brz-fs-sm-190 {
9980
+ font-size: 190px !important; }
9981
+ .brz .brz-fs-sm-191 {
9982
+ font-size: 191px !important; }
9983
+ .brz .brz-fs-sm-192 {
9984
+ font-size: 192px !important; }
9985
+ .brz .brz-fs-sm-193 {
9986
+ font-size: 193px !important; }
9987
+ .brz .brz-fs-sm-194 {
9988
+ font-size: 194px !important; }
9989
+ .brz .brz-fs-sm-195 {
9990
+ font-size: 195px !important; }
9991
+ .brz .brz-fs-sm-196 {
9992
+ font-size: 196px !important; }
9993
+ .brz .brz-fs-sm-197 {
9994
+ font-size: 197px !important; }
9995
+ .brz .brz-fs-sm-198 {
9996
+ font-size: 198px !important; }
9997
+ .brz .brz-fs-sm-199 {
9998
+ font-size: 199px !important; }
9999
+ .brz .brz-fs-sm-200 {
10000
+ font-size: 200px !important; }
10001
+ .brz .brz-fs-sm-201 {
10002
+ font-size: 201px !important; }
10003
+ .brz .brz-fs-sm-202 {
10004
+ font-size: 202px !important; }
10005
+ .brz .brz-fs-sm-203 {
10006
+ font-size: 203px !important; }
10007
+ .brz .brz-fs-sm-204 {
10008
+ font-size: 204px !important; }
10009
+ .brz .brz-fs-sm-205 {
10010
+ font-size: 205px !important; }
10011
+ .brz .brz-fs-sm-206 {
10012
+ font-size: 206px !important; }
10013
+ .brz .brz-fs-sm-207 {
10014
+ font-size: 207px !important; }
10015
+ .brz .brz-fs-sm-208 {
10016
+ font-size: 208px !important; }
10017
+ .brz .brz-fs-sm-209 {
10018
+ font-size: 209px !important; }
10019
+ .brz .brz-fs-sm-210 {
10020
+ font-size: 210px !important; }
10021
+ .brz .brz-fs-sm-211 {
10022
+ font-size: 211px !important; }
10023
+ .brz .brz-fs-sm-212 {
10024
+ font-size: 212px !important; }
10025
+ .brz .brz-fs-sm-213 {
10026
+ font-size: 213px !important; }
10027
+ .brz .brz-fs-sm-214 {
10028
+ font-size: 214px !important; }
10029
+ .brz .brz-fs-sm-215 {
10030
+ font-size: 215px !important; }
10031
+ .brz .brz-fs-sm-216 {
10032
+ font-size: 216px !important; }
10033
+ .brz .brz-fs-sm-217 {
10034
+ font-size: 217px !important; }
10035
+ .brz .brz-fs-sm-218 {
10036
+ font-size: 218px !important; }
10037
+ .brz .brz-fs-sm-219 {
10038
+ font-size: 219px !important; }
10039
+ .brz .brz-fs-sm-220 {
10040
+ font-size: 220px !important; }
10041
+ .brz .brz-fs-sm-221 {
10042
+ font-size: 221px !important; }
10043
+ .brz .brz-fs-sm-222 {
10044
+ font-size: 222px !important; }
10045
+ .brz .brz-fs-sm-223 {
10046
+ font-size: 223px !important; }
10047
+ .brz .brz-fs-sm-224 {
10048
+ font-size: 224px !important; }
10049
+ .brz .brz-fs-sm-225 {
10050
+ font-size: 225px !important; }
10051
+ .brz .brz-fs-sm-226 {
10052
+ font-size: 226px !important; }
10053
+ .brz .brz-fs-sm-227 {
10054
+ font-size: 227px !important; }
10055
+ .brz .brz-fs-sm-228 {
10056
+ font-size: 228px !important; }
10057
+ .brz .brz-fs-sm-229 {
10058
+ font-size: 229px !important; }
10059
+ .brz .brz-fs-sm-230 {
10060
+ font-size: 230px !important; }
10061
+ .brz .brz-fs-sm-231 {
10062
+ font-size: 231px !important; }
10063
+ .brz .brz-fs-sm-232 {
10064
+ font-size: 232px !important; }
10065
+ .brz .brz-fs-sm-233 {
10066
+ font-size: 233px !important; }
10067
+ .brz .brz-fs-sm-234 {
10068
+ font-size: 234px !important; }
10069
+ .brz .brz-fs-sm-235 {
10070
+ font-size: 235px !important; }
10071
+ .brz .brz-fs-sm-236 {
10072
+ font-size: 236px !important; }
10073
+ .brz .brz-fs-sm-237 {
10074
+ font-size: 237px !important; }
10075
+ .brz .brz-fs-sm-238 {
10076
+ font-size: 238px !important; }
10077
+ .brz .brz-fs-sm-239 {
10078
+ font-size: 239px !important; }
10079
+ .brz .brz-fs-sm-240 {
10080
+ font-size: 240px !important; }
10081
+ .brz .brz-fs-sm-241 {
10082
+ font-size: 241px !important; }
10083
+ .brz .brz-fs-sm-242 {
10084
+ font-size: 242px !important; }
10085
+ .brz .brz-fs-sm-243 {
10086
+ font-size: 243px !important; }
10087
+ .brz .brz-fs-sm-244 {
10088
+ font-size: 244px !important; }
10089
+ .brz .brz-fs-sm-245 {
10090
+ font-size: 245px !important; }
10091
+ .brz .brz-fs-sm-246 {
10092
+ font-size: 246px !important; }
10093
+ .brz .brz-fs-sm-247 {
10094
+ font-size: 247px !important; }
10095
+ .brz .brz-fs-sm-248 {
10096
+ font-size: 248px !important; }
10097
+ .brz .brz-fs-sm-249 {
10098
+ font-size: 249px !important; }
10099
+ .brz .brz-fs-sm-250 {
10100
+ font-size: 250px !important; }
10101
+ .brz .brz-fs-sm-251 {
10102
+ font-size: 251px !important; }
10103
+ .brz .brz-fs-sm-252 {
10104
+ font-size: 252px !important; }
10105
+ .brz .brz-fs-sm-253 {
10106
+ font-size: 253px !important; }
10107
+ .brz .brz-fs-sm-254 {
10108
+ font-size: 254px !important; }
10109
+ .brz .brz-fs-sm-255 {
10110
+ font-size: 255px !important; }
10111
+ .brz .brz-fs-sm-256 {
10112
+ font-size: 256px !important; }
10113
+ .brz .brz-fs-sm-257 {
10114
+ font-size: 257px !important; }
10115
+ .brz .brz-fs-sm-258 {
10116
+ font-size: 258px !important; }
10117
+ .brz .brz-fs-sm-259 {
10118
+ font-size: 259px !important; }
10119
+ .brz .brz-fs-sm-260 {
10120
+ font-size: 260px !important; }
10121
+ .brz .brz-fs-sm-261 {
10122
+ font-size: 261px !important; }
10123
+ .brz .brz-fs-sm-262 {
10124
+ font-size: 262px !important; }
10125
+ .brz .brz-fs-sm-263 {
10126
+ font-size: 263px !important; }
10127
+ .brz .brz-fs-sm-264 {
10128
+ font-size: 264px !important; }
10129
+ .brz .brz-fs-sm-265 {
10130
+ font-size: 265px !important; }
10131
+ .brz .brz-fs-sm-266 {
10132
+ font-size: 266px !important; }
10133
+ .brz .brz-fs-sm-267 {
10134
+ font-size: 267px !important; }
10135
+ .brz .brz-fs-sm-268 {
10136
+ font-size: 268px !important; }
10137
+ .brz .brz-fs-sm-269 {
10138
+ font-size: 269px !important; }
10139
+ .brz .brz-fs-sm-270 {
10140
+ font-size: 270px !important; }
10141
+ .brz .brz-fs-sm-271 {
10142
+ font-size: 271px !important; }
10143
+ .brz .brz-fs-sm-272 {
10144
+ font-size: 272px !important; }
10145
+ .brz .brz-fs-sm-273 {
10146
+ font-size: 273px !important; }
10147
+ .brz .brz-fs-sm-274 {
10148
+ font-size: 274px !important; }
10149
+ .brz .brz-fs-sm-275 {
10150
+ font-size: 275px !important; }
10151
+ .brz .brz-fs-sm-276 {
10152
+ font-size: 276px !important; }
10153
+ .brz .brz-fs-sm-277 {
10154
+ font-size: 277px !important; }
10155
+ .brz .brz-fs-sm-278 {
10156
+ font-size: 278px !important; }
10157
+ .brz .brz-fs-sm-279 {
10158
+ font-size: 279px !important; }
10159
+ .brz .brz-fs-sm-280 {
10160
+ font-size: 280px !important; }
10161
+ .brz .brz-fs-sm-281 {
10162
+ font-size: 281px !important; }
10163
+ .brz .brz-fs-sm-282 {
10164
+ font-size: 282px !important; }
10165
+ .brz .brz-fs-sm-283 {
10166
+ font-size: 283px !important; }
10167
+ .brz .brz-fs-sm-284 {
10168
+ font-size: 284px !important; }
10169
+ .brz .brz-fs-sm-285 {
10170
+ font-size: 285px !important; }
10171
+ .brz .brz-fs-sm-286 {
10172
+ font-size: 286px !important; }
10173
+ .brz .brz-fs-sm-287 {
10174
+ font-size: 287px !important; }
10175
+ .brz .brz-fs-sm-288 {
10176
+ font-size: 288px !important; }
10177
+ .brz .brz-fs-sm-289 {
10178
+ font-size: 289px !important; }
10179
+ .brz .brz-fs-sm-290 {
10180
+ font-size: 290px !important; }
10181
+ .brz .brz-fs-sm-291 {
10182
+ font-size: 291px !important; }
10183
+ .brz .brz-fs-sm-292 {
10184
+ font-size: 292px !important; }
10185
+ .brz .brz-fs-sm-293 {
10186
+ font-size: 293px !important; }
10187
+ .brz .brz-fs-sm-294 {
10188
+ font-size: 294px !important; }
10189
+ .brz .brz-fs-sm-295 {
10190
+ font-size: 295px !important; }
10191
+ .brz .brz-fs-sm-296 {
10192
+ font-size: 296px !important; }
10193
+ .brz .brz-fs-sm-297 {
10194
+ font-size: 297px !important; }
10195
+ .brz .brz-fs-sm-298 {
10196
+ font-size: 298px !important; }
10197
+ .brz .brz-fs-sm-299 {
10198
+ font-size: 299px !important; }
10199
+ .brz .brz-fs-sm-300 {
10200
+ font-size: 300px !important; }
10201
+ .brz .brz-lh-sm-1 {
10202
+ line-height: 1em !important; }
10203
+ .brz .brz-lh-sm-1_1 {
10204
+ line-height: 1.1em !important; }
10205
+ .brz .brz-lh-sm-1_2 {
10206
+ line-height: 1.2em !important; }
10207
+ .brz .brz-lh-sm-1_3 {
10208
+ line-height: 1.3em !important; }
10209
+ .brz .brz-lh-sm-1_4 {
10210
+ line-height: 1.4em !important; }
10211
+ .brz .brz-lh-sm-1_5 {
10212
+ line-height: 1.5em !important; }
10213
+ .brz .brz-lh-sm-1_6 {
10214
+ line-height: 1.6em !important; }
10215
+ .brz .brz-lh-sm-1_7 {
10216
+ line-height: 1.7em !important; }
10217
+ .brz .brz-lh-sm-1_8 {
10218
+ line-height: 1.8em !important; }
10219
+ .brz .brz-lh-sm-1_9 {
10220
+ line-height: 1.9em !important; }
10221
+ .brz .brz-lh-sm-2 {
10222
+ line-height: 2em !important; }
10223
+ .brz .brz-lh-sm-2_1 {
10224
+ line-height: 2.1em !important; }
10225
+ .brz .brz-lh-sm-2_2 {
10226
+ line-height: 2.2em !important; }
10227
+ .brz .brz-lh-sm-2_3 {
10228
+ line-height: 2.3em !important; }
10229
+ .brz .brz-lh-sm-2_4 {
10230
+ line-height: 2.4em !important; }
10231
+ .brz .brz-lh-sm-2_5 {
10232
+ line-height: 2.5em !important; }
10233
+ .brz .brz-lh-sm-2_6 {
10234
+ line-height: 2.6em !important; }
10235
+ .brz .brz-lh-sm-2_7 {
10236
+ line-height: 2.7em !important; }
10237
+ .brz .brz-lh-sm-2_8 {
10238
+ line-height: 2.8em !important; }
10239
+ .brz .brz-lh-sm-2_9 {
10240
+ line-height: 2.9em !important; }
10241
+ .brz .brz-lh-sm-3 {
10242
+ line-height: 3em !important; }
10243
+ .brz .brz-lh-sm-3_1 {
10244
+ line-height: 3.1em !important; }
10245
+ .brz .brz-lh-sm-3_2 {
10246
+ line-height: 3.2em !important; }
10247
+ .brz .brz-lh-sm-3_3 {
10248
+ line-height: 3.3em !important; }
10249
+ .brz .brz-lh-sm-3_4 {
10250
+ line-height: 3.4em !important; }
10251
+ .brz .brz-lh-sm-3_5 {
10252
+ line-height: 3.5em !important; }
10253
+ .brz .brz-lh-sm-3_6 {
10254
+ line-height: 3.6em !important; }
10255
+ .brz .brz-lh-sm-3_7 {
10256
+ line-height: 3.7em !important; }
10257
+ .brz .brz-lh-sm-3_8 {
10258
+ line-height: 3.8em !important; }
10259
+ .brz .brz-lh-sm-3_9 {
10260
+ line-height: 3.9em !important; }
10261
+ .brz .brz-lh-sm-4 {
10262
+ line-height: 4em !important; }
10263
+ .brz .brz-lh-sm-4_1 {
10264
+ line-height: 4.1em !important; }
10265
+ .brz .brz-lh-sm-4_2 {
10266
+ line-height: 4.2em !important; }
10267
+ .brz .brz-lh-sm-4_3 {
10268
+ line-height: 4.3em !important; }
10269
+ .brz .brz-lh-sm-4_4 {
10270
+ line-height: 4.4em !important; }
10271
+ .brz .brz-lh-sm-4_5 {
10272
+ line-height: 4.5em !important; }
10273
+ .brz .brz-lh-sm-4_6 {
10274
+ line-height: 4.6em !important; }
10275
+ .brz .brz-lh-sm-4_7 {
10276
+ line-height: 4.7em !important; }
10277
+ .brz .brz-lh-sm-4_8 {
10278
+ line-height: 4.8em !important; }
10279
+ .brz .brz-lh-sm-4_9 {
10280
+ line-height: 4.9em !important; }
10281
+ .brz .brz-lh-sm-5 {
10282
+ line-height: 5em !important; }
10283
+ .brz .brz-lh-sm-5_1 {
10284
+ line-height: 5.1em !important; }
10285
+ .brz .brz-lh-sm-5_2 {
10286
+ line-height: 5.2em !important; }
10287
+ .brz .brz-lh-sm-5_3 {
10288
+ line-height: 5.3em !important; }
10289
+ .brz .brz-lh-sm-5_4 {
10290
+ line-height: 5.4em !important; }
10291
+ .brz .brz-lh-sm-5_5 {
10292
+ line-height: 5.5em !important; }
10293
+ .brz .brz-lh-sm-5_6 {
10294
+ line-height: 5.6em !important; }
10295
+ .brz .brz-lh-sm-5_7 {
10296
+ line-height: 5.7em !important; }
10297
+ .brz .brz-lh-sm-5_8 {
10298
+ line-height: 5.8em !important; }
10299
+ .brz .brz-lh-sm-5_9 {
10300
+ line-height: 5.9em !important; }
10301
+ .brz .brz-fw-sm-100 {
10302
+ font-weight: 100 !important; }
10303
+ .brz .brz-fw-sm-200 {
10304
+ font-weight: 200 !important; }
10305
+ .brz .brz-fw-sm-300 {
10306
+ font-weight: 300 !important; }
10307
+ .brz .brz-fw-sm-400 {
10308
+ font-weight: 400 !important; }
10309
+ .brz .brz-fw-sm-500 {
10310
+ font-weight: 500 !important; }
10311
+ .brz .brz-fw-sm-600 {
10312
+ font-weight: 600 !important; }
10313
+ .brz .brz-fw-sm-700 {
10314
+ font-weight: 700 !important; }
10315
+ .brz .brz-fw-sm-800 {
10316
+ font-weight: 800 !important; }
10317
+ .brz .brz-fw-sm-900 {
10318
+ font-weight: 900 !important; }
10319
+ .brz .brz-fw-sm-1000 {
10320
+ font-weight: 1000 !important; }
10321
+ .brz .brz-fw-sm-1100 {
10322
+ font-weight: 1100 !important; }
10323
+ .brz .brz-fw-sm-1200 {
10324
+ font-weight: 1200 !important; }
10325
+ .brz .brz-fw-sm-1300 {
10326
+ font-weight: 1300 !important; }
10327
+ .brz .brz-fw-sm-1400 {
10328
+ font-weight: 1400 !important; }
10329
+ .brz .brz-fw-sm-1500 {
10330
+ font-weight: 1500 !important; }
10331
+ .brz .brz-ls-sm-m_5 {
10332
+ letter-spacing: -5px !important; }
10333
+ .brz .brz-ls-sm-m_5_5 {
10334
+ letter-spacing: -5.5px !important; }
10335
+ .brz .brz-ls-sm-m_4 {
10336
+ letter-spacing: -4px !important; }
10337
+ .brz .brz-ls-sm-m_4_5 {
10338
+ letter-spacing: -4.5px !important; }
10339
+ .brz .brz-ls-sm-m_3 {
10340
+ letter-spacing: -3px !important; }
10341
+ .brz .brz-ls-sm-m_3_5 {
10342
+ letter-spacing: -3.5px !important; }
10343
+ .brz .brz-ls-sm-m_2 {
10344
+ letter-spacing: -2px !important; }
10345
+ .brz .brz-ls-sm-m_2_5 {
10346
+ letter-spacing: -2.5px !important; }
10347
+ .brz .brz-ls-sm-m_1 {
10348
+ letter-spacing: -1px !important; }
10349
+ .brz .brz-ls-sm-m_1_5 {
10350
+ letter-spacing: -1.5px !important; }
10351
+ .brz .brz-ls-sm-m_0 {
10352
+ letter-spacing: 0px !important; }
10353
+ .brz .brz-ls-sm-m_0_5 {
10354
+ letter-spacing: -0.5px !important; }
10355
+ .brz .brz-ls-sm-0 {
10356
+ letter-spacing: 0px !important; }
10357
+ .brz .brz-ls-sm-0_5 {
10358
+ letter-spacing: 0.5px !important; }
10359
+ .brz .brz-ls-sm-1 {
10360
+ letter-spacing: 1px !important; }
10361
+ .brz .brz-ls-sm-1_5 {
10362
+ letter-spacing: 1.5px !important; }
10363
+ .brz .brz-ls-sm-2 {
10364
+ letter-spacing: 2px !important; }
10365
+ .brz .brz-ls-sm-2_5 {
10366
+ letter-spacing: 2.5px !important; }
10367
+ .brz .brz-ls-sm-3 {
10368
+ letter-spacing: 3px !important; }
10369
+ .brz .brz-ls-sm-3_5 {
10370
+ letter-spacing: 3.5px !important; }
10371
+ .brz .brz-ls-sm-4 {
10372
+ letter-spacing: 4px !important; }
10373
+ .brz .brz-ls-sm-4_5 {
10374
+ letter-spacing: 4.5px !important; }
10375
+ .brz .brz-ls-sm-5 {
10376
+ letter-spacing: 5px !important; }
10377
+ .brz .brz-ls-sm-5_5 {
10378
+ letter-spacing: 5.5px !important; }
10379
+ .brz .brz-ls-sm-6 {
10380
+ letter-spacing: 6px !important; }
10381
+ .brz .brz-ls-sm-6_5 {
10382
+ letter-spacing: 6.5px !important; }
10383
+ .brz .brz-ls-sm-7 {
10384
+ letter-spacing: 7px !important; }
10385
+ .brz .brz-ls-sm-7_5 {
10386
+ letter-spacing: 7.5px !important; }
10387
+ .brz .brz-ls-sm-8 {
10388
+ letter-spacing: 8px !important; }
10389
+ .brz .brz-ls-sm-8_5 {
10390
+ letter-spacing: 8.5px !important; }
10391
+ .brz .brz-ls-sm-9 {
10392
+ letter-spacing: 9px !important; }
10393
+ .brz .brz-ls-sm-9_5 {
10394
+ letter-spacing: 9.5px !important; }
10395
+ .brz .brz-ls-sm-10 {
10396
+ letter-spacing: 10px !important; }
10397
+ .brz .brz-ls-sm-10_5 {
10398
+ letter-spacing: 10.5px !important; }
10399
+ .brz .brz-ls-sm-11 {
10400
+ letter-spacing: 11px !important; }
10401
+ .brz .brz-ls-sm-11_5 {
10402
+ letter-spacing: 11.5px !important; }
10403
+ .brz .brz-ls-sm-12 {
10404
+ letter-spacing: 12px !important; }
10405
+ .brz .brz-ls-sm-12_5 {
10406
+ letter-spacing: 12.5px !important; }
10407
+ .brz .brz-ls-sm-13 {
10408
+ letter-spacing: 13px !important; }
10409
+ .brz .brz-ls-sm-13_5 {
10410
+ letter-spacing: 13.5px !important; }
10411
+ .brz .brz-ls-sm-14 {
10412
+ letter-spacing: 14px !important; }
10413
+ .brz .brz-ls-sm-14_5 {
10414
+ letter-spacing: 14.5px !important; }
10415
+ .brz .brz-ls-sm-15 {
10416
+ letter-spacing: 15px !important; }
10417
+ .brz .brz-ls-sm-15_5 {
10418
+ letter-spacing: 15.5px !important; }
10419
+ .brz .brz-fs-sm-im-6 {
10420
+ font-size: 6px !important; }
10421
+ .brz .brz-fs-sm-im-7 {
10422
+ font-size: 7px !important; }
10423
+ .brz .brz-fs-sm-im-8 {
10424
+ font-size: 8px !important; }
10425
+ .brz .brz-fs-sm-im-9 {
10426
+ font-size: 9px !important; }
10427
+ .brz .brz-fs-sm-im-10 {
10428
+ font-size: 10px !important; }
10429
+ .brz .brz-fs-sm-im-11 {
10430
+ font-size: 11px !important; }
10431
+ .brz .brz-fs-sm-im-12 {
10432
+ font-size: 12px !important; }
10433
+ .brz .brz-fs-sm-im-13 {
10434
+ font-size: 13px !important; }
10435
+ .brz .brz-fs-sm-im-14 {
10436
+ font-size: 14px !important; }
10437
+ .brz .brz-fs-sm-im-15 {
10438
+ font-size: 15px !important; }
10439
+ .brz .brz-fs-sm-im-16 {
10440
+ font-size: 16px !important; }
10441
+ .brz .brz-fs-sm-im-17 {
10442
+ font-size: 17px !important; }
10443
+ .brz .brz-fs-sm-im-18 {
10444
+ font-size: 18px !important; }
10445
+ .brz .brz-fs-sm-im-19 {
10446
+ font-size: 19px !important; }
10447
+ .brz .brz-fs-sm-im-20 {
10448
+ font-size: 20px !important; }
10449
+ .brz .brz-fs-sm-im-21 {
10450
+ font-size: 21px !important; }
10451
+ .brz .brz-fs-sm-im-22 {
10452
+ font-size: 22px !important; }
10453
+ .brz .brz-fs-sm-im-23 {
10454
+ font-size: 23px !important; }
10455
+ .brz .brz-fs-sm-im-24 {
10456
+ font-size: 24px !important; }
10457
+ .brz .brz-fs-sm-im-25 {
10458
+ font-size: 25px !important; }
10459
+ .brz .brz-fs-sm-im-26 {
10460
+ font-size: 26px !important; }
10461
+ .brz .brz-fs-sm-im-27 {
10462
+ font-size: 27px !important; }
10463
+ .brz .brz-fs-sm-im-28 {
10464
+ font-size: 28px !important; }
10465
+ .brz .brz-fs-sm-im-29 {
10466
+ font-size: 29px !important; }
10467
+ .brz .brz-fs-sm-im-30 {
10468
+ font-size: 30px !important; }
10469
+ .brz .brz-fs-sm-im-31 {
10470
+ font-size: 31px !important; }
10471
+ .brz .brz-fs-sm-im-32 {
10472
+ font-size: 32px !important; }
10473
+ .brz .brz-fs-sm-im-33 {
10474
+ font-size: 33px !important; }
10475
+ .brz .brz-fs-sm-im-34 {
10476
+ font-size: 34px !important; }
10477
+ .brz .brz-fs-sm-im-35 {
10478
+ font-size: 35px !important; }
10479
+ .brz .brz-fs-sm-im-36 {
10480
+ font-size: 36px !important; }
10481
+ .brz .brz-fs-sm-im-37 {
10482
+ font-size: 37px !important; }
10483
+ .brz .brz-fs-sm-im-38 {
10484
+ font-size: 38px !important; }
10485
+ .brz .brz-fs-sm-im-39 {
10486
+ font-size: 39px !important; }
10487
+ .brz .brz-fs-sm-im-40 {
10488
+ font-size: 40px !important; }
10489
+ .brz .brz-fs-sm-im-41 {
10490
+ font-size: 41px !important; }
10491
+ .brz .brz-fs-sm-im-42 {
10492
+ font-size: 42px !important; }
10493
+ .brz .brz-fs-sm-im-43 {
10494
+ font-size: 43px !important; }
10495
+ .brz .brz-fs-sm-im-44 {
10496
+ font-size: 44px !important; }
10497
+ .brz .brz-fs-sm-im-45 {
10498
+ font-size: 45px !important; }
10499
+ .brz .brz-fs-sm-im-46 {
10500
+ font-size: 46px !important; }
10501
+ .brz .brz-fs-sm-im-47 {
10502
+ font-size: 47px !important; }
10503
+ .brz .brz-fs-sm-im-48 {
10504
+ font-size: 48px !important; }
10505
+ .brz .brz-fs-sm-im-49 {
10506
+ font-size: 49px !important; }
10507
+ .brz .brz-fs-sm-im-50 {
10508
+ font-size: 50px !important; }
10509
+ .brz .brz-fs-sm-im-51 {
10510
+ font-size: 51px !important; }
10511
+ .brz .brz-fs-sm-im-52 {
10512
+ font-size: 52px !important; }
10513
+ .brz .brz-fs-sm-im-53 {
10514
+ font-size: 53px !important; }
10515
+ .brz .brz-fs-sm-im-54 {
10516
+ font-size: 54px !important; }
10517
+ .brz .brz-fs-sm-im-55 {
10518
+ font-size: 55px !important; }
10519
+ .brz .brz-fs-sm-im-56 {
10520
+ font-size: 56px !important; }
10521
+ .brz .brz-fs-sm-im-57 {
10522
+ font-size: 57px !important; }
10523
+ .brz .brz-fs-sm-im-58 {
10524
+ font-size: 58px !important; }
10525
+ .brz .brz-fs-sm-im-59 {
10526
+ font-size: 59px !important; }
10527
+ .brz .brz-fs-sm-im-60 {
10528
+ font-size: 60px !important; }
10529
+ .brz .brz-fs-sm-im-61 {
10530
+ font-size: 61px !important; }
10531
+ .brz .brz-fs-sm-im-62 {
10532
+ font-size: 62px !important; }
10533
+ .brz .brz-fs-sm-im-63 {
10534
+ font-size: 63px !important; }
10535
+ .brz .brz-fs-sm-im-64 {
10536
+ font-size: 64px !important; }
10537
+ .brz .brz-fs-sm-im-65 {
10538
+ font-size: 65px !important; }
10539
+ .brz .brz-fs-sm-im-66 {
10540
+ font-size: 66px !important; }
10541
+ .brz .brz-fs-sm-im-67 {
10542
+ font-size: 67px !important; }
10543
+ .brz .brz-fs-sm-im-68 {
10544
+ font-size: 68px !important; }
10545
+ .brz .brz-fs-sm-im-69 {
10546
+ font-size: 69px !important; }
10547
+ .brz .brz-fs-sm-im-70 {
10548
+ font-size: 70px !important; }
10549
+ .brz .brz-fs-sm-im-71 {
10550
+ font-size: 71px !important; }
10551
+ .brz .brz-fs-sm-im-72 {
10552
+ font-size: 72px !important; }
10553
+ .brz .brz-fs-sm-im-73 {
10554
+ font-size: 73px !important; }
10555
+ .brz .brz-fs-sm-im-74 {
10556
+ font-size: 74px !important; }
10557
+ .brz .brz-fs-sm-im-75 {
10558
+ font-size: 75px !important; }
10559
+ .brz .brz-fs-sm-im-76 {
10560
+ font-size: 76px !important; }
10561
+ .brz .brz-fs-sm-im-77 {
10562
+ font-size: 77px !important; }
10563
+ .brz .brz-fs-sm-im-78 {
10564
+ font-size: 78px !important; }
10565
+ .brz .brz-fs-sm-im-79 {
10566
+ font-size: 79px !important; }
10567
+ .brz .brz-fs-sm-im-80 {
10568
+ font-size: 80px !important; }
10569
+ .brz .brz-fs-sm-im-81 {
10570
+ font-size: 81px !important; }
10571
+ .brz .brz-fs-sm-im-82 {
10572
+ font-size: 82px !important; }
10573
+ .brz .brz-fs-sm-im-83 {
10574
+ font-size: 83px !important; }
10575
+ .brz .brz-fs-sm-im-84 {
10576
+ font-size: 84px !important; }
10577
+ .brz .brz-fs-sm-im-85 {
10578
+ font-size: 85px !important; }
10579
+ .brz .brz-fs-sm-im-86 {
10580
+ font-size: 86px !important; }
10581
+ .brz .brz-fs-sm-im-87 {
10582
+ font-size: 87px !important; }
10583
+ .brz .brz-fs-sm-im-88 {
10584
+ font-size: 88px !important; }
10585
+ .brz .brz-fs-sm-im-89 {
10586
+ font-size: 89px !important; }
10587
+ .brz .brz-fs-sm-im-90 {
10588
+ font-size: 90px !important; }
10589
+ .brz .brz-fs-sm-im-91 {
10590
+ font-size: 91px !important; }
10591
+ .brz .brz-fs-sm-im-92 {
10592
+ font-size: 92px !important; }
10593
+ .brz .brz-fs-sm-im-93 {
10594
+ font-size: 93px !important; }
10595
+ .brz .brz-fs-sm-im-94 {
10596
+ font-size: 94px !important; }
10597
+ .brz .brz-fs-sm-im-95 {
10598
+ font-size: 95px !important; }
10599
+ .brz .brz-fs-sm-im-96 {
10600
+ font-size: 96px !important; }
10601
+ .brz .brz-fs-sm-im-97 {
10602
+ font-size: 97px !important; }
10603
+ .brz .brz-fs-sm-im-98 {
10604
+ font-size: 98px !important; }
10605
+ .brz .brz-fs-sm-im-99 {
10606
+ font-size: 99px !important; }
10607
+ .brz .brz-fs-sm-im-100 {
10608
+ font-size: 100px !important; }
10609
+ .brz .brz-fs-sm-im-101 {
10610
+ font-size: 101px !important; }
10611
+ .brz .brz-fs-sm-im-102 {
10612
+ font-size: 102px !important; }
10613
+ .brz .brz-fs-sm-im-103 {
10614
+ font-size: 103px !important; }
10615
+ .brz .brz-fs-sm-im-104 {
10616
+ font-size: 104px !important; }
10617
+ .brz .brz-fs-sm-im-105 {
10618
+ font-size: 105px !important; }
10619
+ .brz .brz-fs-sm-im-106 {
10620
+ font-size: 106px !important; }
10621
+ .brz .brz-fs-sm-im-107 {
10622
+ font-size: 107px !important; }
10623
+ .brz .brz-fs-sm-im-108 {
10624
+ font-size: 108px !important; }
10625
+ .brz .brz-fs-sm-im-109 {
10626
+ font-size: 109px !important; }
10627
+ .brz .brz-fs-sm-im-110 {
10628
+ font-size: 110px !important; }
10629
+ .brz .brz-fs-sm-im-111 {
10630
+ font-size: 111px !important; }
10631
+ .brz .brz-fs-sm-im-112 {
10632
+ font-size: 112px !important; }
10633
+ .brz .brz-fs-sm-im-113 {
10634
+ font-size: 113px !important; }
10635
+ .brz .brz-fs-sm-im-114 {
10636
+ font-size: 114px !important; }
10637
+ .brz .brz-fs-sm-im-115 {
10638
+ font-size: 115px !important; }
10639
+ .brz .brz-fs-sm-im-116 {
10640
+ font-size: 116px !important; }
10641
+ .brz .brz-fs-sm-im-117 {
10642
+ font-size: 117px !important; }
10643
+ .brz .brz-fs-sm-im-118 {
10644
+ font-size: 118px !important; }
10645
+ .brz .brz-fs-sm-im-119 {
10646
+ font-size: 119px !important; }
10647
+ .brz .brz-fs-sm-im-120 {
10648
+ font-size: 120px !important; }
10649
+ .brz .brz-fs-sm-im-121 {
10650
+ font-size: 121px !important; }
10651
+ .brz .brz-fs-sm-im-122 {
10652
+ font-size: 122px !important; }
10653
+ .brz .brz-fs-sm-im-123 {
10654
+ font-size: 123px !important; }
10655
+ .brz .brz-fs-sm-im-124 {
10656
+ font-size: 124px !important; }
10657
+ .brz .brz-fs-sm-im-125 {
10658
+ font-size: 125px !important; }
10659
+ .brz .brz-fs-sm-im-126 {
10660
+ font-size: 126px !important; }
10661
+ .brz .brz-fs-sm-im-127 {
10662
+ font-size: 127px !important; }
10663
+ .brz .brz-fs-sm-im-128 {
10664
+ font-size: 128px !important; }
10665
+ .brz .brz-fs-sm-im-129 {
10666
+ font-size: 129px !important; }
10667
+ .brz .brz-fs-sm-im-130 {
10668
+ font-size: 130px !important; }
10669
+ .brz .brz-fs-sm-im-131 {
10670
+ font-size: 131px !important; }
10671
+ .brz .brz-fs-sm-im-132 {
10672
+ font-size: 132px !important; }
10673
+ .brz .brz-fs-sm-im-133 {
10674
+ font-size: 133px !important; }
10675
+ .brz .brz-fs-sm-im-134 {
10676
+ font-size: 134px !important; }
10677
+ .brz .brz-fs-sm-im-135 {
10678
+ font-size: 135px !important; }
10679
+ .brz .brz-fs-sm-im-136 {
10680
+ font-size: 136px !important; }
10681
+ .brz .brz-fs-sm-im-137 {
10682
+ font-size: 137px !important; }
10683
+ .brz .brz-fs-sm-im-138 {
10684
+ font-size: 138px !important; }
10685
+ .brz .brz-fs-sm-im-139 {
10686
+ font-size: 139px !important; }
10687
+ .brz .brz-fs-sm-im-140 {
10688
+ font-size: 140px !important; }
10689
+ .brz .brz-fs-sm-im-141 {
10690
+ font-size: 141px !important; }
10691
+ .brz .brz-fs-sm-im-142 {
10692
+ font-size: 142px !important; }
10693
+ .brz .brz-fs-sm-im-143 {
10694
+ font-size: 143px !important; }
10695
+ .brz .brz-fs-sm-im-144 {
10696
+ font-size: 144px !important; }
10697
+ .brz .brz-fs-sm-im-145 {
10698
+ font-size: 145px !important; }
10699
+ .brz .brz-fs-sm-im-146 {
10700
+ font-size: 146px !important; }
10701
+ .brz .brz-fs-sm-im-147 {
10702
+ font-size: 147px !important; }
10703
+ .brz .brz-fs-sm-im-148 {
10704
+ font-size: 148px !important; }
10705
+ .brz .brz-fs-sm-im-149 {
10706
+ font-size: 149px !important; }
10707
+ .brz .brz-fs-sm-im-150 {
10708
+ font-size: 150px !important; }
10709
+ .brz .brz-fs-sm-im-151 {
10710
+ font-size: 151px !important; }
10711
+ .brz .brz-fs-sm-im-152 {
10712
+ font-size: 152px !important; }
10713
+ .brz .brz-fs-sm-im-153 {
10714
+ font-size: 153px !important; }
10715
+ .brz .brz-fs-sm-im-154 {
10716
+ font-size: 154px !important; }
10717
+ .brz .brz-fs-sm-im-155 {
10718
+ font-size: 155px !important; }
10719
+ .brz .brz-fs-sm-im-156 {
10720
+ font-size: 156px !important; }
10721
+ .brz .brz-fs-sm-im-157 {
10722
+ font-size: 157px !important; }
10723
+ .brz .brz-fs-sm-im-158 {
10724
+ font-size: 158px !important; }
10725
+ .brz .brz-fs-sm-im-159 {
10726
+ font-size: 159px !important; }
10727
+ .brz .brz-fs-sm-im-160 {
10728
+ font-size: 160px !important; }
10729
+ .brz .brz-fs-sm-im-161 {
10730
+ font-size: 161px !important; }
10731
+ .brz .brz-fs-sm-im-162 {
10732
+ font-size: 162px !important; }
10733
+ .brz .brz-fs-sm-im-163 {
10734
+ font-size: 163px !important; }
10735
+ .brz .brz-fs-sm-im-164 {
10736
+ font-size: 164px !important; }
10737
+ .brz .brz-fs-sm-im-165 {
10738
+ font-size: 165px !important; }
10739
+ .brz .brz-fs-sm-im-166 {
10740
+ font-size: 166px !important; }
10741
+ .brz .brz-fs-sm-im-167 {
10742
+ font-size: 167px !important; }
10743
+ .brz .brz-fs-sm-im-168 {
10744
+ font-size: 168px !important; }
10745
+ .brz .brz-fs-sm-im-169 {
10746
+ font-size: 169px !important; }
10747
+ .brz .brz-fs-sm-im-170 {
10748
+ font-size: 170px !important; }
10749
+ .brz .brz-fs-sm-im-171 {
10750
+ font-size: 171px !important; }
10751
+ .brz .brz-fs-sm-im-172 {
10752
+ font-size: 172px !important; }
10753
+ .brz .brz-fs-sm-im-173 {
10754
+ font-size: 173px !important; }
10755
+ .brz .brz-fs-sm-im-174 {
10756
+ font-size: 174px !important; }
10757
+ .brz .brz-fs-sm-im-175 {
10758
+ font-size: 175px !important; }
10759
+ .brz .brz-fs-sm-im-176 {
10760
+ font-size: 176px !important; }
10761
+ .brz .brz-fs-sm-im-177 {
10762
+ font-size: 177px !important; }
10763
+ .brz .brz-fs-sm-im-178 {
10764
+ font-size: 178px !important; }
10765
+ .brz .brz-fs-sm-im-179 {
10766
+ font-size: 179px !important; }
10767
+ .brz .brz-fs-sm-im-180 {
10768
+ font-size: 180px !important; }
10769
+ .brz .brz-fs-sm-im-181 {
10770
+ font-size: 181px !important; }
10771
+ .brz .brz-fs-sm-im-182 {
10772
+ font-size: 182px !important; }
10773
+ .brz .brz-fs-sm-im-183 {
10774
+ font-size: 183px !important; }
10775
+ .brz .brz-fs-sm-im-184 {
10776
+ font-size: 184px !important; }
10777
+ .brz .brz-fs-sm-im-185 {
10778
+ font-size: 185px !important; }
10779
+ .brz .brz-fs-sm-im-186 {
10780
+ font-size: 186px !important; }
10781
+ .brz .brz-fs-sm-im-187 {
10782
+ font-size: 187px !important; }
10783
+ .brz .brz-fs-sm-im-188 {
10784
+ font-size: 188px !important; }
10785
+ .brz .brz-fs-sm-im-189 {
10786
+ font-size: 189px !important; }
10787
+ .brz .brz-fs-sm-im-190 {
10788
+ font-size: 190px !important; }
10789
+ .brz .brz-fs-sm-im-191 {
10790
+ font-size: 191px !important; }
10791
+ .brz .brz-fs-sm-im-192 {
10792
+ font-size: 192px !important; }
10793
+ .brz .brz-fs-sm-im-193 {
10794
+ font-size: 193px !important; }
10795
+ .brz .brz-fs-sm-im-194 {
10796
+ font-size: 194px !important; }
10797
+ .brz .brz-fs-sm-im-195 {
10798
+ font-size: 195px !important; }
10799
+ .brz .brz-fs-sm-im-196 {
10800
+ font-size: 196px !important; }
10801
+ .brz .brz-fs-sm-im-197 {
10802
+ font-size: 197px !important; }
10803
+ .brz .brz-fs-sm-im-198 {
10804
+ font-size: 198px !important; }
10805
+ .brz .brz-fs-sm-im-199 {
10806
+ font-size: 199px !important; }
10807
+ .brz .brz-fs-sm-im-200 {
10808
+ font-size: 200px !important; }
10809
+ .brz .brz-fs-sm-im-201 {
10810
+ font-size: 201px !important; }
10811
+ .brz .brz-fs-sm-im-202 {
10812
+ font-size: 202px !important; }
10813
+ .brz .brz-fs-sm-im-203 {
10814
+ font-size: 203px !important; }
10815
+ .brz .brz-fs-sm-im-204 {
10816
+ font-size: 204px !important; }
10817
+ .brz .brz-fs-sm-im-205 {
10818
+ font-size: 205px !important; }
10819
+ .brz .brz-fs-sm-im-206 {
10820
+ font-size: 206px !important; }
10821
+ .brz .brz-fs-sm-im-207 {
10822
+ font-size: 207px !important; }
10823
+ .brz .brz-fs-sm-im-208 {
10824
+ font-size: 208px !important; }
10825
+ .brz .brz-fs-sm-im-209 {
10826
+ font-size: 209px !important; }
10827
+ .brz .brz-fs-sm-im-210 {
10828
+ font-size: 210px !important; }
10829
+ .brz .brz-fs-sm-im-211 {
10830
+ font-size: 211px !important; }
10831
+ .brz .brz-fs-sm-im-212 {
10832
+ font-size: 212px !important; }
10833
+ .brz .brz-fs-sm-im-213 {
10834
+ font-size: 213px !important; }
10835
+ .brz .brz-fs-sm-im-214 {
10836
+ font-size: 214px !important; }
10837
+ .brz .brz-fs-sm-im-215 {
10838
+ font-size: 215px !important; }
10839
+ .brz .brz-fs-sm-im-216 {
10840
+ font-size: 216px !important; }
10841
+ .brz .brz-fs-sm-im-217 {
10842
+ font-size: 217px !important; }
10843
+ .brz .brz-fs-sm-im-218 {
10844
+ font-size: 218px !important; }
10845
+ .brz .brz-fs-sm-im-219 {
10846
+ font-size: 219px !important; }
10847
+ .brz .brz-fs-sm-im-220 {
10848
+ font-size: 220px !important; }
10849
+ .brz .brz-fs-sm-im-221 {
10850
+ font-size: 221px !important; }
10851
+ .brz .brz-fs-sm-im-222 {
10852
+ font-size: 222px !important; }
10853
+ .brz .brz-fs-sm-im-223 {
10854
+ font-size: 223px !important; }
10855
+ .brz .brz-fs-sm-im-224 {
10856
+ font-size: 224px !important; }
10857
+ .brz .brz-fs-sm-im-225 {
10858
+ font-size: 225px !important; }
10859
+ .brz .brz-fs-sm-im-226 {
10860
+ font-size: 226px !important; }
10861
+ .brz .brz-fs-sm-im-227 {
10862
+ font-size: 227px !important; }
10863
+ .brz .brz-fs-sm-im-228 {
10864
+ font-size: 228px !important; }
10865
+ .brz .brz-fs-sm-im-229 {
10866
+ font-size: 229px !important; }
10867
+ .brz .brz-fs-sm-im-230 {
10868
+ font-size: 230px !important; }
10869
+ .brz .brz-fs-sm-im-231 {
10870
+ font-size: 231px !important; }
10871
+ .brz .brz-fs-sm-im-232 {
10872
+ font-size: 232px !important; }
10873
+ .brz .brz-fs-sm-im-233 {
10874
+ font-size: 233px !important; }
10875
+ .brz .brz-fs-sm-im-234 {
10876
+ font-size: 234px !important; }
10877
+ .brz .brz-fs-sm-im-235 {
10878
+ font-size: 235px !important; }
10879
+ .brz .brz-fs-sm-im-236 {
10880
+ font-size: 236px !important; }
10881
+ .brz .brz-fs-sm-im-237 {
10882
+ font-size: 237px !important; }
10883
+ .brz .brz-fs-sm-im-238 {
10884
+ font-size: 238px !important; }
10885
+ .brz .brz-fs-sm-im-239 {
10886
+ font-size: 239px !important; }
10887
+ .brz .brz-fs-sm-im-240 {
10888
+ font-size: 240px !important; }
10889
+ .brz .brz-fs-sm-im-241 {
10890
+ font-size: 241px !important; }
10891
+ .brz .brz-fs-sm-im-242 {
10892
+ font-size: 242px !important; }
10893
+ .brz .brz-fs-sm-im-243 {
10894
+ font-size: 243px !important; }
10895
+ .brz .brz-fs-sm-im-244 {
10896
+ font-size: 244px !important; }
10897
+ .brz .brz-fs-sm-im-245 {
10898
+ font-size: 245px !important; }
10899
+ .brz .brz-fs-sm-im-246 {
10900
+ font-size: 246px !important; }
10901
+ .brz .brz-fs-sm-im-247 {
10902
+ font-size: 247px !important; }
10903
+ .brz .brz-fs-sm-im-248 {
10904
+ font-size: 248px !important; }
10905
+ .brz .brz-fs-sm-im-249 {
10906
+ font-size: 249px !important; }
10907
+ .brz .brz-fs-sm-im-250 {
10908
+ font-size: 250px !important; }
10909
+ .brz .brz-fs-sm-im-251 {
10910
+ font-size: 251px !important; }
10911
+ .brz .brz-fs-sm-im-252 {
10912
+ font-size: 252px !important; }
10913
+ .brz .brz-fs-sm-im-253 {
10914
+ font-size: 253px !important; }
10915
+ .brz .brz-fs-sm-im-254 {
10916
+ font-size: 254px !important; }
10917
+ .brz .brz-fs-sm-im-255 {
10918
+ font-size: 255px !important; }
10919
+ .brz .brz-fs-sm-im-256 {
10920
+ font-size: 256px !important; }
10921
+ .brz .brz-fs-sm-im-257 {
10922
+ font-size: 257px !important; }
10923
+ .brz .brz-fs-sm-im-258 {
10924
+ font-size: 258px !important; }
10925
+ .brz .brz-fs-sm-im-259 {
10926
+ font-size: 259px !important; }
10927
+ .brz .brz-fs-sm-im-260 {
10928
+ font-size: 260px !important; }
10929
+ .brz .brz-fs-sm-im-261 {
10930
+ font-size: 261px !important; }
10931
+ .brz .brz-fs-sm-im-262 {
10932
+ font-size: 262px !important; }
10933
+ .brz .brz-fs-sm-im-263 {
10934
+ font-size: 263px !important; }
10935
+ .brz .brz-fs-sm-im-264 {
10936
+ font-size: 264px !important; }
10937
+ .brz .brz-fs-sm-im-265 {
10938
+ font-size: 265px !important; }
10939
+ .brz .brz-fs-sm-im-266 {
10940
+ font-size: 266px !important; }
10941
+ .brz .brz-fs-sm-im-267 {
10942
+ font-size: 267px !important; }
10943
+ .brz .brz-fs-sm-im-268 {
10944
+ font-size: 268px !important; }
10945
+ .brz .brz-fs-sm-im-269 {
10946
+ font-size: 269px !important; }
10947
+ .brz .brz-fs-sm-im-270 {
10948
+ font-size: 270px !important; }
10949
+ .brz .brz-fs-sm-im-271 {
10950
+ font-size: 271px !important; }
10951
+ .brz .brz-fs-sm-im-272 {
10952
+ font-size: 272px !important; }
10953
+ .brz .brz-fs-sm-im-273 {
10954
+ font-size: 273px !important; }
10955
+ .brz .brz-fs-sm-im-274 {
10956
+ font-size: 274px !important; }
10957
+ .brz .brz-fs-sm-im-275 {
10958
+ font-size: 275px !important; }
10959
+ .brz .brz-fs-sm-im-276 {
10960
+ font-size: 276px !important; }
10961
+ .brz .brz-fs-sm-im-277 {
10962
+ font-size: 277px !important; }
10963
+ .brz .brz-fs-sm-im-278 {
10964
+ font-size: 278px !important; }
10965
+ .brz .brz-fs-sm-im-279 {
10966
+ font-size: 279px !important; }
10967
+ .brz .brz-fs-sm-im-280 {
10968
+ font-size: 280px !important; }
10969
+ .brz .brz-fs-sm-im-281 {
10970
+ font-size: 281px !important; }
10971
+ .brz .brz-fs-sm-im-282 {
10972
+ font-size: 282px !important; }
10973
+ .brz .brz-fs-sm-im-283 {
10974
+ font-size: 283px !important; }
10975
+ .brz .brz-fs-sm-im-284 {
10976
+ font-size: 284px !important; }
10977
+ .brz .brz-fs-sm-im-285 {
10978
+ font-size: 285px !important; }
10979
+ .brz .brz-fs-sm-im-286 {
10980
+ font-size: 286px !important; }
10981
+ .brz .brz-fs-sm-im-287 {
10982
+ font-size: 287px !important; }
10983
+ .brz .brz-fs-sm-im-288 {
10984
+ font-size: 288px !important; }
10985
+ .brz .brz-fs-sm-im-289 {
10986
+ font-size: 289px !important; }
10987
+ .brz .brz-fs-sm-im-290 {
10988
+ font-size: 290px !important; }
10989
+ .brz .brz-fs-sm-im-291 {
10990
+ font-size: 291px !important; }
10991
+ .brz .brz-fs-sm-im-292 {
10992
+ font-size: 292px !important; }
10993
+ .brz .brz-fs-sm-im-293 {
10994
+ font-size: 293px !important; }
10995
+ .brz .brz-fs-sm-im-294 {
10996
+ font-size: 294px !important; }
10997
+ .brz .brz-fs-sm-im-295 {
10998
+ font-size: 295px !important; }
10999
+ .brz .brz-fs-sm-im-296 {
11000
+ font-size: 296px !important; }
11001
+ .brz .brz-fs-sm-im-297 {
11002
+ font-size: 297px !important; }
11003
+ .brz .brz-fs-sm-im-298 {
11004
+ font-size: 298px !important; }
11005
+ .brz .brz-fs-sm-im-299 {
11006
+ font-size: 299px !important; }
11007
+ .brz .brz-fs-sm-im-300 {
11008
+ font-size: 300px !important; }
11009
+ .brz .brz-lh-sm-im-1 {
11010
+ line-height: 1em !important; }
11011
+ .brz .brz-lh-sm-im-1_1 {
11012
+ line-height: 1.1em !important; }
11013
+ .brz .brz-lh-sm-im-1_2 {
11014
+ line-height: 1.2em !important; }
11015
+ .brz .brz-lh-sm-im-1_3 {
11016
+ line-height: 1.3em !important; }
11017
+ .brz .brz-lh-sm-im-1_4 {
11018
+ line-height: 1.4em !important; }
11019
+ .brz .brz-lh-sm-im-1_5 {
11020
+ line-height: 1.5em !important; }
11021
+ .brz .brz-lh-sm-im-1_6 {
11022
+ line-height: 1.6em !important; }
11023
+ .brz .brz-lh-sm-im-1_7 {
11024
+ line-height: 1.7em !important; }
11025
+ .brz .brz-lh-sm-im-1_8 {
11026
+ line-height: 1.8em !important; }
11027
+ .brz .brz-lh-sm-im-1_9 {
11028
+ line-height: 1.9em !important; }
11029
+ .brz .brz-lh-sm-im-2 {
11030
+ line-height: 2em !important; }
11031
+ .brz .brz-lh-sm-im-2_1 {
11032
+ line-height: 2.1em !important; }
11033
+ .brz .brz-lh-sm-im-2_2 {
11034
+ line-height: 2.2em !important; }
11035
+ .brz .brz-lh-sm-im-2_3 {
11036
+ line-height: 2.3em !important; }
11037
+ .brz .brz-lh-sm-im-2_4 {
11038
+ line-height: 2.4em !important; }
11039
+ .brz .brz-lh-sm-im-2_5 {
11040
+ line-height: 2.5em !important; }
11041
+ .brz .brz-lh-sm-im-2_6 {
11042
+ line-height: 2.6em !important; }
11043
+ .brz .brz-lh-sm-im-2_7 {
11044
+ line-height: 2.7em !important; }
11045
+ .brz .brz-lh-sm-im-2_8 {
11046
+ line-height: 2.8em !important; }
11047
+ .brz .brz-lh-sm-im-2_9 {
11048
+ line-height: 2.9em !important; }
11049
+ .brz .brz-lh-sm-im-3 {
11050
+ line-height: 3em !important; }
11051
+ .brz .brz-lh-sm-im-3_1 {
11052
+ line-height: 3.1em !important; }
11053
+ .brz .brz-lh-sm-im-3_2 {
11054
+ line-height: 3.2em !important; }
11055
+ .brz .brz-lh-sm-im-3_3 {
11056
+ line-height: 3.3em !important; }
11057
+ .brz .brz-lh-sm-im-3_4 {
11058
+ line-height: 3.4em !important; }
11059
+ .brz .brz-lh-sm-im-3_5 {
11060
+ line-height: 3.5em !important; }
11061
+ .brz .brz-lh-sm-im-3_6 {
11062
+ line-height: 3.6em !important; }
11063
+ .brz .brz-lh-sm-im-3_7 {
11064
+ line-height: 3.7em !important; }
11065
+ .brz .brz-lh-sm-im-3_8 {
11066
+ line-height: 3.8em !important; }
11067
+ .brz .brz-lh-sm-im-3_9 {
11068
+ line-height: 3.9em !important; }
11069
+ .brz .brz-lh-sm-im-4 {
11070
+ line-height: 4em !important; }
11071
+ .brz .brz-lh-sm-im-4_1 {
11072
+ line-height: 4.1em !important; }
11073
+ .brz .brz-lh-sm-im-4_2 {
11074
+ line-height: 4.2em !important; }
11075
+ .brz .brz-lh-sm-im-4_3 {
11076
+ line-height: 4.3em !important; }
11077
+ .brz .brz-lh-sm-im-4_4 {
11078
+ line-height: 4.4em !important; }
11079
+ .brz .brz-lh-sm-im-4_5 {
11080
+ line-height: 4.5em !important; }
11081
+ .brz .brz-lh-sm-im-4_6 {
11082
+ line-height: 4.6em !important; }
11083
+ .brz .brz-lh-sm-im-4_7 {
11084
+ line-height: 4.7em !important; }
11085
+ .brz .brz-lh-sm-im-4_8 {
11086
+ line-height: 4.8em !important; }
11087
+ .brz .brz-lh-sm-im-4_9 {
11088
+ line-height: 4.9em !important; }
11089
+ .brz .brz-lh-sm-im-5 {
11090
+ line-height: 5em !important; }
11091
+ .brz .brz-lh-sm-im-5_1 {
11092
+ line-height: 5.1em !important; }
11093
+ .brz .brz-lh-sm-im-5_2 {
11094
+ line-height: 5.2em !important; }
11095
+ .brz .brz-lh-sm-im-5_3 {
11096
+ line-height: 5.3em !important; }
11097
+ .brz .brz-lh-sm-im-5_4 {
11098
+ line-height: 5.4em !important; }
11099
+ .brz .brz-lh-sm-im-5_5 {
11100
+ line-height: 5.5em !important; }
11101
+ .brz .brz-lh-sm-im-5_6 {
11102
+ line-height: 5.6em !important; }
11103
+ .brz .brz-lh-sm-im-5_7 {
11104
+ line-height: 5.7em !important; }
11105
+ .brz .brz-lh-sm-im-5_8 {
11106
+ line-height: 5.8em !important; }
11107
+ .brz .brz-lh-sm-im-5_9 {
11108
+ line-height: 5.9em !important; }
11109
+ .brz .brz-fw-sm-im-100 {
11110
+ font-weight: 100 !important; }
11111
+ .brz .brz-fw-sm-im-200 {
11112
+ font-weight: 200 !important; }
11113
+ .brz .brz-fw-sm-im-300 {
11114
+ font-weight: 300 !important; }
11115
+ .brz .brz-fw-sm-im-400 {
11116
+ font-weight: 400 !important; }
11117
+ .brz .brz-fw-sm-im-500 {
11118
+ font-weight: 500 !important; }
11119
+ .brz .brz-fw-sm-im-600 {
11120
+ font-weight: 600 !important; }
11121
+ .brz .brz-fw-sm-im-700 {
11122
+ font-weight: 700 !important; }
11123
+ .brz .brz-fw-sm-im-800 {
11124
+ font-weight: 800 !important; }
11125
+ .brz .brz-fw-sm-im-900 {
11126
+ font-weight: 900 !important; }
11127
+ .brz .brz-fw-sm-im-1000 {
11128
+ font-weight: 1000 !important; }
11129
+ .brz .brz-fw-sm-im-1100 {
11130
+ font-weight: 1100 !important; }
11131
+ .brz .brz-fw-sm-im-1200 {
11132
+ font-weight: 1200 !important; }
11133
+ .brz .brz-fw-sm-im-1300 {
11134
+ font-weight: 1300 !important; }
11135
+ .brz .brz-fw-sm-im-1400 {
11136
+ font-weight: 1400 !important; }
11137
+ .brz .brz-fw-sm-im-1500 {
11138
+ font-weight: 1500 !important; }
11139
+ .brz .brz-ls-sm-im-m_5 {
11140
+ letter-spacing: -5px !important; }
11141
+ .brz .brz-ls-sm-im-m_5_5 {
11142
+ letter-spacing: -5.5px !important; }
11143
+ .brz .brz-ls-sm-im-m_4 {
11144
+ letter-spacing: -4px !important; }
11145
+ .brz .brz-ls-sm-im-m_4_5 {
11146
+ letter-spacing: -4.5px !important; }
11147
+ .brz .brz-ls-sm-im-m_3 {
11148
+ letter-spacing: -3px !important; }
11149
+ .brz .brz-ls-sm-im-m_3_5 {
11150
+ letter-spacing: -3.5px !important; }
11151
+ .brz .brz-ls-sm-im-m_2 {
11152
+ letter-spacing: -2px !important; }
11153
+ .brz .brz-ls-sm-im-m_2_5 {
11154
+ letter-spacing: -2.5px !important; }
11155
+ .brz .brz-ls-sm-im-m_1 {
11156
+ letter-spacing: -1px !important; }
11157
+ .brz .brz-ls-sm-im-m_1_5 {
11158
+ letter-spacing: -1.5px !important; }
11159
+ .brz .brz-ls-sm-im-m_0 {
11160
+ letter-spacing: 0px !important; }
11161
+ .brz .brz-ls-sm-im-m_0_5 {
11162
+ letter-spacing: -0.5px !important; }
11163
+ .brz .brz-ls-sm-im-0 {
11164
+ letter-spacing: 0px !important; }
11165
+ .brz .brz-ls-sm-im-0_5 {
11166
+ letter-spacing: 0.5px !important; }
11167
+ .brz .brz-ls-sm-im-1 {
11168
+ letter-spacing: 1px !important; }
11169
+ .brz .brz-ls-sm-im-1_5 {
11170
+ letter-spacing: 1.5px !important; }
11171
+ .brz .brz-ls-sm-im-2 {
11172
+ letter-spacing: 2px !important; }
11173
+ .brz .brz-ls-sm-im-2_5 {
11174
+ letter-spacing: 2.5px !important; }
11175
+ .brz .brz-ls-sm-im-3 {
11176
+ letter-spacing: 3px !important; }
11177
+ .brz .brz-ls-sm-im-3_5 {
11178
+ letter-spacing: 3.5px !important; }
11179
+ .brz .brz-ls-sm-im-4 {
11180
+ letter-spacing: 4px !important; }
11181
+ .brz .brz-ls-sm-im-4_5 {
11182
+ letter-spacing: 4.5px !important; }
11183
+ .brz .brz-ls-sm-im-5 {
11184
+ letter-spacing: 5px !important; }
11185
+ .brz .brz-ls-sm-im-5_5 {
11186
+ letter-spacing: 5.5px !important; }
11187
+ .brz .brz-ls-sm-im-6 {
11188
+ letter-spacing: 6px !important; }
11189
+ .brz .brz-ls-sm-im-6_5 {
11190
+ letter-spacing: 6.5px !important; }
11191
+ .brz .brz-ls-sm-im-7 {
11192
+ letter-spacing: 7px !important; }
11193
+ .brz .brz-ls-sm-im-7_5 {
11194
+ letter-spacing: 7.5px !important; }
11195
+ .brz .brz-ls-sm-im-8 {
11196
+ letter-spacing: 8px !important; }
11197
+ .brz .brz-ls-sm-im-8_5 {
11198
+ letter-spacing: 8.5px !important; }
11199
+ .brz .brz-ls-sm-im-9 {
11200
+ letter-spacing: 9px !important; }
11201
+ .brz .brz-ls-sm-im-9_5 {
11202
+ letter-spacing: 9.5px !important; }
11203
+ .brz .brz-ls-sm-im-10 {
11204
+ letter-spacing: 10px !important; }
11205
+ .brz .brz-ls-sm-im-10_5 {
11206
+ letter-spacing: 10.5px !important; }
11207
+ .brz .brz-ls-sm-im-11 {
11208
+ letter-spacing: 11px !important; }
11209
+ .brz .brz-ls-sm-im-11_5 {
11210
+ letter-spacing: 11.5px !important; }
11211
+ .brz .brz-ls-sm-im-12 {
11212
+ letter-spacing: 12px !important; }
11213
+ .brz .brz-ls-sm-im-12_5 {
11214
+ letter-spacing: 12.5px !important; }
11215
+ .brz .brz-ls-sm-im-13 {
11216
+ letter-spacing: 13px !important; }
11217
+ .brz .brz-ls-sm-im-13_5 {
11218
+ letter-spacing: 13.5px !important; }
11219
+ .brz .brz-ls-sm-im-14 {
11220
+ letter-spacing: 14px !important; }
11221
+ .brz .brz-ls-sm-im-14_5 {
11222
+ letter-spacing: 14.5px !important; }
11223
+ .brz .brz-ls-sm-im-15 {
11224
+ letter-spacing: 15px !important; }
11225
+ .brz .brz-ls-sm-im-15_5 {
11226
+ letter-spacing: 15.5px !important; } }
11227
+ @media (min-width: 992px) {
11228
+ .brz .brz-fs-lg-6 {
11229
+ font-size: 6px !important; }
11230
+ .brz .brz-fs-lg-7 {
11231
+ font-size: 7px !important; }
11232
+ .brz .brz-fs-lg-8 {
11233
+ font-size: 8px !important; }
11234
+ .brz .brz-fs-lg-9 {
11235
+ font-size: 9px !important; }
11236
+ .brz .brz-fs-lg-10 {
11237
+ font-size: 10px !important; }
11238
+ .brz .brz-fs-lg-11 {
11239
+ font-size: 11px !important; }
11240
+ .brz .brz-fs-lg-12 {
11241
+ font-size: 12px !important; }
11242
+ .brz .brz-fs-lg-13 {
11243
+ font-size: 13px !important; }
11244
+ .brz .brz-fs-lg-14 {
11245
+ font-size: 14px !important; }
11246
+ .brz .brz-fs-lg-15 {
11247
+ font-size: 15px !important; }
11248
+ .brz .brz-fs-lg-16 {
11249
+ font-size: 16px !important; }
11250
+ .brz .brz-fs-lg-17 {
11251
+ font-size: 17px !important; }
11252
+ .brz .brz-fs-lg-18 {
11253
+ font-size: 18px !important; }
11254
+ .brz .brz-fs-lg-19 {
11255
+ font-size: 19px !important; }
11256
+ .brz .brz-fs-lg-20 {
11257
+ font-size: 20px !important; }
11258
+ .brz .brz-fs-lg-21 {
11259
+ font-size: 21px !important; }
11260
+ .brz .brz-fs-lg-22 {
11261
+ font-size: 22px !important; }
11262
+ .brz .brz-fs-lg-23 {
11263
+ font-size: 23px !important; }
11264
+ .brz .brz-fs-lg-24 {
11265
+ font-size: 24px !important; }
11266
+ .brz .brz-fs-lg-25 {
11267
+ font-size: 25px !important; }
11268
+ .brz .brz-fs-lg-26 {
11269
+ font-size: 26px !important; }
11270
+ .brz .brz-fs-lg-27 {
11271
+ font-size: 27px !important; }
11272
+ .brz .brz-fs-lg-28 {
11273
+ font-size: 28px !important; }
11274
+ .brz .brz-fs-lg-29 {
11275
+ font-size: 29px !important; }
11276
+ .brz .brz-fs-lg-30 {
11277
+ font-size: 30px !important; }
11278
+ .brz .brz-fs-lg-31 {
11279
+ font-size: 31px !important; }
11280
+ .brz .brz-fs-lg-32 {
11281
+ font-size: 32px !important; }
11282
+ .brz .brz-fs-lg-33 {
11283
+ font-size: 33px !important; }
11284
+ .brz .brz-fs-lg-34 {
11285
+ font-size: 34px !important; }
11286
+ .brz .brz-fs-lg-35 {
11287
+ font-size: 35px !important; }
11288
+ .brz .brz-fs-lg-36 {
11289
+ font-size: 36px !important; }
11290
+ .brz .brz-fs-lg-37 {
11291
+ font-size: 37px !important; }
11292
+ .brz .brz-fs-lg-38 {
11293
+ font-size: 38px !important; }
11294
+ .brz .brz-fs-lg-39 {
11295
+ font-size: 39px !important; }
11296
+ .brz .brz-fs-lg-40 {
11297
+ font-size: 40px !important; }
11298
+ .brz .brz-fs-lg-41 {
11299
+ font-size: 41px !important; }
11300
+ .brz .brz-fs-lg-42 {
11301
+ font-size: 42px !important; }
11302
+ .brz .brz-fs-lg-43 {
11303
+ font-size: 43px !important; }
11304
+ .brz .brz-fs-lg-44 {
11305
+ font-size: 44px !important; }
11306
+ .brz .brz-fs-lg-45 {
11307
+ font-size: 45px !important; }
11308
+ .brz .brz-fs-lg-46 {
11309
+ font-size: 46px !important; }
11310
+ .brz .brz-fs-lg-47 {
11311
+ font-size: 47px !important; }
11312
+ .brz .brz-fs-lg-48 {
11313
+ font-size: 48px !important; }
11314
+ .brz .brz-fs-lg-49 {
11315
+ font-size: 49px !important; }
11316
+ .brz .brz-fs-lg-50 {
11317
+ font-size: 50px !important; }
11318
+ .brz .brz-fs-lg-51 {
11319
+ font-size: 51px !important; }
11320
+ .brz .brz-fs-lg-52 {
11321
+ font-size: 52px !important; }
11322
+ .brz .brz-fs-lg-53 {
11323
+ font-size: 53px !important; }
11324
+ .brz .brz-fs-lg-54 {
11325
+ font-size: 54px !important; }
11326
+ .brz .brz-fs-lg-55 {
11327
+ font-size: 55px !important; }
11328
+ .brz .brz-fs-lg-56 {
11329
+ font-size: 56px !important; }
11330
+ .brz .brz-fs-lg-57 {
11331
+ font-size: 57px !important; }
11332
+ .brz .brz-fs-lg-58 {
11333
+ font-size: 58px !important; }
11334
+ .brz .brz-fs-lg-59 {
11335
+ font-size: 59px !important; }
11336
+ .brz .brz-fs-lg-60 {
11337
+ font-size: 60px !important; }
11338
+ .brz .brz-fs-lg-61 {
11339
+ font-size: 61px !important; }
11340
+ .brz .brz-fs-lg-62 {
11341
+ font-size: 62px !important; }
11342
+ .brz .brz-fs-lg-63 {
11343
+ font-size: 63px !important; }
11344
+ .brz .brz-fs-lg-64 {
11345
+ font-size: 64px !important; }
11346
+ .brz .brz-fs-lg-65 {
11347
+ font-size: 65px !important; }
11348
+ .brz .brz-fs-lg-66 {
11349
+ font-size: 66px !important; }
11350
+ .brz .brz-fs-lg-67 {
11351
+ font-size: 67px !important; }
11352
+ .brz .brz-fs-lg-68 {
11353
+ font-size: 68px !important; }
11354
+ .brz .brz-fs-lg-69 {
11355
+ font-size: 69px !important; }
11356
+ .brz .brz-fs-lg-70 {
11357
+ font-size: 70px !important; }
11358
+ .brz .brz-fs-lg-71 {
11359
+ font-size: 71px !important; }
11360
+ .brz .brz-fs-lg-72 {
11361
+ font-size: 72px !important; }
11362
+ .brz .brz-fs-lg-73 {
11363
+ font-size: 73px !important; }
11364
+ .brz .brz-fs-lg-74 {
11365
+ font-size: 74px !important; }
11366
+ .brz .brz-fs-lg-75 {
11367
+ font-size: 75px !important; }
11368
+ .brz .brz-fs-lg-76 {
11369
+ font-size: 76px !important; }
11370
+ .brz .brz-fs-lg-77 {
11371
+ font-size: 77px !important; }
11372
+ .brz .brz-fs-lg-78 {
11373
+ font-size: 78px !important; }
11374
+ .brz .brz-fs-lg-79 {
11375
+ font-size: 79px !important; }
11376
+ .brz .brz-fs-lg-80 {
11377
+ font-size: 80px !important; }
11378
+ .brz .brz-fs-lg-81 {
11379
+ font-size: 81px !important; }
11380
+ .brz .brz-fs-lg-82 {
11381
+ font-size: 82px !important; }
11382
+ .brz .brz-fs-lg-83 {
11383
+ font-size: 83px !important; }
11384
+ .brz .brz-fs-lg-84 {
11385
+ font-size: 84px !important; }
11386
+ .brz .brz-fs-lg-85 {
11387
+ font-size: 85px !important; }
11388
+ .brz .brz-fs-lg-86 {
11389
+ font-size: 86px !important; }
11390
+ .brz .brz-fs-lg-87 {
11391
+ font-size: 87px !important; }
11392
+ .brz .brz-fs-lg-88 {
11393
+ font-size: 88px !important; }
11394
+ .brz .brz-fs-lg-89 {
11395
+ font-size: 89px !important; }
11396
+ .brz .brz-fs-lg-90 {
11397
+ font-size: 90px !important; }
11398
+ .brz .brz-fs-lg-91 {
11399
+ font-size: 91px !important; }
11400
+ .brz .brz-fs-lg-92 {
11401
+ font-size: 92px !important; }
11402
+ .brz .brz-fs-lg-93 {
11403
+ font-size: 93px !important; }
11404
+ .brz .brz-fs-lg-94 {
11405
+ font-size: 94px !important; }
11406
+ .brz .brz-fs-lg-95 {
11407
+ font-size: 95px !important; }
11408
+ .brz .brz-fs-lg-96 {
11409
+ font-size: 96px !important; }
11410
+ .brz .brz-fs-lg-97 {
11411
+ font-size: 97px !important; }
11412
+ .brz .brz-fs-lg-98 {
11413
+ font-size: 98px !important; }
11414
+ .brz .brz-fs-lg-99 {
11415
+ font-size: 99px !important; }
11416
+ .brz .brz-fs-lg-100 {
11417
+ font-size: 100px !important; }
11418
+ .brz .brz-fs-lg-101 {
11419
+ font-size: 101px !important; }
11420
+ .brz .brz-fs-lg-102 {
11421
+ font-size: 102px !important; }
11422
+ .brz .brz-fs-lg-103 {
11423
+ font-size: 103px !important; }
11424
+ .brz .brz-fs-lg-104 {
11425
+ font-size: 104px !important; }
11426
+ .brz .brz-fs-lg-105 {
11427
+ font-size: 105px !important; }
11428
+ .brz .brz-fs-lg-106 {
11429
+ font-size: 106px !important; }
11430
+ .brz .brz-fs-lg-107 {
11431
+ font-size: 107px !important; }
11432
+ .brz .brz-fs-lg-108 {
11433
+ font-size: 108px !important; }
11434
+ .brz .brz-fs-lg-109 {
11435
+ font-size: 109px !important; }
11436
+ .brz .brz-fs-lg-110 {
11437
+ font-size: 110px !important; }
11438
+ .brz .brz-fs-lg-111 {
11439
+ font-size: 111px !important; }
11440
+ .brz .brz-fs-lg-112 {
11441
+ font-size: 112px !important; }
11442
+ .brz .brz-fs-lg-113 {
11443
+ font-size: 113px !important; }
11444
+ .brz .brz-fs-lg-114 {
11445
+ font-size: 114px !important; }
11446
+ .brz .brz-fs-lg-115 {
11447
+ font-size: 115px !important; }
11448
+ .brz .brz-fs-lg-116 {
11449
+ font-size: 116px !important; }
11450
+ .brz .brz-fs-lg-117 {
11451
+ font-size: 117px !important; }
11452
+ .brz .brz-fs-lg-118 {
11453
+ font-size: 118px !important; }
11454
+ .brz .brz-fs-lg-119 {
11455
+ font-size: 119px !important; }
11456
+ .brz .brz-fs-lg-120 {
11457
+ font-size: 120px !important; }
11458
+ .brz .brz-fs-lg-121 {
11459
+ font-size: 121px !important; }
11460
+ .brz .brz-fs-lg-122 {
11461
+ font-size: 122px !important; }
11462
+ .brz .brz-fs-lg-123 {
11463
+ font-size: 123px !important; }
11464
+ .brz .brz-fs-lg-124 {
11465
+ font-size: 124px !important; }
11466
+ .brz .brz-fs-lg-125 {
11467
+ font-size: 125px !important; }
11468
+ .brz .brz-fs-lg-126 {
11469
+ font-size: 126px !important; }
11470
+ .brz .brz-fs-lg-127 {
11471
+ font-size: 127px !important; }
11472
+ .brz .brz-fs-lg-128 {
11473
+ font-size: 128px !important; }
11474
+ .brz .brz-fs-lg-129 {
11475
+ font-size: 129px !important; }
11476
+ .brz .brz-fs-lg-130 {
11477
+ font-size: 130px !important; }
11478
+ .brz .brz-fs-lg-131 {
11479
+ font-size: 131px !important; }
11480
+ .brz .brz-fs-lg-132 {
11481
+ font-size: 132px !important; }
11482
+ .brz .brz-fs-lg-133 {
11483
+ font-size: 133px !important; }
11484
+ .brz .brz-fs-lg-134 {
11485
+ font-size: 134px !important; }
11486
+ .brz .brz-fs-lg-135 {
11487
+ font-size: 135px !important; }
11488
+ .brz .brz-fs-lg-136 {
11489
+ font-size: 136px !important; }
11490
+ .brz .brz-fs-lg-137 {
11491
+ font-size: 137px !important; }
11492
+ .brz .brz-fs-lg-138 {
11493
+ font-size: 138px !important; }
11494
+ .brz .brz-fs-lg-139 {
11495
+ font-size: 139px !important; }
11496
+ .brz .brz-fs-lg-140 {
11497
+ font-size: 140px !important; }
11498
+ .brz .brz-fs-lg-141 {
11499
+ font-size: 141px !important; }
11500
+ .brz .brz-fs-lg-142 {
11501
+ font-size: 142px !important; }
11502
+ .brz .brz-fs-lg-143 {
11503
+ font-size: 143px !important; }
11504
+ .brz .brz-fs-lg-144 {
11505
+ font-size: 144px !important; }
11506
+ .brz .brz-fs-lg-145 {
11507
+ font-size: 145px !important; }
11508
+ .brz .brz-fs-lg-146 {
11509
+ font-size: 146px !important; }
11510
+ .brz .brz-fs-lg-147 {
11511
+ font-size: 147px !important; }
11512
+ .brz .brz-fs-lg-148 {
11513
+ font-size: 148px !important; }
11514
+ .brz .brz-fs-lg-149 {
11515
+ font-size: 149px !important; }
11516
+ .brz .brz-fs-lg-150 {
11517
+ font-size: 150px !important; }
11518
+ .brz .brz-fs-lg-151 {
11519
+ font-size: 151px !important; }
11520
+ .brz .brz-fs-lg-152 {
11521
+ font-size: 152px !important; }
11522
+ .brz .brz-fs-lg-153 {
11523
+ font-size: 153px !important; }
11524
+ .brz .brz-fs-lg-154 {
11525
+ font-size: 154px !important; }
11526
+ .brz .brz-fs-lg-155 {
11527
+ font-size: 155px !important; }
11528
+ .brz .brz-fs-lg-156 {
11529
+ font-size: 156px !important; }
11530
+ .brz .brz-fs-lg-157 {
11531
+ font-size: 157px !important; }
11532
+ .brz .brz-fs-lg-158 {
11533
+ font-size: 158px !important; }
11534
+ .brz .brz-fs-lg-159 {
11535
+ font-size: 159px !important; }
11536
+ .brz .brz-fs-lg-160 {
11537
+ font-size: 160px !important; }
11538
+ .brz .brz-fs-lg-161 {
11539
+ font-size: 161px !important; }
11540
+ .brz .brz-fs-lg-162 {
11541
+ font-size: 162px !important; }
11542
+ .brz .brz-fs-lg-163 {
11543
+ font-size: 163px !important; }
11544
+ .brz .brz-fs-lg-164 {
11545
+ font-size: 164px !important; }
11546
+ .brz .brz-fs-lg-165 {
11547
+ font-size: 165px !important; }
11548
+ .brz .brz-fs-lg-166 {
11549
+ font-size: 166px !important; }
11550
+ .brz .brz-fs-lg-167 {
11551
+ font-size: 167px !important; }
11552
+ .brz .brz-fs-lg-168 {
11553
+ font-size: 168px !important; }
11554
+ .brz .brz-fs-lg-169 {
11555
+ font-size: 169px !important; }
11556
+ .brz .brz-fs-lg-170 {
11557
+ font-size: 170px !important; }
11558
+ .brz .brz-fs-lg-171 {
11559
+ font-size: 171px !important; }
11560
+ .brz .brz-fs-lg-172 {
11561
+ font-size: 172px !important; }
11562
+ .brz .brz-fs-lg-173 {
11563
+ font-size: 173px !important; }
11564
+ .brz .brz-fs-lg-174 {
11565
+ font-size: 174px !important; }
11566
+ .brz .brz-fs-lg-175 {
11567
+ font-size: 175px !important; }
11568
+ .brz .brz-fs-lg-176 {
11569
+ font-size: 176px !important; }
11570
+ .brz .brz-fs-lg-177 {
11571
+ font-size: 177px !important; }
11572
+ .brz .brz-fs-lg-178 {
11573
+ font-size: 178px !important; }
11574
+ .brz .brz-fs-lg-179 {
11575
+ font-size: 179px !important; }
11576
+ .brz .brz-fs-lg-180 {
11577
+ font-size: 180px !important; }
11578
+ .brz .brz-fs-lg-181 {
11579
+ font-size: 181px !important; }
11580
+ .brz .brz-fs-lg-182 {
11581
+ font-size: 182px !important; }
11582
+ .brz .brz-fs-lg-183 {
11583
+ font-size: 183px !important; }
11584
+ .brz .brz-fs-lg-184 {
11585
+ font-size: 184px !important; }
11586
+ .brz .brz-fs-lg-185 {
11587
+ font-size: 185px !important; }
11588
+ .brz .brz-fs-lg-186 {
11589
+ font-size: 186px !important; }
11590
+ .brz .brz-fs-lg-187 {
11591
+ font-size: 187px !important; }
11592
+ .brz .brz-fs-lg-188 {
11593
+ font-size: 188px !important; }
11594
+ .brz .brz-fs-lg-189 {
11595
+ font-size: 189px !important; }
11596
+ .brz .brz-fs-lg-190 {
11597
+ font-size: 190px !important; }
11598
+ .brz .brz-fs-lg-191 {
11599
+ font-size: 191px !important; }
11600
+ .brz .brz-fs-lg-192 {
11601
+ font-size: 192px !important; }
11602
+ .brz .brz-fs-lg-193 {
11603
+ font-size: 193px !important; }
11604
+ .brz .brz-fs-lg-194 {
11605
+ font-size: 194px !important; }
11606
+ .brz .brz-fs-lg-195 {
11607
+ font-size: 195px !important; }
11608
+ .brz .brz-fs-lg-196 {
11609
+ font-size: 196px !important; }
11610
+ .brz .brz-fs-lg-197 {
11611
+ font-size: 197px !important; }
11612
+ .brz .brz-fs-lg-198 {
11613
+ font-size: 198px !important; }
11614
+ .brz .brz-fs-lg-199 {
11615
+ font-size: 199px !important; }
11616
+ .brz .brz-fs-lg-200 {
11617
+ font-size: 200px !important; }
11618
+ .brz .brz-fs-lg-201 {
11619
+ font-size: 201px !important; }
11620
+ .brz .brz-fs-lg-202 {
11621
+ font-size: 202px !important; }
11622
+ .brz .brz-fs-lg-203 {
11623
+ font-size: 203px !important; }
11624
+ .brz .brz-fs-lg-204 {
11625
+ font-size: 204px !important; }
11626
+ .brz .brz-fs-lg-205 {
11627
+ font-size: 205px !important; }
11628
+ .brz .brz-fs-lg-206 {
11629
+ font-size: 206px !important; }
11630
+ .brz .brz-fs-lg-207 {
11631
+ font-size: 207px !important; }
11632
+ .brz .brz-fs-lg-208 {
11633
+ font-size: 208px !important; }
11634
+ .brz .brz-fs-lg-209 {
11635
+ font-size: 209px !important; }
11636
+ .brz .brz-fs-lg-210 {
11637
+ font-size: 210px !important; }
11638
+ .brz .brz-fs-lg-211 {
11639
+ font-size: 211px !important; }
11640
+ .brz .brz-fs-lg-212 {
11641
+ font-size: 212px !important; }
11642
+ .brz .brz-fs-lg-213 {
11643
+ font-size: 213px !important; }
11644
+ .brz .brz-fs-lg-214 {
11645
+ font-size: 214px !important; }
11646
+ .brz .brz-fs-lg-215 {
11647
+ font-size: 215px !important; }
11648
+ .brz .brz-fs-lg-216 {
11649
+ font-size: 216px !important; }
11650
+ .brz .brz-fs-lg-217 {
11651
+ font-size: 217px !important; }
11652
+ .brz .brz-fs-lg-218 {
11653
+ font-size: 218px !important; }
11654
+ .brz .brz-fs-lg-219 {
11655
+ font-size: 219px !important; }
11656
+ .brz .brz-fs-lg-220 {
11657
+ font-size: 220px !important; }
11658
+ .brz .brz-fs-lg-221 {
11659
+ font-size: 221px !important; }
11660
+ .brz .brz-fs-lg-222 {
11661
+ font-size: 222px !important; }
11662
+ .brz .brz-fs-lg-223 {
11663
+ font-size: 223px !important; }
11664
+ .brz .brz-fs-lg-224 {
11665
+ font-size: 224px !important; }
11666
+ .brz .brz-fs-lg-225 {
11667
+ font-size: 225px !important; }
11668
+ .brz .brz-fs-lg-226 {
11669
+ font-size: 226px !important; }
11670
+ .brz .brz-fs-lg-227 {
11671
+ font-size: 227px !important; }
11672
+ .brz .brz-fs-lg-228 {
11673
+ font-size: 228px !important; }
11674
+ .brz .brz-fs-lg-229 {
11675
+ font-size: 229px !important; }
11676
+ .brz .brz-fs-lg-230 {
11677
+ font-size: 230px !important; }
11678
+ .brz .brz-fs-lg-231 {
11679
+ font-size: 231px !important; }
11680
+ .brz .brz-fs-lg-232 {
11681
+ font-size: 232px !important; }
11682
+ .brz .brz-fs-lg-233 {
11683
+ font-size: 233px !important; }
11684
+ .brz .brz-fs-lg-234 {
11685
+ font-size: 234px !important; }
11686
+ .brz .brz-fs-lg-235 {
11687
+ font-size: 235px !important; }
11688
+ .brz .brz-fs-lg-236 {
11689
+ font-size: 236px !important; }
11690
+ .brz .brz-fs-lg-237 {
11691
+ font-size: 237px !important; }
11692
+ .brz .brz-fs-lg-238 {
11693
+ font-size: 238px !important; }
11694
+ .brz .brz-fs-lg-239 {
11695
+ font-size: 239px !important; }
11696
+ .brz .brz-fs-lg-240 {
11697
+ font-size: 240px !important; }
11698
+ .brz .brz-fs-lg-241 {
11699
+ font-size: 241px !important; }
11700
+ .brz .brz-fs-lg-242 {
11701
+ font-size: 242px !important; }
11702
+ .brz .brz-fs-lg-243 {
11703
+ font-size: 243px !important; }
11704
+ .brz .brz-fs-lg-244 {
11705
+ font-size: 244px !important; }
11706
+ .brz .brz-fs-lg-245 {
11707
+ font-size: 245px !important; }
11708
+ .brz .brz-fs-lg-246 {
11709
+ font-size: 246px !important; }
11710
+ .brz .brz-fs-lg-247 {
11711
+ font-size: 247px !important; }
11712
+ .brz .brz-fs-lg-248 {
11713
+ font-size: 248px !important; }
11714
+ .brz .brz-fs-lg-249 {
11715
+ font-size: 249px !important; }
11716
+ .brz .brz-fs-lg-250 {
11717
+ font-size: 250px !important; }
11718
+ .brz .brz-fs-lg-251 {
11719
+ font-size: 251px !important; }
11720
+ .brz .brz-fs-lg-252 {
11721
+ font-size: 252px !important; }
11722
+ .brz .brz-fs-lg-253 {
11723
+ font-size: 253px !important; }
11724
+ .brz .brz-fs-lg-254 {
11725
+ font-size: 254px !important; }
11726
+ .brz .brz-fs-lg-255 {
11727
+ font-size: 255px !important; }
11728
+ .brz .brz-fs-lg-256 {
11729
+ font-size: 256px !important; }
11730
+ .brz .brz-fs-lg-257 {
11731
+ font-size: 257px !important; }
11732
+ .brz .brz-fs-lg-258 {
11733
+ font-size: 258px !important; }
11734
+ .brz .brz-fs-lg-259 {
11735
+ font-size: 259px !important; }
11736
+ .brz .brz-fs-lg-260 {
11737
+ font-size: 260px !important; }
11738
+ .brz .brz-fs-lg-261 {
11739
+ font-size: 261px !important; }
11740
+ .brz .brz-fs-lg-262 {
11741
+ font-size: 262px !important; }
11742
+ .brz .brz-fs-lg-263 {
11743
+ font-size: 263px !important; }
11744
+ .brz .brz-fs-lg-264 {
11745
+ font-size: 264px !important; }
11746
+ .brz .brz-fs-lg-265 {
11747
+ font-size: 265px !important; }
11748
+ .brz .brz-fs-lg-266 {
11749
+ font-size: 266px !important; }
11750
+ .brz .brz-fs-lg-267 {
11751
+ font-size: 267px !important; }
11752
+ .brz .brz-fs-lg-268 {
11753
+ font-size: 268px !important; }
11754
+ .brz .brz-fs-lg-269 {
11755
+ font-size: 269px !important; }
11756
+ .brz .brz-fs-lg-270 {
11757
+ font-size: 270px !important; }
11758
+ .brz .brz-fs-lg-271 {
11759
+ font-size: 271px !important; }
11760
+ .brz .brz-fs-lg-272 {
11761
+ font-size: 272px !important; }
11762
+ .brz .brz-fs-lg-273 {
11763
+ font-size: 273px !important; }
11764
+ .brz .brz-fs-lg-274 {
11765
+ font-size: 274px !important; }
11766
+ .brz .brz-fs-lg-275 {
11767
+ font-size: 275px !important; }
11768
+ .brz .brz-fs-lg-276 {
11769
+ font-size: 276px !important; }
11770
+ .brz .brz-fs-lg-277 {
11771
+ font-size: 277px !important; }
11772
+ .brz .brz-fs-lg-278 {
11773
+ font-size: 278px !important; }
11774
+ .brz .brz-fs-lg-279 {
11775
+ font-size: 279px !important; }
11776
+ .brz .brz-fs-lg-280 {
11777
+ font-size: 280px !important; }
11778
+ .brz .brz-fs-lg-281 {
11779
+ font-size: 281px !important; }
11780
+ .brz .brz-fs-lg-282 {
11781
+ font-size: 282px !important; }
11782
+ .brz .brz-fs-lg-283 {
11783
+ font-size: 283px !important; }
11784
+ .brz .brz-fs-lg-284 {
11785
+ font-size: 284px !important; }
11786
+ .brz .brz-fs-lg-285 {
11787
+ font-size: 285px !important; }
11788
+ .brz .brz-fs-lg-286 {
11789
+ font-size: 286px !important; }
11790
+ .brz .brz-fs-lg-287 {
11791
+ font-size: 287px !important; }
11792
+ .brz .brz-fs-lg-288 {
11793
+ font-size: 288px !important; }
11794
+ .brz .brz-fs-lg-289 {
11795
+ font-size: 289px !important; }
11796
+ .brz .brz-fs-lg-290 {
11797
+ font-size: 290px !important; }
11798
+ .brz .brz-fs-lg-291 {
11799
+ font-size: 291px !important; }
11800
+ .brz .brz-fs-lg-292 {
11801
+ font-size: 292px !important; }
11802
+ .brz .brz-fs-lg-293 {
11803
+ font-size: 293px !important; }
11804
+ .brz .brz-fs-lg-294 {
11805
+ font-size: 294px !important; }
11806
+ .brz .brz-fs-lg-295 {
11807
+ font-size: 295px !important; }
11808
+ .brz .brz-fs-lg-296 {
11809
+ font-size: 296px !important; }
11810
+ .brz .brz-fs-lg-297 {
11811
+ font-size: 297px !important; }
11812
+ .brz .brz-fs-lg-298 {
11813
+ font-size: 298px !important; }
11814
+ .brz .brz-fs-lg-299 {
11815
+ font-size: 299px !important; }
11816
+ .brz .brz-fs-lg-300 {
11817
+ font-size: 300px !important; }
11818
+ .brz .brz-lh-lg-1 {
11819
+ line-height: 1em !important; }
11820
+ .brz .brz-lh-lg-1_1 {
11821
+ line-height: 1.1em !important; }
11822
+ .brz .brz-lh-lg-1_2 {
11823
+ line-height: 1.2em !important; }
11824
+ .brz .brz-lh-lg-1_3 {
11825
+ line-height: 1.3em !important; }
11826
+ .brz .brz-lh-lg-1_4 {
11827
+ line-height: 1.4em !important; }
11828
+ .brz .brz-lh-lg-1_5 {
11829
+ line-height: 1.5em !important; }
11830
+ .brz .brz-lh-lg-1_6 {
11831
+ line-height: 1.6em !important; }
11832
+ .brz .brz-lh-lg-1_7 {
11833
+ line-height: 1.7em !important; }
11834
+ .brz .brz-lh-lg-1_8 {
11835
+ line-height: 1.8em !important; }
11836
+ .brz .brz-lh-lg-1_9 {
11837
+ line-height: 1.9em !important; }
11838
+ .brz .brz-lh-lg-2 {
11839
+ line-height: 2em !important; }
11840
+ .brz .brz-lh-lg-2_1 {
11841
+ line-height: 2.1em !important; }
11842
+ .brz .brz-lh-lg-2_2 {
11843
+ line-height: 2.2em !important; }
11844
+ .brz .brz-lh-lg-2_3 {
11845
+ line-height: 2.3em !important; }
11846
+ .brz .brz-lh-lg-2_4 {
11847
+ line-height: 2.4em !important; }
11848
+ .brz .brz-lh-lg-2_5 {
11849
+ line-height: 2.5em !important; }
11850
+ .brz .brz-lh-lg-2_6 {
11851
+ line-height: 2.6em !important; }
11852
+ .brz .brz-lh-lg-2_7 {
11853
+ line-height: 2.7em !important; }
11854
+ .brz .brz-lh-lg-2_8 {
11855
+ line-height: 2.8em !important; }
11856
+ .brz .brz-lh-lg-2_9 {
11857
+ line-height: 2.9em !important; }
11858
+ .brz .brz-lh-lg-3 {
11859
+ line-height: 3em !important; }
11860
+ .brz .brz-lh-lg-3_1 {
11861
+ line-height: 3.1em !important; }
11862
+ .brz .brz-lh-lg-3_2 {
11863
+ line-height: 3.2em !important; }
11864
+ .brz .brz-lh-lg-3_3 {
11865
+ line-height: 3.3em !important; }
11866
+ .brz .brz-lh-lg-3_4 {
11867
+ line-height: 3.4em !important; }
11868
+ .brz .brz-lh-lg-3_5 {
11869
+ line-height: 3.5em !important; }
11870
+ .brz .brz-lh-lg-3_6 {
11871
+ line-height: 3.6em !important; }
11872
+ .brz .brz-lh-lg-3_7 {
11873
+ line-height: 3.7em !important; }
11874
+ .brz .brz-lh-lg-3_8 {
11875
+ line-height: 3.8em !important; }
11876
+ .brz .brz-lh-lg-3_9 {
11877
+ line-height: 3.9em !important; }
11878
+ .brz .brz-lh-lg-4 {
11879
+ line-height: 4em !important; }
11880
+ .brz .brz-lh-lg-4_1 {
11881
+ line-height: 4.1em !important; }
11882
+ .brz .brz-lh-lg-4_2 {
11883
+ line-height: 4.2em !important; }
11884
+ .brz .brz-lh-lg-4_3 {
11885
+ line-height: 4.3em !important; }
11886
+ .brz .brz-lh-lg-4_4 {
11887
+ line-height: 4.4em !important; }
11888
+ .brz .brz-lh-lg-4_5 {
11889
+ line-height: 4.5em !important; }
11890
+ .brz .brz-lh-lg-4_6 {
11891
+ line-height: 4.6em !important; }
11892
+ .brz .brz-lh-lg-4_7 {
11893
+ line-height: 4.7em !important; }
11894
+ .brz .brz-lh-lg-4_8 {
11895
+ line-height: 4.8em !important; }
11896
+ .brz .brz-lh-lg-4_9 {
11897
+ line-height: 4.9em !important; }
11898
+ .brz .brz-lh-lg-5 {
11899
+ line-height: 5em !important; }
11900
+ .brz .brz-lh-lg-5_1 {
11901
+ line-height: 5.1em !important; }
11902
+ .brz .brz-lh-lg-5_2 {
11903
+ line-height: 5.2em !important; }
11904
+ .brz .brz-lh-lg-5_3 {
11905
+ line-height: 5.3em !important; }
11906
+ .brz .brz-lh-lg-5_4 {
11907
+ line-height: 5.4em !important; }
11908
+ .brz .brz-lh-lg-5_5 {
11909
+ line-height: 5.5em !important; }
11910
+ .brz .brz-lh-lg-5_6 {
11911
+ line-height: 5.6em !important; }
11912
+ .brz .brz-lh-lg-5_7 {
11913
+ line-height: 5.7em !important; }
11914
+ .brz .brz-lh-lg-5_8 {
11915
+ line-height: 5.8em !important; }
11916
+ .brz .brz-lh-lg-5_9 {
11917
+ line-height: 5.9em !important; }
11918
+ .brz .brz-ls-lg-m_5 {
11919
+ letter-spacing: -5px !important; }
11920
+ .brz .brz-ls-lg-m_5_5 {
11921
+ letter-spacing: -5.5px !important; }
11922
+ .brz .brz-ls-lg-m_4 {
11923
+ letter-spacing: -4px !important; }
11924
+ .brz .brz-ls-lg-m_4_5 {
11925
+ letter-spacing: -4.5px !important; }
11926
+ .brz .brz-ls-lg-m_3 {
11927
+ letter-spacing: -3px !important; }
11928
+ .brz .brz-ls-lg-m_3_5 {
11929
+ letter-spacing: -3.5px !important; }
11930
+ .brz .brz-ls-lg-m_2 {
11931
+ letter-spacing: -2px !important; }
11932
+ .brz .brz-ls-lg-m_2_5 {
11933
+ letter-spacing: -2.5px !important; }
11934
+ .brz .brz-ls-lg-m_1 {
11935
+ letter-spacing: -1px !important; }
11936
+ .brz .brz-ls-lg-m_1_5 {
11937
+ letter-spacing: -1.5px !important; }
11938
+ .brz .brz-ls-lg-m_0 {
11939
+ letter-spacing: 0px !important; }
11940
+ .brz .brz-ls-lg-m_0_5 {
11941
+ letter-spacing: -0.5px !important; }
11942
+ .brz .brz-ls-lg-0 {
11943
+ letter-spacing: 0px !important; }
11944
+ .brz .brz-ls-lg-0_5 {
11945
+ letter-spacing: 0.5px !important; }
11946
+ .brz .brz-ls-lg-1 {
11947
+ letter-spacing: 1px !important; }
11948
+ .brz .brz-ls-lg-1_5 {
11949
+ letter-spacing: 1.5px !important; }
11950
+ .brz .brz-ls-lg-2 {
11951
+ letter-spacing: 2px !important; }
11952
+ .brz .brz-ls-lg-2_5 {
11953
+ letter-spacing: 2.5px !important; }
11954
+ .brz .brz-ls-lg-3 {
11955
+ letter-spacing: 3px !important; }
11956
+ .brz .brz-ls-lg-3_5 {
11957
+ letter-spacing: 3.5px !important; }
11958
+ .brz .brz-ls-lg-4 {
11959
+ letter-spacing: 4px !important; }
11960
+ .brz .brz-ls-lg-4_5 {
11961
+ letter-spacing: 4.5px !important; }
11962
+ .brz .brz-ls-lg-5 {
11963
+ letter-spacing: 5px !important; }
11964
+ .brz .brz-ls-lg-5_5 {
11965
+ letter-spacing: 5.5px !important; }
11966
+ .brz .brz-ls-lg-6 {
11967
+ letter-spacing: 6px !important; }
11968
+ .brz .brz-ls-lg-6_5 {
11969
+ letter-spacing: 6.5px !important; }
11970
+ .brz .brz-ls-lg-7 {
11971
+ letter-spacing: 7px !important; }
11972
+ .brz .brz-ls-lg-7_5 {
11973
+ letter-spacing: 7.5px !important; }
11974
+ .brz .brz-ls-lg-8 {
11975
+ letter-spacing: 8px !important; }
11976
+ .brz .brz-ls-lg-8_5 {
11977
+ letter-spacing: 8.5px !important; }
11978
+ .brz .brz-ls-lg-9 {
11979
+ letter-spacing: 9px !important; }
11980
+ .brz .brz-ls-lg-9_5 {
11981
+ letter-spacing: 9.5px !important; }
11982
+ .brz .brz-ls-lg-10 {
11983
+ letter-spacing: 10px !important; }
11984
+ .brz .brz-ls-lg-10_5 {
11985
+ letter-spacing: 10.5px !important; }
11986
+ .brz .brz-ls-lg-11 {
11987
+ letter-spacing: 11px !important; }
11988
+ .brz .brz-ls-lg-11_5 {
11989
+ letter-spacing: 11.5px !important; }
11990
+ .brz .brz-ls-lg-12 {
11991
+ letter-spacing: 12px !important; }
11992
+ .brz .brz-ls-lg-12_5 {
11993
+ letter-spacing: 12.5px !important; }
11994
+ .brz .brz-ls-lg-13 {
11995
+ letter-spacing: 13px !important; }
11996
+ .brz .brz-ls-lg-13_5 {
11997
+ letter-spacing: 13.5px !important; }
11998
+ .brz .brz-ls-lg-14 {
11999
+ letter-spacing: 14px !important; }
12000
+ .brz .brz-ls-lg-14_5 {
12001
+ letter-spacing: 14.5px !important; }
12002
+ .brz .brz-ls-lg-15 {
12003
+ letter-spacing: 15px !important; }
12004
+ .brz .brz-ls-lg-15_5 {
12005
+ letter-spacing: 15.5px !important; }
12006
+ .brz .brz-fw-lg-100 {
12007
+ font-weight: 100 !important; }
12008
+ .brz .brz-fw-lg-200 {
12009
+ font-weight: 200 !important; }
12010
+ .brz .brz-fw-lg-300 {
12011
+ font-weight: 300 !important; }
12012
+ .brz .brz-fw-lg-400 {
12013
+ font-weight: 400 !important; }
12014
+ .brz .brz-fw-lg-500 {
12015
+ font-weight: 500 !important; }
12016
+ .brz .brz-fw-lg-600 {
12017
+ font-weight: 600 !important; }
12018
+ .brz .brz-fw-lg-700 {
12019
+ font-weight: 700 !important; }
12020
+ .brz .brz-fw-lg-800 {
12021
+ font-weight: 800 !important; }
12022
+ .brz .brz-fw-lg-900 {
12023
+ font-weight: 900 !important; }
12024
+ .brz .brz-fw-lg-1000 {
12025
+ font-weight: 1000 !important; }
12026
+ .brz .brz-fw-lg-1100 {
12027
+ font-weight: 1100 !important; }
12028
+ .brz .brz-fw-lg-1200 {
12029
+ font-weight: 1200 !important; }
12030
+ .brz .brz-fw-lg-1300 {
12031
+ font-weight: 1300 !important; }
12032
+ .brz .brz-fw-lg-1400 {
12033
+ font-weight: 1400 !important; }
12034
+ .brz .brz-fw-lg-1500 {
12035
+ font-weight: 1500 !important; } }
12036
+ .brz .brz-mt-lg-0 {
12037
+ margin-top: 0px !important; }
12038
+ .brz .brz-mt-lg-1 {
12039
+ margin-top: 1px !important; }
12040
+ .brz .brz-mt-lg-2 {
12041
+ margin-top: 2px !important; }
12042
+ .brz .brz-mt-lg-3 {
12043
+ margin-top: 3px !important; }
12044
+ .brz .brz-mt-lg-4 {
12045
+ margin-top: 4px !important; }
12046
+ .brz .brz-mt-lg-5 {
12047
+ margin-top: 5px !important; }
12048
+ .brz .brz-mt-lg-6 {
12049
+ margin-top: 6px !important; }
12050
+ .brz .brz-mt-lg-7 {
12051
+ margin-top: 7px !important; }
12052
+ .brz .brz-mt-lg-8 {
12053
+ margin-top: 8px !important; }
12054
+ .brz .brz-mt-lg-9 {
12055
+ margin-top: 9px !important; }
12056
+ .brz .brz-mt-lg-10 {
12057
+ margin-top: 10px !important; }
12058
+ .brz .brz-mt-lg-11 {
12059
+ margin-top: 11px !important; }
12060
+ .brz .brz-mt-lg-12 {
12061
+ margin-top: 12px !important; }
12062
+ .brz .brz-mt-lg-13 {
12063
+ margin-top: 13px !important; }
12064
+ .brz .brz-mt-lg-14 {
12065
+ margin-top: 14px !important; }
12066
+ .brz .brz-mt-lg-15 {
12067
+ margin-top: 15px !important; }
12068
+ .brz .brz-mt-lg-16 {
12069
+ margin-top: 16px !important; }
12070
+ .brz .brz-mt-lg-17 {
12071
+ margin-top: 17px !important; }
12072
+ .brz .brz-mt-lg-18 {
12073
+ margin-top: 18px !important; }
12074
+ .brz .brz-mt-lg-19 {
12075
+ margin-top: 19px !important; }
12076
+ .brz .brz-mt-lg-20 {
12077
+ margin-top: 20px !important; }
12078
+ .brz .brz-mt-lg-21 {
12079
+ margin-top: 21px !important; }
12080
+ .brz .brz-mt-lg-22 {
12081
+ margin-top: 22px !important; }
12082
+ .brz .brz-mt-lg-23 {
12083
+ margin-top: 23px !important; }
12084
+ .brz .brz-mt-lg-24 {
12085
+ margin-top: 24px !important; }
12086
+ .brz .brz-mt-lg-25 {
12087
+ margin-top: 25px !important; }
12088
+ .brz .brz-mt-lg-26 {
12089
+ margin-top: 26px !important; }
12090
+ .brz .brz-mt-lg-27 {
12091
+ margin-top: 27px !important; }
12092
+ .brz .brz-mt-lg-28 {
12093
+ margin-top: 28px !important; }
12094
+ .brz .brz-mt-lg-29 {
12095
+ margin-top: 29px !important; }
12096
+ .brz .brz-mt-lg-30 {
12097
+ margin-top: 30px !important; }
12098
+ .brz .brz-mt-lg-31 {
12099
+ margin-top: 31px !important; }
12100
+ .brz .brz-mt-lg-32 {
12101
+ margin-top: 32px !important; }
12102
+ .brz .brz-mt-lg-33 {
12103
+ margin-top: 33px !important; }
12104
+ .brz .brz-mt-lg-34 {
12105
+ margin-top: 34px !important; }
12106
+ .brz .brz-mt-lg-35 {
12107
+ margin-top: 35px !important; }
12108
+ .brz .brz-mt-lg-36 {
12109
+ margin-top: 36px !important; }
12110
+ .brz .brz-mt-lg-37 {
12111
+ margin-top: 37px !important; }
12112
+ .brz .brz-mt-lg-38 {
12113
+ margin-top: 38px !important; }
12114
+ .brz .brz-mt-lg-39 {
12115
+ margin-top: 39px !important; }
12116
+ .brz .brz-mt-lg-40 {
12117
+ margin-top: 40px !important; }
12118
+ .brz .brz-mt-lg-41 {
12119
+ margin-top: 41px !important; }
12120
+ .brz .brz-mt-lg-42 {
12121
+ margin-top: 42px !important; }
12122
+ .brz .brz-mt-lg-43 {
12123
+ margin-top: 43px !important; }
12124
+ .brz .brz-mt-lg-44 {
12125
+ margin-top: 44px !important; }
12126
+ .brz .brz-mt-lg-45 {
12127
+ margin-top: 45px !important; }
12128
+ .brz .brz-mt-lg-46 {
12129
+ margin-top: 46px !important; }
12130
+ .brz .brz-mt-lg-47 {
12131
+ margin-top: 47px !important; }
12132
+ .brz .brz-mt-lg-48 {
12133
+ margin-top: 48px !important; }
12134
+ .brz .brz-mt-lg-49 {
12135
+ margin-top: 49px !important; }
12136
+ .brz .brz-mt-lg-50 {
12137
+ margin-top: 50px !important; }
12138
+ .brz .brz-mt-lg-51 {
12139
+ margin-top: 51px !important; }
12140
+ .brz .brz-mt-lg-52 {
12141
+ margin-top: 52px !important; }
12142
+ .brz .brz-mt-lg-53 {
12143
+ margin-top: 53px !important; }
12144
+ .brz .brz-mt-lg-54 {
12145
+ margin-top: 54px !important; }
12146
+ .brz .brz-mt-lg-55 {
12147
+ margin-top: 55px !important; }
12148
+ .brz .brz-mt-lg-56 {
12149
+ margin-top: 56px !important; }
12150
+ .brz .brz-mt-lg-57 {
12151
+ margin-top: 57px !important; }
12152
+ .brz .brz-mt-lg-58 {
12153
+ margin-top: 58px !important; }
12154
+ .brz .brz-mt-lg-59 {
12155
+ margin-top: 59px !important; }
12156
+ .brz .brz-mt-lg-60 {
12157
+ margin-top: 60px !important; }
12158
+ .brz .brz-mt-lg-61 {
12159
+ margin-top: 61px !important; }
12160
+ .brz .brz-mt-lg-62 {
12161
+ margin-top: 62px !important; }
12162
+ .brz .brz-mt-lg-63 {
12163
+ margin-top: 63px !important; }
12164
+ .brz .brz-mt-lg-64 {
12165
+ margin-top: 64px !important; }
12166
+ .brz .brz-mt-lg-65 {
12167
+ margin-top: 65px !important; }
12168
+ .brz .brz-mt-lg-66 {
12169
+ margin-top: 66px !important; }
12170
+ .brz .brz-mt-lg-67 {
12171
+ margin-top: 67px !important; }
12172
+ .brz .brz-mt-lg-68 {
12173
+ margin-top: 68px !important; }
12174
+ .brz .brz-mt-lg-69 {
12175
+ margin-top: 69px !important; }
12176
+ .brz .brz-mt-lg-70 {
12177
+ margin-top: 70px !important; }
12178
+ .brz .brz-mt-lg-71 {
12179
+ margin-top: 71px !important; }
12180
+ .brz .brz-mt-lg-72 {
12181
+ margin-top: 72px !important; }
12182
+ .brz .brz-mt-lg-73 {
12183
+ margin-top: 73px !important; }
12184
+ .brz .brz-mt-lg-74 {
12185
+ margin-top: 74px !important; }
12186
+ .brz .brz-mt-lg-75 {
12187
+ margin-top: 75px !important; }
12188
+ .brz .brz-mt-lg-76 {
12189
+ margin-top: 76px !important; }
12190
+ .brz .brz-mt-lg-77 {
12191
+ margin-top: 77px !important; }
12192
+ .brz .brz-mt-lg-78 {
12193
+ margin-top: 78px !important; }
12194
+ .brz .brz-mt-lg-79 {
12195
+ margin-top: 79px !important; }
12196
+ .brz .brz-mt-lg-80 {
12197
+ margin-top: 80px !important; }
12198
+ .brz .brz-mt-lg-81 {
12199
+ margin-top: 81px !important; }
12200
+ .brz .brz-mt-lg-82 {
12201
+ margin-top: 82px !important; }
12202
+ .brz .brz-mt-lg-83 {
12203
+ margin-top: 83px !important; }
12204
+ .brz .brz-mt-lg-84 {
12205
+ margin-top: 84px !important; }
12206
+ .brz .brz-mt-lg-85 {
12207
+ margin-top: 85px !important; }
12208
+ .brz .brz-mt-lg-86 {
12209
+ margin-top: 86px !important; }
12210
+ .brz .brz-mt-lg-87 {
12211
+ margin-top: 87px !important; }
12212
+ .brz .brz-mt-lg-88 {
12213
+ margin-top: 88px !important; }
12214
+ .brz .brz-mt-lg-89 {
12215
+ margin-top: 89px !important; }
12216
+ .brz .brz-mt-lg-90 {
12217
+ margin-top: 90px !important; }
12218
+ .brz .brz-mt-lg-91 {
12219
+ margin-top: 91px !important; }
12220
+ .brz .brz-mt-lg-92 {
12221
+ margin-top: 92px !important; }
12222
+ .brz .brz-mt-lg-93 {
12223
+ margin-top: 93px !important; }
12224
+ .brz .brz-mt-lg-94 {
12225
+ margin-top: 94px !important; }
12226
+ .brz .brz-mt-lg-95 {
12227
+ margin-top: 95px !important; }
12228
+ .brz .brz-mt-lg-96 {
12229
+ margin-top: 96px !important; }
12230
+ .brz .brz-mt-lg-97 {
12231
+ margin-top: 97px !important; }
12232
+ .brz .brz-mt-lg-98 {
12233
+ margin-top: 98px !important; }
12234
+ .brz .brz-mt-lg-99 {
12235
+ margin-top: 99px !important; }
12236
+ .brz .brz-mt-lg-100 {
12237
+ margin-top: 100px !important; }
12238
+ .brz .brz-mb-lg-0 {
12239
+ margin-bottom: 0px !important; }
12240
+ .brz .brz-mb-lg-1 {
12241
+ margin-bottom: 1px !important; }
12242
+ .brz .brz-mb-lg-2 {
12243
+ margin-bottom: 2px !important; }
12244
+ .brz .brz-mb-lg-3 {
12245
+ margin-bottom: 3px !important; }
12246
+ .brz .brz-mb-lg-4 {
12247
+ margin-bottom: 4px !important; }
12248
+ .brz .brz-mb-lg-5 {
12249
+ margin-bottom: 5px !important; }
12250
+ .brz .brz-mb-lg-6 {
12251
+ margin-bottom: 6px !important; }
12252
+ .brz .brz-mb-lg-7 {
12253
+ margin-bottom: 7px !important; }
12254
+ .brz .brz-mb-lg-8 {
12255
+ margin-bottom: 8px !important; }
12256
+ .brz .brz-mb-lg-9 {
12257
+ margin-bottom: 9px !important; }
12258
+ .brz .brz-mb-lg-10 {
12259
+ margin-bottom: 10px !important; }
12260
+ .brz .brz-mb-lg-11 {
12261
+ margin-bottom: 11px !important; }
12262
+ .brz .brz-mb-lg-12 {
12263
+ margin-bottom: 12px !important; }
12264
+ .brz .brz-mb-lg-13 {
12265
+ margin-bottom: 13px !important; }
12266
+ .brz .brz-mb-lg-14 {
12267
+ margin-bottom: 14px !important; }
12268
+ .brz .brz-mb-lg-15 {
12269
+ margin-bottom: 15px !important; }
12270
+ .brz .brz-mb-lg-16 {
12271
+ margin-bottom: 16px !important; }
12272
+ .brz .brz-mb-lg-17 {
12273
+ margin-bottom: 17px !important; }
12274
+ .brz .brz-mb-lg-18 {
12275
+ margin-bottom: 18px !important; }
12276
+ .brz .brz-mb-lg-19 {
12277
+ margin-bottom: 19px !important; }
12278
+ .brz .brz-mb-lg-20 {
12279
+ margin-bottom: 20px !important; }
12280
+ .brz .brz-mb-lg-21 {
12281
+ margin-bottom: 21px !important; }
12282
+ .brz .brz-mb-lg-22 {
12283
+ margin-bottom: 22px !important; }
12284
+ .brz .brz-mb-lg-23 {
12285
+ margin-bottom: 23px !important; }
12286
+ .brz .brz-mb-lg-24 {
12287
+ margin-bottom: 24px !important; }
12288
+ .brz .brz-mb-lg-25 {
12289
+ margin-bottom: 25px !important; }
12290
+ .brz .brz-mb-lg-26 {
12291
+ margin-bottom: 26px !important; }
12292
+ .brz .brz-mb-lg-27 {
12293
+ margin-bottom: 27px !important; }
12294
+ .brz .brz-mb-lg-28 {
12295
+ margin-bottom: 28px !important; }
12296
+ .brz .brz-mb-lg-29 {
12297
+ margin-bottom: 29px !important; }
12298
+ .brz .brz-mb-lg-30 {
12299
+ margin-bottom: 30px !important; }
12300
+ .brz .brz-mb-lg-31 {
12301
+ margin-bottom: 31px !important; }
12302
+ .brz .brz-mb-lg-32 {
12303
+ margin-bottom: 32px !important; }
12304
+ .brz .brz-mb-lg-33 {
12305
+ margin-bottom: 33px !important; }
12306
+ .brz .brz-mb-lg-34 {
12307
+ margin-bottom: 34px !important; }
12308
+ .brz .brz-mb-lg-35 {
12309
+ margin-bottom: 35px !important; }
12310
+ .brz .brz-mb-lg-36 {
12311
+ margin-bottom: 36px !important; }
12312
+ .brz .brz-mb-lg-37 {
12313
+ margin-bottom: 37px !important; }
12314
+ .brz .brz-mb-lg-38 {
12315
+ margin-bottom: 38px !important; }
12316
+ .brz .brz-mb-lg-39 {
12317
+ margin-bottom: 39px !important; }
12318
+ .brz .brz-mb-lg-40 {
12319
+ margin-bottom: 40px !important; }
12320
+ .brz .brz-mb-lg-41 {
12321
+ margin-bottom: 41px !important; }
12322
+ .brz .brz-mb-lg-42 {
12323
+ margin-bottom: 42px !important; }
12324
+ .brz .brz-mb-lg-43 {
12325
+ margin-bottom: 43px !important; }
12326
+ .brz .brz-mb-lg-44 {
12327
+ margin-bottom: 44px !important; }
12328
+ .brz .brz-mb-lg-45 {
12329
+ margin-bottom: 45px !important; }
12330
+ .brz .brz-mb-lg-46 {
12331
+ margin-bottom: 46px !important; }
12332
+ .brz .brz-mb-lg-47 {
12333
+ margin-bottom: 47px !important; }
12334
+ .brz .brz-mb-lg-48 {
12335
+ margin-bottom: 48px !important; }
12336
+ .brz .brz-mb-lg-49 {
12337
+ margin-bottom: 49px !important; }
12338
+ .brz .brz-mb-lg-50 {
12339
+ margin-bottom: 50px !important; }
12340
+ .brz .brz-mb-lg-51 {
12341
+ margin-bottom: 51px !important; }
12342
+ .brz .brz-mb-lg-52 {
12343
+ margin-bottom: 52px !important; }
12344
+ .brz .brz-mb-lg-53 {
12345
+ margin-bottom: 53px !important; }
12346
+ .brz .brz-mb-lg-54 {
12347
+ margin-bottom: 54px !important; }
12348
+ .brz .brz-mb-lg-55 {
12349
+ margin-bottom: 55px !important; }
12350
+ .brz .brz-mb-lg-56 {
12351
+ margin-bottom: 56px !important; }
12352
+ .brz .brz-mb-lg-57 {
12353
+ margin-bottom: 57px !important; }
12354
+ .brz .brz-mb-lg-58 {
12355
+ margin-bottom: 58px !important; }
12356
+ .brz .brz-mb-lg-59 {
12357
+ margin-bottom: 59px !important; }
12358
+ .brz .brz-mb-lg-60 {
12359
+ margin-bottom: 60px !important; }
12360
+ .brz .brz-mb-lg-61 {
12361
+ margin-bottom: 61px !important; }
12362
+ .brz .brz-mb-lg-62 {
12363
+ margin-bottom: 62px !important; }
12364
+ .brz .brz-mb-lg-63 {
12365
+ margin-bottom: 63px !important; }
12366
+ .brz .brz-mb-lg-64 {
12367
+ margin-bottom: 64px !important; }
12368
+ .brz .brz-mb-lg-65 {
12369
+ margin-bottom: 65px !important; }
12370
+ .brz .brz-mb-lg-66 {
12371
+ margin-bottom: 66px !important; }
12372
+ .brz .brz-mb-lg-67 {
12373
+ margin-bottom: 67px !important; }
12374
+ .brz .brz-mb-lg-68 {
12375
+ margin-bottom: 68px !important; }
12376
+ .brz .brz-mb-lg-69 {
12377
+ margin-bottom: 69px !important; }
12378
+ .brz .brz-mb-lg-70 {
12379
+ margin-bottom: 70px !important; }
12380
+ .brz .brz-mb-lg-71 {
12381
+ margin-bottom: 71px !important; }
12382
+ .brz .brz-mb-lg-72 {
12383
+ margin-bottom: 72px !important; }
12384
+ .brz .brz-mb-lg-73 {
12385
+ margin-bottom: 73px !important; }
12386
+ .brz .brz-mb-lg-74 {
12387
+ margin-bottom: 74px !important; }
12388
+ .brz .brz-mb-lg-75 {
12389
+ margin-bottom: 75px !important; }
12390
+ .brz .brz-mb-lg-76 {
12391
+ margin-bottom: 76px !important; }
12392
+ .brz .brz-mb-lg-77 {
12393
+ margin-bottom: 77px !important; }
12394
+ .brz .brz-mb-lg-78 {
12395
+ margin-bottom: 78px !important; }
12396
+ .brz .brz-mb-lg-79 {
12397
+ margin-bottom: 79px !important; }
12398
+ .brz .brz-mb-lg-80 {
12399
+ margin-bottom: 80px !important; }
12400
+ .brz .brz-mb-lg-81 {
12401
+ margin-bottom: 81px !important; }
12402
+ .brz .brz-mb-lg-82 {
12403
+ margin-bottom: 82px !important; }
12404
+ .brz .brz-mb-lg-83 {
12405
+ margin-bottom: 83px !important; }
12406
+ .brz .brz-mb-lg-84 {
12407
+ margin-bottom: 84px !important; }
12408
+ .brz .brz-mb-lg-85 {
12409
+ margin-bottom: 85px !important; }
12410
+ .brz .brz-mb-lg-86 {
12411
+ margin-bottom: 86px !important; }
12412
+ .brz .brz-mb-lg-87 {
12413
+ margin-bottom: 87px !important; }
12414
+ .brz .brz-mb-lg-88 {
12415
+ margin-bottom: 88px !important; }
12416
+ .brz .brz-mb-lg-89 {
12417
+ margin-bottom: 89px !important; }
12418
+ .brz .brz-mb-lg-90 {
12419
+ margin-bottom: 90px !important; }
12420
+ .brz .brz-mb-lg-91 {
12421
+ margin-bottom: 91px !important; }
12422
+ .brz .brz-mb-lg-92 {
12423
+ margin-bottom: 92px !important; }
12424
+ .brz .brz-mb-lg-93 {
12425
+ margin-bottom: 93px !important; }
12426
+ .brz .brz-mb-lg-94 {
12427
+ margin-bottom: 94px !important; }
12428
+ .brz .brz-mb-lg-95 {
12429
+ margin-bottom: 95px !important; }
12430
+ .brz .brz-mb-lg-96 {
12431
+ margin-bottom: 96px !important; }
12432
+ .brz .brz-mb-lg-97 {
12433
+ margin-bottom: 97px !important; }
12434
+ .brz .brz-mb-lg-98 {
12435
+ margin-bottom: 98px !important; }
12436
+ .brz .brz-mb-lg-99 {
12437
+ margin-bottom: 99px !important; }
12438
+ .brz .brz-mb-lg-100 {
12439
+ margin-bottom: 100px !important; }
12440
+
12441
+ @media (min-width: 768px) and (max-width: 991px) {
12442
+ .brz .brz-mt-sm-0 {
12443
+ margin-top: 0px !important; }
12444
+ .brz .brz-mt-sm-1 {
12445
+ margin-top: 1px !important; }
12446
+ .brz .brz-mt-sm-2 {
12447
+ margin-top: 2px !important; }
12448
+ .brz .brz-mt-sm-3 {
12449
+ margin-top: 3px !important; }
12450
+ .brz .brz-mt-sm-4 {
12451
+ margin-top: 4px !important; }
12452
+ .brz .brz-mt-sm-5 {
12453
+ margin-top: 5px !important; }
12454
+ .brz .brz-mt-sm-6 {
12455
+ margin-top: 6px !important; }
12456
+ .brz .brz-mt-sm-7 {
12457
+ margin-top: 7px !important; }
12458
+ .brz .brz-mt-sm-8 {
12459
+ margin-top: 8px !important; }
12460
+ .brz .brz-mt-sm-9 {
12461
+ margin-top: 9px !important; }
12462
+ .brz .brz-mt-sm-10 {
12463
+ margin-top: 10px !important; }
12464
+ .brz .brz-mt-sm-11 {
12465
+ margin-top: 11px !important; }
12466
+ .brz .brz-mt-sm-12 {
12467
+ margin-top: 12px !important; }
12468
+ .brz .brz-mt-sm-13 {
12469
+ margin-top: 13px !important; }
12470
+ .brz .brz-mt-sm-14 {
12471
+ margin-top: 14px !important; }
12472
+ .brz .brz-mt-sm-15 {
12473
+ margin-top: 15px !important; }
12474
+ .brz .brz-mt-sm-16 {
12475
+ margin-top: 16px !important; }
12476
+ .brz .brz-mt-sm-17 {
12477
+ margin-top: 17px !important; }
12478
+ .brz .brz-mt-sm-18 {
12479
+ margin-top: 18px !important; }
12480
+ .brz .brz-mt-sm-19 {
12481
+ margin-top: 19px !important; }
12482
+ .brz .brz-mt-sm-20 {
12483
+ margin-top: 20px !important; }
12484
+ .brz .brz-mt-sm-21 {
12485
+ margin-top: 21px !important; }
12486
+ .brz .brz-mt-sm-22 {
12487
+ margin-top: 22px !important; }
12488
+ .brz .brz-mt-sm-23 {
12489
+ margin-top: 23px !important; }
12490
+ .brz .brz-mt-sm-24 {
12491
+ margin-top: 24px !important; }
12492
+ .brz .brz-mt-sm-25 {
12493
+ margin-top: 25px !important; }
12494
+ .brz .brz-mt-sm-26 {
12495
+ margin-top: 26px !important; }
12496
+ .brz .brz-mt-sm-27 {
12497
+ margin-top: 27px !important; }
12498
+ .brz .brz-mt-sm-28 {
12499
+ margin-top: 28px !important; }
12500
+ .brz .brz-mt-sm-29 {
12501
+ margin-top: 29px !important; }
12502
+ .brz .brz-mt-sm-30 {
12503
+ margin-top: 30px !important; }
12504
+ .brz .brz-mt-sm-31 {
12505
+ margin-top: 31px !important; }
12506
+ .brz .brz-mt-sm-32 {
12507
+ margin-top: 32px !important; }
12508
+ .brz .brz-mt-sm-33 {
12509
+ margin-top: 33px !important; }
12510
+ .brz .brz-mt-sm-34 {
12511
+ margin-top: 34px !important; }
12512
+ .brz .brz-mt-sm-35 {
12513
+ margin-top: 35px !important; }
12514
+ .brz .brz-mt-sm-36 {
12515
+ margin-top: 36px !important; }
12516
+ .brz .brz-mt-sm-37 {
12517
+ margin-top: 37px !important; }
12518
+ .brz .brz-mt-sm-38 {
12519
+ margin-top: 38px !important; }
12520
+ .brz .brz-mt-sm-39 {
12521
+ margin-top: 39px !important; }
12522
+ .brz .brz-mt-sm-40 {
12523
+ margin-top: 40px !important; }
12524
+ .brz .brz-mt-sm-41 {
12525
+ margin-top: 41px !important; }
12526
+ .brz .brz-mt-sm-42 {
12527
+ margin-top: 42px !important; }
12528
+ .brz .brz-mt-sm-43 {
12529
+ margin-top: 43px !important; }
12530
+ .brz .brz-mt-sm-44 {
12531
+ margin-top: 44px !important; }
12532
+ .brz .brz-mt-sm-45 {
12533
+ margin-top: 45px !important; }
12534
+ .brz .brz-mt-sm-46 {
12535
+ margin-top: 46px !important; }
12536
+ .brz .brz-mt-sm-47 {
12537
+ margin-top: 47px !important; }
12538
+ .brz .brz-mt-sm-48 {
12539
+ margin-top: 48px !important; }
12540
+ .brz .brz-mt-sm-49 {
12541
+ margin-top: 49px !important; }
12542
+ .brz .brz-mt-sm-50 {
12543
+ margin-top: 50px !important; }
12544
+ .brz .brz-mt-sm-51 {
12545
+ margin-top: 51px !important; }
12546
+ .brz .brz-mt-sm-52 {
12547
+ margin-top: 52px !important; }
12548
+ .brz .brz-mt-sm-53 {
12549
+ margin-top: 53px !important; }
12550
+ .brz .brz-mt-sm-54 {
12551
+ margin-top: 54px !important; }
12552
+ .brz .brz-mt-sm-55 {
12553
+ margin-top: 55px !important; }
12554
+ .brz .brz-mt-sm-56 {
12555
+ margin-top: 56px !important; }
12556
+ .brz .brz-mt-sm-57 {
12557
+ margin-top: 57px !important; }
12558
+ .brz .brz-mt-sm-58 {
12559
+ margin-top: 58px !important; }
12560
+ .brz .brz-mt-sm-59 {
12561
+ margin-top: 59px !important; }
12562
+ .brz .brz-mt-sm-60 {
12563
+ margin-top: 60px !important; }
12564
+ .brz .brz-mt-sm-61 {
12565
+ margin-top: 61px !important; }
12566
+ .brz .brz-mt-sm-62 {
12567
+ margin-top: 62px !important; }
12568
+ .brz .brz-mt-sm-63 {
12569
+ margin-top: 63px !important; }
12570
+ .brz .brz-mt-sm-64 {
12571
+ margin-top: 64px !important; }
12572
+ .brz .brz-mt-sm-65 {
12573
+ margin-top: 65px !important; }
12574
+ .brz .brz-mt-sm-66 {
12575
+ margin-top: 66px !important; }
12576
+ .brz .brz-mt-sm-67 {
12577
+ margin-top: 67px !important; }
12578
+ .brz .brz-mt-sm-68 {
12579
+ margin-top: 68px !important; }
12580
+ .brz .brz-mt-sm-69 {
12581
+ margin-top: 69px !important; }
12582
+ .brz .brz-mt-sm-70 {
12583
+ margin-top: 70px !important; }
12584
+ .brz .brz-mt-sm-71 {
12585
+ margin-top: 71px !important; }
12586
+ .brz .brz-mt-sm-72 {
12587
+ margin-top: 72px !important; }
12588
+ .brz .brz-mt-sm-73 {
12589
+ margin-top: 73px !important; }
12590
+ .brz .brz-mt-sm-74 {
12591
+ margin-top: 74px !important; }
12592
+ .brz .brz-mt-sm-75 {
12593
+ margin-top: 75px !important; }
12594
+ .brz .brz-mt-sm-76 {
12595
+ margin-top: 76px !important; }
12596
+ .brz .brz-mt-sm-77 {
12597
+ margin-top: 77px !important; }
12598
+ .brz .brz-mt-sm-78 {
12599
+ margin-top: 78px !important; }
12600
+ .brz .brz-mt-sm-79 {
12601
+ margin-top: 79px !important; }
12602
+ .brz .brz-mt-sm-80 {
12603
+ margin-top: 80px !important; }
12604
+ .brz .brz-mt-sm-81 {
12605
+ margin-top: 81px !important; }
12606
+ .brz .brz-mt-sm-82 {
12607
+ margin-top: 82px !important; }
12608
+ .brz .brz-mt-sm-83 {
12609
+ margin-top: 83px !important; }
12610
+ .brz .brz-mt-sm-84 {
12611
+ margin-top: 84px !important; }
12612
+ .brz .brz-mt-sm-85 {
12613
+ margin-top: 85px !important; }
12614
+ .brz .brz-mt-sm-86 {
12615
+ margin-top: 86px !important; }
12616
+ .brz .brz-mt-sm-87 {
12617
+ margin-top: 87px !important; }
12618
+ .brz .brz-mt-sm-88 {
12619
+ margin-top: 88px !important; }
12620
+ .brz .brz-mt-sm-89 {
12621
+ margin-top: 89px !important; }
12622
+ .brz .brz-mt-sm-90 {
12623
+ margin-top: 90px !important; }
12624
+ .brz .brz-mt-sm-91 {
12625
+ margin-top: 91px !important; }
12626
+ .brz .brz-mt-sm-92 {
12627
+ margin-top: 92px !important; }
12628
+ .brz .brz-mt-sm-93 {
12629
+ margin-top: 93px !important; }
12630
+ .brz .brz-mt-sm-94 {
12631
+ margin-top: 94px !important; }
12632
+ .brz .brz-mt-sm-95 {
12633
+ margin-top: 95px !important; }
12634
+ .brz .brz-mt-sm-96 {
12635
+ margin-top: 96px !important; }
12636
+ .brz .brz-mt-sm-97 {
12637
+ margin-top: 97px !important; }
12638
+ .brz .brz-mt-sm-98 {
12639
+ margin-top: 98px !important; }
12640
+ .brz .brz-mt-sm-99 {
12641
+ margin-top: 99px !important; }
12642
+ .brz .brz-mt-sm-100 {
12643
+ margin-top: 100px !important; }
12644
+ .brz .brz-mb-sm-0 {
12645
+ margin-bottom: 0px !important; }
12646
+ .brz .brz-mb-sm-1 {
12647
+ margin-bottom: 1px !important; }
12648
+ .brz .brz-mb-sm-2 {
12649
+ margin-bottom: 2px !important; }
12650
+ .brz .brz-mb-sm-3 {
12651
+ margin-bottom: 3px !important; }
12652
+ .brz .brz-mb-sm-4 {
12653
+ margin-bottom: 4px !important; }
12654
+ .brz .brz-mb-sm-5 {
12655
+ margin-bottom: 5px !important; }
12656
+ .brz .brz-mb-sm-6 {
12657
+ margin-bottom: 6px !important; }
12658
+ .brz .brz-mb-sm-7 {
12659
+ margin-bottom: 7px !important; }
12660
+ .brz .brz-mb-sm-8 {
12661
+ margin-bottom: 8px !important; }
12662
+ .brz .brz-mb-sm-9 {
12663
+ margin-bottom: 9px !important; }
12664
+ .brz .brz-mb-sm-10 {
12665
+ margin-bottom: 10px !important; }
12666
+ .brz .brz-mb-sm-11 {
12667
+ margin-bottom: 11px !important; }
12668
+ .brz .brz-mb-sm-12 {
12669
+ margin-bottom: 12px !important; }
12670
+ .brz .brz-mb-sm-13 {
12671
+ margin-bottom: 13px !important; }
12672
+ .brz .brz-mb-sm-14 {
12673
+ margin-bottom: 14px !important; }
12674
+ .brz .brz-mb-sm-15 {
12675
+ margin-bottom: 15px !important; }
12676
+ .brz .brz-mb-sm-16 {
12677
+ margin-bottom: 16px !important; }
12678
+ .brz .brz-mb-sm-17 {
12679
+ margin-bottom: 17px !important; }
12680
+ .brz .brz-mb-sm-18 {
12681
+ margin-bottom: 18px !important; }
12682
+ .brz .brz-mb-sm-19 {
12683
+ margin-bottom: 19px !important; }
12684
+ .brz .brz-mb-sm-20 {
12685
+ margin-bottom: 20px !important; }
12686
+ .brz .brz-mb-sm-21 {
12687
+ margin-bottom: 21px !important; }
12688
+ .brz .brz-mb-sm-22 {
12689
+ margin-bottom: 22px !important; }
12690
+ .brz .brz-mb-sm-23 {
12691
+ margin-bottom: 23px !important; }
12692
+ .brz .brz-mb-sm-24 {
12693
+ margin-bottom: 24px !important; }
12694
+ .brz .brz-mb-sm-25 {
12695
+ margin-bottom: 25px !important; }
12696
+ .brz .brz-mb-sm-26 {
12697
+ margin-bottom: 26px !important; }
12698
+ .brz .brz-mb-sm-27 {
12699
+ margin-bottom: 27px !important; }
12700
+ .brz .brz-mb-sm-28 {
12701
+ margin-bottom: 28px !important; }
12702
+ .brz .brz-mb-sm-29 {
12703
+ margin-bottom: 29px !important; }
12704
+ .brz .brz-mb-sm-30 {
12705
+ margin-bottom: 30px !important; }
12706
+ .brz .brz-mb-sm-31 {
12707
+ margin-bottom: 31px !important; }
12708
+ .brz .brz-mb-sm-32 {
12709
+ margin-bottom: 32px !important; }
12710
+ .brz .brz-mb-sm-33 {
12711
+ margin-bottom: 33px !important; }
12712
+ .brz .brz-mb-sm-34 {
12713
+ margin-bottom: 34px !important; }
12714
+ .brz .brz-mb-sm-35 {
12715
+ margin-bottom: 35px !important; }
12716
+ .brz .brz-mb-sm-36 {
12717
+ margin-bottom: 36px !important; }
12718
+ .brz .brz-mb-sm-37 {
12719
+ margin-bottom: 37px !important; }
12720
+ .brz .brz-mb-sm-38 {
12721
+ margin-bottom: 38px !important; }
12722
+ .brz .brz-mb-sm-39 {
12723
+ margin-bottom: 39px !important; }
12724
+ .brz .brz-mb-sm-40 {
12725
+ margin-bottom: 40px !important; }
12726
+ .brz .brz-mb-sm-41 {
12727
+ margin-bottom: 41px !important; }
12728
+ .brz .brz-mb-sm-42 {
12729
+ margin-bottom: 42px !important; }
12730
+ .brz .brz-mb-sm-43 {
12731
+ margin-bottom: 43px !important; }
12732
+ .brz .brz-mb-sm-44 {
12733
+ margin-bottom: 44px !important; }
12734
+ .brz .brz-mb-sm-45 {
12735
+ margin-bottom: 45px !important; }
12736
+ .brz .brz-mb-sm-46 {
12737
+ margin-bottom: 46px !important; }
12738
+ .brz .brz-mb-sm-47 {
12739
+ margin-bottom: 47px !important; }
12740
+ .brz .brz-mb-sm-48 {
12741
+ margin-bottom: 48px !important; }
12742
+ .brz .brz-mb-sm-49 {
12743
+ margin-bottom: 49px !important; }
12744
+ .brz .brz-mb-sm-50 {
12745
+ margin-bottom: 50px !important; }
12746
+ .brz .brz-mb-sm-51 {
12747
+ margin-bottom: 51px !important; }
12748
+ .brz .brz-mb-sm-52 {
12749
+ margin-bottom: 52px !important; }
12750
+ .brz .brz-mb-sm-53 {
12751
+ margin-bottom: 53px !important; }
12752
+ .brz .brz-mb-sm-54 {
12753
+ margin-bottom: 54px !important; }
12754
+ .brz .brz-mb-sm-55 {
12755
+ margin-bottom: 55px !important; }
12756
+ .brz .brz-mb-sm-56 {
12757
+ margin-bottom: 56px !important; }
12758
+ .brz .brz-mb-sm-57 {
12759
+ margin-bottom: 57px !important; }
12760
+ .brz .brz-mb-sm-58 {
12761
+ margin-bottom: 58px !important; }
12762
+ .brz .brz-mb-sm-59 {
12763
+ margin-bottom: 59px !important; }
12764
+ .brz .brz-mb-sm-60 {
12765
+ margin-bottom: 60px !important; }
12766
+ .brz .brz-mb-sm-61 {
12767
+ margin-bottom: 61px !important; }
12768
+ .brz .brz-mb-sm-62 {
12769
+ margin-bottom: 62px !important; }
12770
+ .brz .brz-mb-sm-63 {
12771
+ margin-bottom: 63px !important; }
12772
+ .brz .brz-mb-sm-64 {
12773
+ margin-bottom: 64px !important; }
12774
+ .brz .brz-mb-sm-65 {
12775
+ margin-bottom: 65px !important; }
12776
+ .brz .brz-mb-sm-66 {
12777
+ margin-bottom: 66px !important; }
12778
+ .brz .brz-mb-sm-67 {
12779
+ margin-bottom: 67px !important; }
12780
+ .brz .brz-mb-sm-68 {
12781
+ margin-bottom: 68px !important; }
12782
+ .brz .brz-mb-sm-69 {
12783
+ margin-bottom: 69px !important; }
12784
+ .brz .brz-mb-sm-70 {
12785
+ margin-bottom: 70px !important; }
12786
+ .brz .brz-mb-sm-71 {
12787
+ margin-bottom: 71px !important; }
12788
+ .brz .brz-mb-sm-72 {
12789
+ margin-bottom: 72px !important; }
12790
+ .brz .brz-mb-sm-73 {
12791
+ margin-bottom: 73px !important; }
12792
+ .brz .brz-mb-sm-74 {
12793
+ margin-bottom: 74px !important; }
12794
+ .brz .brz-mb-sm-75 {
12795
+ margin-bottom: 75px !important; }
12796
+ .brz .brz-mb-sm-76 {
12797
+ margin-bottom: 76px !important; }
12798
+ .brz .brz-mb-sm-77 {
12799
+ margin-bottom: 77px !important; }
12800
+ .brz .brz-mb-sm-78 {
12801
+ margin-bottom: 78px !important; }
12802
+ .brz .brz-mb-sm-79 {
12803
+ margin-bottom: 79px !important; }
12804
+ .brz .brz-mb-sm-80 {
12805
+ margin-bottom: 80px !important; }
12806
+ .brz .brz-mb-sm-81 {
12807
+ margin-bottom: 81px !important; }
12808
+ .brz .brz-mb-sm-82 {
12809
+ margin-bottom: 82px !important; }
12810
+ .brz .brz-mb-sm-83 {
12811
+ margin-bottom: 83px !important; }
12812
+ .brz .brz-mb-sm-84 {
12813
+ margin-bottom: 84px !important; }
12814
+ .brz .brz-mb-sm-85 {
12815
+ margin-bottom: 85px !important; }
12816
+ .brz .brz-mb-sm-86 {
12817
+ margin-bottom: 86px !important; }
12818
+ .brz .brz-mb-sm-87 {
12819
+ margin-bottom: 87px !important; }
12820
+ .brz .brz-mb-sm-88 {
12821
+ margin-bottom: 88px !important; }
12822
+ .brz .brz-mb-sm-89 {
12823
+ margin-bottom: 89px !important; }
12824
+ .brz .brz-mb-sm-90 {
12825
+ margin-bottom: 90px !important; }
12826
+ .brz .brz-mb-sm-91 {
12827
+ margin-bottom: 91px !important; }
12828
+ .brz .brz-mb-sm-92 {
12829
+ margin-bottom: 92px !important; }
12830
+ .brz .brz-mb-sm-93 {
12831
+ margin-bottom: 93px !important; }
12832
+ .brz .brz-mb-sm-94 {
12833
+ margin-bottom: 94px !important; }
12834
+ .brz .brz-mb-sm-95 {
12835
+ margin-bottom: 95px !important; }
12836
+ .brz .brz-mb-sm-96 {
12837
+ margin-bottom: 96px !important; }
12838
+ .brz .brz-mb-sm-97 {
12839
+ margin-bottom: 97px !important; }
12840
+ .brz .brz-mb-sm-98 {
12841
+ margin-bottom: 98px !important; }
12842
+ .brz .brz-mb-sm-99 {
12843
+ margin-bottom: 99px !important; }
12844
+ .brz .brz-mb-sm-100 {
12845
+ margin-bottom: 100px !important; } }
12846
+ @media (max-width: 767px) {
12847
+ .brz .brz-mt-xs-0 {
12848
+ margin-top: 0px !important; }
12849
+ .brz .brz-mt-xs-1 {
12850
+ margin-top: 1px !important; }
12851
+ .brz .brz-mt-xs-2 {
12852
+ margin-top: 2px !important; }
12853
+ .brz .brz-mt-xs-3 {
12854
+ margin-top: 3px !important; }
12855
+ .brz .brz-mt-xs-4 {
12856
+ margin-top: 4px !important; }
12857
+ .brz .brz-mt-xs-5 {
12858
+ margin-top: 5px !important; }
12859
+ .brz .brz-mt-xs-6 {
12860
+ margin-top: 6px !important; }
12861
+ .brz .brz-mt-xs-7 {
12862
+ margin-top: 7px !important; }
12863
+ .brz .brz-mt-xs-8 {
12864
+ margin-top: 8px !important; }
12865
+ .brz .brz-mt-xs-9 {
12866
+ margin-top: 9px !important; }
12867
+ .brz .brz-mt-xs-10 {
12868
+ margin-top: 10px !important; }
12869
+ .brz .brz-mt-xs-11 {
12870
+ margin-top: 11px !important; }
12871
+ .brz .brz-mt-xs-12 {
12872
+ margin-top: 12px !important; }
12873
+ .brz .brz-mt-xs-13 {
12874
+ margin-top: 13px !important; }
12875
+ .brz .brz-mt-xs-14 {
12876
+ margin-top: 14px !important; }
12877
+ .brz .brz-mt-xs-15 {
12878
+ margin-top: 15px !important; }
12879
+ .brz .brz-mt-xs-16 {
12880
+ margin-top: 16px !important; }
12881
+ .brz .brz-mt-xs-17 {
12882
+ margin-top: 17px !important; }
12883
+ .brz .brz-mt-xs-18 {
12884
+ margin-top: 18px !important; }
12885
+ .brz .brz-mt-xs-19 {
12886
+ margin-top: 19px !important; }
12887
+ .brz .brz-mt-xs-20 {
12888
+ margin-top: 20px !important; }
12889
+ .brz .brz-mt-xs-21 {
12890
+ margin-top: 21px !important; }
12891
+ .brz .brz-mt-xs-22 {
12892
+ margin-top: 22px !important; }
12893
+ .brz .brz-mt-xs-23 {
12894
+ margin-top: 23px !important; }
12895
+ .brz .brz-mt-xs-24 {
12896
+ margin-top: 24px !important; }
12897
+ .brz .brz-mt-xs-25 {
12898
+ margin-top: 25px !important; }
12899
+ .brz .brz-mt-xs-26 {
12900
+ margin-top: 26px !important; }
12901
+ .brz .brz-mt-xs-27 {
12902
+ margin-top: 27px !important; }
12903
+ .brz .brz-mt-xs-28 {
12904
+ margin-top: 28px !important; }
12905
+ .brz .brz-mt-xs-29 {
12906
+ margin-top: 29px !important; }
12907
+ .brz .brz-mt-xs-30 {
12908
+ margin-top: 30px !important; }
12909
+ .brz .brz-mt-xs-31 {
12910
+ margin-top: 31px !important; }
12911
+ .brz .brz-mt-xs-32 {
12912
+ margin-top: 32px !important; }
12913
+ .brz .brz-mt-xs-33 {
12914
+ margin-top: 33px !important; }
12915
+ .brz .brz-mt-xs-34 {
12916
+ margin-top: 34px !important; }
12917
+ .brz .brz-mt-xs-35 {
12918
+ margin-top: 35px !important; }
12919
+ .brz .brz-mt-xs-36 {
12920
+ margin-top: 36px !important; }
12921
+ .brz .brz-mt-xs-37 {
12922
+ margin-top: 37px !important; }
12923
+ .brz .brz-mt-xs-38 {
12924
+ margin-top: 38px !important; }
12925
+ .brz .brz-mt-xs-39 {
12926
+ margin-top: 39px !important; }
12927
+ .brz .brz-mt-xs-40 {
12928
+ margin-top: 40px !important; }
12929
+ .brz .brz-mt-xs-41 {
12930
+ margin-top: 41px !important; }
12931
+ .brz .brz-mt-xs-42 {
12932
+ margin-top: 42px !important; }
12933
+ .brz .brz-mt-xs-43 {
12934
+ margin-top: 43px !important; }
12935
+ .brz .brz-mt-xs-44 {
12936
+ margin-top: 44px !important; }
12937
+ .brz .brz-mt-xs-45 {
12938
+ margin-top: 45px !important; }
12939
+ .brz .brz-mt-xs-46 {
12940
+ margin-top: 46px !important; }
12941
+ .brz .brz-mt-xs-47 {
12942
+ margin-top: 47px !important; }
12943
+ .brz .brz-mt-xs-48 {
12944
+ margin-top: 48px !important; }
12945
+ .brz .brz-mt-xs-49 {
12946
+ margin-top: 49px !important; }
12947
+ .brz .brz-mt-xs-50 {
12948
+ margin-top: 50px !important; }
12949
+ .brz .brz-mt-xs-51 {
12950
+ margin-top: 51px !important; }
12951
+ .brz .brz-mt-xs-52 {
12952
+ margin-top: 52px !important; }
12953
+ .brz .brz-mt-xs-53 {
12954
+ margin-top: 53px !important; }
12955
+ .brz .brz-mt-xs-54 {
12956
+ margin-top: 54px !important; }
12957
+ .brz .brz-mt-xs-55 {
12958
+ margin-top: 55px !important; }
12959
+ .brz .brz-mt-xs-56 {
12960
+ margin-top: 56px !important; }
12961
+ .brz .brz-mt-xs-57 {
12962
+ margin-top: 57px !important; }
12963
+ .brz .brz-mt-xs-58 {
12964
+ margin-top: 58px !important; }
12965
+ .brz .brz-mt-xs-59 {
12966
+ margin-top: 59px !important; }
12967
+ .brz .brz-mt-xs-60 {
12968
+ margin-top: 60px !important; }
12969
+ .brz .brz-mt-xs-61 {
12970
+ margin-top: 61px !important; }
12971
+ .brz .brz-mt-xs-62 {
12972
+ margin-top: 62px !important; }
12973
+ .brz .brz-mt-xs-63 {
12974
+ margin-top: 63px !important; }
12975
+ .brz .brz-mt-xs-64 {
12976
+ margin-top: 64px !important; }
12977
+ .brz .brz-mt-xs-65 {
12978
+ margin-top: 65px !important; }
12979
+ .brz .brz-mt-xs-66 {
12980
+ margin-top: 66px !important; }
12981
+ .brz .brz-mt-xs-67 {
12982
+ margin-top: 67px !important; }
12983
+ .brz .brz-mt-xs-68 {
12984
+ margin-top: 68px !important; }
12985
+ .brz .brz-mt-xs-69 {
12986
+ margin-top: 69px !important; }
12987
+ .brz .brz-mt-xs-70 {
12988
+ margin-top: 70px !important; }
12989
+ .brz .brz-mt-xs-71 {
12990
+ margin-top: 71px !important; }
12991
+ .brz .brz-mt-xs-72 {
12992
+ margin-top: 72px !important; }
12993
+ .brz .brz-mt-xs-73 {
12994
+ margin-top: 73px !important; }
12995
+ .brz .brz-mt-xs-74 {
12996
+ margin-top: 74px !important; }
12997
+ .brz .brz-mt-xs-75 {
12998
+ margin-top: 75px !important; }
12999
+ .brz .brz-mt-xs-76 {
13000
+ margin-top: 76px !important; }
13001
+ .brz .brz-mt-xs-77 {
13002
+ margin-top: 77px !important; }
13003
+ .brz .brz-mt-xs-78 {
13004
+ margin-top: 78px !important; }
13005
+ .brz .brz-mt-xs-79 {
13006
+ margin-top: 79px !important; }
13007
+ .brz .brz-mt-xs-80 {
13008
+ margin-top: 80px !important; }
13009
+ .brz .brz-mt-xs-81 {
13010
+ margin-top: 81px !important; }
13011
+ .brz .brz-mt-xs-82 {
13012
+ margin-top: 82px !important; }
13013
+ .brz .brz-mt-xs-83 {
13014
+ margin-top: 83px !important; }
13015
+ .brz .brz-mt-xs-84 {
13016
+ margin-top: 84px !important; }
13017
+ .brz .brz-mt-xs-85 {
13018
+ margin-top: 85px !important; }
13019
+ .brz .brz-mt-xs-86 {
13020
+ margin-top: 86px !important; }
13021
+ .brz .brz-mt-xs-87 {
13022
+ margin-top: 87px !important; }
13023
+ .brz .brz-mt-xs-88 {
13024
+ margin-top: 88px !important; }
13025
+ .brz .brz-mt-xs-89 {
13026
+ margin-top: 89px !important; }
13027
+ .brz .brz-mt-xs-90 {
13028
+ margin-top: 90px !important; }
13029
+ .brz .brz-mt-xs-91 {
13030
+ margin-top: 91px !important; }
13031
+ .brz .brz-mt-xs-92 {
13032
+ margin-top: 92px !important; }
13033
+ .brz .brz-mt-xs-93 {
13034
+ margin-top: 93px !important; }
13035
+ .brz .brz-mt-xs-94 {
13036
+ margin-top: 94px !important; }
13037
+ .brz .brz-mt-xs-95 {
13038
+ margin-top: 95px !important; }
13039
+ .brz .brz-mt-xs-96 {
13040
+ margin-top: 96px !important; }
13041
+ .brz .brz-mt-xs-97 {
13042
+ margin-top: 97px !important; }
13043
+ .brz .brz-mt-xs-98 {
13044
+ margin-top: 98px !important; }
13045
+ .brz .brz-mt-xs-99 {
13046
+ margin-top: 99px !important; }
13047
+ .brz .brz-mt-xs-100 {
13048
+ margin-top: 100px !important; }
13049
+ .brz .brz-mb-xs-0 {
13050
+ margin-bottom: 0px !important; }
13051
+ .brz .brz-mb-xs-1 {
13052
+ margin-bottom: 1px !important; }
13053
+ .brz .brz-mb-xs-2 {
13054
+ margin-bottom: 2px !important; }
13055
+ .brz .brz-mb-xs-3 {
13056
+ margin-bottom: 3px !important; }
13057
+ .brz .brz-mb-xs-4 {
13058
+ margin-bottom: 4px !important; }
13059
+ .brz .brz-mb-xs-5 {
13060
+ margin-bottom: 5px !important; }
13061
+ .brz .brz-mb-xs-6 {
13062
+ margin-bottom: 6px !important; }
13063
+ .brz .brz-mb-xs-7 {
13064
+ margin-bottom: 7px !important; }
13065
+ .brz .brz-mb-xs-8 {
13066
+ margin-bottom: 8px !important; }
13067
+ .brz .brz-mb-xs-9 {
13068
+ margin-bottom: 9px !important; }
13069
+ .brz .brz-mb-xs-10 {
13070
+ margin-bottom: 10px !important; }
13071
+ .brz .brz-mb-xs-11 {
13072
+ margin-bottom: 11px !important; }
13073
+ .brz .brz-mb-xs-12 {
13074
+ margin-bottom: 12px !important; }
13075
+ .brz .brz-mb-xs-13 {
13076
+ margin-bottom: 13px !important; }
13077
+ .brz .brz-mb-xs-14 {
13078
+ margin-bottom: 14px !important; }
13079
+ .brz .brz-mb-xs-15 {
13080
+ margin-bottom: 15px !important; }
13081
+ .brz .brz-mb-xs-16 {
13082
+ margin-bottom: 16px !important; }
13083
+ .brz .brz-mb-xs-17 {
13084
+ margin-bottom: 17px !important; }
13085
+ .brz .brz-mb-xs-18 {
13086
+ margin-bottom: 18px !important; }
13087
+ .brz .brz-mb-xs-19 {
13088
+ margin-bottom: 19px !important; }
13089
+ .brz .brz-mb-xs-20 {
13090
+ margin-bottom: 20px !important; }
13091
+ .brz .brz-mb-xs-21 {
13092
+ margin-bottom: 21px !important; }
13093
+ .brz .brz-mb-xs-22 {
13094
+ margin-bottom: 22px !important; }
13095
+ .brz .brz-mb-xs-23 {
13096
+ margin-bottom: 23px !important; }
13097
+ .brz .brz-mb-xs-24 {
13098
+ margin-bottom: 24px !important; }
13099
+ .brz .brz-mb-xs-25 {
13100
+ margin-bottom: 25px !important; }
13101
+ .brz .brz-mb-xs-26 {
13102
+ margin-bottom: 26px !important; }
13103
+ .brz .brz-mb-xs-27 {
13104
+ margin-bottom: 27px !important; }
13105
+ .brz .brz-mb-xs-28 {
13106
+ margin-bottom: 28px !important; }
13107
+ .brz .brz-mb-xs-29 {
13108
+ margin-bottom: 29px !important; }
13109
+ .brz .brz-mb-xs-30 {
13110
+ margin-bottom: 30px !important; }
13111
+ .brz .brz-mb-xs-31 {
13112
+ margin-bottom: 31px !important; }
13113
+ .brz .brz-mb-xs-32 {
13114
+ margin-bottom: 32px !important; }
13115
+ .brz .brz-mb-xs-33 {
13116
+ margin-bottom: 33px !important; }
13117
+ .brz .brz-mb-xs-34 {
13118
+ margin-bottom: 34px !important; }
13119
+ .brz .brz-mb-xs-35 {
13120
+ margin-bottom: 35px !important; }
13121
+ .brz .brz-mb-xs-36 {
13122
+ margin-bottom: 36px !important; }
13123
+ .brz .brz-mb-xs-37 {
13124
+ margin-bottom: 37px !important; }
13125
+ .brz .brz-mb-xs-38 {
13126
+ margin-bottom: 38px !important; }
13127
+ .brz .brz-mb-xs-39 {
13128
+ margin-bottom: 39px !important; }
13129
+ .brz .brz-mb-xs-40 {
13130
+ margin-bottom: 40px !important; }
13131
+ .brz .brz-mb-xs-41 {
13132
+ margin-bottom: 41px !important; }
13133
+ .brz .brz-mb-xs-42 {
13134
+ margin-bottom: 42px !important; }
13135
+ .brz .brz-mb-xs-43 {
13136
+ margin-bottom: 43px !important; }
13137
+ .brz .brz-mb-xs-44 {
13138
+ margin-bottom: 44px !important; }
13139
+ .brz .brz-mb-xs-45 {
13140
+ margin-bottom: 45px !important; }
13141
+ .brz .brz-mb-xs-46 {
13142
+ margin-bottom: 46px !important; }
13143
+ .brz .brz-mb-xs-47 {
13144
+ margin-bottom: 47px !important; }
13145
+ .brz .brz-mb-xs-48 {
13146
+ margin-bottom: 48px !important; }
13147
+ .brz .brz-mb-xs-49 {
13148
+ margin-bottom: 49px !important; }
13149
+ .brz .brz-mb-xs-50 {
13150
+ margin-bottom: 50px !important; }
13151
+ .brz .brz-mb-xs-51 {
13152
+ margin-bottom: 51px !important; }
13153
+ .brz .brz-mb-xs-52 {
13154
+ margin-bottom: 52px !important; }
13155
+ .brz .brz-mb-xs-53 {
13156
+ margin-bottom: 53px !important; }
13157
+ .brz .brz-mb-xs-54 {
13158
+ margin-bottom: 54px !important; }
13159
+ .brz .brz-mb-xs-55 {
13160
+ margin-bottom: 55px !important; }
13161
+ .brz .brz-mb-xs-56 {
13162
+ margin-bottom: 56px !important; }
13163
+ .brz .brz-mb-xs-57 {
13164
+ margin-bottom: 57px !important; }
13165
+ .brz .brz-mb-xs-58 {
13166
+ margin-bottom: 58px !important; }
13167
+ .brz .brz-mb-xs-59 {
13168
+ margin-bottom: 59px !important; }
13169
+ .brz .brz-mb-xs-60 {
13170
+ margin-bottom: 60px !important; }
13171
+ .brz .brz-mb-xs-61 {
13172
+ margin-bottom: 61px !important; }
13173
+ .brz .brz-mb-xs-62 {
13174
+ margin-bottom: 62px !important; }
13175
+ .brz .brz-mb-xs-63 {
13176
+ margin-bottom: 63px !important; }
13177
+ .brz .brz-mb-xs-64 {
13178
+ margin-bottom: 64px !important; }
13179
+ .brz .brz-mb-xs-65 {
13180
+ margin-bottom: 65px !important; }
13181
+ .brz .brz-mb-xs-66 {
13182
+ margin-bottom: 66px !important; }
13183
+ .brz .brz-mb-xs-67 {
13184
+ margin-bottom: 67px !important; }
13185
+ .brz .brz-mb-xs-68 {
13186
+ margin-bottom: 68px !important; }
13187
+ .brz .brz-mb-xs-69 {
13188
+ margin-bottom: 69px !important; }
13189
+ .brz .brz-mb-xs-70 {
13190
+ margin-bottom: 70px !important; }
13191
+ .brz .brz-mb-xs-71 {
13192
+ margin-bottom: 71px !important; }
13193
+ .brz .brz-mb-xs-72 {
13194
+ margin-bottom: 72px !important; }
13195
+ .brz .brz-mb-xs-73 {
13196
+ margin-bottom: 73px !important; }
13197
+ .brz .brz-mb-xs-74 {
13198
+ margin-bottom: 74px !important; }
13199
+ .brz .brz-mb-xs-75 {
13200
+ margin-bottom: 75px !important; }
13201
+ .brz .brz-mb-xs-76 {
13202
+ margin-bottom: 76px !important; }
13203
+ .brz .brz-mb-xs-77 {
13204
+ margin-bottom: 77px !important; }
13205
+ .brz .brz-mb-xs-78 {
13206
+ margin-bottom: 78px !important; }
13207
+ .brz .brz-mb-xs-79 {
13208
+ margin-bottom: 79px !important; }
13209
+ .brz .brz-mb-xs-80 {
13210
+ margin-bottom: 80px !important; }
13211
+ .brz .brz-mb-xs-81 {
13212
+ margin-bottom: 81px !important; }
13213
+ .brz .brz-mb-xs-82 {
13214
+ margin-bottom: 82px !important; }
13215
+ .brz .brz-mb-xs-83 {
13216
+ margin-bottom: 83px !important; }
13217
+ .brz .brz-mb-xs-84 {
13218
+ margin-bottom: 84px !important; }
13219
+ .brz .brz-mb-xs-85 {
13220
+ margin-bottom: 85px !important; }
13221
+ .brz .brz-mb-xs-86 {
13222
+ margin-bottom: 86px !important; }
13223
+ .brz .brz-mb-xs-87 {
13224
+ margin-bottom: 87px !important; }
13225
+ .brz .brz-mb-xs-88 {
13226
+ margin-bottom: 88px !important; }
13227
+ .brz .brz-mb-xs-89 {
13228
+ margin-bottom: 89px !important; }
13229
+ .brz .brz-mb-xs-90 {
13230
+ margin-bottom: 90px !important; }
13231
+ .brz .brz-mb-xs-91 {
13232
+ margin-bottom: 91px !important; }
13233
+ .brz .brz-mb-xs-92 {
13234
+ margin-bottom: 92px !important; }
13235
+ .brz .brz-mb-xs-93 {
13236
+ margin-bottom: 93px !important; }
13237
+ .brz .brz-mb-xs-94 {
13238
+ margin-bottom: 94px !important; }
13239
+ .brz .brz-mb-xs-95 {
13240
+ margin-bottom: 95px !important; }
13241
+ .brz .brz-mb-xs-96 {
13242
+ margin-bottom: 96px !important; }
13243
+ .brz .brz-mb-xs-97 {
13244
+ margin-bottom: 97px !important; }
13245
+ .brz .brz-mb-xs-98 {
13246
+ margin-bottom: 98px !important; }
13247
+ .brz .brz-mb-xs-99 {
13248
+ margin-bottom: 99px !important; }
13249
+ .brz .brz-mb-xs-100 {
13250
+ margin-bottom: 100px !important; } }
13251
+ .brz .brz-text-lg-left {
13252
+ text-align: left !important;
13253
+ -webkit-box-pack: start !important;
13254
+ -ms-flex-pack: start !important;
13255
+ justify-content: flex-start !important; }
13256
+ .brz .brz-text-lg-right {
13257
+ text-align: right !important;
13258
+ -webkit-box-pack: end !important;
13259
+ -ms-flex-pack: end !important;
13260
+ justify-content: flex-end !important; }
13261
+ .brz .brz-text-lg-center {
13262
+ text-align: center !important;
13263
+ -webkit-box-pack: center !important;
13264
+ -ms-flex-pack: center !important;
13265
+ justify-content: center !important; }
13266
+ .brz .brz-text-lg-justify {
13267
+ text-align: justify !important; }
13268
+
13269
+ @media (min-width: 768px) and (max-width: 991px) {
13270
+ .brz .brz-text-sm-left {
13271
+ text-align: left !important;
13272
+ -webkit-box-pack: start !important;
13273
+ -ms-flex-pack: start !important;
13274
+ justify-content: flex-start !important; }
13275
+ .brz .brz-text-sm-right {
13276
+ text-align: right !important;
13277
+ -webkit-box-pack: end !important;
13278
+ -ms-flex-pack: end !important;
13279
+ justify-content: flex-end !important; }
13280
+ .brz .brz-text-sm-center {
13281
+ text-align: center !important;
13282
+ -webkit-box-pack: center !important;
13283
+ -ms-flex-pack: center !important;
13284
+ justify-content: center !important; }
13285
+ .brz .brz-text-sm-justify {
13286
+ text-align: justify !important; } }
13287
+ @media (max-width: 767px) {
13288
+ .brz .brz-text-xs-left {
13289
+ text-align: left !important;
13290
+ -webkit-box-pack: start !important;
13291
+ -ms-flex-pack: start !important;
13292
+ justify-content: flex-start !important; }
13293
+ .brz .brz-text-xs-right {
13294
+ text-align: right !important;
13295
+ -webkit-box-pack: end !important;
13296
+ -ms-flex-pack: end !important;
13297
+ justify-content: flex-end !important; }
13298
+ .brz .brz-text-xs-center {
13299
+ text-align: center !important;
13300
+ -webkit-box-pack: center !important;
13301
+ -ms-flex-pack: center !important;
13302
+ justify-content: center !important; }
13303
+ .brz .brz-text-xs-justify {
13304
+ text-align: justify !important; } }
13305
+
13306
+ @-webkit-keyframes bounce {
13307
+ from,
13308
+ 20%,
13309
+ 53%,
13310
+ 80%,
13311
+ to {
13312
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13313
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13314
+ -webkit-transform: translate3d(0, 0, 0);
13315
+ transform: translate3d(0, 0, 0); }
13316
+ 40%,
13317
+ 43% {
13318
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13319
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13320
+ -webkit-transform: translate3d(0, -30px, 0);
13321
+ transform: translate3d(0, -30px, 0); }
13322
+ 70% {
13323
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13324
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13325
+ -webkit-transform: translate3d(0, -15px, 0);
13326
+ transform: translate3d(0, -15px, 0); }
13327
+ 90% {
13328
+ -webkit-transform: translate3d(0, -4px, 0);
13329
+ transform: translate3d(0, -4px, 0); } }
13330
+
13331
+ @keyframes bounce {
13332
+ from,
13333
+ 20%,
13334
+ 53%,
13335
+ 80%,
13336
+ to {
13337
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13338
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13339
+ -webkit-transform: translate3d(0, 0, 0);
13340
+ transform: translate3d(0, 0, 0); }
13341
+ 40%,
13342
+ 43% {
13343
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13344
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13345
+ -webkit-transform: translate3d(0, -30px, 0);
13346
+ transform: translate3d(0, -30px, 0); }
13347
+ 70% {
13348
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13349
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
13350
+ -webkit-transform: translate3d(0, -15px, 0);
13351
+ transform: translate3d(0, -15px, 0); }
13352
+ 90% {
13353
+ -webkit-transform: translate3d(0, -4px, 0);
13354
+ transform: translate3d(0, -4px, 0); } }
13355
+ .brz .bounce {
13356
+ -webkit-animation-name: bounce;
13357
+ animation-name: bounce;
13358
+ -webkit-transform-origin: center bottom;
13359
+ transform-origin: center bottom; }
13360
+
13361
+ @-webkit-keyframes flash {
13362
+ from,
13363
+ 50%,
13364
+ to {
13365
+ opacity: 1; }
13366
+ 25%,
13367
+ 75% {
13368
+ opacity: 0; } }
13369
+
13370
+ @keyframes flash {
13371
+ from,
13372
+ 50%,
13373
+ to {
13374
+ opacity: 1; }
13375
+ 25%,
13376
+ 75% {
13377
+ opacity: 0; } }
13378
+ .brz .flash {
13379
+ -webkit-animation-name: flash;
13380
+ animation-name: flash; }
13381
+
13382
+ @-webkit-keyframes pulse {
13383
+ from {
13384
+ -webkit-transform: scale3d(1, 1, 1);
13385
+ transform: scale3d(1, 1, 1); }
13386
+ 50% {
13387
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
13388
+ transform: scale3d(1.05, 1.05, 1.05); }
13389
+ to {
13390
+ -webkit-transform: scale3d(1, 1, 1);
13391
+ transform: scale3d(1, 1, 1); } }
13392
+
13393
+ @keyframes pulse {
13394
+ from {
13395
+ -webkit-transform: scale3d(1, 1, 1);
13396
+ transform: scale3d(1, 1, 1); }
13397
+ 50% {
13398
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
13399
+ transform: scale3d(1.05, 1.05, 1.05); }
13400
+ to {
13401
+ -webkit-transform: scale3d(1, 1, 1);
13402
+ transform: scale3d(1, 1, 1); } }
13403
+ .brz .pulse {
13404
+ -webkit-animation-name: pulse;
13405
+ animation-name: pulse; }
13406
+
13407
+ @-webkit-keyframes rubberBand {
13408
+ from {
13409
+ -webkit-transform: scale3d(1, 1, 1);
13410
+ transform: scale3d(1, 1, 1); }
13411
+ 30% {
13412
+ -webkit-transform: scale3d(1.25, 0.75, 1);
13413
+ transform: scale3d(1.25, 0.75, 1); }
13414
+ 40% {
13415
+ -webkit-transform: scale3d(0.75, 1.25, 1);
13416
+ transform: scale3d(0.75, 1.25, 1); }
13417
+ 50% {
13418
+ -webkit-transform: scale3d(1.15, 0.85, 1);
13419
+ transform: scale3d(1.15, 0.85, 1); }
13420
+ 65% {
13421
+ -webkit-transform: scale3d(0.95, 1.05, 1);
13422
+ transform: scale3d(0.95, 1.05, 1); }
13423
+ 75% {
13424
+ -webkit-transform: scale3d(1.05, 0.95, 1);
13425
+ transform: scale3d(1.05, 0.95, 1); }
13426
+ to {
13427
+ -webkit-transform: scale3d(1, 1, 1);
13428
+ transform: scale3d(1, 1, 1); } }
13429
+
13430
+ @keyframes rubberBand {
13431
+ from {
13432
+ -webkit-transform: scale3d(1, 1, 1);
13433
+ transform: scale3d(1, 1, 1); }
13434
+ 30% {
13435
+ -webkit-transform: scale3d(1.25, 0.75, 1);
13436
+ transform: scale3d(1.25, 0.75, 1); }
13437
+ 40% {
13438
+ -webkit-transform: scale3d(0.75, 1.25, 1);
13439
+ transform: scale3d(0.75, 1.25, 1); }
13440
+ 50% {
13441
+ -webkit-transform: scale3d(1.15, 0.85, 1);
13442
+ transform: scale3d(1.15, 0.85, 1); }
13443
+ 65% {
13444
+ -webkit-transform: scale3d(0.95, 1.05, 1);
13445
+ transform: scale3d(0.95, 1.05, 1); }
13446
+ 75% {
13447
+ -webkit-transform: scale3d(1.05, 0.95, 1);
13448
+ transform: scale3d(1.05, 0.95, 1); }
13449
+ to {
13450
+ -webkit-transform: scale3d(1, 1, 1);
13451
+ transform: scale3d(1, 1, 1); } }
13452
+ .brz .rubberBand {
13453
+ -webkit-animation-name: rubberBand;
13454
+ animation-name: rubberBand; }
13455
+
13456
+ @-webkit-keyframes shake {
13457
+ from,
13458
+ to {
13459
+ -webkit-transform: translate3d(0, 0, 0);
13460
+ transform: translate3d(0, 0, 0); }
13461
+ 10%,
13462
+ 30%,
13463
+ 50%,
13464
+ 70%,
13465
+ 90% {
13466
+ -webkit-transform: translate3d(-10px, 0, 0);
13467
+ transform: translate3d(-10px, 0, 0); }
13468
+ 20%,
13469
+ 40%,
13470
+ 60%,
13471
+ 80% {
13472
+ -webkit-transform: translate3d(10px, 0, 0);
13473
+ transform: translate3d(10px, 0, 0); } }
13474
+
13475
+ @keyframes shake {
13476
+ from,
13477
+ to {
13478
+ -webkit-transform: translate3d(0, 0, 0);
13479
+ transform: translate3d(0, 0, 0); }
13480
+ 10%,
13481
+ 30%,
13482
+ 50%,
13483
+ 70%,
13484
+ 90% {
13485
+ -webkit-transform: translate3d(-10px, 0, 0);
13486
+ transform: translate3d(-10px, 0, 0); }
13487
+ 20%,
13488
+ 40%,
13489
+ 60%,
13490
+ 80% {
13491
+ -webkit-transform: translate3d(10px, 0, 0);
13492
+ transform: translate3d(10px, 0, 0); } }
13493
+ .brz .shake {
13494
+ -webkit-animation-name: shake;
13495
+ animation-name: shake; }
13496
+
13497
+ @-webkit-keyframes headShake {
13498
+ 0% {
13499
+ -webkit-transform: translateX(0);
13500
+ transform: translateX(0); }
13501
+ 6.5% {
13502
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
13503
+ transform: translateX(-6px) rotateY(-9deg); }
13504
+ 18.5% {
13505
+ -webkit-transform: translateX(5px) rotateY(7deg);
13506
+ transform: translateX(5px) rotateY(7deg); }
13507
+ 31.5% {
13508
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
13509
+ transform: translateX(-3px) rotateY(-5deg); }
13510
+ 43.5% {
13511
+ -webkit-transform: translateX(2px) rotateY(3deg);
13512
+ transform: translateX(2px) rotateY(3deg); }
13513
+ 50% {
13514
+ -webkit-transform: translateX(0);
13515
+ transform: translateX(0); } }
13516
+
13517
+ @keyframes headShake {
13518
+ 0% {
13519
+ -webkit-transform: translateX(0);
13520
+ transform: translateX(0); }
13521
+ 6.5% {
13522
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
13523
+ transform: translateX(-6px) rotateY(-9deg); }
13524
+ 18.5% {
13525
+ -webkit-transform: translateX(5px) rotateY(7deg);
13526
+ transform: translateX(5px) rotateY(7deg); }
13527
+ 31.5% {
13528
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
13529
+ transform: translateX(-3px) rotateY(-5deg); }
13530
+ 43.5% {
13531
+ -webkit-transform: translateX(2px) rotateY(3deg);
13532
+ transform: translateX(2px) rotateY(3deg); }
13533
+ 50% {
13534
+ -webkit-transform: translateX(0);
13535
+ transform: translateX(0); } }
13536
+ .brz .headShake {
13537
+ -webkit-animation-timing-function: ease-in-out;
13538
+ animation-timing-function: ease-in-out;
13539
+ -webkit-animation-name: headShake;
13540
+ animation-name: headShake; }
13541
+
13542
+ @-webkit-keyframes swing {
13543
+ 20% {
13544
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
13545
+ transform: rotate3d(0, 0, 1, 15deg); }
13546
+ 40% {
13547
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
13548
+ transform: rotate3d(0, 0, 1, -10deg); }
13549
+ 60% {
13550
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
13551
+ transform: rotate3d(0, 0, 1, 5deg); }
13552
+ 80% {
13553
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
13554
+ transform: rotate3d(0, 0, 1, -5deg); }
13555
+ to {
13556
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
13557
+ transform: rotate3d(0, 0, 1, 0deg); } }
13558
+
13559
+ @keyframes swing {
13560
+ 20% {
13561
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
13562
+ transform: rotate3d(0, 0, 1, 15deg); }
13563
+ 40% {
13564
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
13565
+ transform: rotate3d(0, 0, 1, -10deg); }
13566
+ 60% {
13567
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
13568
+ transform: rotate3d(0, 0, 1, 5deg); }
13569
+ 80% {
13570
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
13571
+ transform: rotate3d(0, 0, 1, -5deg); }
13572
+ to {
13573
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
13574
+ transform: rotate3d(0, 0, 1, 0deg); } }
13575
+ .brz .swing {
13576
+ -webkit-transform-origin: top center;
13577
+ transform-origin: top center;
13578
+ -webkit-animation-name: swing;
13579
+ animation-name: swing; }
13580
+
13581
+ @-webkit-keyframes tada {
13582
+ from {
13583
+ -webkit-transform: scale3d(1, 1, 1);
13584
+ transform: scale3d(1, 1, 1); }
13585
+ 10%,
13586
+ 20% {
13587
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
13588
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
13589
+ 30%,
13590
+ 50%,
13591
+ 70%,
13592
+ 90% {
13593
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
13594
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
13595
+ 40%,
13596
+ 60%,
13597
+ 80% {
13598
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
13599
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
13600
+ to {
13601
+ -webkit-transform: scale3d(1, 1, 1);
13602
+ transform: scale3d(1, 1, 1); } }
13603
+
13604
+ @keyframes tada {
13605
+ from {
13606
+ -webkit-transform: scale3d(1, 1, 1);
13607
+ transform: scale3d(1, 1, 1); }
13608
+ 10%,
13609
+ 20% {
13610
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
13611
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
13612
+ 30%,
13613
+ 50%,
13614
+ 70%,
13615
+ 90% {
13616
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
13617
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
13618
+ 40%,
13619
+ 60%,
13620
+ 80% {
13621
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
13622
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
13623
+ to {
13624
+ -webkit-transform: scale3d(1, 1, 1);
13625
+ transform: scale3d(1, 1, 1); } }
13626
+ .brz .tada {
13627
+ -webkit-animation-name: tada;
13628
+ animation-name: tada; }
13629
+
13630
+ @-webkit-keyframes wobble {
13631
+ from {
13632
+ -webkit-transform: translate3d(0, 0, 0);
13633
+ transform: translate3d(0, 0, 0); }
13634
+ 15% {
13635
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
13636
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
13637
+ 30% {
13638
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
13639
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
13640
+ 45% {
13641
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
13642
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
13643
+ 60% {
13644
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
13645
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
13646
+ 75% {
13647
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
13648
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
13649
+ to {
13650
+ -webkit-transform: translate3d(0, 0, 0);
13651
+ transform: translate3d(0, 0, 0); } }
13652
+
13653
+ @keyframes wobble {
13654
+ from {
13655
+ -webkit-transform: translate3d(0, 0, 0);
13656
+ transform: translate3d(0, 0, 0); }
13657
+ 15% {
13658
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
13659
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
13660
+ 30% {
13661
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
13662
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
13663
+ 45% {
13664
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
13665
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
13666
+ 60% {
13667
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
13668
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
13669
+ 75% {
13670
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
13671
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
13672
+ to {
13673
+ -webkit-transform: translate3d(0, 0, 0);
13674
+ transform: translate3d(0, 0, 0); } }
13675
+ .brz .wobble {
13676
+ -webkit-animation-name: wobble;
13677
+ animation-name: wobble; }
13678
+
13679
+ @-webkit-keyframes jello {
13680
+ from,
13681
+ 11.1%,
13682
+ to {
13683
+ -webkit-transform: translate3d(0, 0, 0);
13684
+ transform: translate3d(0, 0, 0); }
13685
+ 22.2% {
13686
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
13687
+ transform: skewX(-12.5deg) skewY(-12.5deg); }
13688
+ 33.3% {
13689
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
13690
+ transform: skewX(6.25deg) skewY(6.25deg); }
13691
+ 44.4% {
13692
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
13693
+ transform: skewX(-3.125deg) skewY(-3.125deg); }
13694
+ 55.5% {
13695
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
13696
+ transform: skewX(1.5625deg) skewY(1.5625deg); }
13697
+ 66.6% {
13698
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
13699
+ transform: skewX(-0.78125deg) skewY(-0.78125deg); }
13700
+ 77.7% {
13701
+ -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
13702
+ transform: skewX(0.39062deg) skewY(0.39062deg); }
13703
+ 88.8% {
13704
+ -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
13705
+ transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
13706
+
13707
+ @keyframes jello {
13708
+ from,
13709
+ 11.1%,
13710
+ to {
13711
+ -webkit-transform: translate3d(0, 0, 0);
13712
+ transform: translate3d(0, 0, 0); }
13713
+ 22.2% {
13714
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
13715
+ transform: skewX(-12.5deg) skewY(-12.5deg); }
13716
+ 33.3% {
13717
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
13718
+ transform: skewX(6.25deg) skewY(6.25deg); }
13719
+ 44.4% {
13720
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
13721
+ transform: skewX(-3.125deg) skewY(-3.125deg); }
13722
+ 55.5% {
13723
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
13724
+ transform: skewX(1.5625deg) skewY(1.5625deg); }
13725
+ 66.6% {
13726
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
13727
+ transform: skewX(-0.78125deg) skewY(-0.78125deg); }
13728
+ 77.7% {
13729
+ -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
13730
+ transform: skewX(0.39062deg) skewY(0.39062deg); }
13731
+ 88.8% {
13732
+ -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
13733
+ transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
13734
+ .brz .jello {
13735
+ -webkit-animation-name: jello;
13736
+ animation-name: jello;
13737
+ -webkit-transform-origin: center;
13738
+ transform-origin: center; }
13739
+
13740
+ @-webkit-keyframes heartBeat {
13741
+ 0% {
13742
+ -webkit-transform: scale(1);
13743
+ transform: scale(1); }
13744
+ 14% {
13745
+ -webkit-transform: scale(1.3);
13746
+ transform: scale(1.3); }
13747
+ 28% {
13748
+ -webkit-transform: scale(1);
13749
+ transform: scale(1); }
13750
+ 42% {
13751
+ -webkit-transform: scale(1.3);
13752
+ transform: scale(1.3); }
13753
+ 70% {
13754
+ -webkit-transform: scale(1);
13755
+ transform: scale(1); } }
13756
+
13757
+ @keyframes heartBeat {
13758
+ 0% {
13759
+ -webkit-transform: scale(1);
13760
+ transform: scale(1); }
13761
+ 14% {
13762
+ -webkit-transform: scale(1.3);
13763
+ transform: scale(1.3); }
13764
+ 28% {
13765
+ -webkit-transform: scale(1);
13766
+ transform: scale(1); }
13767
+ 42% {
13768
+ -webkit-transform: scale(1.3);
13769
+ transform: scale(1.3); }
13770
+ 70% {
13771
+ -webkit-transform: scale(1);
13772
+ transform: scale(1); } }
13773
+ .brz .heartBeat {
13774
+ -webkit-animation-name: heartBeat;
13775
+ animation-name: heartBeat;
13776
+ -webkit-animation-duration: 1.3s;
13777
+ animation-duration: 1.3s;
13778
+ -webkit-animation-timing-function: ease-in-out;
13779
+ animation-timing-function: ease-in-out; }
13780
+
13781
+ @-webkit-keyframes bounceIn {
13782
+ from,
13783
+ 20%,
13784
+ 40%,
13785
+ 60%,
13786
+ 80%,
13787
+ to {
13788
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13789
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13790
+ 0% {
13791
+ opacity: 0;
13792
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
13793
+ transform: scale3d(0.3, 0.3, 0.3); }
13794
+ 20% {
13795
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
13796
+ transform: scale3d(1.1, 1.1, 1.1); }
13797
+ 40% {
13798
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
13799
+ transform: scale3d(0.9, 0.9, 0.9); }
13800
+ 60% {
13801
+ opacity: 1;
13802
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
13803
+ transform: scale3d(1.03, 1.03, 1.03); }
13804
+ 80% {
13805
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
13806
+ transform: scale3d(0.97, 0.97, 0.97); }
13807
+ to {
13808
+ opacity: 1;
13809
+ -webkit-transform: scale3d(1, 1, 1);
13810
+ transform: scale3d(1, 1, 1); } }
13811
+
13812
+ @keyframes bounceIn {
13813
+ from,
13814
+ 20%,
13815
+ 40%,
13816
+ 60%,
13817
+ 80%,
13818
+ to {
13819
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13820
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13821
+ 0% {
13822
+ opacity: 0;
13823
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
13824
+ transform: scale3d(0.3, 0.3, 0.3); }
13825
+ 20% {
13826
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
13827
+ transform: scale3d(1.1, 1.1, 1.1); }
13828
+ 40% {
13829
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
13830
+ transform: scale3d(0.9, 0.9, 0.9); }
13831
+ 60% {
13832
+ opacity: 1;
13833
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
13834
+ transform: scale3d(1.03, 1.03, 1.03); }
13835
+ 80% {
13836
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
13837
+ transform: scale3d(0.97, 0.97, 0.97); }
13838
+ to {
13839
+ opacity: 1;
13840
+ -webkit-transform: scale3d(1, 1, 1);
13841
+ transform: scale3d(1, 1, 1); } }
13842
+ .brz .bounceIn {
13843
+ -webkit-animation-duration: 0.75s;
13844
+ animation-duration: 0.75s;
13845
+ -webkit-animation-name: bounceIn;
13846
+ animation-name: bounceIn; }
13847
+
13848
+ @-webkit-keyframes bounceInDown {
13849
+ from,
13850
+ 60%,
13851
+ 75%,
13852
+ 90%,
13853
+ to {
13854
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13855
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13856
+ 0% {
13857
+ opacity: 0;
13858
+ -webkit-transform: translate3d(0, -3000px, 0);
13859
+ transform: translate3d(0, -3000px, 0); }
13860
+ 60% {
13861
+ opacity: 1;
13862
+ -webkit-transform: translate3d(0, 25px, 0);
13863
+ transform: translate3d(0, 25px, 0); }
13864
+ 75% {
13865
+ -webkit-transform: translate3d(0, -10px, 0);
13866
+ transform: translate3d(0, -10px, 0); }
13867
+ 90% {
13868
+ -webkit-transform: translate3d(0, 5px, 0);
13869
+ transform: translate3d(0, 5px, 0); }
13870
+ to {
13871
+ -webkit-transform: translate3d(0, 0, 0);
13872
+ transform: translate3d(0, 0, 0); } }
13873
+
13874
+ @keyframes bounceInDown {
13875
+ from,
13876
+ 60%,
13877
+ 75%,
13878
+ 90%,
13879
+ to {
13880
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13881
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13882
+ 0% {
13883
+ opacity: 0;
13884
+ -webkit-transform: translate3d(0, -3000px, 0);
13885
+ transform: translate3d(0, -3000px, 0); }
13886
+ 60% {
13887
+ opacity: 1;
13888
+ -webkit-transform: translate3d(0, 25px, 0);
13889
+ transform: translate3d(0, 25px, 0); }
13890
+ 75% {
13891
+ -webkit-transform: translate3d(0, -10px, 0);
13892
+ transform: translate3d(0, -10px, 0); }
13893
+ 90% {
13894
+ -webkit-transform: translate3d(0, 5px, 0);
13895
+ transform: translate3d(0, 5px, 0); }
13896
+ to {
13897
+ -webkit-transform: translate3d(0, 0, 0);
13898
+ transform: translate3d(0, 0, 0); } }
13899
+ .brz .bounceInDown {
13900
+ -webkit-animation-name: bounceInDown;
13901
+ animation-name: bounceInDown; }
13902
+
13903
+ @-webkit-keyframes bounceInLeft {
13904
+ from,
13905
+ 60%,
13906
+ 75%,
13907
+ 90%,
13908
+ to {
13909
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13910
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13911
+ 0% {
13912
+ opacity: 0;
13913
+ -webkit-transform: translate3d(-3000px, 0, 0);
13914
+ transform: translate3d(-3000px, 0, 0); }
13915
+ 60% {
13916
+ opacity: 1;
13917
+ -webkit-transform: translate3d(25px, 0, 0);
13918
+ transform: translate3d(25px, 0, 0); }
13919
+ 75% {
13920
+ -webkit-transform: translate3d(-10px, 0, 0);
13921
+ transform: translate3d(-10px, 0, 0); }
13922
+ 90% {
13923
+ -webkit-transform: translate3d(5px, 0, 0);
13924
+ transform: translate3d(5px, 0, 0); }
13925
+ to {
13926
+ -webkit-transform: translate3d(0, 0, 0);
13927
+ transform: translate3d(0, 0, 0); } }
13928
+
13929
+ @keyframes bounceInLeft {
13930
+ from,
13931
+ 60%,
13932
+ 75%,
13933
+ 90%,
13934
+ to {
13935
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13936
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13937
+ 0% {
13938
+ opacity: 0;
13939
+ -webkit-transform: translate3d(-3000px, 0, 0);
13940
+ transform: translate3d(-3000px, 0, 0); }
13941
+ 60% {
13942
+ opacity: 1;
13943
+ -webkit-transform: translate3d(25px, 0, 0);
13944
+ transform: translate3d(25px, 0, 0); }
13945
+ 75% {
13946
+ -webkit-transform: translate3d(-10px, 0, 0);
13947
+ transform: translate3d(-10px, 0, 0); }
13948
+ 90% {
13949
+ -webkit-transform: translate3d(5px, 0, 0);
13950
+ transform: translate3d(5px, 0, 0); }
13951
+ to {
13952
+ -webkit-transform: translate3d(0, 0, 0);
13953
+ transform: translate3d(0, 0, 0); } }
13954
+ .brz .bounceInLeft {
13955
+ -webkit-animation-name: bounceInLeft;
13956
+ animation-name: bounceInLeft; }
13957
+
13958
+ @-webkit-keyframes bounceInRight {
13959
+ from,
13960
+ 60%,
13961
+ 75%,
13962
+ 90%,
13963
+ to {
13964
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13965
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13966
+ from {
13967
+ opacity: 0;
13968
+ -webkit-transform: translate3d(3000px, 0, 0);
13969
+ transform: translate3d(3000px, 0, 0); }
13970
+ 60% {
13971
+ opacity: 1;
13972
+ -webkit-transform: translate3d(-25px, 0, 0);
13973
+ transform: translate3d(-25px, 0, 0); }
13974
+ 75% {
13975
+ -webkit-transform: translate3d(10px, 0, 0);
13976
+ transform: translate3d(10px, 0, 0); }
13977
+ 90% {
13978
+ -webkit-transform: translate3d(-5px, 0, 0);
13979
+ transform: translate3d(-5px, 0, 0); }
13980
+ to {
13981
+ -webkit-transform: translate3d(0, 0, 0);
13982
+ transform: translate3d(0, 0, 0); } }
13983
+
13984
+ @keyframes bounceInRight {
13985
+ from,
13986
+ 60%,
13987
+ 75%,
13988
+ 90%,
13989
+ to {
13990
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
13991
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
13992
+ from {
13993
+ opacity: 0;
13994
+ -webkit-transform: translate3d(3000px, 0, 0);
13995
+ transform: translate3d(3000px, 0, 0); }
13996
+ 60% {
13997
+ opacity: 1;
13998
+ -webkit-transform: translate3d(-25px, 0, 0);
13999
+ transform: translate3d(-25px, 0, 0); }
14000
+ 75% {
14001
+ -webkit-transform: translate3d(10px, 0, 0);
14002
+ transform: translate3d(10px, 0, 0); }
14003
+ 90% {
14004
+ -webkit-transform: translate3d(-5px, 0, 0);
14005
+ transform: translate3d(-5px, 0, 0); }
14006
+ to {
14007
+ -webkit-transform: translate3d(0, 0, 0);
14008
+ transform: translate3d(0, 0, 0); } }
14009
+ .brz .bounceInRight {
14010
+ -webkit-animation-name: bounceInRight;
14011
+ animation-name: bounceInRight; }
14012
+
14013
+ @-webkit-keyframes bounceInUp {
14014
+ from,
14015
+ 60%,
14016
+ 75%,
14017
+ 90%,
14018
+ to {
14019
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
14020
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
14021
+ from {
14022
+ opacity: 0;
14023
+ -webkit-transform: translate3d(0, 3000px, 0);
14024
+ transform: translate3d(0, 3000px, 0); }
14025
+ 60% {
14026
+ opacity: 1;
14027
+ -webkit-transform: translate3d(0, -20px, 0);
14028
+ transform: translate3d(0, -20px, 0); }
14029
+ 75% {
14030
+ -webkit-transform: translate3d(0, 10px, 0);
14031
+ transform: translate3d(0, 10px, 0); }
14032
+ 90% {
14033
+ -webkit-transform: translate3d(0, -5px, 0);
14034
+ transform: translate3d(0, -5px, 0); }
14035
+ to {
14036
+ -webkit-transform: translate3d(0, 0, 0);
14037
+ transform: translate3d(0, 0, 0); } }
14038
+
14039
+ @keyframes bounceInUp {
14040
+ from,
14041
+ 60%,
14042
+ 75%,
14043
+ 90%,
14044
+ to {
14045
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
14046
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
14047
+ from {
14048
+ opacity: 0;
14049
+ -webkit-transform: translate3d(0, 3000px, 0);
14050
+ transform: translate3d(0, 3000px, 0); }
14051
+ 60% {
14052
+ opacity: 1;
14053
+ -webkit-transform: translate3d(0, -20px, 0);
14054
+ transform: translate3d(0, -20px, 0); }
14055
+ 75% {
14056
+ -webkit-transform: translate3d(0, 10px, 0);
14057
+ transform: translate3d(0, 10px, 0); }
14058
+ 90% {
14059
+ -webkit-transform: translate3d(0, -5px, 0);
14060
+ transform: translate3d(0, -5px, 0); }
14061
+ to {
14062
+ -webkit-transform: translate3d(0, 0, 0);
14063
+ transform: translate3d(0, 0, 0); } }
14064
+ .brz .bounceInUp {
14065
+ -webkit-animation-name: bounceInUp;
14066
+ animation-name: bounceInUp; }
14067
+
14068
+ @-webkit-keyframes bounceOut {
14069
+ 20% {
14070
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
14071
+ transform: scale3d(0.9, 0.9, 0.9); }
14072
+ 50%,
14073
+ 55% {
14074
+ opacity: 1;
14075
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
14076
+ transform: scale3d(1.1, 1.1, 1.1); }
14077
+ to {
14078
+ opacity: 0;
14079
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
14080
+ transform: scale3d(0.3, 0.3, 0.3); } }
14081
+
14082
+ @keyframes bounceOut {
14083
+ 20% {
14084
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
14085
+ transform: scale3d(0.9, 0.9, 0.9); }
14086
+ 50%,
14087
+ 55% {
14088
+ opacity: 1;
14089
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
14090
+ transform: scale3d(1.1, 1.1, 1.1); }
14091
+ to {
14092
+ opacity: 0;
14093
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
14094
+ transform: scale3d(0.3, 0.3, 0.3); } }
14095
+ .brz .bounceOut {
14096
+ -webkit-animation-duration: 0.75s;
14097
+ animation-duration: 0.75s;
14098
+ -webkit-animation-name: bounceOut;
14099
+ animation-name: bounceOut; }
14100
+
14101
+ @-webkit-keyframes bounceOutDown {
14102
+ 20% {
14103
+ -webkit-transform: translate3d(0, 10px, 0);
14104
+ transform: translate3d(0, 10px, 0); }
14105
+ 40%,
14106
+ 45% {
14107
+ opacity: 1;
14108
+ -webkit-transform: translate3d(0, -20px, 0);
14109
+ transform: translate3d(0, -20px, 0); }
14110
+ to {
14111
+ opacity: 0;
14112
+ -webkit-transform: translate3d(0, 2000px, 0);
14113
+ transform: translate3d(0, 2000px, 0); } }
14114
+
14115
+ @keyframes bounceOutDown {
14116
+ 20% {
14117
+ -webkit-transform: translate3d(0, 10px, 0);
14118
+ transform: translate3d(0, 10px, 0); }
14119
+ 40%,
14120
+ 45% {
14121
+ opacity: 1;
14122
+ -webkit-transform: translate3d(0, -20px, 0);
14123
+ transform: translate3d(0, -20px, 0); }
14124
+ to {
14125
+ opacity: 0;
14126
+ -webkit-transform: translate3d(0, 2000px, 0);
14127
+ transform: translate3d(0, 2000px, 0); } }
14128
+ .brz .bounceOutDown {
14129
+ -webkit-animation-name: bounceOutDown;
14130
+ animation-name: bounceOutDown; }
14131
+
14132
+ @-webkit-keyframes bounceOutLeft {
14133
+ 20% {
14134
+ opacity: 1;
14135
+ -webkit-transform: translate3d(20px, 0, 0);
14136
+ transform: translate3d(20px, 0, 0); }
14137
+ to {
14138
+ opacity: 0;
14139
+ -webkit-transform: translate3d(-2000px, 0, 0);
14140
+ transform: translate3d(-2000px, 0, 0); } }
14141
+
14142
+ @keyframes bounceOutLeft {
14143
+ 20% {
14144
+ opacity: 1;
14145
+ -webkit-transform: translate3d(20px, 0, 0);
14146
+ transform: translate3d(20px, 0, 0); }
14147
+ to {
14148
+ opacity: 0;
14149
+ -webkit-transform: translate3d(-2000px, 0, 0);
14150
+ transform: translate3d(-2000px, 0, 0); } }
14151
+ .brz .bounceOutLeft {
14152
+ -webkit-animation-name: bounceOutLeft;
14153
+ animation-name: bounceOutLeft; }
14154
+
14155
+ @-webkit-keyframes bounceOutRight {
14156
+ 20% {
14157
+ opacity: 1;
14158
+ -webkit-transform: translate3d(-20px, 0, 0);
14159
+ transform: translate3d(-20px, 0, 0); }
14160
+ to {
14161
+ opacity: 0;
14162
+ -webkit-transform: translate3d(2000px, 0, 0);
14163
+ transform: translate3d(2000px, 0, 0); } }
14164
+
14165
+ @keyframes bounceOutRight {
14166
+ 20% {
14167
+ opacity: 1;
14168
+ -webkit-transform: translate3d(-20px, 0, 0);
14169
+ transform: translate3d(-20px, 0, 0); }
14170
+ to {
14171
+ opacity: 0;
14172
+ -webkit-transform: translate3d(2000px, 0, 0);
14173
+ transform: translate3d(2000px, 0, 0); } }
14174
+ .brz .bounceOutRight {
14175
+ -webkit-animation-name: bounceOutRight;
14176
+ animation-name: bounceOutRight; }
14177
+
14178
+ @-webkit-keyframes bounceOutUp {
14179
+ 20% {
14180
+ -webkit-transform: translate3d(0, -10px, 0);
14181
+ transform: translate3d(0, -10px, 0); }
14182
+ 40%,
14183
+ 45% {
14184
+ opacity: 1;
14185
+ -webkit-transform: translate3d(0, 20px, 0);
14186
+ transform: translate3d(0, 20px, 0); }
14187
+ to {
14188
+ opacity: 0;
14189
+ -webkit-transform: translate3d(0, -2000px, 0);
14190
+ transform: translate3d(0, -2000px, 0); } }
14191
+
14192
+ @keyframes bounceOutUp {
14193
+ 20% {
14194
+ -webkit-transform: translate3d(0, -10px, 0);
14195
+ transform: translate3d(0, -10px, 0); }
14196
+ 40%,
14197
+ 45% {
14198
+ opacity: 1;
14199
+ -webkit-transform: translate3d(0, 20px, 0);
14200
+ transform: translate3d(0, 20px, 0); }
14201
+ to {
14202
+ opacity: 0;
14203
+ -webkit-transform: translate3d(0, -2000px, 0);
14204
+ transform: translate3d(0, -2000px, 0); } }
14205
+ .brz .bounceOutUp {
14206
+ -webkit-animation-name: bounceOutUp;
14207
+ animation-name: bounceOutUp; }
14208
+
14209
+ @-webkit-keyframes fadeIn {
14210
+ from {
14211
+ opacity: 0; }
14212
+ to {
14213
+ opacity: 1; } }
14214
+
14215
+ @keyframes fadeIn {
14216
+ from {
14217
+ opacity: 0; }
14218
+ to {
14219
+ opacity: 1; } }
14220
+ .brz .fadeIn {
14221
+ -webkit-animation-name: fadeIn;
14222
+ animation-name: fadeIn; }
14223
+
14224
+ @-webkit-keyframes fadeInDown {
14225
+ from {
14226
+ opacity: 0;
14227
+ -webkit-transform: translate3d(0, -100%, 0);
14228
+ transform: translate3d(0, -100%, 0); }
14229
+ to {
14230
+ opacity: 1;
14231
+ -webkit-transform: translate3d(0, 0, 0);
14232
+ transform: translate3d(0, 0, 0); } }
14233
+
14234
+ @keyframes fadeInDown {
14235
+ from {
14236
+ opacity: 0;
14237
+ -webkit-transform: translate3d(0, -100%, 0);
14238
+ transform: translate3d(0, -100%, 0); }
14239
+ to {
14240
+ opacity: 1;
14241
+ -webkit-transform: translate3d(0, 0, 0);
14242
+ transform: translate3d(0, 0, 0); } }
14243
+ .brz .fadeInDown {
14244
+ -webkit-animation-name: fadeInDown;
14245
+ animation-name: fadeInDown; }
14246
+
14247
+ @-webkit-keyframes fadeInDownBig {
14248
+ from {
14249
+ opacity: 0;
14250
+ -webkit-transform: translate3d(0, -2000px, 0);
14251
+ transform: translate3d(0, -2000px, 0); }
14252
+ to {
14253
+ opacity: 1;
14254
+ -webkit-transform: translate3d(0, 0, 0);
14255
+ transform: translate3d(0, 0, 0); } }
14256
+
14257
+ @keyframes fadeInDownBig {
14258
+ from {
14259
+ opacity: 0;
14260
+ -webkit-transform: translate3d(0, -2000px, 0);
14261
+ transform: translate3d(0, -2000px, 0); }
14262
+ to {
14263
+ opacity: 1;
14264
+ -webkit-transform: translate3d(0, 0, 0);
14265
+ transform: translate3d(0, 0, 0); } }
14266
+ .brz .fadeInDownBig {
14267
+ -webkit-animation-name: fadeInDownBig;
14268
+ animation-name: fadeInDownBig; }
14269
+
14270
+ @-webkit-keyframes fadeInLeft {
14271
+ from {
14272
+ opacity: 0;
14273
+ -webkit-transform: translate3d(-100%, 0, 0);
14274
+ transform: translate3d(-100%, 0, 0); }
14275
+ to {
14276
+ opacity: 1;
14277
+ -webkit-transform: translate3d(0, 0, 0);
14278
+ transform: translate3d(0, 0, 0); } }
14279
+
14280
+ @keyframes fadeInLeft {
14281
+ from {
14282
+ opacity: 0;
14283
+ -webkit-transform: translate3d(-100%, 0, 0);
14284
+ transform: translate3d(-100%, 0, 0); }
14285
+ to {
14286
+ opacity: 1;
14287
+ -webkit-transform: translate3d(0, 0, 0);
14288
+ transform: translate3d(0, 0, 0); } }
14289
+ .brz .fadeInLeft {
14290
+ -webkit-animation-name: fadeInLeft;
14291
+ animation-name: fadeInLeft; }
14292
+
14293
+ @-webkit-keyframes fadeInLeftBig {
14294
+ from {
14295
+ opacity: 0;
14296
+ -webkit-transform: translate3d(-2000px, 0, 0);
14297
+ transform: translate3d(-2000px, 0, 0); }
14298
+ to {
14299
+ opacity: 1;
14300
+ -webkit-transform: translate3d(0, 0, 0);
14301
+ transform: translate3d(0, 0, 0); } }
14302
+
14303
+ @keyframes fadeInLeftBig {
14304
+ from {
14305
+ opacity: 0;
14306
+ -webkit-transform: translate3d(-2000px, 0, 0);
14307
+ transform: translate3d(-2000px, 0, 0); }
14308
+ to {
14309
+ opacity: 1;
14310
+ -webkit-transform: translate3d(0, 0, 0);
14311
+ transform: translate3d(0, 0, 0); } }
14312
+ .brz .fadeInLeftBig {
14313
+ -webkit-animation-name: fadeInLeftBig;
14314
+ animation-name: fadeInLeftBig; }
14315
+
14316
+ @-webkit-keyframes fadeInRight {
14317
+ from {
14318
+ opacity: 0;
14319
+ -webkit-transform: translate3d(100%, 0, 0);
14320
+ transform: translate3d(100%, 0, 0); }
14321
+ to {
14322
+ opacity: 1;
14323
+ -webkit-transform: translate3d(0, 0, 0);
14324
+ transform: translate3d(0, 0, 0); } }
14325
+
14326
+ @keyframes fadeInRight {
14327
+ from {
14328
+ opacity: 0;
14329
+ -webkit-transform: translate3d(100%, 0, 0);
14330
+ transform: translate3d(100%, 0, 0); }
14331
+ to {
14332
+ opacity: 1;
14333
+ -webkit-transform: translate3d(0, 0, 0);
14334
+ transform: translate3d(0, 0, 0); } }
14335
+ .brz .fadeInRight {
14336
+ -webkit-animation-name: fadeInRight;
14337
+ animation-name: fadeInRight; }
14338
+
14339
+ @-webkit-keyframes fadeInRightBig {
14340
+ from {
14341
+ opacity: 0;
14342
+ -webkit-transform: translate3d(2000px, 0, 0);
14343
+ transform: translate3d(2000px, 0, 0); }
14344
+ to {
14345
+ opacity: 1;
14346
+ -webkit-transform: translate3d(0, 0, 0);
14347
+ transform: translate3d(0, 0, 0); } }
14348
+
14349
+ @keyframes fadeInRightBig {
14350
+ from {
14351
+ opacity: 0;
14352
+ -webkit-transform: translate3d(2000px, 0, 0);
14353
+ transform: translate3d(2000px, 0, 0); }
14354
+ to {
14355
+ opacity: 1;
14356
+ -webkit-transform: translate3d(0, 0, 0);
14357
+ transform: translate3d(0, 0, 0); } }
14358
+ .brz .fadeInRightBig {
14359
+ -webkit-animation-name: fadeInRightBig;
14360
+ animation-name: fadeInRightBig; }
14361
+
14362
+ @-webkit-keyframes fadeInUp {
14363
+ from {
14364
+ opacity: 0;
14365
+ -webkit-transform: translate3d(0, 100%, 0);
14366
+ transform: translate3d(0, 100%, 0); }
14367
+ to {
14368
+ opacity: 1;
14369
+ -webkit-transform: translate3d(0, 0, 0);
14370
+ transform: translate3d(0, 0, 0); } }
14371
+
14372
+ @keyframes fadeInUp {
14373
+ from {
14374
+ opacity: 0;
14375
+ -webkit-transform: translate3d(0, 100%, 0);
14376
+ transform: translate3d(0, 100%, 0); }
14377
+ to {
14378
+ opacity: 1;
14379
+ -webkit-transform: translate3d(0, 0, 0);
14380
+ transform: translate3d(0, 0, 0); } }
14381
+ .brz .fadeInUp {
14382
+ -webkit-animation-name: fadeInUp;
14383
+ animation-name: fadeInUp; }
14384
+
14385
+ @-webkit-keyframes fadeInUpBig {
14386
+ from {
14387
+ opacity: 0;
14388
+ -webkit-transform: translate3d(0, 2000px, 0);
14389
+ transform: translate3d(0, 2000px, 0); }
14390
+ to {
14391
+ opacity: 1;
14392
+ -webkit-transform: translate3d(0, 0, 0);
14393
+ transform: translate3d(0, 0, 0); } }
14394
+
14395
+ @keyframes fadeInUpBig {
14396
+ from {
14397
+ opacity: 0;
14398
+ -webkit-transform: translate3d(0, 2000px, 0);
14399
+ transform: translate3d(0, 2000px, 0); }
14400
+ to {
14401
+ opacity: 1;
14402
+ -webkit-transform: translate3d(0, 0, 0);
14403
+ transform: translate3d(0, 0, 0); } }
14404
+ .brz .fadeInUpBig {
14405
+ -webkit-animation-name: fadeInUpBig;
14406
+ animation-name: fadeInUpBig; }
14407
+
14408
+ @-webkit-keyframes fadeOut {
14409
+ from {
14410
+ opacity: 1; }
14411
+ to {
14412
+ opacity: 0; } }
14413
+
14414
+ @keyframes fadeOut {
14415
+ from {
14416
+ opacity: 1; }
14417
+ to {
14418
+ opacity: 0; } }
14419
+ .brz .fadeOut {
14420
+ -webkit-animation-name: fadeOut;
14421
+ animation-name: fadeOut; }
14422
+
14423
+ @-webkit-keyframes fadeOutDown {
14424
+ from {
14425
+ opacity: 1; }
14426
+ to {
14427
+ opacity: 0;
14428
+ -webkit-transform: translate3d(0, 100%, 0);
14429
+ transform: translate3d(0, 100%, 0); } }
14430
+
14431
+ @keyframes fadeOutDown {
14432
+ from {
14433
+ opacity: 1; }
14434
+ to {
14435
+ opacity: 0;
14436
+ -webkit-transform: translate3d(0, 100%, 0);
14437
+ transform: translate3d(0, 100%, 0); } }
14438
+ .brz .fadeOutDown {
14439
+ -webkit-animation-name: fadeOutDown;
14440
+ animation-name: fadeOutDown; }
14441
+
14442
+ @-webkit-keyframes fadeOutDownBig {
14443
+ from {
14444
+ opacity: 1; }
14445
+ to {
14446
+ opacity: 0;
14447
+ -webkit-transform: translate3d(0, 2000px, 0);
14448
+ transform: translate3d(0, 2000px, 0); } }
14449
+
14450
+ @keyframes fadeOutDownBig {
14451
+ from {
14452
+ opacity: 1; }
14453
+ to {
14454
+ opacity: 0;
14455
+ -webkit-transform: translate3d(0, 2000px, 0);
14456
+ transform: translate3d(0, 2000px, 0); } }
14457
+ .brz .fadeOutDownBig {
14458
+ -webkit-animation-name: fadeOutDownBig;
14459
+ animation-name: fadeOutDownBig; }
14460
+
14461
+ @-webkit-keyframes fadeOutLeft {
14462
+ from {
14463
+ opacity: 1; }
14464
+ to {
14465
+ opacity: 0;
14466
+ -webkit-transform: translate3d(-100%, 0, 0);
14467
+ transform: translate3d(-100%, 0, 0); } }
14468
+
14469
+ @keyframes fadeOutLeft {
14470
+ from {
14471
+ opacity: 1; }
14472
+ to {
14473
+ opacity: 0;
14474
+ -webkit-transform: translate3d(-100%, 0, 0);
14475
+ transform: translate3d(-100%, 0, 0); } }
14476
+ .brz .fadeOutLeft {
14477
+ -webkit-animation-name: fadeOutLeft;
14478
+ animation-name: fadeOutLeft; }
14479
+
14480
+ @-webkit-keyframes fadeOutLeftBig {
14481
+ from {
14482
+ opacity: 1; }
14483
+ to {
14484
+ opacity: 0;
14485
+ -webkit-transform: translate3d(-2000px, 0, 0);
14486
+ transform: translate3d(-2000px, 0, 0); } }
14487
+
14488
+ @keyframes fadeOutLeftBig {
14489
+ from {
14490
+ opacity: 1; }
14491
+ to {
14492
+ opacity: 0;
14493
+ -webkit-transform: translate3d(-2000px, 0, 0);
14494
+ transform: translate3d(-2000px, 0, 0); } }
14495
+ .brz .fadeOutLeftBig {
14496
+ -webkit-animation-name: fadeOutLeftBig;
14497
+ animation-name: fadeOutLeftBig; }
14498
+
14499
+ @-webkit-keyframes fadeOutRight {
14500
+ from {
14501
+ opacity: 1; }
14502
+ to {
14503
+ opacity: 0;
14504
+ -webkit-transform: translate3d(100%, 0, 0);
14505
+ transform: translate3d(100%, 0, 0); } }
14506
+
14507
+ @keyframes fadeOutRight {
14508
+ from {
14509
+ opacity: 1; }
14510
+ to {
14511
+ opacity: 0;
14512
+ -webkit-transform: translate3d(100%, 0, 0);
14513
+ transform: translate3d(100%, 0, 0); } }
14514
+ .brz .fadeOutRight {
14515
+ -webkit-animation-name: fadeOutRight;
14516
+ animation-name: fadeOutRight; }
14517
+
14518
+ @-webkit-keyframes fadeOutRightBig {
14519
+ from {
14520
+ opacity: 1; }
14521
+ to {
14522
+ opacity: 0;
14523
+ -webkit-transform: translate3d(2000px, 0, 0);
14524
+ transform: translate3d(2000px, 0, 0); } }
14525
+
14526
+ @keyframes fadeOutRightBig {
14527
+ from {
14528
+ opacity: 1; }
14529
+ to {
14530
+ opacity: 0;
14531
+ -webkit-transform: translate3d(2000px, 0, 0);
14532
+ transform: translate3d(2000px, 0, 0); } }
14533
+ .brz .fadeOutRightBig {
14534
+ -webkit-animation-name: fadeOutRightBig;
14535
+ animation-name: fadeOutRightBig; }
14536
+
14537
+ @-webkit-keyframes fadeOutUp {
14538
+ from {
14539
+ opacity: 1; }
14540
+ to {
14541
+ opacity: 0;
14542
+ -webkit-transform: translate3d(0, -100%, 0);
14543
+ transform: translate3d(0, -100%, 0); } }
14544
+
14545
+ @keyframes fadeOutUp {
14546
+ from {
14547
+ opacity: 1; }
14548
+ to {
14549
+ opacity: 0;
14550
+ -webkit-transform: translate3d(0, -100%, 0);
14551
+ transform: translate3d(0, -100%, 0); } }
14552
+ .brz .fadeOutUp {
14553
+ -webkit-animation-name: fadeOutUp;
14554
+ animation-name: fadeOutUp; }
14555
+
14556
+ @-webkit-keyframes fadeOutUpBig {
14557
+ from {
14558
+ opacity: 1; }
14559
+ to {
14560
+ opacity: 0;
14561
+ -webkit-transform: translate3d(0, -2000px, 0);
14562
+ transform: translate3d(0, -2000px, 0); } }
14563
+
14564
+ @keyframes fadeOutUpBig {
14565
+ from {
14566
+ opacity: 1; }
14567
+ to {
14568
+ opacity: 0;
14569
+ -webkit-transform: translate3d(0, -2000px, 0);
14570
+ transform: translate3d(0, -2000px, 0); } }
14571
+ .brz .fadeOutUpBig {
14572
+ -webkit-animation-name: fadeOutUpBig;
14573
+ animation-name: fadeOutUpBig; }
14574
+
14575
+ @-webkit-keyframes flip {
14576
+ from {
14577
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
14578
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
14579
+ -webkit-animation-timing-function: ease-out;
14580
+ animation-timing-function: ease-out; }
14581
+ 40% {
14582
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
14583
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
14584
+ -webkit-animation-timing-function: ease-out;
14585
+ animation-timing-function: ease-out; }
14586
+ 50% {
14587
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
14588
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
14589
+ -webkit-animation-timing-function: ease-in;
14590
+ animation-timing-function: ease-in; }
14591
+ 80% {
14592
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14593
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14594
+ -webkit-animation-timing-function: ease-in;
14595
+ animation-timing-function: ease-in; }
14596
+ to {
14597
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14598
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14599
+ -webkit-animation-timing-function: ease-in;
14600
+ animation-timing-function: ease-in; } }
14601
+
14602
+ @keyframes flip {
14603
+ from {
14604
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
14605
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
14606
+ -webkit-animation-timing-function: ease-out;
14607
+ animation-timing-function: ease-out; }
14608
+ 40% {
14609
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
14610
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
14611
+ -webkit-animation-timing-function: ease-out;
14612
+ animation-timing-function: ease-out; }
14613
+ 50% {
14614
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
14615
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
14616
+ -webkit-animation-timing-function: ease-in;
14617
+ animation-timing-function: ease-in; }
14618
+ 80% {
14619
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14620
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14621
+ -webkit-animation-timing-function: ease-in;
14622
+ animation-timing-function: ease-in; }
14623
+ to {
14624
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14625
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
14626
+ -webkit-animation-timing-function: ease-in;
14627
+ animation-timing-function: ease-in; } }
14628
+ .brz .animated.flip {
14629
+ -webkit-backface-visibility: visible;
14630
+ backface-visibility: visible;
14631
+ -webkit-animation-name: flip;
14632
+ animation-name: flip; }
14633
+
14634
+ @-webkit-keyframes flipInX {
14635
+ from {
14636
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14637
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14638
+ -webkit-animation-timing-function: ease-in;
14639
+ animation-timing-function: ease-in;
14640
+ opacity: 0; }
14641
+ 40% {
14642
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14643
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14644
+ -webkit-animation-timing-function: ease-in;
14645
+ animation-timing-function: ease-in; }
14646
+ 60% {
14647
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
14648
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
14649
+ opacity: 1; }
14650
+ 80% {
14651
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
14652
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
14653
+ to {
14654
+ -webkit-transform: perspective(400px);
14655
+ transform: perspective(400px); } }
14656
+
14657
+ @keyframes flipInX {
14658
+ from {
14659
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14660
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14661
+ -webkit-animation-timing-function: ease-in;
14662
+ animation-timing-function: ease-in;
14663
+ opacity: 0; }
14664
+ 40% {
14665
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14666
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14667
+ -webkit-animation-timing-function: ease-in;
14668
+ animation-timing-function: ease-in; }
14669
+ 60% {
14670
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
14671
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
14672
+ opacity: 1; }
14673
+ 80% {
14674
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
14675
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
14676
+ to {
14677
+ -webkit-transform: perspective(400px);
14678
+ transform: perspective(400px); } }
14679
+ .brz .flipInX {
14680
+ -webkit-backface-visibility: visible !important;
14681
+ backface-visibility: visible !important;
14682
+ -webkit-animation-name: flipInX;
14683
+ animation-name: flipInX; }
14684
+
14685
+ @-webkit-keyframes flipInY {
14686
+ from {
14687
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14688
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14689
+ -webkit-animation-timing-function: ease-in;
14690
+ animation-timing-function: ease-in;
14691
+ opacity: 0; }
14692
+ 40% {
14693
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
14694
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
14695
+ -webkit-animation-timing-function: ease-in;
14696
+ animation-timing-function: ease-in; }
14697
+ 60% {
14698
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
14699
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
14700
+ opacity: 1; }
14701
+ 80% {
14702
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
14703
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
14704
+ to {
14705
+ -webkit-transform: perspective(400px);
14706
+ transform: perspective(400px); } }
14707
+
14708
+ @keyframes flipInY {
14709
+ from {
14710
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14711
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14712
+ -webkit-animation-timing-function: ease-in;
14713
+ animation-timing-function: ease-in;
14714
+ opacity: 0; }
14715
+ 40% {
14716
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
14717
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
14718
+ -webkit-animation-timing-function: ease-in;
14719
+ animation-timing-function: ease-in; }
14720
+ 60% {
14721
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
14722
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
14723
+ opacity: 1; }
14724
+ 80% {
14725
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
14726
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
14727
+ to {
14728
+ -webkit-transform: perspective(400px);
14729
+ transform: perspective(400px); } }
14730
+ .brz .flipInY {
14731
+ -webkit-backface-visibility: visible !important;
14732
+ backface-visibility: visible !important;
14733
+ -webkit-animation-name: flipInY;
14734
+ animation-name: flipInY; }
14735
+
14736
+ @-webkit-keyframes flipOutX {
14737
+ from {
14738
+ -webkit-transform: perspective(400px);
14739
+ transform: perspective(400px); }
14740
+ 30% {
14741
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14742
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14743
+ opacity: 1; }
14744
+ to {
14745
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14746
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14747
+ opacity: 0; } }
14748
+
14749
+ @keyframes flipOutX {
14750
+ from {
14751
+ -webkit-transform: perspective(400px);
14752
+ transform: perspective(400px); }
14753
+ 30% {
14754
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14755
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
14756
+ opacity: 1; }
14757
+ to {
14758
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14759
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
14760
+ opacity: 0; } }
14761
+ .brz .flipOutX {
14762
+ -webkit-animation-duration: 0.75s;
14763
+ animation-duration: 0.75s;
14764
+ -webkit-animation-name: flipOutX;
14765
+ animation-name: flipOutX;
14766
+ -webkit-backface-visibility: visible !important;
14767
+ backface-visibility: visible !important; }
14768
+
14769
+ @-webkit-keyframes flipOutY {
14770
+ from {
14771
+ -webkit-transform: perspective(400px);
14772
+ transform: perspective(400px); }
14773
+ 30% {
14774
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
14775
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
14776
+ opacity: 1; }
14777
+ to {
14778
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14779
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14780
+ opacity: 0; } }
14781
+
14782
+ @keyframes flipOutY {
14783
+ from {
14784
+ -webkit-transform: perspective(400px);
14785
+ transform: perspective(400px); }
14786
+ 30% {
14787
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
14788
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
14789
+ opacity: 1; }
14790
+ to {
14791
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14792
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
14793
+ opacity: 0; } }
14794
+ .brz .flipOutY {
14795
+ -webkit-animation-duration: 0.75s;
14796
+ animation-duration: 0.75s;
14797
+ -webkit-backface-visibility: visible !important;
14798
+ backface-visibility: visible !important;
14799
+ -webkit-animation-name: flipOutY;
14800
+ animation-name: flipOutY; }
14801
+
14802
+ @-webkit-keyframes lightSpeedIn {
14803
+ from {
14804
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
14805
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
14806
+ opacity: 0; }
14807
+ 60% {
14808
+ -webkit-transform: skewX(20deg);
14809
+ transform: skewX(20deg);
14810
+ opacity: 1; }
14811
+ 80% {
14812
+ -webkit-transform: skewX(-5deg);
14813
+ transform: skewX(-5deg); }
14814
+ to {
14815
+ -webkit-transform: translate3d(0, 0, 0);
14816
+ transform: translate3d(0, 0, 0); } }
14817
+
14818
+ @keyframes lightSpeedIn {
14819
+ from {
14820
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
14821
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
14822
+ opacity: 0; }
14823
+ 60% {
14824
+ -webkit-transform: skewX(20deg);
14825
+ transform: skewX(20deg);
14826
+ opacity: 1; }
14827
+ 80% {
14828
+ -webkit-transform: skewX(-5deg);
14829
+ transform: skewX(-5deg); }
14830
+ to {
14831
+ -webkit-transform: translate3d(0, 0, 0);
14832
+ transform: translate3d(0, 0, 0); } }
14833
+ .brz .lightSpeedIn {
14834
+ -webkit-animation-name: lightSpeedIn;
14835
+ animation-name: lightSpeedIn;
14836
+ -webkit-animation-timing-function: ease-out;
14837
+ animation-timing-function: ease-out; }
14838
+
14839
+ @-webkit-keyframes lightSpeedOut {
14840
+ from {
14841
+ opacity: 1; }
14842
+ to {
14843
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
14844
+ transform: translate3d(100%, 0, 0) skewX(30deg);
14845
+ opacity: 0; } }
14846
+
14847
+ @keyframes lightSpeedOut {
14848
+ from {
14849
+ opacity: 1; }
14850
+ to {
14851
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
14852
+ transform: translate3d(100%, 0, 0) skewX(30deg);
14853
+ opacity: 0; } }
14854
+ .brz .lightSpeedOut {
14855
+ -webkit-animation-name: lightSpeedOut;
14856
+ animation-name: lightSpeedOut;
14857
+ -webkit-animation-timing-function: ease-in;
14858
+ animation-timing-function: ease-in; }
14859
+
14860
+ @-webkit-keyframes rotateIn {
14861
+ from {
14862
+ -webkit-transform-origin: center;
14863
+ transform-origin: center;
14864
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
14865
+ transform: rotate3d(0, 0, 1, -200deg);
14866
+ opacity: 0; }
14867
+ to {
14868
+ -webkit-transform-origin: center;
14869
+ transform-origin: center;
14870
+ -webkit-transform: translate3d(0, 0, 0);
14871
+ transform: translate3d(0, 0, 0);
14872
+ opacity: 1; } }
14873
+
14874
+ @keyframes rotateIn {
14875
+ from {
14876
+ -webkit-transform-origin: center;
14877
+ transform-origin: center;
14878
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
14879
+ transform: rotate3d(0, 0, 1, -200deg);
14880
+ opacity: 0; }
14881
+ to {
14882
+ -webkit-transform-origin: center;
14883
+ transform-origin: center;
14884
+ -webkit-transform: translate3d(0, 0, 0);
14885
+ transform: translate3d(0, 0, 0);
14886
+ opacity: 1; } }
14887
+ .brz .rotateIn {
14888
+ -webkit-animation-name: rotateIn;
14889
+ animation-name: rotateIn; }
14890
+
14891
+ @-webkit-keyframes rotateInDownLeft {
14892
+ from {
14893
+ -webkit-transform-origin: left bottom;
14894
+ transform-origin: left bottom;
14895
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
14896
+ transform: rotate3d(0, 0, 1, -45deg);
14897
+ opacity: 0; }
14898
+ to {
14899
+ -webkit-transform-origin: left bottom;
14900
+ transform-origin: left bottom;
14901
+ -webkit-transform: translate3d(0, 0, 0);
14902
+ transform: translate3d(0, 0, 0);
14903
+ opacity: 1; } }
14904
+
14905
+ @keyframes rotateInDownLeft {
14906
+ from {
14907
+ -webkit-transform-origin: left bottom;
14908
+ transform-origin: left bottom;
14909
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
14910
+ transform: rotate3d(0, 0, 1, -45deg);
14911
+ opacity: 0; }
14912
+ to {
14913
+ -webkit-transform-origin: left bottom;
14914
+ transform-origin: left bottom;
14915
+ -webkit-transform: translate3d(0, 0, 0);
14916
+ transform: translate3d(0, 0, 0);
14917
+ opacity: 1; } }
14918
+ .brz .rotateInDownLeft {
14919
+ -webkit-animation-name: rotateInDownLeft;
14920
+ animation-name: rotateInDownLeft; }
14921
+
14922
+ @-webkit-keyframes rotateInDownRight {
14923
+ from {
14924
+ -webkit-transform-origin: right bottom;
14925
+ transform-origin: right bottom;
14926
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
14927
+ transform: rotate3d(0, 0, 1, 45deg);
14928
+ opacity: 0; }
14929
+ to {
14930
+ -webkit-transform-origin: right bottom;
14931
+ transform-origin: right bottom;
14932
+ -webkit-transform: translate3d(0, 0, 0);
14933
+ transform: translate3d(0, 0, 0);
14934
+ opacity: 1; } }
14935
+
14936
+ @keyframes rotateInDownRight {
14937
+ from {
14938
+ -webkit-transform-origin: right bottom;
14939
+ transform-origin: right bottom;
14940
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
14941
+ transform: rotate3d(0, 0, 1, 45deg);
14942
+ opacity: 0; }
14943
+ to {
14944
+ -webkit-transform-origin: right bottom;
14945
+ transform-origin: right bottom;
14946
+ -webkit-transform: translate3d(0, 0, 0);
14947
+ transform: translate3d(0, 0, 0);
14948
+ opacity: 1; } }
14949
+ .brz .rotateInDownRight {
14950
+ -webkit-animation-name: rotateInDownRight;
14951
+ animation-name: rotateInDownRight; }
14952
+
14953
+ @-webkit-keyframes rotateInUpLeft {
14954
+ from {
14955
+ -webkit-transform-origin: left bottom;
14956
+ transform-origin: left bottom;
14957
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
14958
+ transform: rotate3d(0, 0, 1, 45deg);
14959
+ opacity: 0; }
14960
+ to {
14961
+ -webkit-transform-origin: left bottom;
14962
+ transform-origin: left bottom;
14963
+ -webkit-transform: translate3d(0, 0, 0);
14964
+ transform: translate3d(0, 0, 0);
14965
+ opacity: 1; } }
14966
+
14967
+ @keyframes rotateInUpLeft {
14968
+ from {
14969
+ -webkit-transform-origin: left bottom;
14970
+ transform-origin: left bottom;
14971
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
14972
+ transform: rotate3d(0, 0, 1, 45deg);
14973
+ opacity: 0; }
14974
+ to {
14975
+ -webkit-transform-origin: left bottom;
14976
+ transform-origin: left bottom;
14977
+ -webkit-transform: translate3d(0, 0, 0);
14978
+ transform: translate3d(0, 0, 0);
14979
+ opacity: 1; } }
14980
+ .brz .rotateInUpLeft {
14981
+ -webkit-animation-name: rotateInUpLeft;
14982
+ animation-name: rotateInUpLeft; }
14983
+
14984
+ @-webkit-keyframes rotateInUpRight {
14985
+ from {
14986
+ -webkit-transform-origin: right bottom;
14987
+ transform-origin: right bottom;
14988
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
14989
+ transform: rotate3d(0, 0, 1, -90deg);
14990
+ opacity: 0; }
14991
+ to {
14992
+ -webkit-transform-origin: right bottom;
14993
+ transform-origin: right bottom;
14994
+ -webkit-transform: translate3d(0, 0, 0);
14995
+ transform: translate3d(0, 0, 0);
14996
+ opacity: 1; } }
14997
+
14998
+ @keyframes rotateInUpRight {
14999
+ from {
15000
+ -webkit-transform-origin: right bottom;
15001
+ transform-origin: right bottom;
15002
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
15003
+ transform: rotate3d(0, 0, 1, -90deg);
15004
+ opacity: 0; }
15005
+ to {
15006
+ -webkit-transform-origin: right bottom;
15007
+ transform-origin: right bottom;
15008
+ -webkit-transform: translate3d(0, 0, 0);
15009
+ transform: translate3d(0, 0, 0);
15010
+ opacity: 1; } }
15011
+ .brz .rotateInUpRight {
15012
+ -webkit-animation-name: rotateInUpRight;
15013
+ animation-name: rotateInUpRight; }
15014
+
15015
+ @-webkit-keyframes rotateOut {
15016
+ from {
15017
+ -webkit-transform-origin: center;
15018
+ transform-origin: center;
15019
+ opacity: 1; }
15020
+ to {
15021
+ -webkit-transform-origin: center;
15022
+ transform-origin: center;
15023
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
15024
+ transform: rotate3d(0, 0, 1, 200deg);
15025
+ opacity: 0; } }
15026
+
15027
+ @keyframes rotateOut {
15028
+ from {
15029
+ -webkit-transform-origin: center;
15030
+ transform-origin: center;
15031
+ opacity: 1; }
15032
+ to {
15033
+ -webkit-transform-origin: center;
15034
+ transform-origin: center;
15035
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
15036
+ transform: rotate3d(0, 0, 1, 200deg);
15037
+ opacity: 0; } }
15038
+ .brz .rotateOut {
15039
+ -webkit-animation-name: rotateOut;
15040
+ animation-name: rotateOut; }
15041
+
15042
+ @-webkit-keyframes rotateOutDownLeft {
15043
+ from {
15044
+ -webkit-transform-origin: left bottom;
15045
+ transform-origin: left bottom;
15046
+ opacity: 1; }
15047
+ to {
15048
+ -webkit-transform-origin: left bottom;
15049
+ transform-origin: left bottom;
15050
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
15051
+ transform: rotate3d(0, 0, 1, 45deg);
15052
+ opacity: 0; } }
15053
+
15054
+ @keyframes rotateOutDownLeft {
15055
+ from {
15056
+ -webkit-transform-origin: left bottom;
15057
+ transform-origin: left bottom;
15058
+ opacity: 1; }
15059
+ to {
15060
+ -webkit-transform-origin: left bottom;
15061
+ transform-origin: left bottom;
15062
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
15063
+ transform: rotate3d(0, 0, 1, 45deg);
15064
+ opacity: 0; } }
15065
+ .brz .rotateOutDownLeft {
15066
+ -webkit-animation-name: rotateOutDownLeft;
15067
+ animation-name: rotateOutDownLeft; }
15068
+
15069
+ @-webkit-keyframes rotateOutDownRight {
15070
+ from {
15071
+ -webkit-transform-origin: right bottom;
15072
+ transform-origin: right bottom;
15073
+ opacity: 1; }
15074
+ to {
15075
+ -webkit-transform-origin: right bottom;
15076
+ transform-origin: right bottom;
15077
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
15078
+ transform: rotate3d(0, 0, 1, -45deg);
15079
+ opacity: 0; } }
15080
+
15081
+ @keyframes rotateOutDownRight {
15082
+ from {
15083
+ -webkit-transform-origin: right bottom;
15084
+ transform-origin: right bottom;
15085
+ opacity: 1; }
15086
+ to {
15087
+ -webkit-transform-origin: right bottom;
15088
+ transform-origin: right bottom;
15089
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
15090
+ transform: rotate3d(0, 0, 1, -45deg);
15091
+ opacity: 0; } }
15092
+ .brz .rotateOutDownRight {
15093
+ -webkit-animation-name: rotateOutDownRight;
15094
+ animation-name: rotateOutDownRight; }
15095
+
15096
+ @-webkit-keyframes rotateOutUpLeft {
15097
+ from {
15098
+ -webkit-transform-origin: left bottom;
15099
+ transform-origin: left bottom;
15100
+ opacity: 1; }
15101
+ to {
15102
+ -webkit-transform-origin: left bottom;
15103
+ transform-origin: left bottom;
15104
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
15105
+ transform: rotate3d(0, 0, 1, -45deg);
15106
+ opacity: 0; } }
15107
+
15108
+ @keyframes rotateOutUpLeft {
15109
+ from {
15110
+ -webkit-transform-origin: left bottom;
15111
+ transform-origin: left bottom;
15112
+ opacity: 1; }
15113
+ to {
15114
+ -webkit-transform-origin: left bottom;
15115
+ transform-origin: left bottom;
15116
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
15117
+ transform: rotate3d(0, 0, 1, -45deg);
15118
+ opacity: 0; } }
15119
+ .brz .rotateOutUpLeft {
15120
+ -webkit-animation-name: rotateOutUpLeft;
15121
+ animation-name: rotateOutUpLeft; }
15122
+
15123
+ @-webkit-keyframes rotateOutUpRight {
15124
+ from {
15125
+ -webkit-transform-origin: right bottom;
15126
+ transform-origin: right bottom;
15127
+ opacity: 1; }
15128
+ to {
15129
+ -webkit-transform-origin: right bottom;
15130
+ transform-origin: right bottom;
15131
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
15132
+ transform: rotate3d(0, 0, 1, 90deg);
15133
+ opacity: 0; } }
15134
+
15135
+ @keyframes rotateOutUpRight {
15136
+ from {
15137
+ -webkit-transform-origin: right bottom;
15138
+ transform-origin: right bottom;
15139
+ opacity: 1; }
15140
+ to {
15141
+ -webkit-transform-origin: right bottom;
15142
+ transform-origin: right bottom;
15143
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
15144
+ transform: rotate3d(0, 0, 1, 90deg);
15145
+ opacity: 0; } }
15146
+ .brz .rotateOutUpRight {
15147
+ -webkit-animation-name: rotateOutUpRight;
15148
+ animation-name: rotateOutUpRight; }
15149
+
15150
+ @-webkit-keyframes hinge {
15151
+ 0% {
15152
+ -webkit-transform-origin: top left;
15153
+ transform-origin: top left;
15154
+ -webkit-animation-timing-function: ease-in-out;
15155
+ animation-timing-function: ease-in-out; }
15156
+ 20%,
15157
+ 60% {
15158
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
15159
+ transform: rotate3d(0, 0, 1, 80deg);
15160
+ -webkit-transform-origin: top left;
15161
+ transform-origin: top left;
15162
+ -webkit-animation-timing-function: ease-in-out;
15163
+ animation-timing-function: ease-in-out; }
15164
+ 40%,
15165
+ 80% {
15166
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
15167
+ transform: rotate3d(0, 0, 1, 60deg);
15168
+ -webkit-transform-origin: top left;
15169
+ transform-origin: top left;
15170
+ -webkit-animation-timing-function: ease-in-out;
15171
+ animation-timing-function: ease-in-out;
15172
+ opacity: 1; }
15173
+ to {
15174
+ -webkit-transform: translate3d(0, 700px, 0);
15175
+ transform: translate3d(0, 700px, 0);
15176
+ opacity: 0; } }
15177
+
15178
+ @keyframes hinge {
15179
+ 0% {
15180
+ -webkit-transform-origin: top left;
15181
+ transform-origin: top left;
15182
+ -webkit-animation-timing-function: ease-in-out;
15183
+ animation-timing-function: ease-in-out; }
15184
+ 20%,
15185
+ 60% {
15186
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
15187
+ transform: rotate3d(0, 0, 1, 80deg);
15188
+ -webkit-transform-origin: top left;
15189
+ transform-origin: top left;
15190
+ -webkit-animation-timing-function: ease-in-out;
15191
+ animation-timing-function: ease-in-out; }
15192
+ 40%,
15193
+ 80% {
15194
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
15195
+ transform: rotate3d(0, 0, 1, 60deg);
15196
+ -webkit-transform-origin: top left;
15197
+ transform-origin: top left;
15198
+ -webkit-animation-timing-function: ease-in-out;
15199
+ animation-timing-function: ease-in-out;
15200
+ opacity: 1; }
15201
+ to {
15202
+ -webkit-transform: translate3d(0, 700px, 0);
15203
+ transform: translate3d(0, 700px, 0);
15204
+ opacity: 0; } }
15205
+ .brz .hinge {
15206
+ -webkit-animation-duration: 2s;
15207
+ animation-duration: 2s;
15208
+ -webkit-animation-name: hinge;
15209
+ animation-name: hinge; }
15210
+
15211
+ @-webkit-keyframes jackInTheBox {
15212
+ from {
15213
+ opacity: 0;
15214
+ -webkit-transform: scale(0.1) rotate(30deg);
15215
+ transform: scale(0.1) rotate(30deg);
15216
+ -webkit-transform-origin: center bottom;
15217
+ transform-origin: center bottom; }
15218
+ 50% {
15219
+ -webkit-transform: rotate(-10deg);
15220
+ transform: rotate(-10deg); }
15221
+ 70% {
15222
+ -webkit-transform: rotate(3deg);
15223
+ transform: rotate(3deg); }
15224
+ to {
15225
+ opacity: 1;
15226
+ -webkit-transform: scale(1);
15227
+ transform: scale(1); } }
15228
+
15229
+ @keyframes jackInTheBox {
15230
+ from {
15231
+ opacity: 0;
15232
+ -webkit-transform: scale(0.1) rotate(30deg);
15233
+ transform: scale(0.1) rotate(30deg);
15234
+ -webkit-transform-origin: center bottom;
15235
+ transform-origin: center bottom; }
15236
+ 50% {
15237
+ -webkit-transform: rotate(-10deg);
15238
+ transform: rotate(-10deg); }
15239
+ 70% {
15240
+ -webkit-transform: rotate(3deg);
15241
+ transform: rotate(3deg); }
15242
+ to {
15243
+ opacity: 1;
15244
+ -webkit-transform: scale(1);
15245
+ transform: scale(1); } }
15246
+ .brz .jackInTheBox {
15247
+ -webkit-animation-name: jackInTheBox;
15248
+ animation-name: jackInTheBox; }
15249
+
15250
+ @-webkit-keyframes rollIn {
15251
+ from {
15252
+ opacity: 0;
15253
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
15254
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
15255
+ to {
15256
+ opacity: 1;
15257
+ -webkit-transform: translate3d(0, 0, 0);
15258
+ transform: translate3d(0, 0, 0); } }
15259
+
15260
+ @keyframes rollIn {
15261
+ from {
15262
+ opacity: 0;
15263
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
15264
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
15265
+ to {
15266
+ opacity: 1;
15267
+ -webkit-transform: translate3d(0, 0, 0);
15268
+ transform: translate3d(0, 0, 0); } }
15269
+ .brz .rollIn {
15270
+ -webkit-animation-name: rollIn;
15271
+ animation-name: rollIn; }
15272
+
15273
+ @-webkit-keyframes rollOut {
15274
+ from {
15275
+ opacity: 1; }
15276
+ to {
15277
+ opacity: 0;
15278
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
15279
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
15280
+
15281
+ @keyframes rollOut {
15282
+ from {
15283
+ opacity: 1; }
15284
+ to {
15285
+ opacity: 0;
15286
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
15287
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
15288
+ .brz .rollOut {
15289
+ -webkit-animation-name: rollOut;
15290
+ animation-name: rollOut; }
15291
+
15292
+ @-webkit-keyframes zoomIn {
15293
+ from {
15294
+ opacity: 0;
15295
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
15296
+ transform: scale3d(0.3, 0.3, 0.3); }
15297
+ 50% {
15298
+ opacity: 1; } }
15299
+
15300
+ @keyframes zoomIn {
15301
+ from {
15302
+ opacity: 0;
15303
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
15304
+ transform: scale3d(0.3, 0.3, 0.3); }
15305
+ 50% {
15306
+ opacity: 1; } }
15307
+ .brz .zoomIn {
15308
+ -webkit-animation-name: zoomIn;
15309
+ animation-name: zoomIn; }
15310
+
15311
+ @-webkit-keyframes zoomInDown {
15312
+ from {
15313
+ opacity: 0;
15314
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
15315
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
15316
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15317
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15318
+ 60% {
15319
+ opacity: 1;
15320
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15321
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15322
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15323
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15324
+
15325
+ @keyframes zoomInDown {
15326
+ from {
15327
+ opacity: 0;
15328
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
15329
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
15330
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15331
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15332
+ 60% {
15333
+ opacity: 1;
15334
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15335
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15336
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15337
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15338
+ .brz .zoomInDown {
15339
+ -webkit-animation-name: zoomInDown;
15340
+ animation-name: zoomInDown; }
15341
+
15342
+ @-webkit-keyframes zoomInLeft {
15343
+ from {
15344
+ opacity: 0;
15345
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
15346
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
15347
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15348
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15349
+ 60% {
15350
+ opacity: 1;
15351
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
15352
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
15353
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15354
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15355
+
15356
+ @keyframes zoomInLeft {
15357
+ from {
15358
+ opacity: 0;
15359
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
15360
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
15361
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15362
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15363
+ 60% {
15364
+ opacity: 1;
15365
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
15366
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
15367
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15368
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15369
+ .brz .zoomInLeft {
15370
+ -webkit-animation-name: zoomInLeft;
15371
+ animation-name: zoomInLeft; }
15372
+
15373
+ @-webkit-keyframes zoomInRight {
15374
+ from {
15375
+ opacity: 0;
15376
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
15377
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
15378
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15379
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15380
+ 60% {
15381
+ opacity: 1;
15382
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
15383
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
15384
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15385
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15386
+
15387
+ @keyframes zoomInRight {
15388
+ from {
15389
+ opacity: 0;
15390
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
15391
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
15392
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15393
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15394
+ 60% {
15395
+ opacity: 1;
15396
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
15397
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
15398
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15399
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15400
+ .brz .zoomInRight {
15401
+ -webkit-animation-name: zoomInRight;
15402
+ animation-name: zoomInRight; }
15403
+
15404
+ @-webkit-keyframes zoomInUp {
15405
+ from {
15406
+ opacity: 0;
15407
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
15408
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
15409
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15410
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15411
+ 60% {
15412
+ opacity: 1;
15413
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15414
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15415
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15416
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15417
+
15418
+ @keyframes zoomInUp {
15419
+ from {
15420
+ opacity: 0;
15421
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
15422
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
15423
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15424
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15425
+ 60% {
15426
+ opacity: 1;
15427
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15428
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15429
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15430
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15431
+ .brz .zoomInUp {
15432
+ -webkit-animation-name: zoomInUp;
15433
+ animation-name: zoomInUp; }
15434
+
15435
+ @-webkit-keyframes zoomOut {
15436
+ from {
15437
+ opacity: 1; }
15438
+ 50% {
15439
+ opacity: 0;
15440
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
15441
+ transform: scale3d(0.3, 0.3, 0.3); }
15442
+ to {
15443
+ opacity: 0; } }
15444
+
15445
+ @keyframes zoomOut {
15446
+ from {
15447
+ opacity: 1; }
15448
+ 50% {
15449
+ opacity: 0;
15450
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
15451
+ transform: scale3d(0.3, 0.3, 0.3); }
15452
+ to {
15453
+ opacity: 0; } }
15454
+ .brz .zoomOut {
15455
+ -webkit-animation-name: zoomOut;
15456
+ animation-name: zoomOut; }
15457
+
15458
+ @-webkit-keyframes zoomOutDown {
15459
+ 40% {
15460
+ opacity: 1;
15461
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15462
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15463
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15464
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15465
+ to {
15466
+ opacity: 0;
15467
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
15468
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
15469
+ -webkit-transform-origin: center bottom;
15470
+ transform-origin: center bottom;
15471
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15472
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15473
+
15474
+ @keyframes zoomOutDown {
15475
+ 40% {
15476
+ opacity: 1;
15477
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15478
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
15479
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15480
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15481
+ to {
15482
+ opacity: 0;
15483
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
15484
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
15485
+ -webkit-transform-origin: center bottom;
15486
+ transform-origin: center bottom;
15487
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15488
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15489
+ .brz .zoomOutDown {
15490
+ -webkit-animation-name: zoomOutDown;
15491
+ animation-name: zoomOutDown; }
15492
+
15493
+ @-webkit-keyframes zoomOutLeft {
15494
+ 40% {
15495
+ opacity: 1;
15496
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
15497
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
15498
+ to {
15499
+ opacity: 0;
15500
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
15501
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
15502
+ -webkit-transform-origin: left center;
15503
+ transform-origin: left center; } }
15504
+
15505
+ @keyframes zoomOutLeft {
15506
+ 40% {
15507
+ opacity: 1;
15508
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
15509
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
15510
+ to {
15511
+ opacity: 0;
15512
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
15513
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
15514
+ -webkit-transform-origin: left center;
15515
+ transform-origin: left center; } }
15516
+ .brz .zoomOutLeft {
15517
+ -webkit-animation-name: zoomOutLeft;
15518
+ animation-name: zoomOutLeft; }
15519
+
15520
+ @-webkit-keyframes zoomOutRight {
15521
+ 40% {
15522
+ opacity: 1;
15523
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
15524
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
15525
+ to {
15526
+ opacity: 0;
15527
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
15528
+ transform: scale(0.1) translate3d(2000px, 0, 0);
15529
+ -webkit-transform-origin: right center;
15530
+ transform-origin: right center; } }
15531
+
15532
+ @keyframes zoomOutRight {
15533
+ 40% {
15534
+ opacity: 1;
15535
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
15536
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
15537
+ to {
15538
+ opacity: 0;
15539
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
15540
+ transform: scale(0.1) translate3d(2000px, 0, 0);
15541
+ -webkit-transform-origin: right center;
15542
+ transform-origin: right center; } }
15543
+ .brz .zoomOutRight {
15544
+ -webkit-animation-name: zoomOutRight;
15545
+ animation-name: zoomOutRight; }
15546
+
15547
+ @-webkit-keyframes zoomOutUp {
15548
+ 40% {
15549
+ opacity: 1;
15550
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15551
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15552
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15553
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15554
+ to {
15555
+ opacity: 0;
15556
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
15557
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
15558
+ -webkit-transform-origin: center bottom;
15559
+ transform-origin: center bottom;
15560
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15561
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15562
+
15563
+ @keyframes zoomOutUp {
15564
+ 40% {
15565
+ opacity: 1;
15566
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15567
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
15568
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
15569
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
15570
+ to {
15571
+ opacity: 0;
15572
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
15573
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
15574
+ -webkit-transform-origin: center bottom;
15575
+ transform-origin: center bottom;
15576
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
15577
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
15578
+ .brz .zoomOutUp {
15579
+ -webkit-animation-name: zoomOutUp;
15580
+ animation-name: zoomOutUp; }
15581
+
15582
+ @-webkit-keyframes slideInDown {
15583
+ from {
15584
+ -webkit-transform: translate3d(0, -100%, 0);
15585
+ transform: translate3d(0, -100%, 0);
15586
+ visibility: visible; }
15587
+ to {
15588
+ -webkit-transform: translate3d(0, 0, 0);
15589
+ transform: translate3d(0, 0, 0); } }
15590
+
15591
+ @keyframes slideInDown {
15592
+ from {
15593
+ -webkit-transform: translate3d(0, -100%, 0);
15594
+ transform: translate3d(0, -100%, 0);
15595
+ visibility: visible; }
15596
+ to {
15597
+ -webkit-transform: translate3d(0, 0, 0);
15598
+ transform: translate3d(0, 0, 0); } }
15599
+ .brz .slideInDown {
15600
+ -webkit-animation-name: slideInDown;
15601
+ animation-name: slideInDown; }
15602
+
15603
+ @-webkit-keyframes slideInLeft {
15604
+ from {
15605
+ -webkit-transform: translate3d(-100%, 0, 0);
15606
+ transform: translate3d(-100%, 0, 0);
15607
+ visibility: visible; }
15608
+ to {
15609
+ -webkit-transform: translate3d(0, 0, 0);
15610
+ transform: translate3d(0, 0, 0); } }
15611
+
15612
+ @keyframes slideInLeft {
15613
+ from {
15614
+ -webkit-transform: translate3d(-100%, 0, 0);
15615
+ transform: translate3d(-100%, 0, 0);
15616
+ visibility: visible; }
15617
+ to {
15618
+ -webkit-transform: translate3d(0, 0, 0);
15619
+ transform: translate3d(0, 0, 0); } }
15620
+ .brz .slideInLeft {
15621
+ -webkit-animation-name: slideInLeft;
15622
+ animation-name: slideInLeft; }
15623
+
15624
+ @-webkit-keyframes slideInRight {
15625
+ from {
15626
+ -webkit-transform: translate3d(100%, 0, 0);
15627
+ transform: translate3d(100%, 0, 0);
15628
+ visibility: visible; }
15629
+ to {
15630
+ -webkit-transform: translate3d(0, 0, 0);
15631
+ transform: translate3d(0, 0, 0); } }
15632
+
15633
+ @keyframes slideInRight {
15634
+ from {
15635
+ -webkit-transform: translate3d(100%, 0, 0);
15636
+ transform: translate3d(100%, 0, 0);
15637
+ visibility: visible; }
15638
+ to {
15639
+ -webkit-transform: translate3d(0, 0, 0);
15640
+ transform: translate3d(0, 0, 0); } }
15641
+ .brz .slideInRight {
15642
+ -webkit-animation-name: slideInRight;
15643
+ animation-name: slideInRight; }
15644
+
15645
+ @-webkit-keyframes slideInUp {
15646
+ from {
15647
+ -webkit-transform: translate3d(0, 100%, 0);
15648
+ transform: translate3d(0, 100%, 0);
15649
+ visibility: visible; }
15650
+ to {
15651
+ -webkit-transform: translate3d(0, 0, 0);
15652
+ transform: translate3d(0, 0, 0); } }
15653
+
15654
+ @keyframes slideInUp {
15655
+ from {
15656
+ -webkit-transform: translate3d(0, 100%, 0);
15657
+ transform: translate3d(0, 100%, 0);
15658
+ visibility: visible; }
15659
+ to {
15660
+ -webkit-transform: translate3d(0, 0, 0);
15661
+ transform: translate3d(0, 0, 0); } }
15662
+ .brz .slideInUp {
15663
+ -webkit-animation-name: slideInUp;
15664
+ animation-name: slideInUp; }
15665
+
15666
+ @-webkit-keyframes slideOutDown {
15667
+ from {
15668
+ -webkit-transform: translate3d(0, 0, 0);
15669
+ transform: translate3d(0, 0, 0); }
15670
+ to {
15671
+ visibility: hidden;
15672
+ -webkit-transform: translate3d(0, 100%, 0);
15673
+ transform: translate3d(0, 100%, 0); } }
15674
+
15675
+ @keyframes slideOutDown {
15676
+ from {
15677
+ -webkit-transform: translate3d(0, 0, 0);
15678
+ transform: translate3d(0, 0, 0); }
15679
+ to {
15680
+ visibility: hidden;
15681
+ -webkit-transform: translate3d(0, 100%, 0);
15682
+ transform: translate3d(0, 100%, 0); } }
15683
+ .brz .slideOutDown {
15684
+ -webkit-animation-name: slideOutDown;
15685
+ animation-name: slideOutDown; }
15686
+
15687
+ @-webkit-keyframes slideOutLeft {
15688
+ from {
15689
+ -webkit-transform: translate3d(0, 0, 0);
15690
+ transform: translate3d(0, 0, 0); }
15691
+ to {
15692
+ visibility: hidden;
15693
+ -webkit-transform: translate3d(-100%, 0, 0);
15694
+ transform: translate3d(-100%, 0, 0); } }
15695
+
15696
+ @keyframes slideOutLeft {
15697
+ from {
15698
+ -webkit-transform: translate3d(0, 0, 0);
15699
+ transform: translate3d(0, 0, 0); }
15700
+ to {
15701
+ visibility: hidden;
15702
+ -webkit-transform: translate3d(-100%, 0, 0);
15703
+ transform: translate3d(-100%, 0, 0); } }
15704
+ .brz .slideOutLeft {
15705
+ -webkit-animation-name: slideOutLeft;
15706
+ animation-name: slideOutLeft; }
15707
+
15708
+ @-webkit-keyframes slideOutRight {
15709
+ from {
15710
+ -webkit-transform: translate3d(0, 0, 0);
15711
+ transform: translate3d(0, 0, 0); }
15712
+ to {
15713
+ visibility: hidden;
15714
+ -webkit-transform: translate3d(100%, 0, 0);
15715
+ transform: translate3d(100%, 0, 0); } }
15716
+
15717
+ @keyframes slideOutRight {
15718
+ from {
15719
+ -webkit-transform: translate3d(0, 0, 0);
15720
+ transform: translate3d(0, 0, 0); }
15721
+ to {
15722
+ visibility: hidden;
15723
+ -webkit-transform: translate3d(100%, 0, 0);
15724
+ transform: translate3d(100%, 0, 0); } }
15725
+ .brz .slideOutRight {
15726
+ -webkit-animation-name: slideOutRight;
15727
+ animation-name: slideOutRight; }
15728
+
15729
+ @-webkit-keyframes slideOutUp {
15730
+ from {
15731
+ -webkit-transform: translate3d(0, 0, 0);
15732
+ transform: translate3d(0, 0, 0); }
15733
+ to {
15734
+ visibility: hidden;
15735
+ -webkit-transform: translate3d(0, -100%, 0);
15736
+ transform: translate3d(0, -100%, 0); } }
15737
+
15738
+ @keyframes slideOutUp {
15739
+ from {
15740
+ -webkit-transform: translate3d(0, 0, 0);
15741
+ transform: translate3d(0, 0, 0); }
15742
+ to {
15743
+ visibility: hidden;
15744
+ -webkit-transform: translate3d(0, -100%, 0);
15745
+ transform: translate3d(0, -100%, 0); } }
15746
+ .brz .slideOutUp {
15747
+ -webkit-animation-name: slideOutUp;
15748
+ animation-name: slideOutUp; }
15749
+ .brz .animated {
15750
+ -webkit-animation-duration: 1s;
15751
+ animation-duration: 1s;
15752
+ -webkit-animation-fill-mode: both;
15753
+ animation-fill-mode: both; }
15754
+ .brz .animated.infinite {
15755
+ -webkit-animation-iteration-count: infinite;
15756
+ animation-iteration-count: infinite; }
15757
+ .brz .animated.delay-1s {
15758
+ -webkit-animation-delay: 1s;
15759
+ animation-delay: 1s; }
15760
+ .brz .animated.delay-2s {
15761
+ -webkit-animation-delay: 2s;
15762
+ animation-delay: 2s; }
15763
+ .brz .animated.delay-3s {
15764
+ -webkit-animation-delay: 3s;
15765
+ animation-delay: 3s; }
15766
+ .brz .animated.delay-4s {
15767
+ -webkit-animation-delay: 4s;
15768
+ animation-delay: 4s; }
15769
+ .brz .animated.delay-5s {
15770
+ -webkit-animation-delay: 5s;
15771
+ animation-delay: 5s; }
15772
+ .brz .animated.fast {
15773
+ -webkit-animation-duration: 800ms;
15774
+ animation-duration: 800ms; }
15775
+ .brz .animated.faster {
15776
+ -webkit-animation-duration: 500ms;
15777
+ animation-duration: 500ms; }
15778
+ .brz .animated.slow {
15779
+ -webkit-animation-duration: 2s;
15780
+ animation-duration: 2s; }
15781
+ .brz .animated.slower {
15782
+ -webkit-animation-duration: 3s;
15783
+ animation-duration: 3s; }
15784
+ @media (prefers-reduced-motion) {
15785
+ .brz .animated {
15786
+ -webkit-animation: unset !important;
15787
+ animation: unset !important;
15788
+ -webkit-transition: none !important;
15789
+ transition: none !important; } }
15790
+ .brz .brz-animated {
15791
+ opacity: 0;
15792
+ -webkit-animation-fill-mode: both;
15793
+ animation-fill-mode: both; }
15794
+ .brz .brz-animated.brz-animate {
15795
+ opacity: 1; }
15796
+ .brz .admin-bar .wp-env .visual-sidebar {
15797
+ top: 32px;
15798
+ left: 0; }
15799
+ .brz .admin-bar .wp-env .visual-wrap-block-wrap {
15800
+ margin-left: 0;
15801
+ padding-bottom: 0; }
15802
+ .brz .brz-wp__sidebar {
15803
+ width: 100%; }
15804
+ .brz .brz-wp__sidebar .brz-shortcode__placeholder {
15805
+ width: 100%;
15806
+ min-height: 300px; }
15807
+ .brz .brz-wp-shortcode {
15808
+ width: 100%; }
15809
+ .brz .brz-wp-shortcode .woocommerce:empty {
15810
+ width: 100%;
15811
+ height: 15px; }
15812
+ .brz .brz-wp-shortcode .woocommerce-product-gallery {
15813
+ opacity: 1 !important; }
15814
+ .brz .brz-wp-shortcode .brz-shortcode__placeholder {
15815
+ width: 100%;
15816
+ min-height: 300px; }
15817
+ .brz .brz-wp-shortcode__menu .menu {
15818
+ display: -webkit-box;
15819
+ display: -ms-flexbox;
15820
+ display: flex;
15821
+ -webkit-box-align: center;
15822
+ -ms-flex-align: center;
15823
+ align-items: center;
15824
+ -webkit-box-orient: horizontal;
15825
+ -webkit-box-direction: normal;
15826
+ -ms-flex-flow: row wrap;
15827
+ flex-flow: row wrap;
15828
+ list-style: none;
15829
+ margin: 0 auto;
15830
+ padding: 0; }
15831
+ .brz .brz-wp-shortcode__menu .menu .menu-item {
15832
+ position: relative;
15833
+ text-align: left;
15834
+ list-style: none; }
15835
+ .brz .brz-wp-shortcode__menu .menu .menu-item a span {
15836
+ display: block; }
15837
+ .brz .brz-wp-shortcode__menu .menu .sub-menu {
15838
+ position: absolute;
15839
+ left: 0;
15840
+ padding-left: 0;
15841
+ padding-right: 0;
15842
+ text-align: center;
15843
+ text-transform: none;
15844
+ list-style: none;
15845
+ margin: 0 !important;
15846
+ display: none;
15847
+ width: 280px;
15848
+ background-color: #33344b;
15849
+ z-index: 110; }
15850
+ .brz .brz-wp-shortcode__menu .menu .sub-menu .menu-item {
15851
+ display: block;
15852
+ margin: 0;
15853
+ padding: 0; }
15854
+ .brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu {
15855
+ display: none;
15856
+ left: 100%;
15857
+ top: 0; }
15858
+ .brz .brz-wp-shortcode__menu .menu .sub-menu a {
15859
+ display: block;
15860
+ line-height: 1.2em;
15861
+ padding: 10px 12%;
15862
+ color: #fcfcfc; }
15863
+ .brz .brz-wp-shortcode__menu .menu .sub-menu a:hover {
15864
+ background: rgba(36, 36, 53, 0.94); }
15865
+ .brz .brz-wp-shortcode__menu .menu > .menu-item {
15866
+ display: inline-block;
15867
+ -webkit-box-flex: 0;
15868
+ -ms-flex: 0 1 auto;
15869
+ flex: 0 1 auto;
15870
+ padding-top: 5px;
15871
+ padding-bottom: 5px; }
15872
+ .brz .brz-wp-shortcode__menu .menu > .menu-item > .sub-menu {
15873
+ top: 100%;
15874
+ padding-top: 15px;
15875
+ padding-bottom: 15px; }
15876
+ .brz .brz-wp-shortcode__menu .menu > .menu-item:hover > .sub-menu {
15877
+ display: block; }
15878
+ .brz .brz-wp-shortcode__menu .menu > .menu-item > .sub-menu > .menu-item:hover > .sub-menu {
15879
+ display: block; }
15880
+ .brz .brz-wp-shortcode__menu .menu > ul {
15881
+ margin: 0 !important; }
15882
+ .brz .brz-wp-shortcode__menu .menu > ul .page_item:not(:first-child) {
15883
+ margin-left: 15px; }
15884
+ .brz .brz-wp-shortcode__menu__toggle .menu {
15885
+ display: -webkit-box;
15886
+ display: -ms-flexbox;
15887
+ display: flex;
15888
+ -webkit-box-orient: horizontal;
15889
+ -webkit-box-direction: normal;
15890
+ -ms-flex-flow: row wrap;
15891
+ flex-flow: row wrap; }
15892
+ .brz .brz-wp-shortcode__menu__icon {
15893
+ display: none;
15894
+ padding: 15px;
15895
+ position: relative;
15896
+ cursor: pointer;
15897
+ -webkit-user-select: none;
15898
+ -moz-user-select: none;
15899
+ -ms-user-select: none;
15900
+ user-select: none;
15901
+ margin: 0; }
15902
+ .brz .brz-wp-shortcode__menu__icon--bars {
15903
+ display: block;
15904
+ height: 2px;
15905
+ position: relative;
15906
+ -webkit-transition: background 0.2s ease-out;
15907
+ transition: background 0.2s ease-out;
15908
+ width: 18px; }
15909
+ .brz .brz-wp-shortcode__menu__icon--bars:before, .brz .brz-wp-shortcode__menu__icon--bars:after {
15910
+ background-color: currentColor;
15911
+ content: "";
15912
+ display: block;
15913
+ height: 100%;
15914
+ position: absolute;
15915
+ -webkit-transition: all 0.2s ease-out;
15916
+ transition: all 0.2s ease-out;
15917
+ width: 100%; }
15918
+ .brz .brz-wp-shortcode__menu__icon--bars:before {
15919
+ top: 5px; }
15920
+ .brz .brz-wp-shortcode__menu__icon--bars:after {
15921
+ top: -5px; }
15922
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn {
15923
+ display: none; }
15924
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked ~ div .menu {
15925
+ display: -webkit-box;
15926
+ display: -ms-flexbox;
15927
+ display: flex;
15928
+ max-height: 100%; }
15929
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked ~ .brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars {
15930
+ background: transparent; }
15931
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked ~ .brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:before {
15932
+ -webkit-transform: rotate(-45deg);
15933
+ transform: rotate(-45deg); }
15934
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked ~ .brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:after {
15935
+ -webkit-transform: rotate(45deg);
15936
+ transform: rotate(45deg); }
15937
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked ~ .brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:before,
15938
+ .brz .brz-wp-shortcode__menu #brz-wp-shortcode__menu__btn:checked ~ .brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:after {
15939
+ top: 0; }
15940
+ @media (max-width: 767px) {
15941
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu {
15942
+ width: auto;
15943
+ text-align: center; }
15944
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu {
15945
+ display: none;
15946
+ -webkit-box-orient: vertical;
15947
+ -webkit-box-direction: normal;
15948
+ -ms-flex-flow: column nowrap;
15949
+ flex-flow: column nowrap;
15950
+ max-height: 0;
15951
+ -webkit-box-align: start;
15952
+ -ms-flex-align: start;
15953
+ align-items: flex-start;
15954
+ -webkit-transition: max-height 0.2s ease-out;
15955
+ transition: max-height 0.2s ease-out; }
15956
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu {
15957
+ position: relative;
15958
+ display: block;
15959
+ width: 100%;
15960
+ left: 15px;
15961
+ background-color: transparent; }
15962
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a {
15963
+ padding: 5px; }
15964
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a:hover {
15965
+ background-color: transparent; }
15966
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu {
15967
+ display: block;
15968
+ left: 15px; }
15969
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu > .menu-item {
15970
+ padding: 0; }
15971
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu > .menu-item > .sub-menu {
15972
+ top: 100%;
15973
+ padding: 5px 0; }
15974
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .brz-wp-shortcode__menu__icon {
15975
+ display: inline-block; } }
15976
+
15977
+ @media (min-width: 768px) and (max-width: 991px) {
15978
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu {
15979
+ width: auto;
15980
+ text-align: center; }
15981
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu {
15982
+ display: none;
15983
+ -webkit-box-orient: vertical;
15984
+ -webkit-box-direction: normal;
15985
+ -ms-flex-flow: column nowrap;
15986
+ flex-flow: column nowrap;
15987
+ max-height: 0;
15988
+ -webkit-box-align: start;
15989
+ -ms-flex-align: start;
15990
+ align-items: flex-start;
15991
+ -webkit-transition: max-height 0.2s ease-out;
15992
+ transition: max-height 0.2s ease-out; }
15993
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu {
15994
+ position: relative;
15995
+ display: block;
15996
+ width: 100%;
15997
+ left: 15px;
15998
+ background-color: transparent; }
15999
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a {
16000
+ padding: 5px; }
16001
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a:hover {
16002
+ background-color: transparent; }
16003
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu {
16004
+ display: block;
16005
+ left: 15px; }
16006
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu > .menu-item {
16007
+ padding: 0; }
16008
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu > .menu-item > .sub-menu {
16009
+ top: 100%;
16010
+ padding: 5px 0; }
16011
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .brz-wp-shortcode__menu__icon {
16012
+ display: inline-block; } }
public/editor-build/editor/icons/icons.svg CHANGED
@@ -1,5 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><symbol id="nc-play" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.6 7.2l-10-7A1 1 0 0 0 2 1v14c0 .8.9 1.3 1.6.8l10-7c.5-.4.5-1.2 0-1.6z"/></g></g></symbol><symbol id="nc-bold" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M11.56 7.316a3.483 3.483 0 0 0 1.418-3.207C12.782 2.305 11.143 1 9.33 1H2v1l1.447.724A1 1 0 0 1 4 3.618v8.764a1 1 0 0 1-.553.894L2 14v1h7.823c2.104 0 3.98-1.547 4.162-3.643a4.001 4.001 0 0 0-2.424-4.04zM7 3h1a2 2 0 1 1 0 4H7V3zm2 10H7V9h2a2 2 0 1 1 0 4z"/></g></g></symbol><symbol id="nc-h1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.5 2.05h2.686v4.964h5.389V2.05h2.686v11.9H8.575V9.258H3.186v4.692H.5V2.05zm12.18 4.91h2.83v6.99h-1.5V8.29h-1.33V6.96z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.05 2.3h2.577v4.762h5.17V2.3h2.576v11.416H7.796V9.215h-5.17v4.5H.05V2.3zm13.992 7.324c.17-.24.254-.471.254-.695a.77.77 0 0 0-.22-.561.758.758 0 0 0-.567-.226c-.422 0-.822.3-1.199.902l-1.2-.71c.314-.486.658-.854 1.032-1.103.374-.25.85-.374 1.43-.374.578 0 1.087.184 1.525.551.438.368.657.869.657 1.502 0 .345-.088.676-.264.993-.176.316-.5.72-.973 1.213l-1.21 1.257h2.649v1.343h-4.73v-1.113l1.967-2.014c.396-.403.68-.725.849-.965z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.1 2.27h2.589v4.784h5.194V2.27h2.589v11.47h-2.59V9.216H2.69v4.522H.1V2.27zm11.392 6.014V7.002h4.125v1.041L14.24 9.614c.54.09.958.317 1.253.68.296.363.443.782.443 1.258 0 .706-.239 1.26-.718 1.662-.478.402-1.09.603-1.836.603-.745 0-1.5-.264-2.265-.79l.617-1.196c.636.45 1.205.675 1.706.675.302 0 .551-.074.747-.222.196-.148.294-.361.294-.64a.78.78 0 0 0-.337-.666c-.225-.164-.537-.246-.935-.246-.212 0-.51.061-.896.183V9.807l1.291-1.523h-2.11z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h4" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.09 2.3h2.57v4.75h5.158V2.3h2.571v11.39H7.82V9.198H2.66v4.49H.09V2.3zm13.629 8.499V9.63h1.435V10.8h.757v1.292h-.757v1.598H13.72v-1.598h-2.69v-1.139l2.384-3.953h1.627l-2.269 3.8h.948z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-italic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12 2V0H6v2h1.27a.5.5 0 0 1 .496.57l-1.51 10.571a1 1 0 0 1-.99.859H4v2h6v-2H8.73a.5.5 0 0 1-.496-.57l1.51-10.571a1 1 0 0 1 .99-.859H12z"/></g></g></symbol><symbol id="nc-list-bullet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="2" cy="2" r="2"/><circle data-color="color-2" cx="2" cy="8" r="2"/><circle data-color="color-2" cx="2" cy="14" r="2"/><path fill="currentColor" d="M6 1h10v2H6z"/><path fill="currentColor" d="M6 7h10v2H6z"/><path fill="currentColor" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-list-default" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M1 9h7c.6 0 1-.4 1-1s-.4-1-1-1H1c-.6 0-1 .4-1 1s.4 1 1 1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-list-numbers" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 1h11v2H5z"/><path fill="currentColor" d="M5 7h11v2H5z"/><path fill="currentColor" d="M5 13h11v2H5z"/><path data-color="color-2" d="M.368 4v-.549l.598-.048c.097-.007.11-.035.11-.139V.84c0-.083-.02-.125-.09-.145L.382.569.46 0h1.666v3.264c0 .111.007.132.111.139l.57.048V4H.368z"/><path data-color="color-2" d="M.047 10v-.63l.907-.886c.684-.663.975-.934.975-1.32 0-.25-.122-.433-.48-.433-.373 0-.529.122-.529.603L0 7.252C.007 6.176.826 6 1.536 6c1.05 0 1.422.447 1.422 1.083 0 .636-.44 1.056-.934 1.53l-.765.73h.995c.067 0 .095-.013.108-.08l.095-.535h.717V10H.047z"/><path data-color="color-2" d="M2.344 13.682c.567.087.88.427.88 1.026 0 .88-.66 1.292-1.612 1.292C.939 16 .34 15.76 0 15.387l.533-.586c.253.247.533.44.999.44.373 0 .693-.133.693-.6 0-.406-.253-.573-.666-.573a2.73 2.73 0 0 0-.493.047v-.666l.326-.04c.48-.06.74-.293.74-.72 0-.252-.114-.459-.487-.459-.36 0-.532.12-.532.593l-.913-.08c0-1.052.793-1.232 1.492-1.232 1.026 0 1.419.393 1.419 1.106 0 .56-.347.912-.767 1.039v.026z"/></g></g></symbol><symbol id="nc-p" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><text fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" font-size="20" font-family="Montserrat-SemiBold, Montserrat" font-weight="500"><tspan x=".7" y="15">P</tspan></text></g></g></symbol><symbol id="nc-text-align-justify" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h16v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h16v2H0z"/></g></g></symbol><symbol id="nc-add" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H9v3H7V9H4V7h3V4h2v3h3v2z"/></g></g></symbol><symbol id="nc-align-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 11)" x="7" y="6" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-middle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 8)" x="7" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 5)" x="7" y="0" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-duplicate" viewBox="0 0 14 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="matrix(-1 0 0 1 14 0)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M9 4H1c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z"/><path d="M13 0H3v2h9v11h2V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-pin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C4.1 0 1 3.1 1 7c0 1.9.7 3.7 2.1 5 .1.1 4.1 3.7 4.2 3.8.4.3 1 .3 1.3 0 .1-.1 4.2-3.7 4.2-3.8 1.4-1.3 2.1-3.1 2.1-5 .1-3.9-3-7-6.9-7zm0 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></g></g></symbol><symbol id="nc-dashed" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 7h6v2H0z"/><path d="M10 7h6v2h-6z"/></g></g></g></symbol><symbol id="nc-dotted" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 7h2v2H1z"/><path d="M5 7h2v2H5z"/><path d="M9 7h2v2H9z"/><path d="M13 7h2v2h-2z"/></g></g></g></symbol><symbol id="nc-solid" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M0 7h16v2H0z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-iframe" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M16 12h-2v-2h-2v2h-2v2h2v2h2v-2h2z"/><path fill="currentColor" d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z"/></g></g></symbol><symbol id="nc-align-left" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z" transform="rotate(90 8 8)"/><rect x="4" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(180 11 8)" x="10" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-arrow-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M9.3 1.3L7.9 2.7 12.2 7H0v2h12.2l-4.3 4.3 1.4 1.4L16 8z"/></g></g></symbol><symbol id="nc-brush" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M0 9c0 1.7 1.3 3 3 3h2v2c0 1.1.9 2 2 2s2-.9 2-2v-2h2c1.7 0 3-1.3 3-3H0z"/><path d="M0 0h7l2 3 2-3h3v7H0z"/></g></g></g></symbol><symbol id="nc-circle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="5" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-round" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3c3.333 0 5.833 1 7.5 3 1.667 2 2.5 4.333 2.5 7h-3c-.011-2.144-.644-3.844-1.9-5.1C6.844 6.644 5.144 6.011 3 6V3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-square" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3h10v10h-3V6H3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.4 3.1l-7-3c-.3-.1-.5-.1-.8 0l-7 3c-.4.1-.6.5-.6.9v8c0 .4.2.8.6.9l7 3c.1.1.3.1.4.1s.3 0 .4-.1l7-3c.4-.2.6-.5.6-.9V4c0-.4-.2-.8-.6-.9zM8 2.1L12.5 4 8 5.9 3.5 4 8 2.1zM2 5.5l5 2.1v5.8l-5-2.1V5.5zm7 8V7.7l5-2.1v5.8l-5 2.1z"/></g></g></symbol><symbol id="nc-font" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0H1v4h1l.724-1.447A1 1 0 0 1 3.618 2H7v11.28a1 1 0 0 1-.684.948L4 15v1h8v-1l-2.316-.772A1 1 0 0 1 9 13.279V2h3.382a1 1 0 0 1 .894.553L14 4h1V0H8z"/></g></g></symbol><symbol id="nc-link" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M4.5 16c-1.2 0-2.3-.5-3.2-1.3-1.8-1.8-1.8-4.6 0-6.4l.7-.7L3.4 9l-.7.7c-1 1-1 2.6 0 3.6s2.6 1 3.6 0l3-3c1-1 1-2.6 0-3.6L8.6 6 10 4.6l.7.7c1.8 1.8 1.8 4.6 0 6.4l-3 3c-.8.8-2 1.3-3.2 1.3z"/><path fill="currentColor" d="M6 11.4l-.7-.7c-1.8-1.8-1.8-4.6 0-6.4l3-3c.9-.9 2-1.3 3.2-1.3s2.3.5 3.2 1.3c1.8 1.8 1.8 4.6 0 6.4l-.7.7L12.6 7l.7-.7c1-1 1-2.6 0-3.6s-2.6-1-3.6 0l-3 3c-1 1-1 2.6 0 3.6l.7.7L6 11.4z"/></g></g></symbol><symbol id="nc-more" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="8" cy="8" r="2"/><circle fill="currentColor" cx="2" cy="8" r="2"/><circle fill="currentColor" cx="14" cy="8" r="2"/></g></g></symbol><symbol id="nc-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="4" stroke-width="2" stroke="currentColor" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8.1 3.5L.3 11.3c-.2.2-.3.4-.3.7v3c0 .6.4 1 1 1h3c.3 0 .5-.1.7-.3l7.8-7.8-4.4-4.4z"/><path data-color="color-2" d="M15.7 3.3l-3-3c-.4-.4-1-.4-1.4 0L9.5 2.1l4.4 4.4 1.8-1.8c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-plus" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 7H9V1c0-.6-.4-1-1-1S7 .4 7 1v6H1c-.6 0-1 .4-1 1s.4 1 1 1h6v6c0 .6.4 1 1 1s1-.4 1-1V9h6c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-search" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M7 14c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM7 2C4.243 2 2 4.243 2 7s2.243 5 5 5 5-2.243 5-5-2.243-5-5-5z"/><path data-color="color-2" d="M15.707 14.293L13.314 11.9a8.019 8.019 0 0 1-1.414 1.414l2.393 2.393a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414z"/></g></g></symbol><symbol id="nc-star" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.144 5.438l-4.316-.627L8.897.9C8.559.217 7.441.217 7.103.9l-1.93 3.911-4.317.627a1.002 1.002 0 0 0-.554 1.707l3.124 3.044-.737 4.299a1 1 0 0 0 1.451 1.054L8 13.513l3.861 2.03c.728.381 1.591-.234 1.451-1.054l-.737-4.299 3.124-3.044a1.003 1.003 0 0 0-.555-1.708z"/></g></g></symbol><symbol id="nc-text-align-center" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M3 5h10v2H3z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M3 13h10v2H3z"/></g></g></symbol><symbol id="nc-text-align-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h10v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h10v2H0z"/></g></g></symbol><symbol id="nc-text-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M6 5h10v2H6z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-upload" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13 7.1V7c0-2.8-2.2-5-5-5-2.5 0-4.6 1.8-4.9 4.3C1.3 6.9 0 8.5 0 10.5 0 13 2 15 4.5 15H12c2.2 0 4-1.8 4-4 0-1.9-1.3-3.4-3-3.9zM9 10v3H7v-3H4l4-4 4 4H9z"/></g></g></symbol><symbol id="nc-check" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="check" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6.7 6.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l2 2c.2.2.4.3.7.3.3 0 .5-.1.7-.3l7-7c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L8 7.6 6.7 6.3z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 15c3.9 0 7-3.1 7-7 0-.6-.4-1-1-1s-1 .4-1 1c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5c.6 0 1.1.1 1.7.3.5.2 1.1-.1 1.3-.6.2-.5-.1-1.1-.6-1.3C9.6 1.1 8.8 1 8 1 4.1 1 1 4.1 1 8s3.1 7 7 7z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-cog" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.3 5.2l1.1-2.1L13 1.7l-2.1 1.1c-.3-.2-.7-.3-1.1-.4L9 0H7l-.8 2.3c-.3.1-.7.2-1 .4L3.1 1.6 1.6 3.1l1.1 2.1c-.2.3-.3.7-.4 1L0 7v2l2.3.8c.1.4.3.7.4 1.1L1.6 13 3 14.4l2.1-1.1c.3.2.7.3 1.1.4L7 16h2l.8-2.3c.4-.1.7-.3 1.1-.4l2.1 1.1 1.4-1.4-1.1-2.1c.2-.3.3-.7.4-1.1L16 9V7l-2.3-.8c-.1-.3-.2-.7-.4-1zM8 11c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"/></g></g></symbol><symbol id="nc-hover" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M3 8.238V4.5C3 3.122 4.121 2 5.5 2S8 3.122 8 4.5v2.605l1.059.118A4.456 4.456 0 0 0 10 4.5C10 2.019 7.981 0 5.5 0S1 2.019 1 4.5c0 1.557.795 2.93 2 3.738z"/><path fill="currentColor" d="M13.9 16l1.066-3.554a3 3 0 0 0-2.542-3.843L7 8V4.5a1.5 1.5 0 1 0-3 0V12H3v-2h-.5A1.5 1.5 0 0 0 1 11.5v1.833c0 .95.285 1.87.79 2.667H13.9z"/></g></g></symbol><symbol id="nc-image" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 16H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1zM2 14h12V2H2v12z"/><path data-color="color-2" d="M6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1z"/><path data-color="color-2" d="M3 12l2-4 2 2 3-4 3 6z"/></g></g></symbol><symbol id="nc-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="none" fill-rule="nonzero"/><path fill="currentColor" d="M11.5 10.1l-1.4 1.4L8 9.4l-2.1 2.1-1.4-1.4L6.6 8 4.5 5.9l1.4-1.4L8 6.6l2.1-2.1 1.4 1.4L9.4 8z"/></g></g></g></symbol><symbol id="nc-settings" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 5V1c0-.6-.4-1-1-1S3 .4 3 1v4c0 .6.4 1 1 1s1-.4 1-1z"/><path fill="currentColor" d="M1 11c0 1.3.9 2.4 2 2.8V15c0 .6.4 1 1 1s1-.4 1-1v-1-.2c1.2-.4 2-1.5 2-2.8 0-1.7-1.3-3-3-3s-3 1.3-3 3z"/><path data-color="color-2" d="M11 11v4c0 .6.4 1 1 1s1-.4 1-1v-4c0-.6-.4-1-1-1s-1 .4-1 1z"/><path data-color="color-2" d="M9 5c0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.3-.9-2.4-2-2.8V1c0-.6-.4-1-1-1s-1 .4-1 1v1.2C9.9 2.6 9 3.7 9 5z"/></g></g></symbol><symbol id="nc-trash" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V6H2z"/><path data-color="color-2" d="M12 3V1c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v2H0v2h16V3h-4zm-2 0H6V2h4v1z"/></g></g></symbol><symbol id="nc-uncheck" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="uncheck" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval" stroke="currentColor" stroke-width="2" cx="8" cy="8" r="6"/></g></g></g></symbol><symbol id="nc-button-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M12.586 15l-3.793-3.793L7 14 5 6l8 2-2.793 1.793L14 13.586 12.586 15z"/><path fill="currentColor" d="M4 10H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v7h-2V2H2v6h2v2z"/></g></g></symbol><symbol id="nc-button" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.424 5.603L7 5V1.5a1.5 1.5 0 1 0-3 0V9H3V7h-.5A1.5 1.5 0 0 0 1 8.5v1.833a5 5 0 0 0 1 3L4 16h9l1.966-6.554a3 3 0 0 0-2.542-3.843z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-desktop" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 0H1C.4 0 0 .4 0 1v11c0 .6.4 1 1 1h5v1H3v2h10v-2h-3v-1h5c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 11H2V2h12v9z"/></g></g></symbol><symbol id="nc-divider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M1 1v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path fill="currentColor" d="M1 12v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path data-color="color-2" d="M15 9H1a1 1 0 0 1 0-2h14a1 1 0 0 1 0 2z"/></g></g></symbol><symbol id="nc-lock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134V6.4H5.833V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-phone" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(2)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M10 16H2c-1.103 0-2-.897-2-2V2C0 .897.897 0 2 0h8c1.103 0 2 .897 2 2v12c0 1.103-.897 2-2 2zM2 2v12h8.001L10 2H2z"/><path d="M7 12v-2H5v2z"/></g></g></g></symbol><symbol id="nc-reorder" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v1H3z"/><path d="M1 4h14v11H1z"/></g></g></g></symbol><symbol id="nc-spacer" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6H0V1c0-.6.4-1 1-1h5v2H2v4z"/><path fill="currentColor" d="M16 6h-2V2h-4V0h5c.6 0 1 .4 1 1v5z"/><path fill="currentColor" d="M15 16h-5v-2h4v-4h2v5c0 .6-.4 1-1 1z"/><path fill="currentColor" d="M6 16H1c-.6 0-1-.4-1-1v-5h2v4h4v2z"/></g></g></symbol><symbol id="nc-tablet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13 0H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM7 15v-1h2v1H7zm6-3H3V2h10v10z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-unlock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134h2.166V6.4h-6.5V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-upgrade" viewBox="0 0 32 32"><g><g class="nc-icon-wrapper" fill="currentColor"><circle fill="currentColor" cx="16" cy="6" r="1"/><path fill="currentColor" d="M18 24v-1c0-.77.297-1.468.775-2H0v1c0 2.757 2.243 5 5 5h13v-3z"/><path fill="currentColor" d="M27 4v10.09a5.964 5.964 0 0 1 2 .721V4c0-1.654-1.346-3-3-3H6C4.346 1 3 2.346 3 4v15h2V4c0-.551.448-1 1-1h20c.552 0 1 .449 1 1z"/><path data-color="color-2" d="M31 22h-1v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1zm-7-2c0-1.103.897-2 2-2s2 .897 2 2v2h-4v-2z"/></g></g></symbol><symbol id="nc-close" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.786 3.214a.69.69 0 0 0-1 0L8 7 4.214 3.214a.69.69 0 0 0-1 0 .69.69 0 0 0 0 1L7 8l-3.786 3.786a.69.69 0 0 0 0 1 .648.648 0 0 0 .5.214.648.648 0 0 0 .5-.214L8 9l3.786 3.786a.772.772 0 0 0 .5.214.772.772 0 0 0 .5-.214.69.69 0 0 0 0-1L9 8l3.786-3.786a.69.69 0 0 0 0-1z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-corners-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><rect x="1" y="2" width="14" height="12" rx="3" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-bottom-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="#22AFDA" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-bottom-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="#22AFDA" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="#22AFDA"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="#22AFDA" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path transform="rotate(90 11.833 8)" d="M11.833 10.167h4.5l-4.5-4.334-4.5 4.334h2.834z"/><path transform="matrix(0 1 1 0 -3.833 3.833)" d="M4.167 10.167h4.5l-4.5-4.334-4.5 4.334H2.5z"/></g></g></g></symbol><symbol id="nc-redo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M10 4.6L8.6 6l3 3H6C4.3 9 3 7.7 3 6s1.3-3 3-3h8V1H6C3.2 1 1 3.2 1 6s2.2 5 5 5h5.6l-3 3 1.4 1.4 5.4-5.4L10 4.6z"/></g></g></symbol><symbol id="nc-size" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 8l-3-3v2h-2v2h2v2z"/><path d="M7 6h2V4h2L8 1 5 4h2z"/><path d="M9 10H7v2H5l3 3 3-3H9z"/><path d="M6 9V7H4V5L1 8l3 3V9z"/></g></g></g></symbol><symbol id="nc-styling-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 1h16v2H0z"/><path d="M0 13h16v2H0z"/><path transform="rotate(-90 1 8)" d="M-4 7H6v2H-4z"/><path transform="rotate(-90 15 8)" d="M10 7h10v2H10z"/></g></g></g></symbol><symbol id="nc-styling-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="#22AFDA" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v2H3z"/><path d="M3 13h10v2H3z"/><path transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="#22AFDA" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="#22AFDA" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="#22AFDA" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.2 5.6l3.4-3.4L3.7.3c-.4-.4-1-.4-1.4 0l-2 2c-.4.4-.4 1 0 1.4l1.9 1.9z"/><path data-color="color-2" d="M13.8 10.4l-3.4 3.4 1.9 1.9c.2.2.4.3.7.3h3v-3c0-.3-.1-.5-.3-.7l-1.9-1.9z"/><path fill="currentColor" d="M15.7 4.3l-4-4c-.4-.4-1-.4-1.4 0L9 1.6l1.7 1.7-1.4 1.4L7.6 3 6 4.6l1.7 1.7-1.4 1.4L4.6 6 3 7.6l1.7 1.7-1.4 1.4L1.6 9 .3 10.3c-.4.4-.4 1 0 1.4l4 4c.4.4 1 .4 1.4 0l10-10c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-time" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12.7.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l.8.8-.9.9C10 2.5 8.6 2 7 2 3.1 2 0 5.1 0 9s3.1 7 7 7 7-3.1 7-7c0-1.6-.5-3-1.4-4.2l.9-.9.8.8c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-3-3zM7 14c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z"/><path data-color="color-2" d="M8 6H6v4h4V8H8z"/></g></g></symbol><symbol id="nc-undo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.502 12.333a6.996 6.996 0 0 1-1.405-3.168l1.973-.331a4.982 4.982 0 0 0 1.003 2.26l-1.571 1.239z"/><path data-color="color-2" d="M6.834 14.903a7.015 7.015 0 0 1-2.976-1.259l1.186-1.611c.624.459 1.358.77 2.122.898l-.332 1.972z"/><path data-color="color-2" d="M9.165 14.903l-.33-1.973a4.99 4.99 0 0 0 2.209-.964l1.219 1.586a6.997 6.997 0 0 1-3.098 1.351z"/><path fill="currentColor" d="M8 1c-1.873 0-3.65.759-4.948 2.052L.9.9.2 7.3l6.4-.7-2.135-2.135A5.023 5.023 0 0 1 8 3c2.757 0 5 2.243 5 5 0 1.06-.327 2.072-.947 2.928l1.621 1.173A6.96 6.96 0 0 0 15 8c0-3.86-3.141-7-7-7z"/></g></g></symbol><symbol id="nc-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M8 6.333h4.5L8 2 3.5 6.333h2.833z"/><path transform="matrix(1 0 0 -1 0 23.667)" d="M8 14h4.5L8 9.667 3.5 14h2.833z"/></g></g></g></symbol><symbol id="nc-check-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><polygon fill="currentColor" points="12.4,6 11,4.6 7,8.6 5,6.6 3.6,8 7,11.4 "/></g></g></symbol><symbol id="nc-circle-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M11.5,10.1l-1.4,1.4L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8 L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-stre-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,12c-0.232,0-0.463-0.08-0.651-0.241l-7.759-6.65L0.892,3.59L8,9.683l7.108-6.093l1.302,1.519l-7.759,6.65 C8.463,11.92,8.232,12,8,12z"/></g></g></symbol><symbol id="nc-stre-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15.108,12.41L8,6.317L0.892,12.41l-1.302-1.519l7.759-6.65c0.375-0.322,0.927-0.322,1.302,0l7.759,6.65 L15.108,12.41z"/></g></g></symbol><symbol id="nc-alert-circle-que" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M8,13c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1s1,0.4,1,1 C9,12.6,8.6,13,8,13z M9.5,8.4C9,8.7,9,8.8,9,9v1H7V9c0-1.3,0.8-1.9,1.4-2.3C8.9,6.4,9,6.3,9,6c0-0.6-0.4-1-1-1 C7.6,5,7.3,5.2,7.1,5.5L6.6,6.4l-1.7-1l0.5-0.9C5.9,3.6,6.9,3,8,3c1.7,0,3,1.3,3,3C11,7.4,10.1,8,9.5,8.4z"/></g></g></symbol><symbol id="nc-grid-45" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M15,0h-5C9.4,0,9,0.4,9,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <path fill="currentColor" d="M15,9h-5c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C16,9.4,15.6,9,15,9z"/></g></g></symbol><symbol id="nc-bars" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><rect x="7" fill="currentColor" width="2" height="4"/> <rect x="10.243" y="2.757" transform="matrix(0.7071 -0.7071 0.7071 0.7071 0.929 9.7574)" opacity="0.9" fill="currentColor" width="4" height="2"/> <rect x="12" y="7" opacity="0.8" fill="currentColor" width="4" height="2"/> <rect x="11.243" y="10.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -5.0711 12.2427)" opacity="0.7" fill="currentColor" width="2" height="4"/> <rect x="7" y="12" opacity="0.6" fill="currentColor" width="2" height="4"/> <rect x="1.758" y="11.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -7.5564 6.2426)" opacity="0.5" fill="currentColor" width="4" height="2"/> <rect y="7" opacity="0.4" fill="currentColor" width="4" height="2"/> <rect x="2.757" y="1.758" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.5563 3.7573)" opacity="0.3" fill="currentColor" width="2" height="4"/> </g></g></symbol><symbol id="nc-square-remove-09" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,0H1C0.4,0,0,0.4,0,1v14c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z M11.5,10.1l-1.4,1.4 L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-paragraph" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <rect data-color="color-2" x="9" y="1" width="7" height="2"/> <rect data-color="color-2" x="9" y="4" width="7" height="2"/> <rect data-color="color-2" x="9" y="10" width="7" height="2"/> <rect data-color="color-2" x="9" y="13" width="7" height="2"/></g></g></symbol><symbol id="nc-zoom-e" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M2,6H0V1c0-0.6,0.4-1,1-1h5v2H2V6z"/> <path fill="currentColor" d="M16,6h-2V2h-4V0h5c0.6,0,1,0.4,1,1V6z"/> <path fill="currentColor" d="M15,16h-5v-2h4v-4h2v5C16,15.6,15.6,16,15,16z"/> <path fill="currentColor" d="M6,16H1c-0.6,0-1-0.4-1-1v-5h2v4h4V16z"/></g></g></symbol><symbol id="nc-hourglass" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,2c0.6,0,1-0.4,1-1s-0.4-1-1-1H1C0.4,0,0,0.4,0,1s0.4,1,1,1h1c0.1,2.4,0.8,4.5,2,6c-1.2,1.4-2,3.6-2,6H1 c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1s-0.4-1-1-1h-1c-0.1-2.5-0.8-4.6-2-6c1.3-1.5,2-3.6,2-6H15z M9.9,7.3L9,8.1l1,0.7 c1.2,0.9,2,2.9,2.1,5.2H4c0.1-2.3,0.9-4.3,2.1-5.2l1-0.7L6.1,7.3C4.8,6.1,4.1,4.2,4,2h8C11.9,4.2,11.2,6.1,9.9,7.3z"/></g></g></symbol><symbol id="nc-share-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M12,6c1.654,0,3-1.346,3-3s-1.346-3-3-3S9,1.346,9,3c0,0.223,0.029,0.439,0.075,0.649l-3.22,2.012 C5.343,5.254,4.704,5,4,5C2.346,5,1,6.346,1,8s1.346,3,3,3c0.704,0,1.343-0.254,1.855-0.661l3.22,2.012C9.029,12.561,9,12.777,9,13 c0,1.654,1.346,3,3,3s3-1.346,3-3s-1.346-3-3-3c-0.704,0-1.343,0.254-1.855,0.661l-3.22-2.012C6.971,8.439,7,8.223,7,8 S6.971,7.561,6.925,7.351l3.22-2.012C10.657,5.746,11.296,6,12,6z"/></g></g></symbol><symbol id="nc-form" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path data-color="color-2" d="M15,16H9c-0.552,0-1-0.448-1-1v-1c0-0.552,0.448-1,1-1h6c0.552,0,1,0.448,1,1v1 C16,15.552,15.552,16,15,16z"/> <path fill="currentColor" d="M15,0H1C0.448,0,0,0.448,0,1v9c0,0.552,0.448,1,1,1h14c0.552,0,1-0.448,1-1V1C16,0.448,15.552,0,15,0z M14,9 H2V4h12V9z"/></g></g></symbol><symbol id="nc-circle-remove-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><circle fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="8.5" cy="8.5" r="7"/><line data-color="color-2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="11.5" y1="5.5" x2="5.5" y2="11.5"/><line data-color="color-2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.5" y1="5.5" x2="11.5" y2="11.5"/></g></g></symbol><symbol id="nc-eye-ban-18" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M14.6,5.6l-8.2,8.2C6.9,13.9,7.5,14,8,14c3.6,0,6.4-3.1,7.6-4.9c0.5-0.7,0.5-1.6,0-2.3 C15.4,6.5,15,6.1,14.6,5.6z"/> <path fill="currentColor" d="M14.3,0.3L11.6,3C10.5,2.4,9.3,2,8,2C4.4,2,1.6,5.1,0.4,6.9c-0.5,0.7-0.5,1.6,0,2.2c0.5,0.8,1.4,1.8,2.4,2.7 l-2.5,2.5c-0.4,0.4-0.4,1,0,1.4C0.5,15.9,0.7,16,1,16s0.5-0.1,0.7-0.3l14-14c0.4-0.4,0.4-1,0-1.4S14.7-0.1,14.3,0.3z M5.3,9.3 C5.1,8.9,5,8.5,5,8c0-1.7,1.3-3,3-3c0.5,0,0.9,0.1,1.3,0.3L5.3,9.3z"/></g></g></symbol><symbol id="nc-eye-17" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,14c3.6,0,6.4-3.1,7.6-4.9c0.5-0.7,0.5-1.6,0-2.3C14.4,5.1,11.6,2,8,2C4.4,2,1.6,5.1,0.4,6.9 c-0.5,0.7-0.5,1.6,0,2.2C1.6,10.9,4.4,14,8,14z M8,5c1.7,0,3,1.3,3,3s-1.3,3-3,3S5,9.7,5,8S6.3,5,8,5z"/></g></g></symbol><symbol id="nc-drag" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M16 8l-3-3v2H9V3h2L8 0 5 3h2v4H3V5L0 8l3 3V9h4v4H5l3 3 3-3H9V9h4v2z"/></g></g></symbol><symbol id="nc-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8.01 13.004c2.598 0 3.876-1.336 3.876-3.107 0-3.616-5.561-2.585-5.561-4.11 0-.58.494-.958 1.365-.958.987 0 2.032.334 2.816 1.06l1.147-1.539C10.695 3.465 9.418 3 7.88 3c-2.28 0-3.674 1.336-3.674 2.947 0 3.645 5.576 2.469 5.576 4.153 0 .566-.538 1.074-1.685 1.074a4.255 4.255 0 0 1-3.078-1.321l-1.132 1.612c.915.914 2.25 1.539 4.123 1.539z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-medium" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1" d="M13.544 13V3h-3.067L7.992 9.288 5.508 3H2.456v10h2.178V5.731L7.517 13h.95l2.884-7.269V13z"/></g></g></symbol><symbol id="nc-large" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1" d="M11.392 13v-2.06H6.94V3H4.683v10z"/></g></g></symbol><symbol id="nc-16" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1.014 3.1h3.934v9.8H3.072V4.752H1.014z"/><path d="M13.111 4.703a4.159 4.159 0 0 0-1.141-.161c-.877 0-1.538.294-1.981.882-.443.588-.651 1.39-.623 2.408a2.46 2.46 0 0 1 1.029-.973c.434-.22.95-.329 1.547-.329.97 0 1.74.285 2.31.854.57.57.854 1.33.854 2.282 0 .672-.145 1.258-.434 1.757-.29.5-.698.884-1.225 1.155-.527.27-1.141.406-1.841.406-.83 0-1.55-.191-2.156-.574-.607-.383-1.071-.933-1.393-1.652-.322-.719-.483-1.577-.483-2.576 0-1.036.175-1.944.525-2.723.35-.78.847-1.381 1.491-1.806.644-.425 1.4-.637 2.268-.637.504 0 1.024.068 1.561.203a5.43 5.43 0 0 1 1.407.553l-.714 1.4a3.245 3.245 0 0 0-1.001-.469zM10.15 8.476a1.603 1.603 0 0 0-.518 1.246c-.01.28.056.548.196.805s.352.467.637.63c.285.163.637.245 1.057.245.56 0 1.008-.154 1.344-.462.336-.308.504-.737.504-1.288 0-.513-.161-.922-.483-1.225-.322-.303-.758-.455-1.309-.455-.597 0-1.073.168-1.428.504z"/></g></g></g></symbol><symbol id="nc-24" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M7.784 11.262V12.9H.532v-1.358l3.696-3.808c.355-.355.64-.705.854-1.05.215-.345.322-.644.322-.896a.968.968 0 0 0-.42-.833c-.28-.2-.667-.301-1.162-.301-.43 0-.887.107-1.372.322a5.256 5.256 0 0 0-1.372.896L.336 4.43a7.256 7.256 0 0 1 1.827-1.043 5.3 5.3 0 0 1 1.925-.371c.644 0 1.213.103 1.708.308.495.205.88.497 1.155.875s.413.814.413 1.309c0 .476-.163.98-.49 1.512-.327.532-.784 1.106-1.372 1.722l-2.492 2.52h4.774z"/><path d="M15.71 8.98v1.61h-1.414v2.31H12.56v-2.31H7.87V9.204L11.062 3.1h1.806L9.872 8.98h2.688V6.712h1.736V8.98z"/></g></g></g></symbol><symbol id="nc-32" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M6.867 8.014c.537.467.805 1.078.805 1.834 0 .616-.159 1.16-.476 1.631-.317.471-.77.84-1.358 1.106-.588.266-1.274.399-2.058.399-.663 0-1.318-.1-1.967-.301-.649-.2-1.202-.469-1.659-.805l.742-1.456a4.321 4.321 0 0 0 2.758 1.008c.681 0 1.216-.14 1.603-.42.387-.28.581-.658.581-1.134 0-.485-.191-.856-.574-1.113-.383-.257-.929-.385-1.638-.385H2.142V7.244l2.632-2.548H.644L.63 3.1h6.552v1.162l-2.996 2.87.518.056c.905.084 1.626.36 2.163.826z"/><path d="M15.556 11.262V12.9H8.304v-1.358L12 7.734c.355-.355.64-.705.854-1.05.215-.345.322-.644.322-.896a.968.968 0 0 0-.42-.833c-.28-.2-.667-.301-1.162-.301-.43 0-.887.107-1.372.322a5.256 5.256 0 0 0-1.372.896L8.108 4.43a7.256 7.256 0 0 1 1.827-1.043 5.3 5.3 0 0 1 1.925-.371c.644 0 1.213.103 1.708.308.495.205.88.497 1.155.875s.413.814.413 1.309c0 .476-.163.98-.49 1.512-.327.532-.784 1.106-1.372 1.722l-2.492 2.52h4.774z"/></g></g></g></symbol><symbol id="nc-48" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 3)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M7.952 5.98v1.61H6.538V9.9H4.802V7.59H.112V6.204L3.304.1H5.11L2.114 5.98h2.688V3.712h1.736V5.98z"/><path d="M14.597.709c.593.462.889 1.09.889 1.883 0 .448-.121.854-.364 1.218a2.451 2.451 0 0 1-1.008.854c.579.215 1.034.541 1.365.98.331.439.497.943.497 1.512 0 .57-.154 1.069-.462 1.498-.308.43-.749.758-1.323.987-.574.229-1.244.343-2.009.343-.765 0-1.435-.114-2.009-.343-.574-.229-1.015-.553-1.323-.973-.308-.42-.462-.915-.462-1.484 0-.579.173-1.09.518-1.533.345-.443.821-.772 1.428-.987a2.715 2.715 0 0 1-1.071-.896 2.15 2.15 0 0 1-.385-1.246c0-.765.296-1.374.889-1.827.593-.453 1.393-.679 2.401-.679 1.027 0 1.836.231 2.429.693zM10.915 1.71c-.303.233-.455.56-.455.98 0 .42.152.747.455.98.303.233.726.35 1.267.35.541 0 .961-.117 1.26-.35.299-.233.448-.56.448-.98 0-.42-.15-.747-.448-.98-.299-.233-.719-.35-1.26-.35s-.964.117-1.267.35zm-.231 4.158c-.355.261-.532.63-.532 1.106 0 .485.177.863.532 1.134.355.27.854.406 1.498.406.635 0 1.132-.133 1.491-.399.36-.266.539-.642.539-1.127 0-.476-.18-.847-.539-1.113-.36-.266-.861-.399-1.505-.399-.635 0-1.13.13-1.484.392z"/></g></g></g></symbol><symbol id="nc-64" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(.2 3)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M5.537 1.703a4.159 4.159 0 0 0-1.141-.161c-.877 0-1.538.294-1.981.882-.443.588-.651 1.39-.623 2.408a2.46 2.46 0 0 1 1.029-.973c.434-.22.95-.329 1.547-.329.97 0 1.74.285 2.31.854.57.57.854 1.33.854 2.282 0 .672-.145 1.258-.434 1.757-.29.5-.698.884-1.225 1.155-.527.27-1.141.406-1.841.406-.83 0-1.55-.191-2.156-.574C1.269 9.027.805 8.477.483 7.758.161 7.039 0 6.181 0 5.182c0-1.036.175-1.944.525-2.723.35-.78.847-1.381 1.491-1.806.644-.425 1.4-.637 2.268-.637.504 0 1.024.068 1.561.203a5.43 5.43 0 0 1 1.407.553l-.714 1.4a3.245 3.245 0 0 0-1.001-.469zM2.576 5.476a1.603 1.603 0 0 0-.518 1.246c-.01.28.056.548.196.805s.352.467.637.63c.285.163.637.245 1.057.245.56 0 1.008-.154 1.344-.462.336-.308.504-.737.504-1.288 0-.513-.161-.922-.483-1.225-.322-.303-.758-.455-1.309-.455-.597 0-1.073.168-1.428.504z"/><path d="M15.724 5.98v1.61H14.31V9.9h-1.736V7.59h-4.69V6.204L11.076.1h1.806L9.886 5.98h2.688V3.712h1.736V5.98z"/></g></g></g></symbol><symbol id="nc-row" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.77 0C15.507 0 16 .486 16 1.214v14.572c0 .728-.492 1.214-1.23 1.214H1.23C.493 17 0 16.514 0 15.786V1.214C0 .486.492 0 1.23 0h13.54zm-2 4H3.23C2.493 4 2 4.514 2 5.286v6.428C2 12.486 2.492 13 3.23 13h9.54c.738 0 1.23-.514 1.23-1.286V5.286C14 4.514 13.508 4 12.77 4z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-column" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.77 0C15.507 0 16 .486 16 1.214v14.572c0 .728-.492 1.214-1.23 1.214H1.23C.493 17 0 16.514 0 15.786V1.214C0 .486.492 0 1.23 0h13.54zM12 13.77V3.23C12 2.493 11.486 2 10.714 2H5.286C4.514 2 4 2.492 4 3.23v10.54c0 .738.514 1.23 1.286 1.23h5.428c.772 0 1.286-.492 1.286-1.23z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-sound-cloud" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M2.777 5.974c-.279 0-.557.171-.557.343l-.279 4.628.279 3.086c0 .171.278.171.278.171.279 0 .279-.171.279-.171l.278-3.086V6.317c0-.172-.278-.343-.278-.343z"/><path d="M.945 8.209c-.25.008-.494.142-.49.267l-.132 3.382.328 2.24c.005.125.254.116.254.116.25-.009.245-.134.245-.134l.17-2.257-.117-3.373c-.004-.125-.258-.241-.258-.241z"/><path d="M6.57 14.202c.217 0 .434-.171.434-.343l.217-2.914-.217-7.2c0-.171-.217-.342-.433-.342-.217 0-.434.171-.434.342l-.216 7.2.216 2.914c0 .172.217.343.434.343z"/><path d="M4.53 14.202c.2 0 .4-.171.4-.343l.2-2.914-.2-6.342c0-.172-.2-.343-.4-.343s-.4.171-.4.343l-.2 6.342.2 2.914c0 .172.2.343.4.343z"/><path d="M13.084 7.517C13.87 4.35 12.37 1.86 9.502 1.86c-.497 0-.895.171-1.293.343-.2.171-.2.343-.2.514v11.142c0 .172.1.343.2.343h5.571c1.09 0 2.09-1.352 2.09-3.352 0-2-1-3-2.786-3.333z"/></g></g></g></symbol><symbol id="nc-progress" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" stroke="none" stroke-width="1" fill="none"><path d="M9 1H2c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h7V1z" fill="currentColor"/><path d="M4 1.61v12.749L14 14V2H4v-.39z" stroke="currentColor" stroke-width="2"/></g></g></g></symbol><symbol id="nc-counter" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H7V4h2v3h3v2z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-shortcode" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M5 3c.5 0 1-.5 1-1s-.448-1-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1c0-.552-.5-1-1-1h-.875C3.45 13 3 12.508 3 11.77V4.23C3 3.493 3.45 3 4.125 3H5z"/><path d="M11 3c-.5 0-1-.5-1-1s.448-1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1c0-.552.5-1 1-1h.875C12.55 13 13 12.508 13 11.77V4.23C13 3.493 12.55 3 11.875 3H11z"/></g></g></g></symbol><symbol id="nc-sidebar" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h14zm-5 10.77V4.23C10 3.493 9.486 3 8.714 3H3.286C2.514 3 2 3.492 2 4.23v7.54c0 .738.514 1.23 1.286 1.23h5.428C9.486 13 10 12.508 10 11.77z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-dark" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.2 9.047a6.381 6.381 0 0 1-1.554.194 5.799 5.799 0 0 1-5.823-5.823c0-.517.065-1.035.194-1.553.065-.194 0-.453-.194-.647s-.388-.258-.647-.194C3.136 1.93 1 4.777 1 7.947a7.097 7.097 0 0 0 7.117 7.118c3.17 0 6.018-2.135 6.859-5.241.064-.194 0-.453-.194-.647a.62.62 0 0 0-.583-.13z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-light" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M1.87 2.813l.943-.943 1.415 1.415-.943.943z"/><path d="M11.772 3.285l1.414-1.415.943.943-1.414 1.415z"/><path d="M11.772 12.715l.943-.943 1.415 1.415-.943.943z"/><path d="M1.87 13.187l1.415-1.415.943.943-1.415 1.415z"/><circle cx="8" cy="8" r="4.668"/><path d="M-.002 7.333h2v1.334h-2z"/><path d="M7.333-.002h1.334v2H7.333z"/><path d="M14.001 7.333h2v1.334h-2z"/><path d="M7.333 14.001h1.334v2H7.333z"/></g></g></g></symbol><symbol id="nc-wp-shortcode" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M0 8c0 3.2 1.8 5.9 4.5 7.2L.7 4.7C.2 5.7 0 6.8 0 8z"/><path d="M13.4 7.6c0-1-.4-1.7-.7-2.2-.4-.7-.7-1.2-.7-1.9s.6-1.4 1.3-1.4h.1C12 .8 10.1 0 8 0 5.2 0 2.7 1.4 1.3 3.6c.2 0 2.7-.1 2.7-.1.4 0 .5.6.1.7 0 0-.4.1-.9.1L6 12.9l1.8-5.3-1.3-3.4c-.4 0-.8-.1-.8-.1-.4 0-.4-.7.1-.7 0 0 1.3.1 2.1.1s2.1-.1 2.1-.1c.4 0 .5.6.1.7 0 0-.4.1-.9.1l2.9 8.6.8-2.7c.2-1 .5-1.8.5-2.5z"/><path d="M8.1 8.7l-2.4 7c.8.2 1.5.3 2.3.3.9 0 1.8-.2 2.7-.5 0 0 0-.1-.1-.1L8.1 8.7z"/><path d="M15 4.2c0 .3.1.5.1.8 0 .8-.2 1.7-.6 2.9l-2.5 7c2.4-1.4 4-4 4-6.9 0-1.4-.4-2.7-1-3.8z"/></g></g></g></symbol><symbol id="nc-sndcloud-style-1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="4" width="8" height="8" rx="1"/><rect x="10" y="7" width="1" height="5" rx=".5"/><rect x="9" y="9" width="1" height="3" rx=".5"/><rect x="13" y="8" width="1" height="4" rx=".5"/><rect x="11" y="8" width="1" height="4" rx=".5"/><rect x="12" y="6" width="1" height="6" rx=".5"/><rect x="14" y="7" width="1" height="5" rx=".5"/><rect x="15" y="9" width="1" height="3" rx=".5"/></g></g></g></symbol><symbol id="nc-sndcloud-style-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 2h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm1.5 6a.5.5 0 0 0-.5.5v4a.5.5 0 1 0 1 0v-4a.5.5 0 0 0-.5-.5zm-1 2a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm-3-1a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5zm1 1a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm1-1a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5zm-2 4a.5.5 0 0 0 .5-.5v-1a.5.5 0 1 0-1 0v1a.5.5 0 0 0 .5.5zm-1 0a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-1 0v4a.5.5 0 0 0 .5.5zm-2-4a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-circle-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 12.25c-2.888 0-5.25-2.363-5.25-5.25 0-2.888 2.362-5.25 5.25-5.25 2.887 0 5.25 2.362 5.25 5.25 0 2.887-2.363 5.25-5.25 5.25z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-diamond-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M7.449 15.337L.497 8.386C.2 8.088.2 7.69.497 7.392L7.45.441c.298-.298.695-.298.993 0l6.951 6.951c.298.298.298.696 0 .994l-6.951 6.951c-.298.298-.695.298-.993 0zM2.8 7.889l5.144 5.144L13.09 7.89 7.945 2.745 2.801 7.889z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-dot" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 4C5.8 4 4 5.8 4 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-fade" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><g transform="translate(0 1)" fill-rule="nonzero" stroke="none" stroke-width="1" fill="none"><path fill="#FFF" d="M0 0h6v14H0z"/><path fill="#C6C8CC" opacity=".7" d="M9 0h3v14H9z"/><path d="M15.5 0a.5.5 0 0 1 .5.5v13a.5.5 0 1 1-1 0V.5a.5.5 0 0 1 .5-.5z" fill="#979AA1" opacity=".4"/></g></g></g></symbol><symbol id="nc-line" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" d="M3 7h10v2H3z"/></g></g></symbol><symbol id="nc-none" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 2c1.3 0 2.5.4 3.5 1.1l-8.4 8.4C2.4 10.5 2 9.3 2 8c0-3.3 2.7-6 6-6zm0 12c-1.3 0-2.5-.4-3.5-1.1l8.4-8.4c.7 1 1.1 2.2 1.1 3.5 0 3.3-2.7 6-6 6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-filled" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM7 11.4L5.6 10l2-2-2-2L7 4.6 10.4 8 7 11.4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-heavy" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M5.204 16L3 13.91 9.236 8 3 2.09 5.204 0l7.339 6.955c.61.578.61 1.512 0 2.09L5.204 16z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7 11.4L5.6 10l2-2-2-2L7 4.6 10.4 8z"/><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"/></g></g></g></symbol><symbol id="nc-right-arrow-tail" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15.787 7.496L10.182 2 9.153 3.008l4.364 4.279H.727A.72.72 0 0 0 0 8a.72.72 0 0 0 .727.713h12.79l-4.364 4.279L10.182 14l5.605-5.496a.703.703 0 0 0 0-1.008z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-thin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M5.025 16L4 15.009 11.25 8 4 .991 5.025 0l7.762 7.504a.684.684 0 0 1 0 .992L5.025 16z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-slider-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 1h14a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0H2a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1z"/><path d="M1 15h14a1 1 0 0 0 1-1v-1a1 1 0 0 0-2 0H2a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1z"/><path d="M3.929 7h2.285C6.648 7 7 7.448 7 8s-.352 1-.786 1H3.93v3L0 8l3.929-4v3z" fill-rule="nonzero"/><path d="M12.071 7H9.786C9.352 7 9 7.448 9 8s.352 1 .786 1h2.285v3L16 8l-3.929-4v3z" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-slider-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(90 8 8)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 0h10a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0H4a1 1 0 1 1-2 0V1a1 1 0 0 1 1-1z"/><path d="M3 16h10a1 1 0 0 0 1-1v-1a1 1 0 0 0-2 0H4a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1z"/><path d="M3.929 7h2.285C6.648 7 7 7.448 7 8s-.352 1-.786 1H3.93v3L0 8l3.929-4v3z" fill-rule="nonzero"/><path d="M12.071 7H9.786C9.352 7 9 7.448 9 8s.352 1 .786 1h2.285v3L16 8l-3.929-4v3z" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-slider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="1" y="6" width="14" height="9" rx="1"/><rect x="3" y="3" width="10" height="2" rx="1"/><rect x="5" y="1" width="6" height="1" rx=".5"/></g></g></g></symbol><symbol id="nc-square-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.125 15H1.875C1.35 15 1 14.65 1 14.125V1.875C1 1.35 1.35 1 1.875 1h12.25c.525 0 .875.35.875.875v12.25c0 .525-.35.875-.875.875zM2.75 13.25h10.5V2.75H2.75v10.5z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-align-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="14" width="16" height="2" rx="1"/><rect x="3" y="6" width="10" height="4" rx="1"/><rect x="0" y="0" width="16" height="2" rx="1"/></g></g></g></symbol><symbol id="nc-align-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(90 8 8)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="14" width="16" height="2" rx="1"/><rect x="3" y="6" width="10" height="4" rx="1"/><rect x="0" y="0" width="16" height="2" rx="1"/></g></g></g></symbol><symbol id="nc-label-inside" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="currentColor" x="3" y="7" width="7" height="2" rx="1"/><rect stroke="currentColor" stroke-width="2" x="1" y="4" width="14" height="8" rx="1"/></g></g></g></symbol><symbol id="nc-label-outside" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="currentColor" x="1" y="2" width="7" height="2" rx="1"/><rect stroke="currentColor" stroke-width="2" x="1" y="6" width="14" height="7" rx="1"/></g></g></g></symbol><symbol id="nc-info" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.584 0 0 3.584 0 8s3.584 8 8 8 8-3.584 8-8-3.584-8-8-8zm.8 12H7.2V7.2h1.6V12zm0-6.4H7.2V4h1.6v1.6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-back" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(-90 8 8)" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7 4v4h2V4h3L8 0 4 4z"/><path d="M15 0h-3v2h2v9H2V2h2V0H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-countdown" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 2c.6 0 1-.4 1-1s-.4-1-1-1H1C.4 0 0 .4 0 1s.4 1 1 1h1c.1 2.4.8 4.5 2 6-1.2 1.4-2 3.6-2 6H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1h-1c-.1-2.5-.8-4.6-2-6 1.3-1.5 2-3.6 2-6h1zM9.9 7.3l-.9.8 1 .7c1.2.9 2 2.9 2.1 5.2H4c.1-2.3.9-4.3 2.1-5.2l1-.7-1-.8C4.8 6.1 4.1 4.2 4 2h8c-.1 2.2-.8 4.1-2.1 5.3z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-counter-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M6.6 6.6c-.8.8-.8 2 0 2.8.8.8 2 .8 2.8 0 .8-.8 5-7.8 5-7.8s-7 4.2-7.8 5z"/><path d="M8 16c4.4 0 8-3.6 8-8 0-.6-.4-1-1-1s-1 .4-1 1c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6c.6 0 1-.4 1-1s-.4-1-1-1C3.6 0 0 3.6 0 8s3.6 8 8 8z"/></g></g></g></symbol><symbol id="nc-form-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M2 9V4h12v5l2 1V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V9H2z" fill-rule="nonzero"/><rect x="0" y="13" width="8" height="3" rx="1.5"/></g></g></g></symbol><symbol id="nc-full-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(.5)" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7.5 6l7-3L7.792.057c-.219-.076-.438-.076-.584 0L.5 3l7 3z"/><path d="M8 7v9l6.533-2.775c.311-.15.467-.375.467-.675V4L8 7z"/><path d="M7 7L0 4v8.55c0 .3.156.6.467.675L7 16V7z"/></g></g></g></symbol><symbol id="nc-save-section" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.682 2.318a4.5 4.5 0 0 0-6.364 0c-.121.121-.214.259-.318.389-.104-.13-.197-.268-.318-.389a4.5 4.5 0 0 0-6.364 6.364L8 15l6.682-6.318a4.5 4.5 0 0 0 0-6.364z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-extensions" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 0c.6 0 1 .4 1 1v11c0 .6-.4 1-1 1h-3.6l-2.7 2.7c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3L4.6 13H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14zM4 4a1 1 0 1 0 0 2h8a1 1 0 0 0 0-2H4zm2 4a1 1 0 1 0 0 2h4a1 1 0 0 0 0-2H6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-failure" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.7 1.3c-.4-.4-1-.4-1.4 0L8 6.6 2.7 1.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4L6.6 8l-5.3 5.3c-.4.4-.4 1 0 1.4.2.2.4.3.7.3.3 0 .5-.1.7-.3L8 9.4l5.3 5.3c.2.2.5.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4L9.4 8l5.3-5.3c.4-.4.4-1 0-1.4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-check-color" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="#22AFDA" fill-rule="nonzero"/><path fill="#2B3039" d="M7 11.4L3.6 8 5 6.6l2 2 4-4L12.4 6z"/></g></g></g></symbol><symbol id="nc-success" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.3 2.3L5 11.6 1.7 8.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l4 4c.2.2.4.3.7.3.3 0 .5-.1.7-.3l10-10c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-brizy-logo-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1.767 5.424L8.14 9.76l6.093-4.305L7.86 1.21 1.767 5.424z" stroke="currentColor" stroke-width="2"/><path fill="currentColor" d="M0 10.457L2.113 8.84 8.151 13l5.836-4.045L16 10.457l-7.85 5.431z"/></g></g></g></symbol><symbol id="nc-brizy-logo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 5.43L7.85 0 16 5.43l-7.85 5.547z"/><path d="M0 10.457L2.113 8.84 8.151 13l5.836-4.045L16 10.457l-7.85 5.431z"/></g></g></g></symbol><symbol id="nc-circle-02" viewBox="0 0 16 16"><g><g class="nc-loop_circle-02-16" transform="rotate(359.71071426823204 8 8)"><path opacity="0.4" fill="currentColor" d="M8,16c-4.4111328,0-8-3.5888672-8-8s3.5888672-8,8-8s8,3.5888672,8,8S12.4111328,16,8,16z M8,2C4.6914062,2,2,4.6914062,2,8s2.6914062,6,6,6s6-2.6914062,6-6S11.3085938,2,8,2z"/><path data-color="color-2" d="M16,8h-2c0-3.3085938-2.6914062-6-6-6V0C12.4111328,0,16,3.5888672,16,8z"/></g><script>!function(){function t(t){this.element=t,this.animationId,this.start=null,this.init()}if(!window.requestAnimationFrame){var i=null;window.requestAnimationFrame=function(t,n){var e=(new Date).getTime();i||(i=e);var a=Math.max(0,16-(e-i)),o=window.setTimeout(function(){t(e+a)},a);return i=e+a,o}}t.prototype.init=function(){var t=this;this.animationId=window.requestAnimationFrame(t.triggerAnimation.bind(t))},t.prototype.reset=function(){var t=this;window.cancelAnimationFrame(t.animationId)},t.prototype.triggerAnimation=function(t){var i=this;this.start||(this.start=t);var n=t-this.start;504>n||(this.start=this.start+504),this.element.setAttribute("transform","rotate("+Math.min(n/1.4,360)+" 8 8)");if(document.documentElement.contains(this.element))window.requestAnimationFrame(i.triggerAnimation.bind(i))};var n=document.getElementsByClassName("nc-loop_circle-02-16"),e=[];if(n)for(var a=0;n.length>a;a++)!function(i){e.push(new t(n[i]))}(a);document.addEventListener("visibilitychange",function(){"hidden"==document.visibilityState?e.forEach(function(t){t.reset()}):e.forEach(function(t){t.init()})})}();</script></g></symbol><symbol id="nc-tabs" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="tabs" fill="currentColor"><rect id="Rectangle" x="9" y="2" width="6" height="2" rx="1"/><path d="M2 1h5a1 1 0 0 1 1 1v3h6a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z" id="Rectangle-6"/></g></g></g></g></symbol><symbol id="nc-update" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Update" fill="currentColor" fill-rule="nonzero"><g id="file-upload-86" transform="translate(0 1)"><path id="Shape" transform="matrix(1 0 0 -1 0 9)" d="M7 4v5h2V4h3L8 0 4 4z"/><path d="M15 0h-3v2h2v10H2V2h2V0H1C.4 0 0 .4 0 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1z" id="Shape"/></g></g></g></g></g></symbol><symbol id="nc-background" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="background-v4" fill="currentColor" fill-rule="nonzero"><path d="M15 0c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14zM2 2.013v11.188c0 .48.32.799.8.799h11.187C11 11 4 4 2 2.013z" id="Combined-Shape" transform="rotate(180 8 8)"/></g></g></g></g></symbol><symbol id="nc-woo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M2 2h11.997C15 2 16 3 16 4v8c0 1-1 1.954-2.003 1.954H9.838l.641 1.57-2.82-1.57H2C1 13.954 0 13 0 12V4c0-1 1-2 2-2zm11.848 3.626a1.708 1.708 0 0 0-.352-.039c-.624 0-1.131.325-1.528.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.234.41.579.656 1.04.754.124.026.241.04.352.04.63 0 1.138-.326 1.528-.977.338-.559.508-1.17.508-1.84.006-.508-.104-.93-.313-1.282a1.498 1.498 0 0 0-1.04-.754zm-.274 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.65 1.65 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592 0 .169-.013.332-.045.481-.091.43-.254.748-.495.963zM9.777 5.626a1.708 1.708 0 0 0-.351-.039c-.624 0-1.132.325-1.529.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.235.41.58.656 1.041.754.124.026.24.04.351.04.631 0 1.138-.326 1.529-.977.338-.559.507-1.17.507-1.84 0-.508-.104-.93-.312-1.282a1.512 1.512 0 0 0-1.04-.754zm-.28 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.652 1.652 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592.007.169-.013.332-.045.481-.091.43-.254.748-.495.963zM1.321 5.158c-.182.013-.319.078-.41.201a.554.554 0 0 0-.104.436c.384 2.44.742 4.085 1.073 4.937.13.312.28.462.456.449.273-.02.598-.397.982-1.132.201-.416.513-1.04.936-1.873.351 1.229.833 2.152 1.438 2.77.169.176.344.254.513.241a.42.42 0 0 0 .345-.234.772.772 0 0 0 .078-.43c-.039-.591.02-1.417.182-2.477.17-1.093.378-1.88.631-2.348a.565.565 0 0 0 .065-.313.51.51 0 0 0-.201-.37.565.565 0 0 0-.41-.13.5.5 0 0 0-.43.286c-.403.735-.689 1.925-.858 3.577a12.155 12.155 0 0 1-.618-2.224c-.071-.384-.247-.566-.533-.547-.195.013-.358.143-.488.39L2.544 9.08a37.294 37.294 0 0 1-.657-3.454c-.046-.338-.234-.494-.566-.468z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-toggle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="toggle" fill="currentColor"><path d="M2 14V9h12v5l2 1V6a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1H2z" id="Shape" fill-rule="nonzero"/><rect id="Rectangle" x="0" y="0" width="16" height="3" rx="1"/></g></g></g></g></symbol><symbol id="nc-sticky-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="menu" fill="currentColor"><path d="M16 6H0V1.282C0 .836.046.675.134.512A.909.909 0 0 1 .512.134C.675.046.836 0 1.282 0h13.436c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77V6zm0 2v6.718c0 .446-.046.607-.134.77a.909.909 0 0 1-.378.378c-.163.088-.324.134-.77.134H1.282c-.446 0-.607-.046-.77-.134a.909.909 0 0 1-.378-.378c-.088-.163-.134-.324-.134-.77V8h2v4.718c0 .446.046.607.134.77.087.163.215.291.378.378.163.088.324.134.77.134h9.436c.446 0 .607-.046.77-.134a.909.909 0 0 0 .378-.378c.088-.163.134-.324.134-.77V8h2z" id="Combined-Shape"/></g></g></g></g></symbol><symbol id="nc-img" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="background-v3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15 0H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zM6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm-3 8l2-4 2 2 3-4 3 6H3z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-banner" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="banner" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M13 6l2-5H3c0-.6-.4-1-1-1S1 .4 1 1v14c0 .6.4 1 1 1s1-.4 1-1v-4h12l-2-5z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape-Copy" fill="currentColor" fill-rule="nonzero" d="M13.05 8.975L12 7.925 8.775 11.15V2h-1.5v9.15L4.05 7.925 3 8.975 8.025 14z"/></g></g></g></symbol><symbol id="nc-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="up" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(1 0 0 -1 0 16)" d="M13.05 8.975L12 7.925 8.775 11.15V2h-1.5v9.15L4.05 7.925 3 8.975 8.025 14z"/></g></g></g></symbol><symbol id="nc-woo-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="woo-element" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2 0h11.997C15 0 16 1 16 2v10c0 1-1 1.954-2.003 1.954H9.838l.641 1.57-2.82-1.57H2C1 13.954 0 13 0 12V2c0-1 1-2 2-2zm11.848 4.626a1.708 1.708 0 0 0-.352-.039c-.624 0-1.131.325-1.528.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.234.41.579.656 1.04.754.124.026.241.04.352.04.63 0 1.138-.326 1.528-.977.338-.559.508-1.17.508-1.84.006-.508-.104-.93-.313-1.282a1.498 1.498 0 0 0-1.04-.754zm-.274 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.65 1.65 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592 0 .169-.013.332-.045.481-.091.43-.254.748-.495.963zM9.777 4.626a1.708 1.708 0 0 0-.351-.039c-.624 0-1.132.325-1.529.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.235.41.58.656 1.041.754.124.026.24.04.351.04.631 0 1.138-.326 1.529-.977.338-.559.507-1.17.507-1.84 0-.508-.104-.93-.312-1.282a1.512 1.512 0 0 0-1.04-.754zm-.28 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.652 1.652 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592.007.169-.013.332-.045.481-.091.43-.254.748-.495.963zM1.321 4.158c-.182.013-.319.078-.41.201a.554.554 0 0 0-.104.436c.384 2.44.742 4.085 1.073 4.937.13.312.28.462.456.449.273-.02.598-.397.982-1.132.201-.416.513-1.04.936-1.873.351 1.229.833 2.152 1.438 2.77.169.176.344.254.513.241a.42.42 0 0 0 .345-.234.772.772 0 0 0 .078-.43c-.039-.591.02-1.417.182-2.478.17-1.092.378-1.88.631-2.347a.565.565 0 0 0 .065-.313.51.51 0 0 0-.201-.37.565.565 0 0 0-.41-.13.5.5 0 0 0-.43.286c-.403.735-.689 1.925-.858 3.577a12.155 12.155 0 0 1-.618-2.224c-.071-.384-.247-.566-.533-.547-.195.013-.358.143-.488.39L2.544 8.08a37.294 37.294 0 0 1-.657-3.454c-.046-.338-.234-.494-.566-.468z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-block-switch" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="block-switch" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15.716 7.503l-3.428-6A.996.996 0 0 0 11.42 1H4.58a.999.999 0 0 0-.869.504l-3.429 6a.998.998 0 0 0 0 .992l3.43 6a.999.999 0 0 0 .867.503h6.84c.358 0 .69-.192.867-.504l3.43-6a.998.998 0 0 0 0-.991zM8.002 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z" id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 8 8)"/></g></g></g></symbol><symbol id="nc-extensions-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="apps" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M10.8 0a1.4 1.4 0 0 0-1.4 1.4v3.69H6.6V1.4a1.4 1.4 0 1 0-2.8 0v3.69H2a1 1 0 0 0-1 1v3.092C1 12.947 4.134 16 8 16s7-3.053 7-6.818V6.09a1 1 0 0 0-1-1h-1.8V1.4A1.4 1.4 0 0 0 10.8 0z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-global" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="global" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm5.9 7H12c-.1-1.5-.4-2.9-.8-4.1 1.4.9 2.4 2.4 2.7 4.1zM8 14c-.6 0-1.8-1.9-2-5h4c-.2 3.1-1.4 5-2 5zM6 7c.2-3.1 1.3-5 2-5s1.8 1.9 2 5H6zM4.9 2.9C4.4 4.1 4.1 5.5 4 7H2.1c.3-1.7 1.3-3.2 2.8-4.1zM2.1 9H4c.1 1.5.4 2.9.8 4.1-1.4-.9-2.4-2.4-2.7-4.1zm9 4.1c.5-1.2.7-2.6.8-4.1h1.9c-.2 1.7-1.2 3.2-2.7 4.1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-arrow-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="arrow-left" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)" d="M9.3 1.31l-1.4 1.4 4.3 4.3H0v2h12.2l-4.3 4.3 1.4 1.4 6.7-6.7z"/></g></g></g></symbol><symbol id="nc-blur" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="blur" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2.947 8.842a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 3.369a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-6.737a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm-2.526.42A.422.422 0 0 0 0 6.317c0 .231.19.42.421.42.232 0 .421-.189.421-.42a.422.422 0 0 0-.42-.421zm2.526-3.789a.845.845 0 0 0-.842.842c0 .464.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zM15.58 6.737c.232 0 .421-.19.421-.421a.422.422 0 0 0-.421-.421.422.422 0 0 0-.421.42c0 .232.19.422.42.422zM9.684 3.789a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842.845.845 0 0 0-.842.842c0 .464.38.842.842.842zm0-2.947c.232 0 .421-.19.421-.42A.422.422 0 0 0 9.685 0a.422.422 0 0 0-.422.421c0 .232.19.421.421.421zM.421 9.263A.422.422 0 0 0 0 9.684c0 .232.19.421.421.421.232 0 .421-.19.421-.42a.422.422 0 0 0-.42-.422zm5.895 5.895a.422.422 0 0 0-.421.42c0 .233.19.422.42.422.232 0 .422-.19.422-.421a.422.422 0 0 0-.421-.421zm0-14.316c.231 0 .42-.19.42-.42A.422.422 0 0 0 6.317 0a.422.422 0 0 0-.421.421c0 .232.19.421.42.421zm0 2.947a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842.845.845 0 0 0-.842.842c0 .464.379.842.842.842zm0 4.632c-.7 0-1.263.564-1.263 1.263 0 .7.564 1.263 1.263 1.263s1.263-.564 1.263-1.263-.564-1.263-1.263-1.263zm6.737.421a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 3.369a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-6.737a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-3.369a.845.845 0 0 0-.842.842c0 .464.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm2.526 7.158a.422.422 0 0 0-.421.421c0 .232.19.421.42.421.233 0 .422-.19.422-.42a.422.422 0 0 0-.421-.422zm-5.895 2.948a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 2.947a.422.422 0 0 0-.42.42c0 .233.189.422.42.422.232 0 .421-.19.421-.421a.422.422 0 0 0-.42-.421zM6.316 5.053c-.7 0-1.263.564-1.263 1.263s.564 1.263 1.263 1.263 1.263-.564 1.263-1.263c0-.7-.564-1.263-1.263-1.263zm0 7.158a.845.845 0 0 0-.842.842c0 .463.379.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm3.368-3.79c-.699 0-1.263.564-1.263 1.263 0 .7.564 1.263 1.263 1.263.7 0 1.263-.564 1.263-1.263s-.564-1.263-1.263-1.263zm0-3.368c-.699 0-1.263.564-1.263 1.263s.564 1.263 1.263 1.263c.7 0 1.263-.564 1.263-1.263 0-.7-.564-1.263-1.263-1.263z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 1c-3.35 0-7 .64-7 2 0 1.36 3.65 2 7 2s7-.64 7-2c0-1.36-3.65-2-7-2z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 6.574C5.3 6.574 2.45 6.13 1 5v2.541C1 9.213 4.65 10 8 10s7-.787 7-2.459V5c-1.45 1.131-4.3 1.574-7 1.574z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 11.574c-2.7 0-5.55-.443-7-1.574v2.541C1 14.213 4.65 15 8 15s7-.787 7-2.459V10c-1.45 1.131-4.3 1.574-7 1.574z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-bug" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="bug" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M16 4V3h-2v1c0 .6-.4 1-1 1h-1c-.3-.4-.6-.7-1-1V3c0-1.7-1.3-3-3-3S5 1.3 5 3v1c-.4.3-.7.6-1 1H3c-.6 0-1-.4-1-1V3H0v1c0 1.7 1.3 3 3 3h.1c-.1.3-.1.7-.1 1H0v2h3v1c-1.7 0-3 1.3-3 3v1h2v-1c0-.6.4-1 1-1h.4c.8 1.8 2.6 3 4.6 3 2 0 3.8-1.2 4.6-3h.4c.6 0 1 .4 1 1v1h2v-1c0-1.7-1.3-3-3-3v-1h3V8h-3c0-.3 0-.7-.1-1h.1c1.7 0 3-1.3 3-3z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-page" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="page" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M11 16v-4h4z"/><path d="M9 10h6V1c0-.6-.4-1-1-1H2c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h7v-6z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-blocks" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="slider" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect id="Rectangle-3" fill="currentColor" x="1" y="6" width="14" height="9" rx="1"/><rect id="Rectangle-3" fill="currentColor" x="3" y="3" width="10" height="2" rx="1"/><rect id="Rectangle-3" fill="currentColor" x="5" y="1" width="6" height="1" rx=".5"/></g></g></g></symbol><symbol id="nc-pages" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="pages" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M10 4H2c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M14 0H4v2h9v11h2V1c0-.6-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-popup" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="popup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z" id="Shape" fill="currentColor" fill-rule="nonzero"/><rect id="Rectangle" fill="currentColor" fill-rule="nonzero" x="12" y="11" width="4" height="4" rx="1"/></g></g></g></symbol><symbol id="nc-gallery" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="gallery" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6 9H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M6 16H1a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 6h-5a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 16h-5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic-img" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic-img" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M14 7.707v6.416c0 .509-.491.848-1 .848H.848c-.509 0-.848-.34-.848-.848V2c0-.509.491-1 1-1h7.856A4.486 4.486 0 0 0 14 7.707zM5.142 4.663c-.508 0-.847.339-.847.847 0 .509.339.848.847.848.509 0 .848-.34.848-.848s-.34-.847-.848-.847zm-2.656 6.894h8.363l-2.509-5.2-2.508 3.467L4.159 8.09l-1.673 3.466zM12.625 6.75a3.375 3.375 0 1 1 0-6.75 3.375 3.375 0 0 1 0 6.75zm.08-4.878c-.727 0-1.518.143-1.518.446 0 .304.791.447 1.518.447.726 0 1.518-.143 1.518-.447 0-.303-.792-.446-1.518-.446zm0 1.23c-.586 0-1.204-.095-1.518-.337v.544c0 .359.791.527 1.518.527.726 0 1.518-.168 1.518-.527v-.544c-.314.242-.933.337-1.518.337zm0 1.072c-.586 0-1.204-.095-1.518-.338v.545c0 .358.791.527 1.518.527.726 0 1.518-.169 1.518-.527v-.545c-.314.243-.933.338-1.518.338z" id="Image-dinamic" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic-text" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic-text" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M14 7.598V14c0 .5-.5 1-1 1H1c-.5 0-1-.5-1-1V2c0-.5.5-1 1-1h7.956a4.397 4.397 0 0 0-.644 3.062H2.93v2.184h.548l.397-.79a.549.549 0 0 1 .49-.302h1.855v6.16a.546.546 0 0 1-.375.518l-1.27.422v.546H8.963v-.546l-1.27-.422a.546.546 0 0 1-.375-.518v-6.16h1.311A4.418 4.418 0 0 0 14 7.598zm-1.323-.952a3.323 3.323 0 1 1 0-6.646 3.323 3.323 0 0 1 0 6.646zm.079-4.803c-.716 0-1.495.14-1.495.44 0 .299.78.44 1.495.44.715 0 1.494-.141 1.494-.44 0-.3-.779-.44-1.494-.44zm0 1.211c-.577 0-1.185-.093-1.495-.332v.536c0 .353.78.52 1.495.52.715 0 1.494-.167 1.494-.52v-.536c-.31.239-.918.332-1.494.332zm0 1.055c-.577 0-1.185-.093-1.495-.332v.537c0 .352.78.518 1.495.518.715 0 1.494-.166 1.494-.518v-.537c-.31.239-.918.332-1.494.332z" id="Text-dinamic" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-brightness" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="brightness" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M1.87 2.813l.943-.943 1.415 1.415-.943.943z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M11.772 3.285l1.414-1.415.943.943-1.414 1.415z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M11.772 12.715l.943-.943 1.415 1.415-.943.943z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M1.87 13.187l1.415-1.415.943.943-1.415 1.415z"/><circle id="Oval" fill="currentColor" fill-rule="nonzero" cx="8" cy="8" r="4.668"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M-.002 7.333h2v1.334h-2z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7.333-.002h1.334v2H7.333z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M14.001 7.333h2v1.334h-2z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7.333 14.001h1.334v2H7.333z"/></g></g></g></symbol><symbol id="nc-carousel" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="carousel" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1 14h-12a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1H1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/><path d="M27 14H15a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/><path d="M11 15H5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-contrast" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="contrast" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M13.23 2.654C11.816 1.238 9.97.5 8 .5c-1.97 0-3.815.738-5.23 2.154a7.391 7.391 0 0 0 0 10.461C4.184 14.531 6.03 15.27 8 15.27c1.97 0 3.815-.738 5.23-2.154a7.391 7.391 0 0 0 0-10.461zm-9.6.861C4.8 2.346 6.339 1.731 8 1.731a6.02 6.02 0 0 1 3.877 1.415l-8.615 8.616c-2.031-2.4-1.847-5.97.369-8.247z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-flip-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="flip-horizontal" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7 0h2v16H7z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M5 4v8H0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M11 4v8h5z"/></g></g></g></symbol><symbol id="nc-flip-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="flip-vertical" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 7h16v2H0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M12 5H4V0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M12 11H4v5z"/></g></g></g></symbol><symbol id="nc-hue" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="hue" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval-2" fill="currentColor" fill-rule="nonzero" opacity=".55" cx="5" cy="11" r="5"/><circle id="Oval-2-Copy" fill="currentColor" fill-rule="nonzero" opacity=".75" cx="11" cy="11" r="5"/><circle id="Oval-2" fill="currentColor" fill-rule="nonzero" opacity=".9" cx="8" cy="5" r="5"/></g></g></g></symbol><symbol id="nc-menu-3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="menu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 2H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 12H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-reset" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="reset" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12 9c0 2.206-1.794 4-4 4s-4-1.794-4-4 1.794-4 4-4v3l5-4-5-4v3C4.691 3 2 5.691 2 9s2.691 6 6 6 6-2.691 6-6h-2z" id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)"/></g></g></g></symbol><symbol id="nc-saturation" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="saturation" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12.599 4.744L8 0 3.401 4.744c-2.535 2.496-2.535 6.888 0 9.384A6.536 6.536 0 0 0 8 16a6.536 6.536 0 0 0 4.599-1.872c2.535-2.496 2.535-6.888 0-9.384zM8 14.408c-1.3 0-2.527-.496-3.445-1.408a4.72 4.72 0 0 1-1.43-3.392c0-1.28.504-2.824 1.43-3.728L8 2.48v11.928z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-close-popup" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="close-popup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M1.5 1.5l13.038 13.038" id="Line-2" stroke="currentColor" fill-rule="nonzero"/><path d="M1.5 1.5l13.038 13.038" id="Line-2" stroke="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)"/></g></g></g></symbol><symbol id="nc-width" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="width" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 11 8)" d="M11 6l4 4H7z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 5 8)" d="M5 10L1 6h8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" transform="rotate(90 15 8)" d="M8 7h14v2H8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" transform="rotate(90 1 8)" d="M-6 7H8v2H-6z"/></g></g></g></symbol><symbol id="nc-height" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="height" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M8 3l4 4H4z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M8 13L4 9h8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 0h16v2H0z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 14h16v2H0z"/></g></g></g></symbol><symbol id="nc-repeat" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="repeat" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Group" transform="translate(0 1)" fill="currentColor" fill-rule="nonzero"><path id="Path" transform="rotate(90 6.5 9)" d="M9.5 11.5h-5v-2l-3 3 3 3v-2h7v-11h-3v2h1z"/><path id="Path" transform="rotate(-90 9.5 5)" d="M12.5 7.5h-5v-2l-3 3 3 3v-2h7v-11h-3v2h1z"/></g></g></g></g></symbol><symbol id="nc-send-to-back" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="send-to-back" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1 0h9a1 1 0 0 1 1 1v3H5a1 1 0 0 0-1 1v6H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1z" id="Rectangle-12" fill="currentColor" fill-rule="nonzero"/><path d="M7.667 6v1.667h6.666v6.666H7.667V6H7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7.667z" id="Path-2" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-bring-to-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="bring-top" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect id="Rectangle-12" fill="currentColor" fill-rule="nonzero" x="0" y="0" width="12" height="12" rx="1"/><path d="M13.5 6v1.667h.833v5.666a1 1 0 0 1-1 1H7.667V13.5H6V15a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1.5z" id="Path-2" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-check-light" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g classname="nc-icon-wrapper" fill="currentColor"><path fill="none" stroke="currentColor" strokelinecap="round" strokelinejoin="round" strokemiterlimit="10" d="M13.423 6.999A6.5 6.5 0 1 1 10 2.232" datacap="butt"/><path fill="none" stroke="currentColor" strokelinecap="round" strokelinejoin="round" strokemiterlimit="10" datacap="butt" datacolor="color-2" d="M4 6.5l3 3 8-8"/></g></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8.1,3.5 L12.5,7.9 L4.7,15.7 C4.5,15.9 4.3,16 4,16 L1,16 C0.4,16 0,15.6 0,15 L0,12 C0,11.7 0.1,11.5 0.3,11.3 L8.1,3.5 Z M15.7,3.3 C16.1,3.7 16.1,4.3 15.7,4.7 L13.9,6.5 L9.5,2.1 L11.3,0.3 C11.7,-0.1 12.3,-0.1 12.7,0.3 L15.7,3.3 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-image" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M5.2,2 C6.04,2 6.6,2.6 6.6,3.5 C6.6,4.4 6.04,5 5.2,5 C4.36,5 3.8,4.4 3.8,3.5 C3.8,2.6 4.36,2 5.2,2 Z M1,14 L3.8,8 L6.6,11 L10.8,5 L15,14 L1,14 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-video" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M11,6.5 C11,6.01538462 10.65,5.69230769 10.125,5.69230769 L8,5.69230769 L8,2.80769231 C8,2.32307692 7.65,2 7.125,2 L3,2 L3,3.84615385 L6,3.84615385 L6,5.69230769 L1.875,5.69230769 C1.35,5.69230769 1,6.01538462 1,6.5 L1,13.1923077 C1,13.6769231 1.35,14 1.875,14 L10.125,14 C10.65,14 11,13.6769231 11,13.1923077 L11,11.5769231 L15,13.1923077 L15,6.5 L11,8.11538462 L11,6.5 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-map" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M7,12 C7.55228475,12.5522847 8.44771525,12.5522847 9,12 L9,14 C9,14.5522847 8.55228475,15 8,15 C7.44771525,15 7,14.5522847 7,14 L7,12 Z M8,11 C5.51471863,11 3.5,8.98528137 3.5,6.5 C3.5,4.01471863 5.51471863,2 8,2 C10.4852814,2 12.5,4.01471863 12.5,6.5 C12.5,8.98528137 10.4852814,11 8,11 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-email" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M3.6058448,9.66149939 L3.6058448,14.594495 C3.6058448,15.2992086 4.40786873,15.6012288 4.90913369,15.0978619 L7.2149525,12.3796806 L11.9268431,15.9032489 C12.3278551,16.2052691 12.929373,16.0039223 13.029626,15.5005554 L16.0372158,0.902915364 C16.1374688,0.298875086 15.6362038,-0.103818432 15.0346858,0.0975283271 L0.498002054,5.93658434 C-0.00326290396,6.1379311 -0.103515896,6.84264476 0.297496071,7.24533828 L1.90154394,8.45341883 L6.51318156,6.23860448 C6.91419352,6.03725772 7.2149525,6.54062462 6.91419352,6.74197138 L3.6058448,9.66149939 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-captcha" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M15.094,7.211 L14.555,1 L12.625,2.93 C11.353,1.812 9.71,1.18 8,1.18 C4.14,1.18 1,4.32 1,8.18 C1,12.04 4.14,15.18 8,15.18 C10.491,15.18 12.814,13.839 14.063,11.681 L12.332,10.68 C11.439,12.222 9.779,13.18 8,13.18 C5.243,13.18 3,10.937 3,8.18 C3,5.423 5.243,3.18 8,3.18 C9.179,3.18 10.311,3.603 11.205,4.35 L8.883,6.672 L15.094,7.211 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-uncheck-alt" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M2,1 L14,1 C14.5522847,1 15,1.44771525 15,2 L15,14 C15,14.5522847 14.5522847,15 14,15 L2,15 C1.44771525,15 1,14.5522847 1,14 L1,2 C1,1.44771525 1.44771525,1 2,1 Z M3,3 L3,13 L13,13 L13,3 L3,3 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-check-alt" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M14.3,1.3 C14.7,0.9 15.3,0.9 15.7,1.3 C16.1,1.7 16.1,2.3 15.7,2.7 L8.7,9.7 C8.5,9.9 8.3,10 8,10 C7.7,10 7.5,9.9 7.3,9.7 L5.3,7.7 C4.9,7.3 4.9,6.7 5.3,6.3 C5.7,5.9 6.3,5.9 6.7,6.3 L8,7.6 L14.3,1.3 Z M2,15 C1.4,15 1,14.6 1,14 L1,2 C1,1.4 1.4,1 2,1 L8,1 C8.6,1 9,1.4 9,2 C9,2.6 8.6,3 8,3 L3,3 L3,13 L13,13 L13,9 C13,8.4 13.4,8 14,8 C14.6,8 15,8.4 15,9 L15,14 C15,14.6 14.6,15 14,15 L2,15 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-shift-key" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.92"><path d="M5,15 L11,15 L11,8 L13.7745265,8 L7.99987793,1.50500692 L2.22522934,8 L5,8 L5,15 Z" id="Path" stroke="currentColor" stroke-width="2"></path></g></symbol><symbol id="nc-reverse-columns-bottom" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-reverse-columns-left" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(-1, 1) rotate(90.000000) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-reverse-columns-right" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) rotate(90.000000) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-reverse-columns-top" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(1, -1) translate(-8.000000, -8.000000) "></path></g></symbol></svg>
2
-
3
-
4
-
5
-
1
+ <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><symbol id="nc-play" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.6 7.2l-10-7A1 1 0 0 0 2 1v14c0 .8.9 1.3 1.6.8l10-7c.5-.4.5-1.2 0-1.6z"/></g></g></symbol><symbol id="nc-bold" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M11.56 7.316a3.483 3.483 0 0 0 1.418-3.207C12.782 2.305 11.143 1 9.33 1H2v1l1.447.724A1 1 0 0 1 4 3.618v8.764a1 1 0 0 1-.553.894L2 14v1h7.823c2.104 0 3.98-1.547 4.162-3.643a4.001 4.001 0 0 0-2.424-4.04zM7 3h1a2 2 0 1 1 0 4H7V3zm2 10H7V9h2a2 2 0 1 1 0 4z"/></g></g></symbol><symbol id="nc-h1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.5 2.05h2.686v4.964h5.389V2.05h2.686v11.9H8.575V9.258H3.186v4.692H.5V2.05zm12.18 4.91h2.83v6.99h-1.5V8.29h-1.33V6.96z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.05 2.3h2.577v4.762h5.17V2.3h2.576v11.416H7.796V9.215h-5.17v4.5H.05V2.3zm13.992 7.324c.17-.24.254-.471.254-.695a.77.77 0 0 0-.22-.561.758.758 0 0 0-.567-.226c-.422 0-.822.3-1.199.902l-1.2-.71c.314-.486.658-.854 1.032-1.103.374-.25.85-.374 1.43-.374.578 0 1.087.184 1.525.551.438.368.657.869.657 1.502 0 .345-.088.676-.264.993-.176.316-.5.72-.973 1.213l-1.21 1.257h2.649v1.343h-4.73v-1.113l1.967-2.014c.396-.403.68-.725.849-.965z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.1 2.27h2.589v4.784h5.194V2.27h2.589v11.47h-2.59V9.216H2.69v4.522H.1V2.27zm11.392 6.014V7.002h4.125v1.041L14.24 9.614c.54.09.958.317 1.253.68.296.363.443.782.443 1.258 0 .706-.239 1.26-.718 1.662-.478.402-1.09.603-1.836.603-.745 0-1.5-.264-2.265-.79l.617-1.196c.636.45 1.205.675 1.706.675.302 0 .551-.074.747-.222.196-.148.294-.361.294-.64a.78.78 0 0 0-.337-.666c-.225-.164-.537-.246-.935-.246-.212 0-.51.061-.896.183V9.807l1.291-1.523h-2.11z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h4" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.09 2.3h2.57v4.75h5.158V2.3h2.571v11.39H7.82V9.198H2.66v4.49H.09V2.3zm13.629 8.499V9.63h1.435V10.8h.757v1.292h-.757v1.598H13.72v-1.598h-2.69v-1.139l2.384-3.953h1.627l-2.269 3.8h.948z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-italic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12 2V0H6v2h1.27a.5.5 0 0 1 .496.57l-1.51 10.571a1 1 0 0 1-.99.859H4v2h6v-2H8.73a.5.5 0 0 1-.496-.57l1.51-10.571a1 1 0 0 1 .99-.859H12z"/></g></g></symbol><symbol id="nc-list-bullet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="2" cy="2" r="2"/><circle data-color="color-2" cx="2" cy="8" r="2"/><circle data-color="color-2" cx="2" cy="14" r="2"/><path fill="currentColor" d="M6 1h10v2H6z"/><path fill="currentColor" d="M6 7h10v2H6z"/><path fill="currentColor" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-list-default" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M1 9h7c.6 0 1-.4 1-1s-.4-1-1-1H1c-.6 0-1 .4-1 1s.4 1 1 1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-list-numbers" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 1h11v2H5z"/><path fill="currentColor" d="M5 7h11v2H5z"/><path fill="currentColor" d="M5 13h11v2H5z"/><path data-color="color-2" d="M.368 4v-.549l.598-.048c.097-.007.11-.035.11-.139V.84c0-.083-.02-.125-.09-.145L.382.569.46 0h1.666v3.264c0 .111.007.132.111.139l.57.048V4H.368z"/><path data-color="color-2" d="M.047 10v-.63l.907-.886c.684-.663.975-.934.975-1.32 0-.25-.122-.433-.48-.433-.373 0-.529.122-.529.603L0 7.252C.007 6.176.826 6 1.536 6c1.05 0 1.422.447 1.422 1.083 0 .636-.44 1.056-.934 1.53l-.765.73h.995c.067 0 .095-.013.108-.08l.095-.535h.717V10H.047z"/><path data-color="color-2" d="M2.344 13.682c.567.087.88.427.88 1.026 0 .88-.66 1.292-1.612 1.292C.939 16 .34 15.76 0 15.387l.533-.586c.253.247.533.44.999.44.373 0 .693-.133.693-.6 0-.406-.253-.573-.666-.573a2.73 2.73 0 0 0-.493.047v-.666l.326-.04c.48-.06.74-.293.74-.72 0-.252-.114-.459-.487-.459-.36 0-.532.12-.532.593l-.913-.08c0-1.052.793-1.232 1.492-1.232 1.026 0 1.419.393 1.419 1.106 0 .56-.347.912-.767 1.039v.026z"/></g></g></symbol><symbol id="nc-p" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><text fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" font-size="20" font-family="Montserrat-SemiBold, Montserrat" font-weight="500"><tspan x=".7" y="15">P</tspan></text></g></g></symbol><symbol id="nc-text-align-justify" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h16v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h16v2H0z"/></g></g></symbol><symbol id="nc-add" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H9v3H7V9H4V7h3V4h2v3h3v2z"/></g></g></symbol><symbol id="nc-align-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 11)" x="7" y="6" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-middle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 8)" x="7" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 5)" x="7" y="0" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-duplicate" viewBox="0 0 14 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="matrix(-1 0 0 1 14 0)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M9 4H1c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z"/><path d="M13 0H3v2h9v11h2V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-pin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C4.1 0 1 3.1 1 7c0 1.9.7 3.7 2.1 5 .1.1 4.1 3.7 4.2 3.8.4.3 1 .3 1.3 0 .1-.1 4.2-3.7 4.2-3.8 1.4-1.3 2.1-3.1 2.1-5 .1-3.9-3-7-6.9-7zm0 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></g></g></symbol><symbol id="nc-dashed" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 7h6v2H0z"/><path d="M10 7h6v2h-6z"/></g></g></g></symbol><symbol id="nc-dotted" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 7h2v2H1z"/><path d="M5 7h2v2H5z"/><path d="M9 7h2v2H9z"/><path d="M13 7h2v2h-2z"/></g></g></g></symbol><symbol id="nc-solid" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M0 7h16v2H0z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-iframe" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M16 12h-2v-2h-2v2h-2v2h2v2h2v-2h2z"/><path fill="currentColor" d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z"/></g></g></symbol><symbol id="nc-align-left" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z" transform="rotate(90 8 8)"/><rect x="4" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(180 11 8)" x="10" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-arrow-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M9.3 1.3L7.9 2.7 12.2 7H0v2h12.2l-4.3 4.3 1.4 1.4L16 8z"/></g></g></symbol><symbol id="nc-brush" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M0 9c0 1.7 1.3 3 3 3h2v2c0 1.1.9 2 2 2s2-.9 2-2v-2h2c1.7 0 3-1.3 3-3H0z"/><path d="M0 0h7l2 3 2-3h3v7H0z"/></g></g></g></symbol><symbol id="nc-circle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="5" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-round" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3c3.333 0 5.833 1 7.5 3 1.667 2 2.5 4.333 2.5 7h-3c-.011-2.144-.644-3.844-1.9-5.1C6.844 6.644 5.144 6.011 3 6V3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-square" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3h10v10h-3V6H3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.4 3.1l-7-3c-.3-.1-.5-.1-.8 0l-7 3c-.4.1-.6.5-.6.9v8c0 .4.2.8.6.9l7 3c.1.1.3.1.4.1s.3 0 .4-.1l7-3c.4-.2.6-.5.6-.9V4c0-.4-.2-.8-.6-.9zM8 2.1L12.5 4 8 5.9 3.5 4 8 2.1zM2 5.5l5 2.1v5.8l-5-2.1V5.5zm7 8V7.7l5-2.1v5.8l-5 2.1z"/></g></g></symbol><symbol id="nc-font" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0H1v4h1l.724-1.447A1 1 0 0 1 3.618 2H7v11.28a1 1 0 0 1-.684.948L4 15v1h8v-1l-2.316-.772A1 1 0 0 1 9 13.279V2h3.382a1 1 0 0 1 .894.553L14 4h1V0H8z"/></g></g></symbol><symbol id="nc-link" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M4.5 16c-1.2 0-2.3-.5-3.2-1.3-1.8-1.8-1.8-4.6 0-6.4l.7-.7L3.4 9l-.7.7c-1 1-1 2.6 0 3.6s2.6 1 3.6 0l3-3c1-1 1-2.6 0-3.6L8.6 6 10 4.6l.7.7c1.8 1.8 1.8 4.6 0 6.4l-3 3c-.8.8-2 1.3-3.2 1.3z"/><path fill="currentColor" d="M6 11.4l-.7-.7c-1.8-1.8-1.8-4.6 0-6.4l3-3c.9-.9 2-1.3 3.2-1.3s2.3.5 3.2 1.3c1.8 1.8 1.8 4.6 0 6.4l-.7.7L12.6 7l.7-.7c1-1 1-2.6 0-3.6s-2.6-1-3.6 0l-3 3c-1 1-1 2.6 0 3.6l.7.7L6 11.4z"/></g></g></symbol><symbol id="nc-more" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="8" cy="8" r="2"/><circle fill="currentColor" cx="2" cy="8" r="2"/><circle fill="currentColor" cx="14" cy="8" r="2"/></g></g></symbol><symbol id="nc-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="4" stroke-width="2" stroke="currentColor" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8.1 3.5L.3 11.3c-.2.2-.3.4-.3.7v3c0 .6.4 1 1 1h3c.3 0 .5-.1.7-.3l7.8-7.8-4.4-4.4z"/><path data-color="color-2" d="M15.7 3.3l-3-3c-.4-.4-1-.4-1.4 0L9.5 2.1l4.4 4.4 1.8-1.8c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-plus" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 7H9V1c0-.6-.4-1-1-1S7 .4 7 1v6H1c-.6 0-1 .4-1 1s.4 1 1 1h6v6c0 .6.4 1 1 1s1-.4 1-1V9h6c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-search" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M7 14c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM7 2C4.243 2 2 4.243 2 7s2.243 5 5 5 5-2.243 5-5-2.243-5-5-5z"/><path data-color="color-2" d="M15.707 14.293L13.314 11.9a8.019 8.019 0 0 1-1.414 1.414l2.393 2.393a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414z"/></g></g></symbol><symbol id="nc-star" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.144 5.438l-4.316-.627L8.897.9C8.559.217 7.441.217 7.103.9l-1.93 3.911-4.317.627a1.002 1.002 0 0 0-.554 1.707l3.124 3.044-.737 4.299a1 1 0 0 0 1.451 1.054L8 13.513l3.861 2.03c.728.381 1.591-.234 1.451-1.054l-.737-4.299 3.124-3.044a1.003 1.003 0 0 0-.555-1.708z"/></g></g></symbol><symbol id="nc-text-align-center" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M3 5h10v2H3z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M3 13h10v2H3z"/></g></g></symbol><symbol id="nc-text-align-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h10v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h10v2H0z"/></g></g></symbol><symbol id="nc-text-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M6 5h10v2H6z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-upload" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13 7.1V7c0-2.8-2.2-5-5-5-2.5 0-4.6 1.8-4.9 4.3C1.3 6.9 0 8.5 0 10.5 0 13 2 15 4.5 15H12c2.2 0 4-1.8 4-4 0-1.9-1.3-3.4-3-3.9zM9 10v3H7v-3H4l4-4 4 4H9z"/></g></g></symbol><symbol id="nc-check" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="check" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6.7 6.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l2 2c.2.2.4.3.7.3.3 0 .5-.1.7-.3l7-7c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L8 7.6 6.7 6.3z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 15c3.9 0 7-3.1 7-7 0-.6-.4-1-1-1s-1 .4-1 1c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5c.6 0 1.1.1 1.7.3.5.2 1.1-.1 1.3-.6.2-.5-.1-1.1-.6-1.3C9.6 1.1 8.8 1 8 1 4.1 1 1 4.1 1 8s3.1 7 7 7z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-cog" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.3 5.2l1.1-2.1L13 1.7l-2.1 1.1c-.3-.2-.7-.3-1.1-.4L9 0H7l-.8 2.3c-.3.1-.7.2-1 .4L3.1 1.6 1.6 3.1l1.1 2.1c-.2.3-.3.7-.4 1L0 7v2l2.3.8c.1.4.3.7.4 1.1L1.6 13 3 14.4l2.1-1.1c.3.2.7.3 1.1.4L7 16h2l.8-2.3c.4-.1.7-.3 1.1-.4l2.1 1.1 1.4-1.4-1.1-2.1c.2-.3.3-.7.4-1.1L16 9V7l-2.3-.8c-.1-.3-.2-.7-.4-1zM8 11c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"/></g></g></symbol><symbol id="nc-hover" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M3 8.238V4.5C3 3.122 4.121 2 5.5 2S8 3.122 8 4.5v2.605l1.059.118A4.456 4.456 0 0 0 10 4.5C10 2.019 7.981 0 5.5 0S1 2.019 1 4.5c0 1.557.795 2.93 2 3.738z"/><path fill="currentColor" d="M13.9 16l1.066-3.554a3 3 0 0 0-2.542-3.843L7 8V4.5a1.5 1.5 0 1 0-3 0V12H3v-2h-.5A1.5 1.5 0 0 0 1 11.5v1.833c0 .95.285 1.87.79 2.667H13.9z"/></g></g></symbol><symbol id="nc-image" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 16H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1zM2 14h12V2H2v12z"/><path data-color="color-2" d="M6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1z"/><path data-color="color-2" d="M3 12l2-4 2 2 3-4 3 6z"/></g></g></symbol><symbol id="nc-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="none" fill-rule="nonzero"/><path fill="currentColor" d="M11.5 10.1l-1.4 1.4L8 9.4l-2.1 2.1-1.4-1.4L6.6 8 4.5 5.9l1.4-1.4L8 6.6l2.1-2.1 1.4 1.4L9.4 8z"/></g></g></g></symbol><symbol id="nc-settings" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 5V1c0-.6-.4-1-1-1S3 .4 3 1v4c0 .6.4 1 1 1s1-.4 1-1z"/><path fill="currentColor" d="M1 11c0 1.3.9 2.4 2 2.8V15c0 .6.4 1 1 1s1-.4 1-1v-1-.2c1.2-.4 2-1.5 2-2.8 0-1.7-1.3-3-3-3s-3 1.3-3 3z"/><path data-color="color-2" d="M11 11v4c0 .6.4 1 1 1s1-.4 1-1v-4c0-.6-.4-1-1-1s-1 .4-1 1z"/><path data-color="color-2" d="M9 5c0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.3-.9-2.4-2-2.8V1c0-.6-.4-1-1-1s-1 .4-1 1v1.2C9.9 2.6 9 3.7 9 5z"/></g></g></symbol><symbol id="nc-trash" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V6H2z"/><path data-color="color-2" d="M12 3V1c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v2H0v2h16V3h-4zm-2 0H6V2h4v1z"/></g></g></symbol><symbol id="nc-uncheck" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="uncheck" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval" stroke="currentColor" stroke-width="2" cx="8" cy="8" r="6"/></g></g></g></symbol><symbol id="nc-button-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M12.586 15l-3.793-3.793L7 14 5 6l8 2-2.793 1.793L14 13.586 12.586 15z"/><path fill="currentColor" d="M4 10H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v7h-2V2H2v6h2v2z"/></g></g></symbol><symbol id="nc-button" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.424 5.603L7 5V1.5a1.5 1.5 0 1 0-3 0V9H3V7h-.5A1.5 1.5 0 0 0 1 8.5v1.833a5 5 0 0 0 1 3L4 16h9l1.966-6.554a3 3 0 0 0-2.542-3.843z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-desktop" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 0H1C.4 0 0 .4 0 1v11c0 .6.4 1 1 1h5v1H3v2h10v-2h-3v-1h5c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 11H2V2h12v9z"/></g></g></symbol><symbol id="nc-divider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M1 1v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path fill="currentColor" d="M1 12v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path data-color="color-2" d="M15 9H1a1 1 0 0 1 0-2h14a1 1 0 0 1 0 2z"/></g></g></symbol><symbol id="nc-lock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134V6.4H5.833V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-phone" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(2)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M10 16H2c-1.103 0-2-.897-2-2V2C0 .897.897 0 2 0h8c1.103 0 2 .897 2 2v12c0 1.103-.897 2-2 2zM2 2v12h8.001L10 2H2z"/><path d="M7 12v-2H5v2z"/></g></g></g></symbol><symbol id="nc-reorder" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v1H3z"/><path d="M1 4h14v11H1z"/></g></g></g></symbol><symbol id="nc-spacer" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6H0V1c0-.6.4-1 1-1h5v2H2v4z"/><path fill="currentColor" d="M16 6h-2V2h-4V0h5c.6 0 1 .4 1 1v5z"/><path fill="currentColor" d="M15 16h-5v-2h4v-4h2v5c0 .6-.4 1-1 1z"/><path fill="currentColor" d="M6 16H1c-.6 0-1-.4-1-1v-5h2v4h4v2z"/></g></g></symbol><symbol id="nc-tablet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13 0H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM7 15v-1h2v1H7zm6-3H3V2h10v10z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-unlock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134h2.166V6.4h-6.5V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-upgrade" viewBox="0 0 32 32"><g><g class="nc-icon-wrapper" fill="currentColor"><circle fill="currentColor" cx="16" cy="6" r="1"/><path fill="currentColor" d="M18 24v-1c0-.77.297-1.468.775-2H0v1c0 2.757 2.243 5 5 5h13v-3z"/><path fill="currentColor" d="M27 4v10.09a5.964 5.964 0 0 1 2 .721V4c0-1.654-1.346-3-3-3H6C4.346 1 3 2.346 3 4v15h2V4c0-.551.448-1 1-1h20c.552 0 1 .449 1 1z"/><path data-color="color-2" d="M31 22h-1v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1zm-7-2c0-1.103.897-2 2-2s2 .897 2 2v2h-4v-2z"/></g></g></symbol><symbol id="nc-close" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.786 3.214a.69.69 0 0 0-1 0L8 7 4.214 3.214a.69.69 0 0 0-1 0 .69.69 0 0 0 0 1L7 8l-3.786 3.786a.69.69 0 0 0 0 1 .648.648 0 0 0 .5.214.648.648 0 0 0 .5-.214L8 9l3.786 3.786a.772.772 0 0 0 .5.214.772.772 0 0 0 .5-.214.69.69 0 0 0 0-1L9 8l3.786-3.786a.69.69 0 0 0 0-1z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-corners-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><rect x="1" y="2" width="14" height="12" rx="3" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-bottom-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="#22AFDA" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-bottom-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="#22AFDA" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="#22AFDA"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="#22AFDA" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path transform="rotate(90 11.833 8)" d="M11.833 10.167h4.5l-4.5-4.334-4.5 4.334h2.834z"/><path transform="matrix(0 1 1 0 -3.833 3.833)" d="M4.167 10.167h4.5l-4.5-4.334-4.5 4.334H2.5z"/></g></g></g></symbol><symbol id="nc-redo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M10 4.6L8.6 6l3 3H6C4.3 9 3 7.7 3 6s1.3-3 3-3h8V1H6C3.2 1 1 3.2 1 6s2.2 5 5 5h5.6l-3 3 1.4 1.4 5.4-5.4L10 4.6z"/></g></g></symbol><symbol id="nc-size" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 8l-3-3v2h-2v2h2v2z"/><path d="M7 6h2V4h2L8 1 5 4h2z"/><path d="M9 10H7v2H5l3 3 3-3H9z"/><path d="M6 9V7H4V5L1 8l3 3V9z"/></g></g></g></symbol><symbol id="nc-styling-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 1h16v2H0z"/><path d="M0 13h16v2H0z"/><path transform="rotate(-90 1 8)" d="M-4 7H6v2H-4z"/><path transform="rotate(-90 15 8)" d="M10 7h10v2H10z"/></g></g></g></symbol><symbol id="nc-styling-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="#22AFDA" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v2H3z"/><path d="M3 13h10v2H3z"/><path transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="#22AFDA" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="#22AFDA" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="#22AFDA" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.2 5.6l3.4-3.4L3.7.3c-.4-.4-1-.4-1.4 0l-2 2c-.4.4-.4 1 0 1.4l1.9 1.9z"/><path data-color="color-2" d="M13.8 10.4l-3.4 3.4 1.9 1.9c.2.2.4.3.7.3h3v-3c0-.3-.1-.5-.3-.7l-1.9-1.9z"/><path fill="currentColor" d="M15.7 4.3l-4-4c-.4-.4-1-.4-1.4 0L9 1.6l1.7 1.7-1.4 1.4L7.6 3 6 4.6l1.7 1.7-1.4 1.4L4.6 6 3 7.6l1.7 1.7-1.4 1.4L1.6 9 .3 10.3c-.4.4-.4 1 0 1.4l4 4c.4.4 1 .4 1.4 0l10-10c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-time" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12.7.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l.8.8-.9.9C10 2.5 8.6 2 7 2 3.1 2 0 5.1 0 9s3.1 7 7 7 7-3.1 7-7c0-1.6-.5-3-1.4-4.2l.9-.9.8.8c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-3-3zM7 14c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z"/><path data-color="color-2" d="M8 6H6v4h4V8H8z"/></g></g></symbol><symbol id="nc-undo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.502 12.333a6.996 6.996 0 0 1-1.405-3.168l1.973-.331a4.982 4.982 0 0 0 1.003 2.26l-1.571 1.239z"/><path data-color="color-2" d="M6.834 14.903a7.015 7.015 0 0 1-2.976-1.259l1.186-1.611c.624.459 1.358.77 2.122.898l-.332 1.972z"/><path data-color="color-2" d="M9.165 14.903l-.33-1.973a4.99 4.99 0 0 0 2.209-.964l1.219 1.586a6.997 6.997 0 0 1-3.098 1.351z"/><path fill="currentColor" d="M8 1c-1.873 0-3.65.759-4.948 2.052L.9.9.2 7.3l6.4-.7-2.135-2.135A5.023 5.023 0 0 1 8 3c2.757 0 5 2.243 5 5 0 1.06-.327 2.072-.947 2.928l1.621 1.173A6.96 6.96 0 0 0 15 8c0-3.86-3.141-7-7-7z"/></g></g></symbol><symbol id="nc-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M8 6.333h4.5L8 2 3.5 6.333h2.833z"/><path transform="matrix(1 0 0 -1 0 23.667)" d="M8 14h4.5L8 9.667 3.5 14h2.833z"/></g></g></g></symbol><symbol id="nc-check-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><polygon fill="currentColor" points="12.4,6 11,4.6 7,8.6 5,6.6 3.6,8 7,11.4 "/></g></g></symbol><symbol id="nc-circle-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M11.5,10.1l-1.4,1.4L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8 L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-stre-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,12c-0.232,0-0.463-0.08-0.651-0.241l-7.759-6.65L0.892,3.59L8,9.683l7.108-6.093l1.302,1.519l-7.759,6.65 C8.463,11.92,8.232,12,8,12z"/></g></g></symbol><symbol id="nc-stre-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15.108,12.41L8,6.317L0.892,12.41l-1.302-1.519l7.759-6.65c0.375-0.322,0.927-0.322,1.302,0l7.759,6.65 L15.108,12.41z"/></g></g></symbol><symbol id="nc-alert-circle-que" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M8,13c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1s1,0.4,1,1 C9,12.6,8.6,13,8,13z M9.5,8.4C9,8.7,9,8.8,9,9v1H7V9c0-1.3,0.8-1.9,1.4-2.3C8.9,6.4,9,6.3,9,6c0-0.6-0.4-1-1-1 C7.6,5,7.3,5.2,7.1,5.5L6.6,6.4l-1.7-1l0.5-0.9C5.9,3.6,6.9,3,8,3c1.7,0,3,1.3,3,3C11,7.4,10.1,8,9.5,8.4z"/></g></g></symbol><symbol id="nc-grid-45" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M15,0h-5C9.4,0,9,0.4,9,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <path fill="currentColor" d="M15,9h-5c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C16,9.4,15.6,9,15,9z"/></g></g></symbol><symbol id="nc-bars" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><rect x="7" fill="currentColor" width="2" height="4"/> <rect x="10.243" y="2.757" transform="matrix(0.7071 -0.7071 0.7071 0.7071 0.929 9.7574)" opacity="0.9" fill="currentColor" width="4" height="2"/> <rect x="12" y="7" opacity="0.8" fill="currentColor" width="4" height="2"/> <rect x="11.243" y="10.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -5.0711 12.2427)" opacity="0.7" fill="currentColor" width="2" height="4"/> <rect x="7" y="12" opacity="0.6" fill="currentColor" width="2" height="4"/> <rect x="1.758" y="11.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -7.5564 6.2426)" opacity="0.5" fill="currentColor" width="4" height="2"/> <rect y="7" opacity="0.4" fill="currentColor" width="4" height="2"/> <rect x="2.757" y="1.758" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.5563 3.7573)" opacity="0.3" fill="currentColor" width="2" height="4"/> </g></g></symbol><symbol id="nc-square-remove-09" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,0H1C0.4,0,0,0.4,0,1v14c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z M11.5,10.1l-1.4,1.4 L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-paragraph" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <rect data-color="color-2" x="9" y="1" width="7" height="2"/> <rect data-color="color-2" x="9" y="4" width="7" height="2"/> <rect data-color="color-2" x="9" y="10" width="7" height="2"/> <rect data-color="color-2" x="9" y="13" width="7" height="2"/></g></g></symbol><symbol id="nc-zoom-e" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M2,6H0V1c0-0.6,0.4-1,1-1h5v2H2V6z"/> <path fill="currentColor" d="M16,6h-2V2h-4V0h5c0.6,0,1,0.4,1,1V6z"/> <path fill="currentColor" d="M15,16h-5v-2h4v-4h2v5C16,15.6,15.6,16,15,16z"/> <path fill="currentColor" d="M6,16H1c-0.6,0-1-0.4-1-1v-5h2v4h4V16z"/></g></g></symbol><symbol id="nc-hourglass" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,2c0.6,0,1-0.4,1-1s-0.4-1-1-1H1C0.4,0,0,0.4,0,1s0.4,1,1,1h1c0.1,2.4,0.8,4.5,2,6c-1.2,1.4-2,3.6-2,6H1 c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1s-0.4-1-1-1h-1c-0.1-2.5-0.8-4.6-2-6c1.3-1.5,2-3.6,2-6H15z M9.9,7.3L9,8.1l1,0.7 c1.2,0.9,2,2.9,2.1,5.2H4c0.1-2.3,0.9-4.3,2.1-5.2l1-0.7L6.1,7.3C4.8,6.1,4.1,4.2,4,2h8C11.9,4.2,11.2,6.1,9.9,7.3z"/></g></g></symbol><symbol id="nc-share-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M12,6c1.654,0,3-1.346,3-3s-1.346-3-3-3S9,1.346,9,3c0,0.223,0.029,0.439,0.075,0.649l-3.22,2.012 C5.343,5.254,4.704,5,4,5C2.346,5,1,6.346,1,8s1.346,3,3,3c0.704,0,1.343-0.254,1.855-0.661l3.22,2.012C9.029,12.561,9,12.777,9,13 c0,1.654,1.346,3,3,3s3-1.346,3-3s-1.346-3-3-3c-0.704,0-1.343,0.254-1.855,0.661l-3.22-2.012C6.971,8.439,7,8.223,7,8 S6.971,7.561,6.925,7.351l3.22-2.012C10.657,5.746,11.296,6,12,6z"/></g></g></symbol><symbol id="nc-form" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path data-color="color-2" d="M15,16H9c-0.552,0-1-0.448-1-1v-1c0-0.552,0.448-1,1-1h6c0.552,0,1,0.448,1,1v1 C16,15.552,15.552,16,15,16z"/> <path fill="currentColor" d="M15,0H1C0.448,0,0,0.448,0,1v9c0,0.552,0.448,1,1,1h14c0.552,0,1-0.448,1-1V1C16,0.448,15.552,0,15,0z M14,9 H2V4h12V9z"/></g></g></symbol><symbol id="nc-circle-remove-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><circle fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="8.5" cy="8.5" r="7"/><line data-color="color-2"