Brizy – Page Builder - Version 1.0.12

Version Description

  • 2018-06-13 =
  • New: Added WordPress form integration
  • New: Added FontWeight and LetterSpacing for RichText element on Mobile
  • Improved: Section toolbar shows a special icon if the block is global
  • Improved: Section toolbar Save button feedback when clicked
  • Fixed: Button text editing on Safari
  • Fixed: Other minor bugs
  • Fixed: Changed the the_content filter
  • Fixed: Do not check the signature of the user if it's a local user
  • Fixed: Removed from email and name from form class
Download this release

Release Info

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

Code changes from version 1.0.11 to 1.0.12

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.11<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -96,6 +96,17 @@ A good bug report includes full details to easily understand the issue you are h
96
 
97
  ## Changelog
98
 
 
 
 
 
 
 
 
 
 
 
 
99
  ### 1.0.11 - 2018-06-11 ###
100
  * Improved: Trigger post change when project global data is updated
101
  * Fixed: Brizy editor now works properly on SiteGround
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.12<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
96
 
97
  ## Changelog
98
 
99
+ ### 1.0.12 - 2018-06-13 ###
100
+ * New: Added WordPress form integration
101
+ * New: Added FontWeight and LetterSpacing for RichText element on Mobile
102
+ * Improved: Section toolbar shows a special icon if the block is global
103
+ * Improved: Section toolbar Save button feedback when clicked
104
+ * Fixed: Button text editing on Safari
105
+ * Fixed: Other minor bugs
106
+ * Fixed: Changed the the_content filter
107
+ * Fixed: Do not check the signature of the user if it's a local user
108
+ * Fixed: Removed from email and name from form class
109
+
110
  ### 1.0.11 - 2018-06-11 ###
111
  * Improved: Trigger post change when project global data is updated
112
  * Fixed: Brizy editor now works properly on SiteGround
admin/load.php CHANGED
@@ -20,8 +20,8 @@ function brizy_load_admin() {
20
  }
21
  }
22
 
23
- add_action( 'wp_dashboard_setup', 'example_add_dashboard_widgets' );
24
- function example_add_dashboard_widgets() {
25
  try {
26
  Brizy_Admin_DashboardWidget::_init();
27
  } catch ( Exception $e ) {
20
  }
21
  }
22
 
23
+ add_action( 'wp_dashboard_setup', 'brizy_add_dashboard_widgets' );
24
+ function brizy_add_dashboard_widgets() {
25
  try {
26
  Brizy_Admin_DashboardWidget::_init();
27
  } catch ( Exception $e ) {
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.11
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -13,8 +13,8 @@
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
  define( 'BRIZY_LOG', false );
16
- define( 'BRIZY_VERSION', '1.0.11' );
17
- define( 'BRIZY_EDITOR_VERSION', '1.0.33' );
18
  define( 'BRIZY_FILE', __FILE__ );
19
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
20
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.12
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
  define( 'BRIZY_LOG', false );
16
+ define( 'BRIZY_VERSION', '1.0.12' );
17
+ define( 'BRIZY_EDITOR_VERSION', '1.0.36' );
18
  define( 'BRIZY_FILE', __FILE__ );
19
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
20
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
editor/api.php CHANGED
@@ -208,11 +208,6 @@ class Brizy_Editor_API {
208
  $headers = array();
209
  $headers[] = 'Content-type: text/html; charset=utf-8';
210
 
211
- if ( trim( $form->getFromName() ) ) {
212
- $headers[] = 'From: ' . htmlspecialchars( $form->getFromName(), null, 'UTF-8' ) . ' <' .
213
- htmlspecialchars( $form->getFromEmail(), null, 'UTF-8' ) . '>';
214
- }
215
-
216
  $field_string = array();
217
  foreach ( $fields as $field ) {
218
  $field_string[] = "{$field->label}: " . esc_html( $field->value );
@@ -410,6 +405,12 @@ class Brizy_Editor_API {
410
  wp_update_post( array( 'ID' => $bpost->get_id() ) );
411
  }
412
 
 
 
 
 
 
 
413
  $this->success( $this->create_post_globals() );
414
  } catch ( Exception $exception ) {
415
  Brizy_Logger::instance()->exception( $exception );
208
  $headers = array();
209
  $headers[] = 'Content-type: text/html; charset=utf-8';
210
 
 
 
 
 
 
211
  $field_string = array();
212
  foreach ( $fields as $field ) {
213
  $field_string[] = "{$field->label}: " . esc_html( $field->value );
405
  wp_update_post( array( 'ID' => $bpost->get_id() ) );
406
  }
407
 
408
+ $platform = new Brizy_Editor_API_Platform();
409
+ if ( ! $platform->isUserCreatedLocally() ) {
410
+ Brizy_Editor_User::get()->update_project( $this->project->get_api_project() );
411
+ }
412
+
413
+
414
  $this->success( $this->create_post_globals() );
415
  } catch ( Exception $exception ) {
416
  Brizy_Logger::instance()->exception( $exception );
editor/api/auth.php CHANGED
@@ -68,7 +68,7 @@ class Brizy_Editor_API_Auth extends Brizy_Editor_Http_Client {
68
  )->get_response_body();
69
 
70
 
71
- $brizy_editor_API_access_token = new Brizy_Editor_API_AccessToken( $response['access_token'], $response['expires_in'] + time() );
72
 
73
  if ( isset( $response['refresh_token'] ) ) {
74
  $brizy_editor_API_access_token->set_refresh_token( $response['refresh_token'] );
68
  )->get_response_body();
69
 
70
 
71
+ $brizy_editor_API_access_token = new Brizy_Editor_API_AccessToken( $response['access_token'], $response['expires_in'] + time() - 20 );
72
 
73
  if ( isset( $response['refresh_token'] ) ) {
74
  $brizy_editor_API_access_token->set_refresh_token( $response['refresh_token'] );
editor/api/platform.php CHANGED
@@ -162,11 +162,30 @@ class Brizy_Editor_API_Platform extends Brizy_Editor_Http_Client {
162
  Brizy_Editor_Storage_Common::instance()->set( 'platform_user_id', $user['id'] );
163
  Brizy_Editor_Storage_Common::instance()->set( 'platform_user_email', $email );
164
  Brizy_Editor_Storage_Common::instance()->set( 'platform_user_signature', Brizy_Editor_Signature::get() );
165
- } else {
166
- Brizy_Logger::instance()->error( 'Failed to create user', array( $response ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  }
168
 
169
- return Brizy_Editor_User::reload();
 
 
170
  }
171
 
172
  public function isUserCreatedLocally() {
@@ -189,5 +208,4 @@ class Brizy_Editor_API_Platform extends Brizy_Editor_Http_Client {
189
  Brizy_Logger::instance()->error( 'Failed to notify the platform about a form submit', array( 'response' => $response ) );
190
  }
191
  }
192
-
193
  }
162
  Brizy_Editor_Storage_Common::instance()->set( 'platform_user_id', $user['id'] );
163
  Brizy_Editor_Storage_Common::instance()->set( 'platform_user_email', $email );
164
  Brizy_Editor_Storage_Common::instance()->set( 'platform_user_signature', Brizy_Editor_Signature::get() );
165
+
166
+ $user = Brizy_Editor_User::reload();
167
+
168
+ // try to create the local project on platform
169
+ try {
170
+ $local_project = Brizy_Editor_Project::get();
171
+
172
+ $api_project = $user->create_project( null, false );
173
+ $api_project->set_globals( $local_project->get_globals() );
174
+
175
+ $local_project->updateProjectData( $api_project );
176
+ $local_project->save();
177
+
178
+ $user->update_project( $api_project );
179
+
180
+ return $user;
181
+ } catch ( Exception $e ) {
182
+ Brizy_Logger::instance()->error( 'Unable to create the project for remote user', array( $response ) );
183
+ }
184
  }
185
 
186
+ Brizy_Logger::instance()->error( 'Failed to create user', array( $response ) );
187
+
188
+ return null;
189
  }
190
 
191
  public function isUserCreatedLocally() {
208
  Brizy_Logger::instance()->error( 'Failed to notify the platform about a form submit', array( 'response' => $response ) );
209
  }
210
  }
 
211
  }
editor/forms/form.php CHANGED
@@ -23,16 +23,6 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
23
  */
24
  protected $subject;
25
 
26
- /**
27
- * @var string
28
- */
29
- protected $fromName;
30
-
31
- /**
32
- * @var string
33
- */
34
- protected $fromEmail;
35
-
36
  /**
37
  * @var bool
38
  */
@@ -50,8 +40,6 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
50
  'id' => $this->id,
51
  'emailTo' => $this->emailTo,
52
  'subject' => $this->subject,
53
- 'fromName' => $this->fromName,
54
- 'fromEmail' => $this->fromEmail,
55
  );
56
 
57
  return $get_object_vars;
@@ -111,42 +99,6 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
111
  return $this;
112
  }
113
 
114
- /**
115
- * @return string
116
- */
117
- public function getFromName() {
118
- return $this->fromName;
119
- }
120
-
121
- /**
122
- * @param string $fromName
123
- *
124
- * @return Brizy_Editor_Forms_Form
125
- */
126
- public function setFromName( $fromName ) {
127
- $this->fromName = $fromName;
128
-
129
- return $this;
130
- }
131
-
132
- /**
133
- * @return string
134
- */
135
- public function getFromEmail() {
136
- return $this->fromEmail;
137
- }
138
-
139
- /**
140
- * @param string $fromEmail
141
- *
142
- * @return Brizy_Editor_Forms_Form
143
- */
144
- public function setFromEmail( $fromEmail ) {
145
- $this->fromEmail = $fromEmail;
146
-
147
- return $this;
148
- }
149
-
150
  /**
151
  * @return Brizy_Editor_Forms_Form
152
  * @throws Exception
@@ -171,14 +123,6 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
171
  $instance->setEmailTo( $_POST['form']['emailTo'] );
172
  }
173
 
174
- if ( isset( $_POST['form']['fromEmail'] ) ) {
175
- $instance->setFromEmail( $_POST['form']['fromEmail'] );
176
- }
177
-
178
- if ( isset( $_POST['form']['fromName'] ) ) {
179
- $instance->setFromName( $_POST['form']['fromName'] );
180
- }
181
-
182
  if ( isset( $_POST['form']['subject'] ) ) {
183
  $instance->setSubject( $_POST['form']['subject'] );
184
  }
@@ -207,11 +151,6 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
207
  $errors['emailTo'] = 'Invalid email provided';
208
  }
209
 
210
- if ( ! $this->getFromEmail() || ! filter_var( $this->getFromEmail(), FILTER_VALIDATE_EMAIL ) ) {
211
- $errors['fromEmail'] = 'Invalid email provided';
212
- }
213
-
214
-
215
  if ( count( $errors ) ) {
216
  return $errors;
217
  }
23
  */
24
  protected $subject;
25
 
 
 
 
 
 
 
 
 
 
 
26
  /**
27
  * @var bool
28
  */
40
  'id' => $this->id,
41
  'emailTo' => $this->emailTo,
42
  'subject' => $this->subject,
 
 
43
  );
44
 
45
  return $get_object_vars;
99
  return $this;
100
  }
101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  /**
103
  * @return Brizy_Editor_Forms_Form
104
  * @throws Exception
123
  $instance->setEmailTo( $_POST['form']['emailTo'] );
124
  }
125
 
 
 
 
 
 
 
 
 
126
  if ( isset( $_POST['form']['subject'] ) ) {
127
  $instance->setSubject( $_POST['form']['subject'] );
128
  }
151
  $errors['emailTo'] = 'Invalid email provided';
152
  }
153
 
 
 
 
 
 
154
  if ( count( $errors ) ) {
155
  return $errors;
156
  }
editor/load.php CHANGED
@@ -13,16 +13,16 @@ function brizy() {
13
  function brizy_get_current_post_id() {
14
  $pid = null;
15
 
16
- if ( $apid = get_the_ID() ) {
17
- $pid = (int)$apid;
18
- } elseif ( isset( $_REQUEST['post'] ) ) {
19
- $pid = (int)$_REQUEST['post'];
20
  } elseif ( isset( $_REQUEST['page_id'] ) ) {
21
- $pid = (int)$_REQUEST['page_id'];
22
  } elseif ( isset( $_POST['post_ID'] ) ) {
23
- $pid = (int)$_POST['post_ID'];
24
  } elseif ( isset( $_POST['id'] ) ) {
25
- $pid = (int)$_POST['id'];
 
 
26
  }
27
 
28
  return $pid;
13
  function brizy_get_current_post_id() {
14
  $pid = null;
15
 
16
+ if ( isset( $_REQUEST['post'] ) ) {
17
+ $pid = (int) $_REQUEST['post'];
 
 
18
  } elseif ( isset( $_REQUEST['page_id'] ) ) {
19
+ $pid = (int) $_REQUEST['page_id'];
20
  } elseif ( isset( $_POST['post_ID'] ) ) {
21
+ $pid = (int) $_POST['post_ID'];
22
  } elseif ( isset( $_POST['id'] ) ) {
23
+ $pid = (int) $_POST['id'];
24
+ } elseif ( $apid = get_queried_object_id() ) {
25
+ $pid = (int) $apid;
26
  }
27
 
28
  return $pid;
editor/project.php CHANGED
@@ -50,23 +50,23 @@ class Brizy_Editor_Project extends Brizy_Admin_Serializable {
50
  if ( isset( self::$instance ) ) {
51
  return self::$instance;
52
  }
53
-
54
  try {
55
  $brizy_editor_storage_common = Brizy_Editor_Storage_Common::instance();
56
  self::$instance = $brizy_editor_storage_common->get( self::BRIZY_PROJECT );
57
- //self::$instance->api_project = new Brizy_Editor_API_Project( self::$instance->api_project );
58
  } catch ( Brizy_Editor_Exceptions_NotFound $e ) {
59
- self::$instance = self::create();
60
  } catch ( Exception $e ) {
61
  Brizy_Logger::instance()->exception( $e );
62
- $t = 0;
63
  }
64
 
65
  try {
66
- self::$instance->checkSignature();
 
 
67
  } catch ( Brizy_Editor_Exceptions_SignatureMismatch $e ) {
68
  Brizy_Logger::instance()->notice( "Project signature mismatch" );
69
- self::$instance = self::create( self::$instance->get_id() );
70
  } catch ( Exception $e ) {
71
  Brizy_Logger::instance()->exception( $e );
72
  throw new Exception( 'Unable to check the signature.' );
50
  if ( isset( self::$instance ) ) {
51
  return self::$instance;
52
  }
53
+ $platform = new Brizy_Editor_API_Platform();
54
  try {
55
  $brizy_editor_storage_common = Brizy_Editor_Storage_Common::instance();
56
  self::$instance = $brizy_editor_storage_common->get( self::BRIZY_PROJECT );
 
57
  } catch ( Brizy_Editor_Exceptions_NotFound $e ) {
58
+ self::$instance = self::create( $platform->isUserCreatedLocally() );
59
  } catch ( Exception $e ) {
60
  Brizy_Logger::instance()->exception( $e );
 
61
  }
62
 
63
  try {
64
+ if ( ! $platform->isUserCreatedLocally() ) {
65
+ self::$instance->checkSignature();
66
+ }
67
  } catch ( Brizy_Editor_Exceptions_SignatureMismatch $e ) {
68
  Brizy_Logger::instance()->notice( "Project signature mismatch" );
69
+ self::$instance = self::create( self::$instance->get_id(), false );
70
  } catch ( Exception $e ) {
71
  Brizy_Logger::instance()->exception( $e );
72
  throw new Exception( 'Unable to check the signature.' );
editor/user.php CHANGED
@@ -49,23 +49,25 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
49
  'User is in maintenance mode'
50
  );
51
  }
52
- $user = null;
 
 
53
  try {
54
  $user = new Brizy_Editor_User( Brizy_Editor_Storage_Common::instance() );
55
- $user->checkSignature();
 
 
56
  } catch ( Brizy_Editor_Exceptions_SignatureMismatch $e ) {
57
- self::clone_user( $user );
58
  $user = new Brizy_Editor_User( Brizy_Editor_Storage_Common::instance() );
59
- //$user->auth();
60
  } catch ( Brizy_Editor_Exceptions_NotFound $e ) {
61
- self::create_user();
62
  $user = new Brizy_Editor_User( Brizy_Editor_Storage_Common::instance() );
63
  }
64
 
65
- // if ( ! $user->token || $user->token->expired() ) {
66
- // $user->auth();
67
- // $user->token = $user->common_storage->get( 'access-token' );
68
- // }
69
 
70
  return self::$instance = $user;
71
  }
@@ -79,7 +81,7 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
79
  *
80
  * @param $common_storage
81
  *
82
- * @throws Exception
83
  */
84
  protected function __construct( $common_storage ) {
85
 
@@ -94,29 +96,7 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
94
  }
95
 
96
  /**
97
- * @param Brizy_Editor_User $user
98
- *
99
- * @throws Brizy_Editor_API_Exceptions_Exception
100
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
101
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
102
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
103
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
104
- */
105
- static protected function clone_user( $user ) {
106
- // we create a new user for now
107
- $platform = new Brizy_Editor_API_Platform();
108
- $platform->createUser( $user->getPlatformUserId() );
109
-
110
- }
111
-
112
- static protected function create_user( $is_local = true ) {
113
-
114
- $platform = new Brizy_Editor_API_Platform();
115
- $platform->createUser( null, $is_local );
116
- }
117
-
118
- /**
119
- * @throws Exception
120
  */
121
  public function checkSignature() {
122
  Brizy_Logger::instance()->debug( 'Checking user signature' );
@@ -209,17 +189,13 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
209
  Brizy_Logger::instance()->notice( 'Create new project', array( 'clone_from' => $from_project_id ) );
210
 
211
  if ( $is_local ) {
212
- $uniqid = uniqid( 'Local project', true );
213
-
214
  $project_data = array(
215
- 'id' => md5( $uniqid ),
216
  'title' => 'Local project ',
217
  'globals' => '{"project":{},"language":{}}',
218
  'name' => uniqid( 'Local project', true ),
219
  'user' => null,
220
- 'template' => array(
221
- 'slug' => 'brizy'
222
- ),
223
  'created' => new DateTime(),
224
  'updated' => new DateTime(),
225
  'languages' => array(),
@@ -291,7 +267,7 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
291
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
292
  */
293
  // public function update_page( Brizy_Editor_API_Project $project, Brizy_Editor_API_Page $page ) {
294
- // Brizy_Logger::instance()->notice( 'Update page', array( $project, $page ) );
295
  //
296
  // $updated_page = $this->get_client()
297
  // ->update_page(
@@ -313,7 +289,7 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
313
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
314
  * @throws Exception
315
  */
316
- public function update_project( $project ) {
317
  Brizy_Logger::instance()->notice( 'Update project', array( $project ) );
318
 
319
  $updated_project = $this->get_client()->update_project( $project );
@@ -333,7 +309,7 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
333
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
334
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
335
  */
336
- public function get_project( $project ) {
337
  return $this->get_client()->get_project( $project );
338
  }
339
 
49
  'User is in maintenance mode'
50
  );
51
  }
52
+ $user = null;
53
+ $platform = new Brizy_Editor_API_Platform();
54
+
55
  try {
56
  $user = new Brizy_Editor_User( Brizy_Editor_Storage_Common::instance() );
57
+ if ( ! $platform->isUserCreatedLocally() ) {
58
+ $user->checkSignature();
59
+ }
60
  } catch ( Brizy_Editor_Exceptions_SignatureMismatch $e ) {
61
+ $platform->createUser( $user->getPlatformUserId(), false );
62
  $user = new Brizy_Editor_User( Brizy_Editor_Storage_Common::instance() );
 
63
  } catch ( Brizy_Editor_Exceptions_NotFound $e ) {
64
+ $platform->createUser( );
65
  $user = new Brizy_Editor_User( Brizy_Editor_Storage_Common::instance() );
66
  }
67
 
68
+ if ( ! $platform->isUserCreatedLocally() && ( ! $user->token || $user->token->expired() ) ) {
69
+ $user->auth();
70
+ }
 
71
 
72
  return self::$instance = $user;
73
  }
81
  *
82
  * @param $common_storage
83
  *
84
+ * @throws Brizy_Editor_Exceptions_NotFound
85
  */
86
  protected function __construct( $common_storage ) {
87
 
96
  }
97
 
98
  /**
99
+ * @throws Brizy_Editor_Exceptions_SignatureMismatch
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  */
101
  public function checkSignature() {
102
  Brizy_Logger::instance()->debug( 'Checking user signature' );
189
  Brizy_Logger::instance()->notice( 'Create new project', array( 'clone_from' => $from_project_id ) );
190
 
191
  if ( $is_local ) {
 
 
192
  $project_data = array(
193
+ 'id' => md5( uniqid( 'Local project', true ) ),
194
  'title' => 'Local project ',
195
  'globals' => '{"project":{},"language":{}}',
196
  'name' => uniqid( 'Local project', true ),
197
  'user' => null,
198
+ 'template' => array( 'slug' => 'brizy' ),
 
 
199
  'created' => new DateTime(),
200
  'updated' => new DateTime(),
201
  'languages' => array(),
267
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
268
  */
269
  // public function update_page( Brizy_Editor_API_Project $project, Brizy_Editor_API_Page $page ) {
270
+ // Brizy_ExceptionLogger::instance()->notice( 'Update page', array( $project, $page ) );
271
  //
272
  // $updated_page = $this->get_client()
273
  // ->update_page(
289
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
290
  * @throws Exception
291
  */
292
+ public function update_project( $project ) {
293
  Brizy_Logger::instance()->notice( 'Update project', array( $project ) );
294
 
295
  $updated_project = $this->get_client()->update_project( $project );
309
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
310
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
311
  */
312
+ public function get_project( $project ) {
313
  return $this->get_client()->get_project( $project );
314
  }
315
 
languages/texts.php CHANGED
@@ -403,7 +403,7 @@ class Brizy_Languages_Texts
403
  "Comment count" => __("Comment count", "brizy") ,
404
  "Filter By" => __("Filter By", "brizy") ,
405
  "Block" => __("Block", "brizy") ,
406
- "Make it a Global" => __("Make it a Global", "brizy") ,
407
  "Save" => __("Save", "brizy") ,
408
  "Saved" => __("Saved", "brizy") ,
409
  "Global" => __("Global", "brizy") ,
403
  "Comment count" => __("Comment count", "brizy") ,
404
  "Filter By" => __("Filter By", "brizy") ,
405
  "Block" => __("Block", "brizy") ,
406
+ "Make it Global" => __("Make it Global", "brizy") ,
407
  "Save" => __("Save", "brizy") ,
408
  "Saved" => __("Saved", "brizy") ,
409
  "Global" => __("Global", "brizy") ,
public/editor-build/1.0.33/editor/css/editor.css DELETED
@@ -1,8 +0,0 @@
1
- /*!
2
- * animate.css -http://daneden.me/animate
3
- * Version - 3.6.0
4
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
5
- *
6
- * Copyright (c) 2018 Daniel Eden
7
- */.brz-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz-animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-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)}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)}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)}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)}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)}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)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.brz-animated__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}.brz-animated__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}@keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}.brz-animated__pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}.brz-animated__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}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)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.brz-animated__shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.brz-animated__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}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)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.brz-animated__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}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)}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)}}@keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}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)}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)}}.brz-animated__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}@keyframes wobble{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}.brz-animated__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}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)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}.brz-animated__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-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)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}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)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz-animated__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}@-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)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}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)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-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)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}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)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-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)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}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)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-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)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}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)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}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)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.brz-animated__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}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)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz-animated__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}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)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz-animated__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}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)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz-animated__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}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)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz-animated__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.brz-animated__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.brz-animated__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz-animated__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz-animated__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz-animated__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz-animated__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz-animated__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz-animated__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz-animated__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz-animated__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-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}@-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}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}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}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}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}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz-animated__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-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}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}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}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}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}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz-animated__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}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)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.brz-animated__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}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)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.brz-animated__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.brz-animated__lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-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}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}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-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}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}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-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}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}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-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}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}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-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}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}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}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}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.brz-animated__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}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}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-animated__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}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}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-animated__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}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}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-animated__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}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}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-animated__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-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}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}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}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}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}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}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.brz-animated__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}@-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}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}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}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.brz-animated__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-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)}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)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}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}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-animated__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.brz-animated__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-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)}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)}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-animated__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-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)}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)}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-animated__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-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)}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)}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-animated__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-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)}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)}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-animated__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.brz-animated__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-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)}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)}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-animated__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-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)}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)}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-animated__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-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)}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)}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-animated__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-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)}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)}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-animated__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}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}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}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}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}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}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}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}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}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)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz-animated__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}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)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz-animated__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}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)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz-animated__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}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)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz-animated__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
8
- .brz .brz-rich-text,.nc-icon{-webkit-font-smoothing:antialiased}.brz .brz-btn,.brz-ed-sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.brz .media-frame .spinner,.brz-ed-sorting .sortable-chosen :not(.brz-ed-border),.slick-loading .brz .slick-slide,.slick-loading .brz .slick-track{visibility:hidden}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone,.brz-ed-sorting .sortable-hovered:not(.brz-ed-border__sortable):not(.brz-ed-container-trigger),.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone{position:relative}.brz .brz-a,.brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}.brz .brz-button,.brz .brz-reset-all,.brz .brz-select,.nc-icon{text-transform:none}.brz .brz-a,.brz .brz-rich-text a,.brz-ed .brz-a{-webkit-text-decoration-skip:objects}@font-face{font-family:iowanoldst_btroman;src:url(../fonts/iowaosrm-webfont.woff);src:url(../fonts/iowaosrm-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/iowaosrm-webfont.woff2) format("woff2"),url(../fonts/iowaosrm-webfont.woff) format("woff"),url(../fonts/iowaosrm-webfont.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-regular-webfont.woff);src:url(../fonts/europa-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-regular-webfont.woff2) format("woff2"),url(../fonts/europa-regular-webfont.woff) format("woff"),url(../fonts/europa-regular-webfont.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-bold-webfont.woff);src:url(../fonts/europa-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-bold-webfont.woff2) format("woff2"),url(../fonts/europa-bold-webfont.woff) format("woff"),url(../fonts/europa-bold-webfont.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-light-webfont.woff);src:url(../fonts/europa-light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-light-webfont.woff2) format("woff2"),url(../fonts/europa-light-webfont.woff) format("woff"),url(../fonts/europa-light-webfont.ttf) format("truetype");font-weight:300;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-regular-webfont.eot);src:url(../fonts/pn-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-regular-webfont.woff2) format("woff2"),url(../fonts/pn-regular-webfont.woff) format("woff"),url(../fonts/pn-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-medium-webfont.eot);src:url(../fonts/pn-medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-medium-webfont.woff2) format("woff2"),url(../fonts/pn-medium-webfont.woff) format("woff"),url(../fonts/pn-medium-webfont.svg) format("svg");font-weight:600;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-bold-webfont.eot);src:url(../fonts/pn-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-bold-webfont.woff2) format("woff2"),url(../fonts/pn-bold-webfont.woff) format("woff"),url(../fonts/pn-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}@font-face{font-family:"Nucleo Outline";src:url(../fonts/icons/nucleo-outline.eot);src:url(../fonts/icons/nucleo-outline.eot) format("embedded-opentype"),url(../fonts/icons/nucleo-outline.woff2) format("woff2"),url(../fonts/icons/nucleo-outline.woff) format("woff"),url(../fonts/icons/nucleo-outline.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:"Nucleo Glyph";src:url(../fonts/icons/nucleo-glyph.eot);src:url(../fonts/icons/nucleo-glyph.eot) format("embedded-opentype"),url(../fonts/icons/nucleo-glyph.woff2) format("woff2"),url(../fonts/icons/nucleo-glyph.woff) format("woff"),url(../fonts/icons/nucleo-glyph.ttf) format("truetype");font-weight:400;font-style:normal}.nc-outline-2x-drag-down:before{content:"\ea01"}.nc-outline-2x-drag-up:before{content:"\ea02"}.nc-outline-2x-swipe-down:before{content:"\ea03"}.nc-outline-2x-swipe-left:before{content:"\ea04"}.nc-outline-2x-swipe-right:before{content:"\ea05"}.nc-outline-2x-swipe-up:before{content:"\ea06"}.nc-outline-2x-tap:before{content:"\ea07"}.nc-outline-3d-29:before{content:"\ea08"}.nc-outline-3d-model:before{content:"\ea09"}.nc-outline-3d:before{content:"\ea0a"}.nc-outline-3x-swipe-left:before{content:"\ea0b"}.nc-outline-3x-swipe-right:before{content:"\ea0c"}.nc-outline-3x-swipe-up:before{content:"\ea0e"}.nc-outline-3x-tap:before{content:"\ea0d"}.nc-outline-4x-swipe-left:before{content:"\ea0f"}.nc-outline-4x-swipe-right:before{content:"\ea10"}.nc-outline-4x-swipe-up:before{content:"\ea11"}.nc-outline-a-add:before{content:"\ea12"}.nc-outline-a-check:before{content:"\ea13"}.nc-outline-a-delete:before{content:"\ea14"}.nc-outline-a-edit:before{content:"\ea15"}.nc-outline-a-heart:before{content:"\ea16"}.nc-outline-a-location:before{content:"\ea17"}.nc-outline-a-remove:before{content:"\ea18"}.nc-outline-a-search:before{content:"\ea19"}.nc-outline-a-security:before{content:"\ea1a"}.nc-outline-a-share:before{content:"\ea1b"}.nc-outline-a-star:before{content:"\ea1c"}.nc-outline-a-sync:before{content:"\ea1d"}.nc-outline-a-time:before{content:"\ea1e"}.nc-outline-abc:before{content:"\ea1f"}.nc-outline-accessibility:before{content:"\ea20"}.nc-outline-action-73:before{content:"\ea22"}.nc-outline-action-74:before{content:"\ea21"}.nc-outline-active-38:before{content:"\ea23"}.nc-outline-active-40:before{content:"\ea24"}.nc-outline-add-27:before{content:"\ea26"}.nc-outline-add-29:before{content:"\ea25"}.nc-outline-add:before{content:"\ea28"}.nc-outline-agenda-bookmark:before{content:"\ea27"}.nc-outline-agenda:before{content:"\ea29"}.nc-outline-air-baloon:before{content:"\ea2a"}.nc-outline-air-conditioner:before{content:"\ea2b"}.nc-outline-airbag:before{content:"\ea2c"}.nc-outline-alarm-add:before{content:"\ea2d"}.nc-outline-alarm-delete:before{content:"\ea2e"}.nc-outline-album-2:before{content:"\ea2f"}.nc-outline-album:before{content:"\ea30"}.nc-outline-alcohol:before{content:"\ea31"}.nc-outline-alert-circle-exc:before{content:"\ea32"}.nc-outline-alert-circle-i:before{content:"\ea33"}.nc-outline-alert-circle-que:before{content:"\ea34"}.nc-outline-alert-exc:before{content:"\ea35"}.nc-outline-alert-i:before{content:"\ea36"}.nc-outline-alert-que:before{content:"\ea37"}.nc-outline-alert-square-exc:before{content:"\ea38"}.nc-outline-alert-square-i:before{content:"\ea39"}.nc-outline-alert-square-que:before{content:"\ea3a"}.nc-outline-alert:before{content:"\ea3b"}.nc-outline-alien-29:before{content:"\ea3c"}.nc-outline-alien-33:before{content:"\ea3d"}.nc-outline-align-bottom:before{content:"\ea3e"}.nc-outline-align-center-horizontal:before{content:"\ea3f"}.nc-outline-align-center-vertical:before{content:"\ea40"}.nc-outline-align-center:before{content:"\ea41"}.nc-outline-align-justify:before{content:"\ea42"}.nc-outline-align-left-2:before{content:"\ea43"}.nc-outline-align-left:before{content:"\ea44"}.nc-outline-align-right-2:before{content:"\ea45"}.nc-outline-align-right:before{content:"\ea46"}.nc-outline-align-top:before{content:"\ea47"}.nc-outline-ambulance:before{content:"\ea48"}.nc-outline-analytics-88:before{content:"\ea49"}.nc-outline-analytics-89:before{content:"\ea4a"}.nc-outline-anchor:before{content:"\ea4c"}.nc-outline-android:before{content:"\ea4b"}.nc-outline-angle:before{content:"\ea4d"}.nc-outline-angry-10:before{content:"\ea4e"}.nc-outline-angry-44:before{content:"\ea50"}.nc-outline-animation-14:before{content:"\ea4f"}.nc-outline-animation-31:before{content:"\ea51"}.nc-outline-animation-32:before{content:"\ea52"}.nc-outline-app:before{content:"\ea53"}.nc-outline-apple-2:before{content:"\ea54"}.nc-outline-apple:before{content:"\ea55"}.nc-outline-appointment:before{content:"\ea56"}.nc-outline-archive-2:before{content:"\ea57"}.nc-outline-archive-3d-check:before{content:"\ea58"}.nc-outline-archive-3d-content:before{content:"\ea59"}.nc-outline-archive-check:before{content:"\ea5a"}.nc-outline-archive-content:before{content:"\ea5b"}.nc-outline-archive-paper-check:before{content:"\ea5c"}.nc-outline-archive-paper:before{content:"\ea5d"}.nc-outline-archive:before{content:"\ea5e"}.nc-outline-armchair:before{content:"\ea5f"}.nc-outline-artboard:before{content:"\ea60"}.nc-outline-astronaut:before{content:"\ea62"}.nc-outline-at-sign:before{content:"\ea61"}.nc-outline-atm:before{content:"\ea63"}.nc-outline-atom:before{content:"\ea64"}.nc-outline-attach-86:before{content:"\ea65"}.nc-outline-attach-87:before{content:"\ea66"}.nc-outline-aubergine:before{content:"\ea67"}.nc-outline-audio-91:before{content:"\ea68"}.nc-outline-audio-92:before{content:"\ea69"}.nc-outline-audio:before{content:"\ea6a"}.nc-outline-avocado:before{content:"\ea6c"}.nc-outline-award-48:before{content:"\ea6b"}.nc-outline-award-49:before{content:"\ea6d"}.nc-outline-award-55:before{content:"\ea6e"}.nc-outline-award-74:before{content:"\ea6f"}.nc-outline-award:before{content:"\ea70"}.nc-outline-axe:before{content:"\ea71"}.nc-outline-b-add:before{content:"\ea72"}.nc-outline-b-check:before{content:"\ea74"}.nc-outline-b-location:before{content:"\ea73"}.nc-outline-b-love:before{content:"\ea75"}.nc-outline-b-meeting:before{content:"\ea76"}.nc-outline-b-remove:before{content:"\ea78"}.nc-outline-b-security:before{content:"\ea77"}.nc-outline-baby-2:before{content:"\ea79"}.nc-outline-baby-3:before{content:"\ea7a"}.nc-outline-baby-bottle:before{content:"\ea7b"}.nc-outline-baby:before{content:"\ea7c"}.nc-outline-back-78:before{content:"\ea7d"}.nc-outline-back-80:before{content:"\ea7e"}.nc-outline-background:before{content:"\ea7f"}.nc-outline-backpack-2:before{content:"\ea80"}.nc-outline-backpack-57:before{content:"\ea81"}.nc-outline-backpack-58:before{content:"\ea82"}.nc-outline-backpack:before{content:"\ea83"}.nc-outline-backward:before{content:"\ea84"}.nc-outline-bacon:before{content:"\ea85"}.nc-outline-badge-13:before{content:"\ea86"}.nc-outline-badge-14:before{content:"\ea87"}.nc-outline-badge-15:before{content:"\ea88"}.nc-outline-badge:before{content:"\ea89"}.nc-outline-badminton:before{content:"\ea8a"}.nc-outline-bag-09:before{content:"\ea8b"}.nc-outline-bag-16:before{content:"\ea8c"}.nc-outline-bag-17:before{content:"\ea8d"}.nc-outline-bag-20:before{content:"\ea8e"}.nc-outline-bag-21:before{content:"\ea8f"}.nc-outline-bag-22:before{content:"\ea90"}.nc-outline-bag-49:before{content:"\ea91"}.nc-outline-bag-50:before{content:"\ea92"}.nc-outline-bag-add-18:before{content:"\ea93"}.nc-outline-bag-add-21:before{content:"\ea94"}.nc-outline-bag-delivery:before{content:"\ea95"}.nc-outline-bag-edit:before{content:"\ea96"}.nc-outline-bag-remove-19:before{content:"\ea97"}.nc-outline-bag-remove-22:before{content:"\ea98"}.nc-outline-bag-time:before{content:"\ea99"}.nc-outline-bag:before{content:"\ea9a"}.nc-outline-baguette:before{content:"\ea9b"}.nc-outline-balance:before{content:"\ea9c"}.nc-outline-ball-basket:before{content:"\ea9d"}.nc-outline-ball-soccer:before{content:"\ea9e"}.nc-outline-baloon:before{content:"\eaa0"}.nc-outline-ban-bold:before{content:"\ea9f"}.nc-outline-ban:before{content:"\eaa1"}.nc-outline-banana:before{content:"\eaa2"}.nc-outline-bank:before{content:"\eaa3"}.nc-outline-barbecue-15:before{content:"\eaa4"}.nc-outline-barbecue-tools:before{content:"\eaa5"}.nc-outline-barbecue:before{content:"\eaa6"}.nc-outline-barcode-qr:before{content:"\eaa7"}.nc-outline-barcode-scan:before{content:"\eaa8"}.nc-outline-barcode:before{content:"\eaa9"}.nc-outline-bars-2:before{content:"\eaaa"}.nc-outline-bars-rotate:before{content:"\eaac"}.nc-outline-bars:before{content:"\eaab"}.nc-outline-baseball-ball:before{content:"\eaad"}.nc-outline-baseball-bat:before{content:"\eaae"}.nc-outline-baseball:before{content:"\eaaf"}.nc-outline-basket-add:before{content:"\eab0"}.nc-outline-basket-edit:before{content:"\eab1"}.nc-outline-basket-favorite:before{content:"\eab2"}.nc-outline-basket-remove:before{content:"\eab3"}.nc-outline-basket-search:before{content:"\eab4"}.nc-outline-basket-share:before{content:"\eab5"}.nc-outline-basket-simple-add:before{content:"\eab6"}.nc-outline-basket-simple-remove:before{content:"\eab7"}.nc-outline-basket-simple:before{content:"\eab8"}.nc-outline-basket-update:before{content:"\eab9"}.nc-outline-basket:before{content:"\eaba"}.nc-outline-basketball-12:before{content:"\eabb"}.nc-outline-basketball-13:before{content:"\eabc"}.nc-outline-bat:before{content:"\eabd"}.nc-outline-bath-tub:before{content:"\eabe"}.nc-outline-battery-81:before{content:"\eabf"}.nc-outline-battery-83:before{content:"\eac0"}.nc-outline-battery-half:before{content:"\eac1"}.nc-outline-battery-level:before{content:"\eac2"}.nc-outline-battery-low:before{content:"\eac3"}.nc-outline-battery:before{content:"\eac4"}.nc-outline-bear-2:before{content:"\eac5"}.nc-outline-bear:before{content:"\eac6"}.nc-outline-bed-09:before{content:"\eac8"}.nc-outline-bed-23:before{content:"\eac9"}.nc-outline-bed-side:before{content:"\eac7"}.nc-outline-bee:before{content:"\eaca"}.nc-outline-beer-95:before{content:"\eacb"}.nc-outline-beer-96:before{content:"\eacc"}.nc-outline-bell-53:before{content:"\eacd"}.nc-outline-bell-54:before{content:"\eace"}.nc-outline-bell-55:before{content:"\eacf"}.nc-outline-belt:before{content:"\ead0"}.nc-outline-berlin:before{content:"\ead1"}.nc-outline-beverage:before{content:"\ead2"}.nc-outline-big-eyes:before{content:"\ead4"}.nc-outline-big-smile:before{content:"\ead3"}.nc-outline-bigmouth:before{content:"\ead5"}.nc-outline-bike-2:before{content:"\ead6"}.nc-outline-bike:before{content:"\ead7"}.nc-outline-bill:before{content:"\ead9"}.nc-outline-billiard:before{content:"\ead8"}.nc-outline-binocular:before{content:"\eada"}.nc-outline-biscuit:before{content:"\eadb"}.nc-outline-bitcoin:before{content:"\eadc"}.nc-outline-bleah:before{content:"\eadd"}.nc-outline-blend:before{content:"\eade"}.nc-outline-blind:before{content:"\eae0"}.nc-outline-block-bottom-left:before{content:"\eadf"}.nc-outline-block-bottom-right:before{content:"\eae1"}.nc-outline-block-down:before{content:"\eae2"}.nc-outline-block-left:before{content:"\eae3"}.nc-outline-block-right:before{content:"\eae4"}.nc-outline-block-top-left:before{content:"\eae5"}.nc-outline-block-top-right:before{content:"\eae6"}.nc-outline-block-up:before{content:"\eae8"}.nc-outline-blog:before{content:"\eae7"}.nc-outline-blueberries:before{content:"\eae9"}.nc-outline-bluetooth:before{content:"\eaea"}.nc-outline-board-2:before{content:"\eaeb"}.nc-outline-board-27:before{content:"\eaec"}.nc-outline-board-28:before{content:"\eaed"}.nc-outline-board-29:before{content:"\eaee"}.nc-outline-board-30:before{content:"\eaef"}.nc-outline-board-51:before{content:"\eaf0"}.nc-outline-board:before{content:"\eaf1"}.nc-outline-boat-front:before{content:"\eaf2"}.nc-outline-boat-small-02:before{content:"\eaf3"}.nc-outline-boat-small-03:before{content:"\eaf4"}.nc-outline-boat:before{content:"\eaf5"}.nc-outline-bold-add:before{content:"\eaf6"}.nc-outline-bold-delete:before{content:"\eaf7"}.nc-outline-bold-direction:before{content:"\eaf8"}.nc-outline-bold-down:before{content:"\eaf9"}.nc-outline-bold-left:before{content:"\eafa"}.nc-outline-bold-remove:before{content:"\eafc"}.nc-outline-bold-right:before{content:"\eafb"}.nc-outline-bold-up:before{content:"\eafd"}.nc-outline-bold:before{content:"\eafe"}.nc-outline-bolt:before{content:"\eaff"}.nc-outline-bomb:before{content:"\eb00"}.nc-outline-bones:before{content:"\eb01"}.nc-outline-book-07:before{content:"\eb02"}.nc-outline-book-08:before{content:"\eb03"}.nc-outline-book-39:before{content:"\eb04"}.nc-outline-book-bookmark-2:before{content:"\eb05"}.nc-outline-book-bookmark:before{content:"\eb06"}.nc-outline-book-open-2:before{content:"\eb07"}.nc-outline-book-open:before{content:"\eb08"}.nc-outline-book:before{content:"\eb09"}.nc-outline-bookmark-2:before{content:"\eb0a"}.nc-outline-bookmark-add-2:before{content:"\eb0b"}.nc-outline-bookmark-add:before{content:"\eb0c"}.nc-outline-bookmark-remove-2:before{content:"\eb0d"}.nc-outline-bookmark-remove:before{content:"\eb0e"}.nc-outline-bookmark:before{content:"\eb0f"}.nc-outline-books-46:before{content:"\eb10"}.nc-outline-books:before{content:"\eb11"}.nc-outline-boot-2:before{content:"\eb12"}.nc-outline-boot-woman:before{content:"\eb14"}.nc-outline-boot:before{content:"\eb15"}.nc-outline-border-radius:before{content:"\eb13"}.nc-outline-border:before{content:"\eb16"}.nc-outline-bored:before{content:"\eb17"}.nc-outline-bottle-wine:before{content:"\eb18"}.nc-outline-bottle:before{content:"\eb19"}.nc-outline-bow:before{content:"\eb1a"}.nc-outline-bowl:before{content:"\eb1b"}.nc-outline-bowling:before{content:"\eb1d"}.nc-outline-box-2:before{content:"\eb1c"}.nc-outline-box-3d-50:before{content:"\eb1e"}.nc-outline-box-ribbon:before{content:"\eb1f"}.nc-outline-box:before{content:"\eb20"}.nc-outline-boxing:before{content:"\eb21"}.nc-outline-bra:before{content:"\eb22"}.nc-outline-brain:before{content:"\eb23"}.nc-outline-brakes:before{content:"\eb24"}.nc-outline-bread:before{content:"\eb25"}.nc-outline-briefcase-24:before{content:"\eb26"}.nc-outline-briefcase-25:before{content:"\eb28"}.nc-outline-briefcase-26:before{content:"\eb27"}.nc-outline-brightness-46:before{content:"\eb29"}.nc-outline-brightness-47:before{content:"\eb2a"}.nc-outline-brioche:before{content:"\eb2d"}.nc-outline-broccoli:before{content:"\eb2b"}.nc-outline-broom:before{content:"\eb2c"}.nc-outline-browser-chrome:before{content:"\eb2e"}.nc-outline-browser-edge:before{content:"\eb2f"}.nc-outline-browser-firefox:before{content:"\eb30"}.nc-outline-browser-ie:before{content:"\eb31"}.nc-outline-browser-opera:before{content:"\eb32"}.nc-outline-browser-safari:before{content:"\eb35"}.nc-outline-brush:before{content:"\eb34"}.nc-outline-bucket:before{content:"\eb33"}.nc-outline-bug:before{content:"\eb36"}.nc-outline-building:before{content:"\eb37"}.nc-outline-bulb-61:before{content:"\eb39"}.nc-outline-bulb-62:before{content:"\eb38"}.nc-outline-bulb-63:before{content:"\eb3a"}.nc-outline-bulb-saver:before{content:"\eb3b"}.nc-outline-bulb:before{content:"\eb3d"}.nc-outline-bullet-list-67:before{content:"\eb3c"}.nc-outline-bullet-list-68:before{content:"\eb3e"}.nc-outline-bullet-list-69:before{content:"\eb41"}.nc-outline-bullet-list-70:before{content:"\eb3f"}.nc-outline-bullet-list:before{content:"\eb40"}.nc-outline-bus-front-10:before{content:"\eb42"}.nc-outline-bus-front-12:before{content:"\eb44"}.nc-outline-bus:before{content:"\eb45"}.nc-outline-business-contact-85:before{content:"\eb43"}.nc-outline-business-contact-89:before{content:"\eb46"}.nc-outline-businessman-03:before{content:"\eb47"}.nc-outline-businessman-04:before{content:"\eb48"}.nc-outline-butterfly:before{content:"\eb49"}.nc-outline-button-2:before{content:"\eb4a"}.nc-outline-button-circle-pause:before{content:"\eb4c"}.nc-outline-button-circle-play:before{content:"\eb4b"}.nc-outline-button-circle-stop:before{content:"\eb4d"}.nc-outline-button-eject:before{content:"\eb4e"}.nc-outline-button-next:before{content:"\eb50"}.nc-outline-button-pause:before{content:"\eb4f"}.nc-outline-button-play:before{content:"\eb51"}.nc-outline-button-power:before{content:"\eb52"}.nc-outline-button-previous:before{content:"\eb54"}.nc-outline-button-record:before{content:"\eb53"}.nc-outline-button-rewind:before{content:"\eb55"}.nc-outline-button-skip:before{content:"\eb56"}.nc-outline-button-stop:before{content:"\eb57"}.nc-outline-button:before{content:"\eb58"}.nc-outline-cabinet:before{content:"\eb59"}.nc-outline-cable-49:before{content:"\eb5a"}.nc-outline-cable-50:before{content:"\eb5b"}.nc-outline-cactus:before{content:"\eb5c"}.nc-outline-cake-100:before{content:"\eb5d"}.nc-outline-cake-13:before{content:"\eb5e"}.nc-outline-cake-slice:before{content:"\eb5f"}.nc-outline-cake:before{content:"\eb60"}.nc-outline-calculator:before{content:"\eb61"}.nc-outline-calendar-57:before{content:"\eb62"}.nc-outline-calendar-60:before{content:"\eb64"}.nc-outline-calendar-add:before{content:"\eb65"}.nc-outline-calendar-check-59:before{content:"\eb63"}.nc-outline-calendar-check-62:before{content:"\eb66"}.nc-outline-calendar-grid-58:before{content:"\eb67"}.nc-outline-calendar-grid-61:before{content:"\eb68"}.nc-outline-camera-18:before{content:"\eb69"}.nc-outline-camera-19:before{content:"\eb6a"}.nc-outline-camera-20:before{content:"\eb6b"}.nc-outline-camera-ban-36:before{content:"\eb6c"}.nc-outline-camera-ban-37:before{content:"\eb6d"}.nc-outline-camera-compact:before{content:"\eb6e"}.nc-outline-camera-screen:before{content:"\eb6f"}.nc-outline-camera-square-57:before{content:"\eb70"}.nc-outline-camera-square-58:before{content:"\eb71"}.nc-outline-camera-time:before{content:"\eb72"}.nc-outline-camera:before{content:"\eb73"}.nc-outline-camper:before{content:"\eb75"}.nc-outline-camping:before{content:"\eb74"}.nc-outline-candle:before{content:"\eb76"}.nc-outline-candy-2:before{content:"\eb77"}.nc-outline-candy:before{content:"\eb78"}.nc-outline-canvas:before{content:"\eb79"}.nc-outline-cap:before{content:"\eb7a"}.nc-outline-capitalize:before{content:"\eb7b"}.nc-outline-caps-all:before{content:"\eb7c"}.nc-outline-caps-small:before{content:"\eb7d"}.nc-outline-car-2:before{content:"\eb7e"}.nc-outline-car-accident:before{content:"\eb7f"}.nc-outline-car-connect:before{content:"\eb80"}.nc-outline-car-door:before{content:"\eb81"}.nc-outline-car-front:before{content:"\eb82"}.nc-outline-car-lights:before{content:"\eb83"}.nc-outline-car-parking:before{content:"\eb84"}.nc-outline-car-simple:before{content:"\eb85"}.nc-outline-car-sport:before{content:"\eb86"}.nc-outline-car-taxi:before{content:"\eb87"}.nc-outline-car-ventilation:before{content:"\eb88"}.nc-outline-car-wash:before{content:"\eb89"}.nc-outline-car:before{content:"\eb8a"}.nc-outline-card-add-2:before{content:"\eb8b"}.nc-outline-card-add:before{content:"\eb8c"}.nc-outline-card-alert:before{content:"\eb8d"}.nc-outline-card-edit:before{content:"\eb8e"}.nc-outline-card-favorite:before{content:"\eb8f"}.nc-outline-card-remove:before{content:"\eb90"}.nc-outline-card-update:before{content:"\eb91"}.nc-outline-cardio:before{content:"\eb92"}.nc-outline-cards:before{content:"\eb94"}.nc-outline-carrot:before{content:"\eb95"}.nc-outline-cart-9:before{content:"\eb93"}.nc-outline-cart-add-9:before{content:"\eb96"}.nc-outline-cart-add:before{content:"\eb97"}.nc-outline-cart-favorite:before{content:"\eb98"}.nc-outline-cart-full:before{content:"\eb99"}.nc-outline-cart-in-9:before{content:"\eb9a"}.nc-outline-cart-refresh:before{content:"\eb9c"}.nc-outline-cart-remove-9:before{content:"\eb9b"}.nc-outline-cart-remove:before{content:"\eb9d"}.nc-outline-cart-return:before{content:"\eb9e"}.nc-outline-cart-simple-add:before{content:"\eb9f"}.nc-outline-cart-simple-in:before{content:"\eba1"}.nc-outline-cart-simple-remove:before{content:"\eba0"}.nc-outline-cart-simple:before{content:"\eba2"}.nc-outline-cart-speed:before{content:"\eba3"}.nc-outline-cart:before{content:"\eba4"}.nc-outline-cash-register:before{content:"\eba5"}.nc-outline-castle:before{content:"\eba6"}.nc-outline-cat:before{content:"\eba7"}.nc-outline-cauldron:before{content:"\eba8"}.nc-outline-cctv:before{content:"\eba9"}.nc-outline-cd-reader:before{content:"\ebaa"}.nc-outline-celsius:before{content:"\ebab"}.nc-outline-centralize:before{content:"\ebac"}.nc-outline-chair-2:before{content:"\ebad"}.nc-outline-chair:before{content:"\ebae"}.nc-outline-chalkboard:before{content:"\ebaf"}.nc-outline-champagne:before{content:"\ebb0"}.nc-outline-chart-2:before{content:"\ebb1"}.nc-outline-chart-3:before{content:"\ebb2"}.nc-outline-chart-bar-32:before{content:"\ebb3"}.nc-outline-chart-bar-33:before{content:"\ebb4"}.nc-outline-chart-bar-52:before{content:"\ebb5"}.nc-outline-chart-bar-53:before{content:"\ebb6"}.nc-outline-chart-bar:before{content:"\ebb7"}.nc-outline-chart-bars:before{content:"\ebb8"}.nc-outline-chart-growth:before{content:"\ebb9"}.nc-outline-chart-pie-35:before{content:"\ebba"}.nc-outline-chart-pie-36:before{content:"\ebbb"}.nc-outline-chart-pie:before{content:"\ebbc"}.nc-outline-chart:before{content:"\ebbd"}.nc-outline-chat-33:before{content:"\ebbe"}.nc-outline-chat-45:before{content:"\ebbf"}.nc-outline-chat-46:before{content:"\ebc0"}.nc-outline-chat-content:before{content:"\ebc1"}.nc-outline-chat-reply:before{content:"\ebc2"}.nc-outline-chat-round-content:before{content:"\ebc3"}.nc-outline-chat-round:before{content:"\ebc4"}.nc-outline-chat:before{content:"\ebc5"}.nc-outline-check-2:before{content:"\ebc6"}.nc-outline-check-bold:before{content:"\ebc7"}.nc-outline-check-circle-07:before{content:"\ebc8"}.nc-outline-check-circle-08:before{content:"\ebc9"}.nc-outline-check-curve:before{content:"\ebca"}.nc-outline-check-in:before{content:"\ebcb"}.nc-outline-check-out:before{content:"\ebcc"}.nc-outline-check-simple:before{content:"\ebcd"}.nc-outline-check-small:before{content:"\ebce"}.nc-outline-check-square-09:before{content:"\ebcf"}.nc-outline-check-square-11:before{content:"\ebd0"}.nc-outline-check:before{content:"\ebd1"}.nc-outline-cheese-24:before{content:"\ebd2"}.nc-outline-cheese-87:before{content:"\ebd3"}.nc-outline-cheeseburger:before{content:"\ebd4"}.nc-outline-chef-hat:before{content:"\ebd6"}.nc-outline-chef:before{content:"\ebd5"}.nc-outline-cheque-2:before{content:"\ebd7"}.nc-outline-cheque-3:before{content:"\ebd8"}.nc-outline-cheque:before{content:"\ebda"}.nc-outline-cherry:before{content:"\ebd9"}.nc-outline-chicken-2:before{content:"\ebdb"}.nc-outline-chicken:before{content:"\ebdc"}.nc-outline-child:before{content:"\ebdd"}.nc-outline-chili:before{content:"\ebde"}.nc-outline-chimney:before{content:"\ebdf"}.nc-outline-china:before{content:"\ebe0"}.nc-outline-chinese:before{content:"\ebe1"}.nc-outline-chips:before{content:"\ebe2"}.nc-outline-choco-cream:before{content:"\ebe3"}.nc-outline-chocolate-mousse:before{content:"\ebe4"}.nc-outline-chocolate:before{content:"\ebe5"}.nc-outline-church:before{content:"\ebe6"}.nc-outline-churros:before{content:"\ebe7"}.nc-outline-circle-02:before{content:"\ebe8"}.nc-outline-circle-03:before{content:"\ebe9"}.nc-outline-circle-04:before{content:"\ebea"}.nc-outline-circle-08:before{content:"\ebec"}.nc-outline-circle-09:before{content:"\ebeb"}.nc-outline-circle-10:before{content:"\ebed"}.nc-outline-circle-add:before{content:"\ebee"}.nc-outline-circle-bold-add:before{content:"\ebef"}.nc-outline-circle-bold-delete:before{content:"\ebf0"}.nc-outline-circle-bold-remove:before{content:"\ebf1"}.nc-outline-circle-delete:before{content:"\ebf2"}.nc-outline-circle-down-12:before{content:"\ebf3"}.nc-outline-circle-down-40:before{content:"\ebf4"}.nc-outline-circle-in:before{content:"\ebf5"}.nc-outline-circle-left-10:before{content:"\ebf6"}.nc-outline-circle-left-38:before{content:"\ebf7"}.nc-outline-circle-out:before{content:"\ebf8"}.nc-outline-circle-remove:before{content:"\ebf9"}.nc-outline-circle-right-09:before{content:"\ebfa"}.nc-outline-circle-right-37:before{content:"\ebfc"}.nc-outline-circle-simple-down:before{content:"\ebfb"}.nc-outline-circle-simple-left:before{content:"\ebfe"}.nc-outline-circle-simple-right:before{content:"\ebfd"}.nc-outline-circle-simple-up:before{content:"\ebff"}.nc-outline-circle-up-11:before{content:"\ec00"}.nc-outline-circle-up-39:before{content:"\ec02"}.nc-outline-circle:before{content:"\ec01"}.nc-outline-circuit-round:before{content:"\ec03"}.nc-outline-circuit:before{content:"\ec04"}.nc-outline-clone:before{content:"\ec05"}.nc-outline-cloud-25:before{content:"\ec06"}.nc-outline-cloud-26:before{content:"\ec08"}.nc-outline-cloud-download-93:before{content:"\ec07"}.nc-outline-cloud-download-95:before{content:"\ec09"}.nc-outline-cloud-drop:before{content:"\ec0a"}.nc-outline-cloud-fog-31:before{content:"\ec0c"}.nc-outline-cloud-fog-32:before{content:"\ec0b"}.nc-outline-cloud-hail:before{content:"\ec0d"}.nc-outline-cloud-light:before{content:"\ec0e"}.nc-outline-cloud-moon:before{content:"\ec10"}.nc-outline-cloud-rain:before{content:"\ec0f"}.nc-outline-cloud-rainbow:before{content:"\ec11"}.nc-outline-cloud-snow-34:before{content:"\ec12"}.nc-outline-cloud-snow-42:before{content:"\ec14"}.nc-outline-cloud-sun-17:before{content:"\ec13"}.nc-outline-cloud-sun-19:before{content:"\ec15"}.nc-outline-cloud-upload-94:before{content:"\ec16"}.nc-outline-cloud-upload-96:before{content:"\ec17"}.nc-outline-cloud:before{content:"\ec18"}.nc-outline-clover:before{content:"\ec19"}.nc-outline-coat-hanger:before{content:"\ec1a"}.nc-outline-coat:before{content:"\ec1c"}.nc-outline-cockade:before{content:"\ec1b"}.nc-outline-cocktail:before{content:"\ec1d"}.nc-outline-code-editor:before{content:"\ec1e"}.nc-outline-code:before{content:"\ec1f"}.nc-outline-coffe-long:before{content:"\ec20"}.nc-outline-coffee-2:before{content:"\ec21"}.nc-outline-coffee-bean:before{content:"\ec22"}.nc-outline-coffee-long:before{content:"\ec23"}.nc-outline-coffee:before{content:"\ec24"}.nc-outline-coffin:before{content:"\ec26"}.nc-outline-coins:before{content:"\ec25"}.nc-outline-collar:before{content:"\ec28"}.nc-outline-collection:before{content:"\ec27"}.nc-outline-color:before{content:"\ec2a"}.nc-outline-command:before{content:"\ec29"}.nc-outline-comment-add:before{content:"\ec2b"}.nc-outline-compare:before{content:"\ec2c"}.nc-outline-compass-04:before{content:"\ec2e"}.nc-outline-compass-05:before{content:"\ec2d"}.nc-outline-compass-06:before{content:"\ec2f"}.nc-outline-compass-2:before{content:"\ec30"}.nc-outline-compass-3:before{content:"\ec31"}.nc-outline-compass:before{content:"\ec32"}.nc-outline-components:before{content:"\ec33"}.nc-outline-computer-monitor:before{content:"\ec34"}.nc-outline-computer-old:before{content:"\ec35"}.nc-outline-computer-upload:before{content:"\ec36"}.nc-outline-computer:before{content:"\ec37"}.nc-outline-cone:before{content:"\ec38"}.nc-outline-connect:before{content:"\ec39"}.nc-outline-connection:before{content:"\ec3a"}.nc-outline-contact-86:before{content:"\ec3b"}.nc-outline-contact-87:before{content:"\ec3c"}.nc-outline-contact-88:before{content:"\ec3d"}.nc-outline-contacts-2:before{content:"\ec3e"}.nc-outline-contacts-44:before{content:"\ec3f"}.nc-outline-contacts-45:before{content:"\ec40"}.nc-outline-contacts:before{content:"\ec41"}.nc-outline-contrast-2:before{content:"\ec42"}.nc-outline-contrast:before{content:"\ec43"}.nc-outline-controller-2:before{content:"\ec44"}.nc-outline-controller-3:before{content:"\ec45"}.nc-outline-controller:before{content:"\ec46"}.nc-outline-conversion:before{content:"\ec47"}.nc-outline-cookies:before{content:"\ec48"}.nc-outline-copy-2:before{content:"\ec4a"}.nc-outline-copy:before{content:"\ec49"}.nc-outline-corn:before{content:"\ec4b"}.nc-outline-corner-down-round:before{content:"\ec4c"}.nc-outline-corner-down:before{content:"\ec4d"}.nc-outline-corner-left-down:before{content:"\ec4e"}.nc-outline-corner-left-round:before{content:"\ec50"}.nc-outline-corner-left:before{content:"\ec4f"}.nc-outline-corner-right-down:before{content:"\ec51"}.nc-outline-corner-right-round:before{content:"\ec52"}.nc-outline-corner-right:before{content:"\ec54"}.nc-outline-corner-up-left:before{content:"\ec53"}.nc-outline-corner-up-right:before{content:"\ec55"}.nc-outline-corner-up-round:before{content:"\ec56"}.nc-outline-corner-up:before{content:"\ec57"}.nc-outline-corset:before{content:"\ec58"}.nc-outline-countdown-34:before{content:"\ec59"}.nc-outline-countdown-35:before{content:"\ec5a"}.nc-outline-couple-gay:before{content:"\ec5b"}.nc-outline-couple-lesbian:before{content:"\ec5c"}.nc-outline-coupon:before{content:"\ec5d"}.nc-outline-course:before{content:"\ec5e"}.nc-outline-cow:before{content:"\ec5f"}.nc-outline-crab:before{content:"\ec60"}.nc-outline-cradle:before{content:"\ec62"}.nc-outline-credit-card-in:before{content:"\ec61"}.nc-outline-credit-card:before{content:"\ec64"}.nc-outline-credit-locked:before{content:"\ec63"}.nc-outline-crepe:before{content:"\ec66"}.nc-outline-cricket:before{content:"\ec65"}.nc-outline-croissant:before{content:"\ec67"}.nc-outline-crop:before{content:"\ec68"}.nc-outline-cross-down:before{content:"\ec69"}.nc-outline-cross-horizontal:before{content:"\ec6a"}.nc-outline-cross-left:before{content:"\ec6b"}.nc-outline-cross-right:before{content:"\ec6c"}.nc-outline-cross-up:before{content:"\ec6e"}.nc-outline-cross-vertical:before{content:"\ec6d"}.nc-outline-cross:before{content:"\ec6f"}.nc-outline-crosshair:before{content:"\ec70"}.nc-outline-crown:before{content:"\ec71"}.nc-outline-crumpet:before{content:"\ec72"}.nc-outline-cry-15:before{content:"\ec73"}.nc-outline-cry-57:before{content:"\ec74"}.nc-outline-css3:before{content:"\ec75"}.nc-outline-cupcake:before{content:"\ec76"}.nc-outline-currency-dollar:before{content:"\ec77"}.nc-outline-currency-euro:before{content:"\ec78"}.nc-outline-currency-exchange:before{content:"\ec79"}.nc-outline-currency-pound:before{content:"\ec7a"}.nc-outline-currency-yen:before{content:"\ec7b"}.nc-outline-cursor-48:before{content:"\ec7c"}.nc-outline-cursor-49:before{content:"\ec7e"}.nc-outline-cursor-add:before{content:"\ec7d"}.nc-outline-cursor-grab:before{content:"\ec7f"}.nc-outline-cursor-load:before{content:"\ec80"}.nc-outline-cursor-menu:before{content:"\ec81"}.nc-outline-cursor-not-allowed:before{content:"\ec82"}.nc-outline-cursor-pointer:before{content:"\ec83"}.nc-outline-cursor-text:before{content:"\ec84"}.nc-outline-curtain:before{content:"\ec85"}.nc-outline-curve-circuit:before{content:"\ec86"}.nc-outline-curve-directions:before{content:"\ec88"}.nc-outline-curve-split:before{content:"\ec87"}.nc-outline-curved-next:before{content:"\ec89"}.nc-outline-curved-previous:before{content:"\ec8a"}.nc-outline-customer-support:before{content:"\ec8b"}.nc-outline-cut:before{content:"\ec8c"}.nc-outline-cute:before{content:"\ec8d"}.nc-outline-cutlery-75:before{content:"\ec8e"}.nc-outline-cutlery-76:before{content:"\ec8f"}.nc-outline-cutlery-77:before{content:"\ec90"}.nc-outline-cutlery:before{content:"\ec91"}.nc-outline-cyclist:before{content:"\ec92"}.nc-outline-dart:before{content:"\ec93"}.nc-outline-dashboard-29:before{content:"\ec94"}.nc-outline-dashboard-30:before{content:"\ec95"}.nc-outline-dashboard-half:before{content:"\ec96"}.nc-outline-dashboard-level:before{content:"\ec97"}.nc-outline-database:before{content:"\ec98"}.nc-outline-dead-hand:before{content:"\ec9a"}.nc-outline-decoration:before{content:"\ec99"}.nc-outline-deer:before{content:"\ec9c"}.nc-outline-delete-28:before{content:"\ec9b"}.nc-outline-delete-30:before{content:"\ec9d"}.nc-outline-delete-49:before{content:"\ec9e"}.nc-outline-delete-50:before{content:"\ec9f"}.nc-outline-delivery-2:before{content:"\eca0"}.nc-outline-delivery-3:before{content:"\eca1"}.nc-outline-delivery-fast:before{content:"\eca2"}.nc-outline-delivery-time:before{content:"\eca3"}.nc-outline-delivery-track:before{content:"\eca4"}.nc-outline-delivery:before{content:"\eca5"}.nc-outline-design-system:before{content:"\eca6"}.nc-outline-design:before{content:"\eca7"}.nc-outline-desk-drawer:before{content:"\eca8"}.nc-outline-desk:before{content:"\eca9"}.nc-outline-desktop-screen:before{content:"\ecaa"}.nc-outline-desktop:before{content:"\ecab"}.nc-outline-detox:before{content:"\ecac"}.nc-outline-dev:before{content:"\ecad"}.nc-outline-device-connection:before{content:"\ecae"}.nc-outline-devil:before{content:"\ecaf"}.nc-outline-diag-bottom-left:before{content:"\ecb0"}.nc-outline-diag-bottom-right:before{content:"\ecb1"}.nc-outline-diag-top-left:before{content:"\ecb2"}.nc-outline-diag-top-right:before{content:"\ecb3"}.nc-outline-diamond:before{content:"\ecb4"}.nc-outline-dice:before{content:"\ecb6"}.nc-outline-diet-plan:before{content:"\ecb5"}.nc-outline-diet:before{content:"\ecb7"}.nc-outline-direction-53:before{content:"\ecb8"}.nc-outline-direction-56:before{content:"\ecb9"}.nc-outline-direction:before{content:"\ecba"}.nc-outline-directions:before{content:"\ecbb"}.nc-outline-disabled:before{content:"\ecbc"}.nc-outline-discount-2:before{content:"\ecbd"}.nc-outline-discount:before{content:"\ecbe"}.nc-outline-disgusted:before{content:"\ecc0"}.nc-outline-dish:before{content:"\ecbf"}.nc-outline-dishwasher:before{content:"\ecc1"}.nc-outline-disk-2:before{content:"\ecc2"}.nc-outline-disk-reader:before{content:"\ecc3"}.nc-outline-disk:before{content:"\ecc4"}.nc-outline-disperse:before{content:"\ecc6"}.nc-outline-distribute-horizontal:before{content:"\ecc5"}.nc-outline-distribute-vertical:before{content:"\ecc7"}.nc-outline-divider:before{content:"\ecc8"}.nc-outline-dna-27:before{content:"\ecc9"}.nc-outline-dna-38:before{content:"\ecca"}.nc-outline-dock-bottom:before{content:"\eccb"}.nc-outline-dock-left:before{content:"\eccc"}.nc-outline-dock-right:before{content:"\eccd"}.nc-outline-dock-top:before{content:"\ecce"}.nc-outline-dock:before{content:"\eccf"}.nc-outline-doctor:before{content:"\ecd0"}.nc-outline-dog-house:before{content:"\ecd1"}.nc-outline-dog:before{content:"\ecd2"}.nc-outline-donut:before{content:"\ecd3"}.nc-outline-door:before{content:"\ecd4"}.nc-outline-dots-05:before{content:"\ecd5"}.nc-outline-dots-06:before{content:"\ecd6"}.nc-outline-dots-07:before{content:"\ecd7"}.nc-outline-dots-download:before{content:"\ecd8"}.nc-outline-dots-upload:before{content:"\ecda"}.nc-outline-dots:before{content:"\ecd9"}.nc-outline-double-left:before{content:"\ecdb"}.nc-outline-double-right:before{content:"\ecdc"}.nc-outline-double-tap:before{content:"\ecdd"}.nc-outline-download-2:before{content:"\ecde"}.nc-outline-download-3:before{content:"\ecdf"}.nc-outline-download:before{content:"\ece0"}.nc-outline-drag-21:before{content:"\ece1"}.nc-outline-drag-31:before{content:"\ece2"}.nc-outline-drag-down:before{content:"\ece3"}.nc-outline-drag-left:before{content:"\ece4"}.nc-outline-drag-right:before{content:"\ece5"}.nc-outline-drag-up:before{content:"\ece6"}.nc-outline-drag:before{content:"\ece7"}.nc-outline-drawer-2:before{content:"\ece8"}.nc-outline-drawer:before{content:"\ece9"}.nc-outline-dress-man:before{content:"\ecea"}.nc-outline-dress-woman:before{content:"\eceb"}.nc-outline-drink-2:before{content:"\ecec"}.nc-outline-drink-list:before{content:"\eced"}.nc-outline-drink:before{content:"\ecee"}.nc-outline-drop-15:before{content:"\ecef"}.nc-outline-drop:before{content:"\ecf0"}.nc-outline-drops:before{content:"\ecf1"}.nc-outline-dumbbells:before{content:"\ecf2"}.nc-outline-eclipse:before{content:"\ecf3"}.nc-outline-edit-2:before{content:"\ecf4"}.nc-outline-edit-71:before{content:"\ecf5"}.nc-outline-edit-72:before{content:"\ecf6"}.nc-outline-edit-73:before{content:"\ecf7"}.nc-outline-edit-74:before{content:"\ecf8"}.nc-outline-edit-75:before{content:"\ecf9"}.nc-outline-edit-76:before{content:"\ecfa"}.nc-outline-edit-77:before{content:"\ecfb"}.nc-outline-edit-78:before{content:"\ecfc"}.nc-outline-edit-color:before{content:"\ecfd"}.nc-outline-edit-contrast-42:before{content:"\ecfe"}.nc-outline-edit-contrast-43:before{content:"\ecff"}.nc-outline-edit-saturation:before{content:"\ed00"}.nc-outline-edit:before{content:"\ed01"}.nc-outline-egg-38:before{content:"\ed02"}.nc-outline-egg-39:before{content:"\ed03"}.nc-outline-egg:before{content:"\ed04"}.nc-outline-eject:before{content:"\ed05"}.nc-outline-email-83:before{content:"\ed06"}.nc-outline-email-84:before{content:"\ed07"}.nc-outline-email-85:before{content:"\ed08"}.nc-outline-energy-drink-2:before{content:"\ed0a"}.nc-outline-energy-drink:before{content:"\ed09"}.nc-outline-energy-supplement:before{content:"\ed0b"}.nc-outline-energy:before{content:"\ed0c"}.nc-outline-engine-start:before{content:"\ed0d"}.nc-outline-engine:before{content:"\ed0e"}.nc-outline-enlarge-45:before{content:"\ed0f"}.nc-outline-enlarge-46:before{content:"\ed10"}.nc-outline-enlarge-57:before{content:"\ed12"}.nc-outline-enlarge-58:before{content:"\ed11"}.nc-outline-enlarge-59:before{content:"\ed13"}.nc-outline-enlarge-circle:before{content:"\ed14"}.nc-outline-enlarge-diagonal-43:before{content:"\ed15"}.nc-outline-enlarge-diagonal-44:before{content:"\ed16"}.nc-outline-enlarge-horizontal:before{content:"\ed17"}.nc-outline-enlarge-vertical:before{content:"\ed18"}.nc-outline-eraser-32:before{content:"\ed19"}.nc-outline-eraser-33:before{content:"\ed1a"}.nc-outline-eraser-46:before{content:"\ed1b"}.nc-outline-event-confirm:before{content:"\ed1c"}.nc-outline-event-create:before{content:"\ed1d"}.nc-outline-exchange:before{content:"\ed1e"}.nc-outline-exclamation:before{content:"\ed1f"}.nc-outline-explore-2:before{content:"\ed20"}.nc-outline-explore-user:before{content:"\ed21"}.nc-outline-explore:before{content:"\ed22"}.nc-outline-export:before{content:"\ed23"}.nc-outline-eye-17:before{content:"\ed24"}.nc-outline-eye-19:before{content:"\ed25"}.nc-outline-eye-ban-18:before{content:"\ed26"}.nc-outline-eye-ban-20:before{content:"\ed27"}.nc-outline-factory:before{content:"\ed28"}.nc-outline-fahrenheit:before{content:"\ed2a"}.nc-outline-family:before{content:"\ed29"}.nc-outline-fat-add:before{content:"\ed2b"}.nc-outline-fat-delete:before{content:"\ed2c"}.nc-outline-fat-remove:before{content:"\ed2e"}.nc-outline-fav-remove:before{content:"\ed2d"}.nc-outline-favourite-28:before{content:"\ed2f"}.nc-outline-favourite-31:before{content:"\ed30"}.nc-outline-favourite-add-29:before{content:"\ed31"}.nc-outline-favourite-add-32:before{content:"\ed32"}.nc-outline-favourite-remove-30:before{content:"\ed33"}.nc-outline-favourite-remove-33:before{content:"\ed34"}.nc-outline-fencing:before{content:"\ed36"}.nc-outline-file-add:before{content:"\ed35"}.nc-outline-file-delete:before{content:"\ed37"}.nc-outline-file-download-87:before{content:"\ed38"}.nc-outline-file-download-89:before{content:"\ed39"}.nc-outline-file-download-94:before{content:"\ed3a"}.nc-outline-file-upload-86:before{content:"\ed3b"}.nc-outline-file-upload-88:before{content:"\ed3c"}.nc-outline-file-upload-93:before{content:"\ed3d"}.nc-outline-filter-check:before{content:"\ed3e"}.nc-outline-filter-organization:before{content:"\ed3f"}.nc-outline-filter-remove:before{content:"\ed40"}.nc-outline-filter:before{content:"\ed41"}.nc-outline-fire:before{content:"\ed42"}.nc-outline-firewall:before{content:"\ed43"}.nc-outline-fish:before{content:"\ed44"}.nc-outline-fishbone:before{content:"\ed46"}.nc-outline-fishing:before{content:"\ed45"}.nc-outline-fist:before{content:"\ed47"}.nc-outline-fit-horizontal:before{content:"\ed48"}.nc-outline-fit-vertical:before{content:"\ed49"}.nc-outline-flag-complex:before{content:"\ed4a"}.nc-outline-flag-diagonal-33:before{content:"\ed4b"}.nc-outline-flag-diagonal-34:before{content:"\ed4c"}.nc-outline-flag-finish:before{content:"\ed4d"}.nc-outline-flag-points-31:before{content:"\ed4e"}.nc-outline-flag-points-32:before{content:"\ed50"}.nc-outline-flag-simple:before{content:"\ed4f"}.nc-outline-flag-triangle:before{content:"\ed51"}.nc-outline-flag:before{content:"\ed52"}.nc-outline-flame:before{content:"\ed53"}.nc-outline-flash-21:before{content:"\ed54"}.nc-outline-flash-24:before{content:"\ed55"}.nc-outline-flash-29:before{content:"\ed56"}.nc-outline-flash-auto-22:before{content:"\ed58"}.nc-outline-flash-auto-25:before{content:"\ed57"}.nc-outline-flash-off-23:before{content:"\ed59"}.nc-outline-flash-off-26:before{content:"\ed5a"}.nc-outline-flask-2:before{content:"\ed5b"}.nc-outline-flask:before{content:"\ed5c"}.nc-outline-flick-down:before{content:"\ed5d"}.nc-outline-flick-left:before{content:"\ed5e"}.nc-outline-flick-right:before{content:"\ed5f"}.nc-outline-flick-up:before{content:"\ed60"}.nc-outline-flip-horizontal:before{content:"\ed61"}.nc-outline-flip-vertical:before{content:"\ed62"}.nc-outline-flip:before{content:"\ed63"}.nc-outline-flower-05:before{content:"\ed64"}.nc-outline-flower-06:before{content:"\ed65"}.nc-outline-flower-07:before{content:"\ed66"}.nc-outline-focus-32:before{content:"\ed67"}.nc-outline-focus-38:before{content:"\ed68"}.nc-outline-focus-40:before{content:"\ed69"}.nc-outline-focus-circle:before{content:"\ed6a"}.nc-outline-focus:before{content:"\ed6c"}.nc-outline-fog:before{content:"\ed6b"}.nc-outline-folder-13:before{content:"\ed6d"}.nc-outline-folder-14:before{content:"\ed6e"}.nc-outline-folder-15:before{content:"\ed70"}.nc-outline-folder-16:before{content:"\ed6f"}.nc-outline-folder-17:before{content:"\ed71"}.nc-outline-folder-18:before{content:"\ed72"}.nc-outline-folder-19:before{content:"\ed73"}.nc-outline-folder-add:before{content:"\ed74"}.nc-outline-folder-audio:before{content:"\ed75"}.nc-outline-folder-bookmark:before{content:"\ed76"}.nc-outline-folder-chart-bar:before{content:"\ed78"}.nc-outline-folder-chart-pie:before{content:"\ed77"}.nc-outline-folder-check:before{content:"\ed79"}.nc-outline-folder-cloud:before{content:"\ed7a"}.nc-outline-folder-dev:before{content:"\ed7c"}.nc-outline-folder-download:before{content:"\ed7b"}.nc-outline-folder-edit:before{content:"\ed7d"}.nc-outline-folder-exclamation:before{content:"\ed7e"}.nc-outline-folder-gallery:before{content:"\ed7f"}.nc-outline-folder-heart:before{content:"\ed80"}.nc-outline-folder-image:before{content:"\ed81"}.nc-outline-folder-info:before{content:"\ed82"}.nc-outline-folder-link:before{content:"\ed83"}.nc-outline-folder-locked:before{content:"\ed84"}.nc-outline-folder-money:before{content:"\ed85"}.nc-outline-folder-music:before{content:"\ed86"}.nc-outline-folder-no-access:before{content:"\ed87"}.nc-outline-folder-play:before{content:"\ed88"}.nc-outline-folder-question:before{content:"\ed89"}.nc-outline-folder-refresh:before{content:"\ed8a"}.nc-outline-folder-remove:before{content:"\ed8b"}.nc-outline-folder-search:before{content:"\ed8c"}.nc-outline-folder-settings-81:before{content:"\ed8d"}.nc-outline-folder-settings-97:before{content:"\ed8e"}.nc-outline-folder-shared:before{content:"\ed8f"}.nc-outline-folder-star:before{content:"\ed90"}.nc-outline-folder-time:before{content:"\ed91"}.nc-outline-folder-upload:before{content:"\ed92"}.nc-outline-folder-user:before{content:"\ed93"}.nc-outline-folder-vector:before{content:"\ed94"}.nc-outline-food-dog:before{content:"\ed95"}.nc-outline-food-scale:before{content:"\ed96"}.nc-outline-food:before{content:"\ed97"}.nc-outline-football-headguard:before{content:"\ed98"}.nc-outline-forecast:before{content:"\ed99"}.nc-outline-forest:before{content:"\ed9a"}.nc-outline-fork-round:before{content:"\ed9c"}.nc-outline-fork:before{content:"\ed9b"}.nc-outline-form:before{content:"\ed9e"}.nc-outline-format-left:before{content:"\ed9d"}.nc-outline-format-right:before{content:"\ed9f"}.nc-outline-forward:before{content:"\eda0"}.nc-outline-frame-12:before{content:"\eda1"}.nc-outline-frame-41:before{content:"\eda2"}.nc-outline-frame:before{content:"\eda3"}.nc-outline-frankenstein:before{content:"\eda4"}.nc-outline-fridge:before{content:"\eda6"}.nc-outline-fuel-2:before{content:"\eda5"}.nc-outline-fuel-electric:before{content:"\eda7"}.nc-outline-fuel:before{content:"\eda8"}.nc-outline-full-screen:before{content:"\eda9"}.nc-outline-fullscreen-70:before{content:"\edaa"}.nc-outline-fullscreen-71:before{content:"\edab"}.nc-outline-fullscreen-76:before{content:"\edac"}.nc-outline-fullscreen-77:before{content:"\edae"}.nc-outline-fullscreen-double-74:before{content:"\edad"}.nc-outline-fullscreen-double-75:before{content:"\edaf"}.nc-outline-fullscreen-split-72:before{content:"\edb0"}.nc-outline-fullscreen-split-73:before{content:"\edb1"}.nc-outline-fullsize:before{content:"\edb2"}.nc-outline-funnel-39:before{content:"\edb3"}.nc-outline-funnel-40:before{content:"\edb4"}.nc-outline-funnel-41:before{content:"\edb5"}.nc-outline-gallery:before{content:"\edb6"}.nc-outline-gantt:before{content:"\edb7"}.nc-outline-garlic:before{content:"\edb8"}.nc-outline-ghost-2:before{content:"\edb9"}.nc-outline-ghost:before{content:"\edba"}.nc-outline-gift-2:before{content:"\edbb"}.nc-outline-gift-exchange:before{content:"\edbc"}.nc-outline-gift:before{content:"\edbd"}.nc-outline-git-commit:before{content:"\edbe"}.nc-outline-glass-water:before{content:"\edbf"}.nc-outline-glass:before{content:"\edc0"}.nc-outline-glasses-2:before{content:"\edc2"}.nc-outline-glasses:before{content:"\edc1"}.nc-outline-globe-2:before{content:"\edc3"}.nc-outline-globe:before{content:"\edc4"}.nc-outline-glove:before{content:"\edc5"}.nc-outline-gloves:before{content:"\edc6"}.nc-outline-goal-64:before{content:"\edc7"}.nc-outline-goal-65:before{content:"\edc8"}.nc-outline-gold:before{content:"\edc9"}.nc-outline-golf:before{content:"\edca"}.nc-outline-gps:before{content:"\edcb"}.nc-outline-grab:before{content:"\edcc"}.nc-outline-gradient:before{content:"\edcd"}.nc-outline-grammar-check:before{content:"\edce"}.nc-outline-grape:before{content:"\edcf"}.nc-outline-grave:before{content:"\edd0"}.nc-outline-grid-45:before{content:"\edd1"}.nc-outline-grid-46:before{content:"\edd2"}.nc-outline-grid-48:before{content:"\edd3"}.nc-outline-grid-49:before{content:"\edd4"}.nc-outline-grid-50:before{content:"\edd5"}.nc-outline-grid-square:before{content:"\edd6"}.nc-outline-grid-system:before{content:"\edd8"}.nc-outline-grid:before{content:"\edd7"}.nc-outline-group:before{content:"\edd9"}.nc-outline-guitar:before{content:"\edda"}.nc-outline-hammer:before{content:"\eddb"}.nc-outline-hand-card:before{content:"\eddc"}.nc-outline-handout:before{content:"\edde"}.nc-outline-handshake:before{content:"\eddd"}.nc-outline-hanger-clothes:before{content:"\eddf"}.nc-outline-hanger:before{content:"\ede0"}.nc-outline-hannibal:before{content:"\ede2"}.nc-outline-happy-sun:before{content:"\ede1"}.nc-outline-hat-2:before{content:"\ede3"}.nc-outline-hat-3:before{content:"\ede4"}.nc-outline-hat-top:before{content:"\ede5"}.nc-outline-hat:before{content:"\ede6"}.nc-outline-hazelnut:before{content:"\ede7"}.nc-outline-hdmi:before{content:"\ede8"}.nc-outline-headphone:before{content:"\ede9"}.nc-outline-headphones-2:before{content:"\edea"}.nc-outline-headphones-mic:before{content:"\edec"}.nc-outline-headphones:before{content:"\edeb"}.nc-outline-headset:before{content:"\eded"}.nc-outline-heart-2:before{content:"\edee"}.nc-outline-heart-add:before{content:"\edef"}.nc-outline-heart-remove:before{content:"\edf0"}.nc-outline-heart:before{content:"\edf2"}.nc-outline-heartbeat:before{content:"\edf1"}.nc-outline-heater:before{content:"\edf3"}.nc-outline-height:before{content:"\edf4"}.nc-outline-helicopter:before{content:"\edf5"}.nc-outline-helmet-2:before{content:"\edf6"}.nc-outline-helmet:before{content:"\edf7"}.nc-outline-hierarchy-53:before{content:"\edf8"}.nc-outline-hierarchy-54:before{content:"\edfa"}.nc-outline-hierarchy-55:before{content:"\edf9"}.nc-outline-hierarchy-56:before{content:"\edfb"}.nc-outline-hit-down:before{content:"\edfc"}.nc-outline-hit-left:before{content:"\edfd"}.nc-outline-hit-right:before{content:"\edfe"}.nc-outline-hit-up:before{content:"\edff"}.nc-outline-hob:before{content:"\ee00"}.nc-outline-hockey:before{content:"\ee01"}.nc-outline-hold:before{content:"\ee02"}.nc-outline-home-2:before{content:"\ee03"}.nc-outline-home-51:before{content:"\ee04"}.nc-outline-home-52:before{content:"\ee05"}.nc-outline-home-minimal:before{content:"\ee06"}.nc-outline-home-search:before{content:"\ee07"}.nc-outline-home-simple:before{content:"\ee08"}.nc-outline-home:before{content:"\ee09"}.nc-outline-honey:before{content:"\ee0a"}.nc-outline-hoodie:before{content:"\ee0b"}.nc-outline-hospital-32:before{content:"\ee0c"}.nc-outline-hospital-33:before{content:"\ee0d"}.nc-outline-hospital-34:before{content:"\ee0e"}.nc-outline-hot-dog:before{content:"\ee0f"}.nc-outline-hotel-bell:before{content:"\ee10"}.nc-outline-hotel-symbol:before{content:"\ee11"}.nc-outline-hotel:before{content:"\ee12"}.nc-outline-hourglass:before{content:"\ee13"}.nc-outline-html5:before{content:"\ee14"}.nc-outline-humidity-26:before{content:"\ee15"}.nc-outline-humidity-52:before{content:"\ee16"}.nc-outline-hurricane-44:before{content:"\ee17"}.nc-outline-hurricane-45:before{content:"\ee18"}.nc-outline-hut:before{content:"\ee19"}.nc-outline-hybrid:before{content:"\ee1a"}.nc-outline-ice-cream-22:before{content:"\ee1b"}.nc-outline-ice-cream-72:before{content:"\ee1c"}.nc-outline-ice-cream:before{content:"\ee1d"}.nc-outline-igloo:before{content:"\ee1e"}.nc-outline-image-01:before{content:"\ee1f"}.nc-outline-image-02:before{content:"\ee20"}.nc-outline-image-05:before{content:"\ee21"}.nc-outline-image-2:before{content:"\ee22"}.nc-outline-image-3:before{content:"\ee23"}.nc-outline-image-add:before{content:"\ee24"}.nc-outline-image-delete:before{content:"\ee25"}.nc-outline-image-location:before{content:"\ee26"}.nc-outline-image:before{content:"\ee27"}.nc-outline-infinite:before{content:"\ee28"}.nc-outline-info:before{content:"\ee29"}.nc-outline-input-12:before{content:"\ee2a"}.nc-outline-input-21:before{content:"\ee2c"}.nc-outline-intestine:before{content:"\ee2b"}.nc-outline-invert:before{content:"\ee2d"}.nc-outline-iron-2:before{content:"\ee2e"}.nc-outline-iron-dont:before{content:"\ee2f"}.nc-outline-iron:before{content:"\ee30"}.nc-outline-istanbul:before{content:"\ee31"}.nc-outline-italic:before{content:"\ee32"}.nc-outline-jam:before{content:"\ee34"}.nc-outline-jeans-41:before{content:"\ee33"}.nc-outline-jeans-43:before{content:"\ee35"}.nc-outline-jeans-pocket:before{content:"\ee36"}.nc-outline-jelly:before{content:"\ee37"}.nc-outline-jellyfish:before{content:"\ee38"}.nc-outline-journey-04:before{content:"\ee39"}.nc-outline-journey-05:before{content:"\ee3a"}.nc-outline-journey-06:before{content:"\ee3b"}.nc-outline-journey-07:before{content:"\ee3c"}.nc-outline-journey-08:before{content:"\ee3d"}.nc-outline-juice:before{content:"\ee3e"}.nc-outline-kettle:before{content:"\ee3f"}.nc-outline-kettlebell:before{content:"\ee40"}.nc-outline-key-25:before{content:"\ee41"}.nc-outline-key-26:before{content:"\ee42"}.nc-outline-keyboard-hide:before{content:"\ee43"}.nc-outline-keyboard-mouse:before{content:"\ee44"}.nc-outline-keyboard-wifi:before{content:"\ee45"}.nc-outline-keyboard-wireless:before{content:"\ee46"}.nc-outline-keyboard:before{content:"\ee47"}.nc-outline-kid-2:before{content:"\ee48"}.nc-outline-kid:before{content:"\ee49"}.nc-outline-kiss:before{content:"\ee4a"}.nc-outline-kitchen-fan:before{content:"\ee4b"}.nc-outline-kitchen:before{content:"\ee4c"}.nc-outline-kiwi:before{content:"\ee4d"}.nc-outline-knife:before{content:"\ee4e"}.nc-outline-knob:before{content:"\ee4f"}.nc-outline-l-add:before{content:"\ee50"}.nc-outline-l-check:before{content:"\ee51"}.nc-outline-l-circle:before{content:"\ee52"}.nc-outline-l-circles:before{content:"\ee53"}.nc-outline-l-location:before{content:"\ee54"}.nc-outline-l-remove:before{content:"\ee56"}.nc-outline-l-search:before{content:"\ee55"}.nc-outline-l-security:before{content:"\ee57"}.nc-outline-l-settings:before{content:"\ee58"}.nc-outline-l-sync:before{content:"\ee59"}.nc-outline-l-system-update:before{content:"\ee5a"}.nc-outline-lab:before{content:"\ee5b"}.nc-outline-lamp-2:before{content:"\ee5c"}.nc-outline-lamp-3:before{content:"\ee5d"}.nc-outline-lamp-floor:before{content:"\ee5e"}.nc-outline-lamp:before{content:"\ee60"}.nc-outline-language:before{content:"\ee5f"}.nc-outline-laptop-1:before{content:"\ee62"}.nc-outline-laptop-2:before{content:"\ee61"}.nc-outline-laptop-71:before{content:"\ee64"}.nc-outline-laptop-72:before{content:"\ee63"}.nc-outline-laptop:before{content:"\ee65"}.nc-outline-laugh-17:before{content:"\ee66"}.nc-outline-laugh-35:before{content:"\ee68"}.nc-outline-launch-11:before{content:"\ee67"}.nc-outline-launch-47:before{content:"\ee69"}.nc-outline-law:before{content:"\ee6a"}.nc-outline-layers-2:before{content:"\ee6b"}.nc-outline-layers-3:before{content:"\ee6c"}.nc-outline-layers:before{content:"\ee6d"}.nc-outline-layout-11:before{content:"\ee6e"}.nc-outline-layout-25:before{content:"\ee6f"}.nc-outline-leaf-36:before{content:"\ee70"}.nc-outline-leaf-38:before{content:"\ee71"}.nc-outline-leaf-80:before{content:"\ee72"}.nc-outline-leaf-81:before{content:"\ee73"}.nc-outline-leaf-edit:before{content:"\ee74"}.nc-outline-lemon-slice:before{content:"\ee76"}.nc-outline-lemon:before{content:"\ee75"}.nc-outline-lens-31:before{content:"\ee77"}.nc-outline-lens-56:before{content:"\ee78"}.nc-outline-library:before{content:"\ee79"}.nc-outline-light-2:before{content:"\ee7a"}.nc-outline-light-3:before{content:"\ee7b"}.nc-outline-light-traffic:before{content:"\ee7c"}.nc-outline-light:before{content:"\ee7e"}.nc-outline-lighter:before{content:"\ee7d"}.nc-outline-lighthouse:before{content:"\ee7f"}.nc-outline-like-2:before{content:"\ee80"}.nc-outline-like-no:before{content:"\ee81"}.nc-outline-like:before{content:"\ee82"}.nc-outline-line-height:before{content:"\ee83"}.nc-outline-lines:before{content:"\ee84"}.nc-outline-link-2:before{content:"\ee85"}.nc-outline-link-66:before{content:"\ee86"}.nc-outline-link-67:before{content:"\ee87"}.nc-outline-link-68:before{content:"\ee88"}.nc-outline-link-69:before{content:"\ee89"}.nc-outline-link-71:before{content:"\ee8a"}.nc-outline-link-72:before{content:"\ee8b"}.nc-outline-link-broken-70:before{content:"\ee8c"}.nc-outline-link-broken-73:before{content:"\ee8d"}.nc-outline-link:before{content:"\ee8e"}.nc-outline-list-bullet:before{content:"\ee8f"}.nc-outline-list-numbers:before{content:"\ee90"}.nc-outline-list:before{content:"\ee91"}.nc-outline-lobster:before{content:"\ee92"}.nc-outline-lock-circle-open:before{content:"\ee93"}.nc-outline-lock-circle:before{content:"\ee94"}.nc-outline-lock-landscape:before{content:"\ee95"}.nc-outline-lock-open:before{content:"\ee96"}.nc-outline-lock-portrait:before{content:"\ee97"}.nc-outline-lock:before{content:"\ee98"}.nc-outline-locked:before{content:"\ee99"}.nc-outline-log-in:before{content:"\ee9a"}.nc-outline-log-out-2:before{content:"\ee9b"}.nc-outline-log-out:before{content:"\ee9c"}.nc-outline-logout:before{content:"\ee9d"}.nc-outline-lollipop:before{content:"\ee9e"}.nc-outline-london:before{content:"\ee9f"}.nc-outline-long-sleeve:before{content:"\eea0"}.nc-outline-loop-30:before{content:"\eea1"}.nc-outline-loop-34:before{content:"\eea2"}.nc-outline-loop-82:before{content:"\eea3"}.nc-outline-loop-83:before{content:"\eea4"}.nc-outline-loop:before{content:"\eea5"}.nc-outline-luggage:before{content:"\eea6"}.nc-outline-lungs:before{content:"\eea8"}.nc-outline-m-add:before{content:"\eea7"}.nc-outline-m-check:before{content:"\eea9"}.nc-outline-m-delete:before{content:"\eeaa"}.nc-outline-m-edit:before{content:"\eeab"}.nc-outline-m-heart:before{content:"\eeac"}.nc-outline-m-location:before{content:"\eeae"}.nc-outline-m-remove:before{content:"\eead"}.nc-outline-m-search:before{content:"\eeaf"}.nc-outline-m-security:before{content:"\eeb0"}.nc-outline-m-settings:before{content:"\eeb2"}.nc-outline-m-share:before{content:"\eeb1"}.nc-outline-m-star:before{content:"\eeb3"}.nc-outline-m-sync:before{content:"\eeb4"}.nc-outline-m-time:before{content:"\eeb6"}.nc-outline-m-update:before{content:"\eeb5"}.nc-outline-macro:before{content:"\eeb7"}.nc-outline-mad-12:before{content:"\eeb8"}.nc-outline-mad-58:before{content:"\eeb9"}.nc-outline-magnet:before{content:"\eeba"}.nc-outline-makeup:before{content:"\eebb"}.nc-outline-malicious:before{content:"\eebc"}.nc-outline-man-20:before{content:"\eebd"}.nc-outline-man-23:before{content:"\eebe"}.nc-outline-man-down:before{content:"\eebf"}.nc-outline-man-glasses:before{content:"\eec0"}.nc-outline-man-up:before{content:"\eec1"}.nc-outline-man:before{content:"\eec2"}.nc-outline-manga-62:before{content:"\eec3"}.nc-outline-manga-63:before{content:"\eec4"}.nc-outline-map-big:before{content:"\eec5"}.nc-outline-map-compass:before{content:"\eec6"}.nc-outline-map-gps:before{content:"\eec7"}.nc-outline-map-marker:before{content:"\eec8"}.nc-outline-map-pin:before{content:"\eec9"}.nc-outline-map:before{content:"\eeca"}.nc-outline-margin-left:before{content:"\eecb"}.nc-outline-margin-right:before{content:"\eecc"}.nc-outline-marker-2:before{content:"\eecd"}.nc-outline-marker-3:before{content:"\eece"}.nc-outline-marker:before{content:"\eecf"}.nc-outline-market-music:before{content:"\eed0"}.nc-outline-market-play:before{content:"\eed1"}.nc-outline-mask-oval:before{content:"\eed2"}.nc-outline-mask-rect:before{content:"\eed3"}.nc-outline-matches:before{content:"\eed4"}.nc-outline-math:before{content:"\eed5"}.nc-outline-measure-02:before{content:"\eed6"}.nc-outline-measure-17:before{content:"\eed7"}.nc-outline-measure-big:before{content:"\eed8"}.nc-outline-measuring-cup:before{content:"\eed9"}.nc-outline-meat-spit:before{content:"\eeda"}.nc-outline-meeting:before{content:"\eedb"}.nc-outline-menu-34:before{content:"\eedc"}.nc-outline-menu-35:before{content:"\eedd"}.nc-outline-menu-bold:before{content:"\eede"}.nc-outline-menu-dots:before{content:"\eedf"}.nc-outline-menu-left:before{content:"\eee0"}.nc-outline-menu-right:before{content:"\eee1"}.nc-outline-menu-square:before{content:"\eee2"}.nc-outline-menu:before{content:"\eee3"}.nc-outline-merge-2:before{content:"\eee4"}.nc-outline-merge-round:before{content:"\eee5"}.nc-outline-merge:before{content:"\eee6"}.nc-outline-message:before{content:"\eee7"}.nc-outline-metrics:before{content:"\eee8"}.nc-outline-mic-2:before{content:"\eee9"}.nc-outline-mic:before{content:"\eeea"}.nc-outline-mickey-mouse:before{content:"\eeeb"}.nc-outline-microscope:before{content:"\eeec"}.nc-outline-microsoft:before{content:"\eeed"}.nc-outline-microwave:before{content:"\eeee"}.nc-outline-milk:before{content:"\eeef"}.nc-outline-minimal-down:before{content:"\eef0"}.nc-outline-minimal-left:before{content:"\eef1"}.nc-outline-minimal-right:before{content:"\eef2"}.nc-outline-minimal-up:before{content:"\eef4"}.nc-outline-mirror-2:before{content:"\eef3"}.nc-outline-mirror:before{content:"\eef5"}.nc-outline-mistletoe:before{content:"\eef6"}.nc-outline-mixer:before{content:"\eef7"}.nc-outline-mobile-button:before{content:"\eef8"}.nc-outline-mobile-camera:before{content:"\eef9"}.nc-outline-mobile-card:before{content:"\eefa"}.nc-outline-mobile-contact:before{content:"\eefb"}.nc-outline-mobile-design:before{content:"\eefc"}.nc-outline-mobile-dev:before{content:"\eefd"}.nc-outline-mobile-landscape:before{content:"\eefe"}.nc-outline-mobile-recharger-08:before{content:"\eeff"}.nc-outline-mobile-recharger-09:before{content:"\ef00"}.nc-outline-mobile-toolbar:before{content:"\ef01"}.nc-outline-mobile:before{content:"\ef02"}.nc-outline-moka:before{content:"\ef03"}.nc-outline-molecule-39:before{content:"\ef04"}.nc-outline-molecule-40:before{content:"\ef05"}.nc-outline-molecule:before{content:"\ef06"}.nc-outline-money-11:before{content:"\ef08"}.nc-outline-money-12:before{content:"\ef07"}.nc-outline-money-13:before{content:"\ef0a"}.nc-outline-money-bag:before{content:"\ef09"}.nc-outline-money-coins:before{content:"\ef0b"}.nc-outline-money-growth:before{content:"\ef0c"}.nc-outline-money-time:before{content:"\ef0d"}.nc-outline-money:before{content:"\ef0e"}.nc-outline-monster:before{content:"\ef0f"}.nc-outline-moon-cloud-drop:before{content:"\ef10"}.nc-outline-moon-cloud-fog:before{content:"\ef11"}.nc-outline-moon-cloud-hail:before{content:"\ef12"}.nc-outline-moon-cloud-light:before{content:"\ef13"}.nc-outline-moon-cloud-rain:before{content:"\ef14"}.nc-outline-moon-cloud-snow-61:before{content:"\ef15"}.nc-outline-moon-cloud-snow-62:before{content:"\ef16"}.nc-outline-moon-fog:before{content:"\ef17"}.nc-outline-moon-full:before{content:"\ef18"}.nc-outline-moon-stars:before{content:"\ef19"}.nc-outline-moon:before{content:"\ef1a"}.nc-outline-mosque:before{content:"\ef1b"}.nc-outline-moto:before{content:"\ef1c"}.nc-outline-mountain:before{content:"\ef1d"}.nc-outline-mouse-08:before{content:"\ef1e"}.nc-outline-mouse-09:before{content:"\ef1f"}.nc-outline-mouse-10:before{content:"\ef20"}.nc-outline-mouse:before{content:"\ef21"}.nc-outline-move-05:before{content:"\ef22"}.nc-outline-move-06:before{content:"\ef23"}.nc-outline-move-92:before{content:"\ef24"}.nc-outline-move-down-2:before{content:"\ef26"}.nc-outline-move-down-right:before{content:"\ef25"}.nc-outline-move-down:before{content:"\ef27"}.nc-outline-move-left:before{content:"\ef28"}.nc-outline-move-right:before{content:"\ef29"}.nc-outline-move-up-2:before{content:"\ef2a"}.nc-outline-move-up-left:before{content:"\ef2b"}.nc-outline-move-up:before{content:"\ef2c"}.nc-outline-movie-61:before{content:"\ef2d"}.nc-outline-movie-62:before{content:"\ef2e"}.nc-outline-muffin:before{content:"\ef2f"}.nc-outline-mug:before{content:"\ef30"}.nc-outline-multiple-11:before{content:"\ef31"}.nc-outline-multiple-19:before{content:"\ef32"}.nc-outline-multiple:before{content:"\ef33"}.nc-outline-mushroom:before{content:"\ef34"}.nc-outline-music-2:before{content:"\ef35"}.nc-outline-music-album:before{content:"\ef36"}.nc-outline-music-cloud:before{content:"\ef38"}.nc-outline-music:before{content:"\ef37"}.nc-outline-navigation:before{content:"\ef39"}.nc-outline-needle:before{content:"\ef3a"}.nc-outline-nerd-22:before{content:"\ef3b"}.nc-outline-nerd-23:before{content:"\ef3c"}.nc-outline-net:before{content:"\ef3d"}.nc-outline-network:before{content:"\ef3e"}.nc-outline-new:before{content:"\ef3f"}.nc-outline-newsletter-dev:before{content:"\ef40"}.nc-outline-newsletter:before{content:"\ef41"}.nc-outline-night:before{content:"\ef42"}.nc-outline-ninja:before{content:"\ef43"}.nc-outline-no-access:before{content:"\ef44"}.nc-outline-no-words:before{content:"\ef45"}.nc-outline-node:before{content:"\ef46"}.nc-outline-note-03:before{content:"\ef47"}.nc-outline-note-04:before{content:"\ef48"}.nc-outline-note-code:before{content:"\ef49"}.nc-outline-notebook-2:before{content:"\ef4a"}.nc-outline-notebook:before{content:"\ef4b"}.nc-outline-notepad:before{content:"\ef4c"}.nc-outline-notes:before{content:"\ef4d"}.nc-outline-notification-69:before{content:"\ef4e"}.nc-outline-notification-70:before{content:"\ef4f"}.nc-outline-nurse:before{content:"\ef50"}.nc-outline-nutrition:before{content:"\ef51"}.nc-outline-ny:before{content:"\ef52"}.nc-outline-octopus:before{content:"\ef53"}.nc-outline-oil:before{content:"\ef54"}.nc-outline-onion:before{content:"\ef55"}.nc-outline-open-in-browser:before{content:"\ef56"}.nc-outline-opening-times:before{content:"\ef57"}.nc-outline-orange:before{content:"\ef58"}.nc-outline-organic-2:before{content:"\ef59"}.nc-outline-organic:before{content:"\ef5a"}.nc-outline-oven:before{content:"\ef5b"}.nc-outline-owl:before{content:"\ef5c"}.nc-outline-p-add:before{content:"\ef5d"}.nc-outline-p-check:before{content:"\ef5e"}.nc-outline-p-edit:before{content:"\ef5f"}.nc-outline-p-heart:before{content:"\ef60"}.nc-outline-p-location:before{content:"\ef61"}.nc-outline-p-remove:before{content:"\ef62"}.nc-outline-p-search:before{content:"\ef63"}.nc-outline-p-settings:before{content:"\ef64"}.nc-outline-p-share:before{content:"\ef65"}.nc-outline-p-sync:before{content:"\ef66"}.nc-outline-p-system-update:before{content:"\ef67"}.nc-outline-p-time:before{content:"\ef68"}.nc-outline-paint-16:before{content:"\ef69"}.nc-outline-paint-37:before{content:"\ef6a"}.nc-outline-paint-38:before{content:"\ef6b"}.nc-outline-paint-brush:before{content:"\ef6c"}.nc-outline-paint-bucket-39:before{content:"\ef6d"}.nc-outline-paint-bucket-40:before{content:"\ef6e"}.nc-outline-pajamas:before{content:"\ef70"}.nc-outline-palette:before{content:"\ef6f"}.nc-outline-pan:before{content:"\ef71"}.nc-outline-pancake:before{content:"\ef72"}.nc-outline-panda:before{content:"\ef73"}.nc-outline-panel:before{content:"\ef74"}.nc-outline-pantone:before{content:"\ef75"}.nc-outline-paper-2:before{content:"\ef76"}.nc-outline-paper-design:before{content:"\ef77"}.nc-outline-paper-dev:before{content:"\ef78"}.nc-outline-paper-diploma:before{content:"\ef79"}.nc-outline-paper:before{content:"\ef7a"}.nc-outline-paragraph:before{content:"\ef7b"}.nc-outline-parent:before{content:"\ef7c"}.nc-outline-paris-tower:before{content:"\ef7e"}.nc-outline-parking-sensors:before{content:"\ef7d"}.nc-outline-parking:before{content:"\ef80"}.nc-outline-parrot:before{content:"\ef7f"}.nc-outline-passport:before{content:"\ef81"}.nc-outline-pasta:before{content:"\ef82"}.nc-outline-patch-19:before{content:"\ef83"}.nc-outline-patch-34:before{content:"\ef84"}.nc-outline-patch:before{content:"\ef85"}.nc-outline-path-exclude:before{content:"\ef86"}.nc-outline-path-intersect:before{content:"\ef87"}.nc-outline-path-minus:before{content:"\ef88"}.nc-outline-path-unite:before{content:"\ef8a"}.nc-outline-paw:before{content:"\ef89"}.nc-outline-payment:before{content:"\ef8b"}.nc-outline-pci-card:before{content:"\ef8c"}.nc-outline-peanut:before{content:"\ef8d"}.nc-outline-pear:before{content:"\ef8e"}.nc-outline-pen-01:before{content:"\ef8f"}.nc-outline-pen-23:before{content:"\ef90"}.nc-outline-pen-tool:before{content:"\ef92"}.nc-outline-pencil-47:before{content:"\ef91"}.nc-outline-pencil:before{content:"\ef93"}.nc-outline-penguin:before{content:"\ef94"}.nc-outline-pepper:before{content:"\ef96"}.nc-outline-percentage-38:before{content:"\ef95"}.nc-outline-percentage-39:before{content:"\ef97"}.nc-outline-phone-2:before{content:"\ef98"}.nc-outline-phone-3:before{content:"\ef99"}.nc-outline-phone-call-end:before{content:"\ef9a"}.nc-outline-phone-call:before{content:"\ef9b"}.nc-outline-phone:before{content:"\ef9c"}.nc-outline-photo-editor:before{content:"\ef9d"}.nc-outline-piano:before{content:"\ef9e"}.nc-outline-pickaxe:before{content:"\ef9f"}.nc-outline-pickle:before{content:"\efa0"}.nc-outline-picnic-basket:before{content:"\efa1"}.nc-outline-picture:before{content:"\efa2"}.nc-outline-pig-2:before{content:"\efa3"}.nc-outline-pig:before{content:"\efa4"}.nc-outline-pill-42:before{content:"\efa5"}.nc-outline-pill-43:before{content:"\efa6"}.nc-outline-pill-container-44:before{content:"\efa7"}.nc-outline-pill-container-47:before{content:"\efa8"}.nc-outline-pin-2:before{content:"\efa9"}.nc-outline-pin-3:before{content:"\efaa"}.nc-outline-pin-4:before{content:"\efab"}.nc-outline-pin-add-2:before{content:"\efac"}.nc-outline-pin-add:before{content:"\efad"}.nc-outline-pin-check:before{content:"\efae"}.nc-outline-pin-copy:before{content:"\efaf"}.nc-outline-pin-delete:before{content:"\efb0"}.nc-outline-pin-edit:before{content:"\efb2"}.nc-outline-pin-heart:before{content:"\efb1"}.nc-outline-pin-remove-2:before{content:"\efb3"}.nc-outline-pin-remove:before{content:"\efb4"}.nc-outline-pin-search:before{content:"\efb5"}.nc-outline-pin-security:before{content:"\efb6"}.nc-outline-pin-settings:before{content:"\efb7"}.nc-outline-pin-share:before{content:"\efb8"}.nc-outline-pin-star:before{content:"\efb9"}.nc-outline-pin-sync:before{content:"\efba"}.nc-outline-pin-time:before{content:"\efbb"}.nc-outline-pin-user:before{content:"\efbc"}.nc-outline-pin:before{content:"\efbd"}.nc-outline-pinch:before{content:"\efbe"}.nc-outline-pineapple:before{content:"\efbf"}.nc-outline-ping-pong:before{content:"\efc0"}.nc-outline-pins:before{content:"\efc2"}.nc-outline-pipe:before{content:"\efc1"}.nc-outline-pirate:before{content:"\efc3"}.nc-outline-pizza-slice:before{content:"\efc4"}.nc-outline-pizza:before{content:"\efc5"}.nc-outline-plane-17:before{content:"\efc6"}.nc-outline-plane-18:before{content:"\efc8"}.nc-outline-planet:before{content:"\efc7"}.nc-outline-plant-ground:before{content:"\efc9"}.nc-outline-plant-vase:before{content:"\efca"}.nc-outline-plate:before{content:"\efcc"}.nc-outline-play-68:before{content:"\efcb"}.nc-outline-play-69:before{content:"\efcd"}.nc-outline-play:before{content:"\efce"}.nc-outline-player-19:before{content:"\efcf"}.nc-outline-player-48:before{content:"\efd0"}.nc-outline-player:before{content:"\efd1"}.nc-outline-playlist:before{content:"\efd2"}.nc-outline-plug:before{content:"\efd4"}.nc-outline-podium-trophy:before{content:"\efd3"}.nc-outline-podium:before{content:"\efd5"}.nc-outline-point-a:before{content:"\efd6"}.nc-outline-point-b:before{content:"\efd7"}.nc-outline-polaroid-add:before{content:"\efd8"}.nc-outline-polaroid-delete:before{content:"\efd9"}.nc-outline-polaroid-multiple:before{content:"\efda"}.nc-outline-polaroid-user:before{content:"\efdb"}.nc-outline-polaroid:before{content:"\efdc"}.nc-outline-police:before{content:"\efdd"}.nc-outline-pool:before{content:"\efde"}.nc-outline-poop:before{content:"\efdf"}.nc-outline-popcorn:before{content:"\efe0"}.nc-outline-pos:before{content:"\efe1"}.nc-outline-position-marker:before{content:"\efe2"}.nc-outline-position-pin:before{content:"\efe3"}.nc-outline-position-user:before{content:"\efe4"}.nc-outline-position:before{content:"\efe5"}.nc-outline-pot:before{content:"\efe6"}.nc-outline-potato:before{content:"\efe7"}.nc-outline-power-level:before{content:"\efe8"}.nc-outline-preferences-circle-rotate:before{content:"\efea"}.nc-outline-preferences-circle:before{content:"\efe9"}.nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}.nc-outline-preferences-container-circle:before{content:"\efec"}.nc-outline-preferences-container-rotate:before{content:"\efed"}.nc-outline-preferences-container:before{content:"\efee"}.nc-outline-preferences-rotate:before{content:"\efef"}.nc-outline-preferences:before{content:"\eff0"}.nc-outline-print:before{content:"\eff1"}.nc-outline-printer:before{content:"\eff2"}.nc-outline-priority-high:before{content:"\eff4"}.nc-outline-priority-low:before{content:"\eff3"}.nc-outline-progress:before{content:"\eff5"}.nc-outline-prosciutto:before{content:"\eff6"}.nc-outline-prototype:before{content:"\eff7"}.nc-outline-pulse-chart:before{content:"\eff8"}.nc-outline-pulse-phone:before{content:"\eff9"}.nc-outline-pulse-sleep:before{content:"\effa"}.nc-outline-pulse-watch:before{content:"\effb"}.nc-outline-pulse:before{content:"\effc"}.nc-outline-pumpkin:before{content:"\effd"}.nc-outline-push-next:before{content:"\effe"}.nc-outline-push-previous:before{content:"\efff"}.nc-outline-puzzle-09:before{content:"\f000"}.nc-outline-puzzle-10:before{content:"\f001"}.nc-outline-puzzled:before{content:"\f002"}.nc-outline-pyramid:before{content:"\f003"}.nc-outline-question:before{content:"\f004"}.nc-outline-quite-happy:before{content:"\f005"}.nc-outline-quote:before{content:"\f006"}.nc-outline-rabbit:before{content:"\f007"}.nc-outline-rackets:before{content:"\f008"}.nc-outline-radar:before{content:"\f009"}.nc-outline-radiation:before{content:"\f00a"}.nc-outline-radio:before{content:"\f00b"}.nc-outline-rain-hail:before{content:"\f00c"}.nc-outline-rain:before{content:"\f00d"}.nc-outline-rainbow:before{content:"\f00e"}.nc-outline-ram:before{content:"\f00f"}.nc-outline-rat:before{content:"\f010"}.nc-outline-receipt-list-42:before{content:"\f011"}.nc-outline-receipt-list-43:before{content:"\f012"}.nc-outline-receipt:before{content:"\f014"}.nc-outline-recipe-book-46:before{content:"\f013"}.nc-outline-recipe-book-47:before{content:"\f015"}.nc-outline-recipe-create:before{content:"\f016"}.nc-outline-recipe:before{content:"\f018"}.nc-outline-recycling:before{content:"\f017"}.nc-outline-redo-10:before{content:"\f019"}.nc-outline-redo-26:before{content:"\f01a"}.nc-outline-redo-79:before{content:"\f01b"}.nc-outline-redo-81:before{content:"\f01c"}.nc-outline-refresh-01:before{content:"\f01d"}.nc-outline-refresh-02:before{content:"\f01e"}.nc-outline-refresh-68:before{content:"\f01f"}.nc-outline-refresh-69:before{content:"\f020"}.nc-outline-refresh:before{content:"\f021"}.nc-outline-reload:before{content:"\f022"}.nc-outline-remix:before{content:"\f024"}.nc-outline-remote:before{content:"\f023"}.nc-outline-remove:before{content:"\f025"}.nc-outline-replace-folder:before{content:"\f026"}.nc-outline-replace:before{content:"\f027"}.nc-outline-replay:before{content:"\f028"}.nc-outline-reply-all:before{content:"\f02a"}.nc-outline-reply:before{content:"\f029"}.nc-outline-reservation:before{content:"\f02b"}.nc-outline-resize-h:before{content:"\f02c"}.nc-outline-resize-v:before{content:"\f02d"}.nc-outline-restaurant-menu:before{content:"\f02e"}.nc-outline-restore:before{content:"\f030"}.nc-outline-rice:before{content:"\f02f"}.nc-outline-rim:before{content:"\f032"}.nc-outline-ring:before{content:"\f031"}.nc-outline-rio:before{content:"\f034"}.nc-outline-ripples:before{content:"\f033"}.nc-outline-road-2:before{content:"\f035"}.nc-outline-road-sign-left:before{content:"\f036"}.nc-outline-road-sign-right:before{content:"\f038"}.nc-outline-road:before{content:"\f037"}.nc-outline-roast-chicken:before{content:"\f03a"}.nc-outline-robot:before{content:"\f039"}.nc-outline-rock:before{content:"\f03b"}.nc-outline-roll:before{content:"\f03c"}.nc-outline-rolling-pin:before{content:"\f03e"}.nc-outline-rome:before{content:"\f03d"}.nc-outline-rope:before{content:"\f03f"}.nc-outline-rotate-22:before{content:"\f040"}.nc-outline-rotate-23:before{content:"\f041"}.nc-outline-rotate-left-2:before{content:"\f042"}.nc-outline-rotate-left:before{content:"\f043"}.nc-outline-rotate-lock:before{content:"\f044"}.nc-outline-rotate-right-2:before{content:"\f045"}.nc-outline-rotate-right:before{content:"\f046"}.nc-outline-rotate:before{content:"\f047"}.nc-outline-round-dollar:before{content:"\f048"}.nc-outline-round-down:before{content:"\f049"}.nc-outline-round-euro:before{content:"\f04a"}.nc-outline-round-left-down:before{content:"\f04b"}.nc-outline-round-left:before{content:"\f04c"}.nc-outline-round-pound:before{content:"\f04d"}.nc-outline-round-right-down:before{content:"\f04e"}.nc-outline-round-right:before{content:"\f04f"}.nc-outline-round-up-left:before{content:"\f050"}.nc-outline-round-up-right:before{content:"\f051"}.nc-outline-round-up:before{content:"\f052"}.nc-outline-round-yen:before{content:"\f053"}.nc-outline-route-alert:before{content:"\f054"}.nc-outline-route-close:before{content:"\f055"}.nc-outline-route-open:before{content:"\f056"}.nc-outline-rowing:before{content:"\f057"}.nc-outline-rugby:before{content:"\f058"}.nc-outline-ruler-pencil:before{content:"\f059"}.nc-outline-sad:before{content:"\f05a"}.nc-outline-safe:before{content:"\f05b"}.nc-outline-salad:before{content:"\f05c"}.nc-outline-sale:before{content:"\f05d"}.nc-outline-salt:before{content:"\f05e"}.nc-outline-santa-hat:before{content:"\f05f"}.nc-outline-satisfied:before{content:"\f060"}.nc-outline-sausage:before{content:"\f061"}.nc-outline-save-planet:before{content:"\f062"}.nc-outline-scale-2:before{content:"\f063"}.nc-outline-scale-3:before{content:"\f064"}.nc-outline-scale-4:before{content:"\f065"}.nc-outline-scale-down:before{content:"\f066"}.nc-outline-scale-horizontal:before{content:"\f067"}.nc-outline-scale-up:before{content:"\f068"}.nc-outline-scale-vertical:before{content:"\f069"}.nc-outline-scale:before{content:"\f06a"}.nc-outline-scan:before{content:"\f06c"}.nc-outline-scarf:before{content:"\f06b"}.nc-outline-school:before{content:"\f06d"}.nc-outline-scissors-dashed:before{content:"\f06e"}.nc-outline-scissors:before{content:"\f06f"}.nc-outline-scotch:before{content:"\f070"}.nc-outline-scroll-horitontal:before{content:"\f071"}.nc-outline-scroll-vertical:before{content:"\f072"}.nc-outline-sd:before{content:"\f074"}.nc-outline-sea-mask:before{content:"\f073"}.nc-outline-search-2:before{content:"\f075"}.nc-outline-search-3:before{content:"\f076"}.nc-outline-search:before{content:"\f077"}.nc-outline-seat:before{content:"\f078"}.nc-outline-seatbelt:before{content:"\f07a"}.nc-outline-security:before{content:"\f079"}.nc-outline-segmentation:before{content:"\f07c"}.nc-outline-select-83:before{content:"\f07b"}.nc-outline-select-84:before{content:"\f07e"}.nc-outline-select:before{content:"\f07d"}.nc-outline-selection:before{content:"\f080"}.nc-outline-selfie:before{content:"\f07f"}.nc-outline-send-2:before{content:"\f081"}.nc-outline-send:before{content:"\f082"}.nc-outline-sensor:before{content:"\f083"}.nc-outline-separate-round:before{content:"\f084"}.nc-outline-separate:before{content:"\f085"}.nc-outline-settings-46:before{content:"\f086"}.nc-outline-settings-99:before{content:"\f087"}.nc-outline-settings-gear-63:before{content:"\f088"}.nc-outline-settings-gear-64:before{content:"\f089"}.nc-outline-settings-gear-65:before{content:"\f08a"}.nc-outline-settings-tool-66:before{content:"\f08c"}.nc-outline-settings-tool-67:before{content:"\f08b"}.nc-outline-settings:before{content:"\f08d"}.nc-outline-sf-bridge:before{content:"\f08e"}.nc-outline-shake:before{content:"\f08f"}.nc-outline-shaker:before{content:"\f090"}.nc-outline-shape-adjust:before{content:"\f091"}.nc-outline-shape-arrow:before{content:"\f092"}.nc-outline-shape-circle:before{content:"\f093"}.nc-outline-shape-custom:before{content:"\f094"}.nc-outline-shape-line:before{content:"\f095"}.nc-outline-shape-oval:before{content:"\f096"}.nc-outline-shape-polygon-2:before{content:"\f097"}.nc-outline-shape-polygon:before{content:"\f098"}.nc-outline-shape-rectangle:before{content:"\f099"}.nc-outline-shape-square:before{content:"\f09a"}.nc-outline-shape-star:before{content:"\f09b"}.nc-outline-shape-triangle-2:before{content:"\f09c"}.nc-outline-shape-triangle:before{content:"\f09e"}.nc-outline-shapes:before{content:"\f09d"}.nc-outline-share-2:before{content:"\f09f"}.nc-outline-share-66:before{content:"\f0a0"}.nc-outline-share-91:before{content:"\f0a1"}.nc-outline-share-92:before{content:"\f0a2"}.nc-outline-share-bold:before{content:"\f0a3"}.nc-outline-share-left:before{content:"\f0a4"}.nc-outline-share-right:before{content:"\f0a5"}.nc-outline-share:before{content:"\f0a6"}.nc-outline-shared:before{content:"\f0a7"}.nc-outline-shark-2:before{content:"\f0a8"}.nc-outline-shark:before{content:"\f0a9"}.nc-outline-sharpener:before{content:"\f0aa"}.nc-outline-sheep:before{content:"\f0ab"}.nc-outline-shirt-business:before{content:"\f0ac"}.nc-outline-shirt-buttons:before{content:"\f0ad"}.nc-outline-shirt-neck:before{content:"\f0ae"}.nc-outline-shirt:before{content:"\f0af"}.nc-outline-shoe-man:before{content:"\f0b0"}.nc-outline-shoe-run:before{content:"\f0b1"}.nc-outline-shoe-sport:before{content:"\f0b2"}.nc-outline-shoe-woman:before{content:"\f0b3"}.nc-outline-shop-location:before{content:"\f0b4"}.nc-outline-shop:before{content:"\f0b5"}.nc-outline-shovel:before{content:"\f0b6"}.nc-outline-shower:before{content:"\f0b7"}.nc-outline-shrimp:before{content:"\f0b8"}.nc-outline-shuffle-01:before{content:"\f0b9"}.nc-outline-shuffle-35:before{content:"\f0ba"}.nc-outline-shuffle-97:before{content:"\f0bb"}.nc-outline-shuffle-98:before{content:"\f0bc"}.nc-outline-shy:before{content:"\f0bd"}.nc-outline-sick:before{content:"\f0be"}.nc-outline-sickle:before{content:"\f0c0"}.nc-outline-sidebar:before{content:"\f0bf"}.nc-outline-sign-board:before{content:"\f0c1"}.nc-outline-sign:before{content:"\f0c2"}.nc-outline-signal-2:before{content:"\f0c3"}.nc-outline-signal:before{content:"\f0c4"}.nc-outline-signature:before{content:"\f0c6"}.nc-outline-silly:before{content:"\f0c5"}.nc-outline-sim-card:before{content:"\f0c8"}.nc-outline-simple-add:before{content:"\f0c7"}.nc-outline-simple-delete:before{content:"\f0c9"}.nc-outline-simple-down:before{content:"\f0ca"}.nc-outline-simple-left:before{content:"\f0cb"}.nc-outline-simple-remove:before{content:"\f0cc"}.nc-outline-simple-right:before{content:"\f0cd"}.nc-outline-simple-up:before{content:"\f0ce"}.nc-outline-single-01:before{content:"\f0cf"}.nc-outline-single-02:before{content:"\f0d0"}.nc-outline-single-03:before{content:"\f0d1"}.nc-outline-single-04:before{content:"\f0d2"}.nc-outline-single-05:before{content:"\f0d3"}.nc-outline-single-body:before{content:"\f0d4"}.nc-outline-single-content-02:before{content:"\f0d5"}.nc-outline-single-content-03:before{content:"\f0d6"}.nc-outline-single-copies:before{content:"\f0d8"}.nc-outline-single-copy-04:before{content:"\f0d7"}.nc-outline-single-copy-06:before{content:"\f0d9"}.nc-outline-single-folded-content:before{content:"\f0da"}.nc-outline-single-folded:before{content:"\f0db"}.nc-outline-single-paragraph:before{content:"\f0dc"}.nc-outline-single-position:before{content:"\f0dd"}.nc-outline-single:before{content:"\f0de"}.nc-outline-sink-wash:before{content:"\f0df"}.nc-outline-sink:before{content:"\f0e0"}.nc-outline-size-large:before{content:"\f0e1"}.nc-outline-size-medium:before{content:"\f0e2"}.nc-outline-size-small:before{content:"\f0e3"}.nc-outline-size:before{content:"\f0e4"}.nc-outline-skateboard-2:before{content:"\f0e5"}.nc-outline-skateboard:before{content:"\f0e6"}.nc-outline-skew-down:before{content:"\f0e7"}.nc-outline-skew-left:before{content:"\f0e8"}.nc-outline-skew-right:before{content:"\f0e9"}.nc-outline-skew-up:before{content:"\f0ea"}.nc-outline-skirt:before{content:"\f0ec"}.nc-outline-skull-2:before{content:"\f0eb"}.nc-outline-skull:before{content:"\f0ed"}.nc-outline-slacks-12:before{content:"\f0ee"}.nc-outline-slacks-13:before{content:"\f0f0"}.nc-outline-sleep-2:before{content:"\f0ef"}.nc-outline-sleep:before{content:"\f0f1"}.nc-outline-slice:before{content:"\f0f2"}.nc-outline-slide-left:before{content:"\f0f3"}.nc-outline-slide-right:before{content:"\f0f4"}.nc-outline-slider:before{content:"\f0f5"}.nc-outline-sloth:before{content:"\f0f6"}.nc-outline-small-add:before{content:"\f0f7"}.nc-outline-small-delete:before{content:"\f0f8"}.nc-outline-small-down:before{content:"\f0f9"}.nc-outline-small-left:before{content:"\f0fa"}.nc-outline-small-remove:before{content:"\f0fb"}.nc-outline-small-right:before{content:"\f0fc"}.nc-outline-small-triangle-down:before{content:"\f0fd"}.nc-outline-small-triangle-left:before{content:"\f0fe"}.nc-outline-small-triangle-right:before{content:"\f0ff"}.nc-outline-small-triangle-up:before{content:"\f100"}.nc-outline-small-up:before{content:"\f101"}.nc-outline-smart:before{content:"\f102"}.nc-outline-smile:before{content:"\f103"}.nc-outline-smoothie:before{content:"\f104"}.nc-outline-snack:before{content:"\f105"}.nc-outline-snake:before{content:"\f106"}.nc-outline-snow-ball:before{content:"\f107"}.nc-outline-snow:before{content:"\f108"}.nc-outline-snowboard:before{content:"\f10a"}.nc-outline-snowman-head:before{content:"\f109"}.nc-outline-snowman:before{content:"\f10b"}.nc-outline-soak:before{content:"\f10c"}.nc-outline-soccer-field:before{content:"\f10d"}.nc-outline-sock:before{content:"\f10e"}.nc-outline-socket-europe-1:before{content:"\f10f"}.nc-outline-socket-europe-2:before{content:"\f110"}.nc-outline-socket-uk:before{content:"\f111"}.nc-outline-socket:before{content:"\f112"}.nc-outline-sofa:before{content:"\f114"}.nc-outline-soldier:before{content:"\f113"}.nc-outline-sound-wave:before{content:"\f115"}.nc-outline-soup:before{content:"\f116"}.nc-outline-soy-sauce:before{content:"\f117"}.nc-outline-spa:before{content:"\f118"}.nc-outline-spaceship:before{content:"\f119"}.nc-outline-speaker-01:before{content:"\f11a"}.nc-outline-speaker-05:before{content:"\f11b"}.nc-outline-speaker:before{content:"\f11c"}.nc-outline-speechless:before{content:"\f11d"}.nc-outline-spider:before{content:"\f11e"}.nc-outline-spiteful:before{content:"\f11f"}.nc-outline-split-33:before{content:"\f120"}.nc-outline-split-37:before{content:"\f121"}.nc-outline-split-horizontal:before{content:"\f122"}.nc-outline-split-round:before{content:"\f123"}.nc-outline-split-vertical:before{content:"\f124"}.nc-outline-split:before{content:"\f125"}.nc-outline-sport:before{content:"\f126"}.nc-outline-spray-2:before{content:"\f127"}.nc-outline-spray:before{content:"\f128"}.nc-outline-square-add-08:before{content:"\f12a"}.nc-outline-square-add-11:before{content:"\f129"}.nc-outline-square-corner-down-left:before{content:"\f12b"}.nc-outline-square-corner-down-right:before{content:"\f12c"}.nc-outline-square-corner-up-left:before{content:"\f12d"}.nc-outline-square-corner-up-right:before{content:"\f12e"}.nc-outline-square-delete-10:before{content:"\f12f"}.nc-outline-square-delete-13:before{content:"\f130"}.nc-outline-square-down-06:before{content:"\f131"}.nc-outline-square-down:before{content:"\f132"}.nc-outline-square-download:before{content:"\f133"}.nc-outline-square-left-04:before{content:"\f134"}.nc-outline-square-left:before{content:"\f136"}.nc-outline-square-marker:before{content:"\f135"}.nc-outline-square-pin:before{content:"\f137"}.nc-outline-square-remove-09:before{content:"\f138"}.nc-outline-square-remove-12:before{content:"\f139"}.nc-outline-square-right-03:before{content:"\f13a"}.nc-outline-square-right:before{content:"\f13b"}.nc-outline-square-simple-down:before{content:"\f13c"}.nc-outline-square-simple-left:before{content:"\f13d"}.nc-outline-square-simple-right:before{content:"\f13e"}.nc-outline-square-simple-up:before{content:"\f13f"}.nc-outline-square-up-05:before{content:"\f140"}.nc-outline-square-up:before{content:"\f141"}.nc-outline-square-upload:before{content:"\f142"}.nc-outline-squares:before{content:"\f143"}.nc-outline-stamp:before{content:"\f144"}.nc-outline-standing-man:before{content:"\f145"}.nc-outline-standing-woman:before{content:"\f146"}.nc-outline-star:before{content:"\f148"}.nc-outline-steak-2:before{content:"\f147"}.nc-outline-steak:before{content:"\f149"}.nc-outline-steering-wheel:before{content:"\f14a"}.nc-outline-steps:before{content:"\f14b"}.nc-outline-stock-2:before{content:"\f14c"}.nc-outline-stock:before{content:"\f14d"}.nc-outline-storage-hanger:before{content:"\f14e"}.nc-outline-storage:before{content:"\f14f"}.nc-outline-store:before{content:"\f150"}.nc-outline-strategy:before{content:"\f151"}.nc-outline-strawberry:before{content:"\f152"}.nc-outline-stre-down:before{content:"\f153"}.nc-outline-stre-left:before{content:"\f154"}.nc-outline-stre-right:before{content:"\f156"}.nc-outline-stre-up:before{content:"\f155"}.nc-outline-stretch:before{content:"\f157"}.nc-outline-strikethrough:before{content:"\f158"}.nc-outline-strong-down:before{content:"\f15a"}.nc-outline-strong-left:before{content:"\f159"}.nc-outline-strong-right:before{content:"\f15b"}.nc-outline-strong-up:before{content:"\f15c"}.nc-outline-subscript:before{content:"\f15d"}.nc-outline-subtitles:before{content:"\f15f"}.nc-outline-sugar:before{content:"\f15e"}.nc-outline-sun-cloud-drop:before{content:"\f160"}.nc-outline-sun-cloud-fog:before{content:"\f161"}.nc-outline-sun-cloud-hail:before{content:"\f162"}.nc-outline-sun-cloud-light:before{content:"\f163"}.nc-outline-sun-cloud-rain:before{content:"\f164"}.nc-outline-sun-cloud-snow-54:before{content:"\f165"}.nc-outline-sun-cloud-snow-55:before{content:"\f166"}.nc-outline-sun-cloud:before{content:"\f167"}.nc-outline-sun-fog-29:before{content:"\f168"}.nc-outline-sun-fog-30:before{content:"\f169"}.nc-outline-sun-fog-43:before{content:"\f16a"}.nc-outline-sunglasses-48:before{content:"\f16b"}.nc-outline-sunglasses-49:before{content:"\f16c"}.nc-outline-sunglasses:before{content:"\f16d"}.nc-outline-superscript:before{content:"\f16e"}.nc-outline-supplement:before{content:"\f16f"}.nc-outline-support-16:before{content:"\f170"}.nc-outline-support-17:before{content:"\f171"}.nc-outline-surf-2:before{content:"\f172"}.nc-outline-surf:before{content:"\f173"}.nc-outline-surprise:before{content:"\f174"}.nc-outline-sushi:before{content:"\f175"}.nc-outline-swap-horizontal:before{content:"\f176"}.nc-outline-swap-vertical:before{content:"\f177"}.nc-outline-swimsuit:before{content:"\f178"}.nc-outline-swimwear:before{content:"\f179"}.nc-outline-swipe-bottom:before{content:"\f17a"}.nc-outline-swipe-left:before{content:"\f17b"}.nc-outline-swipe-right:before{content:"\f17c"}.nc-outline-swipe-up:before{content:"\f17d"}.nc-outline-swiss-knife:before{content:"\f17e"}.nc-outline-sync:before{content:"\f17f"}.nc-outline-syringe:before{content:"\f180"}.nc-outline-system-update:before{content:"\f181"}.nc-outline-table-left:before{content:"\f182"}.nc-outline-table-right:before{content:"\f183"}.nc-outline-table:before{content:"\f184"}.nc-outline-tablet-2:before{content:"\f185"}.nc-outline-tablet-button:before{content:"\f186"}.nc-outline-tablet-mobile:before{content:"\f187"}.nc-outline-tablet-reader-31:before{content:"\f188"}.nc-outline-tablet-reader-42:before{content:"\f189"}.nc-outline-tablet-toolbar:before{content:"\f18a"}.nc-outline-tablet:before{content:"\f18b"}.nc-outline-tacos:before{content:"\f18c"}.nc-outline-tactic:before{content:"\f18d"}.nc-outline-tag-2:before{content:"\f18f"}.nc-outline-tag-add:before{content:"\f18e"}.nc-outline-tag-check:before{content:"\f190"}.nc-outline-tag-content:before{content:"\f191"}.nc-outline-tag-cut:before{content:"\f192"}.nc-outline-tag-line:before{content:"\f193"}.nc-outline-tag-loyalty:before{content:"\f194"}.nc-outline-tag-remove:before{content:"\f195"}.nc-outline-tag-sale:before{content:"\f197"}.nc-outline-tag:before{content:"\f196"}.nc-outline-tail-down:before{content:"\f198"}.nc-outline-tail-left:before{content:"\f199"}.nc-outline-tail-right:before{content:"\f19a"}.nc-outline-tail-triangle-down:before{content:"\f19b"}.nc-outline-tail-triangle-left:before{content:"\f19c"}.nc-outline-tail-triangle-right:before{content:"\f19d"}.nc-outline-tail-triangle-up:before{content:"\f19f"}.nc-outline-tail-up:before{content:"\f19e"}.nc-outline-tap-01:before{content:"\f1a0"}.nc-outline-tap-02:before{content:"\f1a1"}.nc-outline-tape:before{content:"\f1a2"}.nc-outline-target:before{content:"\f1a3"}.nc-outline-tea-bag:before{content:"\f1a4"}.nc-outline-tea:before{content:"\f1a5"}.nc-outline-temperature-23:before{content:"\f1a6"}.nc-outline-temperature-24:before{content:"\f1a7"}.nc-outline-temple-25:before{content:"\f1a8"}.nc-outline-tennis-ball:before{content:"\f1a9"}.nc-outline-tennis:before{content:"\f1aa"}.nc-outline-terrace:before{content:"\f1ab"}.nc-outline-text-2:before{content:"\f1ac"}.nc-outline-text:before{content:"\f1ad"}.nc-outline-texture:before{content:"\f1ae"}.nc-outline-ticket-75:before{content:"\f1af"}.nc-outline-ticket-76:before{content:"\f1b0"}.nc-outline-tie-01:before{content:"\f1b1"}.nc-outline-tie-02:before{content:"\f1b2"}.nc-outline-tie-bow:before{content:"\f1b3"}.nc-outline-tile-55:before{content:"\f1b4"}.nc-outline-tile-56:before{content:"\f1b5"}.nc-outline-time-2:before{content:"\f1b6"}.nc-outline-time-3:before{content:"\f1b7"}.nc-outline-time-alarm:before{content:"\f1b8"}.nc-outline-time-clock:before{content:"\f1b9"}.nc-outline-time-countdown:before{content:"\f1ba"}.nc-outline-time:before{content:"\f1bb"}.nc-outline-timeline:before{content:"\f1bc"}.nc-outline-timer:before{content:"\f1bd"}.nc-outline-todo:before{content:"\f1be"}.nc-outline-toilet-paper:before{content:"\f1bf"}.nc-outline-toilet:before{content:"\f1c0"}.nc-outline-tomato:before{content:"\f1c1"}.nc-outline-tool-blur:before{content:"\f1c2"}.nc-outline-tool-hand:before{content:"\f1c3"}.nc-outline-tool-select:before{content:"\f1c4"}.nc-outline-tooth:before{content:"\f1c5"}.nc-outline-touch:before{content:"\f1c7"}.nc-outline-track-delivery:before{content:"\f1c6"}.nc-outline-tracking:before{content:"\f1c8"}.nc-outline-tractor:before{content:"\f1c9"}.nc-outline-train-speed:before{content:"\f1ca"}.nc-outline-train:before{content:"\f1cb"}.nc-outline-tram:before{content:"\f1cc"}.nc-outline-transform-2d:before{content:"\f1cd"}.nc-outline-transform-origin:before{content:"\f1ce"}.nc-outline-transform:before{content:"\f1cf"}.nc-outline-transparent:before{content:"\f1d1"}.nc-outline-trash-round:before{content:"\f1d0"}.nc-outline-trash-simple:before{content:"\f1d2"}.nc-outline-trash:before{content:"\f1d3"}.nc-outline-treasure-map-21:before{content:"\f1d4"}.nc-outline-treasure-map-40:before{content:"\f1d5"}.nc-outline-tree-01:before{content:"\f1d6"}.nc-outline-tree-02:before{content:"\f1d7"}.nc-outline-tree-03:before{content:"\f1d8"}.nc-outline-tree-ball:before{content:"\f1d9"}.nc-outline-tree:before{content:"\f1da"}.nc-outline-trend-down:before{content:"\f1db"}.nc-outline-trend-up:before{content:"\f1dc"}.nc-outline-triangle-down-20:before{content:"\f1dd"}.nc-outline-triangle-down-65:before{content:"\f1de"}.nc-outline-triangle-down:before{content:"\f1df"}.nc-outline-triangle-left-18:before{content:"\f1e0"}.nc-outline-triangle-left-63:before{content:"\f1e1"}.nc-outline-triangle-left:before{content:"\f1e2"}.nc-outline-triangle-right-17:before{content:"\f1e3"}.nc-outline-triangle-right-62:before{content:"\f1e4"}.nc-outline-triangle-right:before{content:"\f1e5"}.nc-outline-triangle-up-19:before{content:"\f1e6"}.nc-outline-triangle-up-64:before{content:"\f1e7"}.nc-outline-triangle-up:before{content:"\f1e8"}.nc-outline-tripod:before{content:"\f1e9"}.nc-outline-trolley:before{content:"\f1ea"}.nc-outline-trophy:before{content:"\f1eb"}.nc-outline-truck-front:before{content:"\f1ec"}.nc-outline-trunk:before{content:"\f1ed"}.nc-outline-tshirt-53:before{content:"\f1ee"}.nc-outline-tshirt-54:before{content:"\f1ef"}.nc-outline-tshirt-sport:before{content:"\f1f0"}.nc-outline-turtle:before{content:"\f1f1"}.nc-outline-tv-2:before{content:"\f1f2"}.nc-outline-tv-old:before{content:"\f1f3"}.nc-outline-tv:before{content:"\f1f4"}.nc-outline-ui-03:before{content:"\f1f5"}.nc-outline-ui-04:before{content:"\f1f6"}.nc-outline-umbrella-13:before{content:"\f1f7"}.nc-outline-umbrella-14:before{content:"\f1f8"}.nc-outline-underline:before{content:"\f1f9"}.nc-outline-underwear-man:before{content:"\f1fa"}.nc-outline-underwear:before{content:"\f1fb"}.nc-outline-undo-25:before{content:"\f1fc"}.nc-outline-undo-29:before{content:"\f1fd"}.nc-outline-ungroup:before{content:"\f1fe"}.nc-outline-unite-round:before{content:"\f1ff"}.nc-outline-unite:before{content:"\f200"}.nc-outline-upload-2:before{content:"\f201"}.nc-outline-upload:before{content:"\f202"}.nc-outline-upset-13:before{content:"\f203"}.nc-outline-upset-14:before{content:"\f204"}.nc-outline-usb:before{content:"\f205"}.nc-outline-user-balance:before{content:"\f206"}.nc-outline-user-climb:before{content:"\f207"}.nc-outline-user-frame-31:before{content:"\f209"}.nc-outline-user-frame-32:before{content:"\f208"}.nc-outline-user-frame-33:before{content:"\f20a"}.nc-outline-user-meditation:before{content:"\f20b"}.nc-outline-user-run:before{content:"\f20c"}.nc-outline-user-snowboard:before{content:"\f20d"}.nc-outline-user-swim:before{content:"\f20e"}.nc-outline-user:before{content:"\f20f"}.nc-outline-vampire:before{content:"\f210"}.nc-outline-vector-2:before{content:"\f211"}.nc-outline-vector:before{content:"\f212"}.nc-outline-vegan:before{content:"\f213"}.nc-outline-ventilation:before{content:"\f215"}.nc-outline-vespa-front:before{content:"\f214"}.nc-outline-vespa:before{content:"\f216"}.nc-outline-vest-31:before{content:"\f217"}.nc-outline-vest-sport:before{content:"\f218"}.nc-outline-vest:before{content:"\f219"}.nc-outline-video-64:before{content:"\f21a"}.nc-outline-video-65:before{content:"\f21b"}.nc-outline-video-66:before{content:"\f21c"}.nc-outline-video-67:before{content:"\f21d"}.nc-outline-videocamera-71:before{content:"\f21e"}.nc-outline-videocamera-72:before{content:"\f21f"}.nc-outline-virus:before{content:"\f220"}.nc-outline-voice-record:before{content:"\f221"}.nc-outline-volleyball:before{content:"\f222"}.nc-outline-volume-93:before{content:"\f223"}.nc-outline-volume-97:before{content:"\f224"}.nc-outline-volume-98:before{content:"\f225"}.nc-outline-volume-ban:before{content:"\f226"}.nc-outline-volume-down:before{content:"\f227"}.nc-outline-volume-off:before{content:"\f228"}.nc-outline-volume-up:before{content:"\f229"}.nc-outline-vpn:before{content:"\f22a"}.nc-outline-waffle:before{content:"\f22b"}.nc-outline-walk:before{content:"\f22d"}.nc-outline-wallet-43:before{content:"\f22c"}.nc-outline-wallet-44:before{content:"\f22e"}.nc-outline-wallet-90:before{content:"\f22f"}.nc-outline-wallet:before{content:"\f230"}.nc-outline-wand-11:before{content:"\f231"}.nc-outline-wardrobe:before{content:"\f232"}.nc-outline-wash-2:before{content:"\f233"}.nc-outline-wash-30:before{content:"\f234"}.nc-outline-wash-60:before{content:"\f235"}.nc-outline-wash-90:before{content:"\f236"}.nc-outline-wash-hand:before{content:"\f237"}.nc-outline-wash:before{content:"\f238"}.nc-outline-washing-fluid:before{content:"\f239"}.nc-outline-waste-danger:before{content:"\f23a"}.nc-outline-waste-recycling:before{content:"\f23b"}.nc-outline-waste:before{content:"\f23c"}.nc-outline-watch-circle:before{content:"\f23d"}.nc-outline-watch-dev:before{content:"\f23e"}.nc-outline-watch-time:before{content:"\f23f"}.nc-outline-watch:before{content:"\f240"}.nc-outline-water-hand:before{content:"\f241"}.nc-outline-water-sink:before{content:"\f242"}.nc-outline-water:before{content:"\f243"}.nc-outline-watermelon:before{content:"\f244"}.nc-outline-wc:before{content:"\f245"}.nc-outline-web-design:before{content:"\f246"}.nc-outline-webcam-38:before{content:"\f247"}.nc-outline-webcam-39:before{content:"\f248"}.nc-outline-webpage-2:before{content:"\f249"}.nc-outline-webpage:before{content:"\f24a"}.nc-outline-weed:before{content:"\f24b"}.nc-outline-weight:before{content:"\f24c"}.nc-outline-what:before{content:"\f24d"}.nc-outline-wheel-2:before{content:"\f24e"}.nc-outline-wheel:before{content:"\f251"}.nc-outline-wheelchair:before{content:"\f24f"}.nc-outline-whisk:before{content:"\f250"}.nc-outline-whiskers:before{content:"\f252"}.nc-outline-whistle:before{content:"\f253"}.nc-outline-white-house:before{content:"\f254"}.nc-outline-widget:before{content:"\f255"}.nc-outline-wifi-2:before{content:"\f256"}.nc-outline-wifi-off:before{content:"\f257"}.nc-outline-wifi-protected:before{content:"\f258"}.nc-outline-wifi-router:before{content:"\f259"}.nc-outline-wifi:before{content:"\f25a"}.nc-outline-wind-2:before{content:"\f25b"}.nc-outline-wind:before{content:"\f25c"}.nc-outline-window-add:before{content:"\f25d"}.nc-outline-window-code:before{content:"\f25e"}.nc-outline-window-delete:before{content:"\f25f"}.nc-outline-window-dev:before{content:"\f260"}.nc-outline-window-paragraph:before{content:"\f261"}.nc-outline-window-responsive:before{content:"\f262"}.nc-outline-window-zoom-in:before{content:"\f263"}.nc-outline-window-zoom-out:before{content:"\f264"}.nc-outline-wine-list:before{content:"\f265"}.nc-outline-wink-06:before{content:"\f266"}.nc-outline-wink-11:before{content:"\f267"}.nc-outline-wink-69:before{content:"\f268"}.nc-outline-witch-hat:before{content:"\f269"}.nc-outline-wolf:before{content:"\f26a"}.nc-outline-woman-2:before{content:"\f26b"}.nc-outline-woman-21:before{content:"\f26c"}.nc-outline-woman-24:before{content:"\f26d"}.nc-outline-woman-25:before{content:"\f26e"}.nc-outline-woman-down:before{content:"\f26f"}.nc-outline-woman-man:before{content:"\f270"}.nc-outline-woman-up:before{content:"\f271"}.nc-outline-woman:before{content:"\f272"}.nc-outline-wood:before{content:"\f273"}.nc-outline-wool-ball:before{content:"\f274"}.nc-outline-worl-marker:before{content:"\f275"}.nc-outline-world-2:before{content:"\f276"}.nc-outline-world-pin:before{content:"\f277"}.nc-outline-world:before{content:"\f278"}.nc-outline-yogurt:before{content:"\f279"}.nc-outline-zip-54:before{content:"\f27a"}.nc-outline-zip-55:before{content:"\f27b"}.nc-outline-zombie:before{content:"\f27c"}.nc-outline-zoom-100:before{content:"\f27d"}.nc-outline-zoom-2:before{content:"\f27e"}.nc-outline-zoom-88:before{content:"\f27f"}.nc-outline-zoom-99:before{content:"\f281"}.nc-outline-zoom-bold-in:before{content:"\f280"}.nc-outline-zoom-bold-out:before{content:"\f282"}.nc-outline-zoom-bold:before{content:"\f283"}.nc-outline-zoom-e:before{content:"\f285"}.nc-outline-zoom-in:before{content:"\f284"}.nc-outline-zoom-out:before{content:"\f286"}.nc-outline-zoom-split-in:before{content:"\f287"}.nc-outline-zoom-split-out:before{content:"\f288"}.nc-outline-zoom-split:before{content:"\f289"}.nc-outline-zoom-triangles:before{content:"\f28a"}.nc-outline-zoom:before{content:"\f28b"}.nc-glyph-2x-drag-down:before{content:"\ea01"}.nc-glyph-2x-drag-up:before{content:"\ea02"}.nc-glyph-2x-swipe-down:before{content:"\ea03"}.nc-glyph-2x-swipe-left:before{content:"\ea04"}.nc-glyph-2x-swipe-right:before{content:"\ea05"}.nc-glyph-2x-swipe-up:before{content:"\ea06"}.nc-glyph-2x-tap:before{content:"\ea07"}.nc-glyph-3d-29:before{content:"\ea08"}.nc-glyph-3d-model:before{content:"\ea09"}.nc-glyph-3d:before{content:"\ea0a"}.nc-glyph-3x-swipe-left:before{content:"\ea0b"}.nc-glyph-3x-swipe-right:before{content:"\ea0c"}.nc-glyph-3x-swipe-up:before{content:"\ea0d"}.nc-glyph-3x-tap:before{content:"\ea0e"}.nc-glyph-4x-swipe-left:before{content:"\ea0f"}.nc-glyph-4x-swipe-right:before{content:"\ea10"}.nc-glyph-4x-swipe-up:before{content:"\ea11"}.nc-glyph-a-add:before{content:"\ea12"}.nc-glyph-a-check:before{content:"\ea13"}.nc-glyph-a-delete:before{content:"\ea14"}.nc-glyph-a-edit:before{content:"\ea15"}.nc-glyph-a-heart:before{content:"\ea16"}.nc-glyph-a-location:before{content:"\ea17"}.nc-glyph-a-remove:before{content:"\ea18"}.nc-glyph-a-search:before{content:"\ea19"}.nc-glyph-a-security:before{content:"\ea1a"}.nc-glyph-a-share:before{content:"\ea1b"}.nc-glyph-a-star:before{content:"\ea1c"}.nc-glyph-a-sync:before{content:"\ea1d"}.nc-glyph-a-time:before{content:"\ea1e"}.nc-glyph-abc:before{content:"\ea1f"}.nc-glyph-accessibility:before{content:"\ea20"}.nc-glyph-action-73:before{content:"\ea21"}.nc-glyph-action-74:before{content:"\ea22"}.nc-glyph-active-38:before{content:"\ea23"}.nc-glyph-active-40:before{content:"\ea24"}.nc-glyph-add-27:before{content:"\ea25"}.nc-glyph-add-29:before{content:"\ea26"}.nc-glyph-add:before{content:"\ea27"}.nc-glyph-agenda-bookmark:before{content:"\ea28"}.nc-glyph-agenda:before{content:"\ea29"}.nc-glyph-air-baloon:before{content:"\ea2a"}.nc-glyph-air-conditioner:before{content:"\ea2b"}.nc-glyph-airbag:before{content:"\ea2c"}.nc-glyph-alarm-add:before{content:"\ea2d"}.nc-glyph-alarm-delete:before{content:"\ea2e"}.nc-glyph-album-2:before{content:"\ea2f"}.nc-glyph-album:before{content:"\ea30"}.nc-glyph-alcohol:before{content:"\ea31"}.nc-glyph-alert-circle-exc:before{content:"\ea32"}.nc-glyph-alert-circle-i:before{content:"\ea33"}.nc-glyph-alert-circle-que:before{content:"\ea34"}.nc-glyph-alert-exc:before{content:"\ea35"}.nc-glyph-alert-i:before{content:"\ea36"}.nc-glyph-alert-que:before{content:"\ea37"}.nc-glyph-alert-square-exc:before{content:"\ea38"}.nc-glyph-alert-square-i:before{content:"\ea39"}.nc-glyph-alert-square-que:before{content:"\ea3a"}.nc-glyph-alert:before{content:"\ea3b"}.nc-glyph-alien-29:before{content:"\ea3c"}.nc-glyph-alien-33:before{content:"\ea3d"}.nc-glyph-align-bottom:before{content:"\ea3e"}.nc-glyph-align-center-horizontal:before{content:"\ea3f"}.nc-glyph-align-center-vertical:before{content:"\ea40"}.nc-glyph-align-center:before{content:"\ea41"}.nc-glyph-align-justify:before{content:"\ea42"}.nc-glyph-align-left-2:before{content:"\ea43"}.nc-glyph-align-left:before{content:"\ea44"}.nc-glyph-align-right-2:before{content:"\ea45"}.nc-glyph-align-right:before{content:"\ea46"}.nc-glyph-align-top:before{content:"\ea47"}.nc-glyph-ambulance:before{content:"\ea48"}.nc-glyph-analytics-88:before{content:"\ea49"}.nc-glyph-analytics-89:before{content:"\ea4a"}.nc-glyph-anchor:before{content:"\ea4b"}.nc-glyph-android:before{content:"\ea4c"}.nc-glyph-angle:before{content:"\ea4d"}.nc-glyph-angry-10:before{content:"\ea4e"}.nc-glyph-angry-44:before{content:"\ea4f"}.nc-glyph-animation-14:before{content:"\ea50"}.nc-glyph-animation-31:before{content:"\ea51"}.nc-glyph-animation-32:before{content:"\ea52"}.nc-glyph-app:before{content:"\ea53"}.nc-glyph-apple-2:before{content:"\ea54"}.nc-glyph-apple:before{content:"\ea55"}.nc-glyph-appointment:before{content:"\ea56"}.nc-glyph-archive-2:before{content:"\ea57"}.nc-glyph-archive-3d-check:before{content:"\ea58"}.nc-glyph-archive-3d-content:before{content:"\ea59"}.nc-glyph-archive-check:before{content:"\ea5a"}.nc-glyph-archive-content:before{content:"\ea5b"}.nc-glyph-archive-paper-check:before{content:"\ea5c"}.nc-glyph-archive-paper:before{content:"\ea5d"}.nc-glyph-archive:before{content:"\ea5e"}.nc-glyph-armchair:before{content:"\ea5f"}.nc-glyph-artboard:before{content:"\ea60"}.nc-glyph-astronaut:before{content:"\ea61"}.nc-glyph-at-sign:before{content:"\ea62"}.nc-glyph-atm:before{content:"\ea63"}.nc-glyph-atom:before{content:"\ea64"}.nc-glyph-attach-86:before{content:"\ea65"}.nc-glyph-attach-87:before{content:"\ea66"}.nc-glyph-aubergine:before{content:"\ea67"}.nc-glyph-audio-91:before{content:"\ea68"}.nc-glyph-audio-92:before{content:"\ea69"}.nc-glyph-audio:before{content:"\ea6a"}.nc-glyph-avocado:before{content:"\ea6b"}.nc-glyph-award-48:before{content:"\ea6c"}.nc-glyph-award-49:before{content:"\ea6d"}.nc-glyph-award-55:before{content:"\ea6e"}.nc-glyph-award-74:before{content:"\ea6f"}.nc-glyph-award:before{content:"\ea70"}.nc-glyph-axe:before{content:"\ea71"}.nc-glyph-b-add:before{content:"\ea72"}.nc-glyph-b-check:before{content:"\ea73"}.nc-glyph-b-location:before{content:"\ea74"}.nc-glyph-b-love:before{content:"\ea75"}.nc-glyph-b-meeting:before{content:"\ea76"}.nc-glyph-b-remove:before{content:"\ea77"}.nc-glyph-b-security:before{content:"\ea78"}.nc-glyph-baby-2:before{content:"\ea79"}.nc-glyph-baby-3:before{content:"\ea7a"}.nc-glyph-baby-bottle:before{content:"\ea7b"}.nc-glyph-baby:before{content:"\ea7c"}.nc-glyph-back-78:before{content:"\ea7d"}.nc-glyph-back-80:before{content:"\ea7e"}.nc-glyph-background:before{content:"\ea7f"}.nc-glyph-backpack-2:before{content:"\ea80"}.nc-glyph-backpack-57:before{content:"\ea81"}.nc-glyph-backpack-58:before{content:"\ea82"}.nc-glyph-backpack:before{content:"\ea83"}.nc-glyph-backward:before{content:"\ea84"}.nc-glyph-bacon:before{content:"\ea85"}.nc-glyph-badge-13:before{content:"\ea86"}.nc-glyph-badge-14:before{content:"\ea87"}.nc-glyph-badge-15:before{content:"\ea88"}.nc-glyph-badge:before{content:"\ea89"}.nc-glyph-badminton:before{content:"\ea8a"}.nc-glyph-bag-09:before{content:"\ea8b"}.nc-glyph-bag-16:before{content:"\ea8c"}.nc-glyph-bag-17:before{content:"\ea8d"}.nc-glyph-bag-20:before{content:"\ea8e"}.nc-glyph-bag-21:before{content:"\ea8f"}.nc-glyph-bag-22:before{content:"\ea90"}.nc-glyph-bag-49:before{content:"\ea91"}.nc-glyph-bag-50:before{content:"\ea92"}.nc-glyph-bag-add-18:before{content:"\ea93"}.nc-glyph-bag-add-21:before{content:"\ea94"}.nc-glyph-bag-delivery:before{content:"\ea95"}.nc-glyph-bag-edit:before{content:"\ea96"}.nc-glyph-bag-remove-19:before{content:"\ea97"}.nc-glyph-bag-remove-22:before{content:"\ea98"}.nc-glyph-bag-time:before{content:"\ea99"}.nc-glyph-bag:before{content:"\ea9a"}.nc-glyph-baguette:before{content:"\ea9b"}.nc-glyph-balance:before{content:"\ea9c"}.nc-glyph-ball-basket:before{content:"\ea9d"}.nc-glyph-ball-soccer:before{content:"\ea9e"}.nc-glyph-baloon:before{content:"\ea9f"}.nc-glyph-ban-bold:before{content:"\eaa0"}.nc-glyph-ban:before{content:"\eaa1"}.nc-glyph-banana:before{content:"\eaa2"}.nc-glyph-bank:before{content:"\eaa3"}.nc-glyph-barbecue-15:before{content:"\eaa4"}.nc-glyph-barbecue-tools:before{content:"\eaa5"}.nc-glyph-barbecue:before{content:"\eaa6"}.nc-glyph-barcode-qr:before{content:"\eaa7"}.nc-glyph-barcode-scan:before{content:"\eaa8"}.nc-glyph-barcode:before{content:"\eaa9"}.nc-glyph-bars-2:before{content:"\eaaa"}.nc-glyph-bars-rotate:before{content:"\eaab"}.nc-glyph-bars:before{content:"\eaac"}.nc-glyph-baseball-ball:before{content:"\eaad"}.nc-glyph-baseball-bat:before{content:"\eaae"}.nc-glyph-baseball:before{content:"\eaaf"}.nc-glyph-basket-add:before{content:"\eab0"}.nc-glyph-basket-edit:before{content:"\eab1"}.nc-glyph-basket-favorite:before{content:"\eab2"}.nc-glyph-basket-remove:before{content:"\eab3"}.nc-glyph-basket-search:before{content:"\eab4"}.nc-glyph-basket-share:before{content:"\eab5"}.nc-glyph-basket-simple-add:before{content:"\eab6"}.nc-glyph-basket-simple-remove:before{content:"\eab7"}.nc-glyph-basket-simple:before{content:"\eab8"}.nc-glyph-basket-update:before{content:"\eab9"}.nc-glyph-basket:before{content:"\eaba"}.nc-glyph-basketball-12:before{content:"\eabb"}.nc-glyph-basketball-13:before{content:"\eabc"}.nc-glyph-bat:before{content:"\eabd"}.nc-glyph-bath-tub:before{content:"\eabe"}.nc-glyph-battery-81:before{content:"\eabf"}.nc-glyph-battery-83:before{content:"\eac0"}.nc-glyph-battery-half:before{content:"\eac1"}.nc-glyph-battery-level:before{content:"\eac2"}.nc-glyph-battery-low:before{content:"\eac3"}.nc-glyph-battery:before{content:"\eac4"}.nc-glyph-bear-2:before{content:"\eac5"}.nc-glyph-bear:before{content:"\eac6"}.nc-glyph-bed-09:before{content:"\eac7"}.nc-glyph-bed-23:before{content:"\eac8"}.nc-glyph-bed-side:before{content:"\eac9"}.nc-glyph-bee:before{content:"\eaca"}.nc-glyph-beer-95:before{content:"\eacb"}.nc-glyph-beer-96:before{content:"\eacc"}.nc-glyph-bell-53:before{content:"\eacd"}.nc-glyph-bell-54:before{content:"\eace"}.nc-glyph-bell-55:before{content:"\eacf"}.nc-glyph-belt:before{content:"\ead0"}.nc-glyph-berlin:before{content:"\ead1"}.nc-glyph-beverage:before{content:"\ead2"}.nc-glyph-big-eyes:before{content:"\ead3"}.nc-glyph-big-smile:before{content:"\ead4"}.nc-glyph-bigmouth:before{content:"\ead5"}.nc-glyph-bike-2:before{content:"\ead6"}.nc-glyph-bike:before{content:"\ead7"}.nc-glyph-bill:before{content:"\ead8"}.nc-glyph-billiard:before{content:"\ead9"}.nc-glyph-binocular:before{content:"\eada"}.nc-glyph-biscuit:before{content:"\eadb"}.nc-glyph-bitcoin:before{content:"\eadc"}.nc-glyph-bleah:before{content:"\eadd"}.nc-glyph-blend:before{content:"\eade"}.nc-glyph-blind:before{content:"\eadf"}.nc-glyph-block-bottom-left:before{content:"\eae0"}.nc-glyph-block-bottom-right:before{content:"\eae1"}.nc-glyph-block-down:before{content:"\eae2"}.nc-glyph-block-left:before{content:"\eae3"}.nc-glyph-block-right:before{content:"\eae4"}.nc-glyph-block-top-left:before{content:"\eae5"}.nc-glyph-block-top-right:before{content:"\eae6"}.nc-glyph-block-up:before{content:"\eae7"}.nc-glyph-blog:before{content:"\eae8"}.nc-glyph-blueberries:before{content:"\eae9"}.nc-glyph-bluetooth:before{content:"\eaea"}.nc-glyph-board-2:before{content:"\eaeb"}.nc-glyph-board-27:before{content:"\eaec"}.nc-glyph-board-28:before{content:"\eaed"}.nc-glyph-board-29:before{content:"\eaee"}.nc-glyph-board-30:before{content:"\eaef"}.nc-glyph-board-51:before{content:"\eaf0"}.nc-glyph-board:before{content:"\eaf1"}.nc-glyph-boat-front:before{content:"\eaf2"}.nc-glyph-boat-small-02:before{content:"\eaf3"}.nc-glyph-boat-small-03:before{content:"\eaf4"}.nc-glyph-boat:before{content:"\eaf5"}.nc-glyph-bold-add:before{content:"\eaf6"}.nc-glyph-bold-delete:before{content:"\eaf7"}.nc-glyph-bold-direction:before{content:"\eaf8"}.nc-glyph-bold-down:before{content:"\eaf9"}.nc-glyph-bold-left:before{content:"\eafa"}.nc-glyph-bold-remove:before{content:"\eafb"}.nc-glyph-bold-right:before{content:"\eafc"}.nc-glyph-bold-up:before{content:"\eafd"}.nc-glyph-bold:before{content:"\eafe"}.nc-glyph-bolt:before{content:"\eaff"}.nc-glyph-bomb:before{content:"\eb00"}.nc-glyph-bones:before{content:"\eb01"}.nc-glyph-book-07:before{content:"\eb02"}.nc-glyph-book-08:before{content:"\eb03"}.nc-glyph-book-39:before{content:"\eb04"}.nc-glyph-book-bookmark-2:before{content:"\eb05"}.nc-glyph-book-bookmark:before{content:"\eb06"}.nc-glyph-book-open-2:before{content:"\eb07"}.nc-glyph-book-open:before{content:"\eb08"}.nc-glyph-book:before{content:"\eb09"}.nc-glyph-bookmark-2:before{content:"\eb0a"}.nc-glyph-bookmark-add-2:before{content:"\eb0b"}.nc-glyph-bookmark-add:before{content:"\eb0c"}.nc-glyph-bookmark-remove-2:before{content:"\eb0d"}.nc-glyph-bookmark-remove:before{content:"\eb0e"}.nc-glyph-bookmark:before{content:"\eb0f"}.nc-glyph-books-46:before{content:"\eb10"}.nc-glyph-books:before{content:"\eb11"}.nc-glyph-boot-2:before{content:"\eb12"}.nc-glyph-boot-woman:before{content:"\eb13"}.nc-glyph-boot:before{content:"\eb14"}.nc-glyph-border-radius:before{content:"\eb15"}.nc-glyph-border:before{content:"\eb16"}.nc-glyph-bored:before{content:"\eb17"}.nc-glyph-bottle-wine:before{content:"\eb18"}.nc-glyph-bottle:before{content:"\eb19"}.nc-glyph-bow:before{content:"\eb1a"}.nc-glyph-bowl:before{content:"\eb1b"}.nc-glyph-bowling:before{content:"\eb1c"}.nc-glyph-box-2:before{content:"\eb1d"}.nc-glyph-box-3d-50:before{content:"\eb1e"}.nc-glyph-box-ribbon:before{content:"\eb1f"}.nc-glyph-box:before{content:"\eb20"}.nc-glyph-boxing:before{content:"\eb21"}.nc-glyph-bra:before{content:"\eb22"}.nc-glyph-brain:before{content:"\eb23"}.nc-glyph-brakes:before{content:"\eb24"}.nc-glyph-bread:before{content:"\eb25"}.nc-glyph-briefcase-24:before{content:"\eb26"}.nc-glyph-briefcase-25:before{content:"\eb27"}.nc-glyph-briefcase-26:before{content:"\eb28"}.nc-glyph-brightness-46:before{content:"\eb29"}.nc-glyph-brightness-47:before{content:"\eb2a"}.nc-glyph-brioche:before{content:"\eb2b"}.nc-glyph-broccoli:before{content:"\eb2c"}.nc-glyph-broom:before{content:"\eb2d"}.nc-glyph-browser-chrome:before{content:"\eb2e"}.nc-glyph-browser-edge:before{content:"\eb2f"}.nc-glyph-browser-firefox:before{content:"\eb30"}.nc-glyph-browser-ie:before{content:"\eb31"}.nc-glyph-browser-opera:before{content:"\eb32"}.nc-glyph-browser-safari:before{content:"\eb33"}.nc-glyph-brush:before{content:"\eb34"}.nc-glyph-bucket:before{content:"\eb35"}.nc-glyph-bug:before{content:"\eb36"}.nc-glyph-building:before{content:"\eb37"}.nc-glyph-bulb-61:before{content:"\eb38"}.nc-glyph-bulb-62:before{content:"\eb39"}.nc-glyph-bulb-63:before{content:"\eb3a"}.nc-glyph-bulb-saver:before{content:"\eb3b"}.nc-glyph-bulb:before{content:"\eb3c"}.nc-glyph-bullet-list-67:before{content:"\eb3d"}.nc-glyph-bullet-list-68:before{content:"\eb3e"}.nc-glyph-bullet-list-69:before{content:"\eb3f"}.nc-glyph-bullet-list-70:before{content:"\eb40"}.nc-glyph-bullet-list:before{content:"\eb41"}.nc-glyph-bus-front-10:before{content:"\eb42"}.nc-glyph-bus-front-12:before{content:"\eb43"}.nc-glyph-bus:before{content:"\eb44"}.nc-glyph-business-contact-85:before{content:"\eb45"}.nc-glyph-business-contact-86:before{content:"\eb46"}.nc-glyph-business-contact-87:before{content:"\eb47"}.nc-glyph-business-contact-88:before{content:"\eb48"}.nc-glyph-business-contact-89:before{content:"\eb49"}.nc-glyph-businessman-03:before{content:"\eb4a"}.nc-glyph-businessman-04:before{content:"\eb4b"}.nc-glyph-butterfly:before{content:"\eb4c"}.nc-glyph-button-2:before{content:"\eb4d"}.nc-glyph-button-circle-pause:before{content:"\eb4e"}.nc-glyph-button-circle-play:before{content:"\eb4f"}.nc-glyph-button-circle-stop:before{content:"\eb50"}.nc-glyph-button-eject:before{content:"\eb51"}.nc-glyph-button-next:before{content:"\eb52"}.nc-glyph-button-pause:before{content:"\eb53"}.nc-glyph-button-play:before{content:"\eb54"}.nc-glyph-button-power:before{content:"\eb55"}.nc-glyph-button-previous:before{content:"\eb56"}.nc-glyph-button-record:before{content:"\eb57"}.nc-glyph-button-rewind:before{content:"\eb58"}.nc-glyph-button-skip:before{content:"\eb5b"}.nc-glyph-button-stop:before{content:"\eb59"}.nc-glyph-button:before{content:"\eb5a"}.nc-glyph-cabinet:before{content:"\eb5c"}.nc-glyph-cable-49:before{content:"\eb5d"}.nc-glyph-cable-50:before{content:"\eb5e"}.nc-glyph-cactus:before{content:"\eb5f"}.nc-glyph-cake-100:before{content:"\eb60"}.nc-glyph-cake-13:before{content:"\eb61"}.nc-glyph-cake-slice:before{content:"\eb62"}.nc-glyph-cake:before{content:"\eb63"}.nc-glyph-calculator:before{content:"\eb64"}.nc-glyph-calendar-57:before{content:"\eb65"}.nc-glyph-calendar-60:before{content:"\eb66"}.nc-glyph-calendar-add:before{content:"\eb67"}.nc-glyph-calendar-check-59:before{content:"\eb68"}.nc-glyph-calendar-check-62:before{content:"\eb69"}.nc-glyph-calendar-grid-58:before{content:"\eb6a"}.nc-glyph-calendar-grid-61:before{content:"\eb6b"}.nc-glyph-camera-18:before{content:"\eb6c"}.nc-glyph-camera-19:before{content:"\eb6d"}.nc-glyph-camera-20:before{content:"\eb6e"}.nc-glyph-camera-ban-36:before{content:"\eb6f"}.nc-glyph-camera-ban-37:before{content:"\eb70"}.nc-glyph-camera-compact:before{content:"\eb71"}.nc-glyph-camera-screen:before{content:"\eb72"}.nc-glyph-camera-square-57:before{content:"\eb73"}.nc-glyph-camera-square-58:before{content:"\eb74"}.nc-glyph-camera-time:before{content:"\eb75"}.nc-glyph-camera:before{content:"\eb76"}.nc-glyph-camper:before{content:"\eb77"}.nc-glyph-camping:before{content:"\eb78"}.nc-glyph-candle:before{content:"\eb79"}.nc-glyph-candy-2:before{content:"\eb7a"}.nc-glyph-candy:before{content:"\eb7b"}.nc-glyph-canvas:before{content:"\eb7c"}.nc-glyph-cap:before{content:"\eb7d"}.nc-glyph-capitalize:before{content:"\eb7e"}.nc-glyph-caps-all:before{content:"\eb7f"}.nc-glyph-caps-small:before{content:"\eb80"}.nc-glyph-car-2:before{content:"\eb81"}.nc-glyph-car-accident:before{content:"\eb82"}.nc-glyph-car-connect:before{content:"\eb83"}.nc-glyph-car-door:before{content:"\eb84"}.nc-glyph-car-front:before{content:"\eb85"}.nc-glyph-car-lights:before{content:"\eb86"}.nc-glyph-car-parking:before{content:"\eb87"}.nc-glyph-car-simple:before{content:"\eb88"}.nc-glyph-car-sport:before{content:"\eb89"}.nc-glyph-car-taxi:before{content:"\eb8a"}.nc-glyph-car-ventilation:before{content:"\eb8b"}.nc-glyph-car-wash:before{content:"\eb8c"}.nc-glyph-car:before{content:"\eb8d"}.nc-glyph-card-add-2:before{content:"\eb8e"}.nc-glyph-card-add:before{content:"\eb8f"}.nc-glyph-card-alert:before{content:"\eb90"}.nc-glyph-card-edit:before{content:"\eb91"}.nc-glyph-card-favorite:before{content:"\eb92"}.nc-glyph-card-remove:before{content:"\eb93"}.nc-glyph-card-update:before{content:"\eb94"}.nc-glyph-cardio:before{content:"\eb95"}.nc-glyph-cards:before{content:"\eb96"}.nc-glyph-carrot:before{content:"\eb97"}.nc-glyph-cart-9:before{content:"\eb98"}.nc-glyph-cart-add-9:before{content:"\eb99"}.nc-glyph-cart-add:before{content:"\eb9a"}.nc-glyph-cart-favorite:before{content:"\eb9b"}.nc-glyph-cart-full:before{content:"\eb9c"}.nc-glyph-cart-in-9:before{content:"\eb9d"}.nc-glyph-cart-refresh:before{content:"\eb9e"}.nc-glyph-cart-remove-9:before{content:"\eb9f"}.nc-glyph-cart-remove:before{content:"\eba0"}.nc-glyph-cart-return:before{content:"\eba1"}.nc-glyph-cart-simple-add:before{content:"\eba2"}.nc-glyph-cart-simple-in:before{content:"\eba3"}.nc-glyph-cart-simple-remove:before{content:"\eba4"}.nc-glyph-cart-simple:before{content:"\eba5"}.nc-glyph-cart-speed:before{content:"\eba6"}.nc-glyph-cart:before{content:"\eba7"}.nc-glyph-cash-register:before{content:"\eba8"}.nc-glyph-castle:before{content:"\eba9"}.nc-glyph-cat:before{content:"\ebaa"}.nc-glyph-cauldron:before{content:"\ebab"}.nc-glyph-cctv:before{content:"\ebac"}.nc-glyph-cd-reader:before{content:"\ebad"}.nc-glyph-celsius:before{content:"\ebae"}.nc-glyph-centralize:before{content:"\ebaf"}.nc-glyph-chair-2:before{content:"\ebb0"}.nc-glyph-chair:before{content:"\ebb1"}.nc-glyph-chalkboard:before{content:"\ebb2"}.nc-glyph-champagne:before{content:"\ebb3"}.nc-glyph-chart-2:before{content:"\ebb4"}.nc-glyph-chart-3:before{content:"\ebb5"}.nc-glyph-chart-bar-32:before{content:"\ebb6"}.nc-glyph-chart-bar-33:before{content:"\ebb7"}.nc-glyph-chart-bar-52:before{content:"\ebb8"}.nc-glyph-chart-bar-53:before{content:"\ebb9"}.nc-glyph-chart-bar:before{content:"\ebba"}.nc-glyph-chart-bars:before{content:"\ebbb"}.nc-glyph-chart-growth:before{content:"\ebbc"}.nc-glyph-chart-pie-35:before{content:"\ebbd"}.nc-glyph-chart-pie-36:before{content:"\ebbe"}.nc-glyph-chart-pie:before{content:"\ebbf"}.nc-glyph-chart:before{content:"\ebc0"}.nc-glyph-chat-33:before{content:"\ebc1"}.nc-glyph-chat-45:before{content:"\ebc2"}.nc-glyph-chat-46:before{content:"\ebc3"}.nc-glyph-chat-content:before{content:"\ebc4"}.nc-glyph-chat-reply:before{content:"\ebc5"}.nc-glyph-chat-round-content:before{content:"\ebc6"}.nc-glyph-chat-round:before{content:"\ebc7"}.nc-glyph-chat:before{content:"\ebc8"}.nc-glyph-check-2:before{content:"\ebc9"}.nc-glyph-check-bold:before{content:"\ebca"}.nc-glyph-check-circle-07:before{content:"\ebcb"}.nc-glyph-check-circle-08:before{content:"\ebcc"}.nc-glyph-check-curve:before{content:"\ebcd"}.nc-glyph-check-in:before{content:"\ebce"}.nc-glyph-check-out:before{content:"\ebcf"}.nc-glyph-check-simple:before{content:"\ebd0"}.nc-glyph-check-small:before{content:"\ebd1"}.nc-glyph-check-square-09:before{content:"\ebd2"}.nc-glyph-check-square-11:before{content:"\ebd3"}.nc-glyph-check:before{content:"\ebd4"}.nc-glyph-cheese-24:before{content:"\ebd5"}.nc-glyph-cheese-87:before{content:"\ebd6"}.nc-glyph-cheeseburger:before{content:"\ebd7"}.nc-glyph-chef-hat:before{content:"\ebd8"}.nc-glyph-chef:before{content:"\ebd9"}.nc-glyph-cheque-2:before{content:"\ebda"}.nc-glyph-cheque-3:before{content:"\ebdb"}.nc-glyph-cheque:before{content:"\ebdc"}.nc-glyph-cherry:before{content:"\ebdd"}.nc-glyph-chicken-2:before{content:"\ebde"}.nc-glyph-chicken:before{content:"\ebdf"}.nc-glyph-child:before{content:"\ebe0"}.nc-glyph-chili:before{content:"\ebe1"}.nc-glyph-chimney:before{content:"\ebe2"}.nc-glyph-china:before{content:"\ebe3"}.nc-glyph-chinese:before{content:"\ebe4"}.nc-glyph-chips:before{content:"\ebe5"}.nc-glyph-choco-cream:before{content:"\ebe7"}.nc-glyph-chocolate-mousse:before{content:"\ebe6"}.nc-glyph-chocolate:before{content:"\ebe8"}.nc-glyph-church:before{content:"\ebe9"}.nc-glyph-churros:before{content:"\ebea"}.nc-glyph-circle-02:before{content:"\ebeb"}.nc-glyph-circle-03:before{content:"\ebec"}.nc-glyph-circle-04:before{content:"\ebed"}.nc-glyph-circle-08:before{content:"\ebee"}.nc-glyph-circle-09:before{content:"\ebef"}.nc-glyph-circle-10:before{content:"\ebf0"}.nc-glyph-circle-add:before{content:"\ebf1"}.nc-glyph-circle-bold-add:before{content:"\ebf2"}.nc-glyph-circle-bold-delete:before{content:"\ebf3"}.nc-glyph-circle-bold-remove:before{content:"\ebf4"}.nc-glyph-circle-delete:before{content:"\ebf5"}.nc-glyph-circle-down-12:before{content:"\ebf6"}.nc-glyph-circle-down-40:before{content:"\ebf7"}.nc-glyph-circle-in:before{content:"\ebf8"}.nc-glyph-circle-left-10:before{content:"\ebf9"}.nc-glyph-circle-left-38:before{content:"\ebfa"}.nc-glyph-circle-out:before{content:"\ebfb"}.nc-glyph-circle-remove:before{content:"\ebfc"}.nc-glyph-circle-right-09:before{content:"\ebfd"}.nc-glyph-circle-right-37:before{content:"\ebfe"}.nc-glyph-circle-simple-down:before{content:"\ebff"}.nc-glyph-circle-simple-left:before{content:"\ec00"}.nc-glyph-circle-simple-right:before{content:"\ec01"}.nc-glyph-circle-simple-up:before{content:"\ec02"}.nc-glyph-circle-up-11:before{content:"\ec03"}.nc-glyph-circle-up-39:before{content:"\ec04"}.nc-glyph-circle:before{content:"\ec05"}.nc-glyph-circuit-round:before{content:"\ec06"}.nc-glyph-circuit:before{content:"\ec07"}.nc-glyph-clone:before{content:"\ec08"}.nc-glyph-cloud-25:before{content:"\ec09"}.nc-glyph-cloud-26:before{content:"\ec0a"}.nc-glyph-cloud-download-93:before{content:"\ec0b"}.nc-glyph-cloud-download-95:before{content:"\ec0c"}.nc-glyph-cloud-drop:before{content:"\ec0d"}.nc-glyph-cloud-fog-31:before{content:"\ec0e"}.nc-glyph-cloud-fog-32:before{content:"\ec0f"}.nc-glyph-cloud-hail:before{content:"\ec10"}.nc-glyph-cloud-light:before{content:"\ec11"}.nc-glyph-cloud-moon:before{content:"\ec12"}.nc-glyph-cloud-rain:before{content:"\ec13"}.nc-glyph-cloud-rainbow:before{content:"\ec14"}.nc-glyph-cloud-snow-34:before{content:"\ec15"}.nc-glyph-cloud-snow-42:before{content:"\ec16"}.nc-glyph-cloud-sun-17:before{content:"\ec17"}.nc-glyph-cloud-sun-19:before{content:"\ec18"}.nc-glyph-cloud-upload-94:before{content:"\ec19"}.nc-glyph-cloud-upload-96:before{content:"\ec1a"}.nc-glyph-cloud:before{content:"\ec1b"}.nc-glyph-clover:before{content:"\ec1c"}.nc-glyph-coat-hanger:before{content:"\ec1d"}.nc-glyph-coat:before{content:"\ec1e"}.nc-glyph-cockade:before{content:"\ec1f"}.nc-glyph-cocktail:before{content:"\ec20"}.nc-glyph-code-editor:before{content:"\ec21"}.nc-glyph-code:before{content:"\ec22"}.nc-glyph-coffe-long:before{content:"\ec23"}.nc-glyph-coffee-2:before{content:"\ec24"}.nc-glyph-coffee-bean:before{content:"\ec25"}.nc-glyph-coffee-long:before{content:"\ec26"}.nc-glyph-coffee:before{content:"\ec27"}.nc-glyph-coffin:before{content:"\ec28"}.nc-glyph-coins:before{content:"\ec29"}.nc-glyph-collar:before{content:"\ec2a"}.nc-glyph-collection:before{content:"\ec2b"}.nc-glyph-color:before{content:"\ec2c"}.nc-glyph-command:before{content:"\ec2d"}.nc-glyph-comment-add:before{content:"\ec2e"}.nc-glyph-compare:before{content:"\ec2f"}.nc-glyph-compass-04:before{content:"\ec30"}.nc-glyph-compass-05:before{content:"\ec31"}.nc-glyph-compass-06:before{content:"\ec32"}.nc-glyph-compass-2:before{content:"\ec33"}.nc-glyph-compass-3:before{content:"\ec34"}.nc-glyph-compass:before{content:"\ec35"}.nc-glyph-components:before{content:"\ec36"}.nc-glyph-computer-monitor:before{content:"\ec37"}.nc-glyph-computer-old:before{content:"\ec38"}.nc-glyph-computer-upload:before{content:"\ec39"}.nc-glyph-computer:before{content:"\ec3a"}.nc-glyph-cone:before{content:"\ec3b"}.nc-glyph-connect:before{content:"\ec3c"}.nc-glyph-connection:before{content:"\ec3d"}.nc-glyph-contacts-2:before{content:"\ec3e"}.nc-glyph-contacts-44:before{content:"\ec3f"}.nc-glyph-contacts-45:before{content:"\ec40"}.nc-glyph-contacts:before{content:"\ec41"}.nc-glyph-contrast-2:before{content:"\ec42"}.nc-glyph-contrast:before{content:"\ec43"}.nc-glyph-controller-2:before{content:"\ec44"}.nc-glyph-controller-3:before{content:"\ec45"}.nc-glyph-controller:before{content:"\ec46"}.nc-glyph-conversion:before{content:"\ec47"}.nc-glyph-cookies:before{content:"\ec48"}.nc-glyph-copy-2:before{content:"\ec49"}.nc-glyph-copy:before{content:"\ec4a"}.nc-glyph-corn:before{content:"\ec4b"}.nc-glyph-corner-down-round:before{content:"\ec4c"}.nc-glyph-corner-down:before{content:"\ec4d"}.nc-glyph-corner-left-down:before{content:"\ec4e"}.nc-glyph-corner-left-round:before{content:"\ec4f"}.nc-glyph-corner-left:before{content:"\ec50"}.nc-glyph-corner-right-down:before{content:"\ec51"}.nc-glyph-corner-right-round:before{content:"\ec52"}.nc-glyph-corner-right:before{content:"\ec53"}.nc-glyph-corner-up-left:before{content:"\ec54"}.nc-glyph-corner-up-right:before{content:"\ec55"}.nc-glyph-corner-up-round:before{content:"\ec56"}.nc-glyph-corner-up:before{content:"\ec57"}.nc-glyph-corset:before{content:"\ec58"}.nc-glyph-countdown-34:before{content:"\ec59"}.nc-glyph-countdown-35:before{content:"\ec5a"}.nc-glyph-couple-gay:before{content:"\ec5b"}.nc-glyph-couple-lesbian:before{content:"\ec5c"}.nc-glyph-coupon:before{content:"\ec5d"}.nc-glyph-course:before{content:"\ec5e"}.nc-glyph-cow:before{content:"\ec5f"}.nc-glyph-crab:before{content:"\ec60"}.nc-glyph-cradle:before{content:"\ec61"}.nc-glyph-credit-card-in:before{content:"\ec62"}.nc-glyph-credit-card:before{content:"\ec63"}.nc-glyph-credit-locked:before{content:"\ec64"}.nc-glyph-crepe:before{content:"\ec65"}.nc-glyph-cricket:before{content:"\ec66"}.nc-glyph-croissant:before{content:"\ec67"}.nc-glyph-crop:before{content:"\ec68"}.nc-glyph-cross-down:before{content:"\ec69"}.nc-glyph-cross-horizontal:before{content:"\ec6a"}.nc-glyph-cross-left:before{content:"\ec6b"}.nc-glyph-cross-right:before{content:"\ec6c"}.nc-glyph-cross-up:before{content:"\ec6d"}.nc-glyph-cross-vertical:before{content:"\ec6e"}.nc-glyph-cross:before{content:"\ec6f"}.nc-glyph-crosshair:before{content:"\ec70"}.nc-glyph-crown:before{content:"\ec71"}.nc-glyph-crumpet:before{content:"\ec72"}.nc-glyph-cry-15:before{content:"\ec73"}.nc-glyph-cry-57:before{content:"\ec74"}.nc-glyph-css3:before{content:"\ec75"}.nc-glyph-cupcake:before{content:"\ec76"}.nc-glyph-currency-dollar:before{content:"\ec77"}.nc-glyph-currency-euro:before{content:"\ec78"}.nc-glyph-currency-exchange:before{content:"\ec79"}.nc-glyph-currency-pound:before{content:"\ec7a"}.nc-glyph-currency-yen:before{content:"\ec7b"}.nc-glyph-cursor-48:before{content:"\ec7c"}.nc-glyph-cursor-49:before{content:"\ec7d"}.nc-glyph-cursor-add:before{content:"\ec7e"}.nc-glyph-cursor-grab:before{content:"\ec7f"}.nc-glyph-cursor-load:before{content:"\ec80"}.nc-glyph-cursor-menu:before{content:"\ec81"}.nc-glyph-cursor-not-allowed:before{content:"\ec82"}.nc-glyph-cursor-pointer:before{content:"\ec83"}.nc-glyph-cursor-text:before{content:"\ec84"}.nc-glyph-curtain:before{content:"\ec85"}.nc-glyph-curve-circuit:before{content:"\ec86"}.nc-glyph-curve-directions:before{content:"\ec87"}.nc-glyph-curve-split:before{content:"\ec88"}.nc-glyph-curved-next:before{content:"\ec89"}.nc-glyph-curved-previous:before{content:"\ec8a"}.nc-glyph-customer-support:before{content:"\ec8b"}.nc-glyph-cut:before{content:"\ec8c"}.nc-glyph-cute:before{content:"\ec8d"}.nc-glyph-cutlery-75:before{content:"\ec8e"}.nc-glyph-cutlery-76:before{content:"\ec8f"}.nc-glyph-cutlery-77:before{content:"\ec90"}.nc-glyph-cutlery:before{content:"\ec91"}.nc-glyph-cyclist:before{content:"\ec92"}.nc-glyph-dart:before{content:"\ec93"}.nc-glyph-dashboard-29:before{content:"\ec94"}.nc-glyph-dashboard-30:before{content:"\ec95"}.nc-glyph-dashboard-half:before{content:"\ec96"}.nc-glyph-dashboard-level:before{content:"\ec97"}.nc-glyph-database:before{content:"\ec98"}.nc-glyph-dead-hand:before{content:"\ec99"}.nc-glyph-decoration:before{content:"\ec9a"}.nc-glyph-deer:before{content:"\ec9b"}.nc-glyph-delete-28:before{content:"\ec9c"}.nc-glyph-delete-30:before{content:"\ec9d"}.nc-glyph-delete-49:before{content:"\ec9e"}.nc-glyph-delete-50:before{content:"\ec9f"}.nc-glyph-delivery-2:before{content:"\eca0"}.nc-glyph-delivery-3:before{content:"\eca1"}.nc-glyph-delivery-fast:before{content:"\eca2"}.nc-glyph-delivery-time:before{content:"\eca3"}.nc-glyph-delivery-track:before{content:"\eca4"}.nc-glyph-delivery:before{content:"\eca5"}.nc-glyph-design-system:before{content:"\eca6"}.nc-glyph-design:before{content:"\eca7"}.nc-glyph-desk-drawer:before{content:"\eca8"}.nc-glyph-desk:before{content:"\eca9"}.nc-glyph-desktop-screen:before{content:"\ecaa"}.nc-glyph-desktop:before{content:"\ecab"}.nc-glyph-detox:before{content:"\ecac"}.nc-glyph-dev:before{content:"\ecad"}.nc-glyph-device-connection:before{content:"\ecae"}.nc-glyph-devil:before{content:"\ecaf"}.nc-glyph-diag-bottom-left:before{content:"\ecb0"}.nc-glyph-diag-bottom-right:before{content:"\ecb1"}.nc-glyph-diag-top-left:before{content:"\ecb2"}.nc-glyph-diag-top-right:before{content:"\ecb3"}.nc-glyph-diamond:before{content:"\ecb4"}.nc-glyph-dice:before{content:"\ecb5"}.nc-glyph-diet-plan:before{content:"\ecb6"}.nc-glyph-diet:before{content:"\ecb7"}.nc-glyph-direction-53:before{content:"\ecb8"}.nc-glyph-direction-56:before{content:"\ecb9"}.nc-glyph-direction:before{content:"\ecba"}.nc-glyph-directions:before{content:"\ecbb"}.nc-glyph-disabled:before{content:"\ecbc"}.nc-glyph-discord:before{content:"\ecbd"}.nc-glyph-discount-2:before{content:"\ecbe"}.nc-glyph-discount:before{content:"\ecbf"}.nc-glyph-disgusted:before{content:"\ecc0"}.nc-glyph-dish:before{content:"\ecc1"}.nc-glyph-dishwasher:before{content:"\ecc2"}.nc-glyph-disk-2:before{content:"\ecc3"}.nc-glyph-disk-reader:before{content:"\ecc4"}.nc-glyph-disk:before{content:"\ecc5"}.nc-glyph-disperse:before{content:"\ecc6"}.nc-glyph-distribute-horizontal:before{content:"\ecc7"}.nc-glyph-distribute-vertical:before{content:"\ecc8"}.nc-glyph-divider:before{content:"\ecc9"}.nc-glyph-dna-27:before{content:"\ecca"}.nc-glyph-dna-38:before{content:"\eccb"}.nc-glyph-dock-bottom:before{content:"\eccc"}.nc-glyph-dock-left:before{content:"\eccd"}.nc-glyph-dock-right:before{content:"\ecce"}.nc-glyph-dock-top:before{content:"\eccf"}.nc-glyph-dock:before{content:"\ecd0"}.nc-glyph-doctor:before{content:"\ecd1"}.nc-glyph-dog-house:before{content:"\ecd2"}.nc-glyph-dog:before{content:"\ecd3"}.nc-glyph-donut:before{content:"\ecd4"}.nc-glyph-door:before{content:"\ecd5"}.nc-glyph-dots-05:before{content:"\ecd6"}.nc-glyph-dots-06:before{content:"\ecd7"}.nc-glyph-dots-07:before{content:"\ecd8"}.nc-glyph-dots-download:before{content:"\ecd9"}.nc-glyph-dots-upload:before{content:"\ecda"}.nc-glyph-dots:before{content:"\ecdb"}.nc-glyph-double-left:before{content:"\ecdc"}.nc-glyph-double-right:before{content:"\ecdd"}.nc-glyph-double-tap:before{content:"\ecde"}.nc-glyph-download-2:before{content:"\ecdf"}.nc-glyph-download-3:before{content:"\ece0"}.nc-glyph-download:before{content:"\ece1"}.nc-glyph-drag-21:before{content:"\ece2"}.nc-glyph-drag-31:before{content:"\ece3"}.nc-glyph-drag-down:before{content:"\ece4"}.nc-glyph-drag-left:before{content:"\ece5"}.nc-glyph-drag-right:before{content:"\ece6"}.nc-glyph-drag-up:before{content:"\ece7"}.nc-glyph-drag:before{content:"\ece8"}.nc-glyph-drawer-2:before{content:"\ece9"}.nc-glyph-drawer:before{content:"\ecea"}.nc-glyph-dress-man:before{content:"\eceb"}.nc-glyph-dress-woman:before{content:"\ecec"}.nc-glyph-drink-2:before{content:"\ecee"}.nc-glyph-drink-list:before{content:"\eced"}.nc-glyph-drink:before{content:"\ecef"}.nc-glyph-drop-15:before{content:"\ecf0"}.nc-glyph-drop:before{content:"\ecf1"}.nc-glyph-drops:before{content:"\ecf3"}.nc-glyph-dumbbells:before{content:"\ecf2"}.nc-glyph-eclipse:before{content:"\ecf4"}.nc-glyph-edit-2:before{content:"\ecf5"}.nc-glyph-edit-71:before{content:"\ecf6"}.nc-glyph-edit-72:before{content:"\ecf7"}.nc-glyph-edit-73:before{content:"\ecf8"}.nc-glyph-edit-74:before{content:"\ecf9"}.nc-glyph-edit-75:before{content:"\ecfa"}.nc-glyph-edit-76:before{content:"\ecfb"}.nc-glyph-edit-77:before{content:"\ecfc"}.nc-glyph-edit-78:before{content:"\ecfd"}.nc-glyph-edit-color:before{content:"\ecfe"}.nc-glyph-edit-contrast-42:before{content:"\ecff"}.nc-glyph-edit-contrast-43:before{content:"\ed00"}.nc-glyph-edit-saturation:before{content:"\ed01"}.nc-glyph-edit:before{content:"\ed02"}.nc-glyph-egg-38:before{content:"\ed03"}.nc-glyph-egg-39:before{content:"\ed04"}.nc-glyph-egg:before{content:"\ed05"}.nc-glyph-eject:before{content:"\ed06"}.nc-glyph-email-83:before{content:"\ed07"}.nc-glyph-email-84:before{content:"\ed08"}.nc-glyph-email-85:before{content:"\ed09"}.nc-glyph-energy-drink-2:before{content:"\ed0a"}.nc-glyph-energy-drink:before{content:"\ed0b"}.nc-glyph-energy-supplement:before{content:"\ed0c"}.nc-glyph-energy:before{content:"\ed0d"}.nc-glyph-engine-start:before{content:"\ed0e"}.nc-glyph-engine:before{content:"\ed0f"}.nc-glyph-enlarge-45:before{content:"\ed10"}.nc-glyph-enlarge-46:before{content:"\ed11"}.nc-glyph-enlarge-57:before{content:"\ed12"}.nc-glyph-enlarge-58:before{content:"\ed13"}.nc-glyph-enlarge-59:before{content:"\ed14"}.nc-glyph-enlarge-circle:before{content:"\ed15"}.nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}.nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}.nc-glyph-enlarge-horizontal:before{content:"\ed18"}.nc-glyph-enlarge-vertical:before{content:"\ed19"}.nc-glyph-eraser-32:before{content:"\ed1a"}.nc-glyph-eraser-33:before{content:"\ed1b"}.nc-glyph-eraser-46:before{content:"\ed1c"}.nc-glyph-event-confirm:before{content:"\ed1d"}.nc-glyph-event-create:before{content:"\ed1e"}.nc-glyph-exchange:before{content:"\ed1f"}.nc-glyph-exclamation:before{content:"\ed20"}.nc-glyph-explore-2:before{content:"\ed21"}.nc-glyph-explore-user:before{content:"\ed22"}.nc-glyph-explore:before{content:"\ed23"}.nc-glyph-export:before{content:"\ed24"}.nc-glyph-eye-17:before{content:"\ed25"}.nc-glyph-eye-19:before{content:"\ed26"}.nc-glyph-eye-ban-18:before{content:"\ed27"}.nc-glyph-eye-ban-20:before{content:"\ed28"}.nc-glyph-factory:before{content:"\ed29"}.nc-glyph-fahrenheit:before{content:"\ed2a"}.nc-glyph-family:before{content:"\ed2b"}.nc-glyph-fat-add:before{content:"\ed2c"}.nc-glyph-fat-delete:before{content:"\ed2d"}.nc-glyph-fat-remove:before{content:"\ed2e"}.nc-glyph-fav-remove:before{content:"\ed2f"}.nc-glyph-favourite-28:before{content:"\ed30"}.nc-glyph-favourite-31:before{content:"\ed31"}.nc-glyph-favourite-add-29:before{content:"\ed32"}.nc-glyph-favourite-add-32:before{content:"\ed33"}.nc-glyph-favourite-remove-30:before{content:"\ed34"}.nc-glyph-favourite-remove-33:before{content:"\ed35"}.nc-glyph-fencing:before{content:"\ed36"}.nc-glyph-file-add:before{content:"\ed37"}.nc-glyph-file-delete:before{content:"\ed38"}.nc-glyph-file-download-87:before{content:"\ed39"}.nc-glyph-file-download-89:before{content:"\ed3a"}.nc-glyph-file-download-94:before{content:"\ed3b"}.nc-glyph-file-upload-86:before{content:"\ed3c"}.nc-glyph-file-upload-88:before{content:"\ed3d"}.nc-glyph-file-upload-93:before{content:"\ed3e"}.nc-glyph-filter-check:before{content:"\ed3f"}.nc-glyph-filter-organization:before{content:"\ed40"}.nc-glyph-filter-remove:before{content:"\ed41"}.nc-glyph-filter:before{content:"\ed42"}.nc-glyph-fire:before{content:"\ed43"}.nc-glyph-firewall:before{content:"\ed44"}.nc-glyph-fish:before{content:"\ed45"}.nc-glyph-fishbone:before{content:"\ed46"}.nc-glyph-fishing:before{content:"\ed47"}.nc-glyph-fist:before{content:"\ed48"}.nc-glyph-fit-horizontal:before{content:"\ed49"}.nc-glyph-fit-vertical:before{content:"\ed4a"}.nc-glyph-flag-complex:before{content:"\ed4b"}.nc-glyph-flag-diagonal-33:before{content:"\ed4c"}.nc-glyph-flag-diagonal-34:before{content:"\ed4d"}.nc-glyph-flag-finish:before{content:"\ed4e"}.nc-glyph-flag-points-31:before{content:"\ed4f"}.nc-glyph-flag-points-32:before{content:"\ed50"}.nc-glyph-flag-simple:before{content:"\ed51"}.nc-glyph-flag-triangle:before{content:"\ed52"}.nc-glyph-flag:before{content:"\ed53"}.nc-glyph-flame:before{content:"\ed54"}.nc-glyph-flash-21:before{content:"\ed55"}.nc-glyph-flash-24:before{content:"\ed56"}.nc-glyph-flash-29:before{content:"\ed57"}.nc-glyph-flash-auto-22:before{content:"\ed58"}.nc-glyph-flash-auto-25:before{content:"\ed59"}.nc-glyph-flash-off-23:before{content:"\ed5a"}.nc-glyph-flash-off-26:before{content:"\ed5b"}.nc-glyph-flask-2:before{content:"\ed5c"}.nc-glyph-flask:before{content:"\ed5d"}.nc-glyph-flick-down:before{content:"\ed5e"}.nc-glyph-flick-left:before{content:"\ed5f"}.nc-glyph-flick-right:before{content:"\ed60"}.nc-glyph-flick-up:before{content:"\ed61"}.nc-glyph-flip-horizontal:before{content:"\ed63"}.nc-glyph-flip-vertical:before{content:"\ed62"}.nc-glyph-flip:before{content:"\ed64"}.nc-glyph-flower-05:before{content:"\ed66"}.nc-glyph-flower-06:before{content:"\ed65"}.nc-glyph-flower-07:before{content:"\ed67"}.nc-glyph-focus-32:before{content:"\ed68"}.nc-glyph-focus-38:before{content:"\ed69"}.nc-glyph-focus-40:before{content:"\ed6a"}.nc-glyph-focus-circle:before{content:"\ed6b"}.nc-glyph-focus:before{content:"\ed6c"}.nc-glyph-fog:before{content:"\ed6d"}.nc-glyph-folder-13:before{content:"\ed6e"}.nc-glyph-folder-14:before{content:"\ed6f"}.nc-glyph-folder-15:before{content:"\ed70"}.nc-glyph-folder-16:before{content:"\ed73"}.nc-glyph-folder-17:before{content:"\ed71"}.nc-glyph-folder-18:before{content:"\ed72"}.nc-glyph-folder-19:before{content:"\ed74"}.nc-glyph-folder-add:before{content:"\ed75"}.nc-glyph-folder-audio:before{content:"\ed76"}.nc-glyph-folder-bookmark:before{content:"\ed77"}.nc-glyph-folder-chart-bar:before{content:"\ed78"}.nc-glyph-folder-chart-pie:before{content:"\ed79"}.nc-glyph-folder-check:before{content:"\ed7a"}.nc-glyph-folder-cloud:before{content:"\ed7b"}.nc-glyph-folder-dev:before{content:"\ed7c"}.nc-glyph-folder-download:before{content:"\ed7d"}.nc-glyph-folder-edit:before{content:"\ed7e"}.nc-glyph-folder-exclamation:before{content:"\ed7f"}.nc-glyph-folder-gallery:before{content:"\ed80"}.nc-glyph-folder-heart:before{content:"\ed81"}.nc-glyph-folder-image:before{content:"\ed82"}.nc-glyph-folder-info:before{content:"\ed83"}.nc-glyph-folder-link:before{content:"\ed84"}.nc-glyph-folder-locked:before{content:"\ed85"}.nc-glyph-folder-money:before{content:"\ed86"}.nc-glyph-folder-music:before{content:"\ed87"}.nc-glyph-folder-no-access:before{content:"\ed88"}.nc-glyph-folder-play:before{content:"\ed89"}.nc-glyph-folder-question:before{content:"\ed8a"}.nc-glyph-folder-refresh:before{content:"\ed8b"}.nc-glyph-folder-remove:before{content:"\ed8c"}.nc-glyph-folder-search:before{content:"\ed8d"}.nc-glyph-folder-settings-81:before{content:"\ed8e"}.nc-glyph-folder-settings-97:before{content:"\ed8f"}.nc-glyph-folder-shared:before{content:"\ed90"}.nc-glyph-folder-star:before{content:"\ed91"}.nc-glyph-folder-time:before{content:"\ed92"}.nc-glyph-folder-upload:before{content:"\ed93"}.nc-glyph-folder-user:before{content:"\ed94"}.nc-glyph-folder-vector:before{content:"\ed95"}.nc-glyph-food-dog:before{content:"\ed96"}.nc-glyph-food-scale:before{content:"\ed97"}.nc-glyph-food:before{content:"\ed98"}.nc-glyph-football-headguard:before{content:"\ed99"}.nc-glyph-forecast:before{content:"\ed9a"}.nc-glyph-forest:before{content:"\ed9b"}.nc-glyph-fork-round:before{content:"\ed9c"}.nc-glyph-fork:before{content:"\ed9d"}.nc-glyph-form:before{content:"\ed9e"}.nc-glyph-format-left:before{content:"\ed9f"}.nc-glyph-format-right:before{content:"\eda0"}.nc-glyph-forward:before{content:"\eda1"}.nc-glyph-frame-12:before{content:"\eda2"}.nc-glyph-frame-41:before{content:"\eda3"}.nc-glyph-frame:before{content:"\eda4"}.nc-glyph-frankenstein:before{content:"\eda5"}.nc-glyph-fridge:before{content:"\eda6"}.nc-glyph-fuel-2:before{content:"\eda7"}.nc-glyph-fuel-electric:before{content:"\eda8"}.nc-glyph-fuel:before{content:"\eda9"}.nc-glyph-full-screen:before{content:"\edaa"}.nc-glyph-fullscreen-70:before{content:"\edab"}.nc-glyph-fullscreen-71:before{content:"\edac"}.nc-glyph-fullscreen-76:before{content:"\edad"}.nc-glyph-fullscreen-77:before{content:"\edae"}.nc-glyph-fullscreen-double-74:before{content:"\edaf"}.nc-glyph-fullscreen-double-75:before{content:"\edb0"}.nc-glyph-fullscreen-split-72:before{content:"\edb1"}.nc-glyph-fullscreen-split-73:before{content:"\edb2"}.nc-glyph-fullsize:before{content:"\edb3"}.nc-glyph-funnel-39:before{content:"\edb4"}.nc-glyph-funnel-40:before{content:"\edb5"}.nc-glyph-funnel-41:before{content:"\edb6"}.nc-glyph-gallery:before{content:"\edb7"}.nc-glyph-gantt:before{content:"\edb8"}.nc-glyph-garlic:before{content:"\edb9"}.nc-glyph-ghost-2:before{content:"\edba"}.nc-glyph-ghost:before{content:"\edbb"}.nc-glyph-gift-2:before{content:"\edbc"}.nc-glyph-gift-exchange:before{content:"\edbd"}.nc-glyph-gift:before{content:"\edbe"}.nc-glyph-git-commit:before{content:"\edbf"}.nc-glyph-glass-water:before{content:"\edc0"}.nc-glyph-glass:before{content:"\edc1"}.nc-glyph-glasses-2:before{content:"\edc2"}.nc-glyph-glasses:before{content:"\edc3"}.nc-glyph-globe-2:before{content:"\edc4"}.nc-glyph-globe:before{content:"\edc5"}.nc-glyph-glove:before{content:"\edc6"}.nc-glyph-gloves:before{content:"\edc7"}.nc-glyph-goal-64:before{content:"\edc8"}.nc-glyph-goal-65:before{content:"\edc9"}.nc-glyph-gold:before{content:"\edca"}.nc-glyph-golf:before{content:"\edcb"}.nc-glyph-gps:before{content:"\edcc"}.nc-glyph-grab:before{content:"\edcd"}.nc-glyph-gradient:before{content:"\edce"}.nc-glyph-grammar-check:before{content:"\edcf"}.nc-glyph-grape:before{content:"\edd0"}.nc-glyph-grave:before{content:"\edd1"}.nc-glyph-grid-45:before{content:"\edd2"}.nc-glyph-grid-46:before{content:"\edd3"}.nc-glyph-grid-48:before{content:"\edd4"}.nc-glyph-grid-49:before{content:"\edd5"}.nc-glyph-grid-50:before{content:"\edd6"}.nc-glyph-grid-square:before{content:"\edd7"}.nc-glyph-grid-system:before{content:"\edd8"}.nc-glyph-grid:before{content:"\edd9"}.nc-glyph-group:before{content:"\edda"}.nc-glyph-guitar:before{content:"\eddb"}.nc-glyph-hammer:before{content:"\eddc"}.nc-glyph-hand-card:before{content:"\eddd"}.nc-glyph-handout:before{content:"\edde"}.nc-glyph-handshake:before{content:"\eddf"}.nc-glyph-hanger-clothes:before{content:"\ede0"}.nc-glyph-hanger:before{content:"\ede1"}.nc-glyph-hannibal:before{content:"\ede2"}.nc-glyph-happy-sun:before{content:"\ede3"}.nc-glyph-hat-2:before{content:"\ede4"}.nc-glyph-hat-3:before{content:"\ede5"}.nc-glyph-hat-top:before{content:"\ede6"}.nc-glyph-hat:before{content:"\ede7"}.nc-glyph-hazelnut:before{content:"\ede8"}.nc-glyph-hdmi:before{content:"\ede9"}.nc-glyph-headphone:before{content:"\edea"}.nc-glyph-headphones-2:before{content:"\edeb"}.nc-glyph-headphones-mic:before{content:"\edec"}.nc-glyph-headphones:before{content:"\eded"}.nc-glyph-headset:before{content:"\edee"}.nc-glyph-heart-2:before{content:"\edef"}.nc-glyph-heart-add:before{content:"\edf0"}.nc-glyph-heart-remove:before{content:"\edf1"}.nc-glyph-heart:before{content:"\edf2"}.nc-glyph-heartbeat:before{content:"\edf3"}.nc-glyph-heater:before{content:"\edf4"}.nc-glyph-height:before{content:"\edf5"}.nc-glyph-helicopter:before{content:"\edf6"}.nc-glyph-helmet-2:before{content:"\edf7"}.nc-glyph-helmet:before{content:"\edf8"}.nc-glyph-hierarchy-53:before{content:"\edf9"}.nc-glyph-hierarchy-54:before{content:"\edfa"}.nc-glyph-hierarchy-55:before{content:"\edfb"}.nc-glyph-hierarchy-56:before{content:"\edfc"}.nc-glyph-hit-down:before{content:"\edfd"}.nc-glyph-hit-left:before{content:"\edfe"}.nc-glyph-hit-right:before{content:"\edff"}.nc-glyph-hit-up:before{content:"\ee00"}.nc-glyph-hob:before{content:"\ee01"}.nc-glyph-hockey:before{content:"\ee02"}.nc-glyph-hold:before{content:"\ee03"}.nc-glyph-home-2:before{content:"\ee04"}.nc-glyph-home-51:before{content:"\ee05"}.nc-glyph-home-52:before{content:"\ee06"}.nc-glyph-home-minimal:before{content:"\ee07"}.nc-glyph-home-search:before{content:"\ee08"}.nc-glyph-home-simple:before{content:"\ee09"}.nc-glyph-home:before{content:"\ee0a"}.nc-glyph-honey:before{content:"\ee0b"}.nc-glyph-hoodie:before{content:"\ee0c"}.nc-glyph-hospital-32:before{content:"\ee0d"}.nc-glyph-hospital-33:before{content:"\ee0e"}.nc-glyph-hospital-34:before{content:"\ee0f"}.nc-glyph-hot-dog:before{content:"\ee10"}.nc-glyph-hotel-bell:before{content:"\ee11"}.nc-glyph-hotel-symbol:before{content:"\ee12"}.nc-glyph-hotel:before{content:"\ee13"}.nc-glyph-hourglass:before{content:"\ee14"}.nc-glyph-html5:before{content:"\ee15"}.nc-glyph-humidity-26:before{content:"\ee16"}.nc-glyph-humidity-52:before{content:"\ee17"}.nc-glyph-hurricane-44:before{content:"\ee18"}.nc-glyph-hurricane-45:before{content:"\ee19"}.nc-glyph-hut:before{content:"\ee1a"}.nc-glyph-hybrid:before{content:"\ee1b"}.nc-glyph-ice-cream-22:before{content:"\ee1c"}.nc-glyph-ice-cream-72:before{content:"\ee1d"}.nc-glyph-ice-cream:before{content:"\ee1e"}.nc-glyph-igloo:before{content:"\ee1f"}.nc-glyph-image-01:before{content:"\ee20"}.nc-glyph-image-02:before{content:"\ee21"}.nc-glyph-image-05:before{content:"\ee22"}.nc-glyph-image-2:before{content:"\ee23"}.nc-glyph-image-3:before{content:"\ee24"}.nc-glyph-image-add:before{content:"\ee25"}.nc-glyph-image-delete:before{content:"\ee26"}.nc-glyph-image-location:before{content:"\ee27"}.nc-glyph-image:before{content:"\ee28"}.nc-glyph-infinite:before{content:"\ee29"}.nc-glyph-info:before{content:"\ee2a"}.nc-glyph-input-12:before{content:"\ee2b"}.nc-glyph-input-21:before{content:"\ee2c"}.nc-glyph-intestine:before{content:"\ee2d"}.nc-glyph-invert:before{content:"\ee2e"}.nc-glyph-iron-2:before{content:"\ee2f"}.nc-glyph-iron-dont:before{content:"\ee30"}.nc-glyph-iron:before{content:"\ee31"}.nc-glyph-istanbul:before{content:"\ee32"}.nc-glyph-italic:before{content:"\ee33"}.nc-glyph-jam:before{content:"\ee34"}.nc-glyph-jeans-41:before{content:"\ee35"}.nc-glyph-jeans-43:before{content:"\ee36"}.nc-glyph-jeans-pocket:before{content:"\ee37"}.nc-glyph-jelly:before{content:"\ee38"}.nc-glyph-jellyfish:before{content:"\ee39"}.nc-glyph-journey-04:before{content:"\ee3a"}.nc-glyph-journey-05:before{content:"\ee3b"}.nc-glyph-journey-06:before{content:"\ee3c"}.nc-glyph-journey-07:before{content:"\ee3d"}.nc-glyph-journey-08:before{content:"\ee3e"}.nc-glyph-juice:before{content:"\ee3f"}.nc-glyph-kettle:before{content:"\ee40"}.nc-glyph-kettlebell:before{content:"\ee41"}.nc-glyph-key-25:before{content:"\ee42"}.nc-glyph-key-26:before{content:"\ee43"}.nc-glyph-keyboard-hide:before{content:"\ee44"}.nc-glyph-keyboard-mouse:before{content:"\ee45"}.nc-glyph-keyboard-wifi:before{content:"\ee46"}.nc-glyph-keyboard-wireless:before{content:"\ee47"}.nc-glyph-keyboard:before{content:"\ee48"}.nc-glyph-kid-2:before{content:"\ee49"}.nc-glyph-kid:before{content:"\ee4a"}.nc-glyph-kiss:before{content:"\ee4b"}.nc-glyph-kitchen-fan:before{content:"\ee4c"}.nc-glyph-kitchen:before{content:"\ee4d"}.nc-glyph-kiwi:before{content:"\ee4e"}.nc-glyph-knife:before{content:"\ee4f"}.nc-glyph-knob:before{content:"\ee50"}.nc-glyph-l-add:before{content:"\ee51"}.nc-glyph-l-check:before{content:"\ee52"}.nc-glyph-l-circle:before{content:"\ee53"}.nc-glyph-l-circles:before{content:"\ee54"}.nc-glyph-l-location:before{content:"\ee55"}.nc-glyph-l-remove:before{content:"\ee56"}.nc-glyph-l-search:before{content:"\ee57"}.nc-glyph-l-security:before{content:"\ee58"}.nc-glyph-l-settings:before{content:"\ee59"}.nc-glyph-l-sync:before{content:"\ee5a"}.nc-glyph-l-system-update:before{content:"\ee5b"}.nc-glyph-lab:before{content:"\ee5c"}.nc-glyph-lamp-2:before{content:"\ee5d"}.nc-glyph-lamp-3:before{content:"\ee5e"}.nc-glyph-lamp-floor:before{content:"\ee5f"}.nc-glyph-lamp:before{content:"\ee60"}.nc-glyph-language:before{content:"\ee61"}.nc-glyph-laptop-1:before{content:"\ee62"}.nc-glyph-laptop-2:before{content:"\ee63"}.nc-glyph-laptop-71:before{content:"\ee64"}.nc-glyph-laptop-72:before{content:"\ee65"}.nc-glyph-laptop:before{content:"\ee66"}.nc-glyph-laugh-17:before{content:"\ee67"}.nc-glyph-laugh-35:before{content:"\ee68"}.nc-glyph-launch-11:before{content:"\ee69"}.nc-glyph-launch-47:before{content:"\ee6a"}.nc-glyph-law:before{content:"\ee6b"}.nc-glyph-layers-2:before{content:"\ee6c"}.nc-glyph-layers-3:before{content:"\ee6d"}.nc-glyph-layers:before{content:"\ee6e"}.nc-glyph-layout-11:before{content:"\ee6f"}.nc-glyph-layout-25:before{content:"\ee70"}.nc-glyph-leaf-36:before{content:"\ee71"}.nc-glyph-leaf-38:before{content:"\ee72"}.nc-glyph-leaf-80:before{content:"\ee73"}.nc-glyph-leaf-81:before{content:"\ee74"}.nc-glyph-leaf-edit:before{content:"\ee75"}.nc-glyph-lemon-slice:before{content:"\ee76"}.nc-glyph-lemon:before{content:"\ee77"}.nc-glyph-lens-31:before{content:"\ee78"}.nc-glyph-lens-56:before{content:"\ee79"}.nc-glyph-library:before{content:"\ee7a"}.nc-glyph-light-2:before{content:"\ee7b"}.nc-glyph-light-3:before{content:"\ee7c"}.nc-glyph-light-traffic:before{content:"\ee7d"}.nc-glyph-light:before{content:"\ee7e"}.nc-glyph-lighter:before{content:"\ee7f"}.nc-glyph-lighthouse:before{content:"\ee80"}.nc-glyph-like-2:before{content:"\ee81"}.nc-glyph-like-no:before{content:"\ee82"}.nc-glyph-like:before{content:"\ee83"}.nc-glyph-line-height:before{content:"\ee84"}.nc-glyph-lines:before{content:"\ee85"}.nc-glyph-link-2:before{content:"\ee86"}.nc-glyph-link-66:before{content:"\ee87"}.nc-glyph-link-67:before{content:"\ee88"}.nc-glyph-link-68:before{content:"\ee89"}.nc-glyph-link-69:before{content:"\ee8a"}.nc-glyph-link-71:before{content:"\ee8b"}.nc-glyph-link-72:before{content:"\ee8c"}.nc-glyph-link-broken-70:before{content:"\ee8d"}.nc-glyph-link-broken-73:before{content:"\ee8e"}.nc-glyph-link:before{content:"\ee8f"}.nc-glyph-list-bullet:before{content:"\ee90"}.nc-glyph-list-numbers:before{content:"\ee91"}.nc-glyph-list:before{content:"\ee92"}.nc-glyph-lobster:before{content:"\ee93"}.nc-glyph-lock-circle-open:before{content:"\ee94"}.nc-glyph-lock-circle:before{content:"\ee95"}.nc-glyph-lock-landscape:before{content:"\ee96"}.nc-glyph-lock-open:before{content:"\ee97"}.nc-glyph-lock-portrait:before{content:"\ee98"}.nc-glyph-lock:before{content:"\ee99"}.nc-glyph-locked:before{content:"\ee9a"}.nc-glyph-log-in:before{content:"\ee9b"}.nc-glyph-log-out-2:before{content:"\ee9c"}.nc-glyph-log-out:before{content:"\ee9d"}.nc-glyph-logo-500px:before{content:"\ee9e"}.nc-glyph-logo-angellist:before{content:"\ee9f"}.nc-glyph-logo-behance:before{content:"\eea0"}.nc-glyph-logo-blogger:before{content:"\eea1"}.nc-glyph-logo-buffer:before{content:"\eea2"}.nc-glyph-logo-buysellads:before{content:"\eea3"}.nc-glyph-logo-codepen:before{content:"\eea4"}.nc-glyph-logo-creative-market:before{content:"\eea5"}.nc-glyph-logo-crunchbase:before{content:"\eea6"}.nc-glyph-logo-deviantart:before{content:"\eea7"}.nc-glyph-logo-dribbble:before{content:"\eea8"}.nc-glyph-logo-dropbox:before{content:"\eea9"}.nc-glyph-logo-envato:before{content:"\eeaa"}.nc-glyph-logo-evernote:before{content:"\eeab"}.nc-glyph-logo-facebook:before{content:"\eeac"}.nc-glyph-logo-fb-simple:before{content:"\eead"}.nc-glyph-logo-feedly:before{content:"\eeae"}.nc-glyph-logo-flickr:before{content:"\eeaf"}.nc-glyph-logo-github:before{content:"\eeb0"}.nc-glyph-logo-google-plus:before{content:"\eeb1"}.nc-glyph-logo-instagram:before{content:"\eeb2"}.nc-glyph-logo-lastfm:before{content:"\eeb3"}.nc-glyph-logo-linkedin:before{content:"\eeb4"}.nc-glyph-logo-medium:before{content:"\eeb5"}.nc-glyph-logo-meetup:before{content:"\eeb6"}.nc-glyph-logo-messenger:before{content:"\eeb7"}.nc-glyph-logo-myspace:before{content:"\eeb8"}.nc-glyph-logo-paypal:before{content:"\eeb9"}.nc-glyph-logo-pinterest:before{content:"\eeba"}.nc-glyph-logo-product-hunt:before{content:"\eebb"}.nc-glyph-logo-qq:before{content:"\eebc"}.nc-glyph-logo-reddit:before{content:"\eebd"}.nc-glyph-logo-rss:before{content:"\eebe"}.nc-glyph-logo-shopify:before{content:"\eebf"}.nc-glyph-logo-skype:before{content:"\eec0"}.nc-glyph-logo-slack:before{content:"\eec1"}.nc-glyph-logo-soundcloud:before{content:"\eec2"}.nc-glyph-logo-spotify:before{content:"\eec3"}.nc-glyph-logo-squarespace:before{content:"\eec4"}.nc-glyph-logo-trello:before{content:"\eec5"}.nc-glyph-logo-tumblr:before{content:"\eec6"}.nc-glyph-logo-twitter:before{content:"\eec7"}.nc-glyph-logo-vimeo:before{content:"\eec8"}.nc-glyph-logo-vine:before{content:"\eec9"}.nc-glyph-logo-vk:before{content:"\eeca"}.nc-glyph-logo-wechat:before{content:"\eecb"}.nc-glyph-logo-weibo:before{content:"\eecc"}.nc-glyph-logo-whatsapp:before{content:"\eecd"}.nc-glyph-logo-wikipedia:before{content:"\eece"}.nc-glyph-logo-wordpress:before{content:"\eecf"}.nc-glyph-logo-yelp:before{content:"\eed0"}.nc-glyph-logo-youtube:before{content:"\eed1"}.nc-glyph-logout:before{content:"\eed2"}.nc-glyph-lollipop:before{content:"\eed3"}.nc-glyph-london:before{content:"\eed4"}.nc-glyph-long-sleeve:before{content:"\eed5"}.nc-glyph-loop-30:before{content:"\eed6"}.nc-glyph-loop-34:before{content:"\eed7"}.nc-glyph-loop-82:before{content:"\eed8"}.nc-glyph-loop-83:before{content:"\eed9"}.nc-glyph-loop:before{content:"\eeda"}.nc-glyph-luggage:before{content:"\eedb"}.nc-glyph-lungs:before{content:"\eedc"}.nc-glyph-m-add:before{content:"\eedd"}.nc-glyph-m-check:before{content:"\eede"}.nc-glyph-m-delete:before{content:"\eedf"}.nc-glyph-m-edit:before{content:"\eee0"}.nc-glyph-m-heart:before{content:"\eee1"}.nc-glyph-m-location:before{content:"\eee2"}.nc-glyph-m-remove:before{content:"\eee3"}.nc-glyph-m-search:before{content:"\eee4"}.nc-glyph-m-security:before{content:"\eee5"}.nc-glyph-m-settings:before{content:"\eee6"}.nc-glyph-m-share:before{content:"\eee7"}.nc-glyph-m-star:before{content:"\eee8"}.nc-glyph-m-sync:before{content:"\eee9"}.nc-glyph-m-time:before{content:"\eeea"}.nc-glyph-m-update:before{content:"\eeeb"}.nc-glyph-macro:before{content:"\eeec"}.nc-glyph-mad-12:before{content:"\eeed"}.nc-glyph-mad-58:before{content:"\eeee"}.nc-glyph-magnet:before{content:"\eeef"}.nc-glyph-makeup:before{content:"\eef0"}.nc-glyph-malicious:before{content:"\eef1"}.nc-glyph-man-20:before{content:"\eef2"}.nc-glyph-man-23:before{content:"\eef3"}.nc-glyph-man-down:before{content:"\eef4"}.nc-glyph-man-glasses:before{content:"\eef5"}.nc-glyph-man-up:before{content:"\eef6"}.nc-glyph-man:before{content:"\eef7"}.nc-glyph-manga-62:before{content:"\eef8"}.nc-glyph-manga-63:before{content:"\eef9"}.nc-glyph-map-big:before{content:"\eefa"}.nc-glyph-map-compass:before{content:"\eefb"}.nc-glyph-map-gps:before{content:"\eefc"}.nc-glyph-map-marker:before{content:"\eefd"}.nc-glyph-map-pin:before{content:"\eefe"}.nc-glyph-map:before{content:"\eeff"}.nc-glyph-margin-left:before{content:"\ef00"}.nc-glyph-margin-right:before{content:"\ef01"}.nc-glyph-marker-2:before{content:"\ef02"}.nc-glyph-marker-3:before{content:"\ef03"}.nc-glyph-marker:before{content:"\ef04"}.nc-glyph-market-music:before{content:"\ef05"}.nc-glyph-market-play:before{content:"\ef06"}.nc-glyph-mask-oval:before{content:"\ef07"}.nc-glyph-mask-rect:before{content:"\ef08"}.nc-glyph-matches:before{content:"\ef09"}.nc-glyph-math:before{content:"\ef0a"}.nc-glyph-measure-02:before{content:"\ef0b"}.nc-glyph-measure-17:before{content:"\ef0c"}.nc-glyph-measure-big:before{content:"\ef0d"}.nc-glyph-measuring-cup:before{content:"\ef0e"}.nc-glyph-meat-spit:before{content:"\ef0f"}.nc-glyph-meeting:before{content:"\ef10"}.nc-glyph-menu-34:before{content:"\ef11"}.nc-glyph-menu-35:before{content:"\ef12"}.nc-glyph-menu-bold:before{content:"\ef13"}.nc-glyph-menu-dots:before{content:"\ef14"}.nc-glyph-menu-left:before{content:"\ef15"}.nc-glyph-menu-right:before{content:"\ef16"}.nc-glyph-menu-square:before{content:"\ef17"}.nc-glyph-menu:before{content:"\ef18"}.nc-glyph-merge-2:before{content:"\ef19"}.nc-glyph-merge-round:before{content:"\ef1a"}.nc-glyph-merge:before{content:"\ef1b"}.nc-glyph-message:before{content:"\ef1c"}.nc-glyph-metrics:before{content:"\ef1d"}.nc-glyph-mic-2:before{content:"\ef1e"}.nc-glyph-mic:before{content:"\ef1f"}.nc-glyph-mickey-mouse:before{content:"\ef20"}.nc-glyph-microscope:before{content:"\ef21"}.nc-glyph-microsoft:before{content:"\ef22"}.nc-glyph-microwave:before{content:"\ef23"}.nc-glyph-milk:before{content:"\ef24"}.nc-glyph-minimal-down:before{content:"\ef25"}.nc-glyph-minimal-left:before{content:"\ef26"}.nc-glyph-minimal-right:before{content:"\ef27"}.nc-glyph-minimal-up:before{content:"\ef28"}.nc-glyph-mirror-2:before{content:"\ef29"}.nc-glyph-mirror:before{content:"\ef2a"}.nc-glyph-mistletoe:before{content:"\ef2b"}.nc-glyph-mixer:before{content:"\ef2c"}.nc-glyph-mobile-button:before{content:"\ef2d"}.nc-glyph-mobile-camera:before{content:"\ef2e"}.nc-glyph-mobile-card:before{content:"\ef2f"}.nc-glyph-mobile-contact:before{content:"\ef30"}.nc-glyph-mobile-design:before{content:"\ef31"}.nc-glyph-mobile-dev:before{content:"\ef32"}.nc-glyph-mobile-landscape:before{content:"\ef33"}.nc-glyph-mobile-recharger-08:before{content:"\ef34"}.nc-glyph-mobile-recharger-09:before{content:"\ef35"}.nc-glyph-mobile-toolbar:before{content:"\ef36"}.nc-glyph-mobile:before{content:"\ef37"}.nc-glyph-moka:before{content:"\ef38"}.nc-glyph-molecule-39:before{content:"\ef39"}.nc-glyph-molecule-40:before{content:"\ef3a"}.nc-glyph-molecule:before{content:"\ef3b"}.nc-glyph-money-11:before{content:"\ef3c"}.nc-glyph-money-12:before{content:"\ef3d"}.nc-glyph-money-13:before{content:"\ef3e"}.nc-glyph-money-bag:before{content:"\ef3f"}.nc-glyph-money-coins:before{content:"\ef40"}.nc-glyph-money-growth:before{content:"\ef41"}.nc-glyph-money-time:before{content:"\ef42"}.nc-glyph-money:before{content:"\ef43"}.nc-glyph-monster:before{content:"\ef44"}.nc-glyph-moon-cloud-drop:before{content:"\ef45"}.nc-glyph-moon-cloud-fog:before{content:"\ef46"}.nc-glyph-moon-cloud-hail:before{content:"\ef47"}.nc-glyph-moon-cloud-light:before{content:"\ef48"}.nc-glyph-moon-cloud-rain:before{content:"\ef49"}.nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}.nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}.nc-glyph-moon-fog:before{content:"\ef4c"}.nc-glyph-moon-full:before{content:"\ef4d"}.nc-glyph-moon-stars:before{content:"\ef4e"}.nc-glyph-moon:before{content:"\ef4f"}.nc-glyph-mosque:before{content:"\ef50"}.nc-glyph-moto:before{content:"\ef51"}.nc-glyph-mountain:before{content:"\ef52"}.nc-glyph-mouse-08:before{content:"\ef53"}.nc-glyph-mouse-09:before{content:"\ef54"}.nc-glyph-mouse-10:before{content:"\ef55"}.nc-glyph-mouse:before{content:"\ef56"}.nc-glyph-move-05:before{content:"\ef57"}.nc-glyph-move-06:before{content:"\ef58"}.nc-glyph-move-92:before{content:"\ef59"}.nc-glyph-move-down-2:before{content:"\ef5a"}.nc-glyph-move-down-right:before{content:"\ef5b"}.nc-glyph-move-down:before{content:"\ef5c"}.nc-glyph-move-left:before{content:"\ef5d"}.nc-glyph-move-right:before{content:"\ef5e"}.nc-glyph-move-up-2:before{content:"\ef5f"}.nc-glyph-move-up-left:before{content:"\ef60"}.nc-glyph-move-up:before{content:"\ef61"}.nc-glyph-movie-61:before{content:"\ef62"}.nc-glyph-movie-62:before{content:"\ef63"}.nc-glyph-muffin:before{content:"\ef64"}.nc-glyph-mug:before{content:"\ef65"}.nc-glyph-multiple-11:before{content:"\ef66"}.nc-glyph-multiple-19:before{content:"\ef67"}.nc-glyph-multiple:before{content:"\ef68"}.nc-glyph-mushroom:before{content:"\ef69"}.nc-glyph-music-2:before{content:"\ef6a"}.nc-glyph-music-album:before{content:"\ef6b"}.nc-glyph-music-cloud:before{content:"\ef6c"}.nc-glyph-music:before{content:"\ef6d"}.nc-glyph-navigation:before{content:"\ef6e"}.nc-glyph-needle:before{content:"\ef6f"}.nc-glyph-nerd-22:before{content:"\ef70"}.nc-glyph-nerd-23:before{content:"\ef71"}.nc-glyph-net:before{content:"\ef72"}.nc-glyph-network:before{content:"\ef73"}.nc-glyph-new:before{content:"\ef74"}.nc-glyph-newsletter-dev:before{content:"\ef75"}.nc-glyph-newsletter:before{content:"\ef76"}.nc-glyph-night:before{content:"\ef77"}.nc-glyph-ninja:before{content:"\ef78"}.nc-glyph-no-access:before{content:"\ef79"}.nc-glyph-no-words:before{content:"\ef7a"}.nc-glyph-node:before{content:"\ef7b"}.nc-glyph-note-03:before{content:"\ef7c"}.nc-glyph-note-04:before{content:"\ef7d"}.nc-glyph-note-code:before{content:"\ef7e"}.nc-glyph-notebook-2:before{content:"\ef7f"}.nc-glyph-notebook:before{content:"\ef80"}.nc-glyph-notepad:before{content:"\ef81"}.nc-glyph-notes:before{content:"\ef82"}.nc-glyph-notification-69:before{content:"\ef83"}.nc-glyph-notification-70:before{content:"\ef84"}.nc-glyph-nurse:before{content:"\ef85"}.nc-glyph-nutrition:before{content:"\ef86"}.nc-glyph-ny:before{content:"\ef87"}.nc-glyph-octopus:before{content:"\ef88"}.nc-glyph-oil:before{content:"\ef89"}.nc-glyph-onenote:before{content:"\ef8a"}.nc-glyph-onion:before{content:"\ef8b"}.nc-glyph-open-in-browser:before{content:"\ef8c"}.nc-glyph-opening-times:before{content:"\ef8d"}.nc-glyph-orange:before{content:"\ef8e"}.nc-glyph-organic-2:before{content:"\ef8f"}.nc-glyph-organic:before{content:"\ef90"}.nc-glyph-oven:before{content:"\ef91"}.nc-glyph-owl:before{content:"\ef93"}.nc-glyph-p-add:before{content:"\ef92"}.nc-glyph-p-check:before{content:"\ef94"}.nc-glyph-p-edit:before{content:"\ef95"}.nc-glyph-p-heart:before{content:"\ef96"}.nc-glyph-p-location:before{content:"\ef97"}.nc-glyph-p-remove:before{content:"\ef98"}.nc-glyph-p-search:before{content:"\ef99"}.nc-glyph-p-settings:before{content:"\ef9a"}.nc-glyph-p-share:before{content:"\ef9b"}.nc-glyph-p-sync:before{content:"\ef9c"}.nc-glyph-p-system-update:before{content:"\ef9d"}.nc-glyph-p-time:before{content:"\ef9e"}.nc-glyph-paint-16:before{content:"\ef9f"}.nc-glyph-paint-37:before{content:"\efa0"}.nc-glyph-paint-38:before{content:"\efa1"}.nc-glyph-paint-brush:before{content:"\efa2"}.nc-glyph-paint-bucket-39:before{content:"\efa3"}.nc-glyph-paint-bucket-40:before{content:"\efa4"}.nc-glyph-pajamas:before{content:"\efa5"}.nc-glyph-palette:before{content:"\efa6"}.nc-glyph-pan:before{content:"\efa7"}.nc-glyph-pancake:before{content:"\efa8"}.nc-glyph-panda:before{content:"\efa9"}.nc-glyph-panel:before{content:"\efaa"}.nc-glyph-pantone:before{content:"\efab"}.nc-glyph-paper-2:before{content:"\efac"}.nc-glyph-paper-design:before{content:"\efad"}.nc-glyph-paper-dev:before{content:"\efae"}.nc-glyph-paper-diploma:before{content:"\efaf"}.nc-glyph-paper:before{content:"\efb0"}.nc-glyph-paragraph:before{content:"\efb1"}.nc-glyph-parent:before{content:"\efb2"}.nc-glyph-paris-tower:before{content:"\efb3"}.nc-glyph-parking-sensors:before{content:"\efb4"}.nc-glyph-parking:before{content:"\efb5"}.nc-glyph-parrot:before{content:"\efb6"}.nc-glyph-passport:before{content:"\efb7"}.nc-glyph-pasta:before{content:"\efb8"}.nc-glyph-patch-19:before{content:"\efb9"}.nc-glyph-patch-34:before{content:"\efba"}.nc-glyph-patch:before{content:"\efbb"}.nc-glyph-path-exclude:before{content:"\efbc"}.nc-glyph-path-intersect:before{content:"\efbd"}.nc-glyph-path-minus:before{content:"\efbe"}.nc-glyph-path-unite:before{content:"\efbf"}.nc-glyph-paw:before{content:"\efc0"}.nc-glyph-payment:before{content:"\efc1"}.nc-glyph-pci-card:before{content:"\efc2"}.nc-glyph-peanut:before{content:"\efc3"}.nc-glyph-pear:before{content:"\efc4"}.nc-glyph-pen-01:before{content:"\efc5"}.nc-glyph-pen-23:before{content:"\efc6"}.nc-glyph-pen-tool:before{content:"\efc7"}.nc-glyph-pencil-47:before{content:"\efc8"}.nc-glyph-pencil:before{content:"\efc9"}.nc-glyph-penguin:before{content:"\efca"}.nc-glyph-pepper:before{content:"\efcb"}.nc-glyph-percentage-38:before{content:"\efcc"}.nc-glyph-percentage-39:before{content:"\efcd"}.nc-glyph-phone-2:before{content:"\efce"}.nc-glyph-phone-3:before{content:"\efcf"}.nc-glyph-phone-call-end:before{content:"\efd0"}.nc-glyph-phone-call:before{content:"\efd1"}.nc-glyph-phone:before{content:"\efd2"}.nc-glyph-photo-editor:before{content:"\efd3"}.nc-glyph-piano:before{content:"\efd4"}.nc-glyph-pickaxe:before{content:"\efd5"}.nc-glyph-pickle:before{content:"\efd6"}.nc-glyph-picnic-basket:before{content:"\efd7"}.nc-glyph-picture:before{content:"\efd8"}.nc-glyph-pig-2:before{content:"\efd9"}.nc-glyph-pig:before{content:"\efda"}.nc-glyph-pill-42:before{content:"\efdb"}.nc-glyph-pill-43:before{content:"\efdc"}.nc-glyph-pill-container-44:before{content:"\efdd"}.nc-glyph-pill-container-47:before{content:"\efde"}.nc-glyph-pin-2:before{content:"\efdf"}.nc-glyph-pin-3:before{content:"\efe0"}.nc-glyph-pin-4:before{content:"\efe1"}.nc-glyph-pin-add-2:before{content:"\efe2"}.nc-glyph-pin-add:before{content:"\efe3"}.nc-glyph-pin-check:before{content:"\efe4"}.nc-glyph-pin-copy:before{content:"\efe5"}.nc-glyph-pin-delete:before{content:"\efe6"}.nc-glyph-pin-edit:before{content:"\efe7"}.nc-glyph-pin-heart:before{content:"\efe8"}.nc-glyph-pin-remove-2:before{content:"\efe9"}.nc-glyph-pin-remove:before{content:"\efea"}.nc-glyph-pin-search:before{content:"\efeb"}.nc-glyph-pin-security:before{content:"\efec"}.nc-glyph-pin-settings:before{content:"\efed"}.nc-glyph-pin-share:before{content:"\efee"}.nc-glyph-pin-star:before{content:"\efef"}.nc-glyph-pin-sync:before{content:"\eff0"}.nc-glyph-pin-time:before{content:"\eff1"}.nc-glyph-pin-user:before{content:"\eff2"}.nc-glyph-pin:before{content:"\eff3"}.nc-glyph-pinch:before{content:"\eff4"}.nc-glyph-pineapple:before{content:"\eff5"}.nc-glyph-ping-pong:before{content:"\eff6"}.nc-glyph-pins:before{content:"\eff7"}.nc-glyph-pipe:before{content:"\eff8"}.nc-glyph-pirate:before{content:"\eff9"}.nc-glyph-pizza-slice:before{content:"\effa"}.nc-glyph-pizza:before{content:"\effb"}.nc-glyph-plane-17:before{content:"\effc"}.nc-glyph-plane-18:before{content:"\effd"}.nc-glyph-planet:before{content:"\effe"}.nc-glyph-plant-ground:before{content:"\efff"}.nc-glyph-plant-vase:before{content:"\f000"}.nc-glyph-plate:before{content:"\f001"}.nc-glyph-play-68:before{content:"\f002"}.nc-glyph-play-69:before{content:"\f003"}.nc-glyph-play:before{content:"\f004"}.nc-glyph-player-19:before{content:"\f005"}.nc-glyph-player-48:before{content:"\f006"}.nc-glyph-player:before{content:"\f007"}.nc-glyph-playlist:before{content:"\f008"}.nc-glyph-plug:before{content:"\f009"}.nc-glyph-podium-trophy:before{content:"\f00a"}.nc-glyph-podium:before{content:"\f00b"}.nc-glyph-point-a:before{content:"\f00c"}.nc-glyph-point-b:before{content:"\f00d"}.nc-glyph-polaroid-add:before{content:"\f00e"}.nc-glyph-polaroid-delete:before{content:"\f00f"}.nc-glyph-polaroid-multiple:before{content:"\f010"}.nc-glyph-polaroid-user:before{content:"\f011"}.nc-glyph-polaroid:before{content:"\f012"}.nc-glyph-police:before{content:"\f013"}.nc-glyph-pool:before{content:"\f014"}.nc-glyph-poop:before{content:"\f015"}.nc-glyph-popcorn:before{content:"\f016"}.nc-glyph-pos:before{content:"\f017"}.nc-glyph-position-marker:before{content:"\f018"}.nc-glyph-position-pin:before{content:"\f019"}.nc-glyph-position-user:before{content:"\f01a"}.nc-glyph-position:before{content:"\f01b"}.nc-glyph-pot:before{content:"\f01c"}.nc-glyph-potato:before{content:"\f01d"}.nc-glyph-power-level:before{content:"\f01e"}.nc-glyph-preferences-circle-rotate:before{content:"\f01f"}.nc-glyph-preferences-circle:before{content:"\f020"}.nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}.nc-glyph-preferences-container-circle:before{content:"\f022"}.nc-glyph-preferences-container-rotate:before{content:"\f023"}.nc-glyph-preferences-container:before{content:"\f024"}.nc-glyph-preferences-rotate:before{content:"\f025"}.nc-glyph-preferences:before{content:"\f026"}.nc-glyph-print:before{content:"\f027"}.nc-glyph-printer:before{content:"\f028"}.nc-glyph-priority-high:before{content:"\f029"}.nc-glyph-priority-low:before{content:"\f02a"}.nc-glyph-progress:before{content:"\f02b"}.nc-glyph-prosciutto:before{content:"\f02c"}.nc-glyph-prototype:before{content:"\f02d"}.nc-glyph-pulse-chart:before{content:"\f02e"}.nc-glyph-pulse-phone:before{content:"\f02f"}.nc-glyph-pulse-sleep:before{content:"\f030"}.nc-glyph-pulse-watch:before{content:"\f031"}.nc-glyph-pulse:before{content:"\f032"}.nc-glyph-pumpkin:before{content:"\f033"}.nc-glyph-push-next:before{content:"\f034"}.nc-glyph-push-previous:before{content:"\f035"}.nc-glyph-puzzle-09:before{content:"\f036"}.nc-glyph-puzzle-10:before{content:"\f037"}.nc-glyph-puzzled:before{content:"\f038"}.nc-glyph-pyramid:before{content:"\f039"}.nc-glyph-question:before{content:"\f03a"}.nc-glyph-quite-happy:before{content:"\f03b"}.nc-glyph-quote:before{content:"\f03c"}.nc-glyph-rabbit:before{content:"\f03d"}.nc-glyph-rackets:before{content:"\f03e"}.nc-glyph-radar:before{content:"\f03f"}.nc-glyph-radiation:before{content:"\f040"}.nc-glyph-radio:before{content:"\f041"}.nc-glyph-rain-hail:before{content:"\f042"}.nc-glyph-rain:before{content:"\f043"}.nc-glyph-rainbow:before{content:"\f044"}.nc-glyph-ram:before{content:"\f045"}.nc-glyph-rat:before{content:"\f046"}.nc-glyph-receipt-list-42:before{content:"\f047"}.nc-glyph-receipt-list-43:before{content:"\f048"}.nc-glyph-receipt:before{content:"\f049"}.nc-glyph-recipe-book-46:before{content:"\f04a"}.nc-glyph-recipe-book-47:before{content:"\f04b"}.nc-glyph-recipe-create:before{content:"\f04c"}.nc-glyph-recipe:before{content:"\f04d"}.nc-glyph-recycling:before{content:"\f04e"}.nc-glyph-redo-10:before{content:"\f04f"}.nc-glyph-redo-26:before{content:"\f050"}.nc-glyph-redo-79:before{content:"\f051"}.nc-glyph-redo-81:before{content:"\f052"}.nc-glyph-refresh-01:before{content:"\f053"}.nc-glyph-refresh-02:before{content:"\f054"}.nc-glyph-refresh-68:before{content:"\f055"}.nc-glyph-refresh-69:before{content:"\f056"}.nc-glyph-refresh:before{content:"\f057"}.nc-glyph-reload:before{content:"\f058"}.nc-glyph-remix:before{content:"\f059"}.nc-glyph-remote:before{content:"\f05a"}.nc-glyph-remove:before{content:"\f05b"}.nc-glyph-replace-folder:before{content:"\f05c"}.nc-glyph-replace:before{content:"\f05d"}.nc-glyph-replay:before{content:"\f05e"}.nc-glyph-reply-all:before{content:"\f05f"}.nc-glyph-reply:before{content:"\f060"}.nc-glyph-reservation:before{content:"\f061"}.nc-glyph-resize-h:before{content:"\f062"}.nc-glyph-resize-v:before{content:"\f063"}.nc-glyph-restaurant-menu:before{content:"\f064"}.nc-glyph-restore:before{content:"\f065"}.nc-glyph-rice:before{content:"\f066"}.nc-glyph-rim:before{content:"\f067"}.nc-glyph-ring:before{content:"\f068"}.nc-glyph-rio:before{content:"\f069"}.nc-glyph-ripples:before{content:"\f06a"}.nc-glyph-road-2:before{content:"\f06b"}.nc-glyph-road-sign-left:before{content:"\f06c"}.nc-glyph-road-sign-right:before{content:"\f06d"}.nc-glyph-road:before{content:"\f06e"}.nc-glyph-roast-chicken:before{content:"\f06f"}.nc-glyph-robot:before{content:"\f070"}.nc-glyph-rock:before{content:"\f071"}.nc-glyph-roll:before{content:"\f072"}.nc-glyph-rolling-pin:before{content:"\f073"}.nc-glyph-rome:before{content:"\f074"}.nc-glyph-rope:before{content:"\f075"}.nc-glyph-rotate-22:before{content:"\f076"}.nc-glyph-rotate-23:before{content:"\f077"}.nc-glyph-rotate-left-2:before{content:"\f078"}.nc-glyph-rotate-left:before{content:"\f079"}.nc-glyph-rotate-lock:before{content:"\f07a"}.nc-glyph-rotate-right-2:before{content:"\f07b"}.nc-glyph-rotate-right:before{content:"\f07c"}.nc-glyph-rotate:before{content:"\f07d"}.nc-glyph-round-dollar:before{content:"\f07e"}.nc-glyph-round-down:before{content:"\f07f"}.nc-glyph-round-euro:before{content:"\f080"}.nc-glyph-round-left-down:before{content:"\f081"}.nc-glyph-round-left:before{content:"\f082"}.nc-glyph-round-pound:before{content:"\f083"}.nc-glyph-round-right-down:before{content:"\f084"}.nc-glyph-round-right:before{content:"\f085"}.nc-glyph-round-up-left:before{content:"\f086"}.nc-glyph-round-up-right:before{content:"\f087"}.nc-glyph-round-up:before{content:"\f088"}.nc-glyph-round-yen:before{content:"\f089"}.nc-glyph-route-alert:before{content:"\f08a"}.nc-glyph-route-close:before{content:"\f08b"}.nc-glyph-route-open:before{content:"\f08c"}.nc-glyph-rowing:before{content:"\f08d"}.nc-glyph-rugby:before{content:"\f08e"}.nc-glyph-ruler-pencil:before{content:"\f08f"}.nc-glyph-sad:before{content:"\f090"}.nc-glyph-safe:before{content:"\f091"}.nc-glyph-salad:before{content:"\f092"}.nc-glyph-sale:before{content:"\f093"}.nc-glyph-salt:before{content:"\f094"}.nc-glyph-santa-hat:before{content:"\f095"}.nc-glyph-satisfied:before{content:"\f096"}.nc-glyph-sausage:before{content:"\f097"}.nc-glyph-save-planet:before{content:"\f098"}.nc-glyph-scale-2:before{content:"\f099"}.nc-glyph-scale-3:before{content:"\f09a"}.nc-glyph-scale-4:before{content:"\f09b"}.nc-glyph-scale-down:before{content:"\f09c"}.nc-glyph-scale-horizontal:before{content:"\f09d"}.nc-glyph-scale-up:before{content:"\f09e"}.nc-glyph-scale-vertical:before{content:"\f09f"}.nc-glyph-scale:before{content:"\f0a0"}.nc-glyph-scan:before{content:"\f0a1"}.nc-glyph-scarf:before{content:"\f0a2"}.nc-glyph-school:before{content:"\f0a3"}.nc-glyph-scissors-dashed:before{content:"\f0a4"}.nc-glyph-scissors:before{content:"\f0a5"}.nc-glyph-scotch:before{content:"\f0a6"}.nc-glyph-scroll-horitontal:before{content:"\f0a7"}.nc-glyph-scroll-vertical:before{content:"\f0a8"}.nc-glyph-sd:before{content:"\f0a9"}.nc-glyph-sea-mask:before{content:"\f0aa"}.nc-glyph-search-2:before{content:"\f0ab"}.nc-glyph-search-3:before{content:"\f0ac"}.nc-glyph-search:before{content:"\f0ad"}.nc-glyph-seat:before{content:"\f0ae"}.nc-glyph-seatbelt:before{content:"\f0af"}.nc-glyph-security:before{content:"\f0b0"}.nc-glyph-segmentation:before{content:"\f0b1"}.nc-glyph-select-83:before{content:"\f0b2"}.nc-glyph-select-84:before{content:"\f0b3"}.nc-glyph-select:before{content:"\f0b4"}.nc-glyph-selection:before{content:"\f0b5"}.nc-glyph-selfie:before{content:"\f0b6"}.nc-glyph-send-2:before{content:"\f0b7"}.nc-glyph-send:before{content:"\f0b8"}.nc-glyph-sensor:before{content:"\f0b9"}.nc-glyph-separate-round:before{content:"\f0ba"}.nc-glyph-separate:before{content:"\f0bb"}.nc-glyph-settings-46:before{content:"\f0bc"}.nc-glyph-settings-99:before{content:"\f0bd"}.nc-glyph-settings-gear-63:before{content:"\f0be"}.nc-glyph-settings-gear-64:before{content:"\f0bf"}.nc-glyph-settings-gear-65:before{content:"\f0c0"}.nc-glyph-settings-tool-66:before{content:"\f0c1"}.nc-glyph-settings-tool-67:before{content:"\f0c2"}.nc-glyph-settings:before{content:"\f0c3"}.nc-glyph-sf-bridge:before{content:"\f0c4"}.nc-glyph-shake:before{content:"\f0c5"}.nc-glyph-shaker:before{content:"\f0c6"}.nc-glyph-shape-adjust:before{content:"\f0c7"}.nc-glyph-shape-arrow:before{content:"\f0c8"}.nc-glyph-shape-circle:before{content:"\f0c9"}.nc-glyph-shape-custom:before{content:"\f0ca"}.nc-glyph-shape-line:before{content:"\f0cb"}.nc-glyph-shape-oval:before{content:"\f0cc"}.nc-glyph-shape-polygon-2:before{content:"\f0cd"}.nc-glyph-shape-polygon:before{content:"\f0ce"}.nc-glyph-shape-rectangle:before{content:"\f0cf"}.nc-glyph-shape-square:before{content:"\f0d0"}.nc-glyph-shape-star:before{content:"\f0d1"}.nc-glyph-shape-triangle-2:before{content:"\f0d2"}.nc-glyph-shape-triangle:before{content:"\f0d3"}.nc-glyph-shapes:before{content:"\f0d4"}.nc-glyph-share-2:before{content:"\f0d5"}.nc-glyph-share-66:before{content:"\f0d6"}.nc-glyph-share-91:before{content:"\f0d7"}.nc-glyph-share-92:before{content:"\f0d8"}.nc-glyph-share-bold:before{content:"\f0d9"}.nc-glyph-share-left:before{content:"\f0da"}.nc-glyph-share-right:before{content:"\f0db"}.nc-glyph-share:before{content:"\f0dc"}.nc-glyph-shared:before{content:"\f0dd"}.nc-glyph-shark-2:before{content:"\f0de"}.nc-glyph-shark:before{content:"\f0df"}.nc-glyph-sharpener:before{content:"\f0e0"}.nc-glyph-sheep:before{content:"\f0e1"}.nc-glyph-shirt-business:before{content:"\f0e2"}.nc-glyph-shirt-buttons:before{content:"\f0e3"}.nc-glyph-shirt-neck:before{content:"\f0e4"}.nc-glyph-shirt:before{content:"\f0e5"}.nc-glyph-shoe-man:before{content:"\f0e6"}.nc-glyph-shoe-run:before{content:"\f0e7"}.nc-glyph-shoe-sport:before{content:"\f0e8"}.nc-glyph-shoe-woman:before{content:"\f0e9"}.nc-glyph-shop-location:before{content:"\f0ea"}.nc-glyph-shop:before{content:"\f0eb"}.nc-glyph-shovel:before{content:"\f0ec"}.nc-glyph-shower:before{content:"\f0ed"}.nc-glyph-shrimp:before{content:"\f0ee"}.nc-glyph-shuffle-01:before{content:"\f0ef"}.nc-glyph-shuffle-35:before{content:"\f0f0"}.nc-glyph-shuffle-97:before{content:"\f0f1"}.nc-glyph-shuffle-98:before{content:"\f0f2"}.nc-glyph-shy:before{content:"\f0f3"}.nc-glyph-sick:before{content:"\f0f4"}.nc-glyph-sickle:before{content:"\f0f5"}.nc-glyph-sidebar:before{content:"\f0f6"}.nc-glyph-sign-board:before{content:"\f0f7"}.nc-glyph-sign:before{content:"\f0f8"}.nc-glyph-signal-2:before{content:"\f0f9"}.nc-glyph-signal:before{content:"\f0fa"}.nc-glyph-signature:before{content:"\f0fb"}.nc-glyph-silly:before{content:"\f0fc"}.nc-glyph-sim-card:before{content:"\f0fd"}.nc-glyph-simple-add:before{content:"\f0fe"}.nc-glyph-simple-delete:before{content:"\f0ff"}.nc-glyph-simple-down:before{content:"\f100"}.nc-glyph-simple-left:before{content:"\f101"}.nc-glyph-simple-remove:before{content:"\f102"}.nc-glyph-simple-right:before{content:"\f103"}.nc-glyph-simple-up:before{content:"\f104"}.nc-glyph-single-01:before{content:"\f105"}.nc-glyph-single-02:before{content:"\f106"}.nc-glyph-single-03:before{content:"\f107"}.nc-glyph-single-04:before{content:"\f108"}.nc-glyph-single-05:before{content:"\f109"}.nc-glyph-single-body:before{content:"\f10a"}.nc-glyph-single-content-02:before{content:"\f10b"}.nc-glyph-single-content-03:before{content:"\f10c"}.nc-glyph-single-copies:before{content:"\f10d"}.nc-glyph-single-copy-04:before{content:"\f10e"}.nc-glyph-single-copy-06:before{content:"\f10f"}.nc-glyph-single-folded-content:before{content:"\f110"}.nc-glyph-single-folded:before{content:"\f111"}.nc-glyph-single-paragraph:before{content:"\f112"}.nc-glyph-single-position:before{content:"\f113"}.nc-glyph-single:before{content:"\f114"}.nc-glyph-sink-wash:before{content:"\f115"}.nc-glyph-sink:before{content:"\f116"}.nc-glyph-size-large:before{content:"\f117"}.nc-glyph-size-medium:before{content:"\f118"}.nc-glyph-size-small:before{content:"\f119"}.nc-glyph-size:before{content:"\f11a"}.nc-glyph-skateboard-2:before{content:"\f11b"}.nc-glyph-skateboard:before{content:"\f11c"}.nc-glyph-skew-down:before{content:"\f11d"}.nc-glyph-skew-left:before{content:"\f11e"}.nc-glyph-skew-right:before{content:"\f11f"}.nc-glyph-skew-up:before{content:"\f120"}.nc-glyph-skirt:before{content:"\f121"}.nc-glyph-skull-2:before{content:"\f122"}.nc-glyph-skull:before{content:"\f123"}.nc-glyph-slacks-12:before{content:"\f124"}.nc-glyph-slacks-13:before{content:"\f125"}.nc-glyph-sleep-2:before{content:"\f126"}.nc-glyph-sleep:before{content:"\f127"}.nc-glyph-slice:before{content:"\f128"}.nc-glyph-slide-left:before{content:"\f129"}.nc-glyph-slide-right:before{content:"\f12a"}.nc-glyph-slider:before{content:"\f12b"}.nc-glyph-sloth:before{content:"\f12c"}.nc-glyph-small-add:before{content:"\f12d"}.nc-glyph-small-delete:before{content:"\f12e"}.nc-glyph-small-down:before{content:"\f12f"}.nc-glyph-small-left:before{content:"\f130"}.nc-glyph-small-remove:before{content:"\f131"}.nc-glyph-small-right:before{content:"\f132"}.nc-glyph-small-triangle-down:before{content:"\f133"}.nc-glyph-small-triangle-left:before{content:"\f134"}.nc-glyph-small-triangle-right:before{content:"\f135"}.nc-glyph-small-triangle-up:before{content:"\f136"}.nc-glyph-small-up:before{content:"\f137"}.nc-glyph-smart:before{content:"\f138"}.nc-glyph-smile:before{content:"\f139"}.nc-glyph-smoothie:before{content:"\f13a"}.nc-glyph-snack:before{content:"\f13b"}.nc-glyph-snake:before{content:"\f13c"}.nc-glyph-snow-ball:before{content:"\f13d"}.nc-glyph-snow:before{content:"\f13e"}.nc-glyph-snowboard:before{content:"\f13f"}.nc-glyph-snowman-head:before{content:"\f140"}.nc-glyph-snowman:before{content:"\f141"}.nc-glyph-soak:before{content:"\f142"}.nc-glyph-soccer-field:before{content:"\f143"}.nc-glyph-sock:before{content:"\f144"}.nc-glyph-socket-europe-1:before{content:"\f145"}.nc-glyph-socket-europe-2:before{content:"\f146"}.nc-glyph-socket-uk:before{content:"\f147"}.nc-glyph-socket:before{content:"\f148"}.nc-glyph-sofa:before{content:"\f149"}.nc-glyph-soldier:before{content:"\f14a"}.nc-glyph-sound-wave:before{content:"\f14b"}.nc-glyph-soup:before{content:"\f14c"}.nc-glyph-soy-sauce:before{content:"\f14d"}.nc-glyph-spa:before{content:"\f14e"}.nc-glyph-spaceship:before{content:"\f14f"}.nc-glyph-speaker-01:before{content:"\f150"}.nc-glyph-speaker-05:before{content:"\f151"}.nc-glyph-speaker:before{content:"\f152"}.nc-glyph-speechless:before{content:"\f153"}.nc-glyph-spider:before{content:"\f154"}.nc-glyph-spiteful:before{content:"\f155"}.nc-glyph-split-33:before{content:"\f156"}.nc-glyph-split-37:before{content:"\f157"}.nc-glyph-split-horizontal:before{content:"\f158"}.nc-glyph-split-round:before{content:"\f159"}.nc-glyph-split-vertical:before{content:"\f15a"}.nc-glyph-split:before{content:"\f15b"}.nc-glyph-sport:before{content:"\f15c"}.nc-glyph-spray-2:before{content:"\f15d"}.nc-glyph-spray:before{content:"\f15e"}.nc-glyph-square-add-08:before{content:"\f15f"}.nc-glyph-square-add-11:before{content:"\f160"}.nc-glyph-square-corner-down-left:before{content:"\f161"}.nc-glyph-square-corner-down-right:before{content:"\f162"}.nc-glyph-square-corner-up-left:before{content:"\f163"}.nc-glyph-square-corner-up-right:before{content:"\f164"}.nc-glyph-square-delete-10:before{content:"\f165"}.nc-glyph-square-delete-13:before{content:"\f166"}.nc-glyph-square-down-06:before{content:"\f167"}.nc-glyph-square-down:before{content:"\f168"}.nc-glyph-square-download:before{content:"\f169"}.nc-glyph-square-left-04:before{content:"\f16a"}.nc-glyph-square-left:before{content:"\f16b"}.nc-glyph-square-marker:before{content:"\f16c"}.nc-glyph-square-pin:before{content:"\f16d"}.nc-glyph-square-remove-09:before{content:"\f16e"}.nc-glyph-square-remove-12:before{content:"\f16f"}.nc-glyph-square-right-03:before{content:"\f170"}.nc-glyph-square-right:before{content:"\f171"}.nc-glyph-square-simple-down:before{content:"\f172"}.nc-glyph-square-simple-left:before{content:"\f173"}.nc-glyph-square-simple-right:before{content:"\f174"}.nc-glyph-square-simple-up:before{content:"\f175"}.nc-glyph-square-up-05:before{content:"\f176"}.nc-glyph-square-up:before{content:"\f177"}.nc-glyph-square-upload:before{content:"\f178"}.nc-glyph-squares:before{content:"\f179"}.nc-glyph-stamp:before{content:"\f17a"}.nc-glyph-standing-man:before{content:"\f17b"}.nc-glyph-standing-woman:before{content:"\f17c"}.nc-glyph-star:before{content:"\f17d"}.nc-glyph-steak-2:before{content:"\f17e"}.nc-glyph-steak:before{content:"\f17f"}.nc-glyph-steering-wheel:before{content:"\f180"}.nc-glyph-steps:before{content:"\f181"}.nc-glyph-stock-2:before{content:"\f182"}.nc-glyph-stock:before{content:"\f183"}.nc-glyph-storage-hanger:before{content:"\f184"}.nc-glyph-storage:before{content:"\f185"}.nc-glyph-store:before{content:"\f186"}.nc-glyph-strategy:before{content:"\f187"}.nc-glyph-strawberry:before{content:"\f188"}.nc-glyph-stre-down:before{content:"\f189"}.nc-glyph-stre-left:before{content:"\f18a"}.nc-glyph-stre-right:before{content:"\f18b"}.nc-glyph-stre-up:before{content:"\f18c"}.nc-glyph-stretch:before{content:"\f18d"}.nc-glyph-strikethrough:before{content:"\f18e"}.nc-glyph-strong-down:before{content:"\f18f"}.nc-glyph-strong-left:before{content:"\f190"}.nc-glyph-strong-right:before{content:"\f191"}.nc-glyph-strong-up:before{content:"\f192"}.nc-glyph-subscript:before{content:"\f193"}.nc-glyph-subtitles:before{content:"\f194"}.nc-glyph-sugar:before{content:"\f195"}.nc-glyph-sun-cloud-drop:before{content:"\f196"}.nc-glyph-sun-cloud-fog:before{content:"\f197"}.nc-glyph-sun-cloud-hail:before{content:"\f198"}.nc-glyph-sun-cloud-light:before{content:"\f199"}.nc-glyph-sun-cloud-rain:before{content:"\f19a"}.nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}.nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}.nc-glyph-sun-cloud:before{content:"\f19d"}.nc-glyph-sun-fog-29:before{content:"\f19e"}.nc-glyph-sun-fog-30:before{content:"\f19f"}.nc-glyph-sun-fog-43:before{content:"\f1a0"}.nc-glyph-sunglasses-48:before{content:"\f1a1"}.nc-glyph-sunglasses-49:before{content:"\f1a2"}.nc-glyph-sunglasses:before{content:"\f1a3"}.nc-glyph-superscript:before{content:"\f1a4"}.nc-glyph-supplement:before{content:"\f1a5"}.nc-glyph-support-16:before{content:"\f1a6"}.nc-glyph-support-17:before{content:"\f1a7"}.nc-glyph-surf-2:before{content:"\f1a8"}.nc-glyph-surf:before{content:"\f1a9"}.nc-glyph-surprise:before{content:"\f1aa"}.nc-glyph-sushi:before{content:"\f1ab"}.nc-glyph-swap-horizontal:before{content:"\f1ac"}.nc-glyph-swap-vertical:before{content:"\f1ad"}.nc-glyph-swimsuit:before{content:"\f1ae"}.nc-glyph-swimwear:before{content:"\f1af"}.nc-glyph-swipe-bottom:before{content:"\f1b0"}.nc-glyph-swipe-left:before{content:"\f1b1"}.nc-glyph-swipe-right:before{content:"\f1b2"}.nc-glyph-swipe-up:before{content:"\f1b3"}.nc-glyph-swiss-knife:before{content:"\f1b4"}.nc-glyph-sync:before{content:"\f1b5"}.nc-glyph-syringe:before{content:"\f1b6"}.nc-glyph-system-update:before{content:"\f1b7"}.nc-glyph-table-left:before{content:"\f1b8"}.nc-glyph-table-right:before{content:"\f1b9"}.nc-glyph-table:before{content:"\f1ba"}.nc-glyph-tablet-2:before{content:"\f1bb"}.nc-glyph-tablet-button:before{content:"\f1bc"}.nc-glyph-tablet-mobile:before{content:"\f1bd"}.nc-glyph-tablet-reader-31:before{content:"\f1be"}.nc-glyph-tablet-reader-42:before{content:"\f1bf"}.nc-glyph-tablet-toolbar:before{content:"\f1c0"}.nc-glyph-tablet:before{content:"\f1c1"}.nc-glyph-tacos:before{content:"\f1c2"}.nc-glyph-tactic:before{content:"\f1c3"}.nc-glyph-tag-2:before{content:"\f1c4"}.nc-glyph-tag-add:before{content:"\f1c5"}.nc-glyph-tag-check:before{content:"\f1c6"}.nc-glyph-tag-content:before{content:"\f1c7"}.nc-glyph-tag-cut:before{content:"\f1c8"}.nc-glyph-tag-line:before{content:"\f1c9"}.nc-glyph-tag-loyalty:before{content:"\f1ca"}.nc-glyph-tag-remove:before{content:"\f1cb"}.nc-glyph-tag-sale:before{content:"\f1cc"}.nc-glyph-tag:before{content:"\f1cd"}.nc-glyph-tail-down:before{content:"\f1ce"}.nc-glyph-tail-left:before{content:"\f1cf"}.nc-glyph-tail-right:before{content:"\f1d0"}.nc-glyph-tail-triangle-down:before{content:"\f1d1"}.nc-glyph-tail-triangle-left:before{content:"\f1d2"}.nc-glyph-tail-triangle-right:before{content:"\f1d3"}.nc-glyph-tail-triangle-up:before{content:"\f1d4"}.nc-glyph-tail-up:before{content:"\f1d5"}.nc-glyph-tap-01:before{content:"\f1d6"}.nc-glyph-tap-02:before{content:"\f1d7"}.nc-glyph-tape:before{content:"\f1d8"}.nc-glyph-target:before{content:"\f1d9"}.nc-glyph-tea-bag:before{content:"\f1da"}.nc-glyph-tea:before{content:"\f1db"}.nc-glyph-temperature-23:before{content:"\f1dc"}.nc-glyph-temperature-24:before{content:"\f1dd"}.nc-glyph-temple-25:before{content:"\f1de"}.nc-glyph-tennis-ball:before{content:"\f1df"}.nc-glyph-tennis:before{content:"\f1e0"}.nc-glyph-terrace:before{content:"\f1e1"}.nc-glyph-text-2:before{content:"\f1e2"}.nc-glyph-text:before{content:"\f1e3"}.nc-glyph-texture:before{content:"\f1e4"}.nc-glyph-ticket-75:before{content:"\f1e5"}.nc-glyph-ticket-76:before{content:"\f1e6"}.nc-glyph-tie-01:before{content:"\f1e7"}.nc-glyph-tie-02:before{content:"\f1e8"}.nc-glyph-tie-bow:before{content:"\f1e9"}.nc-glyph-tile-55:before{content:"\f1ea"}.nc-glyph-time-2:before{content:"\f1eb"}.nc-glyph-time-3:before{content:"\f1ec"}.nc-glyph-time-alarm:before{content:"\f1ed"}.nc-glyph-time-clock:before{content:"\f1ee"}.nc-glyph-time-countdown:before{content:"\f1ef"}.nc-glyph-time:before{content:"\f1f0"}.nc-glyph-timeline:before{content:"\f1f1"}.nc-glyph-timer:before{content:"\f1f2"}.nc-glyph-todo:before{content:"\f1f3"}.nc-glyph-toilet-paper:before{content:"\f1f4"}.nc-glyph-toilet:before{content:"\f1f5"}.nc-glyph-tomato:before{content:"\f1f6"}.nc-glyph-tool-blur:before{content:"\f1f7"}.nc-glyph-tool-hand:before{content:"\f1f8"}.nc-glyph-tool-select:before{content:"\f1f9"}.nc-glyph-tooth:before{content:"\f1fa"}.nc-glyph-touch:before{content:"\f1fb"}.nc-glyph-track-delivery:before{content:"\f1fc"}.nc-glyph-tracking:before{content:"\f1fd"}.nc-glyph-tractor:before{content:"\f1fe"}.nc-glyph-train-speed:before{content:"\f1ff"}.nc-glyph-train:before{content:"\f200"}.nc-glyph-tram:before{content:"\f201"}.nc-glyph-transform-2d:before{content:"\f202"}.nc-glyph-transform-origin:before{content:"\f203"}.nc-glyph-transform:before{content:"\f204"}.nc-glyph-transparent:before{content:"\f205"}.nc-glyph-trash-round:before{content:"\f206"}.nc-glyph-trash-simple:before{content:"\f207"}.nc-glyph-trash:before{content:"\f208"}.nc-glyph-treasure-map-21:before{content:"\f209"}.nc-glyph-treasure-map-40:before{content:"\f20a"}.nc-glyph-tree-01:before{content:"\f20b"}.nc-glyph-tree-02:before{content:"\f20c"}.nc-glyph-tree-03:before{content:"\f20d"}.nc-glyph-tree-ball:before{content:"\f20e"}.nc-glyph-tree:before{content:"\f20f"}.nc-glyph-trend-down:before{content:"\f210"}.nc-glyph-trend-up:before{content:"\f211"}.nc-glyph-triangle-down-20:before{content:"\f212"}.nc-glyph-triangle-down-65:before{content:"\f213"}.nc-glyph-triangle-down:before{content:"\f214"}.nc-glyph-triangle-left-18:before{content:"\f215"}.nc-glyph-triangle-left-63:before{content:"\f216"}.nc-glyph-triangle-left:before{content:"\f217"}.nc-glyph-triangle-right-17:before{content:"\f218"}.nc-glyph-triangle-right-62:before{content:"\f219"}.nc-glyph-triangle-right:before{content:"\f21a"}.nc-glyph-triangle-up-19:before{content:"\f21b"}.nc-glyph-triangle-up-64:before{content:"\f21c"}.nc-glyph-triangle-up:before{content:"\f21d"}.nc-glyph-tripod:before{content:"\f21e"}.nc-glyph-trolley:before{content:"\f21f"}.nc-glyph-trophy:before{content:"\f220"}.nc-glyph-truck-front:before{content:"\f221"}.nc-glyph-trunk:before{content:"\f222"}.nc-glyph-tshirt-53:before{content:"\f223"}.nc-glyph-tshirt-54:before{content:"\f224"}.nc-glyph-tshirt-sport:before{content:"\f225"}.nc-glyph-turtle:before{content:"\f226"}.nc-glyph-tv-2:before{content:"\f227"}.nc-glyph-tv-old:before{content:"\f228"}.nc-glyph-tv:before{content:"\f229"}.nc-glyph-twitch:before{content:"\f22a"}.nc-glyph-ui-03:before{content:"\f22b"}.nc-glyph-ui-04:before{content:"\f22c"}.nc-glyph-umbrella-13:before{content:"\f22d"}.nc-glyph-umbrella-14:before{content:"\f22e"}.nc-glyph-underline:before{content:"\f22f"}.nc-glyph-underwear-man:before{content:"\f230"}.nc-glyph-underwear:before{content:"\f231"}.nc-glyph-undo-25:before{content:"\f233"}.nc-glyph-undo-29:before{content:"\f232"}.nc-glyph-ungroup:before{content:"\f234"}.nc-glyph-unite-round:before{content:"\f235"}.nc-glyph-unite:before{content:"\f236"}.nc-glyph-upload-2:before{content:"\f237"}.nc-glyph-upload:before{content:"\f238"}.nc-glyph-upset-13:before{content:"\f239"}.nc-glyph-upset-14:before{content:"\f23a"}.nc-glyph-usb:before{content:"\f23b"}.nc-glyph-user-balance:before{content:"\f23c"}.nc-glyph-user-climb:before{content:"\f23d"}.nc-glyph-user-frame-31:before{content:"\f23e"}.nc-glyph-user-frame-32:before{content:"\f23f"}.nc-glyph-user-frame-33:before{content:"\f240"}.nc-glyph-user-meditation:before{content:"\f241"}.nc-glyph-user-run:before{content:"\f242"}.nc-glyph-user-snowboard:before{content:"\f243"}.nc-glyph-user-swim:before{content:"\f244"}.nc-glyph-user:before{content:"\f245"}.nc-glyph-vampire:before{content:"\f246"}.nc-glyph-vector-2:before{content:"\f247"}.nc-glyph-vector:before{content:"\f248"}.nc-glyph-vegan:before{content:"\f249"}.nc-glyph-ventilation:before{content:"\f24a"}.nc-glyph-vespa-front:before{content:"\f24b"}.nc-glyph-vespa:before{content:"\f24c"}.nc-glyph-vest-31:before{content:"\f24d"}.nc-glyph-vest-sport:before{content:"\f24e"}.nc-glyph-vest:before{content:"\f24f"}.nc-glyph-video-64:before{content:"\f250"}.nc-glyph-video-65:before{content:"\f251"}.nc-glyph-video-66:before{content:"\f252"}.nc-glyph-video-67:before{content:"\f253"}.nc-glyph-videocamera-71:before{content:"\f254"}.nc-glyph-videocamera-72:before{content:"\f255"}.nc-glyph-virus:before{content:"\f256"}.nc-glyph-voice-record:before{content:"\f257"}.nc-glyph-volleyball:before{content:"\f258"}.nc-glyph-volume-93:before{content:"\f259"}.nc-glyph-volume-97:before{content:"\f25a"}.nc-glyph-volume-98:before{content:"\f25b"}.nc-glyph-volume-ban:before{content:"\f25c"}.nc-glyph-volume-down:before{content:"\f25d"}.nc-glyph-volume-off:before{content:"\f25e"}.nc-glyph-volume-up:before{content:"\f25f"}.nc-glyph-vpn:before{content:"\f260"}.nc-glyph-waffle:before{content:"\f261"}.nc-glyph-walk:before{content:"\f262"}.nc-glyph-wallet-43:before{content:"\f263"}.nc-glyph-wallet-44:before{content:"\f264"}.nc-glyph-wallet-90:before{content:"\f265"}.nc-glyph-wallet:before{content:"\f266"}.nc-glyph-wand-11:before{content:"\f267"}.nc-glyph-wardrobe:before{content:"\f268"}.nc-glyph-wash-2:before{content:"\f269"}.nc-glyph-wash-30:before{content:"\f26a"}.nc-glyph-wash-60:before{content:"\f26b"}.nc-glyph-wash-90:before{content:"\f26c"}.nc-glyph-wash-hand:before{content:"\f26d"}.nc-glyph-wash:before{content:"\f26e"}.nc-glyph-washing-fluid:before{content:"\f26f"}.nc-glyph-waste-danger:before{content:"\f270"}.nc-glyph-waste-recycling:before{content:"\f272"}.nc-glyph-waste:before{content:"\f271"}.nc-glyph-watch-circle:before{content:"\f273"}.nc-glyph-watch-dev:before{content:"\f274"}.nc-glyph-watch-time:before{content:"\f275"}.nc-glyph-watch:before{content:"\f276"}.nc-glyph-water-hand:before{content:"\f277"}.nc-glyph-water-sink:before{content:"\f278"}.nc-glyph-water:before{content:"\f279"}.nc-glyph-watermelon:before{content:"\f27a"}.nc-glyph-wc:before{content:"\f27b"}.nc-glyph-web-design:before{content:"\f27c"}.nc-glyph-webcam-38:before{content:"\f27d"}.nc-glyph-webcam-39:before{content:"\f27e"}.nc-glyph-webpage-2:before{content:"\f27f"}.nc-glyph-webpage:before{content:"\f280"}.nc-glyph-weed:before{content:"\f281"}.nc-glyph-weight:before{content:"\f282"}.nc-glyph-what:before{content:"\f283"}.nc-glyph-wheel-2:before{content:"\f284"}.nc-glyph-wheel:before{content:"\f285"}.nc-glyph-wheelchair:before{content:"\f286"}.nc-glyph-whisk:before{content:"\f287"}.nc-glyph-whiskers:before{content:"\f288"}.nc-glyph-whistle:before{content:"\f289"}.nc-glyph-white-house:before{content:"\f28a"}.nc-glyph-widget:before{content:"\f28b"}.nc-glyph-wifi-2:before{content:"\f28c"}.nc-glyph-wifi-off:before{content:"\f28d"}.nc-glyph-wifi-protected:before{content:"\f28e"}.nc-glyph-wifi-router:before{content:"\f28f"}.nc-glyph-wifi:before{content:"\f290"}.nc-glyph-wind-2:before{content:"\f291"}.nc-glyph-wind:before{content:"\f292"}.nc-glyph-window-add:before{content:"\f293"}.nc-glyph-window-code:before{content:"\f294"}.nc-glyph-window-delete:before{content:"\f295"}.nc-glyph-window-dev:before{content:"\f296"}.nc-glyph-window-paragraph:before{content:"\f297"}.nc-glyph-window-responsive:before{content:"\f298"}.nc-glyph-window-zoom-in:before{content:"\f299"}.nc-glyph-window-zoom-out:before{content:"\f29a"}.nc-glyph-wine-list:before{content:"\f29b"}.nc-glyph-wink-06:before{content:"\f29c"}.nc-glyph-wink-11:before{content:"\f29d"}.nc-glyph-wink-69:before{content:"\f29e"}.nc-glyph-witch-hat:before{content:"\f29f"}.nc-glyph-wolf:before{content:"\f2a0"}.nc-glyph-woman-2:before{content:"\f2a1"}.nc-glyph-woman-21:before{content:"\f2a2"}.nc-glyph-woman-24:before{content:"\f2a3"}.nc-glyph-woman-25:before{content:"\f2a4"}.nc-glyph-woman-down:before{content:"\f2a5"}.nc-glyph-woman-man:before{content:"\f2a6"}.nc-glyph-woman-up:before{content:"\f2a7"}.nc-glyph-woman:before{content:"\f2a8"}.nc-glyph-wood:before{content:"\f2a9"}.nc-glyph-wool-ball:before{content:"\f2aa"}.nc-glyph-worl-marker:before{content:"\f2ab"}.nc-glyph-world-2:before{content:"\f2ac"}.nc-glyph-world-pin:before{content:"\f2ad"}.nc-glyph-world:before{content:"\f2ae"}.nc-glyph-yogurt:before{content:"\f2af"}.nc-glyph-zip-54:before{content:"\f2b0"}.nc-glyph-zip-55:before{content:"\f2b1"}.nc-glyph-zombie:before{content:"\f2b2"}.nc-glyph-zoom-100:before{content:"\f2b3"}.nc-glyph-zoom-2:before{content:"\f2b4"}.nc-glyph-zoom-88:before{content:"\f2b5"}.nc-glyph-zoom-99:before{content:"\f2b6"}.nc-glyph-zoom-bold-in:before{content:"\f2b7"}.nc-glyph-zoom-bold-out:before{content:"\f2b8"}.nc-glyph-zoom-bold:before{content:"\f2b9"}.nc-glyph-zoom-e:before{content:"\f2ba"}.nc-glyph-zoom-in:before{content:"\f2bb"}.nc-glyph-zoom-out:before{content:"\f2bc"}.nc-glyph-zoom-split-in:before{content:"\f2bd"}.nc-glyph-zoom-split-out:before{content:"\f2be"}.nc-glyph-zoom-split:before{content:"\f2bf"}.nc-glyph-zoom-triangles:before{content:"\f2c0"}.nc-glyph-zoom:before{content:"\f2c1"}.nc-icon{display:inline-block;font-size:24px;line-height:1;font-weight:400;font-style:normal;font-variant:normal;speak:none;-moz-osx-font-smoothing:grayscale}.brz-ed-sorting .brz-ed-draggable,.brz-ed-sorting .sortable-chosen:after,.brz-ed-sorting .sortable-chosen:before{display:none}.brz .brz-b,.brz .brz-dt,.brz .brz-strong{font-weight:700}.nc-outline{font-family:"Nucleo Outline"}.nc-glyph{font-family:"Nucleo Glyph"}.nc-icon.rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);transform:rotate(90deg)}.nc-icon.rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);transform:rotate(180deg)}.nc-icon.rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);transform:rotate(270deg)}.nc-icon.flip-y{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1,1);transform:scale(-1,1)}.nc-icon.flip-x{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1,-1);transform:scale(1,-1)}.brz-ed-sorting{user-select:none;cursor:move}.brz-ed-sorting *{pointer-events:none}.brz-ed-sorting .sortable-hovered.brz-ed-container-trigger{background-color:#03080f}.brz-ed-sorting .sortable-hovered.brz-ed-container-trigger:after{opacity:1!important;background-color:#fff!important}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:before{visibility:visible;opacity:1}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:after{top:-1px}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:after{bottom:-1px}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:first-child:before{content:"";height:2px;position:absolute;left:0;right:0;bottom:-1px;background-color:#879294;opacity:.3}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:first-child:before{top:-1px;bottom:auto}.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:before{top:-1px;bottom:-1px;visibility:visible;opacity:.5;-webkit-transition:none;transition:none}.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty).brz-row{margin-top:5px;margin-bottom:5px}.brz-ed-sorting .sortable-hovered-bottom:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):after,.brz-ed-sorting .sortable-hovered-top:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):before{opacity:1!important;-webkit-transform:scaleY(2);transform:scaleY(2);border-radius:4px}.brz-ed-sorting .sortable-hovered-left:after,.brz-ed-sorting .sortable-hovered-right:after{top:0;width:2px;height:100%}.brz-ed-sorting .sortable-hovered-left:after{left:0}.brz-ed-sorting .sortable-hovered-left>.brz-ed-border>.brz-ed-border__inner-1:before{-webkit-transform:scaleX(2);transform:scaleX(2);opacity:1!important;-webkit-transition:none;transition:none;border-radius:4px}.brz-ed-sorting .sortable-hovered-right:after{right:-2px}.brz-ed-sorting .sortable-hovered-right>.brz-ed-border>.brz-ed-border__inner-2:before{-webkit-transform:scaleX(2);transform:scaleX(2);opacity:1!important;-webkit-transition:none;transition:none;border-radius:4px}.sortable-helper{width:30px;height:30px;border-radius:50%;background-color:#3dbfe8;cursor:move}.sortable-placeholder{outline:#3dbfe8 solid 1px}.brz-ed .brz-ed-sortable--empty{position:relative;min-height:125px;width:calc(100% - 20px);height:calc(100% - 20px);margin:10px}.brz-ed .brz-ed-sortable--empty .brz-ed-border__inner-1,.brz-ed .brz-ed-sortable--empty .brz-ed-border__inner-2{opacity:.6}.brz-ed .brz-ed-sortable--empty .brz-ed-container-trigger{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);margin:0}@-ms-viewport{width:device-width}.brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}.brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz .brz-p{margin-top:0;margin-bottom:0}.brz .brz-span{float:none;margin:0;padding:0}.brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}.brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}.brz .brz-dd{margin-bottom:.5rem;margin-left:0}.brz .brz-blockquote{margin:0 0 1rem}.brz .brz-dfn{font-style:italic}.brz .brz-a{color:#3dbfe8;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.brz .brz-a[href]:hover{color:#1aabd8;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.brz .brz-figure{margin:0}.brz .brz-img{vertical-align:middle;border-style:none}.brz svg:not(:root){overflow:hidden}.brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz .brz-table{border-collapse:collapse}.brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}.brz .brz-th{text-align:left}.brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz .brz-button,.brz .brz-input,.brz .brz-optgroup,.brz .brz-select,.brz .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz .brz-button,.brz .brz-input{overflow:visible}.brz .brz-button{-webkit-appearance:button}.brz .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz .brz-input[type=radio],.brz .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz .brz-input[type=date],.brz .brz-input[type=time],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month]{-webkit-appearance:listbox}.brz .brz-textarea{overflow:auto;resize:vertical}.brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}.brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz .brz-reset-all,.brz-ed .brz-reset-all{border-image-outset:0s;border-inline-end-width:medium;border-spacing:0;bottom:auto;-webkit-column-break-before:auto;-webkit-column-break-inside:auto;break-inside:auto;caret-color:auto;empty-cells:show;grid-auto-columns:auto;grid-auto-flow:row;grid-auto-rows:auto;grid-column-end:auto;grid-column-gap:0;grid-column-start:auto;grid-row-end:auto;grid-row-gap:0;grid-row-start:auto;grid-template-columns:none;grid-template-rows:none;image-orientation:0deg;image-rendering:auto;image-resolution:1dppx;ime-mode:auto;line-break:auto;-webkit-margin-before:0;-webkit-mask-clip:border-box;mask-mode:match-source;mask-type:luminance;min-block-size:0;mix-blend-mode:normal;-o-object-position:50% 50%;offset-inline-end:auto;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;ruby-align:space-around;ruby-merge:separate;ruby-position:over;scroll-behavior:auto;shape-image-threshold:0;shape-margin:0;shape-outside:none;table-layout:auto;text-combine-upright:none;text-decoration-color:currentcolor;-webkit-text-decoration-line:none;text-decoration-line:none;-webkit-text-decoration-style:solid;text-decoration-style:solid;-webkit-text-emphasis-color:currentcolor;text-emphasis-color:currentcolor;-webkit-text-emphasis-position:over;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-orientation:mixed;text-rendering:auto;text-underline-position:auto;widows:2;will-change:auto;word-break:normal;-webkit-appearance:none;list-style:disc}.brz [hidden]{display:none!important}.brz .brz-reset-all{-ms-flex-line-pack:stretch;align-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-duration:0s;animation-duration:0s;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;azimuth:center;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;block-size:auto;border-block-end-color:currentcolor;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-block-start-width:medium;border-collapse:separate;border-image-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-start-color:currentcolor;border-inline-start-style:none;border-inline-start-width:medium;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-column-break-after:auto;break-after:auto;break-before:auto;caption-side:top;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;grid-template-areas:none;height:auto;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;inline-size:auto;isolation:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-height:normal;-webkit-margin-after:0;margin-block-end:0;margin-block-start:0;-webkit-margin-end:0;-moz-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;-moz-margin-start:0;margin-inline-start:0;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;max-height:none;max-width:none;min-height:0;min-inline-size:0;min-width:0;-o-object-fit:fill;object-fit:fill;object-position:50% 50%;offset-block-end:auto;offset-block-start:auto;offset-inline-start:auto;opacity:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;orphans:2;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;-moz-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;-moz-padding-start:0;padding-inline-start:0;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;quotes:initial;resize:none;right:auto;-webkit-scroll-snap-coordinate:none;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-webkit-scroll-snap-destination:0 0;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-webkit-scroll-snap-points-x:none;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-webkit-scroll-snap-points-y:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;text-align:initial;text-align-last:auto;-webkit-text-decoration-color:currentcolor;text-emphasis-position:over right;text-indent:0;text-justify:auto;text-overflow:clip;text-shadow:none;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;visibility:visible;white-space:normal;width:auto;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;margin:0;padding:0}.brz .brz-btn,.brz .brz-video .brz-video__cover:hover{cursor:pointer}.brz .brz-ed-blocked,.brz .slick-slide.dragging img{pointer-events:none}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz .brz-h1,.brz .brz-p{font-weight:400}.brz .brz-h1{font-size:55px}.brz .brz-h2{font-size:40px}.brz .brz-h3{font-size:32px}.brz .brz-h4{font-size:26px}.brz .brz-h5{font-size:19px}.brz .brz-h6,.brz .brz-p{font-size:14px}.brz .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-d-block{display:block!important}.brz .brz-d-inline-block{display:inline-block!important}.brz .brz-d-inline{display:inline!important}.brz .brz-d-table{width:100%;display:table;position:relative}.brz .brz-d-table-cell{display:table-cell}.brz .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}@media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.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}.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}.brz .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz .brz-hidden-xl-up{display:none!important}}.brz .brz-hidden,.brz .brz-hidden-xl-down,.brz .brz-hidden-xs-up,.brz .brz-visible-print-block{display:none!important}.brz .brz-p-relative{position:relative!important}.brz .brz-p-absolute{position:absolute!important}.brz .brz-p-fixed{position:fixed!important}.brz .brz-bg,.brz .brz-bg-content,.brz .brz-icon-svg,.brz .brz-map,.brz .brz-section__content{position:relative}.brz .brz-invisible{visibility:hidden!important}.brz .brz-visible{visibility:visible!important}.brz .brz-invisible-xl-down,.brz .brz-invisible-xs-up{visibility:hidden!important}.brz .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}.brz .brz-invisible-xs-down{visibility:hidden!important}.brz .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz .brz-hidden-ms-up{display:none!important}.brz .brz-invisible-ms-up{visibility:hidden!important}.brz .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz .brz-hidden-ms-down{display:none!important}.brz .brz-invisible-ms-down{visibility:hidden!important}.brz .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}@media (min-width:768px){.brz .brz-hidden-sm-up{display:none!important}.brz .brz-invisible-sm-up{visibility:hidden!important}.brz .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz .brz-hidden-sm-down{display:none!important}.brz .brz-invisible-sm-down{visibility:hidden!important}.brz .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz .brz-hidden-md-up{display:none!important}.brz .brz-invisible-md-up{visibility:hidden!important}.brz .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz .brz-hidden-md-down{display:none!important}.brz .brz-invisible-md-down{visibility:hidden!important}.brz .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz .brz-hidden-lg-up{display:none!important}.brz .brz-invisible-lg-up{visibility:hidden!important}.brz .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz .brz-hidden-lg-down{display:none!important}.brz .brz-invisible-lg-down{visibility:hidden!important}.brz .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}.brz .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}@media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}@media print{.brz .brz-visible-print-inline-block{display:inline-block!important}.brz .brz-hidden-print{display:none!important}}.brz .brz-ow-hidden{overflow:hidden!important}.brz .brz-ow-visible{overflow:visible!important}.brz .brz-fw-100{font-weight:100!important}.brz .brz-fw-200{font-weight:200!important}.brz .brz-fw-300{font-weight:300!important}.brz .brz-fw-400{font-weight:400!important}.brz .brz-fw-500{font-weight:500!important}.brz .brz-fw-600{font-weight:600!important}.brz .brz-fw-700{font-weight:700!important}.brz .brz-fw-800{font-weight:800!important}.brz .brz-fw-900{font-weight:900!important}.brz .brz-animated{opacity:0}.brz .brz-animated.brz-animate,.brz .brz-bg-color{opacity:1}.brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;fill:currentColor;color:currentColor}.brz .brz-icon-svg use{fill:inherit}.brz .brz-icon-svg.glyph,.brz-ed .brz-icon-svg{fill:currentColor;stroke:none}.brz .brz-icon-svg.grid-16{height:16px;width:16px}.brz .brz-icon-svg.grid-24{height:24px;width:24px}.brz .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz .brz-section{background-color:#fff}.brz .brz-sec-full-height .brz-container__wrap,.brz .brz-sec-full-height .brz-container__wrap--fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100vh}.brz .brz-container__wrap,.brz .brz-row{display:-webkit-box;display:-ms-flexbox}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}.brz .brz-container__wrap{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-row{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:1px;-ms-flex-preferred-size:100%;flex-basis:100%}.brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}.brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}.brz .brz-bg-content{-webkit-box-flex:1;-ms-flex:1;flex:1}.brz .brz-bg-media{overflow:hidden}.brz .brz-bg-color,.brz .brz-bg-image,.brz .brz-bg-map,.brz .brz-bg-media,.brz .brz-bg-video{position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}.brz .brz-iframe.brz-bg-map__cover,.brz .brz-iframe.brz-bg-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none;max-width:none;background-repeat:no-repeat;background-size:cover}.brz .brz-icon,.brz .media-toolbar-primary .search{max-width:100%}@media (max-width:767px){.brz .brz-bg-video .brz-iframe{display:none!important}}.brz .brz-btn,.brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;vertical-align:middle}@media (min-width:768px){.brz .brz-bg-image-parallax,.brz .brz-ed.brz-ed--desktop .brz-bg-image-parallax,.brz-ed.brz-ed--desktop .brz .brz-bg-image-parallax{width:100%;background-size:cover!important;background-position:50% 50%;left:0;height:100vh;top:-50vh;-webkit-transition:all 0s ease!important;transition:all 0s ease!important;-webkit-transform-origin:center center 0;transform-origin:center center 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}}.brz .brz-btn{display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #ccc;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;color:#fff;user-select:none;-webkit-user-drag:none;background-image:none;white-space:nowrap;font-weight:400;-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-btn .brz-span{display:block}.brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .buttons .brz-wrapper-clone__item{padding:10px}.brz .brz-icon{display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}.brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-list .brz-list__item{padding:6px}.brz .brz-countdown__item{-webkit-box-flex:1;-ms-flex:1 0 25%;flex:1 0 25%;text-align:center;padding-left:15px;padding-right:15px;word-break:break-word;word-wrap:break-word}.brz .brz-countdown__number{font-size:1em;margin-bottom:15px}.brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz .brz-spacer{width:100%}.brz .brz-icon-text{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;text-align:left;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}.brz .brz-line{line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}.brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0}.brz .brz-map{width:100%;display:inline-block;vertical-align:middle}.brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-image{display:inherit;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;-ms-flex-preferred-size:100%;flex-basis:100%;width:100%}.brz .brz-image .brz-img{max-width:100%;border-radius:inherit}.brz .brz-image picture{border-radius:inherit}.brz .brz-ed-image__content{position:relative;width:100%}.brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}.brz .brz-ed-image__wrapper .brz-img{max-width:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;display:block}.brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-image-fix-1-1{padding-top:100%}.brz .brz-image-fix-2-1{padding-top:50%}.brz .brz-image-fix-2-3{padding-top:150%}.brz .brz-image-fix-3-4{padding-top:125%}.brz .brz-image-fix-4-3{padding-top:75%}.brz .brz-image-fix-9-16{padding-top:177.8%}.brz .brz-image-fix-16-9{padding-top:56.25%}.brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}.brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.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}.brz .brz-video .brz-video__cover .brz-video__cover-icon{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}.brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg{width:100%;left:2px}.brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}.brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:10px;word-break:break-all;word-wrap:break-word}.brz .brz-rich-text{overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-word;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-rich-text i{font-style:italic}.brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none}.brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}.brz .brz-rich-text ol{counter-reset:number}.brz .brz-rich-text ol li{counter-increment:number}.brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}.brz .brz-rich-text .ql-editor{white-space:pre-wrap}.brz .brz-rich-text h1,.brz .brz-rich-text h2,.brz .brz-rich-text h3,.brz .brz-rich-text h4,.brz .brz-rich-text h5,.brz .brz-rich-text h6{margin-top:0;margin-bottom:0;padding:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}.brz .brz-rich-text ol ol,.brz .brz-rich-text ol ul,.brz .brz-rich-text ul ol,.brz .brz-rich-text ul ul{margin:0}.brz .brz-rich-text a{color:#3dbfe8;text-decoration:none;background-color:transparent}.brz .brz-rich-text a[href]:hover{color:#1aabd8;text-decoration:none}.brz .brz-rich-text .link--anchor:not(.is-empty),.brz .brz-rich-text .link--external:not(.is-empty){color:#3dbfe8}.brz .brz-rich-text .link--anchor:not(.is-empty):hover,.brz .brz-rich-text .link--external:not(.is-empty):hover{color:#1aabd8}.brz .brz-text__editor{min-width:10px}.brz .brz-text__editor:empty:before{content:"\00a0\00a0"}.brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}.brz .brz-progress-bar__wrapper{overflow:hidden}.brz .brz-progress-bar .brz-text__editor{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.brz .brz-shortcode__placeholder{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%;background-color:#373e48;color:#151924;font-size:inherit}@media (max-width:767px){.brz .brz-shortcode__placeholder{font-size:36px!important}}.brz .brz-soundcloud{font-size:0}.brz .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.brz .slick-list:focus{outline:0}.brz .slick-list.dragging{cursor:pointer;cursor:hand}.brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.brz .slick-slide{min-height:1px;display:none;height:auto}.brz .brz-accordion__item--active>.brz-accordion__content:empty,.brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}.brz .slick-slide img{display:block}.brz .slick-slide.slick-loading img{display:none}.slick-initialized .brz .slick-slide{display:block}.slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}.brz .slick-arrow.slick-hidden{display:none}.brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}.brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}.brz .brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}.brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}.brz .slick-initialized .slick-slide{display:block}.brz .slick-track{position:relative;left:0;top:0;margin-left:auto;margin-right:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .slick-slide .brz-section__content,.brz .slick-slide .brz-section__content>.brz-bg{height:100%}.brz .slick-slide .brz-section__content>.brz-bg>.brz-bg-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-slick-slider__dots{position:absolute;bottom:50px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);padding:0;list-style:none;margin:0;font-size:0}.brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}.brz .brz-slick-slider__dots li:first-child{padding-left:0}.brz .brz-slick-slider__dots li:last-child{padding-right:0}.brz .brz-slick-slider__dots button{cursor:pointer;color:inherit;outline:0;overflow:hidden;padding:0;text-indent:-9999px;border:2px solid currentColor;background-color:transparent;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots .slick-active button{background-color:currentColor;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}.brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz .brz-slick-slider__dots--square button{width:10px;height:10px}.brz .brz-slick-slider__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2;font-size:30px;opacity:.7;cursor:pointer;-webkit-transition:linear .2s opacity;transition:linear .2s opacity;color:#000}.brz .brz-slick-slider__arrow:hover{opacity:1;-webkit-transition:linear .2s opacity;transition:linear .2s opacity}.brz .brz-slick-slider__arrow .brz-icon-svg{display:block}.brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}.brz .brz-slick-slider__arrow-next{right:30px}.brz .brz-form{width:100%}.brz .brz-form__fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-form__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}.brz .brz-form .brz-input,.brz .brz-form .brz-textarea{display:block;width:100%;height:auto;background-color:transparent;border:none;outline:0;color:inherit;font-size:inherit;font-family:inherit;letter-spacing:inherit;font-weight:inherit;line-height:inherit}.brz .brz-form .brz-textarea{height:100%;resize:none}.brz .brz-form .brz-form__field{padding:14px 24px}.brz .brz-form__select{position:relative}.brz .brz-form__select-current{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz .brz-form__select-list{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1041;top:100%;left:0;width:100%;background-color:#fff}.brz .brz-form__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}.brz .brz-form__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__select-item__input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;color:rgba(115,119,127,.7);line-height:1;font-family:inherit;font-weight:inherit;padding:14px 24px}.brz .brz-form__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}.brz .brz-form__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .media-frame button,.brz .media-frame-title h1{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal}.brz .brz-form__select-item__input .brz-input.brz-input{cursor:text}.brz .brz-form__select-item__icon{color:rgba(115,119,127,.7);-ms-flex-preferred-size:52px;flex-basis:52px;text-align:center;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.brz .brz-form__select--arrow{font-size:14px}.brz .brz-form .brz-control__select{position:relative}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:inherit;color:inherit}.brz .brz-form .brz-control__select-current{padding:14px 24px;cursor:pointer}.brz .brz-form .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}.brz .brz-form .brz-control__select-current .brz-control__select--arrow{font-size:14px}.brz .brz-form .brz-control__select-options{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1030;top:100%;left:0;width:100%;background-color:#fff;display:none}.brz .brz-form .brz-control__select-options .brz-control__select-option{padding:14px 24px;font-size:16px;height:52px;line-height:1.5;cursor:pointer}.brz .brz-form .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__alert{height:55px;width:100%;font-size:12px;line-height:2;letter-spacing:2.5px;font-weight:600;text-transform:uppercase;padding:17px 30px;color:#fff;margin-top:15px}.brz .brz-form__alert--success{background-color:#15d053}.brz .brz-form__alert--error{background-color:red}.brz .brz-form__item--error .brz-control__select-current,.brz .brz-form__item--error .brz-form__field{border-color:red!important}@media (max-width:767px){.brz .brz-form .brz-control__select-options .brz-control__select-option,.brz .brz-form__select-item__input{padding:10px 16px;font-size:14px}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-form__field{padding:10px 16px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}.brz .brz-accordion__nav,.brz .brz-tabs__nav--button{padding:10px 15px;background-clip:padding-box;cursor:pointer}.brz .brz-tabs__nav--item{list-style:none}.brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}.brz .brz-tabs__nav--active{position:relative}.brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}.brz .brz-tabs__nav--active:before{left:-100vw}.brz .brz-tabs__nav--active:after{right:-100vw}.brz .brz-tabs__nav--button{border-style:solid}.brz .brz-tabs__nav--mobile{display:none}.brz .brz-tabs__content{font-size:0}.brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}.brz .brz-tabs__items--active{display:inline-block;border-top:none}.brz .brz-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}@media (max-width:767px){.brz .brz-tabs__content{font-size:inherit}.brz .brz-tabs__nav--mobile{display:block}.brz .brz-tabs__nav--desktop{display:none}.brz .brz-tabs__items{display:block}.brz .brz-tabs__items>.brz-tabs__item--content{display:none}.brz .brz-tabs__items:not(:last-child){margin-bottom:3px}.brz .brz-tabs__items--active{border-top:solid}.brz .brz-tabs__items--active>.brz-tabs__nav--button{border-bottom:solid}.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}.brz .brz-accordion__nav{border-style:solid}.brz .brz-accordion__item{display:block;width:100%}.brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}.brz .brz-accordion__item:not(:last-child){margin-bottom:3px}.brz .brz-accordion__item--active>.brz-accordion__content{display:block}.brz .media-frame .hidden,.brz .screen-reader-text{display:none}.brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}.brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}.brz .media-frame,.brz .media-modal{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;outline:0;-webkit-overflow-scrolling:touch}.brz .media-frame h1,.brz .media-frame h2,.brz .media-frame h3,.brz .media-frame h4,.brz .media-frame h5,.brz .media-frame h6,.brz .media-frame p,.brz .media-modal h1,.brz .media-modal h2,.brz .media-modal h3,.brz .media-modal h4,.brz .media-modal h5,.brz .media-modal h6,.brz .media-modal p{letter-spacing:0;line-height:normal}.brz .media-modal label,.brz .media-modal legend{font-size:13px;text-transform:capitalize;line-height:1.4em;color:#666;font-weight:400}.brz .media-frame input,.brz .media-frame textarea{padding:6px 8px}.brz .media-frame select,.brz .wp-admin .media-frame select{line-height:28px;margin-top:3px}.brz .media-frame a{border-bottom:none;color:#0073aa}.brz .media-frame a:active,.brz .media-frame a:hover{color:#00a0d2}.brz .media-frame a:focus{-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);outline:0;color:#124964}.brz .media-frame a.button{color:#32373c}.brz .media-frame a.button:hover{color:#23282d}.brz .media-frame a.button-primary,.brz .media-frame a.button-primary:hover{color:#fff}.brz .media-frame input[type=text],.brz .media-frame input[type=password],.brz .media-frame input[type=number],.brz .media-frame input[type=search],.brz .media-frame input[type=email],.brz .media-frame input[type=url],.brz .media-frame select,.brz .media-frame textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;line-height:normal;font-weight:400;font-style:normal;border:1px solid #ddd;background-color:#fff;min-height:25px;height:auto;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out;letter-spacing:normal}.brz .media-frame input[type=text]:focus,.brz .media-frame input[type=password]:focus,.brz .media-frame input[type=number]:focus,.brz .media-frame input[type=search]:focus,.brz .media-frame input[type=email]:focus,.brz .media-frame input[type=url]:focus,.brz .media-frame select:focus,.brz .media-frame textarea:focus{border-color:#5b9dd9}.brz .media-frame select{height:24px;padding:2px}.brz .media-frame input:disabled,.brz .media-frame input[readonly],.brz .media-frame textarea:disabled,.brz .media-frame textarea[readonly]{background-color:#eee}.brz .media-frame input[type=search]{-webkit-appearance:textfield}.brz .media-frame ::-webkit-input-placeholder{color:#72777c}.brz .media-frame ::-moz-placeholder{color:#72777c;opacity:1}.brz .media-frame :-ms-input-placeholder{color:#72777c}.brz .media-frame button{text-shadow:none!important;line-height:normal!important;letter-spacing:normal;font-weight:400;text-transform:capitalize;margin:0}.brz .media-frame button.delete-attachment{height:auto;font-size:12px;line-height:1}.brz .media-frame button.media-button-select{margin-top:15px;font-size:13px;line-height:26px;height:28px}.brz .media-frame button.browser{color:#555!important;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc}.brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}.brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}.brz .media-frame-title h1{padding:0 16px;margin:0;font-size:22px;font-weight:600;line-height:50px;color:#23282d;text-shadow:none;text-transform:capitalize}.brz .media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#666;z-index:1000;cursor:pointer;outline:0;text-align:center;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.brz .media-modal-close:active,.brz .media-modal-close:hover{color:#00a0d2}.brz .media-modal-close:focus{color:#00a0d2;border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .media-modal-close span.media-modal-icon{background-image:none}.brz .media-modal-close .media-modal-icon:before{content:"\f158";font:400 20px/1 dashicons;speak:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz .attachment-details .setting label,.brz .attachment-details .setting span,.brz .image-details h2,.brz .image-details h3,.brz .media-router>a,.brz .media-sidebar .setting label,.brz .media-sidebar .setting span,.brz .media-sidebar h2,.brz .media-sidebar h3,.brz .uploader-inline h2,.brz .uploader-inline h3{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal}.brz .media-router>a{position:relative;float:left;padding:8px 10px 9px;margin:0;height:18px;line-height:18px;font-size:14px;text-decoration:none;font-weight:400;border-bottom:none;color:#0073aa;text-transform:capitalize;text-align:left;text-shadow:none}.brz .media-router>a:hover{color:#00a0d2}.brz .media-router>a:last-child{border-right:0}.brz .media-router>a:active{outline:0}.brz .media-router .active,.brz .media-router .active:hover{color:#32373c}.brz .media-router .active,.brz .media-router>a.active:last-child{background:#fff;border:1px solid #ddd;border-bottom:none}.brz .media-frame .search{padding:4px;font-size:13px;border-radius:0;line-height:normal;color:#444;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .media-modal-content .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;width:42%;width:calc(48% - 12px);padding:2px;line-height:28px;height:28px}.brz .thumbnail{display:block;padding:0;margin-bottom:0;line-height:normal;background-color:transparent;border:0;border-radius:0}.brz .uploader-inline h2,.brz .uploader-inline h3{letter-spacing:0;color:#23282d}.brz .uploader-inline .has-upload-message .upload-instructions,.brz .uploader-inline p{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .media-sidebar .sidebar-title{font-size:20px;margin:0;padding:12px 10px 10px;line-height:28px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .image-details h2,.brz .image-details h3,.brz .media-sidebar h2,.brz .media-sidebar h3{position:relative;font-weight:600;text-transform:uppercase;font-size:12px;line-height:1.4em;color:#666;margin:24px 0 8px;letter-spacing:normal;text-shadow:none}.brz .attachment-details .setting label,.brz .media-sidebar .setting label{display:block;text-transform:capitalize;letter-spacing:normal;text-shadow:none}.brz .attachment-details .setting span,.brz .media-sidebar .setting span{min-width:30%;margin-right:4%;font-size:12px;letter-spacing:normal;text-shadow:none;text-align:right;word-wrap:break-word}.brz .media-sidebar .setting .name{max-width:80px}.brz .attachment-details .setting select,.brz .media-sidebar .setting select{max-width:65%}.brz .attachment-details .field input[type=radio],.brz .attachment-details .field input[type=checkbox],.brz .attachment-details .setting input[type=radio],.brz .attachment-details .setting input[type=checkbox],.brz .media-sidebar .field input[type=radio],.brz .media-sidebar .field input[type=checkbox],.brz .media-sidebar .setting input[type=radio],.brz .media-sidebar .setting input[type=checkbox]{float:none;margin:8px 3px 0;padding:0}.brz .attachment-details .setting span,.brz .compat-item label span,.brz .media-sidebar .setting span{float:left;min-height:22px;padding-top:8px;line-height:16px;font-weight:400;color:#666}.brz .compat-item label span{text-align:right}.brz .attachment-details .setting .value,.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting textarea,.brz .media-sidebar .setting .value,.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting textarea{-webkit-box-sizing:border-box;box-sizing:border-box;margin:1px;width:65%;float:right;border-radius:0}.brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{margin:0 1px;text-align:left}.brz .attachment-details .setting textarea,.brz .compat-item .field textarea,.brz .media-sidebar .setting textarea{height:62px;resize:vertical}.brz .attachment-details select,.brz .media-sidebar select{margin-top:3px}.brz .media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}.brz .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:42%;max-width:calc(48% - 12px)}.brz .media-frame select.attachment-filters:last-of-type{margin-right:0}.brz .wp-core-ui .attachment{position:relative;float:left;padding:8px;margin:0;color:#444;cursor:pointer;list-style:none;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:25%;-webkit-box-sizing:border-box;box-sizing:border-box}.brz .wp-core-ui .attachment.details:focus,.brz .wp-core-ui .attachment:focus,.brz .wp-core-ui .selected.attachment:focus{-webkit-box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #5b9dd9;box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #5b9dd9;outline:0}.brz .wp-core-ui .selected.attachment{-webkit-box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #ccc;box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #ccc}.brz .wp-core-ui .attachment.details{-webkit-box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #0073aa;box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #0073aa}.brz .wp-core-ui .attachment-preview{position:relative;-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);background:#eee;cursor:pointer}.brz .wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}.brz .wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}.brz .wp-core-ui .attachment .thumbnail{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;opacity:1;-webkit-transition:opacity .1s;transition:opacity .1s}.brz .wp-core-ui .attachment .portrait img{max-width:100%}.brz .wp-core-ui .attachment .landscape img{max-height:100%}.brz .wp-core-ui .attachment .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.brz .wp-core-ui .attachment .thumbnail img{top:0;left:0}.brz .wp-core-ui .attachment .thumbnail .centered{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.brz .wp-core-ui .attachment .thumbnail .centered img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz .wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{-webkit-transform:translate(-50%,-70%);transform:translate(-50%,-70%)}.brz .ie8 .wp-core-ui .attachment img.icon{top:20%;position:relative}.brz .wp-core-ui .attachment .filename{position:absolute;left:0;right:0;bottom:0;overflow:hidden;max-height:100%;word-wrap:break-word;text-align:center;font-weight:600;background:rgba(255,255,255,.8);-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.brz .wp-core-ui .attachment .filename div{padding:5px 10px}.brz .wp-core-ui .attachment .thumbnail img{position:absolute}.brz .wp-core-ui .attachment-close{display:block;position:absolute;top:5px;right:5px;height:22px;width:22px;padding:0;background-color:#fff;background-position:-96px 4px;border-radius:3px;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.3);box-shadow:0 0 0 1px rgba(0,0,0,.3);-webkit-transition:none;transition:none}.brz .wp-core-ui .attachment-close:focus,.brz .wp-core-ui .attachment-close:hover{background-position:-36px 4px}.brz .wp-core-ui .attachment .check{display:none;height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;right:0;outline:0;background:#eee;cursor:pointer;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15);box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.brz .wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}.brz .wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}.brz .wp-core-ui .attachment.selected .check{display:block}.brz .wp-core-ui .attachment.details .check,.brz .wp-core-ui .attachment.selected .check:focus,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check{background-color:#0073aa;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #0073aa;box-shadow:0 0 0 1px #fff,0 0 0 2px #0073aa}.brz .wp-core-ui .attachment.details .check .media-modal-icon,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon{background-position:-21px 0}.brz .wp-core-ui .attachment.details .check:hover .media-modal-icon,.brz .wp-core-ui .attachment.selected .check:focus .media-modal-icon,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon{background-position:-60px 0}.brz .wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:8px;font-size:12px;border-radius:0}.brz .media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}.brz .attachments-browser .media-toolbar{right:300px;height:50px}.brz .attachments-browser.hide-sidebar .media-toolbar{right:0}.brz .attachments-browser .media-toolbar-primary>.media-button,.brz .attachments-browser .media-toolbar-primary>.media-button-group,.brz .attachments-browser .media-toolbar-secondary>.media-button,.brz .attachments-browser .media-toolbar-secondary>.media-button-group{margin:11px 0}.brz .attachments-browser .attachments{padding:2px 8px 8px}.brz .attachments-browser .attachments,.brz .attachments-browser .uploader-inline{position:absolute;top:50px;left:0;right:300px;bottom:0;overflow:auto;outline:0}.brz .attachments-browser .uploader-inline.hidden{display:none}.brz .attachments-browser .media-toolbar-primary{max-width:33%}.brz .attachments-browser .media-toolbar-secondary{max-width:66%}.brz .uploader-inline .close{background-color:transparent;border:0;cursor:pointer;height:48px;outline:0;padding:0;position:absolute;right:2px;text-align:center;top:2px;width:48px;z-index:1}.brz .uploader-inline .close:before{font:400 30px/1 dashicons!important;color:#555d66;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}.brz .uploader-inline .close:focus{outline:#5b9dd9 solid 1px;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .attachments-browser.hide-sidebar .attachments,.brz .attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}.brz .attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:18px;font-size:13px;color:#666;margin-right:.5em}.brz .attachments-browser .no-media{padding:2em 0 0 2em}.brz .media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#ddd;background:rgba(0,0,0,.1)}.brz .media-progress-bar div{height:10px;min-width:20px;width:0;background:#0073aa;border-radius:10px;-webkit-transition:width .3s;transition:width .3s}.brz .media-uploader-status .media-progress-bar{display:none;width:100%}.brz .uploading.media-uploader-status .media-progress-bar{display:block}.brz .attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0}.brz .media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}.brz .uploader-inline .media-uploader-status h2,.brz .uploader-inline .media-uploader-status h3{display:none}.brz .media-uploader-status .upload-details{display:none;font-size:12px;color:#666}.brz .uploading.media-uploader-status .upload-details{display:block}.brz .media-uploader-status .upload-detail-separator{padding:0 4px}.brz .media-uploader-status .upload-count{color:#444}.brz .media-uploader-status .upload-dismiss-errors,.brz .media-uploader-status .upload-errors{display:none}.brz .errors.media-uploader-status .upload-dismiss-errors,.brz .errors.media-uploader-status .upload-errors{display:block}.brz .media-uploader-status .upload-dismiss-errors{text-decoration:none}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors{position:absolute;top:-10px;right:-10px;padding:10px;-webkit-transition:none;transition:none}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:before{content:"\f153";display:block;font:400 16px/1 dashicons;color:#72777c}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:focus:before,.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:hover:before{color:#c00}.brz .upload-errors .upload-error{padding:12px;margin-bottom:12px;background:#fff;border-left:4px solid #dc3232;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.brz .uploader-inline .upload-errors .upload-error{background-color:#fbeaea;-webkit-box-shadow:none;box-shadow:none}.brz .upload-errors .upload-error-filename{font-weight:600}.brz .upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}.brz .uploader-window{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,86,132,.9);z-index:250000;display:none;text-align:center;opacity:0;-webkit-transition:opacity 250ms;transition:opacity 250ms}.brz .uploader-window-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}.brz .uploader-window h1,.brz .uploader-window h3{margin:-.5em 0 0;position:absolute;top:50%;left:0;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:40px;color:#fff;padding:0}.brz .uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}.brz .uploader-window .media-progress-bar div{background:#fff}.brz .uploading .uploader-window .media-progress-bar{display:block}.brz .media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}.brz .uploader-inline-content{position:absolute;top:30%;left:0;right:0}.brz .uploader-inline-content .upload-ui{margin:2em 0}.brz .uploader-inline-content .post-upload-ui{margin-bottom:2em}.brz .uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}.brz .uploader-inline h2,.brz .uploader-inline h3{font-size:20px;line-height:28px;font-weight:400;margin:0}.brz .uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#444;font-weight:400}.brz .uploader-inline .drop-instructions{display:none}.brz .supports-drag-drop .uploader-inline .drop-instructions{display:block}.brz .uploader-inline p{font-size:12px;margin:.5em 0}.brz .uploader-inline .media-progress-bar{display:none}.brz .uploading.uploader-inline .media-progress-bar{display:block}.brz .uploader-inline .browser{display:inline-block!important}.brz .media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}.brz .media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}.brz .media-selection.editing,.brz .media-selection.empty,.brz .media-selection.one .edit-selection{display:none}.brz .media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:20px;font-weight:600}.brz .media-selection .attachments,.brz .media-selection .selection-view{display:inline-block;vertical-align:top}.brz .media-selection .button-link{float:left;padding:1px 8px;margin:1px 8px 1px -8px;line-height:16px;border-right:1px solid #ddd;color:#0073aa;text-decoration:none}.brz .media-selection .button-link:focus,.brz .media-selection .button-link:hover{color:#00a0d2}.brz .media-selection .button-link:last-child{border-right:0;margin-right:0}.brz .selection-info .clear-selection{color:#bc0b0b}.brz .selection-info .clear-selection:focus,.brz .selection-info .clear-selection:hover{color:#dc3232}.brz .media-selection .attachments{height:48px;margin:6px;padding:0;overflow:hidden}.brz .media-selection .attachment{width:40px;padding:0;margin:4px}.brz .media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}.brz .media-selection .attachment .icon{width:50%}.brz .media-selection .attachment-preview{-webkit-box-shadow:none;box-shadow:none;background:0 0}.brz .wp-core-ui .media-selection .attachment.details:focus,.brz .wp-core-ui .media-selection .attachment:focus,.brz .wp-core-ui .media-selection .selected.attachment:focus{-webkit-box-shadow:0 0 0 1px #fff,0 0 2px 3px #5b9dd9;box-shadow:0 0 0 1px #fff,0 0 2px 3px #5b9dd9}.brz .wp-core-ui .media-selection .selected.attachment{-webkit-box-shadow:none;box-shadow:none}.brz .wp-core-ui .media-selection .attachment.details{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 3px #0073aa;box-shadow:0 0 0 1px #fff,0 0 0 3px #0073aa}.brz .media-selection:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;width:25px;background-image:-webkit-gradient(linear,right top,left top,from(white),to(rgba(255,255,255,0)));background-image:linear-gradient(to left,#fff,rgba(255,255,255,0))}.brz .media-selection .attachment .filename{display:none}.brz .media-frame .spinner{background-size:20px 20px;float:right;display:inline-block;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:0;vertical-align:middle}.brz .attachment-details.save-waiting .settings-save-status .spinner,.brz .media-frame .embed-loading .embed-url .spinner,.brz .media-frame .spinner.is-active{visibility:visible}.brz .media-toolbar .spinner{margin-top:14px}.brz .attachment-details{position:relative;overflow:auto}.brz .attachment-details .settings-save-status{float:right;text-transform:none;z-index:10}.brz .attachment-details .settings-save-status .spinner{margin-left:5px}.brz .attachment-details .settings-save-status .saved{float:right;display:none}.brz .attachment-details.save-complete .settings-save-status .saved{display:block}.brz .attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:18px;color:#666;border-bottom:1px solid #ddd;padding-bottom:11px}.brz .attachment-info .filename{font-weight:600;color:#444;word-wrap:break-word}.brz .attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}.brz .uploading .attachment-info .thumbnail{width:120px;height:80px;-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,.1);box-shadow:inset 0 0 15px rgba(0,0,0,.1)}.brz .uploading .attachment-info .media-progress-bar{margin-top:35px}.brz .attachment-info .thumbnail-image:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);overflow:hidden}.brz .attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}.brz .attachment-info .details{float:left;font-size:12px;max-width:100%}.brz .attachment-info .delete-attachment,.brz .attachment-info .edit-attachment,.brz .attachment-info .trash-attachment,.brz .attachment-info .untrash-attachment{display:block;text-decoration:none;white-space:nowrap}.brz .attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}.brz .attachment-info .edit-attachment{display:block}.brz .media-modal .delete-attachment,.brz .media-modal .trash-attachment,.brz .media-modal .untrash-attachment{display:inline;padding:0;color:#bc0b0b}.brz .media-modal .delete-attachment:focus,.brz .media-modal .delete-attachment:hover,.brz .media-modal .trash-attachment:focus,.brz .media-modal .trash-attachment:hover,.brz .media-modal .untrash-attachment:focus,.brz .media-modal .untrash-attachment:hover{color:#dc3232}.brz .attachment-display-settings{width:100%;float:left;overflow:hidden}.brz .attachment-display-settings h4{margin:1.4em 0 .4em}.brz .collection-settings{overflow:hidden}.brz .collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}.brz .collection-settings .setting span{min-width:inherit}.brz .media-modal .imgedit-wrap{position:static}.brz .media-modal .imgedit-wrap .imgedit-panel-content{padding:16px;position:absolute;top:0;right:282px;bottom:0;left:0;overflow:auto}.brz .media-modal .imgedit-wrap .imgedit-settings{background:#f3f3f3;border-left:1px solid #ddd;padding:20px 16px 16px;position:absolute;top:0;right:0;bottom:0;width:250px;overflow:auto}.brz .media-modal .imgedit-group{background:0 0;border:none;border-bottom:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;margin:0 0 16px;padding:0 0 16px;position:relative}.brz .media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}.brz .media-modal .imgedit-group-top{margin:0}.brz .media-modal .imgedit-group-top h2,.brz .media-modal .imgedit-group-top h2 .button-link,.brz .media-modal .imgedit-group-top h3{display:inline-block;text-transform:uppercase;font-size:12px;color:#666;margin:3px 0 0}.brz .media-modal .imgedit-group-top h2 .button-link,.brz .media-modal .imgedit-group-top h2 a,.brz .media-modal .imgedit-group-top h3 a{text-decoration:none;color:#666}.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle,.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active,.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover{border:1px solid transparent;margin:0;padding:0;background:0 0;color:#0074a2;font-size:20px;line-height:1;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-shadow:none;box-shadow:none}.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus{color:#0074a2;border-color:#5b9dd9;outline:0;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}.brz .wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}.brz .media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}.brz .media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}.brz .imgedit-thumbnail-preview-caption{display:block}.brz .media-modal .imgedit-wrap div.updated{margin:0 0 16px}.brz .embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}.brz .media-frame .embed-url input{font-size:18px;padding:12px 14px;width:100%;min-width:200px;-webkit-box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1);box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1)}.brz .media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}.brz .embed-link-settings,.brz .embed-media-settings{position:absolute;top:70px;left:0;right:0;bottom:0;padding:16px 16px 32px;overflow:auto}.brz .media-embed .embed-link-settings{overflow:visible}.brz .embed-preview embed,.brz .embed-preview iframe,.brz .embed-preview img,.brz .mejs-container video{max-width:100%;vertical-align:middle}.brz .embed-preview a{display:inline-block}.brz .embed-preview img{display:block;height:auto}.brz .mejs-container:focus{outline:#5b9dd9 solid 1px;-webkit-box-shadow:0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 2px 1px rgba(30,140,190,.8)}.brz .image-details .media-modal{left:140px;right:140px}.brz .image-details .media-frame-content,.brz .image-details .media-frame-router,.brz .image-details .media-frame-title{left:0}.brz .image-details .embed-media-settings{top:0;overflow:visible;padding:0}.brz .image-details .embed-media-settings,.brz .image-details .embed-media-settings div{-webkit-box-sizing:border-box;box-sizing:border-box}.brz .image-details .column-settings{background:#f3f3f3;border-right:1px solid #ddd;min-height:100%;width:55%;position:absolute;top:0;left:0}.brz .image-details .column-settings h2,.brz .image-details .column-settings h3{margin:20px;padding-top:20px;border-top:1px solid #ddd;color:#23282d}.brz .image-details .column-image{width:45%;position:absolute;left:55%;top:0}.brz .image-details .image{margin:20px}.brz .image-details .image img{max-width:100%;max-height:500px}.brz .image-details .advanced-toggle{padding:0;color:#666;text-transform:uppercase;text-decoration:none}.brz .image-details .advanced-toggle:active,.brz .image-details .advanced-toggle:hover{color:#666}.brz .image-details .advanced-toggle:after{font:400 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f140";display:inline-block;margin-top:-2px}.brz .image-details .advanced-visible .advanced-toggle:after{content:"\f142"}.brz .image-details .embed-media-settings .size{margin-bottom:4px}.brz .image-details .custom-size span{display:block}.brz .image-details .custom-size label{display:block;float:left}.brz .image-details .custom-size span small{color:#555d66;font-size:inherit}.brz .image-details .custom-size input{width:5em}.brz .image-details .custom-size .sep{float:left;margin:26px 6px 0}.brz .image-details .custom-size:after{content:"";display:table;clear:both}.brz .media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}.brz .media-embed .thumbnail img{max-height:200px;display:block}.brz .media-embed .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.brz .media-embed .setting{width:100%;margin:10px 0;float:left;display:block;clear:both}.brz .image-details .embed-media-settings .setting{float:none;width:auto}.brz .image-details .actions{margin:10px 0}.brz .image-details .hidden{display:none}.brz .media-embed .setting input[type=text],.brz .media-embed .setting textarea{display:block;width:100%;max-width:400px;margin:1px 0}.brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}.brz .image-details .embed-media-settings .custom-size,.brz .image-details .embed-media-settings .link-target,.brz .image-details .embed-media-settings .setting input.link-to-custom{margin-left:27%;width:70%}.brz .image-details .embed-media-settings .link-target{margin-top:24px}.brz .media-embed .setting input.hidden,.brz .media-embed .setting textarea.hidden{display:none}.brz .media-embed .setting span{display:block;width:200px;font-size:13px;line-height:24px;color:#666}.brz .image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0;line-height:1.1}.brz .media-embed .setting .button-group{margin:2px 0}.brz .media-embed-sidebar{position:absolute;top:0;left:440px}.brz .advanced-section,.brz .link-settings{margin-top:10px}.brz .wp-editor-wrap .uploader-editor{background:rgba(150,150,150,.9);position:absolute;top:0;left:0;width:100%;height:100%;z-index:99998;display:none;text-align:center}.brz .wp-editor-wrap .uploader-editor-content{border:1px dashed #fff;position:absolute;top:10px;left:10px;right:10px;bottom:10px}.brz .wp-editor-wrap .uploader-editor .uploader-editor-title{position:absolute;top:50%;left:0;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:3em;line-height:1.3;font-weight:600;color:#fff;padding:0;margin:0;display:none}.brz .wp-editor-wrap .uploader-editor.droppable{background:rgba(0,86,132,.9)}.brz .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}@media only screen and (max-width:900px){.brz .media-frame:not(.hide-menu) .media-frame-content,.brz .media-frame:not(.hide-menu) .media-frame-router,.brz .media-frame:not(.hide-menu) .media-frame-title,.brz .media-frame:not(.hide-menu) .media-frame-toolbar{left:0}.brz .media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}.brz .media-frame:not(.hide-menu) .media-menu{width:auto;max-width:80%;overflow:auto;z-index:2000;top:50px;left:-300px;right:auto;bottom:auto;padding:5px 0;border:1px solid #ccc}.brz .media-frame:not(.hide-menu) .media-frame-title,.brz .media-frame:not(.hide-menu) .media-menu.visible{left:0}.brz .media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}.brz .media-frame:not(.hide-menu) .media-menu>a.active{display:none}.brz .media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}.brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{display:inline-block;line-height:50px}.brz .media-frame:not(.hide-menu) .media-frame-title h1{color:#0073aa;line-height:3;font-size:18px;float:left;cursor:pointer}.brz .media-sidebar{width:230px}.brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:262px}.brz .attachment-details .setting,.brz .media-sidebar .setting{margin:6px 0}.brz .attachment-details .setting input,.brz .attachment-details .setting span,.brz .attachment-details .setting textarea,.brz .compat-item label span,.brz .media-sidebar .setting input,.brz .media-sidebar .setting span,.brz .media-sidebar .setting textarea{float:none}.brz .attachment-details .setting span,.brz .compat-item label span,.brz .media-sidebar .setting span{text-align:inherit;min-height:16px;margin:0;padding:8px 2px 0}.brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{float:none;width:auto}.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting select,.brz .attachment-details .setting textarea,.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting select,.brz .media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}.brz .attachment-details .setting select.columns,.brz .media-sidebar .setting select.columns{width:auto}.brz .media-frame .search,.brz .media-frame input,.brz .media-frame textarea{padding:3px 6px}.brz .image-details .column-image{width:30%;left:70%}.brz .image-details .column-settings{width:70%}.brz .image-details .media-modal{left:30px;right:30px}.brz .image-details .embed-media-settings .setting{margin:20px}.brz .image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px}.brz .image-details .embed-media-settings .setting input.link-to-custom,.brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{width:100%;margin-left:0}.brz .image-details .embed-media-settings .custom-size{margin-left:20px}.brz .collection-settings .setting input[type=checkbox]{margin-top:0}.brz .media-selection{min-width:120px}.brz .media-selection:after{background:0 0}.brz .media-selection .attachments{display:none}.brz .media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}.brz .media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}.brz .media-modal .attachments-browser .media-toolbar .spinner{margin:14px 2px 0}.brz .media-frame input[type=text],.brz .media-frame input[type=password],.brz .media-frame input[type=number],.brz .media-frame input[type=search],.brz .media-frame input[type=email],.brz .media-frame input[type=url],.brz .media-frame select,.brz .media-frame textarea{font-size:16px}}@media only screen and (max-width:640px),screen and (max-height:400px){.brz .image-details .media-modal,.brz .media-modal{position:fixed;top:0;left:0;right:0;bottom:0}.brz .media-modal-backdrop{position:fixed}.brz .media-sidebar{z-index:1900;max-width:70%;bottom:120%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:0}.brz .media-sidebar.visible{bottom:0}.brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:0}.brz .image-details .media-frame-title{display:block;top:0;font-size:14px}.brz .image-details .column-image,.brz .image-details .column-settings{width:100%;position:relative;left:0}.brz .image-details .column-settings{padding:4px 0}.brz .media-frame-content .media-toolbar .instructions{display:none}}@media screen and (max-height:400px){.brz .media-menu{padding:0}.brz .media-frame-router{top:44px}.brz .media-frame-content{top:78px}.brz .attachments-browser .attachments{top:40px}.brz .embed-link-settings{overflow:visible}}.brz .brz-root__container.brz-reset-all,.brz-ed #brz-ed-root>.brz-reset-all,.brz-ed .body-without-scroll{overflow:hidden}@media only screen and (max-width:480px){.brz .media-modal-close{top:-5px}.brz .media-modal .media-frame-title{height:40px}.brz .wp-core-ui.wp-customizer .media-button{margin-top:13px}.brz .media-frame:not(.hide-menu) .media-frame-title h1,.brz .media-modal .media-frame-title h1{font-size:18px;line-height:40px}.brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{line-height:40px}.brz .media-frame-router,.brz .media-frame:not(.hide-menu) .media-menu{top:40px}.brz .media-frame-content{top:74px}.brz .media-frame.hide-router .media-frame-content{top:40px}}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.brz .wp-core-ui .media-modal-icon{background-size:134px 15px}}.brz .media-frame-content[data-columns="1"] .attachment{width:100%}.brz .media-frame-content[data-columns="2"] .attachment{width:50%}.brz .media-frame-content[data-columns="3"] .attachment{width:33.33%}.brz .media-frame-content[data-columns="4"] .attachment{width:25%}.brz .media-frame-content[data-columns="5"] .attachment{width:20%}.brz .media-frame-content[data-columns="6"] .attachment{width:16.66%}.brz .media-frame-content[data-columns="7"] .attachment{width:14.28%}.brz .media-frame-content[data-columns="8"] .attachment{width:12.5%}.brz .media-frame-content[data-columns="9"] .attachment{width:11.11%}.brz .media-frame-content[data-columns="10"] .attachment{width:10%}.brz .media-frame-content[data-columns="11"] .attachment{width:9.09%}.brz .media-frame-content[data-columns="12"] .attachment{width:8.33%}.brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}.brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}.brz .brz-wp__sidebar{width:100%}.brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}.brz .brz-wp-shortcode{width:100%}.brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}.brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}.brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}.brz .brz-wp-shortcode__menu .menu{margin:0 auto;padding:0;list-style:none;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-wp-shortcode__menu .menu li{position:relative;display:inline-block;text-align:left;text-transform:uppercase;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.brz .brz-wp-shortcode__menu .menu li .sub-menu{top:22px;width:280px;padding-top:8px;padding-left:0;padding-right:0;position:absolute;left:0;text-align:left;text-transform:none;display:none;z-index:110;margin:0!important}.brz-ed #brz-ed-root,.brz-ed .brz-ed-element-placeholder{position:relative}.brz .brz-wp-shortcode__menu .menu li .sub-menu li{display:block;margin:0;padding:0;background:#33344b}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:hover a{color:#fff;background:rgba(36,36,53,.94)}.brz-ed #brz-ed-root,body.brz-ed{background-color:#f3f3f3}.brz .brz-wp-shortcode__menu .menu li .sub-menu li a{display:block;line-height:1.2em;color:#fcfcfc;padding:10px 12%}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:first-child{padding-top:15px}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:last-child{padding-bottom:15px}.brz .brz-wp-shortcode__menu .menu li a span,.brz .brz-wp-shortcode__menu .menu li:hover .sub-menu{display:block}.brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}.brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}@-webkit-keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes brz-ed-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes brz-ed-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes brz-ed-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeIn{from{opacity:0}to{opacity:1}}@keyframes brz-ed-fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes brz-ed-pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@keyframes brz-ed-pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@-webkit-keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.brz-ed .brz-ed-wrap-block-wrap{width:100%}.brz-ed .brz-ed-wrap-block-wrap--first{min-height:400px;height:100vh}.brz-ed .btn .brz-span[contenteditable=true]{cursor:text}.brz-ed .brz-ed-element-placeholder *{visibility:hidden}.brz-ed .brz-ed-element-placeholder:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";display:block;border:1px dashed #34beea;visibility:visible}.brz-ed .brz-ed-bar-wrapper,.brz-ed .brz-ed-fixed,.brz-ed .brz-ed-large-popup,.brz-ed .brz-ed-sidebar-block{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before,html{-webkit-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.brz-ed .brz-figcaption,.brz-ed .brz-figure,.brz-ed .brz-section{display:block}body{margin:0}body.brz::after,body.brz::before{display:none}.brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz-ed .brz-b,.brz-ed .brz-dt,.brz-ed .brz-strong{font-weight:700}.brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz-ed .brz-h1,.brz-ed .brz-h2,.brz-ed .brz-h3,.brz-ed .brz-h4,.brz-ed .brz-h5,.brz-ed .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz-ed .brz-p{margin-top:0;margin-bottom:0}.brz-ed .brz-span{float:none;margin:0;padding:0}.brz-ed .brz-dl,.brz-ed .brz-ol,.brz-ed .brz-ul{margin:0;list-style:none;padding:0}.brz-ed .brz-ol .brz-ol,.brz-ed .brz-ol .brz-ul,.brz-ed .brz-ul .brz-ol,.brz-ed .brz-ul .brz-ul{margin:0}.brz-ed .brz-dd{margin-bottom:.5rem;margin-left:0}.brz-ed .brz-blockquote{margin:0 0 1rem}.brz-ed .brz-dfn{font-style:italic}.brz-ed .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.brz-ed .brz-a[href]:hover{color:#1aabd8;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.brz-ed .brz-figure{margin:0}.brz-ed .brz-img{vertical-align:middle;border-style:none}.brz-ed svg:not(:root){overflow:hidden}.brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-label,.brz-ed .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz-ed .brz-table{border-collapse:collapse}.brz-ed .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}.brz-ed .brz-th{text-align:left}.brz-ed .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz-ed .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-optgroup,.brz-ed .brz-select,.brz-ed .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz-ed .brz-button,.brz-ed .brz-input{overflow:visible}.brz-ed .brz-button,.brz-ed .brz-select{text-transform:none}.brz-ed .brz-button{-webkit-appearance:button}.brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz-ed .brz-input[type=radio],.brz-ed .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz-ed .brz-input[type=date],.brz-ed .brz-input[type=time],.brz-ed .brz-input[type=datetime-local],.brz-ed .brz-input[type=month]{-webkit-appearance:listbox}.brz-ed .brz-textarea{overflow:auto;resize:vertical}.brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz-ed .brz-iframe,.brz-ed .brz-object{margin-bottom:0;max-width:100%}.brz-ed .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz-ed [hidden]{display:none!important}.brz-ed .brz-reset-all{-ms-flex-line-pack:stretch;align-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-duration:0s;animation-duration:0s;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;azimuth:center;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;block-size:auto;border-block-end-color:currentcolor;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-block-start-width:medium;border-collapse:separate;border-image-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-start-color:currentcolor;border-inline-start-style:none;border-inline-start-width:medium;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-column-break-after:auto;break-after:auto;break-before:auto;caption-side:top;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;grid-template-areas:none;height:auto;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;inline-size:auto;isolation:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-height:normal;-webkit-margin-after:0;margin-block-end:0;margin-block-start:0;-webkit-margin-end:0;-moz-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;-moz-margin-start:0;margin-inline-start:0;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;max-height:none;max-width:none;min-height:0;min-inline-size:0;min-width:0;-o-object-fit:fill;object-fit:fill;object-position:50% 50%;offset-block-end:auto;offset-block-start:auto;offset-inline-start:auto;opacity:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;orphans:2;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;-moz-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;-moz-padding-start:0;padding-inline-start:0;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;quotes:initial;resize:none;right:auto;-webkit-scroll-snap-coordinate:none;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-webkit-scroll-snap-destination:0 0;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-webkit-scroll-snap-points-x:none;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-webkit-scroll-snap-points-y:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;text-align:initial;text-align-last:auto;-webkit-text-decoration-color:currentcolor;text-emphasis-position:over right;text-indent:0;text-justify:auto;text-overflow:clip;text-shadow:none;text-transform:none;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;visibility:visible;white-space:normal;width:auto;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;margin:0;padding:0}.brz-ed .brz-h1,.brz-ed .brz-h2,.brz-ed .brz-h3,.brz-ed .brz-h4,.brz-ed .brz-h5,.brz-ed .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz-ed .brz-h1,.brz-ed .brz-p{font-weight:400}.brz-ed .brz-h1{font-size:55px}.brz-ed .brz-h2{font-size:40px}.brz-ed .brz-h3{font-size:32px}.brz-ed .brz-h4{font-size:26px}.brz-ed .brz-h5{font-size:19px}.brz-ed .brz-h6,.brz-ed .brz-p{font-size:14px}.brz-ed .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz-ed .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz-ed .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz-ed .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz-ed .brz-d-block{display:block!important}.brz-ed .brz-d-inline-block{display:inline-block!important}.brz-ed .brz-d-inline{display:inline!important}.brz-ed .brz-d-table{width:100%;display:table;position:relative}.brz-ed .brz-d-table-cell{display:table-cell}.brz-ed .brz-ed-blocked{pointer-events:none}.brz-ed .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}@media (min-width:480px){.brz-ed .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-d-ms-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:768px){.brz-ed .brz-d-sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-d-sm-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:992px){.brz-ed .brz-d-md-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz-ed .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz-ed .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz-ed .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz-ed .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz-ed .brz-hidden-xl-up{display:none!important}}.brz-ed .brz-hidden,.brz-ed .brz-hidden-xl-down,.brz-ed .brz-hidden-xs-up,.brz-ed .brz-visible-print-block{display:none!important}.brz-ed .brz-p-relative{position:relative!important}.brz-ed .brz-p-absolute{position:absolute!important}.brz-ed .brz-p-fixed{position:fixed!important}.brz-ed .brz-invisible{visibility:hidden!important}.brz-ed .brz-visible{visibility:visible!important}.brz-ed .brz-invisible-xl-down,.brz-ed .brz-invisible-xs-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz-ed .brz-hidden-xs-down{display:none!important}.brz-ed .brz-invisible-xs-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz-ed .brz-hidden-ms-up{display:none!important}.brz-ed .brz-invisible-ms-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz-ed .brz-hidden-ms-down{display:none!important}.brz-ed .brz-invisible-ms-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:768px){.brz-ed .brz-hidden-sm-up{display:none!important}.brz-ed .brz-invisible-sm-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz-ed .brz-hidden-sm-down{display:none!important}.brz-ed .brz-invisible-sm-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz-ed .brz-hidden-md-up{display:none!important}.brz-ed .brz-invisible-md-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz-ed .brz-hidden-md-down{display:none!important}.brz-ed .brz-invisible-md-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz-ed .brz-hidden-lg-up{display:none!important}.brz-ed .brz-invisible-lg-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz-ed .brz-hidden-lg-down{display:none!important}.brz-ed .brz-invisible-lg-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz-ed .brz-invisible-xl-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz-ed .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz-ed .brz-visible-print-block{display:block!important}}.brz-ed .brz-visible-print-inline{display:none!important}@media print{.brz-ed .brz-visible-print-inline{display:inline!important}}.brz-ed .brz-visible-print-inline-block{display:none!important}@media print{.brz-ed .brz-visible-print-inline-block{display:inline-block!important}.brz-ed .brz-hidden-print{display:none!important}}.brz-ed .brz-ow-hidden{overflow:hidden!important}.brz-ed .brz-ow-visible{overflow:visible!important}.brz-ed .brz-fw-100{font-weight:100!important}.brz-ed .brz-fw-200{font-weight:200!important}.brz-ed .brz-fw-300{font-weight:300!important}.brz-ed .brz-fw-400{font-weight:400!important}.brz-ed .brz-fw-500{font-weight:500!important}.brz-ed .brz-fw-600{font-weight:600!important}.brz-ed .brz-fw-700{font-weight:700!important}.brz-ed .brz-fw-800{font-weight:800!important}.brz-ed .brz-fw-900{font-weight:900!important}.brz-ed.disable-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-popup-image-inner{position:relative;color:#fff;display:inline-block;font-size:0}.brz-ed .brz-ed-popup-image-label{margin-bottom:0}.brz-ed .brz-ed-popup-image-remove{position:absolute;z-index:2;top:-10px;right:-10px;width:22px;height:22px;font-size:8px;background-color:#34beec;border-radius:50%;-webkit-transition:background .2s linear;transition:background .2s linear;text-align:center;cursor:pointer}.brz-ed .brz-ed-popup-image-remove:hover{background-color:#03080f;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .brz-ed-popup-image-remove i{line-height:2.75}.brz-ed .brz-ed-popup-image-upload{position:absolute;top:4px;left:4px;right:4px;bottom:4px;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIwIDIwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE5LDIwSDFjLTAuNTUyLDAtMS0wLjQ0OC0xLTFWMy44OTNjMC0wLjU1MiwwLjQ0OC0wLjksMS0wLjlMMy42ODUsM0M0LjEsMyw0LjQ3MiwyLjYzNiw0LjYyLDIuMjQ4bDAuNTgtMUM1LjIsMS4yNDksNS41NiwwLDYuMjUsMGg3LjVjMC42OSwwLDEuMTUsMS4yNDksMS4xNSwxLjI0OWwwLjQ4LDFjMC4xNDcsMC4zODgsMC41MiwwLjc0NSwwLjkzNSwwLjc0NUgxOWMwLjU1MiwwLDEsMC4zNDgsMSwwLjlWMTlDMjAsMTkuNTUyLDE5LjU1MiwyMCwxOSwyMHogTTE5LDQuNTg2Yy0wLjAwNC0wLjMyOC0wLjI3Mi0wLjU5Mi0wLjYtMC41OTJoLTMuMzk5Yy0wLjE0My0wLjE0My0wLjExNy0wLjIwMi0wLjg4MS0xLjg0N2MwLDAtMC40NDgtMS4xNDctMS0xLjE0N0g3LjExOGMtMC41NTIsMC0xLDEuMTQ3LTEsMS4xNDdDNS4wNTEsMy45MTMsNS4wOCwzLjg2NCw1LDMuOTk0SDEuNjUxYy0wLjMzMSwwLTAuNiwwLjI2OS0wLjYsMC42VjE4LjRjMCwwLjMzMSwwLjI2OSwwLjYsMC42LDAuNkgxOC40YzAuMzMxLDAsMC42LTAuMjY5LDAuNi0wLjZMMTksNC41ODZ6IE0xMi4wMiwxNS42MDNjLTQuMjg3LDEuNjk2LTguMzE5LTIuMzM1LTYuNjI0LTYuNjIyYzAuNDYzLTEuMTcyLDEuNDE0LTIuMTIyLDIuNTg2LTIuNTg2YzQuMjg3LTEuNjk1LDguMzE4LDIuMzM4LDYuNjIyLDYuNjI0QzE0LjE0LDE0LjE5LDEzLjE5LDE1LjE0LDEyLjAyLDE1LjYwM3ogTTEwLjYzMiw3LjA0OWMtMi43MDMtMC40MTQtNC45OTcsMS44OC00LjU4NCw0LjU4NGMwLjI1OCwxLjY4NSwxLjYzNSwzLjA2MSwzLjMxOSwzLjMxOWMyLjcwMywwLjQxNCw0Ljk5Ny0xLjg4LDQuNTg0LTQuNTg0QzEzLjY5NCw4LjY4MywxMi4zMTcsNy4zMDYsMTAuNjMyLDcuMDQ5eiIvPjwvc3ZnPg==) 50% 50% no-repeat #fff;background-size:25px}.brz-ed .brz-ed-loading{position:relative;padding:4px;border:2px dashed #ccc;width:117px;height:117px;cursor:pointer;-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-loading:before{content:'Change Image';font:700 10px pn,"Open Sans",Arial,sans-serif;color:#fff;line-height:117px;text-transform:uppercase;position:absolute;z-index:1;top:-2px;left:-2px;width:117px;height:117px;background-color:rgba(0,0,0,.8);text-align:center;visibility:hidden;opacity:0;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}.brz-ed .brz-control__select,.brz-ed .brz-ed-control__stepper--value,.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left),.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current,.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-loading:hover{border-color:transparent}.brz-ed .brz-ed-loading:hover:before{visibility:visible;opacity:1;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}.brz-ed .p-events-none{pointer-events:none!important}.brz-ed.brz-ed--desktop .brz-fs-lg-6{font-size:6px}.brz-ed.brz-ed--desktop .brz-fs-lg-7{font-size:7px}.brz-ed.brz-ed--desktop .brz-fs-lg-8{font-size:8px}.brz-ed.brz-ed--desktop .brz-fs-lg-9{font-size:9px}.brz-ed.brz-ed--desktop .brz-fs-lg-10{font-size:10px}.brz-ed.brz-ed--desktop .brz-fs-lg-11{font-size:11px}.brz-ed.brz-ed--desktop .brz-fs-lg-12{font-size:12px}.brz-ed.brz-ed--desktop .brz-fs-lg-13{font-size:13px}.brz-ed.brz-ed--desktop .brz-fs-lg-14{font-size:14px}.brz-ed.brz-ed--desktop .brz-fs-lg-15{font-size:15px}.brz-ed.brz-ed--desktop .brz-fs-lg-16{font-size:16px}.brz-ed.brz-ed--desktop .brz-fs-lg-17{font-size:17px}.brz-ed.brz-ed--desktop .brz-fs-lg-18{font-size:18px}.brz-ed.brz-ed--desktop .brz-fs-lg-19{font-size:19px}.brz-ed.brz-ed--desktop .brz-fs-lg-20{font-size:20px}.brz-ed.brz-ed--desktop .brz-fs-lg-21{font-size:21px}.brz-ed.brz-ed--desktop .brz-fs-lg-22{font-size:22px}.brz-ed.brz-ed--desktop .brz-fs-lg-23{font-size:23px}.brz-ed.brz-ed--desktop .brz-fs-lg-24{font-size:24px}.brz-ed.brz-ed--desktop .brz-fs-lg-25{font-size:25px}.brz-ed.brz-ed--desktop .brz-fs-lg-26{font-size:26px}.brz-ed.brz-ed--desktop .brz-fs-lg-27{font-size:27px}.brz-ed.brz-ed--desktop .brz-fs-lg-28{font-size:28px}.brz-ed.brz-ed--desktop .brz-fs-lg-29{font-size:29px}.brz-ed.brz-ed--desktop .brz-fs-lg-30{font-size:30px}.brz-ed.brz-ed--desktop .brz-fs-lg-31{font-size:31px}.brz-ed.brz-ed--desktop .brz-fs-lg-32{font-size:32px}.brz-ed.brz-ed--desktop .brz-fs-lg-33{font-size:33px}.brz-ed.brz-ed--desktop .brz-fs-lg-34{font-size:34px}.brz-ed.brz-ed--desktop .brz-fs-lg-35{font-size:35px}.brz-ed.brz-ed--desktop .brz-fs-lg-36{font-size:36px}.brz-ed.brz-ed--desktop .brz-fs-lg-37{font-size:37px}.brz-ed.brz-ed--desktop .brz-fs-lg-38{font-size:38px}.brz-ed.brz-ed--desktop .brz-fs-lg-39{font-size:39px}.brz-ed.brz-ed--desktop .brz-fs-lg-40{font-size:40px}.brz-ed.brz-ed--desktop .brz-fs-lg-41{font-size:41px}.brz-ed.brz-ed--desktop .brz-fs-lg-42{font-size:42px}.brz-ed.brz-ed--desktop .brz-fs-lg-43{font-size:43px}.brz-ed.brz-ed--desktop .brz-fs-lg-44{font-size:44px}.brz-ed.brz-ed--desktop .brz-fs-lg-45{font-size:45px}.brz-ed.brz-ed--desktop .brz-fs-lg-46{font-size:46px}.brz-ed.brz-ed--desktop .brz-fs-lg-47{font-size:47px}.brz-ed.brz-ed--desktop .brz-fs-lg-48{font-size:48px}.brz-ed.brz-ed--desktop .brz-fs-lg-49{font-size:49px}.brz-ed.brz-ed--desktop .brz-fs-lg-50{font-size:50px}.brz-ed.brz-ed--desktop .brz-fs-lg-51{font-size:51px}.brz-ed.brz-ed--desktop .brz-fs-lg-52{font-size:52px}.brz-ed.brz-ed--desktop .brz-fs-lg-53{font-size:53px}.brz-ed.brz-ed--desktop .brz-fs-lg-54{font-size:54px}.brz-ed.brz-ed--desktop .brz-fs-lg-55{font-size:55px}.brz-ed.brz-ed--desktop .brz-fs-lg-56{font-size:56px}.brz-ed.brz-ed--desktop .brz-fs-lg-57{font-size:57px}.brz-ed.brz-ed--desktop .brz-fs-lg-58{font-size:58px}.brz-ed.brz-ed--desktop .brz-fs-lg-59{font-size:59px}.brz-ed.brz-ed--desktop .brz-fs-lg-60{font-size:60px}.brz-ed.brz-ed--desktop .brz-fs-lg-61{font-size:61px}.brz-ed.brz-ed--desktop .brz-fs-lg-62{font-size:62px}.brz-ed.brz-ed--desktop .brz-fs-lg-63{font-size:63px}.brz-ed.brz-ed--desktop .brz-fs-lg-64{font-size:64px}.brz-ed.brz-ed--desktop .brz-fs-lg-65{font-size:65px}.brz-ed.brz-ed--desktop .brz-fs-lg-66{font-size:66px}.brz-ed.brz-ed--desktop .brz-fs-lg-67{font-size:67px}.brz-ed.brz-ed--desktop .brz-fs-lg-68{font-size:68px}.brz-ed.brz-ed--desktop .brz-fs-lg-69{font-size:69px}.brz-ed.brz-ed--desktop .brz-fs-lg-70{font-size:70px}.brz-ed.brz-ed--desktop .brz-fs-lg-71{font-size:71px}.brz-ed.brz-ed--desktop .brz-fs-lg-72{font-size:72px}.brz-ed.brz-ed--desktop .brz-fs-lg-73{font-size:73px}.brz-ed.brz-ed--desktop .brz-fs-lg-74{font-size:74px}.brz-ed.brz-ed--desktop .brz-fs-lg-75{font-size:75px}.brz-ed.brz-ed--desktop .brz-fs-lg-76{font-size:76px}.brz-ed.brz-ed--desktop .brz-fs-lg-77{font-size:77px}.brz-ed.brz-ed--desktop .brz-fs-lg-78{font-size:78px}.brz-ed.brz-ed--desktop .brz-fs-lg-79{font-size:79px}.brz-ed.brz-ed--desktop .brz-fs-lg-80{font-size:80px}.brz-ed.brz-ed--desktop .brz-fs-lg-81{font-size:81px}.brz-ed.brz-ed--desktop .brz-fs-lg-82{font-size:82px}.brz-ed.brz-ed--desktop .brz-fs-lg-83{font-size:83px}.brz-ed.brz-ed--desktop .brz-fs-lg-84{font-size:84px}.brz-ed.brz-ed--desktop .brz-fs-lg-85{font-size:85px}.brz-ed.brz-ed--desktop .brz-fs-lg-86{font-size:86px}.brz-ed.brz-ed--desktop .brz-fs-lg-87{font-size:87px}.brz-ed.brz-ed--desktop .brz-fs-lg-88{font-size:88px}.brz-ed.brz-ed--desktop .brz-fs-lg-89{font-size:89px}.brz-ed.brz-ed--desktop .brz-fs-lg-90{font-size:90px}.brz-ed.brz-ed--desktop .brz-fs-lg-91{font-size:91px}.brz-ed.brz-ed--desktop .brz-fs-lg-92{font-size:92px}.brz-ed.brz-ed--desktop .brz-fs-lg-93{font-size:93px}.brz-ed.brz-ed--desktop .brz-fs-lg-94{font-size:94px}.brz-ed.brz-ed--desktop .brz-fs-lg-95{font-size:95px}.brz-ed.brz-ed--desktop .brz-fs-lg-96{font-size:96px}.brz-ed.brz-ed--desktop .brz-fs-lg-97{font-size:97px}.brz-ed.brz-ed--desktop .brz-fs-lg-98{font-size:98px}.brz-ed.brz-ed--desktop .brz-fs-lg-99{font-size:99px}.brz-ed.brz-ed--desktop .brz-fs-lg-100{font-size:100px}.brz-ed.brz-ed--desktop .brz-fs-lg-101{font-size:101px}.brz-ed.brz-ed--desktop .brz-fs-lg-102{font-size:102px}.brz-ed.brz-ed--desktop .brz-fs-lg-103{font-size:103px}.brz-ed.brz-ed--desktop .brz-fs-lg-104{font-size:104px}.brz-ed.brz-ed--desktop .brz-fs-lg-105{font-size:105px}.brz-ed.brz-ed--desktop .brz-fs-lg-106{font-size:106px}.brz-ed.brz-ed--desktop .brz-fs-lg-107{font-size:107px}.brz-ed.brz-ed--desktop .brz-fs-lg-108{font-size:108px}.brz-ed.brz-ed--desktop .brz-fs-lg-109{font-size:109px}.brz-ed.brz-ed--desktop .brz-fs-lg-110{font-size:110px}.brz-ed.brz-ed--desktop .brz-fs-lg-111{font-size:111px}.brz-ed.brz-ed--desktop .brz-fs-lg-112{font-size:112px}.brz-ed.brz-ed--desktop .brz-fs-lg-113{font-size:113px}.brz-ed.brz-ed--desktop .brz-fs-lg-114{font-size:114px}.brz-ed.brz-ed--desktop .brz-fs-lg-115{font-size:115px}.brz-ed.brz-ed--desktop .brz-fs-lg-116{font-size:116px}.brz-ed.brz-ed--desktop .brz-fs-lg-117{font-size:117px}.brz-ed.brz-ed--desktop .brz-fs-lg-118{font-size:118px}.brz-ed.brz-ed--desktop .brz-fs-lg-119{font-size:119px}.brz-ed.brz-ed--desktop .brz-fs-lg-120{font-size:120px}.brz-ed.brz-ed--desktop .brz-fs-lg-121{font-size:121px}.brz-ed.brz-ed--desktop .brz-fs-lg-122{font-size:122px}.brz-ed.brz-ed--desktop .brz-fs-lg-123{font-size:123px}.brz-ed.brz-ed--desktop .brz-fs-lg-124{font-size:124px}.brz-ed.brz-ed--desktop .brz-fs-lg-125{font-size:125px}.brz-ed.brz-ed--desktop .brz-fs-lg-126{font-size:126px}.brz-ed.brz-ed--desktop .brz-fs-lg-127{font-size:127px}.brz-ed.brz-ed--desktop .brz-fs-lg-128{font-size:128px}.brz-ed.brz-ed--desktop .brz-fs-lg-129{font-size:129px}.brz-ed.brz-ed--desktop .brz-fs-lg-130{font-size:130px}.brz-ed.brz-ed--desktop .brz-fs-lg-131{font-size:131px}.brz-ed.brz-ed--desktop .brz-fs-lg-132{font-size:132px}.brz-ed.brz-ed--desktop .brz-fs-lg-133{font-size:133px}.brz-ed.brz-ed--desktop .brz-fs-lg-134{font-size:134px}.brz-ed.brz-ed--desktop .brz-fs-lg-135{font-size:135px}.brz-ed.brz-ed--desktop .brz-fs-lg-136{font-size:136px}.brz-ed.brz-ed--desktop .brz-fs-lg-137{font-size:137px}.brz-ed.brz-ed--desktop .brz-fs-lg-138{font-size:138px}.brz-ed.brz-ed--desktop .brz-fs-lg-139{font-size:139px}.brz-ed.brz-ed--desktop .brz-fs-lg-140{font-size:140px}.brz-ed.brz-ed--desktop .brz-fs-lg-141{font-size:141px}.brz-ed.brz-ed--desktop .brz-fs-lg-142{font-size:142px}.brz-ed.brz-ed--desktop .brz-fs-lg-143{font-size:143px}.brz-ed.brz-ed--desktop .brz-fs-lg-144{font-size:144px}.brz-ed.brz-ed--desktop .brz-fs-lg-145{font-size:145px}.brz-ed.brz-ed--desktop .brz-fs-lg-146{font-size:146px}.brz-ed.brz-ed--desktop .brz-fs-lg-147{font-size:147px}.brz-ed.brz-ed--desktop .brz-fs-lg-148{font-size:148px}.brz-ed.brz-ed--desktop .brz-fs-lg-149{font-size:149px}.brz-ed.brz-ed--desktop .brz-fs-lg-150{font-size:150px}.brz-ed.brz-ed--desktop .brz-fs-lg-151{font-size:151px}.brz-ed.brz-ed--desktop .brz-fs-lg-152{font-size:152px}.brz-ed.brz-ed--desktop .brz-fs-lg-153{font-size:153px}.brz-ed.brz-ed--desktop .brz-fs-lg-154{font-size:154px}.brz-ed.brz-ed--desktop .brz-fs-lg-155{font-size:155px}.brz-ed.brz-ed--desktop .brz-fs-lg-156{font-size:156px}.brz-ed.brz-ed--desktop .brz-fs-lg-157{font-size:157px}.brz-ed.brz-ed--desktop .brz-fs-lg-158{font-size:158px}.brz-ed.brz-ed--desktop .brz-fs-lg-159{font-size:159px}.brz-ed.brz-ed--desktop .brz-fs-lg-160{font-size:160px}.brz-ed.brz-ed--desktop .brz-fs-lg-161{font-size:161px}.brz-ed.brz-ed--desktop .brz-fs-lg-162{font-size:162px}.brz-ed.brz-ed--desktop .brz-fs-lg-163{font-size:163px}.brz-ed.brz-ed--desktop .brz-fs-lg-164{font-size:164px}.brz-ed.brz-ed--desktop .brz-fs-lg-165{font-size:165px}.brz-ed.brz-ed--desktop .brz-fs-lg-166{font-size:166px}.brz-ed.brz-ed--desktop .brz-fs-lg-167{font-size:167px}.brz-ed.brz-ed--desktop .brz-fs-lg-168{font-size:168px}.brz-ed.brz-ed--desktop .brz-fs-lg-169{font-size:169px}.brz-ed.brz-ed--desktop .brz-fs-lg-170{font-size:170px}.brz-ed.brz-ed--desktop .brz-fs-lg-171{font-size:171px}.brz-ed.brz-ed--desktop .brz-fs-lg-172{font-size:172px}.brz-ed.brz-ed--desktop .brz-fs-lg-173{font-size:173px}.brz-ed.brz-ed--desktop .brz-fs-lg-174{font-size:174px}.brz-ed.brz-ed--desktop .brz-fs-lg-175{font-size:175px}.brz-ed.brz-ed--desktop .brz-fs-lg-176{font-size:176px}.brz-ed.brz-ed--desktop .brz-fs-lg-177{font-size:177px}.brz-ed.brz-ed--desktop .brz-fs-lg-178{font-size:178px}.brz-ed.brz-ed--desktop .brz-fs-lg-179{font-size:179px}.brz-ed.brz-ed--desktop .brz-fs-lg-180{font-size:180px}.brz-ed.brz-ed--desktop .brz-lh-lg-1{line-height:1em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_1{line-height:1.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_2{line-height:1.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_3{line-height:1.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_4{line-height:1.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_5{line-height:1.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_6{line-height:1.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_7{line-height:1.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_8{line-height:1.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_9{line-height:1.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-2{line-height:2em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_1{line-height:2.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_2{line-height:2.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_3{line-height:2.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_4{line-height:2.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_5{line-height:2.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_6{line-height:2.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_7{line-height:2.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_8{line-height:2.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_9{line-height:2.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-3{line-height:3em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_1{line-height:3.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_2{line-height:3.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_3{line-height:3.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_4{line-height:3.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_5{line-height:3.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_6{line-height:3.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_7{line-height:3.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_8{line-height:3.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_9{line-height:3.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-4{line-height:4em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_1{line-height:4.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_2{line-height:4.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_3{line-height:4.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_4{line-height:4.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_5{line-height:4.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_6{line-height:4.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_7{line-height:4.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_8{line-height:4.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_9{line-height:4.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-5{line-height:5em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_1{line-height:5.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_2{line-height:5.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_3{line-height:5.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_4{line-height:5.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_5{line-height:5.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_6{line-height:5.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_7{line-height:5.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_8{line-height:5.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_9{line-height:5.9em}.brz-ed.brz-ed--desktop .brz-ls-lg-m_5{letter-spacing:-5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_5_5{letter-spacing:-5.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_4{letter-spacing:-4px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_4_5{letter-spacing:-4.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_3{letter-spacing:-3px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_3_5{letter-spacing:-3.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_2{letter-spacing:-2px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_2_5{letter-spacing:-2.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_1{letter-spacing:-1px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_1_5{letter-spacing:-1.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_0{letter-spacing:0}.brz-ed.brz-ed--desktop .brz-ls-lg-m_0_5{letter-spacing:-.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-0{letter-spacing:0}.brz-ed.brz-ed--desktop .brz-ls-lg-0_5{letter-spacing:.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-1{letter-spacing:1px}.brz-ed.brz-ed--desktop .brz-ls-lg-1_5{letter-spacing:1.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-2{letter-spacing:2px}.brz-ed.brz-ed--desktop .brz-ls-lg-2_5{letter-spacing:2.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-3{letter-spacing:3px}.brz-ed.brz-ed--desktop .brz-ls-lg-3_5{letter-spacing:3.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-4{letter-spacing:4px}.brz-ed.brz-ed--desktop .brz-ls-lg-4_5{letter-spacing:4.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-5{letter-spacing:5px}.brz-ed.brz-ed--desktop .brz-ls-lg-5_5{letter-spacing:5.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-6{letter-spacing:6px}.brz-ed.brz-ed--desktop .brz-ls-lg-6_5{letter-spacing:6.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-7{letter-spacing:7px}.brz-ed.brz-ed--desktop .brz-ls-lg-7_5{letter-spacing:7.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-8{letter-spacing:8px}.brz-ed.brz-ed--desktop .brz-ls-lg-8_5{letter-spacing:8.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-9{letter-spacing:9px}.brz-ed.brz-ed--desktop .brz-ls-lg-9_5{letter-spacing:9.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-10{letter-spacing:10px}.brz-ed.brz-ed--desktop .brz-ls-lg-10_5{letter-spacing:10.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-11{letter-spacing:11px}.brz-ed.brz-ed--desktop .brz-ls-lg-11_5{letter-spacing:11.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-12{letter-spacing:12px}.brz-ed.brz-ed--desktop .brz-ls-lg-12_5{letter-spacing:12.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-13{letter-spacing:13px}.brz-ed.brz-ed--desktop .brz-ls-lg-13_5{letter-spacing:13.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-14{letter-spacing:14px}.brz-ed.brz-ed--desktop .brz-ls-lg-14_5{letter-spacing:14.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-15{letter-spacing:15px}.brz-ed.brz-ed--desktop .brz-ls-lg-15_5{letter-spacing:15.5px}.brz-ed.brz-ed--desktop .brz-fw-lg-100{font-weight:100!important}.brz-ed.brz-ed--desktop .brz-fw-lg-200{font-weight:200!important}.brz-ed.brz-ed--desktop .brz-fw-lg-300{font-weight:300!important}.brz-ed.brz-ed--desktop .brz-fw-lg-400{font-weight:400!important}.brz-ed.brz-ed--desktop .brz-fw-lg-500{font-weight:500!important}.brz-ed.brz-ed--desktop .brz-fw-lg-600{font-weight:600!important}.brz-ed.brz-ed--desktop .brz-fw-lg-700{font-weight:700!important}.brz-ed.brz-ed--desktop .brz-fw-lg-800{font-weight:800!important}.brz-ed.brz-ed--desktop .brz-fw-lg-900{font-weight:900!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1000{font-weight:1000!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1100{font-weight:1100!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1200{font-weight:1200!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1300{font-weight:1300!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1400{font-weight:1400!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-fs-im-6{font-size:6px}.brz-ed.brz-ed--mobile .brz-fs-im-7{font-size:7px}.brz-ed.brz-ed--mobile .brz-fs-im-8{font-size:8px}.brz-ed.brz-ed--mobile .brz-fs-im-9{font-size:9px}.brz-ed.brz-ed--mobile .brz-fs-im-10{font-size:10px}.brz-ed.brz-ed--mobile .brz-fs-im-11{font-size:11px}.brz-ed.brz-ed--mobile .brz-fs-im-12{font-size:12px}.brz-ed.brz-ed--mobile .brz-fs-im-13{font-size:13px}.brz-ed.brz-ed--mobile .brz-fs-im-14{font-size:14px}.brz-ed.brz-ed--mobile .brz-fs-im-15{font-size:15px}.brz-ed.brz-ed--mobile .brz-fs-im-16{font-size:16px}.brz-ed.brz-ed--mobile .brz-fs-im-17{font-size:17px}.brz-ed.brz-ed--mobile .brz-fs-im-18{font-size:18px}.brz-ed.brz-ed--mobile .brz-fs-im-19{font-size:19px}.brz-ed.brz-ed--mobile .brz-fs-im-20{font-size:20px}.brz-ed.brz-ed--mobile .brz-fs-im-21{font-size:21px}.brz-ed.brz-ed--mobile .brz-fs-im-22{font-size:22px}.brz-ed.brz-ed--mobile .brz-fs-im-23{font-size:23px}.brz-ed.brz-ed--mobile .brz-fs-im-24{font-size:24px}.brz-ed.brz-ed--mobile .brz-fs-im-25{font-size:25px}.brz-ed.brz-ed--mobile .brz-fs-im-26{font-size:26px}.brz-ed.brz-ed--mobile .brz-fs-im-27{font-size:27px}.brz-ed.brz-ed--mobile .brz-fs-im-28{font-size:28px}.brz-ed.brz-ed--mobile .brz-fs-im-29{font-size:29px}.brz-ed.brz-ed--mobile .brz-fs-im-30{font-size:30px}.brz-ed.brz-ed--mobile .brz-fs-im-31{font-size:31px}.brz-ed.brz-ed--mobile .brz-fs-im-32{font-size:32px}.brz-ed.brz-ed--mobile .brz-fs-im-33{font-size:33px}.brz-ed.brz-ed--mobile .brz-fs-im-34{font-size:34px}.brz-ed.brz-ed--mobile .brz-fs-im-35{font-size:35px}.brz-ed.brz-ed--mobile .brz-fs-im-36{font-size:36px}.brz-ed.brz-ed--mobile .brz-fs-im-37{font-size:37px}.brz-ed.brz-ed--mobile .brz-fs-im-38{font-size:38px}.brz-ed.brz-ed--mobile .brz-fs-im-39{font-size:39px}.brz-ed.brz-ed--mobile .brz-fs-im-40{font-size:40px}.brz-ed.brz-ed--mobile .brz-fs-im-41{font-size:41px}.brz-ed.brz-ed--mobile .brz-fs-im-42{font-size:42px}.brz-ed.brz-ed--mobile .brz-fs-im-43{font-size:43px}.brz-ed.brz-ed--mobile .brz-fs-im-44{font-size:44px}.brz-ed.brz-ed--mobile .brz-fs-im-45{font-size:45px}.brz-ed.brz-ed--mobile .brz-fs-im-46{font-size:46px}.brz-ed.brz-ed--mobile .brz-fs-im-47{font-size:47px}.brz-ed.brz-ed--mobile .brz-fs-im-48{font-size:48px}.brz-ed.brz-ed--mobile .brz-fs-im-49{font-size:49px}.brz-ed.brz-ed--mobile .brz-fs-im-50{font-size:50px}.brz-ed.brz-ed--mobile .brz-fs-im-51{font-size:51px}.brz-ed.brz-ed--mobile .brz-fs-im-52{font-size:52px}.brz-ed.brz-ed--mobile .brz-fs-im-53{font-size:53px}.brz-ed.brz-ed--mobile .brz-fs-im-54{font-size:54px}.brz-ed.brz-ed--mobile .brz-fs-im-55{font-size:55px}.brz-ed.brz-ed--mobile .brz-fs-im-56{font-size:56px}.brz-ed.brz-ed--mobile .brz-fs-im-57{font-size:57px}.brz-ed.brz-ed--mobile .brz-fs-im-58{font-size:58px}.brz-ed.brz-ed--mobile .brz-fs-im-59{font-size:59px}.brz-ed.brz-ed--mobile .brz-fs-im-60{font-size:60px}.brz-ed.brz-ed--mobile .brz-fs-im-61{font-size:61px}.brz-ed.brz-ed--mobile .brz-fs-im-62{font-size:62px}.brz-ed.brz-ed--mobile .brz-fs-im-63{font-size:63px}.brz-ed.brz-ed--mobile .brz-fs-im-64{font-size:64px}.brz-ed.brz-ed--mobile .brz-fs-im-65{font-size:65px}.brz-ed.brz-ed--mobile .brz-fs-im-66{font-size:66px}.brz-ed.brz-ed--mobile .brz-fs-im-67{font-size:67px}.brz-ed.brz-ed--mobile .brz-fs-im-68{font-size:68px}.brz-ed.brz-ed--mobile .brz-fs-im-69{font-size:69px}.brz-ed.brz-ed--mobile .brz-fs-im-70{font-size:70px}.brz-ed.brz-ed--mobile .brz-fs-im-71{font-size:71px}.brz-ed.brz-ed--mobile .brz-fs-im-72{font-size:72px}.brz-ed.brz-ed--mobile .brz-fs-im-73{font-size:73px}.brz-ed.brz-ed--mobile .brz-fs-im-74{font-size:74px}.brz-ed.brz-ed--mobile .brz-fs-im-75{font-size:75px}.brz-ed.brz-ed--mobile .brz-fs-im-76{font-size:76px}.brz-ed.brz-ed--mobile .brz-fs-im-77{font-size:77px}.brz-ed.brz-ed--mobile .brz-fs-im-78{font-size:78px}.brz-ed.brz-ed--mobile .brz-fs-im-79{font-size:79px}.brz-ed.brz-ed--mobile .brz-fs-im-80{font-size:80px}.brz-ed.brz-ed--mobile .brz-fs-im-81{font-size:81px}.brz-ed.brz-ed--mobile .brz-fs-im-82{font-size:82px}.brz-ed.brz-ed--mobile .brz-fs-im-83{font-size:83px}.brz-ed.brz-ed--mobile .brz-fs-im-84{font-size:84px}.brz-ed.brz-ed--mobile .brz-fs-im-85{font-size:85px}.brz-ed.brz-ed--mobile .brz-fs-im-86{font-size:86px}.brz-ed.brz-ed--mobile .brz-fs-im-87{font-size:87px}.brz-ed.brz-ed--mobile .brz-fs-im-88{font-size:88px}.brz-ed.brz-ed--mobile .brz-fs-im-89{font-size:89px}.brz-ed.brz-ed--mobile .brz-fs-im-90{font-size:90px}.brz-ed.brz-ed--mobile .brz-fs-im-91{font-size:91px}.brz-ed.brz-ed--mobile .brz-fs-im-92{font-size:92px}.brz-ed.brz-ed--mobile .brz-fs-im-93{font-size:93px}.brz-ed.brz-ed--mobile .brz-fs-im-94{font-size:94px}.brz-ed.brz-ed--mobile .brz-fs-im-95{font-size:95px}.brz-ed.brz-ed--mobile .brz-fs-im-96{font-size:96px}.brz-ed.brz-ed--mobile .brz-fs-im-97{font-size:97px}.brz-ed.brz-ed--mobile .brz-fs-im-98{font-size:98px}.brz-ed.brz-ed--mobile .brz-fs-im-99{font-size:99px}.brz-ed.brz-ed--mobile .brz-fs-im-100{font-size:100px}.brz-ed.brz-ed--mobile .brz-fs-im-101{font-size:101px}.brz-ed.brz-ed--mobile .brz-fs-im-102{font-size:102px}.brz-ed.brz-ed--mobile .brz-fs-im-103{font-size:103px}.brz-ed.brz-ed--mobile .brz-fs-im-104{font-size:104px}.brz-ed.brz-ed--mobile .brz-fs-im-105{font-size:105px}.brz-ed.brz-ed--mobile .brz-fs-im-106{font-size:106px}.brz-ed.brz-ed--mobile .brz-fs-im-107{font-size:107px}.brz-ed.brz-ed--mobile .brz-fs-im-108{font-size:108px}.brz-ed.brz-ed--mobile .brz-fs-im-109{font-size:109px}.brz-ed.brz-ed--mobile .brz-fs-im-110{font-size:110px}.brz-ed.brz-ed--mobile .brz-fs-im-111{font-size:111px}.brz-ed.brz-ed--mobile .brz-fs-im-112{font-size:112px}.brz-ed.brz-ed--mobile .brz-fs-im-113{font-size:113px}.brz-ed.brz-ed--mobile .brz-fs-im-114{font-size:114px}.brz-ed.brz-ed--mobile .brz-fs-im-115{font-size:115px}.brz-ed.brz-ed--mobile .brz-fs-im-116{font-size:116px}.brz-ed.brz-ed--mobile .brz-fs-im-117{font-size:117px}.brz-ed.brz-ed--mobile .brz-fs-im-118{font-size:118px}.brz-ed.brz-ed--mobile .brz-fs-im-119{font-size:119px}.brz-ed.brz-ed--mobile .brz-fs-im-120{font-size:120px}.brz-ed.brz-ed--mobile .brz-fs-im-121{font-size:121px}.brz-ed.brz-ed--mobile .brz-fs-im-122{font-size:122px}.brz-ed.brz-ed--mobile .brz-fs-im-123{font-size:123px}.brz-ed.brz-ed--mobile .brz-fs-im-124{font-size:124px}.brz-ed.brz-ed--mobile .brz-fs-im-125{font-size:125px}.brz-ed.brz-ed--mobile .brz-fs-im-126{font-size:126px}.brz-ed.brz-ed--mobile .brz-fs-im-127{font-size:127px}.brz-ed.brz-ed--mobile .brz-fs-im-128{font-size:128px}.brz-ed.brz-ed--mobile .brz-fs-im-129{font-size:129px}.brz-ed.brz-ed--mobile .brz-fs-im-130{font-size:130px}.brz-ed.brz-ed--mobile .brz-fs-im-131{font-size:131px}.brz-ed.brz-ed--mobile .brz-fs-im-132{font-size:132px}.brz-ed.brz-ed--mobile .brz-fs-im-133{font-size:133px}.brz-ed.brz-ed--mobile .brz-fs-im-134{font-size:134px}.brz-ed.brz-ed--mobile .brz-fs-im-135{font-size:135px}.brz-ed.brz-ed--mobile .brz-fs-im-136{font-size:136px}.brz-ed.brz-ed--mobile .brz-fs-im-137{font-size:137px}.brz-ed.brz-ed--mobile .brz-fs-im-138{font-size:138px}.brz-ed.brz-ed--mobile .brz-fs-im-139{font-size:139px}.brz-ed.brz-ed--mobile .brz-fs-im-140{font-size:140px}.brz-ed.brz-ed--mobile .brz-fs-im-141{font-size:141px}.brz-ed.brz-ed--mobile .brz-fs-im-142{font-size:142px}.brz-ed.brz-ed--mobile .brz-fs-im-143{font-size:143px}.brz-ed.brz-ed--mobile .brz-fs-im-144{font-size:144px}.brz-ed.brz-ed--mobile .brz-fs-im-145{font-size:145px}.brz-ed.brz-ed--mobile .brz-fs-im-146{font-size:146px}.brz-ed.brz-ed--mobile .brz-fs-im-147{font-size:147px}.brz-ed.brz-ed--mobile .brz-fs-im-148{font-size:148px}.brz-ed.brz-ed--mobile .brz-fs-im-149{font-size:149px}.brz-ed.brz-ed--mobile .brz-fs-im-150{font-size:150px}.brz-ed.brz-ed--mobile .brz-fs-im-151{font-size:151px}.brz-ed.brz-ed--mobile .brz-fs-im-152{font-size:152px}.brz-ed.brz-ed--mobile .brz-fs-im-153{font-size:153px}.brz-ed.brz-ed--mobile .brz-fs-im-154{font-size:154px}.brz-ed.brz-ed--mobile .brz-fs-im-155{font-size:155px}.brz-ed.brz-ed--mobile .brz-fs-im-156{font-size:156px}.brz-ed.brz-ed--mobile .brz-fs-im-157{font-size:157px}.brz-ed.brz-ed--mobile .brz-fs-im-158{font-size:158px}.brz-ed.brz-ed--mobile .brz-fs-im-159{font-size:159px}.brz-ed.brz-ed--mobile .brz-fs-im-160{font-size:160px}.brz-ed.brz-ed--mobile .brz-fs-im-161{font-size:161px}.brz-ed.brz-ed--mobile .brz-fs-im-162{font-size:162px}.brz-ed.brz-ed--mobile .brz-fs-im-163{font-size:163px}.brz-ed.brz-ed--mobile .brz-fs-im-164{font-size:164px}.brz-ed.brz-ed--mobile .brz-fs-im-165{font-size:165px}.brz-ed.brz-ed--mobile .brz-fs-im-166{font-size:166px}.brz-ed.brz-ed--mobile .brz-fs-im-167{font-size:167px}.brz-ed.brz-ed--mobile .brz-fs-im-168{font-size:168px}.brz-ed.brz-ed--mobile .brz-fs-im-169{font-size:169px}.brz-ed.brz-ed--mobile .brz-fs-im-170{font-size:170px}.brz-ed.brz-ed--mobile .brz-fs-im-171{font-size:171px}.brz-ed.brz-ed--mobile .brz-fs-im-172{font-size:172px}.brz-ed.brz-ed--mobile .brz-fs-im-173{font-size:173px}.brz-ed.brz-ed--mobile .brz-fs-im-174{font-size:174px}.brz-ed.brz-ed--mobile .brz-fs-im-175{font-size:175px}.brz-ed.brz-ed--mobile .brz-fs-im-176{font-size:176px}.brz-ed.brz-ed--mobile .brz-fs-im-177{font-size:177px}.brz-ed.brz-ed--mobile .brz-fs-im-178{font-size:178px}.brz-ed.brz-ed--mobile .brz-fs-im-179{font-size:179px}.brz-ed.brz-ed--mobile .brz-fs-im-180{font-size:180px}.brz-ed.brz-ed--mobile .brz-fs-xs-6{font-size:6px}.brz-ed.brz-ed--mobile .brz-fs-xs-7{font-size:7px}.brz-ed.brz-ed--mobile .brz-fs-xs-8{font-size:8px}.brz-ed.brz-ed--mobile .brz-fs-xs-9{font-size:9px}.brz-ed.brz-ed--mobile .brz-fs-xs-10{font-size:10px}.brz-ed.brz-ed--mobile .brz-fs-xs-11{font-size:11px}.brz-ed.brz-ed--mobile .brz-fs-xs-12{font-size:12px}.brz-ed.brz-ed--mobile .brz-fs-xs-13{font-size:13px}.brz-ed.brz-ed--mobile .brz-fs-xs-14{font-size:14px}.brz-ed.brz-ed--mobile .brz-fs-xs-15{font-size:15px}.brz-ed.brz-ed--mobile .brz-fs-xs-16{font-size:16px}.brz-ed.brz-ed--mobile .brz-fs-xs-17{font-size:17px}.brz-ed.brz-ed--mobile .brz-fs-xs-18{font-size:18px}.brz-ed.brz-ed--mobile .brz-fs-xs-19{font-size:19px}.brz-ed.brz-ed--mobile .brz-fs-xs-20{font-size:20px}.brz-ed.brz-ed--mobile .brz-fs-xs-21{font-size:21px}.brz-ed.brz-ed--mobile .brz-fs-xs-22{font-size:22px}.brz-ed.brz-ed--mobile .brz-fs-xs-23{font-size:23px}.brz-ed.brz-ed--mobile .brz-fs-xs-24{font-size:24px}.brz-ed.brz-ed--mobile .brz-fs-xs-25{font-size:25px}.brz-ed.brz-ed--mobile .brz-fs-xs-26{font-size:26px}.brz-ed.brz-ed--mobile .brz-fs-xs-27{font-size:27px}.brz-ed.brz-ed--mobile .brz-fs-xs-28{font-size:28px}.brz-ed.brz-ed--mobile .brz-fs-xs-29{font-size:29px}.brz-ed.brz-ed--mobile .brz-fs-xs-30{font-size:30px}.brz-ed.brz-ed--mobile .brz-fs-xs-31{font-size:31px}.brz-ed.brz-ed--mobile .brz-fs-xs-32{font-size:32px}.brz-ed.brz-ed--mobile .brz-fs-xs-33{font-size:33px}.brz-ed.brz-ed--mobile .brz-fs-xs-34{font-size:34px}.brz-ed.brz-ed--mobile .brz-fs-xs-35{font-size:35px}.brz-ed.brz-ed--mobile .brz-fs-xs-36{font-size:36px}.brz-ed.brz-ed--mobile .brz-fs-xs-37{font-size:37px}.brz-ed.brz-ed--mobile .brz-fs-xs-38{font-size:38px}.brz-ed.brz-ed--mobile .brz-fs-xs-39{font-size:39px}.brz-ed.brz-ed--mobile .brz-fs-xs-40{font-size:40px}.brz-ed.brz-ed--mobile .brz-fs-xs-41{font-size:41px}.brz-ed.brz-ed--mobile .brz-fs-xs-42{font-size:42px}.brz-ed.brz-ed--mobile .brz-fs-xs-43{font-size:43px}.brz-ed.brz-ed--mobile .brz-fs-xs-44{font-size:44px}.brz-ed.brz-ed--mobile .brz-fs-xs-45{font-size:45px}.brz-ed.brz-ed--mobile .brz-fs-xs-46{font-size:46px}.brz-ed.brz-ed--mobile .brz-fs-xs-47{font-size:47px}.brz-ed.brz-ed--mobile .brz-fs-xs-48{font-size:48px}.brz-ed.brz-ed--mobile .brz-fs-xs-49{font-size:49px}.brz-ed.brz-ed--mobile .brz-fs-xs-50{font-size:50px}.brz-ed.brz-ed--mobile .brz-fs-xs-51{font-size:51px}.brz-ed.brz-ed--mobile .brz-fs-xs-52{font-size:52px}.brz-ed.brz-ed--mobile .brz-fs-xs-53{font-size:53px}.brz-ed.brz-ed--mobile .brz-fs-xs-54{font-size:54px}.brz-ed.brz-ed--mobile .brz-fs-xs-55{font-size:55px}.brz-ed.brz-ed--mobile .brz-fs-xs-56{font-size:56px}.brz-ed.brz-ed--mobile .brz-fs-xs-57{font-size:57px}.brz-ed.brz-ed--mobile .brz-fs-xs-58{font-size:58px}.brz-ed.brz-ed--mobile .brz-fs-xs-59{font-size:59px}.brz-ed.brz-ed--mobile .brz-fs-xs-60{font-size:60px}.brz-ed.brz-ed--mobile .brz-fs-xs-61{font-size:61px}.brz-ed.brz-ed--mobile .brz-fs-xs-62{font-size:62px}.brz-ed.brz-ed--mobile .brz-fs-xs-63{font-size:63px}.brz-ed.brz-ed--mobile .brz-fs-xs-64{font-size:64px}.brz-ed.brz-ed--mobile .brz-fs-xs-65{font-size:65px}.brz-ed.brz-ed--mobile .brz-fs-xs-66{font-size:66px}.brz-ed.brz-ed--mobile .brz-fs-xs-67{font-size:67px}.brz-ed.brz-ed--mobile .brz-fs-xs-68{font-size:68px}.brz-ed.brz-ed--mobile .brz-fs-xs-69{font-size:69px}.brz-ed.brz-ed--mobile .brz-fs-xs-70{font-size:70px}.brz-ed.brz-ed--mobile .brz-fs-xs-71{font-size:71px}.brz-ed.brz-ed--mobile .brz-fs-xs-72{font-size:72px}.brz-ed.brz-ed--mobile .brz-fs-xs-73{font-size:73px}.brz-ed.brz-ed--mobile .brz-fs-xs-74{font-size:74px}.brz-ed.brz-ed--mobile .brz-fs-xs-75{font-size:75px}.brz-ed.brz-ed--mobile .brz-fs-xs-76{font-size:76px}.brz-ed.brz-ed--mobile .brz-fs-xs-77{font-size:77px}.brz-ed.brz-ed--mobile .brz-fs-xs-78{font-size:78px}.brz-ed.brz-ed--mobile .brz-fs-xs-79{font-size:79px}.brz-ed.brz-ed--mobile .brz-fs-xs-80{font-size:80px}.brz-ed.brz-ed--mobile .brz-fs-xs-81{font-size:81px}.brz-ed.brz-ed--mobile .brz-fs-xs-82{font-size:82px}.brz-ed.brz-ed--mobile .brz-fs-xs-83{font-size:83px}.brz-ed.brz-ed--mobile .brz-fs-xs-84{font-size:84px}.brz-ed.brz-ed--mobile .brz-fs-xs-85{font-size:85px}.brz-ed.brz-ed--mobile .brz-fs-xs-86{font-size:86px}.brz-ed.brz-ed--mobile .brz-fs-xs-87{font-size:87px}.brz-ed.brz-ed--mobile .brz-fs-xs-88{font-size:88px}.brz-ed.brz-ed--mobile .brz-fs-xs-89{font-size:89px}.brz-ed.brz-ed--mobile .brz-fs-xs-90{font-size:90px}.brz-ed.brz-ed--mobile .brz-fs-xs-91{font-size:91px}.brz-ed.brz-ed--mobile .brz-fs-xs-92{font-size:92px}.brz-ed.brz-ed--mobile .brz-fs-xs-93{font-size:93px}.brz-ed.brz-ed--mobile .brz-fs-xs-94{font-size:94px}.brz-ed.brz-ed--mobile .brz-fs-xs-95{font-size:95px}.brz-ed.brz-ed--mobile .brz-fs-xs-96{font-size:96px}.brz-ed.brz-ed--mobile .brz-fs-xs-97{font-size:97px}.brz-ed.brz-ed--mobile .brz-fs-xs-98{font-size:98px}.brz-ed.brz-ed--mobile .brz-fs-xs-99{font-size:99px}.brz-ed.brz-ed--mobile .brz-fs-xs-100{font-size:100px}.brz-ed.brz-ed--mobile .brz-fs-xs-101{font-size:101px}.brz-ed.brz-ed--mobile .brz-fs-xs-102{font-size:102px}.brz-ed.brz-ed--mobile .brz-fs-xs-103{font-size:103px}.brz-ed.brz-ed--mobile .brz-fs-xs-104{font-size:104px}.brz-ed.brz-ed--mobile .brz-fs-xs-105{font-size:105px}.brz-ed.brz-ed--mobile .brz-fs-xs-106{font-size:106px}.brz-ed.brz-ed--mobile .brz-fs-xs-107{font-size:107px}.brz-ed.brz-ed--mobile .brz-fs-xs-108{font-size:108px}.brz-ed.brz-ed--mobile .brz-fs-xs-109{font-size:109px}.brz-ed.brz-ed--mobile .brz-fs-xs-110{font-size:110px}.brz-ed.brz-ed--mobile .brz-fs-xs-111{font-size:111px}.brz-ed.brz-ed--mobile .brz-fs-xs-112{font-size:112px}.brz-ed.brz-ed--mobile .brz-fs-xs-113{font-size:113px}.brz-ed.brz-ed--mobile .brz-fs-xs-114{font-size:114px}.brz-ed.brz-ed--mobile .brz-fs-xs-115{font-size:115px}.brz-ed.brz-ed--mobile .brz-fs-xs-116{font-size:116px}.brz-ed.brz-ed--mobile .brz-fs-xs-117{font-size:117px}.brz-ed.brz-ed--mobile .brz-fs-xs-118{font-size:118px}.brz-ed.brz-ed--mobile .brz-fs-xs-119{font-size:119px}.brz-ed.brz-ed--mobile .brz-fs-xs-120{font-size:120px}.brz-ed.brz-ed--mobile .brz-fs-xs-121{font-size:121px}.brz-ed.brz-ed--mobile .brz-fs-xs-122{font-size:122px}.brz-ed.brz-ed--mobile .brz-fs-xs-123{font-size:123px}.brz-ed.brz-ed--mobile .brz-fs-xs-124{font-size:124px}.brz-ed.brz-ed--mobile .brz-fs-xs-125{font-size:125px}.brz-ed.brz-ed--mobile .brz-fs-xs-126{font-size:126px}.brz-ed.brz-ed--mobile .brz-fs-xs-127{font-size:127px}.brz-ed.brz-ed--mobile .brz-fs-xs-128{font-size:128px}.brz-ed.brz-ed--mobile .brz-fs-xs-129{font-size:129px}.brz-ed.brz-ed--mobile .brz-fs-xs-130{font-size:130px}.brz-ed.brz-ed--mobile .brz-fs-xs-131{font-size:131px}.brz-ed.brz-ed--mobile .brz-fs-xs-132{font-size:132px}.brz-ed.brz-ed--mobile .brz-fs-xs-133{font-size:133px}.brz-ed.brz-ed--mobile .brz-fs-xs-134{font-size:134px}.brz-ed.brz-ed--mobile .brz-fs-xs-135{font-size:135px}.brz-ed.brz-ed--mobile .brz-fs-xs-136{font-size:136px}.brz-ed.brz-ed--mobile .brz-fs-xs-137{font-size:137px}.brz-ed.brz-ed--mobile .brz-fs-xs-138{font-size:138px}.brz-ed.brz-ed--mobile .brz-fs-xs-139{font-size:139px}.brz-ed.brz-ed--mobile .brz-fs-xs-140{font-size:140px}.brz-ed.brz-ed--mobile .brz-fs-xs-141{font-size:141px}.brz-ed.brz-ed--mobile .brz-fs-xs-142{font-size:142px}.brz-ed.brz-ed--mobile .brz-fs-xs-143{font-size:143px}.brz-ed.brz-ed--mobile .brz-fs-xs-144{font-size:144px}.brz-ed.brz-ed--mobile .brz-fs-xs-145{font-size:145px}.brz-ed.brz-ed--mobile .brz-fs-xs-146{font-size:146px}.brz-ed.brz-ed--mobile .brz-fs-xs-147{font-size:147px}.brz-ed.brz-ed--mobile .brz-fs-xs-148{font-size:148px}.brz-ed.brz-ed--mobile .brz-fs-xs-149{font-size:149px}.brz-ed.brz-ed--mobile .brz-fs-xs-150{font-size:150px}.brz-ed.brz-ed--mobile .brz-fs-xs-151{font-size:151px}.brz-ed.brz-ed--mobile .brz-fs-xs-152{font-size:152px}.brz-ed.brz-ed--mobile .brz-fs-xs-153{font-size:153px}.brz-ed.brz-ed--mobile .brz-fs-xs-154{font-size:154px}.brz-ed.brz-ed--mobile .brz-fs-xs-155{font-size:155px}.brz-ed.brz-ed--mobile .brz-fs-xs-156{font-size:156px}.brz-ed.brz-ed--mobile .brz-fs-xs-157{font-size:157px}.brz-ed.brz-ed--mobile .brz-fs-xs-158{font-size:158px}.brz-ed.brz-ed--mobile .brz-fs-xs-159{font-size:159px}.brz-ed.brz-ed--mobile .brz-fs-xs-160{font-size:160px}.brz-ed.brz-ed--mobile .brz-fs-xs-161{font-size:161px}.brz-ed.brz-ed--mobile .brz-fs-xs-162{font-size:162px}.brz-ed.brz-ed--mobile .brz-fs-xs-163{font-size:163px}.brz-ed.brz-ed--mobile .brz-fs-xs-164{font-size:164px}.brz-ed.brz-ed--mobile .brz-fs-xs-165{font-size:165px}.brz-ed.brz-ed--mobile .brz-fs-xs-166{font-size:166px}.brz-ed.brz-ed--mobile .brz-fs-xs-167{font-size:167px}.brz-ed.brz-ed--mobile .brz-fs-xs-168{font-size:168px}.brz-ed.brz-ed--mobile .brz-fs-xs-169{font-size:169px}.brz-ed.brz-ed--mobile .brz-fs-xs-170{font-size:170px}.brz-ed.brz-ed--mobile .brz-fs-xs-171{font-size:171px}.brz-ed.brz-ed--mobile .brz-fs-xs-172{font-size:172px}.brz-ed.brz-ed--mobile .brz-fs-xs-173{font-size:173px}.brz-ed.brz-ed--mobile .brz-fs-xs-174{font-size:174px}.brz-ed.brz-ed--mobile .brz-fs-xs-175{font-size:175px}.brz-ed.brz-ed--mobile .brz-fs-xs-176{font-size:176px}.brz-ed.brz-ed--mobile .brz-fs-xs-177{font-size:177px}.brz-ed.brz-ed--mobile .brz-fs-xs-178{font-size:178px}.brz-ed.brz-ed--mobile .brz-fs-xs-179{font-size:179px}.brz-ed.brz-ed--mobile .brz-fs-xs-180{font-size:180px}.brz-ed.brz-ed--mobile .brz-lh-im-1{line-height:1em}.brz-ed.brz-ed--mobile .brz-lh-im-1_1{line-height:1.1em}.brz-ed.brz-ed--mobile .brz-lh-im-1_2{line-height:1.2em}.brz-ed.brz-ed--mobile .brz-lh-im-1_3{line-height:1.3em}.brz-ed.brz-ed--mobile .brz-lh-im-1_4{line-height:1.4em}.brz-ed.brz-ed--mobile .brz-lh-im-1_5{line-height:1.5em}.brz-ed.brz-ed--mobile .brz-lh-im-1_6{line-height:1.6em}.brz-ed.brz-ed--mobile .brz-lh-im-1_7{line-height:1.7em}.brz-ed.brz-ed--mobile .brz-lh-im-1_8{line-height:1.8em}.brz-ed.brz-ed--mobile .brz-lh-im-1_9{line-height:1.9em}.brz-ed.brz-ed--mobile .brz-lh-im-2{line-height:2em}.brz-ed.brz-ed--mobile .brz-lh-im-2_1{line-height:2.1em}.brz-ed.brz-ed--mobile .brz-lh-im-2_2{line-height:2.2em}.brz-ed.brz-ed--mobile .brz-lh-im-2_3{line-height:2.3em}.brz-ed.brz-ed--mobile .brz-lh-im-2_4{line-height:2.4em}.brz-ed.brz-ed--mobile .brz-lh-im-2_5{line-height:2.5em}.brz-ed.brz-ed--mobile .brz-lh-im-2_6{line-height:2.6em}.brz-ed.brz-ed--mobile .brz-lh-im-2_7{line-height:2.7em}.brz-ed.brz-ed--mobile .brz-lh-im-2_8{line-height:2.8em}.brz-ed.brz-ed--mobile .brz-lh-im-2_9{line-height:2.9em}.brz-ed.brz-ed--mobile .brz-lh-im-3{line-height:3em}.brz-ed.brz-ed--mobile .brz-lh-im-3_1{line-height:3.1em}.brz-ed.brz-ed--mobile .brz-lh-im-3_2{line-height:3.2em}.brz-ed.brz-ed--mobile .brz-lh-im-3_3{line-height:3.3em}.brz-ed.brz-ed--mobile .brz-lh-im-3_4{line-height:3.4em}.brz-ed.brz-ed--mobile .brz-lh-im-3_5{line-height:3.5em}.brz-ed.brz-ed--mobile .brz-lh-im-3_6{line-height:3.6em}.brz-ed.brz-ed--mobile .brz-lh-im-3_7{line-height:3.7em}.brz-ed.brz-ed--mobile .brz-lh-im-3_8{line-height:3.8em}.brz-ed.brz-ed--mobile .brz-lh-im-3_9{line-height:3.9em}.brz-ed.brz-ed--mobile .brz-lh-im-4{line-height:4em}.brz-ed.brz-ed--mobile .brz-lh-im-4_1{line-height:4.1em}.brz-ed.brz-ed--mobile .brz-lh-im-4_2{line-height:4.2em}.brz-ed.brz-ed--mobile .brz-lh-im-4_3{line-height:4.3em}.brz-ed.brz-ed--mobile .brz-lh-im-4_4{line-height:4.4em}.brz-ed.brz-ed--mobile .brz-lh-im-4_5{line-height:4.5em}.brz-ed.brz-ed--mobile .brz-lh-im-4_6{line-height:4.6em}.brz-ed.brz-ed--mobile .brz-lh-im-4_7{line-height:4.7em}.brz-ed.brz-ed--mobile .brz-lh-im-4_8{line-height:4.8em}.brz-ed.brz-ed--mobile .brz-lh-im-4_9{line-height:4.9em}.brz-ed.brz-ed--mobile .brz-lh-im-5{line-height:5em}.brz-ed.brz-ed--mobile .brz-lh-im-5_1{line-height:5.1em}.brz-ed.brz-ed--mobile .brz-lh-im-5_2{line-height:5.2em}.brz-ed.brz-ed--mobile .brz-lh-im-5_3{line-height:5.3em}.brz-ed.brz-ed--mobile .brz-lh-im-5_4{line-height:5.4em}.brz-ed.brz-ed--mobile .brz-lh-im-5_5{line-height:5.5em}.brz-ed.brz-ed--mobile .brz-lh-im-5_6{line-height:5.6em}.brz-ed.brz-ed--mobile .brz-lh-im-5_7{line-height:5.7em}.brz-ed.brz-ed--mobile .brz-lh-im-5_8{line-height:5.8em}.brz-ed.brz-ed--mobile .brz-lh-im-5_9{line-height:5.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-1{line-height:1em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_1{line-height:1.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_2{line-height:1.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_3{line-height:1.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_4{line-height:1.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_5{line-height:1.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_6{line-height:1.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_7{line-height:1.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_8{line-height:1.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_9{line-height:1.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-2{line-height:2em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_1{line-height:2.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_2{line-height:2.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_3{line-height:2.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_4{line-height:2.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_5{line-height:2.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_6{line-height:2.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_7{line-height:2.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_8{line-height:2.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_9{line-height:2.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-3{line-height:3em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_1{line-height:3.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_2{line-height:3.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_3{line-height:3.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_4{line-height:3.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_5{line-height:3.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_6{line-height:3.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_7{line-height:3.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_8{line-height:3.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_9{line-height:3.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-4{line-height:4em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_1{line-height:4.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_2{line-height:4.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_3{line-height:4.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_4{line-height:4.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_5{line-height:4.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_6{line-height:4.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_7{line-height:4.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_8{line-height:4.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_9{line-height:4.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-5{line-height:5em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_1{line-height:5.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_2{line-height:5.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_3{line-height:5.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_4{line-height:5.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_5{line-height:5.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_6{line-height:5.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_7{line-height:5.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_8{line-height:5.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_9{line-height:5.9em}.brz-ed.brz-ed--mobile .brz-fw-im-100{font-weight:100!important}.brz-ed.brz-ed--mobile .brz-fw-im-200{font-weight:200!important}.brz-ed.brz-ed--mobile .brz-fw-im-300{font-weight:300!important}.brz-ed.brz-ed--mobile .brz-fw-im-400{font-weight:400!important}.brz-ed.brz-ed--mobile .brz-fw-im-500{font-weight:500!important}.brz-ed.brz-ed--mobile .brz-fw-im-600{font-weight:600!important}.brz-ed.brz-ed--mobile .brz-fw-im-700{font-weight:700!important}.brz-ed.brz-ed--mobile .brz-fw-im-800{font-weight:800!important}.brz-ed.brz-ed--mobile .brz-fw-im-900{font-weight:900!important}.brz-ed.brz-ed--mobile .brz-fw-im-1000{font-weight:1000!important}.brz-ed.brz-ed--mobile .brz-fw-im-1100{font-weight:1100!important}.brz-ed.brz-ed--mobile .brz-fw-im-1200{font-weight:1200!important}.brz-ed.brz-ed--mobile .brz-fw-im-1300{font-weight:1300!important}.brz-ed.brz-ed--mobile .brz-fw-im-1400{font-weight:1400!important}.brz-ed.brz-ed--mobile .brz-fw-im-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-fw-xs-100{font-weight:100!important}.brz-ed.brz-ed--mobile .brz-fw-xs-200{font-weight:200!important}.brz-ed.brz-ed--mobile .brz-fw-xs-300{font-weight:300!important}.brz-ed.brz-ed--mobile .brz-fw-xs-400{font-weight:400!important}.brz-ed.brz-ed--mobile .brz-fw-xs-500{font-weight:500!important}.brz-ed.brz-ed--mobile .brz-fw-xs-600{font-weight:600!important}.brz-ed.brz-ed--mobile .brz-fw-xs-700{font-weight:700!important}.brz-ed.brz-ed--mobile .brz-fw-xs-800{font-weight:800!important}.brz-ed.brz-ed--mobile .brz-fw-xs-900{font-weight:900!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1000{font-weight:1000!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1100{font-weight:1100!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1200{font-weight:1200!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1300{font-weight:1300!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1400{font-weight:1400!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_5{letter-spacing:-5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_5_5{letter-spacing:-5.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_4{letter-spacing:-4px}.brz-ed.brz-ed--mobile .brz-ls-im-m_4_5{letter-spacing:-4.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_3{letter-spacing:-3px}.brz-ed.brz-ed--mobile .brz-ls-im-m_3_5{letter-spacing:-3.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_2{letter-spacing:-2px}.brz-ed.brz-ed--mobile .brz-ls-im-m_2_5{letter-spacing:-2.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_1{letter-spacing:-1px}.brz-ed.brz-ed--mobile .brz-ls-im-m_1_5{letter-spacing:-1.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-im-m_0_5{letter-spacing:-.5px}.brz-ed.brz-ed--mobile .brz-ls-im-0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-im-0_5{letter-spacing:.5px}.brz-ed.brz-ed--mobile .brz-ls-im-1{letter-spacing:1px}.brz-ed.brz-ed--mobile .brz-ls-im-1_5{letter-spacing:1.5px}.brz-ed.brz-ed--mobile .brz-ls-im-2{letter-spacing:2px}.brz-ed.brz-ed--mobile .brz-ls-im-2_5{letter-spacing:2.5px}.brz-ed.brz-ed--mobile .brz-ls-im-3{letter-spacing:3px}.brz-ed.brz-ed--mobile .brz-ls-im-3_5{letter-spacing:3.5px}.brz-ed.brz-ed--mobile .brz-ls-im-4{letter-spacing:4px}.brz-ed.brz-ed--mobile .brz-ls-im-4_5{letter-spacing:4.5px}.brz-ed.brz-ed--mobile .brz-ls-im-5{letter-spacing:5px}.brz-ed.brz-ed--mobile .brz-ls-im-5_5{letter-spacing:5.5px}.brz-ed.brz-ed--mobile .brz-ls-im-6{letter-spacing:6px}.brz-ed.brz-ed--mobile .brz-ls-im-6_5{letter-spacing:6.5px}.brz-ed.brz-ed--mobile .brz-ls-im-7{letter-spacing:7px}.brz-ed.brz-ed--mobile .brz-ls-im-7_5{letter-spacing:7.5px}.brz-ed.brz-ed--mobile .brz-ls-im-8{letter-spacing:8px}.brz-ed.brz-ed--mobile .brz-ls-im-8_5{letter-spacing:8.5px}.brz-ed.brz-ed--mobile .brz-ls-im-9{letter-spacing:9px}.brz-ed.brz-ed--mobile .brz-ls-im-9_5{letter-spacing:9.5px}.brz-ed.brz-ed--mobile .brz-ls-im-10{letter-spacing:10px}.brz-ed.brz-ed--mobile .brz-ls-im-10_5{letter-spacing:10.5px}.brz-ed.brz-ed--mobile .brz-ls-im-11{letter-spacing:11px}.brz-ed.brz-ed--mobile .brz-ls-im-11_5{letter-spacing:11.5px}.brz-ed.brz-ed--mobile .brz-ls-im-12{letter-spacing:12px}.brz-ed.brz-ed--mobile .brz-ls-im-12_5{letter-spacing:12.5px}.brz-ed.brz-ed--mobile .brz-ls-im-13{letter-spacing:13px}.brz-ed.brz-ed--mobile .brz-ls-im-13_5{letter-spacing:13.5px}.brz-ed.brz-ed--mobile .brz-ls-im-14{letter-spacing:14px}.brz-ed.brz-ed--mobile .brz-ls-im-14_5{letter-spacing:14.5px}.brz-ed.brz-ed--mobile .brz-ls-im-15{letter-spacing:15px}.brz-ed.brz-ed--mobile .brz-ls-im-15_5{letter-spacing:15.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_5{letter-spacing:-5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_5_5{letter-spacing:-5.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_4{letter-spacing:-4px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_4_5{letter-spacing:-4.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_3{letter-spacing:-3px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_3_5{letter-spacing:-3.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_2{letter-spacing:-2px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_2_5{letter-spacing:-2.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_1{letter-spacing:-1px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_1_5{letter-spacing:-1.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-xs-m_0_5{letter-spacing:-.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-xs-0_5{letter-spacing:.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-1{letter-spacing:1px}.brz-ed.brz-ed--mobile .brz-ls-xs-1_5{letter-spacing:1.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-2{letter-spacing:2px}.brz-ed.brz-ed--mobile .brz-ls-xs-2_5{letter-spacing:2.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-3{letter-spacing:3px}.brz-ed.brz-ed--mobile .brz-ls-xs-3_5{letter-spacing:3.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-4{letter-spacing:4px}.brz-ed.brz-ed--mobile .brz-ls-xs-4_5{letter-spacing:4.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-5{letter-spacing:5px}.brz-ed.brz-ed--mobile .brz-ls-xs-5_5{letter-spacing:5.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-6{letter-spacing:6px}.brz-ed.brz-ed--mobile .brz-ls-xs-6_5{letter-spacing:6.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-7{letter-spacing:7px}.brz-ed.brz-ed--mobile .brz-ls-xs-7_5{letter-spacing:7.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-8{letter-spacing:8px}.brz-ed.brz-ed--mobile .brz-ls-xs-8_5{letter-spacing:8.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-9{letter-spacing:9px}.brz-ed.brz-ed--mobile .brz-ls-xs-9_5{letter-spacing:9.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-10{letter-spacing:10px}.brz-ed.brz-ed--mobile .brz-ls-xs-10_5{letter-spacing:10.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-11{letter-spacing:11px}.brz-ed.brz-ed--mobile .brz-ls-xs-11_5{letter-spacing:11.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-12{letter-spacing:12px}.brz-ed.brz-ed--mobile .brz-ls-xs-12_5{letter-spacing:12.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-13{letter-spacing:13px}.brz-ed.brz-ed--mobile .brz-ls-xs-13_5{letter-spacing:13.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-14{letter-spacing:14px}.brz-ed.brz-ed--mobile .brz-ls-xs-14_5{letter-spacing:14.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-15{letter-spacing:15px}.brz-ed.brz-ed--mobile .brz-ls-xs-15_5{letter-spacing:15.5px}.brz-ed .brz-mt-lg-0{margin-top:0!important}.brz-ed .brz-mt-lg-1{margin-top:1px!important}.brz-ed .brz-mt-lg-2{margin-top:2px!important}.brz-ed .brz-mt-lg-3{margin-top:3px!important}.brz-ed .brz-mt-lg-4{margin-top:4px!important}.brz-ed .brz-mt-lg-5{margin-top:5px!important}.brz-ed .brz-mt-lg-6{margin-top:6px!important}.brz-ed .brz-mt-lg-7{margin-top:7px!important}.brz-ed .brz-mt-lg-8{margin-top:8px!important}.brz-ed .brz-mt-lg-9{margin-top:9px!important}.brz-ed .brz-mt-lg-10{margin-top:10px!important}.brz-ed .brz-mt-lg-11{margin-top:11px!important}.brz-ed .brz-mt-lg-12{margin-top:12px!important}.brz-ed .brz-mt-lg-13{margin-top:13px!important}.brz-ed .brz-mt-lg-14{margin-top:14px!important}.brz-ed .brz-mt-lg-15{margin-top:15px!important}.brz-ed .brz-mt-lg-16{margin-top:16px!important}.brz-ed .brz-mt-lg-17{margin-top:17px!important}.brz-ed .brz-mt-lg-18{margin-top:18px!important}.brz-ed .brz-mt-lg-19{margin-top:19px!important}.brz-ed .brz-mt-lg-20{margin-top:20px!important}.brz-ed .brz-mt-lg-21{margin-top:21px!important}.brz-ed .brz-mt-lg-22{margin-top:22px!important}.brz-ed .brz-mt-lg-23{margin-top:23px!important}.brz-ed .brz-mt-lg-24{margin-top:24px!important}.brz-ed .brz-mt-lg-25{margin-top:25px!important}.brz-ed .brz-mt-lg-26{margin-top:26px!important}.brz-ed .brz-mt-lg-27{margin-top:27px!important}.brz-ed .brz-mt-lg-28{margin-top:28px!important}.brz-ed .brz-mt-lg-29{margin-top:29px!important}.brz-ed .brz-mt-lg-30{margin-top:30px!important}.brz-ed .brz-mt-lg-31{margin-top:31px!important}.brz-ed .brz-mt-lg-32{margin-top:32px!important}.brz-ed .brz-mt-lg-33{margin-top:33px!important}.brz-ed .brz-mt-lg-34{margin-top:34px!important}.brz-ed .brz-mt-lg-35{margin-top:35px!important}.brz-ed .brz-mt-lg-36{margin-top:36px!important}.brz-ed .brz-mt-lg-37{margin-top:37px!important}.brz-ed .brz-mt-lg-38{margin-top:38px!important}.brz-ed .brz-mt-lg-39{margin-top:39px!important}.brz-ed .brz-mt-lg-40{margin-top:40px!important}.brz-ed .brz-mt-lg-41{margin-top:41px!important}.brz-ed .brz-mt-lg-42{margin-top:42px!important}.brz-ed .brz-mt-lg-43{margin-top:43px!important}.brz-ed .brz-mt-lg-44{margin-top:44px!important}.brz-ed .brz-mt-lg-45{margin-top:45px!important}.brz-ed .brz-mt-lg-46{margin-top:46px!important}.brz-ed .brz-mt-lg-47{margin-top:47px!important}.brz-ed .brz-mt-lg-48{margin-top:48px!important}.brz-ed .brz-mt-lg-49{margin-top:49px!important}.brz-ed .brz-mt-lg-50{margin-top:50px!important}.brz-ed .brz-mt-lg-51{margin-top:51px!important}.brz-ed .brz-mt-lg-52{margin-top:52px!important}.brz-ed .brz-mt-lg-53{margin-top:53px!important}.brz-ed .brz-mt-lg-54{margin-top:54px!important}.brz-ed .brz-mt-lg-55{margin-top:55px!important}.brz-ed .brz-mt-lg-56{margin-top:56px!important}.brz-ed .brz-mt-lg-57{margin-top:57px!important}.brz-ed .brz-mt-lg-58{margin-top:58px!important}.brz-ed .brz-mt-lg-59{margin-top:59px!important}.brz-ed .brz-mt-lg-60{margin-top:60px!important}.brz-ed .brz-mt-lg-61{margin-top:61px!important}.brz-ed .brz-mt-lg-62{margin-top:62px!important}.brz-ed .brz-mt-lg-63{margin-top:63px!important}.brz-ed .brz-mt-lg-64{margin-top:64px!important}.brz-ed .brz-mt-lg-65{margin-top:65px!important}.brz-ed .brz-mt-lg-66{margin-top:66px!important}.brz-ed .brz-mt-lg-67{margin-top:67px!important}.brz-ed .brz-mt-lg-68{margin-top:68px!important}.brz-ed .brz-mt-lg-69{margin-top:69px!important}.brz-ed .brz-mt-lg-70{margin-top:70px!important}.brz-ed .brz-mt-lg-71{margin-top:71px!important}.brz-ed .brz-mt-lg-72{margin-top:72px!important}.brz-ed .brz-mt-lg-73{margin-top:73px!important}.brz-ed .brz-mt-lg-74{margin-top:74px!important}.brz-ed .brz-mt-lg-75{margin-top:75px!important}.brz-ed .brz-mt-lg-76{margin-top:76px!important}.brz-ed .brz-mt-lg-77{margin-top:77px!important}.brz-ed .brz-mt-lg-78{margin-top:78px!important}.brz-ed .brz-mt-lg-79{margin-top:79px!important}.brz-ed .brz-mt-lg-80{margin-top:80px!important}.brz-ed .brz-mt-lg-81{margin-top:81px!important}.brz-ed .brz-mt-lg-82{margin-top:82px!important}.brz-ed .brz-mt-lg-83{margin-top:83px!important}.brz-ed .brz-mt-lg-84{margin-top:84px!important}.brz-ed .brz-mt-lg-85{margin-top:85px!important}.brz-ed .brz-mt-lg-86{margin-top:86px!important}.brz-ed .brz-mt-lg-87{margin-top:87px!important}.brz-ed .brz-mt-lg-88{margin-top:88px!important}.brz-ed .brz-mt-lg-89{margin-top:89px!important}.brz-ed .brz-mt-lg-90{margin-top:90px!important}.brz-ed .brz-mt-lg-91{margin-top:91px!important}.brz-ed .brz-mt-lg-92{margin-top:92px!important}.brz-ed .brz-mt-lg-93{margin-top:93px!important}.brz-ed .brz-mt-lg-94{margin-top:94px!important}.brz-ed .brz-mt-lg-95{margin-top:95px!important}.brz-ed .brz-mt-lg-96{margin-top:96px!important}.brz-ed .brz-mt-lg-97{margin-top:97px!important}.brz-ed .brz-mt-lg-98{margin-top:98px!important}.brz-ed .brz-mt-lg-99{margin-top:99px!important}.brz-ed .brz-mt-lg-100{margin-top:100px!important}.brz-ed .brz-mb-lg-0{margin-bottom:0!important}.brz-ed .brz-mb-lg-1{margin-bottom:1px!important}.brz-ed .brz-mb-lg-2{margin-bottom:2px!important}.brz-ed .brz-mb-lg-3{margin-bottom:3px!important}.brz-ed .brz-mb-lg-4{margin-bottom:4px!important}.brz-ed .brz-mb-lg-5{margin-bottom:5px!important}.brz-ed .brz-mb-lg-6{margin-bottom:6px!important}.brz-ed .brz-mb-lg-7{margin-bottom:7px!important}.brz-ed .brz-mb-lg-8{margin-bottom:8px!important}.brz-ed .brz-mb-lg-9{margin-bottom:9px!important}.brz-ed .brz-mb-lg-10{margin-bottom:10px!important}.brz-ed .brz-mb-lg-11{margin-bottom:11px!important}.brz-ed .brz-mb-lg-12{margin-bottom:12px!important}.brz-ed .brz-mb-lg-13{margin-bottom:13px!important}.brz-ed .brz-mb-lg-14{margin-bottom:14px!important}.brz-ed .brz-mb-lg-15{margin-bottom:15px!important}.brz-ed .brz-mb-lg-16{margin-bottom:16px!important}.brz-ed .brz-mb-lg-17{margin-bottom:17px!important}.brz-ed .brz-mb-lg-18{margin-bottom:18px!important}.brz-ed .brz-mb-lg-19{margin-bottom:19px!important}.brz-ed .brz-mb-lg-20{margin-bottom:20px!important}.brz-ed .brz-mb-lg-21{margin-bottom:21px!important}.brz-ed .brz-mb-lg-22{margin-bottom:22px!important}.brz-ed .brz-mb-lg-23{margin-bottom:23px!important}.brz-ed .brz-mb-lg-24{margin-bottom:24px!important}.brz-ed .brz-mb-lg-25{margin-bottom:25px!important}.brz-ed .brz-mb-lg-26{margin-bottom:26px!important}.brz-ed .brz-mb-lg-27{margin-bottom:27px!important}.brz-ed .brz-mb-lg-28{margin-bottom:28px!important}.brz-ed .brz-mb-lg-29{margin-bottom:29px!important}.brz-ed .brz-mb-lg-30{margin-bottom:30px!important}.brz-ed .brz-mb-lg-31{margin-bottom:31px!important}.brz-ed .brz-mb-lg-32{margin-bottom:32px!important}.brz-ed .brz-mb-lg-33{margin-bottom:33px!important}.brz-ed .brz-mb-lg-34{margin-bottom:34px!important}.brz-ed .brz-mb-lg-35{margin-bottom:35px!important}.brz-ed .brz-mb-lg-36{margin-bottom:36px!important}.brz-ed .brz-mb-lg-37{margin-bottom:37px!important}.brz-ed .brz-mb-lg-38{margin-bottom:38px!important}.brz-ed .brz-mb-lg-39{margin-bottom:39px!important}.brz-ed .brz-mb-lg-40{margin-bottom:40px!important}.brz-ed .brz-mb-lg-41{margin-bottom:41px!important}.brz-ed .brz-mb-lg-42{margin-bottom:42px!important}.brz-ed .brz-mb-lg-43{margin-bottom:43px!important}.brz-ed .brz-mb-lg-44{margin-bottom:44px!important}.brz-ed .brz-mb-lg-45{margin-bottom:45px!important}.brz-ed .brz-mb-lg-46{margin-bottom:46px!important}.brz-ed .brz-mb-lg-47{margin-bottom:47px!important}.brz-ed .brz-mb-lg-48{margin-bottom:48px!important}.brz-ed .brz-mb-lg-49{margin-bottom:49px!important}.brz-ed .brz-mb-lg-50{margin-bottom:50px!important}.brz-ed .brz-mb-lg-51{margin-bottom:51px!important}.brz-ed .brz-mb-lg-52{margin-bottom:52px!important}.brz-ed .brz-mb-lg-53{margin-bottom:53px!important}.brz-ed .brz-mb-lg-54{margin-bottom:54px!important}.brz-ed .brz-mb-lg-55{margin-bottom:55px!important}.brz-ed .brz-mb-lg-56{margin-bottom:56px!important}.brz-ed .brz-mb-lg-57{margin-bottom:57px!important}.brz-ed .brz-mb-lg-58{margin-bottom:58px!important}.brz-ed .brz-mb-lg-59{margin-bottom:59px!important}.brz-ed .brz-mb-lg-60{margin-bottom:60px!important}.brz-ed .brz-mb-lg-61{margin-bottom:61px!important}.brz-ed .brz-mb-lg-62{margin-bottom:62px!important}.brz-ed .brz-mb-lg-63{margin-bottom:63px!important}.brz-ed .brz-mb-lg-64{margin-bottom:64px!important}.brz-ed .brz-mb-lg-65{margin-bottom:65px!important}.brz-ed .brz-mb-lg-66{margin-bottom:66px!important}.brz-ed .brz-mb-lg-67{margin-bottom:67px!important}.brz-ed .brz-mb-lg-68{margin-bottom:68px!important}.brz-ed .brz-mb-lg-69{margin-bottom:69px!important}.brz-ed .brz-mb-lg-70{margin-bottom:70px!important}.brz-ed .brz-mb-lg-71{margin-bottom:71px!important}.brz-ed .brz-mb-lg-72{margin-bottom:72px!important}.brz-ed .brz-mb-lg-73{margin-bottom:73px!important}.brz-ed .brz-mb-lg-74{margin-bottom:74px!important}.brz-ed .brz-mb-lg-75{margin-bottom:75px!important}.brz-ed .brz-mb-lg-76{margin-bottom:76px!important}.brz-ed .brz-mb-lg-77{margin-bottom:77px!important}.brz-ed .brz-mb-lg-78{margin-bottom:78px!important}.brz-ed .brz-mb-lg-79{margin-bottom:79px!important}.brz-ed .brz-mb-lg-80{margin-bottom:80px!important}.brz-ed .brz-mb-lg-81{margin-bottom:81px!important}.brz-ed .brz-mb-lg-82{margin-bottom:82px!important}.brz-ed .brz-mb-lg-83{margin-bottom:83px!important}.brz-ed .brz-mb-lg-84{margin-bottom:84px!important}.brz-ed .brz-mb-lg-85{margin-bottom:85px!important}.brz-ed .brz-mb-lg-86{margin-bottom:86px!important}.brz-ed .brz-mb-lg-87{margin-bottom:87px!important}.brz-ed .brz-mb-lg-88{margin-bottom:88px!important}.brz-ed .brz-mb-lg-89{margin-bottom:89px!important}.brz-ed .brz-mb-lg-90{margin-bottom:90px!important}.brz-ed .brz-mb-lg-91{margin-bottom:91px!important}.brz-ed .brz-mb-lg-92{margin-bottom:92px!important}.brz-ed .brz-mb-lg-93{margin-bottom:93px!important}.brz-ed .brz-mb-lg-94{margin-bottom:94px!important}.brz-ed .brz-mb-lg-95{margin-bottom:95px!important}.brz-ed .brz-mb-lg-96{margin-bottom:96px!important}.brz-ed .brz-mb-lg-97{margin-bottom:97px!important}.brz-ed .brz-mb-lg-98{margin-bottom:98px!important}.brz-ed .brz-mb-lg-99{margin-bottom:99px!important}.brz-ed .brz-mb-lg-100{margin-bottom:100px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-0{margin-top:0!important}.brz-ed.brz-ed--desktop .brz-mt-lg-1{margin-top:1px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-2{margin-top:2px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-3{margin-top:3px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-4{margin-top:4px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-5{margin-top:5px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-6{margin-top:6px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-7{margin-top:7px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-8{margin-top:8px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-9{margin-top:9px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-10{margin-top:10px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-11{margin-top:11px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-12{margin-top:12px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-13{margin-top:13px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-14{margin-top:14px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-15{margin-top:15px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-16{margin-top:16px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-17{margin-top:17px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-18{margin-top:18px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-19{margin-top:19px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-20{margin-top:20px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-21{margin-top:21px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-22{margin-top:22px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-23{margin-top:23px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-24{margin-top:24px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-25{margin-top:25px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-26{margin-top:26px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-27{margin-top:27px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-28{margin-top:28px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-29{margin-top:29px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-30{margin-top:30px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-31{margin-top:31px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-32{margin-top:32px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-33{margin-top:33px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-34{margin-top:34px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-35{margin-top:35px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-36{margin-top:36px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-37{margin-top:37px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-38{margin-top:38px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-39{margin-top:39px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-40{margin-top:40px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-41{margin-top:41px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-42{margin-top:42px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-43{margin-top:43px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-44{margin-top:44px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-45{margin-top:45px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-46{margin-top:46px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-47{margin-top:47px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-48{margin-top:48px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-49{margin-top:49px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-50{margin-top:50px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-51{margin-top:51px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-52{margin-top:52px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-53{margin-top:53px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-54{margin-top:54px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-55{margin-top:55px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-56{margin-top:56px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-57{margin-top:57px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-58{margin-top:58px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-59{margin-top:59px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-60{margin-top:60px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-61{margin-top:61px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-62{margin-top:62px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-63{margin-top:63px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-64{margin-top:64px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-65{margin-top:65px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-66{margin-top:66px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-67{margin-top:67px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-68{margin-top:68px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-69{margin-top:69px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-70{margin-top:70px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-71{margin-top:71px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-72{margin-top:72px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-73{margin-top:73px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-74{margin-top:74px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-75{margin-top:75px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-76{margin-top:76px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-77{margin-top:77px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-78{margin-top:78px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-79{margin-top:79px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-80{margin-top:80px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-81{margin-top:81px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-82{margin-top:82px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-83{margin-top:83px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-84{margin-top:84px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-85{margin-top:85px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-86{margin-top:86px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-87{margin-top:87px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-88{margin-top:88px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-89{margin-top:89px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-90{margin-top:90px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-91{margin-top:91px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-92{margin-top:92px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-93{margin-top:93px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-94{margin-top:94px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-95{margin-top:95px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-96{margin-top:96px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-97{margin-top:97px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-98{margin-top:98px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-99{margin-top:99px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-100{margin-top:100px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-0{margin-bottom:0!important}.brz-ed.brz-ed--desktop .brz-mb-lg-1{margin-bottom:1px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-2{margin-bottom:2px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-3{margin-bottom:3px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-4{margin-bottom:4px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-5{margin-bottom:5px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-6{margin-bottom:6px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-7{margin-bottom:7px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-8{margin-bottom:8px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-9{margin-bottom:9px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-10{margin-bottom:10px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-11{margin-bottom:11px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-12{margin-bottom:12px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-13{margin-bottom:13px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-14{margin-bottom:14px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-15{margin-bottom:15px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-16{margin-bottom:16px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-17{margin-bottom:17px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-18{margin-bottom:18px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-19{margin-bottom:19px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-20{margin-bottom:20px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-21{margin-bottom:21px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-22{margin-bottom:22px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-23{margin-bottom:23px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-24{margin-bottom:24px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-25{margin-bottom:25px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-26{margin-bottom:26px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-27{margin-bottom:27px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-28{margin-bottom:28px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-29{margin-bottom:29px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-30{margin-bottom:30px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-31{margin-bottom:31px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-32{margin-bottom:32px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-33{margin-bottom:33px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-34{margin-bottom:34px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-35{margin-bottom:35px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-36{margin-bottom:36px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-37{margin-bottom:37px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-38{margin-bottom:38px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-39{margin-bottom:39px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-40{margin-bottom:40px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-41{margin-bottom:41px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-42{margin-bottom:42px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-43{margin-bottom:43px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-44{margin-bottom:44px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-45{margin-bottom:45px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-46{margin-bottom:46px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-47{margin-bottom:47px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-48{margin-bottom:48px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-49{margin-bottom:49px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-50{margin-bottom:50px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-51{margin-bottom:51px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-52{margin-bottom:52px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-53{margin-bottom:53px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-54{margin-bottom:54px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-55{margin-bottom:55px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-56{margin-bottom:56px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-57{margin-bottom:57px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-58{margin-bottom:58px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-59{margin-bottom:59px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-60{margin-bottom:60px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-61{margin-bottom:61px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-62{margin-bottom:62px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-63{margin-bottom:63px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-64{margin-bottom:64px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-65{margin-bottom:65px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-66{margin-bottom:66px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-67{margin-bottom:67px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-68{margin-bottom:68px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-69{margin-bottom:69px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-70{margin-bottom:70px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-71{margin-bottom:71px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-72{margin-bottom:72px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-73{margin-bottom:73px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-74{margin-bottom:74px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-75{margin-bottom:75px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-76{margin-bottom:76px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-77{margin-bottom:77px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-78{margin-bottom:78px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-79{margin-bottom:79px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-80{margin-bottom:80px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-81{margin-bottom:81px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-82{margin-bottom:82px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-83{margin-bottom:83px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-84{margin-bottom:84px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-85{margin-bottom:85px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-86{margin-bottom:86px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-87{margin-bottom:87px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-88{margin-bottom:88px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-89{margin-bottom:89px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-90{margin-bottom:90px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-91{margin-bottom:91px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-92{margin-bottom:92px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-93{margin-bottom:93px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-94{margin-bottom:94px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-95{margin-bottom:95px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-96{margin-bottom:96px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-97{margin-bottom:97px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-98{margin-bottom:98px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-99{margin-bottom:99px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-100{margin-bottom:100px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-0{margin-top:0!important}.brz-ed.brz-ed--mobile .brz-mt-xs-1{margin-top:1px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-2{margin-top:2px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-3{margin-top:3px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-4{margin-top:4px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-5{margin-top:5px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-6{margin-top:6px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-7{margin-top:7px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-8{margin-top:8px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-9{margin-top:9px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-10{margin-top:10px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-11{margin-top:11px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-12{margin-top:12px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-13{margin-top:13px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-14{margin-top:14px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-15{margin-top:15px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-16{margin-top:16px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-17{margin-top:17px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-18{margin-top:18px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-19{margin-top:19px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-20{margin-top:20px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-21{margin-top:21px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-22{margin-top:22px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-23{margin-top:23px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-24{margin-top:24px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-25{margin-top:25px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-26{margin-top:26px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-27{margin-top:27px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-28{margin-top:28px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-29{margin-top:29px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-30{margin-top:30px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-31{margin-top:31px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-32{margin-top:32px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-33{margin-top:33px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-34{margin-top:34px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-35{margin-top:35px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-36{margin-top:36px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-37{margin-top:37px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-38{margin-top:38px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-39{margin-top:39px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-40{margin-top:40px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-41{margin-top:41px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-42{margin-top:42px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-43{margin-top:43px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-44{margin-top:44px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-45{margin-top:45px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-46{margin-top:46px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-47{margin-top:47px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-48{margin-top:48px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-49{margin-top:49px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-50{margin-top:50px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-51{margin-top:51px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-52{margin-top:52px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-53{margin-top:53px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-54{margin-top:54px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-55{margin-top:55px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-56{margin-top:56px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-57{margin-top:57px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-58{margin-top:58px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-59{margin-top:59px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-60{margin-top:60px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-61{margin-top:61px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-62{margin-top:62px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-63{margin-top:63px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-64{margin-top:64px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-65{margin-top:65px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-66{margin-top:66px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-67{margin-top:67px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-68{margin-top:68px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-69{margin-top:69px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-70{margin-top:70px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-71{margin-top:71px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-72{margin-top:72px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-73{margin-top:73px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-74{margin-top:74px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-75{margin-top:75px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-76{margin-top:76px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-77{margin-top:77px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-78{margin-top:78px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-79{margin-top:79px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-80{margin-top:80px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-81{margin-top:81px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-82{margin-top:82px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-83{margin-top:83px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-84{margin-top:84px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-85{margin-top:85px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-86{margin-top:86px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-87{margin-top:87px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-88{margin-top:88px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-89{margin-top:89px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-90{margin-top:90px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-91{margin-top:91px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-92{margin-top:92px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-93{margin-top:93px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-94{margin-top:94px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-95{margin-top:95px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-96{margin-top:96px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-97{margin-top:97px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-98{margin-top:98px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-99{margin-top:99px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-100{margin-top:100px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-0{margin-bottom:0!important}.brz-ed.brz-ed--mobile .brz-mb-xs-1{margin-bottom:1px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-2{margin-bottom:2px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-3{margin-bottom:3px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-4{margin-bottom:4px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-5{margin-bottom:5px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-6{margin-bottom:6px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-7{margin-bottom:7px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-8{margin-bottom:8px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-9{margin-bottom:9px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-10{margin-bottom:10px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-11{margin-bottom:11px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-12{margin-bottom:12px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-13{margin-bottom:13px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-14{margin-bottom:14px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-15{margin-bottom:15px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-16{margin-bottom:16px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-17{margin-bottom:17px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-18{margin-bottom:18px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-19{margin-bottom:19px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-20{margin-bottom:20px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-21{margin-bottom:21px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-22{margin-bottom:22px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-23{margin-bottom:23px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-24{margin-bottom:24px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-25{margin-bottom:25px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-26{margin-bottom:26px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-27{margin-bottom:27px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-28{margin-bottom:28px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-29{margin-bottom:29px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-30{margin-bottom:30px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-31{margin-bottom:31px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-32{margin-bottom:32px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-33{margin-bottom:33px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-34{margin-bottom:34px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-35{margin-bottom:35px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-36{margin-bottom:36px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-37{margin-bottom:37px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-38{margin-bottom:38px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-39{margin-bottom:39px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-40{margin-bottom:40px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-41{margin-bottom:41px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-42{margin-bottom:42px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-43{margin-bottom:43px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-44{margin-bottom:44px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-45{margin-bottom:45px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-46{margin-bottom:46px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-47{margin-bottom:47px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-48{margin-bottom:48px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-49{margin-bottom:49px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-50{margin-bottom:50px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-51{margin-bottom:51px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-52{margin-bottom:52px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-53{margin-bottom:53px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-54{margin-bottom:54px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-55{margin-bottom:55px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-56{margin-bottom:56px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-57{margin-bottom:57px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-58{margin-bottom:58px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-59{margin-bottom:59px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-60{margin-bottom:60px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-61{margin-bottom:61px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-62{margin-bottom:62px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-63{margin-bottom:63px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-64{margin-bottom:64px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-65{margin-bottom:65px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-66{margin-bottom:66px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-67{margin-bottom:67px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-68{margin-bottom:68px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-69{margin-bottom:69px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-70{margin-bottom:70px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-71{margin-bottom:71px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-72{margin-bottom:72px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-73{margin-bottom:73px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-74{margin-bottom:74px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-75{margin-bottom:75px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-76{margin-bottom:76px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-77{margin-bottom:77px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-78{margin-bottom:78px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-79{margin-bottom:79px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-80{margin-bottom:80px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-81{margin-bottom:81px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-82{margin-bottom:82px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-83{margin-bottom:83px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-84{margin-bottom:84px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-85{margin-bottom:85px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-86{margin-bottom:86px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-87{margin-bottom:87px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-88{margin-bottom:88px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-89{margin-bottom:89px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-90{margin-bottom:90px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-91{margin-bottom:91px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-92{margin-bottom:92px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-93{margin-bottom:93px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-94{margin-bottom:94px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-95{margin-bottom:95px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-96{margin-bottom:96px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-97{margin-bottom:97px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-98{margin-bottom:98px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-99{margin-bottom:99px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-100{margin-bottom:100px!important}.brz-ed .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed.brz-ed--desktop .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed.brz-ed--desktop .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed.brz-ed--desktop .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed.brz-ed--mobile .brz-text-xs-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed.brz-ed--mobile .brz-text-xs-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed.brz-ed--mobile .brz-text-xs-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-ed-arrow{position:absolute;top:-6px;height:12px;left:50%;margin-left:-6px}.brz-ed .brz-ed-arrow:after{content:"";display:block;position:absolute;bottom:6px;border-bottom:6px solid rgba(3,8,15,.92);border-left:6px solid transparent;border-right:6px solid transparent}.brz-ed .brz-ed-arrow--top-center,.brz-ed .brz-ed-arrow--top-left,.brz-ed .brz-ed-arrow--top-right{top:auto;bottom:-6px}.brz-ed .brz-ed-arrow--top-center:after,.brz-ed .brz-ed-arrow--top-left:after,.brz-ed .brz-ed-arrow--top-right:after{border-top:6px solid rgba(3,8,15,.92);border-bottom:6px solid transparent;bottom:-6px}.brz-ed .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz-ed .brz-ed-animated--fadeInDown{-webkit-animation-name:brz-ed-fadeInDown;animation-name:brz-ed-fadeInDown}.brz-ed .brz-ed-animated--fadeInUp{-webkit-animation-name:brz-ed-fadeInUp;animation-name:brz-ed-fadeInUp}.brz-ed .brz-ed-animated--fadeIn{-webkit-animation-name:brz-ed-fadeIn;animation-name:brz-ed-fadeIn}.brz-ed .brz-ed-animated--fadeInLeft{-webkit-animation-name:brz-ed-fadeInLeft;animation-name:brz-ed-fadeInLeft}.brz-ed .brz-ed-animated--spin{-webkit-animation-name:brz-ed-spin;animation-name:brz-ed-spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.brz-ed .brz-ed-fade-enter{opacity:.01}.brz-ed .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .brz-ed-fade-exit{opacity:1}.brz-ed .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;position:relative;color:currentColor}.brz-ed .brz-icon-svg use{fill:inherit}.brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}.brz-ed .brz-icon-svg.grid-24{height:24px;width:24px}.brz-ed .brz-icon-svg.glyph{fill:currentColor;stroke:none}.brz-ed .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz-ed .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz-ed .brz-control__select{position:relative;width:112px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb:after{content:"";display:block;position:absolute;left:3px;top:0;bottom:0;width:3px;min-height:3px;background-color:#7b7b7b;border-radius:2px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}.brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-current:hover,.brz-ed .brz-control__select--dark .brz-control__select-options{background-color:#383e48}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}.brz-ed .brz-control__select.opened .brz-control__select-options{visibility:visible;opacity:1}.brz-ed .brz-control__select .brz-ed-scroll-pane-content{border-right:none!important}.brz-ed .brz-control__select-current{line-height:30px;height:30px;border-radius:4px;overflow:hidden}.brz-ed .brz-control__select-current .brz-control__select-option{border-bottom-color:transparent!important;padding-right:20px;text-overflow:ellipsis;overflow:hidden}.brz-ed .brz-icon-svg.brz-control__select--arrow{position:absolute;top:50%;right:12px;margin-top:-.5em;font-size:8px}.brz-ed .brz-control__select-options{position:absolute;z-index:12;left:0;margin-top:3px;min-width:100%;border-radius:4px;-webkit-box-shadow:0 2px 13px 0 rgba(0,0,0,.1);box-shadow:0 2px 13px 0 rgba(0,0,0,.1);overflow:hidden;visibility:hidden;opacity:0}.brz-ed .brz-control__select-options .brz-control__select-option.active,.brz-ed .brz-control__select-options .brz-control__select-option:hover{-webkit-transition:color .15s linear;transition:color .15s linear;color:#3dbfe8}.brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-option{color:rgba(255,255,255,.85)}.brz-ed .brz-control__select-option{position:relative;cursor:pointer;padding-left:10px;padding-right:10px;font-size:13px;letter-spacing:.25px;border-bottom:1px solid rgba(255,255,255,.07);line-height:30px;height:30px;-webkit-transition:color .15s linear;transition:color .15s linear;white-space:nowrap}.brz-ed .brz-control__select-option:last-child{border-bottom-color:transparent!important}.brz-ed .brz-control__select--light .brz-control__select-current,.brz-ed .brz-control__select--light .brz-control__select-current:hover,.brz-ed .brz-control__select--light .brz-control__select-options{background-color:#f2f2f2}.brz-ed .brz-control__select--light .brz-control__select-current{color:#656b6f}.brz-ed .brz-control__select--light .brz-control__select-option{color:#656b6f;border-bottom-color:#e6e6e6}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current,.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current .brz-control__select-option{color:#3dbfe8}.brz-ed .brz-control__select--small .brz-control__select{width:62px}.brz-ed .brz-control__select--medium .brz-control__select-current,.brz-ed .brz-control__select--medium .brz-control__select-option{line-height:37px;height:37px}.brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}.brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current,.brz-ed .brz-ed-popup-control__select--light .brz-control__select-options{background-color:#fff}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-option{color:#292e37}.brz-ed .brz-ed-popup-control-select-light{-webkit-box-shadow:0 0 10px -2px rgba(0,0,0,.2);box-shadow:0 0 10px -2px rgba(0,0,0,.2);border-radius:4px}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current{border-bottom-left-radius:0;border-bottom-right-radius:0}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current .brz-control__select-option{border-bottom:1px solid #f4f4f4!important}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-options{-webkit-box-shadow:0 5px 10px -2px rgba(0,0,0,.2);box-shadow:0 5px 10px -2px rgba(0,0,0,.2);border-radius:0 0 4px 4px}.brz-ed .brz-ed-popup-control-select-light.brz-control__select{width:300px}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current{background-color:#fff;height:40px;color:#3dbfe8;font-size:14px;font-weight:400}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current:after{border-style:solid;border-width:6px 4px 0;border-color:#3dbfe8 transparent}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option{border-bottom:0;color:#3dbfe8}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option:hover{background-color:#fff;color:#3dbfe8}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-options{background-color:#fff;top:100%;border-top-left-radius:0;border-top-right-radius:0}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-size:14px;height:40px;line-height:41px;padding-left:15px;padding-right:15px;letter-spacing:.1px;color:rgba(41,46,55,.8);border-bottom:0}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:not(:first-child){border-top:1px solid #f4f4f4}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option.active,.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:hover{background-color:#fbfbfb;color:#292e37}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb{width:5px;background-color:#d4d5d7;border-radius:2.5px}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb:after{opacity:0}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:4px}.brz-ed .brz-ed-control__switch-label{position:relative;display:inline-block;vertical-align:middle;width:50px;height:28px;border-radius:18px;cursor:pointer;margin:0;line-height:1}.brz-ed .brz-ed-control__switch-arrows{position:relative;display:block;height:inherit;font-size:18px;text-transform:uppercase;background:#383e48;border-radius:inherit;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.38) inset;box-shadow:0 1px 1px 0 rgba(0,0,0,.38) inset}.brz-ed .brz-ed-control__switch--check,.brz-ed .brz-ed-control__switch--un-check{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;-webkit-transition:inherit;transition:inherit;color:rgba(18,20,25,.7)}.brz-ed .brz-ed-control__switch--check{left:5px;opacity:0}.brz-ed .brz-ed-control__switch--un-check{right:5px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:after,.brz-ed .rc-slider-rail:after,.brz-ed .rc-slider-track:after{right:-9px}.brz-ed .brz-ed-control__switch--handle{width:20px;height:20px;position:absolute;top:50%;left:4px;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#fff;border-radius:50%;-webkit-box-shadow:0 0 10px 1px rgba(255,255,255,.35);box-shadow:0 0 10px 1px rgba(255,255,255,.35);-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.brz-ed .brz-ed-control__switch--handle:after,.brz-ed .brz-ed-control__switch--handle:before{content:"";position:absolute;width:7px;border-top:1px solid #34beea;top:7px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .brz-ed-control__switch--handle:before{top:10px}.brz-ed .brz-ed-control__switch--handle:after{height:7px;border-bottom:1px solid #34beea}.brz-ed .brz-ed-control__switch-input{position:absolute;top:0;left:0;opacity:0}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows{background:#3dbfe8}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}.brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}.brz-ed .brz-ed-control__slider .ui-slider-vertical{width:4px;height:63px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);border:none;cursor:pointer}.brz-ed .brz-ed-control__slider .ui-slider-vertical:after,.brz-ed .brz-ed-control__slider .ui-slider-vertical:before{content:"";position:absolute;left:0;display:block;width:4px;height:8px}.brz-ed .brz-ed-control__slider .ui-slider-vertical:before{bottom:-8px}.brz-ed .brz-ed-control__slider .ui-slider-vertical:after{top:-8px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal{display:block;width:calc(100% - 18px);height:4px;background-color:#3dbfe8;border-radius:4px;max-width:100%;padding:0;top:0;left:9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:after,.brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{content:'';position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{left:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after,.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:before{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after{top:6px}.brz-ed .brz-ed-control__slider .ui-slider-handle{position:absolute;display:block;outline:0;width:18px;height:18px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin-bottom:-9px;cursor:pointer;background:#fff;border-radius:50%!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.45);box-shadow:0 2px 2px rgba(0,0,0,.45);z-index:1}.brz-ed .brz-ed-control__slider .ui-slider-handle:after,.brz-ed .brz-ed-control__slider .ui-slider-handle:before{content:"";position:absolute;width:7px;border-top:1px solid #3dbfe8;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-control__slider .ui-slider-handle:after{height:7px;border-bottom:1px solid #3dbfe8}.brz-ed .brz-ed-control__slider .ui-state-default,.brz-ed .brz-ed-control__slider .ui-widget-content{border:0}.brz-ed .rc-slider{position:relative;height:14px;padding:5px 0;width:calc(100% - 18px);margin-left:9px;border-radius:4px;-ms-touch-action:none;touch-action:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider *,.brz-ed .rc-slider-tooltip{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider *{box-sizing:border-box}.brz-ed .rc-slider-rail{position:relative;display:block;width:100%;height:4px;background-color:#3dbfe8;border-radius:4px}.brz-ed .rc-slider-rail:after,.brz-ed .rc-slider-rail:before{content:'';position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .rc-slider-rail:before{left:-9px}.brz-ed .rc-slider-track{position:absolute;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;height:4px;background-color:#3dbfe8;border-radius:4px}.brz-ed .rc-slider-track:after,.brz-ed .rc-slider-track:before{content:'';position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .rc-slider-track:before{left:-9px}.brz-ed .rc-slider-handle{position:absolute;display:inline-block;outline:0;top:50%;width:18px;height:18px;left:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px;cursor:pointer;background:#fff;border-radius:50%;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.45);box-shadow:0 2px 2px rgba(0,0,0,.45);z-index:1}.brz-ed .rc-slider-handle:after,.brz-ed .rc-slider-handle:before{content:"";position:absolute;width:7px;border-top:1px solid #3dbfe8;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .rc-slider-handle:before{top:6px}.brz-ed .rc-slider-handle:after{height:4px;border-bottom:1px solid #3dbfe8;top:9px}.brz-ed .rc-slider-handle:hover{border-color:#57c5f7}.brz-ed .rc-slider-handle:active{border-color:#57c5f7;-webkit-box-shadow:0 0 5px #57c5f7;box-shadow:0 0 5px #57c5f7;cursor:-webkit-grabbing;cursor:grabbing}.brz-ed .rc-slider-dot,.brz-ed .rc-slider-mark-text{cursor:pointer;position:absolute;vertical-align:middle}.brz-ed .rc-slider-handle:focus{border-color:#57c5f7;-webkit-box-shadow:0 0 0 5px #96dbfa;box-shadow:0 0 0 5px #96dbfa;outline:0}.brz-ed .rc-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}.brz-ed .rc-slider-mark-text{display:inline-block;text-align:center;color:#999}.brz-ed .rc-slider-mark-text-active{color:#666}.brz-ed .rc-slider-step{position:absolute;width:100%;height:4px;background:0 0}.brz-ed .rc-slider-dot{bottom:-2px;margin-left:-4px;width:8px;height:8px;border:2px solid #e9e9e9;background-color:#fff;border-radius:50%}.brz-ed .rc-slider-dot-active{border-color:#96dbfa}.brz-ed .rc-slider-disabled{background-color:#e9e9e9}.brz-ed .rc-slider-disabled .rc-slider-track{background-color:#ccc}.brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-handle{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none;background-color:#fff;cursor:not-allowed}.brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-mark-text{cursor:not-allowed!important}.brz-ed .rc-slider-vertical{width:14px;height:100px;padding:0 5px}.brz-ed .rc-slider-vertical .rc-slider-rail,.brz-ed .rc-slider-vertical .rc-slider-step{width:4px;height:100%}.brz-ed .rc-slider-vertical .rc-slider-track{left:5px;bottom:0;width:4px}.brz-ed .rc-slider-vertical .rc-slider-handle{margin-left:-5px;margin-bottom:-7px;-ms-touch-action:pan-y;touch-action:pan-y}.brz-ed .rc-slider-vertical .rc-slider-mark{top:0;left:18px;height:100%}.brz-ed .rc-slider-vertical .rc-slider-dot{left:2px;margin-bottom:-4px}.brz-ed .rc-slider-vertical .rc-slider-dot:first-child,.brz-ed .rc-slider-vertical .rc-slider-dot:last-child{margin-bottom:-4px}.brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter,.brz-ed .rc-slider-tooltip-zoom-down-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:block!important;-webkit-animation-play-state:paused;animation-play-state:paused}.brz-ed .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active,.brz-ed .rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active{-webkit-animation-name:rcSliderTooltipZoomDownIn;animation-name:rcSliderTooltipZoomDownIn;-webkit-animation-play-state:running;animation-play-state:running}.brz-ed .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active{-webkit-animation-name:rcSliderTooltipZoomDownOut;animation-name:rcSliderTooltipZoomDownOut;-webkit-animation-play-state:running;animation-play-state:running}.brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter{-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.brz-ed .rc-slider-tooltip-zoom-down-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}@-webkit-keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@-webkit-keyframes rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}@keyframes rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}.brz-ed .rc-slider-tooltip{position:absolute;left:-9999px;top:-9999px;visibility:visible;box-sizing:border-box}.brz-ed .rc-slider-tooltip *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider-tooltip-hidden{display:none}.brz-ed .rc-slider-tooltip-placement-top{padding:4px 0 8px}.brz-ed .rc-slider-tooltip-inner{padding:6px 2px;min-width:24px;height:24px;font-size:12px;line-height:1;color:#fff;text-align:center;text-decoration:none;background-color:#6c6c6c;border-radius:6px;-webkit-box-shadow:0 0 4px #d9d9d9;box-shadow:0 0 4px #d9d9d9}.brz-ed .rc-slider-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.brz-ed .rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow{bottom:4px;left:50%;margin-left:-4px;border-width:4px 4px 0;border-top-color:#6c6c6c}.brz-ed .brz-ed-control__stepper{position:relative;width:62px;height:30px;border-radius:4px;overflow:hidden;background:#383e48;color:rgba(255,255,255,.85);text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-control__stepper--arrows,.brz-ed .brz-ed-control__stepper--value{position:relative}.brz-ed .brz-ed-control__stepper--value{font-size:13px;letter-spacing:.25px;line-height:1;width:65%;-ms-flex-preferred-size:65%;flex-basis:65%;padding-left:10px;padding-top:2px}.brz-ed .brz-ed-control__stepper--arrows{width:35%;-ms-flex-preferred-size:35%;flex-basis:35%;height:30px}.brz-ed .brz-ed-control__stepper--down,.brz-ed .brz-ed-control__stepper--up{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:15px;line-height:15px;font-size:8px;position:absolute;right:0;cursor:pointer;color:rgba(255,255,255,.85);-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-control__stepper--down .brz-icon-svg,.brz-ed .brz-ed-control__stepper--up .brz-icon-svg{position:absolute;right:10px;top:auto}.brz-ed .brz-ed-control__stepper--down:hover,.brz-ed .brz-ed-control__stepper--up:hover{color:#3dbfe8}.brz-ed .brz-ed-control__stepper--up{top:0}.brz-ed .brz-ed-control__stepper--up .brz-icon-svg{bottom:1px}.brz-ed .brz-ed-control__stepper--down{bottom:0}.brz-ed .brz-ed-control__stepper--down .brz-icon-svg{top:1px}.brz-ed .brz-ed-control-radio-check{width:22px;height:22px;border:1px solid #34beea;border-radius:50%;display:block;position:relative}.brz-ed .brz-ed-control-radio-check:before{content:'';position:absolute;top:50%;left:50%;width:6px;height:6px;margin:-3px 0 0 -3px;background:#34beea;border-radius:50%;-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .brz-ed-control-radio-check.active:before{-webkit-transform:scale(1,1);transform:scale(1,1)}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:17px;padding-right:17px;border-bottom:1px solid rgba(255,255,255,.1);color:#818a91;font-size:13px;float:none}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab{cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear;border-bottom:2px solid transparent;height:34px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:-1px;padding-top:2px;width:auto}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active,.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active{border-bottom-color:#3dbfe8}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:not(:last-child){margin-right:15px}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon{height:42px}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg{font-size:16px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg+.brz-span:not(:empty){margin-left:10px}.brz-ed .brz-ed-control__tabs__left{position:absolute;z-index:0;left:-38px;top:34px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab{width:38px;height:41px;background-color:rgba(139,147,154,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-top-left-radius:20px;border-bottom-left-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px;color:#fff;font-size:14px;cursor:pointer;margin-bottom:1px}.brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}.brz-ed .brz-ed-input__search,.brz-ed .brz-ed-input__search:active,.brz-ed .brz-ed-input__search:focus{background:0 0;color:rgba(255,255,255,.6)}.brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}.brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}.brz-ed .brz-ed-input__search{position:absolute;border:none;outline:0;font-size:13px;text-indent:10px;padding:0 35px 0 0;width:100%}.brz-ed .brz-ed-input__search::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em;letter-spacing:.25px}.brz-ed .brz-ed-input__search--auto-complete{color:#fff}.brz-ed .brz-ed-input__search__icon{position:absolute;right:10px;top:50%;color:#818487;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:color .2s ease-in;transition:color .2s ease-in;cursor:pointer;font-size:16px;height:16px;line-height:1}.brz-ed .brz-ed-control__radio-group--active,.brz-ed .brz-ed-input__search__icon.active{color:#3dbfe8}.brz-ed .brz-ed-control-multiPicker--body{margin-top:20px}.brz-ed .brz-ed-sidebar-row .brz-ed-options--multi-picker{display:block}.brz-ed .brz-ed-control__radio-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}.brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:1070}.brz-ed .brz-ed-tooltip--auto{width:auto}.brz-ed .brz-ed-tooltip--medium{width:255px}.brz-ed .brz-ed-tooltip--big{width:305px}.brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}.brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}.brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}.brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}.brz-ed .brz-ed-control__focal-point__setter:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.brz-ed .brz-ed-control__focal-point__setter .brz-img{max-width:140px;max-height:140px}.brz-ed .brz-ed-control__focal-point__point{position:absolute;z-index:10;width:18px;height:18px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#2eb0d8;border:2px solid #fff;border-radius:18px;cursor:pointer}.brz-ed .brz-ed-control__focal-point__upload{width:140px;height:93px;border:1px dashed #444952;background-color:#2d323b;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;font-size:24px;color:rgba(94,100,111,.6);-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-control__focal-point__upload:hover{border-color:#5e6470;color:#5e646f}.brz-ed .brz-ed-control__focal-point__upload--loading{cursor:progress}.brz-ed .brz-ed-control__focal-point__delete{position:absolute;right:-4px;top:-4px;z-index:11;font-size:16px;width:16px;height:16px;background-color:#2d323b;border-radius:50%;color:#fff;cursor:pointer}.brz-ed .brz-ed-control__focal-point__label--disable .brz-ed-control__focal-point__upload{cursor:no-drop}.brz-ed .brz-ed-control__icon-setter{position:relative}.brz-ed .brz-ed-control__icon-setter__box{width:48px;height:48px;border:1px dashed #444952;background-color:#2d323b;font-size:16px;color:rgba(94,100,111,.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-control__input,.brz-ed .brz-ed-control__textarea{width:auto;font-family:pn,"Open Sans",Arial,sans-serif;outline:0}.brz-ed .brz-ed-control__icon-setter__box:hover{border-color:#5e6470;color:#5e646f}.brz-ed .brz-ed-control__icon-setter--active{color:#fff;display:inline-block;font-size:0}.brz-ed .brz-ed-control__input{font-size:13px;font-style:normal;font-weight:400;letter-spacing:0;background:#383e48;color:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:30px;text-indent:5px;padding:0 5px;border-radius:4px;border:0;-webkit-box-shadow:none;box-shadow:none;text-shadow:none;text-align:left;-moz-appearance:textfield}.brz-ed .brz-ed-control__input:active,.brz-ed .brz-ed-control__input:focus{background-color:#383e48;color:#fff}.brz-ed .brz-ed-control__input::-webkit-inner-spin-button,.brz-ed .brz-ed-control__input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.brz-ed .brz-ed-control__input::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input--large{max-width:136px}.brz-ed .brz-ed-control__input--medium{max-width:112px}.brz-ed .brz-ed-control__input--small{max-width:62px}.brz-ed .brz-ed-control__input--auto{max-width:100%}.brz-ed .brz-ed-control__textarea{font-size:13px;letter-spacing:.25px;line-height:22px;background-color:#383e48;color:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:136px;padding:5px 10px;border-radius:4px;border:0;resize:none}.brz-ed .brz-ed-control__textarea::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .color-picker-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .color-picker-body .color-picker-saturation{width:153px;height:153px;position:relative;cursor:move}.brz-ed .color-picker-body .color-picker-saturation>div{border-radius:3px 3px 4px 4px}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-black{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:3px;background:-webkit-gradient(linear,left bottom,left top,from(#000),to(transparent));background:linear-gradient(to top,#000,transparent)}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-white{position:absolute;top:0;right:0;bottom:0;left:0;border-bottom-left-radius:4px;border-top-left-radius:3px;background:-webkit-gradient(linear,left top,right top,from(#fff),to(rgba(255,255,255,0)));background:linear-gradient(to right,#fff,rgba(255,255,255,0))}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .color-picker-pointer{width:16px;height:16px;-webkit-transform:translate(-8px,-8px);transform:translate(-8px,-8px);cursor:move}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-pointer{position:absolute;cursor:move}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-circle{width:4px;height:4px;-webkit-box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;cursor:move;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.brz-ed .color-picker-body .color-picker-alpha,.brz-ed .color-picker-body .color-picker-hue{position:relative;height:153px;width:12px;margin-left:10px;cursor:ns-resize}.brz-ed .color-picker-body .color-picker-alpha .hue-vertical,.brz-ed .color-picker-body .color-picker-hue .hue-vertical{border-radius:3px}.brz-ed .color-picker-body .color-picker-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}.brz-ed .color-picker-body .color-picker-hue .hue-container{padding:0 2px;position:relative;height:100%}.brz-ed .color-picker-body .color-picker-hue .hue-pointer{position:absolute}.brz-ed .color-picker-body .color-picker-hue .color-picker-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}.brz-ed .color-picker-body .color-picker-hue .hue-slider{margin-top:1px;width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;-webkit-transform:translateX(-2px);transform:translateX(-2px)}.brz-ed .color-picker-body .color-picker-hue .hue-horizontal{background:-webkit-gradient(linear,left top,right top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.brz-ed .color-picker-body .color-picker-hue .hue-vertical{background:-webkit-gradient(linear,left bottom,left top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.brz-ed .color-picker-body .color-picker-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}.brz-ed .color-picker-body .color-picker-alpha div:not(.color-picker-pointer){border-radius:3px}.brz-ed .color-picker-body .color-picker-alpha div>div>div:not(.color-picker-pointer){background-size:8px!important}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip{position:absolute;left:18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:42px;height:27px;font-size:12px;line-height:2.2;border-radius:2px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);text-align:center;font-family:pn,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip:before{content:'';position:absolute;top:50%;left:-6px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:6px solid rgba(3,8,15,.92)}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body,.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-gradient{position:absolute;top:0;left:0;bottom:0;right:0}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-checkboard{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container{position:relative;height:100%;margin:0 3px}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer{position:absolute}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer .color-picker-alpha-slider{width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;margin-top:1px;-webkit-transform:translateX(-2px);transform:translateX(-2px)}.brz-ed .color-picker-body .color-picker-pointer{width:14px;height:14px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);-webkit-transform:translate(-7px,-7px);transform:translate(-7px,-7px);border-radius:50%;background:0 0;border:3px solid #fff;cursor:ns-resize}.brz-ed .color-picker-preset-colors{margin:0 -10px;padding:10px 0 0 10px;border-top:1px solid #eee;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}.brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option,.brz-ed .brz-ed-sidebar__right__option{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;line-height:normal;min-height:51px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:-1px}.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child,.brz-ed .brz-ed-sidebar__right__option:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-popover__inner--icon:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option{padding:10px 17px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-popover__option:last-child{padding-bottom:15px}.brz-ed .brz-ed-grid__option:first-child,.brz-ed .brz-ed-popover__option:first-child{padding-top:15px;border-top-color:transparent}.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child{padding-bottom:15px;min-height:56px}.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-popover__option:first-child{padding-top:15px}.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:first-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:first-child{padding-top:10px}.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:last-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:last-child{padding-bottom:10px}.brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-option__inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;text-align:left}.brz-ed .brz-ed-option__block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;text-align:left}.brz-ed .brz-ed-option__block .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__block .brz-ed-option__label{-ms-flex-preferred-size:auto;flex-basis:auto;margin-bottom:6px;margin-right:0}.brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}.brz-ed .brz-ed-option__advanced{padding-top:15px;min-height:initial!important;color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear;font-size:0}.brz-ed .brz-ed-option__advanced .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__advanced .brz-ed-option__label{-ms-flex-preferred-size:100%;flex-basis:100%;color:inherit;margin:0 0 0 9px;cursor:pointer;font-size:13px}.brz-ed .brz-ed-option__advanced:hover{color:#fff}.brz-ed .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__label{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;color:#818a91;-ms-flex-preferred-size:auto;flex-basis:auto;margin-right:17px;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.3}.brz-ed .brz-ed-option__slider__label{-ms-flex-preferred-size:65px;flex-basis:65px}.brz-ed .brz-ed-grid__options,.brz-ed .brz-ed-popover__options{height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.brz-ed .brz-ed-grid__options .brz-ed-option__advanced .brz-icon-svg,.brz-ed .brz-ed-popover__options .brz-ed-option__advanced .brz-icon-svg{font-size:14px}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced{border:none;color:inherit;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:16px}.brz-ed .brz-ed-option__button{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__button:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .floating-action-button{position:relative;width:54px;height:54px;border-radius:50%;background:#3dbfe8;cursor:pointer;z-index:10;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .floating-action-button:after,.brz-ed .floating-action-button:before{content:"";position:absolute;top:50%;left:50%;background:#fff;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .floating-action-button:before{width:16px;height:2px}.brz-ed .floating-action-button:after{width:2px;height:16px}.brz-ed .floating-action-button:hover{background:#03080f}.brz-ed .floating-action-button--icon{color:#fff;font-size:16px}.brz-ed .floating-action-button--icon .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .floating-action-button--icon:after,.brz-ed .floating-action-button--icon:before{display:none}.brz-ed .brz-ed-option-tools{width:30px;height:30px;border-radius:30px;font-size:15px;text-align:center;color:#fff;cursor:pointer;visibility:hidden;position:absolute;z-index:100}.brz-ed .brz-ed-option-tools:after,.brz-ed .brz-ed-option-tools:before{content:'';position:absolute}.brz-ed .brz-ed-option-tools:after{top:15px;width:22px;height:1px}.brz-ed .brz-ed-option-tools:before{top:32px;width:1px;height:22px}.brz-ed .brz-ed-option-tools i{position:absolute;top:8px;left:7px}.brz-ed .brz-ed-control-tabs-options{position:relative}.brz-ed .brz-ed-control-tabs-options>.brz-ed-options-tabs--label{position:absolute;top:7px}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs{border-bottom:0;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab{position:relative;width:37px;height:30px;line-height:30px;background-color:#383e48;color:#fff;text-align:center;-webkit-transition:.2s linear background-color,.2s linear color;transition:.2s linear background-color,.2s linear color}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab .brz-icon-svg{margin:0;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:after{width:1px;height:100%;background-color:#4c525b;margin:0;border-right:0;display:block;position:absolute;top:0;right:0}.brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input,.brz-ed .brz-ed-tabs__option--inline{position:relative}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab.active{background-color:#3dbfe8}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:first-child{border-radius:3px 0 0 3px}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:last-child{border-radius:0 3px 3px 0}.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}.brz-ed .brz-ed-option__slider__icon{font-size:16px;line-height:1;margin-right:18px;display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-ed-option__slider .brz-ed-option-field__text-box{min-height:initial}.brz-ed .brz-ed-option__slider .brz-ed-control__slider{width:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-ed-option__slider__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box{width:65px;border-color:transparent}.brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input:after{content:"";position:absolute;bottom:-2px;left:0;width:calc(100% + 3px);height:1px;background-color:rgba(255,255,255,.1)}.brz-ed .brz-ed-option__slider__suffix{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-option__slider__suffix-item{padding-left:5px;cursor:pointer}.brz-ed .brz-ed-option__slider__suffix-item--active{color:#3dbfe8}.brz-ed .brz-ed-option__text-box{width:44px;border-bottom:1px solid rgba(255,255,255,.1);margin-left:17px;padding:0 0 4px}.brz-ed .brz-ed-option__text-box .brz-label{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:400;font-style:normal;letter-spacing:0;text-transform:lowercase;padding:0;margin:0}.brz-ed .brz-ed-option__text-box__helper,.brz-ed .brz-ed-option__text-box__input{position:relative;font-weight:400}.brz-ed .brz-ed-option__text-box__helper{font-family:inherit;font-size:inherit;margin-left:3px}.brz-ed .brz-ed-option__text-box__helper--active{color:#3dbfe8}.brz-ed .brz-ed-option__text-box--auto{width:57px;margin-left:13px;border-bottom-color:transparent}.brz-ed .brz-ed-option__text-box--auto .brz-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__text-box--auto .brz-ed-option__text-box__input{margin-right:2px}.brz-ed .brz-ed-option__text-box--auto .brz-ed-option__text-box__input:after{content:"";width:100%;height:1px;background-color:rgba(255,255,255,.1);position:absolute;bottom:-3px;left:0}.brz-ed .brz-ed-control__text-box--resizer,.brz-ed .brz-ed-control__text-box--resizer:active,.brz-ed .brz-ed-control__text-box--resizer:focus{background-color:transparent;color:#818a91}.brz-ed .brz-ed-option__text-box--auto .brz-ed-option__text-box__helper{cursor:pointer;margin-left:5px}.brz-ed .brz-ed-option__text-box--auto .brz-ed-control__text-box--resizer{position:relative}.brz-ed .brz-ed-control__text-box--resizer{font-weight:400;border:none;outline:0;padding:0;line-height:1;-moz-appearance:textfield;position:absolute;top:0;left:0;width:105%;height:100%}.brz-ed .brz-ed-control__text-box--resizer::-webkit-inner-spin-button,.brz-ed .brz-ed-control__text-box--resizer::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}.brz-ed .brz-ed-option__select__after{margin-left:8px;margin-bottom:0;font-size:16px;color:#818a91;line-height:1;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__select__after:hover{color:#3dbfe8}.brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option{border-bottom:none}.brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option span{top:1px}.brz-ed .brz-ed-option__select .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg,.brz-ed .brz-ed-option__select .brz-control__select-option span{line-height:1}.brz-ed .brz-ed-option__select .brz-control__select-option span{position:relative;top:.5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg{font-size:12px;margin-right:10px}.brz-ed .brz-ed-option__radio-group-option{margin-left:5px;margin-right:5px}.brz-ed .brz-ed-option__radio-group--boxed{width:37px;height:30px;border-right:1px solid rgba(255,255,255,.07);background-color:#383e48;color:#fff;overflow:hidden}.brz-ed .brz-ed-option__radio-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.brz-ed .brz-ed-option__radio-group--boxed:nth-last-child(2){border-right:none;border-top-right-radius:4px;border-bottom-right-radius:4px}.brz-ed .brz-ed-option__radio-group--boxed .brz-ed-option__radio-group__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;font-size:16px;cursor:pointer;-webkit-transition:background-color .2s linear;transition:background-color .2s linear}.brz-ed .brz-ed-option__radio-group--boxed.active .brz-ed-option__radio-group__icon{background-color:#3dbfe8}.brz-ed .brz-ed-popover__inner{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px;position:relative}.brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__overlay{width:215px;margin-top:25px;margin-bottom:25px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px}.brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__content{padding-left:17px}.brz-ed .brz-ed-tooltip__anchor .brz-ed-arrow--bottom-left:after,.brz-ed .brz-ed-tooltip__anchor .brz-ed-arrow--top-left:after{left:29px}.brz-ed .brz-ed-option__multiPicker.brz-ed-option__inline{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;justify-content:unset}.brz-ed .brz-ed-multiPicker__head__option,.brz-ed .brz-ed-multiPicker__option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-multiPicker__option:first-child{margin-top:10px}.brz-ed .brz-ed-multiPicker__option:not(:last-child){margin-bottom:10px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option.brz-ed-option__slider:not(:last-child){margin-bottom:15px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:first-child{margin-top:20px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:not(:last-child){margin-bottom:20px}.brz-ed .brz-ed-popover__typography{padding:11px 7px 14px}.brz-ed .brz-ed-popover__typography .brz-control__select,.brz-ed .brz-ed-popover__typography .brz-control__select-current,.brz-ed .brz-ed-popover__typography .brz-control__select-options,.brz-ed .brz-ed-popover__typography .brz-ed-control__stepper{width:62px}.brz-ed .brz-ed-popover__typography .brz-control__select-options{width:95px}.brz-ed .brz-ed-popover__typography .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography .brz-ed-popover__option{border-bottom:0;margin-bottom:0;padding:6px 10px}.brz-ed .brz-ed-popover__typography--mobile .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--mobile .brz-ed-popover__option{padding-right:10px;padding-left:17px}.brz-ed .brz-ed-popover__typography--mobile:last-child .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--mobile:last-child .brz-ed-popover__option{padding-left:10px;padding-right:17px}.brz-ed .brz-ed-popover__font-style .brz-control__select,.brz-ed .brz-ed-popover__font-style .brz-control__select-current,.brz-ed .brz-ed-popover__font-style .brz-control__select-options{width:120px}.brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(129,138,145,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__helper:hover{color:rgba(129,138,145,.6)}.brz-ed .brz-ed-option__helper:hover .brz-ed-option__helper__content:not(:empty){visibility:visible;opacity:1}.brz-ed .brz-ed-option__helper svg{overflow:visible}.brz-ed .brz-ed-option__helper__content{font-size:13px;line-height:1;font-family:pn,"Open Sans",Arial,sans-serif;visibility:hidden;width:auto;white-space:nowrap;background-color:#03080f;color:#fff;text-align:center;padding:10px;border-radius:2px;position:absolute;z-index:1;bottom:calc(100% + 6px);left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);will-change:transform,opacity;opacity:0;-webkit-transition:opacity .4s linear;transition:opacity .4s linear;-webkit-transition-delay:.6s;transition-delay:.6s}.brz-ed .brz-ed-option__helper__content:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border:5px solid transparent;border-top-color:#03080f}.brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .brz-ed-option__toggle{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__toggle:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .brz-ed-option__colorPicker{border-bottom:0}.brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}.brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}.brz-ed .brz-ed-option__color-palette{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:0;border-bottom:0;min-height:100%}.brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}.brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}.brz-ed .brz-ed-option__color-palette__item.active{border:2px solid #fff}.brz-ed .brz-ed-option__color-palette__icon{cursor:pointer;font-size:16px;margin-left:10px;display:-webkit-box;display:-ms-flexbox;display:flex;color:#818a91;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__color-palette__icon:hover{color:#3dbfe8}.brz-ed .brz-ed-option__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-option__color-palette-editor__item{width:23px;height:23px;border:1px solid #1e232a;border-radius:2px;margin-left:3px;cursor:pointer;-webkit-transition:border .2s linear;transition:border .2s linear}.brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}.brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}.brz-ed .brz-ed-sidebar-option__color-palette-editor{padding-bottom:30px;margin-bottom:26px!important;border-bottom:1px solid #3a3f47}.brz-ed .brz-ed-option__font-style-editor{position:relative;cursor:pointer;margin:0 30px 16px}.brz-ed .brz-ed-option__font-style-editor:last-child{margin-bottom:0}.brz-ed .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-styles--add{border:2px solid #3c424d;border-radius:3px;padding:16px 20px 18px;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-styles--add,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-styles--add{border-color:#3dbfe8;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-style-editor--delete,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-style-editor--delete{opacity:1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}.brz-ed .brz-ed-option__font-style-editor__title{line-height:1;margin-bottom:3px;margin-right:0}.brz-ed .brz-ed-option__font-style-editor__title .brz-span{display:block;line-height:1.5}.brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}.brz-ed .brz-ed-option__font-style-editor--delete{position:absolute;top:-7px;right:-6px;color:#fff;font-size:16px;opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}.brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}.brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% - 258px);margin-right:-30px;margin-left:-30px}.brz-ed .brz-ed-option__font-styles--add{font-size:0;margin-bottom:0;padding-top:33px;padding-bottom:30px;color:#818a91;text-align:center;cursor:pointer;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear;position:absolute;bottom:-20px;left:30px;right:30px;-webkit-transform:translateY(100%);transform:translateY(100%)}.brz-ed .brz-ed-option__font-styles--add:hover{border-color:#3dbfe8;color:#3dbfe8;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear}.brz-ed .brz-ed-option__font-styles--add .brz-icon-svg,.brz-ed .brz-ed-option__font-styles--add .brz-span{display:inline-block;vertical-align:middle;font-size:13px;line-height:1}.brz-ed .brz-ed-option__font-styles--add .brz-icon-svg{font-size:16px}.brz-ed .brz-ed-option__font-styles--add .brz-span{margin-left:10px}.brz-ed .brz-ed-option__font-styles--scroll-pane{position:absolute;top:-10px;bottom:0;left:0;right:0}.brz-ed .brz-ed-option__font-styles--scroll-pane .brz-ed-scroll-inner{padding-top:10px}.brz-ed .brz-ed-option__font-adder .brz-control__select{width:100%}.brz-ed .brz-ed-option__font-adder__label{margin-bottom:7px;margin-right:0}.brz-ed .brz-ed-fixed-bottom-panel{position:fixed;bottom:25px;right:30px;border-radius:50px;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);background-color:rgba(3,8,15,.92);z-index:1059;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-fixed-bottom-panel .brz-ul{padding:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-fixed-bottom-panel__item{color:#818a91;font-size:12px;letter-spacing:.25px;font-family:pn,"Open Sans",Arial,sans-serif;font-weight:400;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;-webkit-transition:color 150ms linear;transition:color 150ms linear;padding:14px;border-right:1px solid rgba(255,255,255,.15)}.brz-ed .brz-ed-fixed-bottom-panel__item.active{color:#fff;cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__item.active:hover{color:#3dbfe8}.brz-ed .brz-ed-fixed-bottom-panel__item:first-child{padding-left:18px}.brz-ed .brz-ed-fixed-bottom-panel__item:last-child{border-right:none}.brz-ed .brz-ed-fixed-bottom-panel__item .brz-icon-svg{width:1.2em;height:1.2em}.brz-ed .brz-ed-fixed-bottom-panel__preview{cursor:pointer;padding:0}.brz-ed .brz-ed-fixed-bottom-panel__preview .brz-a{color:#fff;-webkit-transition:color 150ms linear;transition:color 150ms linear;padding:14px}.brz-ed .brz-ed-fixed-bottom-panel__preview:hover .brz-a{color:#3dbfe8}.brz-ed .brz-ed-fixed-bottom-panel__btn{padding:8px 13px;cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span{font-size:13px;line-height:1;color:#fff;padding:8px 14px 5px;border-bottom:2px solid #006799;background-color:#0085ba;border-radius:15px;height:28px;min-width:75px;text-align:center;-webkit-transition:background-color 150ms linear;transition:background-color 150ms linear}.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a:hover,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span:hover{background-color:#0092cc;color:#fff}.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a .brz-icon-svg,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span .brz-icon-svg{width:1em;height:1em}.brz-ed .brz-ed-fixed-bottom-panel__btn--download .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn--download .brz-span{min-width:97px}.brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-scroll-inner{max-height:240px;border-right-style:none!important}.brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-tall-track{right:-10px}.brz-ed .brz-ed-option__block-thumbnail .brz-figure{margin-bottom:5px;max-width:140px;position:relative;cursor:pointer}.brz-ed .brz-ed-option__block-thumbnail .brz-figure img{max-width:100%;position:relative}.brz-ed .brz-ed-option__block-thumbnail .brz-figure:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border:2px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz-ed .brz-ed-option__block-thumbnail .brz-figure.active:after,.brz-ed .brz-ed-option__block-thumbnail .brz-figure:hover:after{border-color:#3dbfe8;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz-ed .brz-ed-option__block-thumbnail .brz-figure:last-child{margin-bottom:0}.brz-ed .brz-ed-option__block-thumbnail-loading{position:absolute;top:0;left:0;width:100%;height:100%;font-size:24px;color:rgba(94,100,111,.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:progress}.brz-ed .brz-portal__form-apps{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;height:100%;z-index:1080}.brz-ed .brz-portal__form-apps .brz-iframe{width:100%;height:100%;position:relative;z-index:2}.brz-ed .brz-portal__form-apps--loading{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(3,8,15,.75);color:#fff;font-size:25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-floating__button{width:16px;height:16px;border-radius:16px;font-size:7px;background-color:#999;color:#fff;-webkit-box-shadow:none;box-shadow:none;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;cursor:pointer}.brz-ed .brz-ed-floating__button:after{content:"";display:block;width:28px;height:28px;border:3px solid #999;position:absolute;z-index:1;top:50%;left:50%;margin-top:-14px;margin-left:-14px;border-radius:50%;opacity:0}.brz-ed .brz-ed-floating__button--active,.brz-ed .brz-ed-floating__button:hover{-webkit-transform:scale(1.75);transform:scale(1.75);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;font-size:8px}.brz-ed .brz-ed-floating__button--active:after,.brz-ed .brz-ed-floating__button:hover:after{-webkit-animation:none;animation:none}.brz-ed .brz-ed-floating__button .brz-icon-svg{position:absolute;left:50%;top:50%;-webkit-transform:translate(-.5em,-.5em);transform:translate(-.5em,-.5em);line-height:1}.brz-ed .brz-ed-floating__button--grey{background-color:#879294}.brz-ed .brz-ed-floating__button--grey:after{border-color:#879294}.brz-ed .brz-ed-floating__button--blue{background-color:#22b0da}.brz-ed .brz-ed-floating__button--blue:after{border-color:#22b0da}.brz-ed .brz-ed-floating__button--red{background-color:#ed2164}.brz-ed .brz-ed-floating__button--red:after{border-color:#ed2164}.brz-ed .brz-ed-popup-icons__grid .brz-ed-scroll-inner{padding:20px 20px 0}.brz-ed .brz-ed-popup-icons__grid__item{width:68px;height:68px;font-size:24px;text-align:center;border-radius:5px;cursor:pointer;color:#222;position:relative}.brz-ed .brz-ed-block-adder-desc,.brz-ed .brz-ed-block-adder-title{font-size:15px;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-popup-icons__grid__item.active,.brz-ed .brz-ed-popup-icons__grid__item:hover{background-color:#85d8f2;color:#fff}.brz-ed .brz-ed-popup-icons__grid__item i,.brz-ed .brz-ed-popup-icons__grid__item svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-container-adder{max-width:430px;height:auto;margin:40px auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background-color:#fff;border:2px dashed #3dbfe8;border-radius:4px}.brz-ed .brz-ed-container-adder .floating-action-button{margin:0 35px;-webkit-box-flex:1;-ms-flex:1 0 54px;flex:1 0 54px}.brz-ed .brz-ed-container-adder .brz-span{width:100%}.brz-ed .brz-ed-block-adder-title{font-weight:bolder;text-transform:uppercase;color:#292e37;margin-top:50px;margin-bottom:25px}.brz-ed .brz-ed-block-adder-desc{font-style:italic;color:#9da0a6;margin-top:25px;margin-bottom:50px}.brz-ed.brz-ed--mobile .brz-ed-container-adder{display:none}@media (min-width:768px){.brz-ed .brz-ed-container-adder{max-width:710px;height:130px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.brz-ed .brz-ed-block-adder-desc,.brz-ed .brz-ed-block-adder-title{margin:0;min-width:165px}.brz-ed .brz-ed-block-adder-title{text-align:right}}.brz-ed .brz-ed-popup-wrapper{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:600px;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:5px}.brz-ed .brz-ed-fixed-leave-transition.brz-ed-fixed-hidden{visibility:hidden}.brz-ed .brz-ed-popup__head--search{width:100%;min-height:80px;padding:20px;background-color:rgba(3,8,15,.12);text-align:center}.brz-ed .brz-ed-popup__search{position:relative;width:400px;margin-left:10px}.brz-ed .brz-ed-popup__input{font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;line-height:40px;letter-spacing:.1px;color:#898c90;background-color:#fff;width:100%;height:40px;border:none;border-radius:3px;padding:15px 40px 12px 16px}.brz-ed .brz-ed-popup__input:active,.brz-ed .brz-ed-popup__input:focus{color:#898c90}.brz-ed .brz-ed-popup__input::-webkit-input-placeholder{font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;color:#b6b9bd;font-style:italic;letter-spacing:.1px}.brz-ed .brz-ed-popup__search--icon{position:absolute;top:50%;right:13px;z-index:2;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#898c90;font-size:14px;line-height:1;cursor:pointer}.brz-ed .brz-ed-popup__search--icon.active{color:#3dbfe8}.brz-ed .brz-ed-popup__select .brz-control__select-current{line-height:40px;height:40px}.brz-ed .brz-ed-popup__select .brz-control__select-current .brz-control__select-option{line-height:40px;height:40px;padding-left:15px;padding-right:15px}.brz-ed .brz-ed-popup__select .brz-control__select--arrow{font-size:10px;right:14px}.brz-ed .brz-ed-popup__select.brz-control__select{width:208px}.brz-ed .brz-ed-popup__select .brz-control__select-option{border-bottom-color:transparent;text-align:left;font-size:14px;padding-left:0;padding-right:0;height:30px;line-height:30px}.brz-ed .brz-ed-popup__select .brz-control__select-options{padding:15px 28px;top:100%;width:548px;margin-top:4px;-webkit-box-shadow:0 0 10px 0 rgba(0,0,1,.1);box-shadow:0 0 10px 0 rgba(0,0,1,.1)}.brz-ed .brz-ed-popup__select .brz-control__select-options .brz-ed-scroll-inner{-webkit-columns:3;columns:3}.brz-ed .brz-ed-fixed.brz-ed-fixed-visible{visibility:visible;opacity:1;display:block}.brz-ed .brz-ed-popup-header{position:relative;height:79px;background:#292e37;border-radius:5px 5px 0 0;text-align:center}.brz-ed .brz-ed-popup-tab-item{position:relative;display:inline-block;width:81px;height:79px;background:#292e37;border-left:1px solid rgba(0,0,0,.7);color:rgba(255,255,255,.5);cursor:pointer}.brz-ed .brz-ed-popup-tab-item:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;border-left:1px solid rgba(255,255,255,.05)}.brz-ed .brz-ed-popup-tab-item.active:after,.brz-ed .brz-ed-popup-tab-item.active:not(:first-child){border-left-color:transparent}.brz-ed .brz-ed-popup-tab-item:last-child{border-right:1px solid rgba(0,0,0,.7)}.brz-ed .brz-ed-popup-tab-item:last-child:before{content:"";display:block;position:absolute;top:0;right:-2px;bottom:0;border-right:1px solid rgba(255,255,255,.05)}.brz-ed .brz-ed-popup-tab-item.active{background-color:#03080f;color:#fff}.brz-ed .brz-ed-popup-tab-item.active:last-child:before{border-right-color:transparent}.brz-ed .brz-ed-popup-tab-item.active:not(:first-child):after{left:-2px;border-left:1px solid rgba(255,255,255,.05)}.brz-ed .brz-ed-popup-tab-item:first-child:last-child{border:0;position:static}.brz-ed .brz-ed-popup-tab-icon{font-size:20px;line-height:1;margin:20px auto 8px}.brz-ed .brz-ed-popup-tab-name{font-family:pn,"Open Sans",Arial,sans-serif;font-size:10px;font-weight:600;letter-spacing:.25px;text-transform:uppercase}.brz-ed .brz-ed-popup-content{background:#eff0f1;border-radius:0 0 5px 5px}.brz-ed .brz-ed-popup-btn-close{position:absolute;top:10px;right:10px;width:20px;height:20px;cursor:pointer;-webkit-transition:all .2s ease;transition:all .2s ease}.brz-ed .brz-ed-popup-btn-close:after,.brz-ed .brz-ed-popup-btn-close:before{position:absolute;content:"";display:block;width:17px;border-top:2px solid #94979b;top:45%;left:50%;margin-left:-8px;-webkit-transition:all .2s ease;transition:all .2s ease}.brz-ed .brz-ed-popup-btn-close:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.brz-ed .brz-ed-popup-btn-close:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz-ed .brz-ed-popup-btn-close:hover:after,.brz-ed .brz-ed-popup-btn-close:hover:before{border-color:#fff}.brz-ed .brz-ed-popup-filter{height:80px;background:#e0e1e2;margin:0 -1px;border-right:1px solid #a1a3a5;border-left:1px solid #a1a3a5}.brz-ed .brz-ed-dropdown.brz-ed-popup-filter-field,.brz-ed .brz-ed-popup-filter-field{position:relative;width:233px;height:40px;background:#fff;float:left;border-radius:5px;margin:20px 10px 0 0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-popup-filter-field .brz-ed-icon-angle-down{position:absolute;right:11px;top:5px;color:#34beea}.brz-ed .brz-ed-popup-filter-field:first-child{margin-left:64px}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-options{margin-top:8px;background:#03080f;border-radius:5px;-webkit-box-shadow:0 0 5px rgba(0,0,0,.5);box-shadow:0 0 5px rgba(0,0,0,.5)}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-options .brz-ed-dropdown-option-item{line-height:36px}.brz-ed .brz-ed-popup-filter-field .brz-ed-icon-loupe{position:absolute;top:4px;right:9px;color:#34beea}.brz-ed .brz-ed-popup-filter-field .brz-input[type=text]{font-family:pn,"Open Sans",Arial,sans-serif;outline:0;border:none;background-color:transparent;width:203px;height:40px;font-size:14px;text-indent:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed .brz-ed-popup-filter-field .brz-input::-webkit-input-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-input:-moz-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-input::-moz-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-input:-ms-input-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-option-item,.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-placeholder{font-family:pn,"Open Sans",Arial,sans-serif;padding-left:16px;height:40px;font-size:14px;line-height:40px}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-option-item{color:#000}.brz-ed .brz-ed-popup-filter-field-text{cursor:text}.brz-ed .brz-ed-form-fields-inline{font-size:0}.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-label,.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-title{display:inline-block;vertical-align:middle}.brz-ed .brz-popup-body,.brz-ed .brz-popup-content{height:100%;display:-webkit-box;display:-ms-flexbox}.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-title{width:20%;font-size:14px}.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-label{width:80%}.brz-ed .brz-popup{position:fixed;width:100%;height:100%;top:0;left:0}.brz-ed .brz-popup-show{z-index:9990}.brz-ed .brz-popup-content{position:absolute;top:0;left:0;width:100%;overflow:hidden;z-index:2;text-align:center;background-color:rgba(0,0,0,.7);display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-popup-body{position:relative;max-width:850px;width:100%;padding:40px 10px;margin-bottom:70px;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.brz-ed .brz-popup-inner{width:100%;max-height:100%;overflow:auto;-ms-flex-item-align:baseline;align-self:baseline}.brz-ed .brz-popup-scroll-hidden{overflow:hidden}.brz-ed .brz-popup-preview{z-index:-1;visibility:hidden;opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}.brz-ed .brz-popup-preview.brz-popup-show{z-index:9990;visibility:visible;opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}.brz-ed .brz-ed-popup-blocks{width:380px}.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-pane .brz-ed-tall-thumb{background-color:#d4d5d7;border-radius:2.5px}.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:7px}.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{width:100%;height:430px;padding:24px 28px 16px;margin-top:16px}.brz-ed .brz-ed-popup-blocks__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-popup-blocks__grid__column{margin:0 12px;width:33.33%;-webkit-box-flex:1;-ms-flex:1;flex:1}.brz-ed .brz-ed-popup-block-item{position:relative;margin-bottom:24px;-webkit-box-shadow:0 -1px 10px 0 rgba(0,0,0,.07);box-shadow:0 -1px 10px 0 rgba(0,0,0,.07);overflow:hidden;margin-left:auto;margin-right:auto}.brz-ed .brz-ed-popup-block-item .brz-img{position:relative;-webkit-transform:scale(.51) translate(-50%,-50%);transform:scale(.51) translate(-50%,-50%)}.brz-ed .brz-ed-popup-block-item figcaption{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(41,46,55,.9);-webkit-transition:all .2s ease-in;transition:all .2s ease-in;opacity:0;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-popup-block-item .brz-ed-container-trigger{top:50%;margin-top:-14px}.brz-ed .brz-ed-popup-block-item .brz-ed-container-trigger:hover{background-color:#3dbfe8}.brz-ed .brz-ed-popup-block__blank{cursor:pointer;border:2px dashed #3dbfe8;background-color:#fff;height:152px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-popup-block__blank:hover{border-style:solid}.brz-ed .brz-ed-popup-block__blank .brz-ed-container-trigger{position:relative;top:auto;left:0;margin:0 13px 0 0}.brz-ed .brz-ed-popup-block__blank .brz-ed-container-trigger:hover{background-color:#3dbfe8}.brz-ed .brz-ed-popup-block__blank .brz-p{font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;font-weight:700;color:#292e37;text-transform:uppercase}.brz-ed .brz-ed-popup-block{position:relative}.brz-ed .brz-ed-popup-block__remove{position:absolute;top:-5px;right:-5px;z-index:1;cursor:pointer;color:#fff;width:16px;height:16px;background-color:#2d323b;border-radius:50%;font-size:0;-webkit-box-shadow:0 0 5px rgba(0,0,0,.4);box-shadow:0 0 5px rgba(0,0,0,.4);opacity:0;-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.brz-ed .brz-ed-popup-block__remove .brz-icon-svg{font-size:18px;margin-top:-1px;margin-left:-1px}.brz-ed .brz-ed-draggable__column-popover,.brz-ed .brz-ed-draggable__padding--value{font-size:14px;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-popup-block:hover .brz-ed-popup-block-item figcaption,.brz-ed .brz-ed-popup-block:hover .brz-ed-popup-block__remove{opacity:1}@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-draggable{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.brz-ed .brz-ed-draggable-active{opacity:1;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.brz-ed .brz-ed-draggable__column{position:absolute;top:0;z-index:1030;width:20px;height:100%;cursor:col-resize}.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}.brz-ed .brz-ed-draggable__column--left{left:-10px}.brz-ed .brz-ed-draggable__column--right{right:-10px}.brz-ed .brz-ed-draggable__column--red .brz-ed-draggable__column--item{background-color:#ed2164}.brz-ed .brz-ed-draggable__column-popover{position:absolute;top:-18px;left:50%;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%);text-align:center;padding:15px 18px;min-width:135px;height:42px;border-radius:21px;color:#fff;font-weight:600;line-height:1;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}.brz-ed .brz-ed-draggable__column-popover:after{content:"";display:block;position:absolute;left:50%;margin-left:-6px;bottom:-6px;border-top:6px solid rgba(3,8,15,.92);border-left:6px solid transparent;border-right:6px solid transparent}.brz-ed .brz-ed-draggable__column-popover__divider{margin:0 7px;color:#6e787f}.brz-ed.brz-ed--mobile .brz-ed-border__column>.brz-ed-draggable{display:none}.brz-ed .brz-ed-draggable__padding{position:absolute;z-index:99}.brz-ed .brz-ed-draggable__padding--bottom,.brz-ed .brz-ed-draggable__padding--top{width:100%;top:auto;background-color:rgba(61,191,232,.15);bottom:0;cursor:ns-resize;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-draggable__padding--top{bottom:auto;top:0}.brz-ed .brz-ed-draggable__padding--value{color:#2ea9d0;font-weight:700}.brz-ed.brz-ed--desktop .brz-ed-draggable__padding{height:var(--height)}.brz-ed.brz-ed--desktop .brz-ed-draggable__padding--desktop-value{visibility:visible}.brz-ed.brz-ed--desktop .brz-ed-draggable__padding--mobile-value{visibility:hidden}.brz-ed.brz-ed--mobile .brz-ed-draggable__padding{height:var(--mobileHeight)}.brz-ed.brz-ed--mobile .brz-ed-draggable__padding--desktop-value{visibility:hidden}.brz-ed.brz-ed--mobile .brz-ed-draggable__padding--mobile-value{visibility:visible}.brz-ed .brz-ed-box__resizer{position:relative;width:100%;height:100%}.brz-ed .brz-ed-box__resizer--point{position:absolute;width:11px;height:11px;border-radius:6px;border:2px solid #fff;opacity:1;visibility:visible;background-color:#3dbfe8;z-index:1031}.brz-ed .brz-ed-box__resizer--point:before{content:"";position:absolute;padding:12px;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-box__resizer--top-left{cursor:nwse-resize;bottom:auto;left:-5px;top:-5px}.brz-ed .brz-ed-box__resizer--top-center{cursor:ns-resize;left:50%;margin-left:-5px;top:-6px;bottom:auto}.brz-ed .brz-ed-box__resizer--top-right{cursor:nesw-resize;bottom:auto;right:-5px;top:-5px}.brz-ed .brz-ed-box__resizer--center-left{cursor:col-resize;top:50%;margin-top:-5px;left:-5px;right:auto}.brz-ed .brz-ed-box__resizer--center-right{cursor:col-resize;top:50%;margin-top:-5px;right:-5px;left:auto}.brz-ed .brz-ed-box__resizer--bottom-left{cursor:nesw-resize;bottom:-5px;left:-5px;top:auto}.brz-ed .brz-ed-box__resizer--bottom-center{cursor:ns-resize;left:50%;margin-left:-5px;bottom:-6px;top:auto}.brz-ed .brz-ed-box__resizer--bottom-right{cursor:nwse-resize;bottom:-5px;right:-5px;top:auto}.brz-ed .brz-ed-sidebar{font-family:pn,"Open Sans",Arial,sans-serif;position:fixed;left:0;top:0;bottom:0;width:48px;color:#fff;z-index:1060;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-sidebar__control{background:#141923;-webkit-box-shadow:0 0 8px 0 rgba(0,0,0,.4);box-shadow:0 0 8px 0 rgba(0,0,0,.4);height:100%;position:relative;z-index:1}.brz-ed .brz-ed-sidebar__control__item{font-size:16px;color:#fff;width:48px;max-height:57px;padding-top:20px;padding-bottom:20px;line-height:1;cursor:pointer;text-align:center;-webkit-transition:color .25s ease;transition:color .25s ease;border-bottom:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-sidebar__control__item--active,.brz-ed .brz-ed-sidebar__control__item:hover{color:#3dbfe8}.brz-ed .brz-ed-sidebar__control__item__device{padding-top:0;padding-bottom:15px;border-bottom:0}.brz-ed .brz-ed-sidebar__control__item__device:first-child{padding-top:20px}.brz-ed .brz-ed-sidebar__control__item__device:nth-child(3){padding-bottom:20px}.brz-ed .brz-ed-sidebar__control__item__menu{border-top:1px solid rgba(255,255,255,.1);border-bottom:0}.brz-ed .brz-ed-sidebar__control__item .brz-a{color:#fff;-webkit-transition:color .25s ease;transition:color .25s ease}.brz-ed .brz-ed-sidebar__control__item .brz-a:active,.brz-ed .brz-ed-sidebar__control__item .brz-a:hover{color:#3dbfe8}.brz-ed .brz-ed-sidebar__control--bottom{position:absolute;bottom:0;z-index:2;border-top:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-sidebar__control--bottom>.brz-ed-sidebar__control__item:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-sidebar__content{position:absolute;top:0;left:48px;width:280px;height:100%;background-color:#2b3039;overflow:hidden}.brz-ed .brz-ed-sidebar__content.active{-webkit-animation-name:brz-ed-shadow-animation;animation-name:brz-ed-shadow-animation;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:150ms;animation-duration:150ms;-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes brz-ed-shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}@keyframes brz-ed-shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}.brz-ed .brz-ed-sidebar__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:48px;background-color:#383e47;padding-left:30px;padding-right:30px}.brz-ed .brz-ed-sidebar__header__title{font-size:15px!important;font-family:pn,"Open Sans",Arial,sans-serif!important;font-weight:600!important}.brz-ed .brz-ed-sidebar__add-elements__text,.brz-ed .brz-ed-sidebar__btn,.brz-ed .brz-ed-sidebar__popover__btn,.brz-ed .brz-ed-sidebar__popover__item,.brz-ed .brz-ed-toolbar__link__input{font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-sidebar__header__icon{margin-left:auto;cursor:pointer}.brz-ed .brz-ed-sidebar__main{position:absolute;left:0;right:0;top:48px;bottom:0}.brz-ed .brz-ed-sidebar__footer{position:absolute;bottom:0;left:0;width:100%;height:48px;background-color:#383e47;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz-ed .brz-ed-sidebar__popover{position:relative}.brz-ed .brz-ed-sidebar__popover-content{position:absolute;bottom:10px;left:58px;max-width:190px;min-width:130px;border-radius:8px;background-color:#141923;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}.brz-ed .brz-ed-sidebar__popover-content:before{content:"";position:absolute;left:-6px;bottom:18px;width:0;height:0;border-style:solid;border-width:6px 6px 6px 0;border-color:transparent #141923 transparent transparent}.brz-ed .brz-ed-sidebar__popover--deviceMode .brz-ed-sidebar__popover-content{bottom:-25px}.brz-ed .brz-ed-sidebar__popover--deviceMode .brz-ed-sidebar__popover-content:before{bottom:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.brz-ed .brz-ed-sidebar__popover__item{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px;font-size:13px;color:#fff;font-weight:600;padding:10px 25px;-webkit-transition:all .3s linear;transition:all .3s linear;white-space:nowrap;border-bottom:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-sidebar__popover__item:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-sidebar__popover__item .brz-icon-svg{margin-right:12px;font-size:12px}.brz-ed .brz-ed-sidebar__popover__item:hover{cursor:pointer;color:#3dbfe8}.brz-ed .brz-ed-sidebar__popover__item--active{color:#3dbfe8}.brz-ed .brz-ed-sidebar__popover__item .brz-span{position:relative;top:1px}.brz-ed .brz-ed-sidebar__popover__item .brz-a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;text-decoration:none;-webkit-transition:all .3s linear;transition:all .3s linear}.brz-ed .brz-ed-sidebar__popover__item .brz-a:hover{color:#3dbfe8}.brz-ed .brz-ed-sidebar__popover__btn{border-radius:2px;background-color:#0085ba;border-bottom:2px solid #006799;padding:8px 14px 6px;font-size:13px;line-height:1;text-decoration:none;color:#fff}.brz-ed .brz-ed-sidebar__popover__btn.brz-a:focus,.brz-ed .brz-ed-sidebar__popover__btn.brz-a:hover{color:#fff}.brz-ed .brz-ed-sidebar__btn{height:48px;color:#fff;-ms-flex-preferred-size:50%;flex-basis:50%;font-size:12px;letter-spacing:.5px;font-weight:600;text-transform:uppercase;text-align:center;line-height:48px}.brz-ed .brz-ed-sidebar__btn--active{background-color:#91a652}.brz-ed .brz-ed-sidebar__btn:hover{color:#fff}.brz-ed .brz-ed-sidebar-ordering{padding-top:27px}.brz-ed .brz-ed-sidebar-block-item{position:relative;padding:8px 0;margin-top:-1px;border-top:1px dashed transparent;border-bottom:1px dashed transparent}.brz-ed .brz-ed-sidebar-block-item:first-child{margin-top:12px}.brz-ed .brz-ed-sidebar-block-item:hover{border-top-color:#286b85;border-bottom-color:#286b85}.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-remove{display:block}.brz-ed .brz-ed-sidebar-block-item-missing:hover:after,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed-sidebar-block-layout,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed-sidebar-block-remove,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder-fix~.brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-layout,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder-fix~.brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-remove{display:none}.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-layout{opacity:1}.brz-ed .brz-ed-sidebar-block-item-missing:after{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);content:"Error";font-size:20px}.brz-ed .brz-ed-sidebar-block-item-feedback{border-top:0;opacity:.65}.brz-ed .brz-ed-sidebar-block-item-feedback .brz-ed-sidebar-block-layout{opacity:0}.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-helper{z-index:99999999999}.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder-fix~.brz-ed-sidebar-block-item:hover{border-top-color:transparent;border-bottom-color:transparent}.brz-ed .brz-ed-sidebar-block-image{position:relative;width:185px;border:5px solid #474c55;margin:0 auto;cursor:move;background-size:cover;background-position:center}.brz-ed .brz-ed-sidebar-block-image>.brz-img{display:block;max-width:100%}.brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed .brz-ed-sidebar-block-image{background-image:none!important;border-color:transparent}.brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed .brz-ed-sidebar-block-image:after{position:absolute;left:0;top:0;right:0;bottom:0;content:"";display:block;border:1px dashed #286b85;border-radius:5px}.brz-ed .brz-ed-sidebar-block-remove{display:none;position:absolute;top:50%;right:14px;-webkit-transform:translateY(-50%);transform:translateY(-50%);outline:0;cursor:pointer;font-size:20px;line-height:1;height:20px;color:#34beea}.brz-ed .brz-ed-sidebar-block-remove svg{fill:#34beea}.brz-ed .brz-ed-sidebar-block-layout{position:absolute;top:0;left:0;right:0;bottom:0;padding-right:1px;background:rgba(255,255,255,.7);text-align:center;font-size:10px;color:#fff;font-weight:600;text-transform:uppercase;opacity:0;-webkit-transition:opacity 150ms;transition:opacity 150ms}.brz-ed .brz-ed-sidebar-block-layout>.brz-span{position:absolute;top:50%;left:0;right:0}.brz-ed .brz-ed-sidebar-block-drag,.brz-ed .brz-ed-sidebar-block-drop{display:block;height:32px;width:132px;margin:-16px auto 0;border-radius:16px;background:rgba(17,17,41,.85);line-height:32px;text-align:center;letter-spacing:.01em}.brz-ed .brz-ed-sidebar__x-styling{padding:30px}.brz-ed .brz-ed-sidebar__x-styling__row{position:relative;padding:15px 0;border-bottom:1px solid rgba(255,255,255,.07)}.brz-ed .brz-ed-sidebar__x-styling__row:first-child{padding-top:0}.brz-ed .brz-ed-sidebar__x-styling__label{font-size:13px;line-height:1;margin:0 0 10px;color:#818a91}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select{width:100%}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select-current .brz-control__select-option{width:calc(100% - 30px)}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select-option{letter-spacing:.25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;width:100%}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select-color{position:relative;width:16px;height:16px;border-radius:2px;margin-right:10px}.brz-ed .brz-ed-sidebar__styling{padding:30px;height:100%}.brz-ed .brz-ed-sidebar__styling .brz-ed-sidebar-options>[class^=brz-ed-option]{margin-bottom:30px}.brz-ed .brz-ed-sidebar-variants{height:48px;background-color:#383e47}.brz-ed .brz-ed-sidebar__wp-template{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;height:auto;padding-top:15px;padding-bottom:15px}.brz-ed .brz-ed-sidebar__wp-template .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__wp-template .brz-ed-option__label{margin-bottom:6px}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select{width:100%}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select-current .brz-control__select-option{width:calc(100% - 10px)}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select-current .brz-control__select--arrow{font-size:8px;margin-right:0}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select-option{width:100%;text-align:left;font-weight:400}.brz-ed .brz-ed-sidebar__add-elements{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:38px;padding-right:32px}.brz-ed .brz-ed-sidebar__add-elements--base{padding-top:40px;padding-bottom:0}.brz-ed .brz-ed-sidebar__add-elements__item{padding:7px 11px 14px;text-align:center;line-height:1;font-size:0}.brz-ed .brz-ed-sidebar__add-elements__item:active,.brz-ed .brz-ed-sidebar__add-elements__item:focus,.brz-ed .brz-ed-sidebar__add-elements__item:hover{cursor:move}.brz-ed .brz-ed-sidebar__add-elements__item:active .brz-ed-sidebar__add-elements__icon,.brz-ed .brz-ed-sidebar__add-elements__item:focus .brz-ed-sidebar__add-elements__icon,.brz-ed .brz-ed-sidebar__add-elements__item:hover .brz-ed-sidebar__add-elements__icon{border-color:#3dbfe8;color:#3dbfe8}.brz-ed .brz-ed-sidebar__add-elements__item:active .brz-ed-sidebar__add-elements__text,.brz-ed .brz-ed-sidebar__add-elements__item:focus .brz-ed-sidebar__add-elements__text,.brz-ed .brz-ed-sidebar__add-elements__item:hover .brz-ed-sidebar__add-elements__text{color:#3dbfe8}.brz-ed .brz-ed-sidebar__add-elements__icon{width:46px;height:46px;border:2px solid #3c424d;border-radius:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;font-size:16px;margin-bottom:6px}.brz-ed .brz-ed-sidebar__add-elements__text{font-size:12px;font-weight:600;letter-spacing:.1px;text-transform:capitalize;color:rgba(255,255,255,.6);-webkit-transition:color .2s ease-out;transition:color .2s ease-out;margin:0 -5px;max-width:54px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.brz-ed .brz-ed-sidebar__add-elements--separator{margin:8px 49px 18px;border:0;border-top:1px solid #3c424d}.brz-ed .brz-ed-sidebar__right{right:0;left:auto;width:auto}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content{left:auto;right:0}.brz-ed .brz-ed-collapsible-wrap,.brz-ed .brz-ed-collapsible__toolbar,.brz-ed .brz-ed-toolbar{left:0;top:0;position:absolute}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content.active{-webkit-animation-name:shadow-animation;animation-name:shadow-animation}@-webkit-keyframes shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}@keyframes shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__main{padding:17px 30px 30px}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__main .brz-ed-control__tabs{margin-bottom:15px;padding-left:0;padding-right:0}.brz-ed .brz-ed-sidebar__right__option{padding:15px 0}.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__label{margin-bottom:7px}.brz-ed .brz-ed-sidebar-row,.brz-ed .brz-ed-sidebar-row .brz-ed-options-field,.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tab__content>.brz-ed-options-field{margin-bottom:15px}.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-control__input{width:100%;max-width:100%}.brz-ed .brz-ed-sidebar__right--animation-enter{-webkit-transform:translateX(280px);transform:translateX(280px);will-change:transform}.brz-ed .brz-ed-sidebar__right--animation-enter-active{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;will-change:transform}.brz-ed .brz-ed-sidebar__right--animation-leave{-webkit-transform:translateX(0);transform:translateX(0);will-change:transform}.brz-ed .brz-ed-sidebar__right--animation-leave-active{-webkit-transform:translateX(280px);transform:translateX(280px);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;will-change:transform}.brz-ed .brz-ed-sidebar__right__scroll .brz-ed-tall-track{top:42px!important;height:calc(100% - 42px)!important;right:-25px!important}.brz-ed .brz-ed-sidebar-options{height:100%}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;color:#fff;margin-bottom:15px}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab{margin-right:20px;position:relative;min-height:30px}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab:not(:last-child){margin-right:19px}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab:after{display:none}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab.active:before{content:"";position:absolute;bottom:-1px;height:2px;background-color:currentColor;width:100%}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-options-tabs-helpers{font-size:12px}.brz-ed .brz-ed-sidebar-row{padding-bottom:15px;border-bottom:1px solid #3a3f47}.brz-ed .brz-ed-sidebar-row .brz-ed-options-field:last-child{margin-bottom:0}.brz-ed .brz-ed-sidebar__right__option .brz-control__select-option{max-width:106px;overflow:hidden;text-overflow:ellipsis}.brz-ed .brz-ed-toolbar{z-index:1070;will-change:top,right,bottom,left}.brz-ed .brz-ed-toolbar__items{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:42px;padding-left:6px;padding-right:6px}.brz-ed .brz-ed-toolbar__item{height:42px;font-size:16px;line-height:1;color:#fff;border-left:1px solid rgba(255,255,255,.15);margin-left:-1px;-webkit-transition:.15s linear color;transition:.15s linear color}.brz-ed .brz-ed-toolbar__item:first-child{border-left-color:transparent}.brz-ed .brz-ed-toolbar__item:hover .brz-ed-tooltip__content{color:#3dbfe8;-webkit-transition:.15s linear color;transition:.15s linear color}.brz-ed .brz-ed-toolbar__item:hover .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom{border-color:#3dbfe8}.brz-ed .brz-ed-popover__tooltip .brz-ed-tooltip__content:not(.brz-ed-popover__tooltip),.brz-ed .brz-ed-toolbar__option:not(.brz-ed-popover__tooltip){padding:13px;font-size:16px;display:block;cursor:pointer}.brz-ed .brz-ed-toolbar--active{color:#3dbfe8!important}.brz-ed .brz-ed-toolbar__arrow{width:auto}.brz-ed .brz-ed-toolbar__arrow:after{left:0}.brz-ed .brz-ed-collapsible-wrap{z-index:1050}.brz-ed .brz-ed-collapsible__icon{position:absolute;top:0;left:0;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:.15s linear color;transition:.15s linear color}.brz-ed .brz-ed-collapsible__icon:hover{color:#3dbfe8}.brz-ed .brz-ed-collapsible--big .brz-ed-collapsible__icon{width:42px;height:42px;border-radius:42px;font-size:14px;line-height:46px}.brz-ed .brz-ed-collapsible--big .brz-ed-collapsible__toolbar{border-radius:42px}.brz-ed .brz-ed-collapsible--small .brz-ed-collapsible__icon{width:32px;height:32px;border-radius:32px;font-size:12px;line-height:36px}.brz-ed .brz-ed-collapsible--small .brz-ed-collapsible__toolbar{border-radius:32px}.brz-ed .brz-ed-collapsible__toolbar .brz-ed-toolbar{position:static;top:auto;right:auto;padding:0}.brz-ed .brz-ed-collapsible__section{font-size:0!important;line-height:0!important;width:0!important;height:0!important;margin:0!important;padding:0!important}.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible-wrap{top:36px;right:40px;left:auto}.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible__icon{visibility:hidden;opacity:0;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible__icon,.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible__toolbar{right:0;left:auto;margin:4px 0 4px 4px}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter .brz-ed-toolbar{-webkit-transform:translate3d(96px,0,0);transform:translate3d(96px,0,0)}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter-active .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit-active .brz-ed-toolbar{-webkit-transform:translate3d(96px,0,0);transform:translate3d(96px,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter .brz-ed-toolbar{-webkit-transform:translate3d(-96px,0,0);transform:translate3d(-96px,0,0)}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter-active .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit-active .brz-ed-toolbar{-webkit-transform:translate3d(-96px,0,0);transform:translate3d(-96px,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .fadeCollapsibleIcon-enter{opacity:.01}.brz-ed .fadeCollapsibleIcon-enter.fadeCollapsibleIcon-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .fadeCollapsibleIcon-exit{opacity:1}.brz-ed .fadeCollapsibleIcon-exit.fadeCollapsibleIcon-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed.brz-ed--desktop .brz-ed-static__toolbar--mobile,.brz-ed.brz-ed--mobile .brz-ed-static__toolbar--desktop{display:none}.brz-ed .brz-ed-static__toolbar{position:relative}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar{left:0;top:0}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__items{background-color:#879294;-webkit-box-shadow:none;box-shadow:none;padding-left:0;padding-right:0}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item{height:30px;margin-left:0;border-left-color:#a3abad}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item:hover{background-color:#6c7576;color:#fff;-webkit-transition:background-color .2s linear;transition:background-color .2s linear;border-left-color:#a3abad}.brz-ed .brz-ed-popover__tooltip .brz-ed-static__toolbar .brz-ed-tooltip__content:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-option__button:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-popover__tooltip .brz-ed-tooltip__content:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-popover__tooltip.brz-ed-tooltip--opened .brz-ed-tooltip__content,.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item .brz-ed-tooltip__content,.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item>.brz-ed-option__advanced:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__option:hover{color:inherit}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item:first-child{padding-left:2px;border-top-left-radius:30px;border-bottom-left-radius:30px;border-left-color:transparent}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item:last-child{padding-right:2px;border-top-right-radius:30px;border-bottom-right-radius:30px}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:12px}.brz-ed .brz-ed-popover__tooltip .brz-ed-static__toolbar .brz-ed-tooltip__content:not(.brz-ed-popover__tooltip),.brz-ed .brz-ed-static__toolbar .brz-ed-popover__tooltip .brz-ed-tooltip__content:not(.brz-ed-popover__tooltip),.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__option:not(.brz-ed-popover__tooltip){font-size:12px;padding:8px 10px}.brz-ed .brz-ed-column__toolbar,.brz-ed .brz-ed-row__toolbar{position:absolute;top:-7px;visibility:hidden;opacity:0;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-row__toolbar{left:-10px;z-index:1070}.brz-ed .brz-ed-column__toolbar{right:-7px;z-index:1040}.brz-ed.brz-ed--mobile .brz-ed-collapsible-wrap{right:20px}.brz-ed .brz-ed-popover__tooltip.brz-ed-tooltip--opened .brz-ed-tooltip__content{color:#3dbfe8}.brz-ed .brz-ed-popover__tooltip.brz-ed-tooltip--opened .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom{border-color:#3dbfe8}.brz-ed .brz-ed-popover__tooltip--icon-custom{width:16px;height:16px;border:2px solid #fff;border-radius:2px;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-tooltip__overlay{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px}.brz-ed .brz-ed-toolbar__fonts{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-font__typography{height:217px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-right:1px solid rgba(255,255,255,.15);overflow:hidden;padding:7px 3px 7px 0}.brz-ed .brz-ed-font__right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:22px 17px 0}.brz-ed .brz-ed-font__name{-webkit-transition:color .2s linear;transition:color .2s linear;padding-bottom:15px;padding-left:27px;line-height:1;color:#fff;cursor:pointer}.brz-ed .brz-ed-font__name.active,.brz-ed .brz-ed-font__name:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3ebfe8}.brz-ed .brz-ed-font__name:first-child{padding-top:15px}.brz-ed .brz-ed-font__separator{width:50px;height:1px;padding:0;margin:0 0 17px 27px;border:0;background-color:rgba(255,255,255,.3)}.brz-ed .brz-ed-font-field{margin-bottom:18px}.brz-ed .brz-ed-font__label{color:#818a91;font-size:13px;margin-bottom:8px}.brz-ed .brz-ed-toolbar__link__anchor,.brz-ed .brz-ed-toolbar__link__custom,.brz-ed .brz-ed-toolbar__link__popup,.brz-ed .brz-ed-toolbar__link__upload{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;min-height:46px!important;padding:0!important;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-toolbar__link__icon{padding-right:14px;padding-left:10px;color:#fff}.brz-ed .brz-ed-toolbar__link__title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;font-size:14px;padding-left:17px}.brz-ed .brz-ed-toolbar__link__label{cursor:pointer;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-toolbar__link--save,.brz-ed .brz-ed-toolbar__link__icon{font-size:16px;line-height:45px;text-align:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-toolbar__link--save{width:46px;-webkit-box-flex:1;-ms-flex:1 0 46px;flex:1 0 46px;max-width:46px;height:45px;color:rgba(255,255,255,.25);border-left:1px solid rgba(255,255,255,.15)}.brz-ed .brz-ed-toolbar__link__input{background-color:transparent;border:none;outline:0;color:#fff;font-size:14px;width:100%;font-style:normal;font-weight:400;letter-spacing:0;line-height:1}.brz-ed .brz-ed-toolbar__link__input::-webkit-input-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__input:-moz-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__input::-moz-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__input:-ms-input-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__upload-name{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:170px;white-space:nowrap;overflow:hidden}.brz-ed .brz-ed-toolbar__link__popup .brz-ed-toolbar__link__title{cursor:pointer;font-style:italic}.brz-ed .brz-ed-toolbar__link__anchor .brz-ed-toolbar__link__icon{z-index:1}.brz-ed .brz-ed-toolbar__link__anchor .brz-ed-toolbar__link__title{margin-left:-17px}.brz-ed .brz-ed-link__list{color:#fff;font-size:14px;line-height:1;padding-top:8px;padding-bottom:8px;padding-right:4px}.brz-ed .brz-ed-control__colorPicker__group,.brz-ed .brz-ed-control__colorPicker__label{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px}.brz-ed .brz-ed-link__list-item{cursor:pointer;padding-top:8px;padding-bottom:9px;padding-left:20px;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-ed-link__list-item:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider,.brz-ed .brz-ed-control__colorPicker .minicolors-slider{width:12px;border-radius:3px}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider .minicolors-picker,.brz-ed .brz-ed-control__colorPicker .minicolors-slider .minicolors-picker{margin-left:1px;margin-right:1px}.brz-ed .brz-ed-control__colorPicker .minicolors-slider{left:162px}.brz-ed .brz-ed-control__colorPicker .minicolors-slider .minicolors-picker:after{height:8px;margin-top:-7px;margin-bottom:-7px}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider{left:184px}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider .minicolors-picker{position:absolute;top:0;left:-2px;right:-2px;height:8px;margin-top:-7px;margin-bottom:-7px;border-radius:50%;background:0 0;border:3px solid #fff;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-shadow:0 0 3px rgba(0,0,0,.5);box-shadow:0 0 3px rgba(0,0,0,.5)}.brz-ed .brz-ed-control__colorPicker .minicolors .minicolors-grid{border-radius:3px}.brz-ed .brz-ed-control__colorPicker__footer{position:relative;padding-top:3px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap}.brz-ed .brz-ed-control__colorPicker__group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-control__colorPicker__group:not(:last-child){margin-right:12px}.brz-ed .brz-ed-control__colorPicker__group .brz-input{width:60px;border:0;background-color:transparent;text-transform:uppercase;color:#818a91;outline:0;text-align:center;padding:0;float:none}.brz-ed .brz-ed-control__colorPicker__opacity .brz-input{width:30px}.brz-ed .brz-ed-control__colorPicker__label{margin-right:3px;color:rgba(129,138,145,.5);font-style:normal;font-weight:400;line-height:1;letter-spacing:0;text-transform:capitalize}.brz-ed .brz-ed-control__colorPicker__label+.brz-input{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.brz-ed .brz-ed-control__colorPicker__label+.brz-input:after{content:'';position:absolute;bottom:-2px;right:0;width:100%;border-bottom:1px solid rgba(129,138,145,.3)}.brz-ed .brz-ed-popover__color-picker .brz-ed-tooltip--medium{width:auto}.brz-ed .brz-ed-border{position:relative}.brz-ed .brz-ed-border.active>.brz-ed-cloneable__buttons .brz-ed-static__toolbar .brz-ed-toolbar,.brz-ed .brz-ed-border.active>.brz-ed-collapsible__section .brz-ed-collapsible__icon,.brz-ed .brz-ed-border.active>.brz-ed-column__toolbar,.brz-ed .brz-ed-border.active>.brz-ed-draggable__column,.brz-ed .brz-ed-border.active>.brz-ed-row__toolbar{visibility:visible;opacity:1;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-border.active>.brz-ed-draggable__column{-webkit-transition:none;transition:none}.brz-ed .brz-ed-border__inner-1:after,.brz-ed .brz-ed-border__inner-1:before,.brz-ed .brz-ed-border__inner-2:after,.brz-ed .brz-ed-border__inner-2:before{visibility:hidden;opacity:0;content:"";position:absolute;border-color:transparent;border-width:0;z-index:1030;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-border__inner-1:after{left:-2px;right:-2px;top:-2px;border-top-width:2px}.brz-ed .brz-ed-border__inner-1:before{top:-2px;bottom:-2px;left:-2px;border-left-width:2px}.brz-ed .brz-ed-border__inner-2:after{left:-2px;right:-2px;bottom:-2px;border-top-width:2px}.brz-ed .brz-ed-border__inner-2:before{top:-2px;bottom:-2px;right:-2px;border-left-width:2px}.brz-ed .brz-ed-border--active:after,.brz-ed .brz-ed-border--active:before{visibility:visible!important;opacity:1!important;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-border--grey:after,.brz-ed .brz-ed-border--grey:before{border-color:#879294}.brz-ed .brz-ed-border--grey.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#879294),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#879294 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--grey.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#879294),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#879294 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--blue:after,.brz-ed .brz-ed-border--blue:before{border-color:#22b0da}.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#22b0da),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#22b0da 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#22b0da),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#22b0da 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--red:after,.brz-ed .brz-ed-border--red:before{border-color:#ed2164}.brz-ed .brz-ed-border--red.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#ed2164),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#ed2164 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--red.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#ed2164),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#ed2164 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--dashed:after,.brz-ed .brz-ed-border--dashed:before{border-style:dashed;border-color:transparent}.brz-ed .brz-ed-border--dashed:after{background-position:11px bottom;background-size:8px 2px;background-repeat:repeat-x}.brz-ed .brz-ed-border--dashed:before{background-position:right 11px;background-size:2px 8px;background-repeat:repeat-y}.brz-ed .brz-ed-border--solid:after,.brz-ed .brz-ed-border--solid:before{border-style:solid}.brz-ed .brz-ed-border--dotted:after,.brz-ed .brz-ed-border--dotted:before{border-style:dotted}.brz-ed .brz-ed-border--active-dotted:after,.brz-ed .brz-ed-border--active-dotted:before{border-style:dotted!important}.brz-ed .brz-ed-border--active-solid:after,.brz-ed .brz-ed-border--active-solid:before{background:#22b0da;border-style:solid!important}.brz-ed .brz-ed-border--active-dashed:after,.brz-ed .brz-ed-border--active-dashed:before{border-style:dashed!important}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:after{left:0;right:0;top:0}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:before{top:0;bottom:0;left:0}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-2:after{left:0;right:0;bottom:0}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-2:before{top:0;bottom:0;right:0}.brz-ed .brz-ed-cloneable__buttons{position:absolute;top:-18px;right:19px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;z-index:1031}.brz-ed .brz-ed-cloneable__buttons .brz-ed-static__toolbar .brz-ed-toolbar{visibility:hidden;opacity:0;right:0;left:auto}.brz-ed .brz-ed-border__wrapper .brz-ed-border__inner-1,.brz-ed .brz-ed-border__wrapper .brz-ed-border__inner-2{position:absolute;top:0;left:0;width:100%;height:100%;z-index:var(--zIndex)}.brz-ed.brz-ed--mobile .brz-bg-video .brz-iframe{display:none!important}.brz-ed .brz-ed-container-wrap{position:relative;height:2px;margin-top:-2px;background-color:#3dbfe8;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-container-wrap .floating-action-button{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-container-plus{position:relative;z-index:1020}.brz-ed .brz-ed-container-trigger{position:absolute;left:50%;top:-25px;margin-left:-27px;width:54px;height:54px;border-radius:50%;background-color:#3dbfe8;cursor:pointer;z-index:10;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .brz-ed-container-trigger:after,.brz-ed .brz-ed-container-trigger:before{position:absolute;top:50%;left:50%;content:"";display:block;background:#fff;width:2px;height:16px;margin:-8px 0 0 -1px;-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .brz-ed-container-block,.brz-ed .brz-ed-container-tab-item{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;cursor:pointer}.brz-ed .brz-ed-container-trigger:before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.brz-ed .brz-ed-container-trigger:hover{background:#03080f}.brz-ed .brz-ed-container-trigger--small{width:28px;height:28px;top:-13px;margin-left:-14px}.brz-ed .brz-ed-container-trigger--small:after,.brz-ed .brz-ed-container-trigger--small:before{height:12px;margin:-6px 0 0 -1px}.brz-ed .brz-ed-container-container{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden}.brz-ed .brz-ed-container-content{position:absolute;left:0;right:0;top:2px;bottom:2px;background:#343941;opacity:0;-webkit-transition:top .2s,bottom .2s,opacity .2s;transition:top .2s,bottom .2s,opacity .2s}.brz-ed .brz-ed-container-content-in{position:absolute;top:50%;left:0;right:0;height:398px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.brz-ed .brz-ed-container-open .brz-ed-container-content{top:8px;bottom:8px;opacity:1}.brz-ed .brz-ed-container-open .brz-ed-container-trigger{background:#03080f}.brz-ed .brz-ed-container-open .brz-ed-container-trigger:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.brz-ed .brz-ed-container-open .brz-ed-container-trigger:before{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.brz-ed .brz-ed-container-tabs{padding:31px 0 23px;text-align:center;font-size:1px}.brz-ed .brz-ed-container-block .brz-ed-container-title,.brz-ed .brz-ed-container-tab-item{font-family:pn,"Open Sans",Arial,sans-serif;text-transform:uppercase;font-size:11px;font-weight:600}.brz-ed .brz-ed-container-tabs>*+*{margin-left:5px}.brz-ed .brz-ed-container-tab-item{height:30px;line-height:32px;border-radius:15px;padding:0 14px;letter-spacing:.01em;color:#bfbfbf;user-select:none;-webkit-font-smoothing:antialiased}.brz-ed .brz-ed-container-tab-active{background:#03080f;color:#fff}.brz-ed .brz-ed-container-blocks-items{position:absolute;left:0;width:100%;bottom:-4px;white-space:nowrap;height:314px}.brz-ed .brz-ed-container-blocks-items-in{padding-top:14px}.brz-ed .brz-ed-container-blocks-items-scroll{width:100%!important;height:100%;overflow:hidden}.brz-ed .brz-ed-container-block{position:relative;width:300px;height:188px;margin-left:13px;-webkit-box-shadow:1px 1px 9px rgba(0,0,0,.6);box-shadow:1px 1px 9px rgba(0,0,0,.6);overflow:hidden;user-select:none}.brz-ed .brz-ed-container-block .brz-img{position:absolute;top:0;left:0;height:188px}.brz-ed .brz-ed-container-block:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(41,46,55,.8);opacity:0;-webkit-transition:opacity 150ms;transition:opacity 150ms}.brz-ed .brz-ed-container-block.brz-ed-container-block-hover:after{opacity:1}.brz-ed .brz-ed-container-block .brz-ed-container-title{text-align:center;line-height:16px;position:absolute;left:0;right:0;bottom:-16px;color:#fff;-webkit-transition:bottom .2s;transition:bottom .2s;z-index:2}.brz-ed .brz-ed-wrap-block-empty-page-heading,.brz-ed .brz-ed-wrap-block-empty-page-heading2{font-size:15px;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-container-block.brz-ed-container-block-hover .brz-ed-container-title{bottom:10px}.brz-ed .brz-ed-container-block-btn{position:absolute;top:-10%;left:50%;margin:-27px 0 0 -27px;width:54px;height:54px;border-radius:50%;background:#34beea;cursor:pointer;opacity:0;-webkit-transition:top .2s,opacity .2s;transition:top .2s,opacity .2s;z-index:1}.brz-ed .brz-ed-container-block-btn:after,.brz-ed .brz-ed-container-block-btn:before{position:absolute;top:50%;left:50%;content:"";display:block;background:#fff;width:2px;height:16px;margin:-8px 0 0 -1px;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s}.brz-ed .brz-ed-container-block-btn:before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.brz-ed .brz-ed-container-block.brz-ed-container-block-hover .brz-ed-container-block-btn{top:50%;opacity:1}.brz-ed .brz-ed-container-whiteout{position:fixed;left:0;top:0;right:0;bottom:0;background:#fff;visibility:hidden;-webkit-transition:opacity 250ms;transition:opacity 250ms}.brz-ed .brz-ed-container-whiteout.brz-ed-container-whiteout-show{visibility:visible;opacity:.75}.brz-ed .brz-ed-wrap-block-empty-page{position:absolute;left:50%;top:50%;width:420px;height:300px;cursor:pointer;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#fff;text-align:center;border-radius:5px;border:2px dashed #3dbfe8;padding:62px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-wrap-block-empty-page-heading{font-weight:bolder;color:#292e37}.brz-ed .brz-ed-wrap-block-empty-page-heading2{font-style:italic;color:#9da0a6}.brz-ed .brz-ed-wrap-block-item{background-color:#fff}.brz-ed .brz-ed-wrap-block-item:nth-last-child(2){-webkit-box-shadow:0 15px 15px -10px rgba(0,0,0,.1);box-shadow:0 15px 15px -10px rgba(0,0,0,.1)}.brz-ed .brz-ed-wrap-block-item .brz-ed-container-wrap{visibility:hidden;opacity:0;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-wrap-block-item .brz-ed-container-wrap.brz-ed-container-open,.brz-ed .brz-ed-wrap-block-item.brz-ed-under-bar .brz-ed-container-wrap,.brz-ed .brz-ed-wrap-block-item:hover .brz-ed-container-wrap{visibility:visible;opacity:1}.brz-ed.brz-ed--mobile .brz-ed-container-plus{display:none}@media screen and (max-width:1400px){.brz-ed .brz-ed-wrap-block-empty-page{width:360px;height:258px;padding:40px 0}}.brz-ed div[contenteditable],.brz-ed span[contenteditable]{background:-webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(50%,transparent),color-stop(50%,#000),color-stop(50%,#000),color-stop(50%,transparent),to(transparent));background:linear-gradient(transparent 0,transparent 50%,#000 50%,#000 50%,transparent 50%,transparent 100%);cursor:text}.brz-ed div[contenteditable]:focus,.brz-ed span[contenteditable]:focus{outline:0}.brz-ed div[contenteditable].brz-ed-content-editable-noTransitions *,.brz-ed div[contenteditable]:focus *,.brz-ed span[contenteditable].brz-ed-content-editable-noTransitions *,.brz-ed span[contenteditable]:focus *{-webkit-animation-duration:0s!important;animation-duration:0s!important;-webkit-animation-delay:0s!important;animation-delay:0s!important}.brz-ed .brz-ed-content-editable-wrap{position:relative}.brz-ed .brz-ed-content-editable-wrap *{cursor:default}.brz-ed .brz-ed-content-editable-wrap .ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.brz-ed .brz-ed-content-editable-wrap.brz-ed-content-editable-focus *{cursor:auto}.brz-ed #brz-ed-iframe{display:block;width:100%;min-height:100vh;margin:0 auto;border:0;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed #brz-ed-iframe.brz-ed-iframe--desktop{width:calc(100% - 48px)!important}.brz-ed .brz-ed-iframe--desktop{min-width:1170px;margin-left:48px!important;max-width:100%;-webkit-box-shadow:none;box-shadow:none}.brz-ed .brz-ed-iframe--mobile{min-width:460px;max-width:460px}.brz-ed .brz-ed-dropdown{display:inline-block;position:relative;background:#999}.brz-ed .brz-ed-dropdown-options{background:#999;position:absolute;min-width:100%;left:0;top:100%;z-index:50}.brz-ed .brz-ed-dropdown-options>div>div:first-child{border-right-width:0!important}.brz-ed .brz-ed-dropdown-options .brz-ed-tall-track{top:13px!important;height:218px!important;margin-left:-10px;width:6px}.brz-ed .brz-ed-dropdown-options .brz-ed-tall-track .brz-ed-tall-thumb{width:6px;border-radius:3px;background:#44474b}.brz-ed .brz-ed-dropdown-current{cursor:pointer}.brz-ed .brz-ed-dropdown-option-item{font-family:pn,"Open Sans",Arial,sans-serif;cursor:pointer;color:#fff;padding-left:24px}.brz-ed .brz-ed-dropdown-option-item.brz-ed-dropdown-option-item-active,.brz-ed .brz-ed-dropdown-option-item:hover{color:#34beea}.brz-ed .brz-ed-fixed{position:fixed;left:0;top:0;right:0;bottom:0;z-index:1100}.brz-ed .brz-ed-fixed-overlay{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(3,8,15,.75)}.brz-ed .brz-ed-fixed-scroll{width:100%;height:100%;overflow:auto}.brz-ed .brz-ed-menu-editor-wrap{position:relative}.brz-ed .brz-ed-menu-editor-button{position:absolute;right:-54px;top:-9px;height:54px;border-radius:7px;background-color:rgba(3,8,15,.9);padding:16px 9px 0 18px;color:#fff;cursor:pointer;display:none;z-index:2}.brz-ed .brz-ed-menu-editor-button:hover{background-color:#34beea}.brz-ed .brz-ed-menu-editor-button:hover .brz-ed-menu-editor-button{display:block}.brz-ed .brz-ed-notification{position:fixed;z-index:1090;top:30px;left:50%;-webkit-transform:translate(-50%,-120px);transform:translate(-50%,-120px);min-width:556px;font-family:pn,"Open Sans",Arial,sans-serif;text-align:center;padding:22px 30px;color:#fff;background:rgba(0,154,198,.92);font-weight:300;font-size:14px;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;-webkit-transition:transform .2s linear;-moz-transition:transform .2s linear}.brz-ed .brz-ed-notification .brz-p{color:inherit;font-family:inherit}.brz-ed .brz-ed-notification .brz-span{position:absolute;color:#fff;right:20px;top:0;font-size:20px;cursor:pointer;line-height:45px}.brz-ed .brz-ed-notification.brz-ed-notification-animating{-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.brz-ed .brz-ed-notification-dismissible{padding-right:70px}.brz-ed .brz-ed-notification-dismiss{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:30px;width:20px;height:20px;cursor:pointer}.brz-ed .brz-ed-notification-dismiss:after,.brz-ed .brz-ed-notification-dismiss:before{position:absolute;left:50%;top:50%;content:"";display:block;width:28px;height:1px;background:#fff}.brz-ed .brz-ed-notification-dismiss:before{-webkit-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}.brz-ed .brz-ed-notification-dismiss:after{-webkit-transform:translate(-50%,-50%) rotate(-45deg);transform:translate(-50%,-50%) rotate(-45deg)}@-webkit-keyframes brz-ed-page-saving-feedback{0%{width:0;height:0;opacity:0;margin:0}33%{width:44%;height:44%;margin:-22% 0 0 -22%;opacity:1}100%{width:88%;height:88%;margin:-44% 0 0 -44%;opacity:0}}@keyframes brz-ed-page-saving-feedback{0%{width:0;height:0;opacity:0;margin:0}33%{width:44%;height:44%;margin:-22% 0 0 -22%;opacity:1}100%{width:88%;height:88%;margin:-44% 0 0 -44%;opacity:0}}.brz-ed .brz-ed-page-saving-feedback{background:0 0;width:80px;height:80px;position:fixed;right:10px;bottom:10px;z-index:10}.brz-ed .brz-ed-page-saving-feedback div{position:absolute;top:50%;left:50%;margin:0;width:0;height:0;opacity:0;border-radius:50%;border-width:3px;border-style:solid;-webkit-animation:brz-ed-page-saving-feedback 2s ease-out infinite;animation:brz-ed-page-saving-feedback 2s ease-out infinite}.brz-ed .brz-ed-page-saving-feedback div:nth-of-type(1){border-color:#34beea}.brz-ed .brz-ed-page-saving-feedback div:nth-of-type(2){border-color:#5cb0ff;-webkit-animation-delay:1s;animation-delay:1s}.brz-ed .brz-ed-scroll-pane{position:relative}.brz-ed .brz-ed-scroll-pane>div{border-color:transparent}.brz-ed .brz-ed-scroll-pane .brz-ed-wide-track{position:absolute;height:8px;background:0 0}.brz-ed .brz-ed-scroll-pane .brz-ed-wide-thumb{height:100%;width:0;background-color:#34beea}.brz-ed .brz-ed-scroll-pane .brz-ed-tall-track{position:absolute;right:0;width:8px;background:0 0}.brz-ed .brz-ed-scroll-pane .brz-ed-tall-thumb{width:100%;height:0;background-color:#34beea}.brz-ed .brz-ed-scroll--small .brz-ed-tall-track{width:4px;right:4px}.brz-ed .brz-ed-scroll--small .brz-ed-wide-track{height:4px}.brz-ed .brz-ed-scroll--medium .brz-ed-tall-track{width:6px;right:5px}.brz-ed .brz-ed-scroll--medium .brz-ed-wide-track{height:6px}.brz-ed .brz-ed-scroll--dark .brz-ed-tall-thumb,.brz-ed .brz-ed-scroll--dark .brz-ed-wide-thumb{background-color:#44474b;border-radius:4px}.brz-ed .brz-ed-scroll--darker .brz-ed-tall-thumb,.brz-ed .brz-ed-scroll--darker .brz-ed-wide-thumb{background-color:#3f4652;border-radius:4px}.brz-ed .brz-ed-scroll__popup .brz-ed-scroll-inner{height:100%!important}.brz-ed .brz-ed-scroll__popup .brz-ed-tall-track{width:5px;right:8px;height:calc(100% - 34px)!important;top:17px!important}.brz-ed .brz-ed-scroll__popup .brz-ed-tall-thumb,.brz-ed .brz-ed-scroll__popup .brz-ed-wide-thumb{border-radius:4px;background-color:#d4d5d7}@media screen and (max-height:899px){.brz-ed .brz-ed-scroll__popup{height:465px!important}}@media screen and (min-height:900px){.brz-ed .brz-ed-scroll__popup{height:540px!important}}.brz-ed.brz-ed--mobile,.brz-ed.brz-ed--mobile .brz-container__wrap,.brz-ed.brz-ed--mobile .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}.brz-ed .brz-section{position:relative}.brz-ed .brz-section__content>.brz-ed-border,.brz-ed .brz-section__content>.brz-ed-border>.brz-bg,.brz-ed .brz-section__content>.brz-ed-border>.brz-bg>.brz-bg-content{height:100%}.brz-ed .brz-columns>.brz-ed-border{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:0}.brz-ed .brz-columns>.brz-ed-border>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed.brz-ed--mobile .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed.brz-ed--mobile .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed.brz-ed--mobile .brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:-2px}.brz-ed .brz-ed-border__wrapper{height:auto}.brz-ed .brz-ed-slider__spinner{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(3,8,15,.75);color:rgba(255,255,255,.75);font-size:30px;z-index:2}.brz-ed .brz-ed-slider__spinner .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-slick-slider .brz-section__items,.brz-ed .brz-slick-slider .slick-slide>div{height:100%}.brz-ed .brz-slick-slider .brz-ed-border__inner-1:after,.brz-ed .brz-slick-slider .brz-ed-border__inner-1:before,.brz-ed .brz-slick-slider .brz-ed-border__inner-2:after,.brz-ed .brz-slick-slider .brz-ed-border__inner-2:before{z-index:auto}.brz-ed .brz-form .brz-input,.brz-ed .brz-form .brz-textarea{cursor:default}.brz-ed .brz-form .brz-input.brz-ed-dd-cancel,.brz-ed .brz-form .brz-textarea.brz-ed-dd-cancel{cursor:text}
 
 
 
 
 
 
 
 
public/editor-build/1.0.33/editor/js/editor.js DELETED
@@ -1 +0,0 @@
1
- webpackJsonp([0],[,,,,function(e,t,a){"use strict";var o=a(469);a.d(t,"a",function(){return o.a})},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(1),l=a.n(i),n=a(155);class s extends r.a.Component{render(){const{className:e,icon:t}=this.props,a=l()("brz-icon-svg",e);return r.a.createElement("svg",{className:a},r.a.createElement("use",{xlinkHref:Object(n.a)(t)}))}}t.a=s,s.defaultProps={className:"",icon:"nc-circle-add"}},function(e,t,a){"use strict";var o=a(440),r=a(592),i=a(594),l=a(169);a.d(t,"a",function(){return r.a}),a.d(t,"b",function(){return i.a}),t.c=o.a;t.d=(()=>l.a.unsetActive());t.e=(()=>l.a.activateLastActive())},,function(e,t,a){"use strict";t.d=n,t.c=function(e,t){if(n(e)){e=e.replace("#",""),t=isNaN(t)?1:t;const a=parseInt(e.substring(0,2),16),o=parseInt(e.substring(2,4),16),r=parseInt(e.substring(4,6),16);return`rgba(${a}, ${o}, ${r}, ${t})`}return null};var o=a(228);a.d(t,"b",function(){return o.a});var r=a(408);a.d(t,"a",function(){return r.a});var i=a(409);a.d(t,"e",function(){return i.a});const l=/^#(?:[A-Fa-f0-9]{3}){1,2}$/;function n(e){return l.test(e)}},function(e,t,a){"use strict";var o=a(24),r=a.n(o),i=a(63),l=a.n(i),n=a(61),s=a.n(n),p=a(3),c=a.n(p),d=a(0),m=(a.n(d),a(2)),g=a.n(m),u=a(112),h=(a.n(u),a(35),a(495)),b=a(13);const y=([e,...t],a=!1)=>e.toUpperCase()+(a?t.join("").toLowerCase():t.join(""));class f extends d.Component{static get componentId(){throw new Error(`${this.name} must implement \`static get componentId()\``)}optionalSCU(e){const t=this.props;if(t.dbValue!==e.dbValue)return!0;if(t.reduxState.globals!==e.reduxState.globals)return!0;const a=t.path||[],o=e.path||[];if(a.length!==o.length)return!0;for(let e=0,t=a.length;e<t;e++)if(a[e]!==o[e])return!0;return!1}getId(){return this.getDBValue()._id||(()=>{throw new Error("This should never happen. An initialized component must have a preset id")})()}getPath(){return this.props.path||[]}getReduxState(){return this.props.reduxState}getReduxDispatch(){return this.props.reduxDispatch}getDefaultValue(e){return this.props.defaultValue?c()({},this.constructor.defaultValue,this.props.defaultValue):this.constructor.defaultValue}getDBValue(){return this.props.dbValue}getStylesValue(){const{_styles:e}=this.getDBValue()||{},t=this.getReduxState().styles.rules;return e&&t?e.reduce((e,a)=>t[a]?s()(e,t[a]):e,{}):null}getValue(){const e=this.getDefaultValue(),t=this.getStylesValue(),a=this.getDBValue();return a?c()({},e,t,a):e}patchValue(e){const t=this.makeNewValueFromPatch(e);this.handleValueChange(t,{patch:e})}makeNewValueFromPatch(e){return c()({},this.getDBValue(),e)}handleValueChange(e,t){this.props.onChange(e,t)}validateValue(e){const t=l()(this.getDefaultValue()),a=l()(g.a.omit(e,"_id","_styles")),o=(g.a.difference(t,a),g.a.difference(a,t));if(o.length>0){const e=[`${this.constructor.name}.validateValue() called with value`,`that contains keys [${o}]`,`that are not specified in ${this.constructor.name}.defaultValue`].join("\n");throw new Error(e)}}selfDestruct(){this.props.onChange(null)}makeSubcomponentProps(e){let{bindWithKey:t}=e,a=r()(e,["bindWithKey"]);const o=this.getDefaultValue(),i=this.getDBValue();return c()({},a,{path:[...this.getPath(),t],defaultValue:o&&o[t],dbValue:i&&i[t],reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:(e,a)=>this.patchValue({[t]:e})})}makeToolbarPropsFromConfig(e,{allowExtend:t=!0,extendFilter:a=null}={}){const{onToolbarOpen:o,onToolbarClose:r,onToolbarEnter:i,onToolbarLeave:l,meta:n}=this.props;return{getItems:(o=Object(b.b)().getState().ui.deviceMode)=>{const r=`getItemsFor${y(o,!0)}`;const i=e[r],l=this.getValue();let n=this.bindToolbarItems(i(l,this));if(this.props.toolbarExtend&&t){const{getItems:e}=this.props.toolbarExtend;let t=e(o);a&&(t=a(t)),n=Object(h.a)(n,t)}return n},onOpen:o,onClose:r,onMouseEnter:i,onMouseLeave:l}}bindToolbarItems(e){return Object(h.b)(e,e=>{const t=e.id,a=e.onChange;e.onChange=((e,o)=>{let r=a?a(e,o):void 0!==e?{[t]:e}:null;r&&this.patchValue(r)})}),e}render(){const e=this.getValue();return this.renderForEdit(e)}renderForEdit(e){throw"renderForEdit: Not Implemented"}renderForView(e){return this.renderForEdit(e)}applyRulesToValue(e,t){const a=t.filter(Boolean);if(0===a.length)return e;const o=this.getRulesValue(a);return g.a.defaults(o,e)}getRulesValue(e){const t=this.getReduxState().styles.rules;return t?e.reduce((e,a)=>{let o;switch(typeof a){case"object":const{rule:e,mapper:r}=a;o=t[e]&&r(t[e]);break;case"string":o=t[a];break;default:throw new Error("Invalid rule type")}return o?s()(e,o):e},{}):null}}f.defaultProps={onToolbarOpen:g.a.noop,onToolbarClose:g.a.noop,onToolbarEnter:g.a.noop,onToolbarLeave:g.a.noop},t.a=f},,function(e,t,a){"use strict";var o=a(109);a.d(t,"a",function(){return o.a});var r=a(402);a.d(t,"d",function(){return r.a}),a.d(t,"e",function(){return r.b});var i=a(227);a.d(t,"c",function(){return i.a});var l=a(403);a.d(t,"b",function(){return l.a});var n=a(404);a.d(t,"f",function(){return n.a}),a.d(t,"g",function(){return n.b});var s=a(405);a.d(t,"h",function(){return s.a});var p=a(406);a.d(t,"i",function(){return p.a});var c=a(407);a.d(t,"j",function(){return c.a})},,function(e,t,a){"use strict";t.a=function({middleware:e=[]}={}){if(i)throw new Error("store is already created");return i=o.createStore(r.a,o.applyMiddleware(...e))},t.b=function(){if(!i)throw new Error("store is not yet created");return i};var o=a(105),r=a(224);let i},,function(e,t,a){"use strict";var o=a(466);a.d(t,"c",function(){return o.a});var r=a(467);a.d(t,"b",function(){return r.a});var i=a(468);a.d(t,"a",function(){return i.a})},function(e,t,a){"use strict";var o=a(70),r=a.n(o);const i={};t.a={load:e=>r()(i,e),get:e=>i[e],getAll:()=>i}},,,function(e,t,a){"use strict";t.a=function({page:e,globals:t,styles:a}){try{e.data=JSON.parse(e.data)||{}}catch(t){e.data={}}return{type:r.a,page:e,globals:t,styles:a}},t.d=function(e,t){return{type:r.d,data:e,meta:t}},t.c=function(e,t,a,o="project"){if("project"!==o&&"language"!==o)throw new Error("updateGlobals actionCreator must have the third argument set to either `project` or `language`");return{type:r.c,key:e,value:t,meta:a,projectOrLanguage:o}},t.e=i,t.b=function(e){return i("deviceMode",e)};var o=a(2),r=(a.n(o),a(108));a(224);function i(e,t){return{type:r.e,key:e,value:t}}},function(e,t){e.exports=jQuery},function(e,t,a){"use strict";t.a=function(e,t,a=t+1){if(!e[t])throw new Error(`Can't clone invalid item at index ${t}`);return function(e,t,a){const o=Object(d.a)(a);return Object(s.insert)(e,t,o)}(e,a,e[t])};var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(70),s=(a.n(n),a(34)),p=(a.n(s),a(35)),c=a(9),d=a(170);class m extends c.a{constructor(...e){var t;return t=super(...e),this.renderItemData=((e,t,a,o)=>{const{type:i,value:n}=e,s=p.a.getComponent(i),c=this.getDefaultValue(),d=this.getItemProps(e,a,o),m=[...this.getPath(),a,"value"],g=c[a]&&c[a].value,u=n,h=(e,t={})=>{const{intent:o}=t;"replace_all"===o?this.replaceItem(a,e):null===e?this.removeItem(a):this.updateItem(a,e)};if(s)return l.a.createElement(s,r()({},d,{key:t,path:m,defaultValue:g,dbValue:u,reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:h}));{const e=p.a.getNotFoundComponent();return l.a.createElement(e,r()({},d,{key:t,path:m,defaultValue:g,dbValue:u,reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:h,componentId:i}))}}),this.renderItem=((e,t,a)=>{const{sliceStartIndex:o,sliceEndIndex:r}=m.defaultProps,{sliceStartIndex:i=o,sliceEndIndex:l=r}=this.props;if(t>=i&&t<l){const o=e.value._id,r=this.renderItemData(e,o,t,a);return this.renderItemWrapper(r,o,t,e,a)}return null}),t}insertItem(e,t){const a=Object(d.a)(t),o=this.getDBValue()||[],r=Object(s.insert)(o,e,a);this.handleValueChange(r,{arrayOperation:"insert"})}updateItem(e,t){const a=this.getDBValue(),o=Object(s.setIn)(a,[e,"value"],t);this.handleValueChange(o,{arrayOperation:"itemChange"})}removeItem(e){const t=this.getDBValue()||[],a=Object(s.removeAt)(t,e);this.handleValueChange(a,{arrayOperation:"remove"})}replaceItem(e,t){const a=this.getDBValue()||[];let o=Object(s.replaceAt)(a,e,t);o=Object(d.a)(o),this.handleValueChange(o,{arrayOperation:"replace",itemIndex:e,oldValue:a})}cloneItem(e,t=e+1){const a=this.getDBValue()||[];if(!a[e])throw new Error(`Can't clone invalid item at index ${e}`);this.insertItem(t,a[e])}getDefaultValue(){return this.props.defaultValue||[]}getValue(){return this.getDBValue()||this.getDefaultValue()}validateValue(){}getItemProps(e,t,a){const{itemProps:o}=m.defaultProps,{itemProps:r=o}=this.props;return"function"==typeof r?r(e,t,a):r}renderItemWrapper(e,t,a,o,r){return e}renderItemsContainer(e){return e}renderForEdit(e){const t=e.map(this.renderItem);return this.renderItemsContainer(t)}}t.b=m,m.defaultProps={itemProps:{},sliceStartIndex:0,sliceEndIndex:1/0}},,,,,,,,,function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i),n=a(20),s=a.n(n);let p=[];class c extends r.a.Component{constructor(...e){var t;return t=super(...e),this.handleAll=(e=>{p.forEach(t=>{const{exceptions:a,onClickOutside:o}=t.props;let r=0;if(a.length>0){const{functionExceptions:t,stringExceptions:o}=a.reduce((e,t)=>{switch(typeof t){case"function":e.functionExceptions.push(t);break;case"string":e.stringExceptions.push(t)}return e},{functionExceptions:[],stringExceptions:[]});t.length>0&&(r+=t.filter(t=>!0===t(e.target)).length),0===r&&o.length>0&&(r+=s()(e.target).closest(o.join(",")).length)}if(0===r){l.a.findDOMNode(t).contains(e.target)||o(e)}})}),t}componentDidMount(){0===p.length&&(document.addEventListener("mousedown",this.handleAll,!0),window.parent.document.addEventListener("mousedown",this.handleAll,!0)),p.push(this)}componentWillUnmount(){p.splice(p.indexOf(this),1),0===p.length&&(document.removeEventListener("mousedown",this.handleAll,!0),window.parent.document.removeEventListener("mousedown",this.handleAll,!0))}render(){return r.a.Children.only(this.props.children)}}t.a=c,c.defaultProps={exceptions:[]}},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i),n=a(420),s=a(421);class p extends o.Component{constructor(e){super(e),this.captureStart=(e=>{this._start=!1}),this.handleChange=(({left:e=null,top:t=null})=>{const a=l.a.findDOMNode(this.scrollable);this.props.onChange({left:e||a.scrollLeft,top:t||a.scrollTop})}),this.handleMouseDown=(e=>{const t=l.a.findDOMNode(this.wideTrack),a=t.getBoundingClientRect(),o=(e.clientX-a.left-this._wide.thumb/2)/this._wide.piece*this._wide.overflow;e.target===t&&(l.a.findDOMNode(this.scrollable).scrollLeft=o)}),this.handleMouseDown2=(e=>{const t=l.a.findDOMNode(this.tallTrack),a=t.getBoundingClientRect(),o=(e.clientY-a.top-this._tall.thumb/2)/this._tall.piece*this._tall.overflow;e.target===t&&(l.a.findDOMNode(this.scrollable).scrollTop=o,this.handleChange({top:o}))}),this.handleMove=(e=>{!1===this._start&&(this._start=parseInt(this.wideThumb.style.left));const t=(e.left+this._start)/this._wide.piece*this._wide.overflow;l.a.findDOMNode(this.scrollable).scrollLeft=t,this.handleChange({left:t})}),this.handleMove2=(e=>{!1===this._start&&(this._start=parseInt(this.tallThumb.style.top));const t=(e.top+this._start)/this._tall.piece*this._tall.overflow;l.a.findDOMNode(this.scrollable).scrollTop=t,this.handleChange({top:Math.min(this._tall.overflow,Math.max(0,t))})}),this.handleResize=(()=>{this.forceUpdate()}),this.handleUpdateDOM=((e,t)=>{let a,o,r=l.a.findDOMNode(this.wideTrack),i=this.wideThumb,n=l.a.findDOMNode(this.tallTrack),s=this.tallThumb,p={overflow:Math.max(0,t.scrollWidth-t.clientWidth)},c={overflow:Math.max(t.scrollHeight-t.clientHeight)};r.style.position="absolute",n.style.position="absolute",i.style.position="relative",s.style.position="relative",r.style.display="block",a=r.offsetHeight,n.style.display="block",o=n.offsetWidth,t.style.overflow="hidden",t.style.borderBottomWidth=a+"px",t.style.borderBottomStyle=p.overflow?"solid":"none",t.style.borderRightWidth=o+"px",t.style.borderRightStyle=c.overflow?"solid":"none",p.overflow=Math.max(0,t.scrollWidth-t.clientWidth),c.overflow=Math.max(0,t.scrollHeight-t.clientHeight),r.style.display=p.overflow?"block":"none",r.style.width=t.clientWidth+"px",r.style.left=0,r.style.top=t.offsetHeight-a+"px",n.style.display=c.overflow?"block":"none",n.style.height=t.clientHeight+"px",n.style.top=0,this._wide=p=e(t.clientWidth,t.offsetWidth,t.scrollWidth,t.scrollLeft,r.clientWidth),this._tall=c=e(t.clientHeight,t.offsetHeight,t.scrollHeight,t.scrollTop,n.clientHeight),i.style.left=p.shift+"px",i.style.width=p.thumb+"px",s.style.top=c.shift+"px",s.style.height=c.thumb+"px"}),this.handleWheel=(e=>{e.stopPropagation();let t=l.a.findDOMNode(this.scrollable);const a=t.scrollTop,o=t.scrollLeft,r=navigator.userAgent.toLowerCase();let i=1;const n=/firefox/.test(r),s=/chrome/.test(r);n&&(i=20),s&&(i=.8),this.props.onlyWide?t.scrollLeft=o+(e.deltaX?e.deltaX:e.deltaY*i):(e.preventDefault(),t.scrollTop=a+e.deltaY*i,t.scrollLeft=o+e.deltaX),(t.scrollTop!=a||t.scrollLeft!=o||this.props.onlyWide)&&e.preventDefault(),this.handleChange({left:t.scrollLeft,top:t.scrollTop})}),this._start=0,this._wide={},this._tall={}}componentDidMount(){window.addEventListener("resize",this.handleResize,{passive:!0})}componentWillUnmount(){window.removeEventListener("resize",this.handleResize)}handleSetPositionWide(e){this.handleMove({top:0,left:e})}render(){return r.a.createElement("div",{className:this.props.className,style:{position:"relative",width:this.props.style.width,height:this.props.style.height},onWheel:this.handleWheel},r.a.createElement(n.a,{ref:e=>{this.scrollable=e},className:"brz-ed-scroll-inner",style:this.props.style,onUpdateDOM:this.handleUpdateDOM},this.props.children),r.a.createElement(s.a,{ref:e=>{this.wideTrack=e},onDragStart:this.captureStart,onDragMove:this.handleMove},r.a.createElement("div",{className:"brz-ed-wide-track",onMouseDown:this.handleMouseDown},r.a.createElement("div",{ref:e=>{this.wideThumb=e},className:"brz-ed-wide-thumb"}))),r.a.createElement(s.a,{ref:e=>{this.tallTrack=e},onDragStart:this.captureStart,onDragMove:this.handleMove2},r.a.createElement("div",{className:"brz-ed-tall-track",onMouseDown:this.handleMouseDown2},r.a.createElement("div",{ref:e=>{this.tallThumb=e},className:"brz-ed-tall-thumb"}))))}}t.a=p,p.defaultProps={className:"brz-ed-scroll-pane",style:{},window:null,onlyWide:!1,wrapScrollable:e=>e,onChange:()=>{}}},function(e,t,a){"use strict";var o=a(458),r=a(459),i=a(460),l=a(465);a.d(t,"c",function(){return o.a}),a.d(t,"d",function(){return r.a}),a.d(t,"a",function(){return i.a}),a.d(t,"b",function(){return l.a})},,,function(e,t,a){"use strict";const o={};let r,i,l,n={};const s={registerComponent(e){o[e.componentId]=e},registerNotFoundComponent(e){r=e},registerBlocks(e){i=e,l=e.blocks.reduce((e,t)=>(e[t.id]=t,e),{})},registerShortcode(e){n=e},getComponents:()=>o,getComponent:e=>o[e]||null,getNotFoundComponent(){if(!r)throw new Error("NotFoundComponent not registered");return r},getBlocks:()=>i,getBlock:e=>l[e]||null,getShortcodes:()=>n,getShortcode:e=>n[e]||null};t.a=s},,,function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i),n=a(2),s=a.n(n),p=a(13),c=a(30),d=a(180),m=a(6),g=a(242),u=a(168);const h=e=>{const{deviceMode:t}=Object(p.b)().getState().ui;return"desktop"!==t?`${t}${Object(g.a)(e)}`:e},b=e=>e.reduce((e,t)=>(e[t]=!0,e),{}),y={height:{min:3,max:1/0},size:{min:3,max:100},width:{min:3,max:100},mobileHeight:{min:3,max:1/0},mobileSize:{min:3,max:100},mobileWidth:{min:3,max:100}};class f extends o.Component{constructor(e){super(e),this.handleClick=(()=>{this.setState({showPoints:!0})}),this.handleClickOutside=(()=>{this.setState({showPoints:!1})}),this.handleDragStart=(()=>{this.startValue=this.props.value,this.startRect=l.a.findDOMNode(this).getBoundingClientRect(),Object(m.d)()}),this.handleDragEnd=(()=>{this.startValue=null,this.startRect=null,Object(m.e)()}),this.handleTopCenterDrag=(e=>this.handleDrag("topCenter",e)),this.handleBottomCenterDrag=(e=>this.handleDrag("bottomCenter",e)),this.handleCenterLeftDrag=(e=>this.handleDrag("centerLeft",e)),this.handleCenterRightDrag=(e=>this.handleDrag("centerRight",e)),this.handleTopLeftDrag=(e=>this.handleDrag("topLeft",e)),this.handleTopRightDrag=(e=>this.handleDrag("topRight",e)),this.handleBottomLeftDrag=(e=>this.handleDrag("bottomLeft",e)),this.handleBottomRightDrag=(e=>this.handleDrag("bottomRight",e)),this.startValue=null,this.startRect=null,this.cachedPoints=b(e.points),this.state={showPoints:!1}}componentWillReceiveProps(e){this.props.points!==e.points&&(this.cachedPoints=b(e.points))}handleDrag(e,{deltaX:t,deltaY:a}){let o;const r=h("horizontalAlign"),i="center"===this.props.meta[r]?2:1;switch(e){case"topCenter":o=[["height",-a]];break;case"bottomCenter":o=[["height",a]];break;case"centerLeft":o=[["width",-t*i]];break;case"centerRight":o=[["width",t*i]];break;case"topLeft":{const e=-t*i,r=-a;o=Boolean(this.props.value.size)?[["size",{dx:e,dy:r}]]:[["width",e],["height",r]];break}case"topRight":{const e=t*i,r=-a;o=Boolean(this.props.value.size)?[["size",{dx:e,dy:r}]]:[["width",e],["height",r]];break}case"bottomLeft":{const e=-t*i;o=Boolean(this.props.value.size)?[["size",{dx:e,dy:a}]]:[["width",e],["height",a]];break}case"bottomRight":{const e=t*i;o=Boolean(this.props.value.size)?[["size",{dx:e,dy:a}]]:[["width",e],["height",a]];break}}const l=o.reduce((e,[t,a])=>{const o=h(t),r=this.startValue[o];let i,l=this.startRect[t];if("size"===t){const{dx:e,dy:t}=a;i=e/this.startRect.width<t/this.startRect.height?e/this.startRect.width*this.startValue[o]:t/this.startRect.height*this.startValue[o]}else i=a*r/l;const n=this.props.restrictions[o]||y[o];return e[o]=Object(u.a)(Math.round(r+i),n.min,n.max),e},{});this.props.onChange(l)}render(){const{showPoints:e}=this.state,{children:t}=this.props,{topCenter:a,topRight:o,centerRight:i,bottomLeft:l,bottomCenter:n,bottomRight:s,centerLeft:p,topLeft:m}=this.cachedPoints;return r.a.createElement(c.a,{onClickOutside:this.handleClickOutside},r.a.createElement("div",{className:"brz-ed-box__resizer",onClick:this.handleClick},t,e&&a&&r.a.createElement(d.a,{key:"topCenter",className:"brz-ed-box__resizer--point brz-ed-box__resizer--top-center",onDragStart:this.handleDragStart,onDrag:this.handleTopCenterDrag,onDragEnd:this.handleDragEnd}),e&&o&&r.a.createElement(d.a,{key:"topRight",className:"brz-ed-box__resizer--point brz-ed-box__resizer--top-right",onDragStart:this.handleDragStart,onDrag:this.handleTopRightDrag,onDragEnd:this.handleDragEnd}),e&&i&&r.a.createElement(d.a,{key:"centerRight",className:"brz-ed-box__resizer--point brz-ed-box__resizer--center-right",onDragStart:this.handleDragStart,onDrag:this.handleCenterRightDrag,onDragEnd:this.handleDragEnd}),e&&l&&r.a.createElement(d.a,{key:"bottomLeft",className:"brz-ed-box__resizer--point brz-ed-box__resizer--bottom-left",onDragStart:this.handleDragStart,onDrag:this.handleBottomLeftDrag,onDragEnd:this.handleDragEnd}),e&&n&&r.a.createElement(d.a,{key:"bottomCenter",className:"brz-ed-box__resizer--point brz-ed-box__resizer--bottom-center",onDragStart:this.handleDragStart,onDrag:this.handleBottomCenterDrag,onDragEnd:this.handleDragEnd}),e&&s&&r.a.createElement(d.a,{key:"bottomRight",className:"brz-ed-box__resizer--point brz-ed-box__resizer--bottom-right",onDragStart:this.handleDragStart,onDrag:this.handleBottomRightDrag,onDragEnd:this.handleDragEnd}),e&&p&&r.a.createElement(d.a,{key:"centerLeft",className:"brz-ed-box__resizer--point brz-ed-box__resizer--center-left",onDragStart:this.handleDragStart,onDrag:this.handleCenterLeftDrag,onDragEnd:this.handleDragEnd}),e&&m&&r.a.createElement(d.a,{key:"topLeft",className:"brz-ed-box__resizer--point brz-ed-box__resizer--top-left",onDragStart:this.handleDragStart,onDrag:this.handleTopLeftDrag,onDragEnd:this.handleDragEnd})))}}f.defaultProps={points:["topCenter","topRight","centerRight","bottomLeft","bottomCenter","bottomRight","centerLeft","topLeft"],restrictions:{},meta:{},onChange:s.a.noop},t.a=f},,function(e,t){var a=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=a)},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(2),l=a.n(i),n=a(1),s=(a.n(n),a(7)),p=(a.n(s),a(434)),c=a(52),d=a(6),m=a(19),g=a(13);class u extends r.a.Component{constructor(...e){var t;return t=super(...e),this.handleEmptyClick=(()=>{Object(g.b)().dispatch(Object(m.e)("leftSidebar",{isOpen:!0,drawerContentType:"addElements"}))}),t}componentDidMount(){const{acceptElements:e,isGrid:t,blindZone:a,onStart:o,onSort:r,onEnd:i}=this.props,l=Object(s.findDOMNode)(this);this.plugin=new p.a(l,{acceptElements:e,isGrid:t,blindZone:a,cancelClass:"brz-ed-dd-cancel",onBeforeStart(e){const{ui:{deviceMode:t}}=Object(g.b)().getState();"mobile"===t&&e.preventDefault()},onStart(){document.body.classList.add("brz-ed-sorting"),requestAnimationFrame(d.d),o()},onEnd(){document.body.classList.remove("brz-ed-sorting"),i()},onSort:r})}componentWillUnmount(){this.plugin.destroy()}render(){const{children:e,type:t,path:a}=this.props;return e?r.a.cloneElement(r.a.Children.only(e),{"data-sortable-type":t,"data-sortable-path":a.join(".")}):r.a.createElement("div",{className:"brz-ed-sortable--empty","data-sortable-type":t,"data-sortable-path":a.join(".")},r.a.createElement("div",{className:"brz-ed-border__sortable brz-ed-border__inner-1 brz-ed-border--no-space brz-ed-border--grey brz-ed-border--dotted brz-ed-border--active"}),r.a.createElement("div",{className:"brz-ed-border__sortable brz-ed-border__inner-2 brz-ed-border--no-space brz-ed-border--grey brz-ed-border--dotted brz-ed-border--active"}),r.a.createElement("div",{className:"brz-ed-container-trigger brz-ed-container-trigger--small","data-sortable-element":"true","data-sortable-type":"shortcode",onClick:this.handleEmptyClick}))}}u.defaultProps={path:[],type:"",acceptElements:[],isGrid:!1,blindZone:null,onSort:e=>{const{from:t,to:a}=e,o=t.sortableNode.getAttribute("data-sortable-path").split("."),r=t.sortableNode.getAttribute("data-sortable-type"),i=[...o,String(t.elementIndex)],n=a.sortableNode.getAttribute("data-sortable-path").split("."),s=a.sortableNode.getAttribute("data-sortable-type"),p=[...n,String(a.elementIndex)];l.a.isEqual(i,p)||c.a.emit("dnd.sort",{from:{containerPath:o,containerType:r,itemIndex:t.elementIndex,itemPath:i,itemType:t.elementType},to:{containerPath:n,containerType:s,itemIndex:a.elementIndex,itemPath:p}})},onStart:l.a.noop,onEnd:l.a.noop},t.a=u},,,,,,function(e,t,a){"use strict";t.d=function(){const e=d.a.get("wp").api;return h({type:"POST",dataType:"json",data:{id:d.a.get("wp").page,action:e.getPage}}).then(function(e){return l.a.map(e,g.a.pageFromBackend)})},t.i=function(e,t){const a=d.a.get("wp").api;return h({type:"POST",dataType:"json",data:l.a.extend({action:a.updatePage},t,{id:e})}).then(g.a.pageFromBackend)},t.b=function(){const e=d.a.get("wp").api,t=d.a.get("wp").page;return h({type:"POST",dataType:"text",data:{action:e.globals.get,id:t}}).then(e=>JSON.parse(e).gb)},t.g=function(e){const t=d.a.get("wp").api,a=d.a.get("wp").page;return h({type:"POST",dataType:"json",data:{action:t.globals.set,gb:r()(e),post:a}})},t.k=function(e){const t=d.a.get("wp").api,a=d.a.get("wp").page;return u(t.media,{id:a,attachmentId:e})},t.e=function(){return u(d.a.get("wp").api.getSidebars,{})},t.h=function(e){return u(d.a.get("wp").api.shortcodeContent,{shortcode:e})},t.c=function(){return u(d.a.get("wp").api.getMenus,{})},t.j=function(){const e=d.a.get("wp").api,t=d.a.get("wp").page;return u(e.updatePost,{post:t})},t.f=function(e){return u(d.a.get("wp").api.getTerms,{taxonomy:e})};var o=a(80),r=a.n(o),i=a(2),l=a.n(i),n=a(20),s=a.n(n),p=a(386),c=a.n(p),d=a(16),m=a(152),g=a(394);function u(e,t){const a=d.a.get("wp"),o=a.api.hash,r=a.api.url,i=l.a.extend({},t||{},{action:e,hash:o});return new c.a((e,t)=>s.a.post(r,i).done(e).fail(function(e){503!==e.status?(m.a.addNotification({id:"request-failed",type:m.a.notificationTypes.error,text:"Changes could not be saved. Please check your internet connection or try again later.",dismissible:!0}),t(e.responseText)):window.location.reload()}))}function h(e){const t=d.a.get("wp"),a=t.api.hash,o=t.api.url;return new c.a(function(t,r){e.data=l.a.extend(e.data,{hash:a}),s.a.ajax(l.a.extend({url:o},e,{notificationId:"data-save-fail",onbeforeunload:function(){return"You have unsaved data."},failedAttempts:0,success:function(e){this.failedAttempts=0,window.onbeforeunload=null,t(e)},error:function(e){this.failedAttempts++,window.onbeforeunload=this.onbeforeunload,this.failedAttempts<=5&&setTimeout(function(){s.a.ajax(this)}.bind(this),5e3*this.failedAttempts)}}))})}},function(e,t,a){"use strict";var o=a(2),r=a(153).EventEmitter;function i(e,t){if("string"!=typeof e||"function"!=typeof t)throw new Error("incorrect argument types for UIState.addChangeListener")}var l={},n=o.extend({},r.prototype,{emitChange:function(e,t){this.emit(e,t)},addChangeListener:function(e,t){i(e,t),this.on(e,t)},removeChangeListener:function(e,t){i(e,t),this.removeListener(e,t)},get:function(e){return l[e]},set:function(e,t){l[e]=t,this.emitChange(e,t)}});n.setMaxListeners(1/0),t.a=n},function(e,t,a){"use strict";(function(e){var o=a(63),r=a.n(o),i=a(0),l=a.n(i),n=a(1),s=a.n(n),p=a(30);let c={};class d extends l.a.Component{constructor(e){super(e),m.call(this);const{path:t,showBorders:a}=this.props;this.state={active:!1,hovered:!1,showBorders:a},t&&(c[t]=this)}componentWillUnmount(){const{path:e}=this.props;delete c[e]}componentWillReceiveProps({path:e}){const t=String(this.props.path),a=String(e);t!==a&&(delete c[t],c[a]=this)}render(){const{active:e,hovered:t,showBorders:a}=this.state,{className:o,borderColor:r,borderStyle:i,activeBorderStyle:n,outSide:c,clickOutsideExceptions:d,reactToHover:m,reactToClick:g,children:u}=this.props,h=s()("brz-ed-border",o,{active:t||e});let b;if(a||e){const a=s()("brz-ed-border__inner-1",{"brz-ed-border--no-space":!c},{[`brz-ed-border--${r}`]:r},{[`brz-ed-border--${i}`]:i},{"brz-ed-border--active":e||t},{[`brz-ed-border--active-${n}`]:e||t}),o=s()("brz-ed-border__inner-2",{"brz-ed-border--no-space":!c},{[`brz-ed-border--${r}`]:r},{[`brz-ed-border--${i}`]:i},{"brz-ed-border--active":e||t},{[`brz-ed-border--active-${n}`]:e||t});b=[l.a.createElement("div",{key:"border1",className:a}),l.a.createElement("div",{key:"border2",className:o})]}const y=l.a.createElement("div",{className:h,onMouseOver:m?this.handleOver:null,onMouseOut:m?this.handleOut:null,onClick:g?this.handleClick:null},b,u);return g?l.a.createElement(p.a,{exceptions:d,onClickOutside:this.handleClickOutside},y):y}}d.defaultProps={className:"",borderColor:"grey",clickOutsideExceptions:[],borderStyle:"solid",activeBorderStyle:"solid",outSide:!0,reactToHover:!0,reactToClick:!0,showBorders:!0,path:""};var m=function(){this.handleClickOutside=(()=>{this.state.active&&this.setState({active:!1})}),this.handleClick=(e=>{this.setState({active:!0})}),this.handleOver=(t=>{e.BRZ_IS_DRAGGING||this.state.hovered||this.setState({hovered:!0})}),this.handleOut=(t=>{e.BRZ_IS_DRAGGING||this.state.hovered&&this.setState({hovered:!1})}),this.setActive=(e=>{this.state.active!==e&&this.setState({active:e})}),this.setHover=(e=>{this.state.hovered!==e&&this.setState({hovered:e})}),this.setShowBorder=(e=>{this.state.showBorders!==e&&this.setState({showBorders:e})}),this.setParentsHover=(e=>{const t=String(this.props.path);r()(c).forEach(a=>{0===t.indexOf(a)&&c[a].setState({hovered:e})})})};t.a=d}).call(t,a(17))},,,function(e,t,a){"use strict";var o=a(2),r=a.n(o),i=a(153);a.n(i);const l=r.a.extend({},i.EventEmitter.prototype,{off(e,t){this.removeListener(e,t)}});l.setMaxListeners(1/0),t.a=l},,function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(2),l=(a.n(i),a(20)),n=a.n(l),s=a(1),p=a.n(s),c=a(179),d=a.n(c),m=a(10),g=(a.n(m),a(52)),u=a(67),h=(a(8),a(13));class b extends r.a.Component{constructor(e){super(e),this.handleDeviceModeChange=(e=>{this.parallaxPluginInited&&("mobile"===e&&this.destroyParallax(),"desktop"===e&&this.initParallax()),this.videoPluginInited&&("mobile"===e&&this.destroyVideoPlayer(),"desktop"===e&&this.initVideoPlayer())}),this.handleVideoRef=(e=>{this.video=e}),this.handleMediaRef=(e=>{this.media=e}),this.updateBackground=(()=>{const{imageSrc:e,video:t,parallax:a,deviceMode:o}=this.props,r=Boolean(e),i=Boolean(t),l=Object(h.b)().getState().ui.deviceMode;r&&!i&&a&&"desktop"===l?this.parallaxPluginInited?this.updateParallax():(this.initParallax(),this.parallaxPluginInited=!0):this.parallaxPluginInited&&(this.destroyParallax(),this.parallaxPluginInited=!1),i&&"desktop"===l?this.videoPluginInited?this.updateVideoPlayer():(this.initVideoPlayer(),this.videoPluginInited=!0):this.videoPluginInited&&(this.destroyVideoPlayer(),this.videoPluginInited=!1)}),this.initParallax=(()=>{n()(this.media).parallax({bgClass:"brz-bg-image",wheelIgnoreClass:["brz-ed-container-plus","brz-ed-container-whiteout-show","brz-content-show"]})}),this.updateParallax=(()=>{n()(this.media).parallax("refresh")}),this.destroyParallax=(()=>{n()(this.media).parallax("destroy")}),this.updateVideoPlayer=(()=>{const{video:e,bgVideoQuality:t}=this.props;n()(this.video).backgroundVideo("refresh",{type:e.type,quality:t,mute:!0})}),this.initVideoPlayer=(()=>{const{video:e,bgVideoQuality:t}=this.props;n()(this.video).backgroundVideo({type:e.type,autoResize:!1,autoplay:!0,quality:t,mute:!0})}),this.destroyVideoPlayer=(()=>{n()(this.video).backgroundVideo("destroy")}),this.renderImage=(()=>{const{imageSrc:e,colorOpacity:t,parallax:a,video:o,mobileColorOpacity:i,mobileImageSrc:l}=this.props;const n=Boolean(o),s=p()("brz-bg-image",{"brz-bg-image-parallax":a&&!n});return r.a.createElement("div",{className:s})}),this.renderVideo=(()=>{const{video:e,bgVideoLoop:t,bgVideoQuality:a,colorOpacity:o}=this.props,i=Boolean(e);const l=i?{display:"block"}:{display:"none"},n={autoplay:!0,background:!0,controls:!1,suggestedVideo:!1,loop:t,quality:a},s=i?Object(u.b)(e,n):null,p=i?e.type:null;return r.a.createElement("div",{ref:this.handleVideoRef,className:"brz-bg-video","data-type":p,"data-mute":"on","data-autoplay":"on","data-quality":n.quality},r.a.createElement("iframe",{src:s,className:"brz-iframe brz-bg-video__cover",style:l}))}),this.renderMap=(()=>{const{mapAddress:e,mapZoom:t,colorOpacity:a}=this.props,o=Boolean(e);const i=o?{display:"block"}:{display:"none"},l=o?`https://www.google.com/maps/embed/v1/place?key=AIzaSyCcywKcxXeMZiMwLDcLgyEnNglcLOyB_qw&q=${e}&zoom=${t}`:null;return r.a.createElement("div",{className:"brz-bg-map"},r.a.createElement("iframe",{className:"brz-iframe brz-bg-map__cover",src:l,style:i}))}),this.parallaxPluginInited=!1,this.videoPluginInited=!1}componentDidMount(){const{imageSrc:e,video:t,parallax:a,deviceMode:o}=this.props,r=Boolean(e),i=Boolean(t),l=Object(h.b)().getState().ui.deviceMode;r&&!i&&a&&"desktop"===l&&(this.initParallax(),this.parallaxPluginInited=!0),i&&"desktop"===l&&(this.initVideoPlayer(),this.videoPluginInited=!0),g.a.on("deviceMode.change",this.handleDeviceModeChange)}componentDidUpdate(){this.updateBackground()}componentWillUnmount(){this.parallaxPluginInited&&this.destroyParallax(),this.videoPluginInited&&this.destroyVideoPlayer(),g.a.off("deviceMode.change",this.handleDeviceModeChange)}render(){const{className:e,video:t,children:a,parallax:o}=this.props,i=p()("brz-bg",e),l=Boolean(t),n=Boolean(o),s=l||n;return r.a.createElement("div",{className:i},r.a.createElement("div",{ref:this.handleMediaRef,className:"brz-bg-media"},this.renderImage(),this.renderVideo(),this.renderMap(),r.a.createElement("div",{className:"brz-bg-color"})),r.a.createElement("div",{className:"brz-bg-content"},a),s&&r.a.createElement(d.a,{onResize:this.updateBackground}))}}b.defaultProps={className:"",imageSrc:"",colorOpacity:0,parallax:!1,video:!1,mobileImageSrc:"",mobileColorOpacity:0},t.a=b},function(e,t,a){"use strict";var o=a(835);a.d(t,"a",function(){return o.a}),a.d(t,"b",function(){return o.b})},function(e,t,a){"use strict";var o=a(63),r=a.n(o),i=a(24),l=a.n(i),n=a(0),s=a.n(n),p=a(2),c=a.n(p),d=a(1),m=a.n(d),g=a(69),u=a(47),h=a(38);class b extends n.Component{render(){const e=this.props,{className:t,style:a,resizerPoints:o,resizerMeta:r,resizerValue:i,resizerOnChange:n}=e,p=l()(e,["className","style","resizerPoints","resizerMeta","resizerValue","resizerOnChange"]),c=m()("brz-wp-shortcode",t);let d=s.a.createElement(y,p);return null!==i&&(d=s.a.createElement(h.a,{points:o,meta:r,value:i,onChange:n},d)),s.a.createElement("div",{className:c,style:a},d)}}t.a=b,b.defaultProps={name:"",attributes:{},raw:null,placeholderIcon:"nc-wp-shortcode",placeholderContainerWidth:0,resizerPoints:null,resizerMeta:null,resizerValue:null,resizerOnChange:null,renderHTMLInEditor:!0,className:"",style:{}};class y extends n.Component{constructor(...e){var t;return t=super(...e),this.state={shortcodeHTML:null},t}componentDidMount(){const{renderHTMLInEditor:e}=this.props;e&&this.updateShortCodeHTML()}shouldComponentUpdate(e,t){const a=this.props,o=this.state;return!c.a.isEqual(a.attributes,e.attributes)||a.name!==e.name||a.raw!==e.raw||!(o.shortcodeHTML===t.shortcodeHTML)}componentDidUpdate(e){const t=this.props;(!c.a.isEqual(t.attributes,e.attributes)||t.name!==e.name||t.raw!==e.raw)&&this.updateShortCodeHTML()}updateShortCodeHTML(){const e=this.getShortcodeString();if(""!==e)return u.h(e).then(({shortcode:e})=>this.setState({shortcodeHTML:e}))}getShortcodeString(){const{raw:e,name:t,attributes:a}=this.props;return null!==e?e:`[${t} ${a&&r()(a).map(e=>String(a[e])&&`${e}="${a[e]}"`).join(" ")||""}]`}renderForEdit(){const{className:e,style:t,placeholderIcon:a,placeholderContainerWidth:o}=this.props,{shortcodeHTML:r}=this.state;return r?s.a.createElement("div",{className:"brz-ed-blocked",dangerouslySetInnerHTML:{__html:r}}):s.a.createElement(g.a,{icon:a,containerWidth:o})}renderForView(){return s.a.createElement("div",{dangerouslySetInnerHTML:{__html:this.getShortcodeString()}})}render(){return this.renderForEdit()}}y.defaultProps={name:"",attributes:{},raw:null,placeholderIcon:"nc-wp-shortcode",placeholderContainerWidth:0,renderHTMLInEditor:!0}},,function(e,t,a){var o=a(39),r=a(189),i=a(190),l=a(36),n=a(98),s=a(191),p={},c={};(t=e.exports=function(e,t,a,d,m){var g,u,h,b,y=m?function(){return e}:s(e),f=o(a,d,t?2:1),v=0;if("function"!=typeof y)throw TypeError(e+" is not iterable!");if(i(y)){for(g=n(e.length);g>v;v++)if((b=t?f(l(u=e[v])[0],u[1]):f(e[v]))===p||b===c)return b}else for(h=y.call(e);!(u=h.next()).done;)if((b=r(h,f,u.value,t))===p||b===c)return b}).BREAK=p,t.RETURN=c},function(e,t,a){var o=a(141),r=a(200);e.exports=a(103)?function(e,t,a){return o.f(e,t,r(1,a))}:function(e,t,a){return e[t]=a,e}},function(e,t,a){"use strict";var o=a(221);function r(){}var i=null,l={};function n(e){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("Promise constructor's argument is not a function");this._40=0,this._65=0,this._55=null,this._72=null,e!==r&&g(e,this)}function s(e,t){for(;3===e._65;)e=e._55;if(n._37&&n._37(e),0===e._65)return 0===e._40?(e._40=1,void(e._72=t)):1===e._40?(e._40=2,void(e._72=[e._72,t])):void e._72.push(t);!function(e,t){o(function(){var a=1===e._65?t.onFulfilled:t.onRejected;if(null!==a){var o=function(e,t){try{return e(t)}catch(e){return i=e,l}}(a,e._55);o===l?c(t.promise,i):p(t.promise,o)}else 1===e._65?p(t.promise,e._55):c(t.promise,e._55)})}(e,t)}function p(e,t){if(t===e)return c(e,new TypeError("A promise cannot be resolved with itself."));if(t&&("object"==typeof t||"function"==typeof t)){var a=function(e){try{return e.then}catch(e){return i=e,l}}(t);if(a===l)return c(e,i);if(a===e.then&&t instanceof n)return e._65=3,e._55=t,void d(e);if("function"==typeof a)return void g(a.bind(t),e)}e._65=1,e._55=t,d(e)}function c(e,t){e._65=2,e._55=t,n._87&&n._87(e,t),d(e)}function d(e){if(1===e._40&&(s(e,e._72),e._72=null),2===e._40){for(var t=0;t<e._72.length;t++)s(e,e._72[t]);e._72=null}}function m(e,t,a){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=a}function g(e,t){var a=!1,o=function(e,t,a){try{e(t,a)}catch(e){return i=e,l}}(e,function(e){a||(a=!0,p(t,e))},function(e){a||(a=!0,c(t,e))});a||o!==l||(a=!0,c(t,i))}e.exports=n,n._37=null,n._87=null,n._61=r,n.prototype.then=function(e,t){if(this.constructor!==n)return function(e,t,a){return new e.constructor(function(o,i){var l=new n(r);l.then(o,i),s(e,new m(t,a,l))})}(this,e,t);var a=new n(r);return s(this,new m(e,t,a)),a}},,,function(e,t,a){e.exports={default:a(431),__esModule:!0}},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(2),l=a.n(i),n=a(159);class s extends r.a.Component{render(){const{data:e,className:t,optionClassName:a,toolbar:o,onChange:i}=this.props,s=l.a.filter(e,e=>e&&!0!==e.disabled),p=l.a.map(s,(e,t)=>r.a.createElement(n.a,{key:t,className:a,toolbar:o,data:e}));return r.a.createElement("div",{className:t},p)}}s.defaultProps={className:"",optionClassName:"",data:null,toolbar:null},t.a=s},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(2),l=a.n(i),n=a(1),s=a.n(n);class p extends r.a.Component{constructor(...e){var t;return t=super(...e),this.getClassName=(()=>s()("brz-control__select-option",{active:this.props.active})),t}render(){const{title:e,onClick:t,children:a}=this.props;return r.a.createElement("div",{className:this.getClassName(),title:e,onClick:t},a)}}p.defaultProps={active:"",title:"",onClick:l.a.noop},t.a=p},,function(e,t,a){"use strict";var o=a(286),r=a(810);a.d(t,"b",function(){return o.a}),a.d(t,"a",function(){return r.a})},function(e,t,a){"use strict";var o=a(2);a.n(o);t.b=1170;t.c=1600;t.d=430;t.a=60},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(1),l=a.n(i),n=a(5);class s extends r.a.Component{render(){const{className:e,icon:t,containerWidth:a}=this.props,o=l()("brz-shortcode__placeholder",e),i={fontSize:`${Math.round(16+.05*(a-1))}px`};return r.a.createElement("div",{className:o,style:i},r.a.createElement(n.a,{icon:t}))}}t.a=s,s.defaultProps={className:"",icon:"",containerWidth:""}},,,,,,,,function(e,t){var a={}.hasOwnProperty;e.exports=function(e,t){return a.call(e,t)}},function(e,t,a){var o=a(204)("wks"),r=a(146),i=a(40).Symbol,l="function"==typeof i;(e.exports=function(e){return o[e]||(o[e]=l&&i[e]||(l?i:r)("Symbol."+e))}).store=o},,function(e,t,a){e.exports={default:a(385),__esModule:!0}},,,function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(2),s=a.n(n),p=a(20),c=(a.n(p),a(1)),d=a.n(c),m=a(31),g=a(5),u=a(30);class h extends l.a.Component{constructor(...e){var t;return t=super(...e),this.state={isOpen:!1,currentValue:this.props.defaultValue},this.onClickOutside=(()=>{this.state.isOpen&&this.setState({isOpen:!1})}),this.onItemClick=(e=>{this.setState({isOpen:!1,currentValue:e}),this.props.onChange(e)}),this.onSelectedClick=(()=>{this.setState({isOpen:!this.state.isOpen})}),this.renderOptions=(()=>{const{children:e}=this.props,{currentValue:t}=this.state;return s.a.map(e,(e,a)=>l.a.cloneElement(e,{key:a,active:e.props.value===t,title:e.props.value,onClick:e.props.disabled?null:()=>this.onItemClick(e.props.value)}))}),t}componentWillReceiveProps(e){this.state.defaultValue!==e.defaultValue&&this.setState({currentValue:e.defaultValue})}renderSelectedOption(){const{children:e}=this.props,{currentValue:t}=this.state;return s.a.find(e,e=>e.props.value===t)||this.props.children[0]}renderArrow(){const{arrowIcon:e}=this.props;return e&&l.a.createElement(g.a,{icon:e,className:"brz-control__select--arrow"})}render(){const{className:e,children:t,currentValue:a,inputAttributes:o}=this.props,i=d()("brz-control__select",e,{opened:this.state.isOpen}),n={height:(s=l.a.Children.count(t),p=this.props.itemHeight,c=this.props.minItems,g=this.props.maxItems,h=p*c,b=p*g,y=s*p,Math.max(h,Math.min(b,y)))};var s,p,c,g,h,b,y;return l.a.createElement(u.a,{onClickOutside:this.onClickOutside},l.a.createElement("div",{className:i},l.a.createElement("div",{className:"brz-control__select-current",onClick:this.onSelectedClick},this.renderSelectedOption(),this.renderArrow()),l.a.createElement("div",{className:"brz-control__select-options"},l.a.createElement(m.a,{style:n},this.renderOptions())),l.a.createElement("input",r()({type:"hidden",value:a},o))))}}h.defaultProps={defaultValue:"",inputAttributes:{},minItems:1,maxItems:5,itemHeight:38,arrowIcon:"nc-stre-down",onChange:s.a.noop},t.a=h},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i),n=a(2),s=a.n(n),p=a(9),c=a(4);const d={ENTER:13,B:66,I:73,U:85,V:86,Y:89,Z:90};class m extends p.a{constructor(...e){var t;return t=super(...e),this.handleClick=(e=>{e.preventDefault(),l.a.findDOMNode(this).classList.add("brz-ed-dd-cancel")}),this.handleKeyDown=(e=>{const t=e.which,a=e.metaKey||e.ctrlKey;t!==d.ENTER?a&&t===d.V?e.preventDefault():(!a||t!==d.B&&t!==d.I&&t!==d.U)&&(!a||t!==d.Z&&t!==d.Y)||e.preventDefault():e.preventDefault()}),this.handleInput=(e=>{this.notifyChange(e.target.textContent)}),this.handleBlur=(()=>{l.a.findDOMNode(this).classList.remove("brz-ed-dd-cancel")}),this.notifyChange=s.a.debounce(e=>{this.mounted&&this.props.onChange(e)},1e3),t}static get componentId(){return"TextEditor"}componentDidMount(){this.mounted=!0}componentWillReceiveProps(e){const t=l.a.findDOMNode(this);e.value!==t.textContent&&(t.textContent=e.value)}shouldComponentUpdate(e){return!1}componentWillUnmount(){this.mounted=!1}render(){return r.a.createElement("span",{className:"brz-span brz-text__editor",contentEditable:!0,onClick:this.handleClick,onKeyDown:this.handleKeyDown,onInput:this.handleInput,onBlur:this.handleBlur,dangerouslySetInnerHTML:{__html:this.props.value}})}}m.defaultProps={value:Object(c.a)("Editable Text")},t.a=m},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i);class n extends l.a.Component{constructor(e){if(super(e),!this.props.type)throw new Error("SortableElement must receive a non-empty type")}render(){const{children:e,type:t,subtype:a,useHandle:o}=this.props;let i=r()({"data-sortable-element":!0,"data-sortable-type":t},a?{"data-sortable-subtype":a}:{});return o&&(i["data-sortable-use-handle"]=!0),l.a.cloneElement(l.a.Children.only(e),i)}}n.defaultProps={type:"",subtype:"",useHandle:!1},t.a=n},,,,,,,,function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(7),s=a.n(n);class p extends i.Component{constructor(...e){var t;return t=super(...e),this.handleTextChange=(({target:{value:e}})=>{this.props.onChange({label:e})}),this.handleClick=(e=>{e.preventDefault(),s.a.findDOMNode(this).classList.add("brz-ed-dd-cancel")}),this.handleBlur=(()=>{s.a.findDOMNode(this).classList.remove("brz-ed-dd-cancel")}),t}static get componentTitle(){return"Text"}static get componentType(){return"Text"}renderForEdit(e){return l.a.createElement("input",r()({className:"brz-input brz-form__field"},e))}renderForView(e){return this.renderForEdit(e)}render(){const{_id:e,label:t,required:a,type:o}=this.props;let r,i;return r={type:"text",value:t,onChange:this.handleTextChange,onClick:this.handleClick,onBlur:this.handleBlur},i=this.renderForEdit(r)}}t.a=p,p.defaultProps={_id:null,label:"Default Label",required:"off",type:"Text"}},,,,,,,,function(e,t){e.exports=function(e,t,a,o){if(!(e instanceof t)||void 0!==o&&o in e)throw TypeError(a+": incorrect invocation!");return e}},function(e,t,a){var o=a(44);e.exports=function(e,t,a){for(var r in t)a&&e[r]?e[r]=t[r]:o(e,r,t[r]);return e}},function(e,t,a){e.exports=!a(199)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},,,,function(e,t,a){"use strict";t.c=function(e,t){return function(a,o){switch(o.type){case y.UNDO:const i=u();return r()({},a,i,{historyTravelling:!0});case y.REDO:const l=h();return r()({},a,l,{historyTravelling:!0});default:a&&delete a.historyTravelling;const n=e(a,o);return"@@redux/INIT"!==o.type&&b(n,t),n}}};var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(2);a.n(n);let s=[],p=-1,c=0,d=!1,m=!1;const g=()=>{d=p>0,m=p<s.length-1},u=()=>(p--,g(),s[p]),h=()=>(p++,g(),s[p]),b=(e,t)=>{let a=!1;if(0===s.length)a=!0;else{const o=s[p];for(const r of t)if(e[r]!==o[r]){a=!0;break}}if(a){const a=((e,t)=>t.reduce((t,a)=>(t[a]=e[a],t),{}))(e,t),o=Date.now();if(p<s.length-1)p++,s=[...s.slice(0,p),a];else{if(o-c>2e3){s.length>=11?s=[...s.slice(1),a]:(s=[...s,a],p++)}else s=[...s.slice(0,-1),a]}g(),c=o}},y={UNDO:"UNDO",REDO:"REDO"};t.a=y;class f extends l.a.Component{constructor(...e){var t;return t=super(...e),this.handleKeyDown=(e=>{(e.metaKey||e.ctrlKey)&&(90===e.keyCode?this.triggerUndo():89===e.keyCode&&this.triggerRedo())}),this.triggerUndo=(()=>{d&&this.props.dispatch({type:y.UNDO,currentSnapshot:s[p],nextSnapshot:s[p-1]})}),this.triggerRedo=(()=>{m&&this.props.dispatch({type:y.REDO,currentSnapshot:s[p],nextSnapshot:s[p+1]})}),t}componentDidMount(){let e=window;for(;e.document.addEventListener("keydown",this.handleKeyDown),e.parent!==e;)e=e.parent}componentWillUnmount(){let e=window;for(;e.document.removeEventListener("keydown",this.handleKeyDown),e.parent!==e;)e=e.parent}render(){return this.props.render({canUndo:d,triggerUndo:this.triggerUndo,canRedo:m,triggerRedo:this.triggerRedo})}}t.b=f,f.defaultProps={dispatch:null,render:null}},function(e,t,a){"use strict";t.a="HYDRATE";t.d="UPDATE_PAGE";t.c="UPDATE_GLOBALS";t.e="UPDATE_UI";t.b="SET_AJAX"},function(e,t,a){"use strict";t.a=function(e){return l[e]||null};var o=a(2),r=a.n(o),i=a(226);const l=r.a.indexBy(i.a,"id")},function(e,t,a){var o=a(28);e.exports=function(e,t){if(!o(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},function(e,t,a){"use strict";a.d(t,"a",function(){return c});var o=a(0),r=a.n(o),i=a(1),l=a.n(i),n=a(160),s=a(30),p=a(454);let c=null;class d extends r.a.Component{constructor(...e){var t;return t=super(...e),this.state={isOpen:!1,isHidden:!1},this.handleContentRef=(e=>{this.content=e}),this.handleClickOutside=(()=>{const{isOpen:e}=this.state;e&&this.close()}),this.handleContentClick=(()=>{const{isOpen:e,isHidden:t}=this.state;e?t?this.show():this.close():this.open()}),this.renderOverlay=(()=>{const{isOpen:e,isHidden:t}=this.state;if(!e)return null;const{overlay:a,arrow:o,placement:i,size:s,toolbar:c}=this.props,d=l()("brz-reset-all","brz-ed-tooltip__content-portal",{"brz-invisible":t});return r.a.createElement(n.a,{node:this.content.ownerDocument.body,className:d},r.a.createElement(p.a,{node:this.content,arrow:o,placement:i,size:s,toolbar:c,isOpen:e},a))}),t}open(){const{isOpen:e}=this.state;e||this.setState({isOpen:!0},()=>{c=this,this.props.onOpen()})}close(){const{isOpen:e}=this.state;e&&this.setState({isOpen:!1},()=>{c=null,this.props.onClose()})}show(){const{isHidden:e}=this.state;e&&this.setState({isHidden:!1})}hide(){const{isHidden:e}=this.state;e||this.setState({isHidden:!0})}reposition(){this.forceUpdate()}render(){const{className:e,title:t,children:a,clickOutsideExceptions:o}=this.props,{isOpen:i}=this.state,n=l()("brz-ed-tooltip",{"brz-ed-tooltip--opened":i},e),p=[...o,".brz-ed-tooltip__content-portal"];return r.a.createElement(s.a,{onClickOutside:this.handleClickOutside,exceptions:p},r.a.createElement("div",{className:n},r.a.createElement("div",{ref:this.handleContentRef,title:t,className:"brz-ed-tooltip__content",onClick:this.handleContentClick},a),this.renderOverlay()))}}t.b=d,d.defaultProps={className:"",arrow:!0,placement:"top-center",overlay:"",size:"",title:"",toolbar:null,clickOutsideExceptions:[],onOpen:()=>{},onClose:()=>{}}},,function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(1),l=a.n(i),n=a(155);class s extends r.a.Component{render(){const{className:e,name:t,type:a,suffix:o}=this.props,i=l()("brz-icon-svg",e),s=Object(n.b)(a,t,o);return r.a.createElement("svg",{className:i},r.a.createElement("use",{xlinkHref:s}))}}t.a=s,s.defaultProps={className:"",name:"",type:"",suffix:"nc_icon"}},,,,,,,,,,,,function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(24),l=a.n(i),n=a(275),s=a.n(n),p=a(0),c=a.n(p),d=a(7),m=a.n(d),g=a(1),u=a.n(g);let h=new s.a,b=null;class y extends p.Component{constructor(...e){var t;return t=super(...e),this.state={isVisible:!1},this.initObserver=(()=>{const{observerRootSelector:e,observerRootMargin:t,observerThreshold:a}=this.props,o={root:document.querySelector(e),rootMargin:t,threshold:a};b=new IntersectionObserver(this.handleIntersection,o)}),this.handleIntersection=(e=>{e.forEach(({isIntersecting:e,target:t})=>{if(e){const e=h.get(t);b.unobserve(t),e.setState({isVisible:!0})}})}),t}componentDidMount(){this.node=m.a.findDOMNode(this),this.props.name&&(null===b&&this.initObserver(),b.observe(this.node),h.set(this.node,this))}componentWillReceiveProps(e){e.name!==this.props.name&&(null===b&&this.initObserver(),h.has(this.node)||(b.observe(this.node),h.set(this.node,this)))}componentWillUnmount(){this.props.name&&(b.unobserve(this.node),h.delete(this.node),0===h.size&&(b.disconnect(),b=null))}renderForEdit(){const e=this.props,{className:t,style:a,name:o,delay:i,duration:n,observerRootSelector:s,observerRootMargin:p,observerThreshold:d,children:m}=e,g=l()(e,["className","style","name","delay","duration","observerRootSelector","observerRootMargin","observerThreshold","children"]),{isVisible:h}=this.state,b=Boolean(o),y=h&&b,f=u()("brz-observer__animation",t,{"brz-animated":b,[`brz-animated__${o}`]:y,"brz-animate":y}),v=r()({},a,b?{animationDelay:`${i}ms`,animationDuration:`${n}ms`}:{});return c.a.createElement("div",r()({className:f,style:v},g),this.props.children)}renderForView(){const{className:e,name:t,delay:a,duration:o,children:i}=this.props,l=Boolean(t),n=r()({className:u()(e,{"brz-animated":l})},l?{"data-animate-name":`brz-animated__${t}`,"data-animate-delay":a,"data-animate-duration":o}:{});return c.a.createElement("div",n,i)}render(){return this.renderForEdit()}}t.a=y,y.defaultProps={className:"",style:{},observerRootSelector:null,observerRootMargin:"0px",observerThreshold:[0],name:null,delay:1e3,duration:1e3}},function(e,t,a){"use strict";var o=a(817);a.d(t,"a",function(){return o.a})},,,,,,,,,,,,function(e,t,a){var o=a(74),r=a(23)("toStringTag"),i="Arguments"==o(function(){return arguments}());e.exports=function(e){var t,a,l;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(a=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),r))?a:i?o(t):"Object"==(l=o(t))&&"function"==typeof t.callee?"Arguments":l}},function(e,t,a){"use strict";var o=a(71);e.exports.f=function(e){return new function(e){var t,a;this.promise=new e(function(e,o){if(void 0!==t||void 0!==a)throw TypeError("Bad Promise constructor");t=e,a=o}),this.resolve=o(t),this.reject=o(a)}(e)}},function(e,t,a){var o=a(40),r=a(198),i=a(59),l=a(145),n=a(201),s=function(e,t,a){var p,c,d,m,g=e&s.F,u=e&s.G,h=e&s.S,b=e&s.P,y=e&s.B,f=u?o:h?o[t]||(o[t]={}):(o[t]||{}).prototype,v=u?r:r[t]||(r[t]={}),w=v.prototype||(v.prototype={});for(p in u&&(a=t),a)d=((c=!g&&f&&void 0!==f[p])?f:a)[p],m=y&&c?n(d,o):b&&"function"==typeof d?n(Function.call,d):d,f&&l(f,p,d,e&s.U),v[p]!=d&&i(v,p,m),b&&w[p]!=d&&(w[p]=d)};o.core=r,s.F=1,s.G=2,s.S=4,s.P=8,s.B=16,s.W=32,s.U=64,s.R=128,e.exports=s},function(e,t,a){var o=a(142),r=a(318),i=a(319),l=Object.defineProperty;t.f=a(103)?Object.defineProperty:function(e,t,a){if(o(e),t=i(t,!0),o(a),r)try{return l(e,t,a)}catch(e){}if("get"in a||"set"in a)throw TypeError("Accessors not supported!");return"value"in a&&(e[t]=a.value),e}},function(e,t,a){var o=a(143);e.exports=function(e){if(!o(e))throw TypeError(e+" is not an object!");return e}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,a){var o=a(143),r=a(40).document,i=o(r)&&o(r.createElement);e.exports=function(e){return i?r.createElement(e):{}}},function(e,t,a){var o=a(40),r=a(59),i=a(77),l=a(146)("src"),n=Function.toString,s=(""+n).split("toString");a(198).inspectSource=function(e){return n.call(e)},(e.exports=function(e,t,a,n){var p="function"==typeof a;p&&(i(a,"name")||r(a,"name",t)),e[t]!==a&&(p&&(i(a,l)||r(a,l,e[t]?""+e[t]:s.join(String(t)))),e===o?e[t]=a:n?e[t]?e[t]=a:r(e,t,a):(delete e[t],r(e,t,a)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[l]||n.call(this)})},function(e,t){var a=0,o=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++a+o).toString(36))}},function(e,t){e.exports={}},function(e,t,a){var o=a(328),r=a(205);e.exports=function(e){return o(r(e))}},function(e,t,a){var o=a(204)("keys"),r=a(146);e.exports=function(e){return o[e]||(o[e]=r(e))}},,,function(e,t,a){"use strict";var o=a(2),r=a.n(o),i=a(34),l=(a.n(i),a(48));function n(e,t){return r.a.find(e,function(e){return e.id===t})}var s="notifications",p={notificationTypes:{success:0,error:1},addChangeListener:function(e){l.a.addChangeListener(s,e)},removeChangeListener:function(e){l.a.removeChangeListener(s,e)},getNotifications:function(){return l.a.get(s)||[]},addNotification:function(e){var t=this.getNotifications(),a=e.id||r.a.uniqueId();if(n(t,a))return a;var o=Object(i.addLast)(t,{id:a,type:e.type||this.notificationTypes.success,text:e.text||"Notification without text",dismissible:void 0===e.dismissible||Boolean(e.dismissible),autoDismissAfter:Number(e.autoDismissAfter)||1e4});return l.a.set(s,o),a},removeNotification:function(e){var t=this.getNotifications(),a=n(t,e);if(a){var o=t.indexOf(a),r=Object(i.removeAt)(t,o);l.a.set(s,r)}}};t.a=p},,,function(e,t,a){"use strict";var o=a(416);a.d(t,"a",function(){return o.a});var r=a(418);a.d(t,"b",function(){return r.a})},function(e,t,a){"use strict";var o=a(417);a.d(t,"a",function(){return o.a})},function(e,t,a){var o=a(39),r=a(134),i=a(76),l=a(98),n=a(445);e.exports=function(e,t){var a=1==e,s=2==e,p=3==e,c=4==e,d=6==e,m=5==e||d,g=t||n;return function(t,n,u){for(var h,b,y=i(t),f=r(y),v=o(n,u,3),w=l(f.length),x=0,C=a?g(t,w):s?g(t,0):void 0;w>x;x++)if((m||x in f)&&(b=v(h=f[x],x,y),e))if(a)C[x]=b;else if(b)switch(e){case 3:return!0;case 5:return h;case 6:return x;case 2:C.push(h)}else if(c)return!1;return d?-1:p||c?c:C}}},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(2),s=a.n(n),p=a(1),c=a.n(p),d=a(451);class m extends l.a.Component{constructor(...e){var t;return t=super(...e),this.state={itemsRenderer:null},this.setItemsRenderer=(e=>{this.setState({itemsRenderer:e},this.props.onContentChange)}),this.resetItemsRenderer=(()=>{this.setState({itemsRenderer:null},this.props.onContentChange)}),this.renderItems=(()=>{const{items:e,toolbarNode:t}=this.props,a=s.a.filter(e,e=>e&&!0!==e.disabled),o=s.a.map(a,(e,o)=>l.a.createElement(d.a,{key:e.id,data:e,toolbar:r()({},this,{toolbarItemIndex:o+1,toolbarItemsLength:a.length,toolbarNode:t})}));return l.a.createElement("div",{className:"brz-ed-toolbar__items brz-d-xs-flex brz-align-items-center"},o)}),t}render(){const{arrow:e,items:t,onMouseEnter:a,onMouseLeave:o}=this.props,{itemsRenderer:r}=this.state,i=c()("brz-ed-toolbar"),n=r?r(t):this.renderItems();return l.a.createElement("div",{className:i,onMouseEnter:a,onMouseLeave:o},n,e?l.a.createElement("div",{className:"brz-ed-arrow brz-ed-arrow--top-center brz-ed-toolbar__arrow"}):null)}}m.defaultProps={arrow:!0,items:[],toolbarNode:null,onChange:s.a.noop,onContentChange:s.a.noop},t.a=m},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(2),s=(a.n(n),a(1)),p=a.n(s),c=a(452);class d extends l.a.Component{render(){const{data:e,className:t,toolbar:a}=this.props,o=p()(e.className,t),i=c.a[e.type];return l.a.createElement(i,r()({},e,{className:o,toolbar:a}))}}d.defaultProps={className:"",data:null,toolbar:null},t.a=d},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i),n=a(12),s=a.n(n);class p extends r.a.Component{constructor(e){super(e);const{node:t,className:a}=this.props,o=t.ownerDocument;this.el=o.createElement("div"),a&&(this.el.className=a),t.appendChild(this.el)}componentWillReceiveProps(e){e.className!==this.props.className&&(this.el.className=e.className)}componentWillUnmount(){this.props.node.removeChild(this.el)}render(){return l.a.createPortal(this.props.children,this.el)}}p.propTypes={className:s.a.string,node:s.a.object.isRequired},t.a=p},function(e,t,a){"use strict";var o=a(470);a.d(t,"a",function(){return o.a})},,,,,,,function(e,t,a){"use strict";t.a=function(e,t,a){if(e<t)return t;if(e>a)return a;return e}},function(e,t,a){"use strict";let o=null,r=null;const i={getActive:()=>r,setActive(e){this.unsetActive(),r=e},unsetIfActive(e){e===r&&(r=null,(o=e).handleMonitorDeactivationRequest())},unsetActive(){null!==r&&(o=r,r=null,o.handleMonitorDeactivationRequest())},activateLastActive(){o.handleMonitorActivationRequest()}};t.a=i},function(e,t,a){"use strict";t.a=function(e){const t=function(e){return JSON.parse(r()(e,(e,t)=>"_id"===e?void 0:t))}(e);return Object(s.a)(t,p),t};var o=a(80),r=a.n(o),i=a(112),l=a.n(i),n=a(35),s=a(595);const p=(e,t,a)=>{if(void 0!==a._id)return;if("type"===e&&null!=n.a.getComponent(t))return a.value=a.value||{},void(a.value._id=l()(10));"items"===e&&Array.isArray(t)?a._id=l()(10):"_styles"===e&&Array.isArray(t)&&(a._id=l()(10))}},,,,,,,,,,function(e,t,a){"use strict";(function(e){var o=a(0),r=a.n(o),i=a(20),l=a.n(i),n=a(1),s=a.n(n),p=a(2),c=a.n(p);const d=e=>({x:e.clientX,y:e.clientY});class m extends r.a.Component{constructor(...t){var a;return a=super(...t),this.state={isDragging:!1},this.isMouseDown=null,this.startPosition=null,this.currentPosition=null,this.lastDelta=null,this.handleClick=(e=>{e.stopPropagation()}),this.handleMouseDown=(t=>{e.BRZ_IS_DRAGGING=!0,this.isMouseDown=!0,this.currentPosition=this.startPosition=d(t),this.props.onDragStart(),this.initMouseEvents(),this.handleResize(),this.setState({isDragging:!0})}),this.handleMouseMove=(e=>{this.currentPosition=d(e)}),this.handleMouseUp=(t=>{e.BRZ_IS_DRAGGING=!1,this.isMouseDown=!1,this.startPosition=null,this.lastDelta=null,this.setState({isDragging:!1},()=>{this.cleanMouseEvents(),this.props.onDragEnd()})}),this.handleResize=(()=>{if(this.isMouseDown){requestAnimationFrame(this.handleResize);const e=this.currentPosition.x-this.startPosition.x,t=this.currentPosition.y-this.startPosition.y,{x:a,y:o}=this.lastDelta||{};e===a&&t===o||(this.lastDelta={x:e,y:t},this.props.onDrag({deltaX:e,deltaY:t}))}}),a}componentWillUnmount(){this.cleanMouseEvents()}initMouseEvents(){l()("[contenteditable]").attr("contenteditable",!1),l()("input, textarea").attr("readonly",!0),l()("body").addClass("disable-select"),l()(window).on("mousemove",this.handleMouseMove),l()(window).on("mouseup",this.handleMouseUp)}cleanMouseEvents(){l()("[contenteditable]").attr("contenteditable",!0),l()("input, textarea").attr("readonly",!1),l()("body").removeClass("disable-select"),l()(window).off("mousemove",this.handleMouseMove),l()(window).off("mouseup",this.handleMouseUp)}render(){const{className:e,style:t=null,renderPopover:a}=this.props,{isDragging:o}=this.state,i=s()("brz-ed-draggable","brz-ed-dd-cancel",{"brz-ed-draggable--dragging":o},e);return r.a.createElement("div",{className:i,style:t,onMouseDown:this.handleMouseDown,onClick:this.handleClick},this.props.children,o&&a())}}m.defaultProps={style:{},renderPopover:c.a.noop,onDragStart:c.a.noop,onDrag:c.a.noop,onDragEnd:c.a.noop},t.a=m}).call(t,a(17))},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(80),l=a.n(i);t.b=((e,t)=>encodeURIComponent(l()(r()({type:e},t))));t.a=(e=>{try{return JSON.parse(decodeURIComponent(e))}catch(e){return{linkType:"anchor",linkAnchor:"",linkExternal:"",linkExternalBlank:"on"}}})},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(24),l=a.n(i),n=a(0),s=a.n(n),p=a(1),c=a.n(p);class d extends n.Component{constructor(...e){var t;return t=super(...e),this.onClick=(e=>{e.preventDefault()}),t}render(){const e=this.props,{className:t,type:a,href:o,target:i,children:n}=e,p=l()(e,["className","type","href","target","children"]),d={className:c()("brz-a",{"brz-anchor":"anchor"===a},t),onClick:this.onClick,href:"anchor"===a?`#${o}`:o,target:"external"===a&&"on"===i?"_blank":null};return s.a.createElement("a",r()({},p,d),n)}}d.defaultProps={className:"",href:"",target:null,type:"external"},t.a=d},,function(e,t,a){e.exports={default:a(303),__esModule:!0}},,,,,function(e,t,a){var o=a(36);e.exports=function(e,t,a,r){try{return r?t(o(a)[0],a[1]):t(a)}catch(t){var i=e.return;throw void 0!==i&&o(i.call(e)),t}}},function(e,t,a){var o=a(73),r=a(23)("iterator"),i=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||i[r]===e)}},function(e,t,a){var o=a(138),r=a(23)("iterator"),i=a(73);e.exports=a(14).getIteratorMethod=function(e){if(void 0!=e)return e[r]||e["@@iterator"]||i[o(e)]}},function(e,t,a){var o=a(36),r=a(71),i=a(23)("species");e.exports=function(e,t){var a,l=o(e).constructor;return void 0===l||void 0==(a=o(l)[i])?t:r(a)}},function(e,t,a){var o,r,i,l=a(39),n=a(313),s=a(187),p=a(131),c=a(22),d=c.process,m=c.setImmediate,g=c.clearImmediate,u=c.MessageChannel,h=c.Dispatch,b=0,y={},f=function(){var e=+this;if(y.hasOwnProperty(e)){var t=y[e];delete y[e],t()}},v=function(e){f.call(e.data)};m&&g||(m=function(e){for(var t=[],a=1;arguments.length>a;)t.push(arguments[a++]);return y[++b]=function(){n("function"==typeof e?e:Function(e),t)},o(b),b},g=function(e){delete y[e]},"process"==a(74)(d)?o=function(e){d.nextTick(l(f,e,1))}:h&&h.now?o=function(e){h.now(l(f,e,1))}:u?(i=(r=new u).port2,r.port1.onmessage=v,o=l(i.postMessage,i,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(o=function(e){c.postMessage(e+"","*")},c.addEventListener("message",v,!1)):o="onreadystatechange"in p("script")?function(e){s.appendChild(p("script")).onreadystatechange=function(){s.removeChild(this),f.call(e)}}:function(e){setTimeout(l(f,e,1),0)}),e.exports={set:m,clear:g}},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,a){var o=a(36),r=a(28),i=a(139);e.exports=function(e,t){if(o(e),r(t)&&t.constructor===e)return t;var a=i.f(e);return(0,a.resolve)(t),a.promise}},function(e,t,a){"use strict";var o=a(22),r=a(14),i=a(33),l=a(37),n=a(23)("species");e.exports=function(e){var t="function"==typeof r[e]?r[e]:o[e];l&&t&&!t[n]&&i.f(t,n,{configurable:!0,get:function(){return this}})}},function(e,t,a){var o=a(23)("iterator"),r=!1;try{var i=[7][o]();i.return=function(){r=!0},Array.from(i,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!r)return!1;var a=!1;try{var i=[7],l=i[o]();l.next=function(){return{done:a=!0}},i[o]=function(){return l},e(i)}catch(e){}return a}},function(e,t){var a=e.exports={version:"2.5.1"};"number"==typeof __e&&(__e=a)},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,a){var o=a(320);e.exports=function(e,t,a){if(o(e),void 0===t)return e;switch(a){case 1:return function(a){return e.call(t,a)};case 2:return function(a,o){return e.call(t,a,o)};case 3:return function(a,o,r){return e.call(t,a,o,r)}}return function(){return e.apply(t,arguments)}}},function(e,t,a){var o=a(40).document;e.exports=o&&o.documentElement},function(e,t){var a={}.toString;e.exports=function(e){return a.call(e).slice(8,-1)}},function(e,t,a){var o=a(40),r=o["__core-js_shared__"]||(o["__core-js_shared__"]={});e.exports=function(e){return r[e]||(r[e]={})}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,a){var o=a(334),r=a(208);e.exports=Object.keys||function(e){return o(e,r)}},function(e,t){var a=Math.ceil,o=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?o:a)(e)}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,a){var o=a(141).f,r=a(77),i=a(78)("toStringTag");e.exports=function(e,t,a){e&&!r(e=a?e:e.prototype,i)&&o(e,i,{configurable:!0,value:t})}},,,,,,,,,,,,function(e,t,a){"use strict";(function(t){function a(e){r.length||(o(),!0),r[r.length]=e}e.exports=a;var o,r=[],i=0,l=1024;function n(){for(;i<r.length;){var e=i;if(i+=1,r[e].call(),i>l){for(var t=0,a=r.length-i;t<a;t++)r[t]=r[t+i];r.length-=i,i=0}}r.length=0,i=0,!1}var s,p,c,d=void 0!==t?t:self,m=d.MutationObserver||d.WebKitMutationObserver;function g(e){return function(){var t=setTimeout(o,0),a=setInterval(o,50);function o(){clearTimeout(t),clearInterval(a),e()}}}"function"==typeof m?(s=1,p=new m(n),c=document.createTextNode(""),p.observe(c,{characterData:!0}),o=function(){s=-s,c.data=s}):o=g(n),a.requestFlush=o,a.makeRequestCallFromTimer=g}).call(t,a(17))},function(e,t,a){"use strict";t.a=1},,function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(105),l=a(107),n=a(108);const s={deviceMode:"desktop",leftSidebar:{isOpen:!1,drawerContentType:null}};const p=(e,t)=>{const a=t.colorPalette||e.colorPalette,o=t.fontStyles||e.fontStyles,i=a.reduce((e,t)=>r()({},e,{[`${t.id}__color`]:{colorHex:t.hex},[`${t.id}__hoverColor`]:{hoverColorHex:t.hex},[`${t.id}__bg`]:{bgColorHex:t.hex},[`${t.id}__bg2`]:{bg2ColorHex:t.hex},[`${t.id}__hoverBg`]:{hoverBgColorHex:t.hex},[`${t.id}__border`]:{borderColorHex:t.hex},[`${t.id}__hoverBorder`]:{hoverBorderColorHex:t.hex},[`${t.id}__arrowsColor`]:{sliderArrowsColorHex:t.hex},[`${t.id}__dotsColor`]:{sliderDotsColorHex:t.hex},[`${t.id}__mobileBg`]:{mobileBgColorHex:t.hex}}),{}),l=o.reduce((e,t)=>r()({},e,{[`${t.id}__fsDesktop`]:{fontFamily:t.fontFamily,fontSize:t.fontSize,fontWeight:t.fontWeight,lineHeight:t.lineHeight,letterSpacing:t.letterSpacing},[`${t.id}__fsMobile`]:{mobileFontSize:t.mobileFontSize,mobileFontWeight:t.mobileFontWeight,mobileLineHeight:t.mobileLineHeight,mobileLetterSpacing:t.mobileLetterSpacing}}),{});return{colorPalette:a,fontStyles:o,rules:r()({},e.rules,i,l)}},c="default";t.a=Object(l.c)(Object(i.combineReducers)({page:function(e={},t){switch(t.type){case n.a:return t.page;case n.d:return r()({},e,t.data);default:return e}},globals:function(e={},t){switch(t.type){case n.a:return t.globals;case n.c:return r()({},e,{[t.projectOrLanguage]:r()({},e[t.projectOrLanguage],{[t.key]:t.value})});default:return e}},ui:function(e=s,t){switch(t.type){case n.e:return r()({},e,{[t.key]:t.value});default:return e}},styles:function(e={},t){switch(t.type){case n.a:const{globals:{project:a},styles:o}=t,r=a.styles&&a.styles[c]||{};return p(o,r);case n.c:return"styles"===t.key?p(e,t.value[c]):e;default:return e}},doingAjax:function(e=!1,t){switch(t.type){case n.b:return t.value;default:return e}}}),["page","globals","styles"])},,function(e,t,a){"use strict";t.a=[{id:"abeezee",title:"ABeeZee",family:"ABeeZee, sans-serif",weights:[400],url:"ABeeZee:400,400i"},{id:"abel",title:"Abel",family:"Abel, sans-serif",weights:[400],url:"Abel:400"},{id:"abhaya_libre",title:"Abhaya Libre",family:"Abhaya Libre, serif",weights:[400,500,600,700,800],url:"Abhaya+Libre:400,500,600,700,800"},{id:"abril_fatface",title:"Abril Fatface",family:"Abril Fatface, display",weights:[400],url:"Abril+Fatface:400"},{id:"aclonica",title:"Aclonica",family:"Aclonica, sans-serif",weights:[400],url:"Aclonica:400"},{id:"acme",title:"Acme",family:"Acme, sans-serif",weights:[400],url:"Acme:400"},{id:"actor",title:"Actor",family:"Actor, sans-serif",weights:[400],url:"Actor:400"},{id:"adamina",title:"Adamina",family:"Adamina, serif",weights:[400],url:"Adamina:400"},{id:"advent_pro",title:"Advent Pro",family:"Advent Pro, sans-serif",weights:[100,200,300,400,500,600,700],url:"Advent+Pro:100,200,300,400,500,600,700"},{id:"aguafina_script",title:"Aguafina Script",family:"Aguafina Script, handwriting",weights:[400],url:"Aguafina+Script:400"},{id:"akronim",title:"Akronim",family:"Akronim, display",weights:[400],url:"Akronim:400"},{id:"aladin",title:"Aladin",family:"Aladin, handwriting",weights:[400],url:"Aladin:400"},{id:"aldrich",title:"Aldrich",family:"Aldrich, sans-serif",weights:[400],url:"Aldrich:400"},{id:"alef",title:"Alef",family:"Alef, sans-serif",weights:[400,700],url:"Alef:400,700"},{id:"alegreya",title:"Alegreya",family:"Alegreya, serif",weights:[400,500,700,800,900],url:"Alegreya:400,400i,500,500i,700,700i,800,800i,900,900i"},{id:"alegreya_sc",title:"Alegreya SC",family:"Alegreya SC, serif",weights:[400,500,700,800,900],url:"Alegreya+SC:400,400i,500,500i,700,700i,800,800i,900,900i"},{id:"alegreya_sans",title:"Alegreya Sans",family:"Alegreya Sans, sans-serif",weights:[100,300,400,500,700,800,900],url:"Alegreya+Sans:100,100i,300,300i,400,400i,500,500i,700,700i,800,800i,900,900i"},{id:"alegreya_sans_sc",title:"Alegreya Sans SC",family:"Alegreya Sans SC, sans-serif",weights:[100,300,400,500,700,800,900],url:"Alegreya+Sans+SC:100,100i,300,300i,400,400i,500,500i,700,700i,800,800i,900,900i"},{id:"alex_brush",title:"Alex Brush",family:"Alex Brush, handwriting",weights:[400],url:"Alex+Brush:400"},{id:"alfa_slab_one",title:"Alfa Slab One",family:"Alfa Slab One, display",weights:[400],url:"Alfa+Slab+One:400"},{id:"alice",title:"Alice",family:"Alice, serif",weights:[400],url:"Alice:400"},{id:"alike",title:"Alike",family:"Alike, serif",weights:[400],url:"Alike:400"},{id:"alike_angular",title:"Alike Angular",family:"Alike Angular, serif",weights:[400],url:"Alike+Angular:400"},{id:"allan",title:"Allan",family:"Allan, display",weights:[400,700],url:"Allan:400,700"},{id:"allerta",title:"Allerta",family:"Allerta, sans-serif",weights:[400],url:"Allerta:400"},{id:"allerta_stencil",title:"Allerta Stencil",family:"Allerta Stencil, sans-serif",weights:[400],url:"Allerta+Stencil:400"},{id:"allura",title:"Allura",family:"Allura, handwriting",weights:[400],url:"Allura:400"},{id:"almendra",title:"Almendra",family:"Almendra, serif",weights:[400,700],url:"Almendra:400,400i,700,700i"},{id:"almendra_display",title:"Almendra Display",family:"Almendra Display, display",weights:[400],url:"Almendra+Display:400"},{id:"almendra_sc",title:"Almendra SC",family:"Almendra SC, serif",weights:[400],url:"Almendra+SC:400"},{id:"amarante",title:"Amarante",family:"Amarante, display",weights:[400],url:"Amarante:400"},{id:"amaranth",title:"Amaranth",family:"Amaranth, sans-serif",weights:[400,700],url:"Amaranth:400,400i,700,700i"},{id:"amatic_sc",title:"Amatic SC",family:"Amatic SC, handwriting",weights:[400,700],url:"Amatic+SC:400,700"},{id:"amethysta",title:"Amethysta",family:"Amethysta, serif",weights:[400],url:"Amethysta:400"},{id:"amiko",title:"Amiko",family:"Amiko, sans-serif",weights:[400,600,700],url:"Amiko:400,600,700"},{id:"amiri",title:"Amiri",family:"Amiri, serif",weights:[400,700],url:"Amiri:400,400i,700,700i"},{id:"amita",title:"Amita",family:"Amita, handwriting",weights:[400,700],url:"Amita:400,700"},{id:"anaheim",title:"Anaheim",family:"Anaheim, sans-serif",weights:[400],url:"Anaheim:400"},{id:"andada",title:"Andada",family:"Andada, serif",weights:[400],url:"Andada:400"},{id:"andika",title:"Andika",family:"Andika, sans-serif",weights:[400],url:"Andika:400"},{id:"angkor",title:"Angkor",family:"Angkor, display",weights:[400],url:"Angkor:400"},{id:"annie_use_your_telescope",title:"Annie Use Your Telescope",family:"Annie Use Your Telescope, handwriting",weights:[400],url:"Annie+Use+Your+Telescope:400"},{id:"anonymous_pro",title:"Anonymous Pro",family:"Anonymous Pro, monospace",weights:[400,700],url:"Anonymous+Pro:400,400i,700,700i"},{id:"antic",title:"Antic",family:"Antic, sans-serif",weights:[400],url:"Antic:400"},{id:"antic_didone",title:"Antic Didone",family:"Antic Didone, serif",weights:[400],url:"Antic+Didone:400"},{id:"antic_slab",title:"Antic Slab",family:"Antic Slab, serif",weights:[400],url:"Antic+Slab:400"},{id:"anton",title:"Anton",family:"Anton, sans-serif",weights:[400],url:"Anton:400"},{id:"arapey",title:"Arapey",family:"Arapey, serif",weights:[400],url:"Arapey:400,400i"},{id:"arbutus",title:"Arbutus",family:"Arbutus, display",weights:[400],url:"Arbutus:400"},{id:"arbutus_slab",title:"Arbutus Slab",family:"Arbutus Slab, serif",weights:[400],url:"Arbutus+Slab:400"},{id:"architects_daughter",title:"Architects Daughter",family:"Architects Daughter, handwriting",weights:[400],url:"Architects+Daughter:400"},{id:"archivo",title:"Archivo",family:"Archivo, sans-serif",weights:[400,500,600,700],url:"Archivo:400,400i,500,500i,600,600i,700,700i"},{id:"archivo_black",title:"Archivo Black",family:"Archivo Black, sans-serif",weights:[400],url:"Archivo+Black:400"},{id:"archivo_narrow",title:"Archivo Narrow",family:"Archivo Narrow, sans-serif",weights:[400,500,600,700],url:"Archivo+Narrow:400,400i,500,500i,600,600i,700,700i"},{id:"aref_ruqaa",title:"Aref Ruqaa",family:"Aref Ruqaa, serif",weights:[400,700],url:"Aref+Ruqaa:400,700"},{id:"arima_madurai",title:"Arima Madurai",family:"Arima Madurai, display",weights:[100,200,300,400,500,700,800,900],url:"Arima+Madurai:100,200,300,400,500,700,800,900"},{id:"arimo",title:"Arimo",family:"Arimo, sans-serif",weights:[400,700],url:"Arimo:400,400i,700,700i"},{id:"arizonia",title:"Arizonia",family:"Arizonia, handwriting",weights:[400],url:"Arizonia:400"},{id:"armata",title:"Armata",family:"Armata, sans-serif",weights:[400],url:"Armata:400"},{id:"arsenal",title:"Arsenal",family:"Arsenal, sans-serif",weights:[400,700],url:"Arsenal:400,400i,700,700i"},{id:"artifika",title:"Artifika",family:"Artifika, serif",weights:[400],url:"Artifika:400"},{id:"arvo",title:"Arvo",family:"Arvo, serif",weights:[400,700],url:"Arvo:400,400i,700,700i"},{id:"arya",title:"Arya",family:"Arya, sans-serif",weights:[400,700],url:"Arya:400,700"},{id:"asap",title:"Asap",family:"Asap, sans-serif",weights:[400,500,600,700],url:"Asap:400,400i,500,500i,600,600i,700,700i"},{id:"asap_condensed",title:"Asap Condensed",family:"Asap Condensed, sans-serif",weights:[400,500,600,700],url:"Asap+Condensed:400,400i,500,500i,600,600i,700,700i"},{id:"asar",title:"Asar",family:"Asar, serif",weights:[400],url:"Asar:400"},{id:"asset",title:"Asset",family:"Asset, display",weights:[400],url:"Asset:400"},{id:"assistant",title:"Assistant",family:"Assistant, sans-serif",weights:[200,300,400,600,700,800],url:"Assistant:200,300,400,600,700,800"},{id:"astloch",title:"Astloch",family:"Astloch, display",weights:[400,700],url:"Astloch:400,700"},{id:"asul",title:"Asul",family:"Asul, sans-serif",weights:[400,700],url:"Asul:400,700"},{id:"athiti",title:"Athiti",family:"Athiti, sans-serif",weights:[200,300,400,500,600,700],url:"Athiti:200,300,400,500,600,700"},{id:"atma",title:"Atma",family:"Atma, display",weights:[300,400,500,600,700],url:"Atma:300,400,500,600,700"},{id:"atomic_age",title:"Atomic Age",family:"Atomic Age, display",weights:[400],url:"Atomic+Age:400"},{id:"aubrey",title:"Aubrey",family:"Aubrey, display",weights:[400],url:"Aubrey:400"},{id:"audiowide",title:"Audiowide",family:"Audiowide, display",weights:[400],url:"Audiowide:400"},{id:"autour_one",title:"Autour One",family:"Autour One, display",weights:[400],url:"Autour+One:400"},{id:"average",title:"Average",family:"Average, serif",weights:[400],url:"Average:400"},{id:"average_sans",title:"Average Sans",family:"Average Sans, sans-serif",weights:[400],url:"Average+Sans:400"},{id:"averia_gruesa_libre",title:"Averia Gruesa Libre",family:"Averia Gruesa Libre, display",weights:[400],url:"Averia+Gruesa+Libre:400"},{id:"averia_libre",title:"Averia Libre",family:"Averia Libre, display",weights:[300,400,700],url:"Averia+Libre:300,300i,400,400i,700,700i"},{id:"averia_sans_libre",title:"Averia Sans Libre",family:"Averia Sans Libre, display",weights:[300,400,700],url:"Averia+Sans+Libre:300,300i,400,400i,700,700i"},{id:"averia_serif_libre",title:"Averia Serif Libre",family:"Averia Serif Libre, display",weights:[300,400,700],url:"Averia+Serif+Libre:300,300i,400,400i,700,700i"},{id:"bad_script",title:"Bad Script",family:"Bad Script, handwriting",weights:[400],url:"Bad+Script:400"},{id:"bahiana",title:"Bahiana",family:"Bahiana, display",weights:[400],url:"Bahiana:400"},{id:"baloo",title:"Baloo",family:"Baloo, display",weights:[400],url:"Baloo:400"},{id:"baloo_bhai",title:"Baloo Bhai",family:"Baloo Bhai, display",weights:[400],url:"Baloo+Bhai:400"},{id:"baloo_bhaijaan",title:"Baloo Bhaijaan",family:"Baloo Bhaijaan, display",weights:[400],url:"Baloo+Bhaijaan:400"},{id:"baloo_bhaina",title:"Baloo Bhaina",family:"Baloo Bhaina, display",weights:[400],url:"Baloo+Bhaina:400"},{id:"baloo_chettan",title:"Baloo Chettan",family:"Baloo Chettan, display",weights:[400],url:"Baloo+Chettan:400"},{id:"baloo_da",title:"Baloo Da",family:"Baloo Da, display",weights:[400],url:"Baloo+Da:400"},{id:"baloo_paaji",title:"Baloo Paaji",family:"Baloo Paaji, display",weights:[400],url:"Baloo+Paaji:400"},{id:"baloo_tamma",title:"Baloo Tamma",family:"Baloo Tamma, display",weights:[400],url:"Baloo+Tamma:400"},{id:"baloo_tammudu",title:"Baloo Tammudu",family:"Baloo Tammudu, display",weights:[400],url:"Baloo+Tammudu:400"},{id:"baloo_thambi",title:"Baloo Thambi",family:"Baloo Thambi, display",weights:[400],url:"Baloo+Thambi:400"},{id:"balthazar",title:"Balthazar",family:"Balthazar, serif",weights:[400],url:"Balthazar:400"},{id:"bangers",title:"Bangers",family:"Bangers, display",weights:[400],url:"Bangers:400"},{id:"barlow",title:"Barlow",family:"Barlow, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"barlow_condensed",title:"Barlow Condensed",family:"Barlow Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Barlow+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"barlow_semi_condensed",title:"Barlow Semi Condensed",family:"Barlow Semi Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Barlow+Semi+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"barrio",title:"Barrio",family:"Barrio, display",weights:[400],url:"Barrio:400"},{id:"basic",title:"Basic",family:"Basic, sans-serif",weights:[400],url:"Basic:400"},{id:"battambang",title:"Battambang",family:"Battambang, display",weights:[400,700],url:"Battambang:400,700"},{id:"baumans",title:"Baumans",family:"Baumans, display",weights:[400],url:"Baumans:400"},{id:"bayon",title:"Bayon",family:"Bayon, display",weights:[400],url:"Bayon:400"},{id:"belgrano",title:"Belgrano",family:"Belgrano, serif",weights:[400],url:"Belgrano:400"},{id:"bellefair",title:"Bellefair",family:"Bellefair, serif",weights:[400],url:"Bellefair:400"},{id:"belleza",title:"Belleza",family:"Belleza, sans-serif",weights:[400],url:"Belleza:400"},{id:"benchnine",title:"BenchNine",family:"BenchNine, sans-serif",weights:[300,400,700],url:"BenchNine:300,400,700"},{id:"bentham",title:"Bentham",family:"Bentham, serif",weights:[400],url:"Bentham:400"},{id:"berkshire_swash",title:"Berkshire Swash",family:"Berkshire Swash, handwriting",weights:[400],url:"Berkshire+Swash:400"},{id:"bevan",title:"Bevan",family:"Bevan, display",weights:[400],url:"Bevan:400"},{id:"bigelow_rules",title:"Bigelow Rules",family:"Bigelow Rules, display",weights:[400],url:"Bigelow+Rules:400"},{id:"bigshot_one",title:"Bigshot One",family:"Bigshot One, display",weights:[400],url:"Bigshot+One:400"},{id:"bilbo",title:"Bilbo",family:"Bilbo, handwriting",weights:[400],url:"Bilbo:400"},{id:"bilbo_swash_caps",title:"Bilbo Swash Caps",family:"Bilbo Swash Caps, handwriting",weights:[400],url:"Bilbo+Swash+Caps:400"},{id:"biorhyme",title:"BioRhyme",family:"BioRhyme, serif",weights:[200,300,400,700,800],url:"BioRhyme:200,300,400,700,800"},{id:"biorhyme_expanded",title:"BioRhyme Expanded",family:"BioRhyme Expanded, serif",weights:[200,300,400,700,800],url:"BioRhyme+Expanded:200,300,400,700,800"},{id:"biryani",title:"Biryani",family:"Biryani, sans-serif",weights:[200,300,400,600,700,800,900],url:"Biryani:200,300,400,600,700,800,900"},{id:"bitter",title:"Bitter",family:"Bitter, serif",weights:[400,700],url:"Bitter:400,400i,700"},{id:"black_ops_one",title:"Black Ops One",family:"Black Ops One, display",weights:[400],url:"Black+Ops+One:400"},{id:"bokor",title:"Bokor",family:"Bokor, display",weights:[400],url:"Bokor:400"},{id:"bonbon",title:"Bonbon",family:"Bonbon, handwriting",weights:[400],url:"Bonbon:400"},{id:"boogaloo",title:"Boogaloo",family:"Boogaloo, display",weights:[400],url:"Boogaloo:400"},{id:"bowlby_one",title:"Bowlby One",family:"Bowlby One, display",weights:[400],url:"Bowlby+One:400"},{id:"bowlby_one_sc",title:"Bowlby One SC",family:"Bowlby One SC, display",weights:[400],url:"Bowlby+One+SC:400"},{id:"brawler",title:"Brawler",family:"Brawler, serif",weights:[400],url:"Brawler:400"},{id:"bree_serif",title:"Bree Serif",family:"Bree Serif, serif",weights:[400],url:"Bree+Serif:400"},{id:"bubblegum_sans",title:"Bubblegum Sans",family:"Bubblegum Sans, display",weights:[400],url:"Bubblegum+Sans:400"},{id:"bubbler_one",title:"Bubbler One",family:"Bubbler One, sans-serif",weights:[400],url:"Bubbler+One:400"},{id:"buda",title:"Buda",family:"Buda, display",weights:[300],url:"Buda:300"},{id:"buenard",title:"Buenard",family:"Buenard, serif",weights:[400,700],url:"Buenard:400,700"},{id:"bungee",title:"Bungee",family:"Bungee, display",weights:[400],url:"Bungee:400"},{id:"bungee_hairline",title:"Bungee Hairline",family:"Bungee Hairline, display",weights:[400],url:"Bungee+Hairline:400"},{id:"bungee_inline",title:"Bungee Inline",family:"Bungee Inline, display",weights:[400],url:"Bungee+Inline:400"},{id:"bungee_outline",title:"Bungee Outline",family:"Bungee Outline, display",weights:[400],url:"Bungee+Outline:400"},{id:"bungee_shade",title:"Bungee Shade",family:"Bungee Shade, display",weights:[400],url:"Bungee+Shade:400"},{id:"butcherman",title:"Butcherman",family:"Butcherman, display",weights:[400],url:"Butcherman:400"},{id:"butterfly_kids",title:"Butterfly Kids",family:"Butterfly Kids, handwriting",weights:[400],url:"Butterfly+Kids:400"},{id:"cabin",title:"Cabin",family:"Cabin, sans-serif",weights:[400,500,600,700],url:"Cabin:400,400i,500,500i,600,600i,700,700i"},{id:"cabin_condensed",title:"Cabin Condensed",family:"Cabin Condensed, sans-serif",weights:[400,500,600,700],url:"Cabin+Condensed:400,500,600,700"},{id:"cabin_sketch",title:"Cabin Sketch",family:"Cabin Sketch, display",weights:[400,700],url:"Cabin+Sketch:400,700"},{id:"caesar_dressing",title:"Caesar Dressing",family:"Caesar Dressing, display",weights:[400],url:"Caesar+Dressing:400"},{id:"cagliostro",title:"Cagliostro",family:"Cagliostro, sans-serif",weights:[400],url:"Cagliostro:400"},{id:"cairo",title:"Cairo",family:"Cairo, sans-serif",weights:[200,300,400,600,700,900],url:"Cairo:200,300,400,600,700,900"},{id:"calligraffitti",title:"Calligraffitti",family:"Calligraffitti, handwriting",weights:[400],url:"Calligraffitti:400"},{id:"cambay",title:"Cambay",family:"Cambay, sans-serif",weights:[400,700],url:"Cambay:400,400i,700,700i"},{id:"cambo",title:"Cambo",family:"Cambo, serif",weights:[400],url:"Cambo:400"},{id:"candal",title:"Candal",family:"Candal, sans-serif",weights:[400],url:"Candal:400"},{id:"cantarell",title:"Cantarell",family:"Cantarell, sans-serif",weights:[400,700],url:"Cantarell:400,400i,700,700i"},{id:"cantata_one",title:"Cantata One",family:"Cantata One, serif",weights:[400],url:"Cantata+One:400"},{id:"cantora_one",title:"Cantora One",family:"Cantora One, sans-serif",weights:[400],url:"Cantora+One:400"},{id:"capriola",title:"Capriola",family:"Capriola, sans-serif",weights:[400],url:"Capriola:400"},{id:"cardo",title:"Cardo",family:"Cardo, serif",weights:[400,700],url:"Cardo:400,400i,700"},{id:"carme",title:"Carme",family:"Carme, sans-serif",weights:[400],url:"Carme:400"},{id:"carrois_gothic",title:"Carrois Gothic",family:"Carrois Gothic, sans-serif",weights:[400],url:"Carrois+Gothic:400"},{id:"carrois_gothic_sc",title:"Carrois Gothic SC",family:"Carrois Gothic SC, sans-serif",weights:[400],url:"Carrois+Gothic+SC:400"},{id:"carter_one",title:"Carter One",family:"Carter One, display",weights:[400],url:"Carter+One:400"},{id:"catamaran",title:"Catamaran",family:"Catamaran, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Catamaran:100,200,300,400,500,600,700,800,900"},{id:"caudex",title:"Caudex",family:"Caudex, serif",weights:[400,700],url:"Caudex:400,400i,700,700i"},{id:"caveat",title:"Caveat",family:"Caveat, handwriting",weights:[400,700],url:"Caveat:400,700"},{id:"caveat_brush",title:"Caveat Brush",family:"Caveat Brush, handwriting",weights:[400],url:"Caveat+Brush:400"},{id:"cedarville_cursive",title:"Cedarville Cursive",family:"Cedarville Cursive, handwriting",weights:[400],url:"Cedarville+Cursive:400"},{id:"ceviche_one",title:"Ceviche One",family:"Ceviche One, display",weights:[400],url:"Ceviche+One:400"},{id:"changa",title:"Changa",family:"Changa, sans-serif",weights:[200,300,400,500,600,700,800],url:"Changa:200,300,400,500,600,700,800"},{id:"changa_one",title:"Changa One",family:"Changa One, display",weights:[400],url:"Changa+One:400,400i"},{id:"chango",title:"Chango",family:"Chango, display",weights:[400],url:"Chango:400"},{id:"chathura",title:"Chathura",family:"Chathura, sans-serif",weights:[100,300,400,700,800],url:"Chathura:100,300,400,700,800"},{id:"chau_philomene_one",title:"Chau Philomene One",family:"Chau Philomene One, sans-serif",weights:[400],url:"Chau+Philomene+One:400,400i"},{id:"chela_one",title:"Chela One",family:"Chela One, display",weights:[400],url:"Chela+One:400"},{id:"chelsea_market",title:"Chelsea Market",family:"Chelsea Market, display",weights:[400],url:"Chelsea+Market:400"},{id:"chenla",title:"Chenla",family:"Chenla, display",weights:[400],url:"Chenla:400"},{id:"cherry_cream_soda",title:"Cherry Cream Soda",family:"Cherry Cream Soda, display",weights:[400],url:"Cherry+Cream+Soda:400"},{id:"cherry_swash",title:"Cherry Swash",family:"Cherry Swash, display",weights:[400,700],url:"Cherry+Swash:400,700"},{id:"chewy",title:"Chewy",family:"Chewy, display",weights:[400],url:"Chewy:400"},{id:"chicle",title:"Chicle",family:"Chicle, display",weights:[400],url:"Chicle:400"},{id:"chivo",title:"Chivo",family:"Chivo, sans-serif",weights:[300,400,700,900],url:"Chivo:300,300i,400,400i,700,700i,900,900i"},{id:"chonburi",title:"Chonburi",family:"Chonburi, display",weights:[400],url:"Chonburi:400"},{id:"cinzel",title:"Cinzel",family:"Cinzel, serif",weights:[400,700,900],url:"Cinzel:400,700,900"},{id:"cinzel_decorative",title:"Cinzel Decorative",family:"Cinzel Decorative, display",weights:[400,700,900],url:"Cinzel+Decorative:400,700,900"},{id:"clicker_script",title:"Clicker Script",family:"Clicker Script, handwriting",weights:[400],url:"Clicker+Script:400"},{id:"coda",title:"Coda",family:"Coda, display",weights:[400,800],url:"Coda:400,800"},{id:"coda_caption",title:"Coda Caption",family:"Coda Caption, sans-serif",weights:[800],url:"Coda+Caption:800"},{id:"codystar",title:"Codystar",family:"Codystar, display",weights:[300,400],url:"Codystar:300,400"},{id:"coiny",title:"Coiny",family:"Coiny, display",weights:[400],url:"Coiny:400"},{id:"combo",title:"Combo",family:"Combo, display",weights:[400],url:"Combo:400"},{id:"comfortaa",title:"Comfortaa",family:"Comfortaa, display",weights:[300,400,700],url:"Comfortaa:300,400,700"},{id:"coming_soon",title:"Coming Soon",family:"Coming Soon, handwriting",weights:[400],url:"Coming+Soon:400"},{id:"concert_one",title:"Concert One",family:"Concert One, display",weights:[400],url:"Concert+One:400"},{id:"condiment",title:"Condiment",family:"Condiment, handwriting",weights:[400],url:"Condiment:400"},{id:"content",title:"Content",family:"Content, display",weights:[400,700],url:"Content:400,700"},{id:"contrail_one",title:"Contrail One",family:"Contrail One, display",weights:[400],url:"Contrail+One:400"},{id:"convergence",title:"Convergence",family:"Convergence, sans-serif",weights:[400],url:"Convergence:400"},{id:"cookie",title:"Cookie",family:"Cookie, handwriting",weights:[400],url:"Cookie:400"},{id:"copse",title:"Copse",family:"Copse, serif",weights:[400],url:"Copse:400"},{id:"corben",title:"Corben",family:"Corben, display",weights:[400,700],url:"Corben:400,700"},{id:"cormorant",title:"Cormorant",family:"Cormorant, serif",weights:[300,400,500,600,700],url:"Cormorant:300,300i,400,400i,500,500i,600,600i,700,700i"},{id:"cormorant_garamond",title:"Cormorant Garamond",family:"Cormorant Garamond, serif",weights:[300,400,500,600,700],url:"Cormorant+Garamond:300,300i,400,400i,500,500i,600,600i,700,700i"},{id:"cormorant_infant",title:"Cormorant Infant",family:"Cormorant Infant, serif",weights:[300,400,500,600,700],url:"Cormorant+Infant:300,300i,400,400i,500,500i,600,600i,700,700i"},{id:"cormorant_sc",title:"Cormorant SC",family:"Cormorant SC, serif",weights:[300,400,500,600,700],url:"Cormorant+SC:300,400,500,600,700"},{id:"cormorant_unicase",title:"Cormorant Unicase",family:"Cormorant Unicase, serif",weights:[300,400,500,600,700],url:"Cormorant+Unicase:300,400,500,600,700"},{id:"cormorant_upright",title:"Cormorant Upright",family:"Cormorant Upright, serif",weights:[300,400,500,600,700],url:"Cormorant+Upright:300,400,500,600,700"},{id:"courgette",title:"Courgette",family:"Courgette, handwriting",weights:[400],url:"Courgette:400"},{id:"cousine",title:"Cousine",family:"Cousine, monospace",weights:[400,700],url:"Cousine:400,400i,700,700i"},{id:"coustard",title:"Coustard",family:"Coustard, serif",weights:[400,900],url:"Coustard:400,900"},{id:"covered_by_your_grace",title:"Covered By Your Grace",family:"Covered By Your Grace, handwriting",weights:[400],url:"Covered+By+Your+Grace:400"},{id:"crafty_girls",title:"Crafty Girls",family:"Crafty Girls, handwriting",weights:[400],url:"Crafty+Girls:400"},{id:"creepster",title:"Creepster",family:"Creepster, display",weights:[400],url:"Creepster:400"},{id:"crete_round",title:"Crete Round",family:"Crete Round, serif",weights:[400],url:"Crete+Round:400,400i"},{id:"crimson_text",title:"Crimson Text",family:"Crimson Text, serif",weights:[400,600,700],url:"Crimson+Text:400,400i,600,600i,700,700i"},{id:"croissant_one",title:"Croissant One",family:"Croissant One, display",weights:[400],url:"Croissant+One:400"},{id:"crushed",title:"Crushed",family:"Crushed, display",weights:[400],url:"Crushed:400"},{id:"cuprum",title:"Cuprum",family:"Cuprum, sans-serif",weights:[400,700],url:"Cuprum:400,400i,700,700i"},{id:"cutive",title:"Cutive",family:"Cutive, serif",weights:[400],url:"Cutive:400"},{id:"cutive_mono",title:"Cutive Mono",family:"Cutive Mono, monospace",weights:[400],url:"Cutive+Mono:400"},{id:"damion",title:"Damion",family:"Damion, handwriting",weights:[400],url:"Damion:400"},{id:"dancing_script",title:"Dancing Script",family:"Dancing Script, handwriting",weights:[400,700],url:"Dancing+Script:400,700"},{id:"dangrek",title:"Dangrek",family:"Dangrek, display",weights:[400],url:"Dangrek:400"},{id:"david_libre",title:"David Libre",family:"David Libre, serif",weights:[400,500,700],url:"David+Libre:400,500,700"},{id:"dawning_of_a_new_day",title:"Dawning of a New Day",family:"Dawning of a New Day, handwriting",weights:[400],url:"Dawning+of+a+New+Day:400"},{id:"days_one",title:"Days One",family:"Days One, sans-serif",weights:[400],url:"Days+One:400"},{id:"dekko",title:"Dekko",family:"Dekko, handwriting",weights:[400],url:"Dekko:400"},{id:"delius",title:"Delius",family:"Delius, handwriting",weights:[400],url:"Delius:400"},{id:"delius_swash_caps",title:"Delius Swash Caps",family:"Delius Swash Caps, handwriting",weights:[400],url:"Delius+Swash+Caps:400"},{id:"delius_unicase",title:"Delius Unicase",family:"Delius Unicase, handwriting",weights:[400,700],url:"Delius+Unicase:400,700"},{id:"della_respira",title:"Della Respira",family:"Della Respira, serif",weights:[400],url:"Della+Respira:400"},{id:"denk_one",title:"Denk One",family:"Denk One, sans-serif",weights:[400],url:"Denk+One:400"},{id:"devonshire",title:"Devonshire",family:"Devonshire, handwriting",weights:[400],url:"Devonshire:400"},{id:"dhurjati",title:"Dhurjati",family:"Dhurjati, sans-serif",weights:[400],url:"Dhurjati:400"},{id:"didact_gothic",title:"Didact Gothic",family:"Didact Gothic, sans-serif",weights:[400],url:"Didact+Gothic:400"},{id:"diplomata",title:"Diplomata",family:"Diplomata, display",weights:[400],url:"Diplomata:400"},{id:"diplomata_sc",title:"Diplomata SC",family:"Diplomata SC, display",weights:[400],url:"Diplomata+SC:400"},{id:"domine",title:"Domine",family:"Domine, serif",weights:[400,700],url:"Domine:400,700"},{id:"donegal_one",title:"Donegal One",family:"Donegal One, serif",weights:[400],url:"Donegal+One:400"},{id:"doppio_one",title:"Doppio One",family:"Doppio One, sans-serif",weights:[400],url:"Doppio+One:400"},{id:"dorsa",title:"Dorsa",family:"Dorsa, sans-serif",weights:[400],url:"Dorsa:400"},{id:"dosis",title:"Dosis",family:"Dosis, sans-serif",weights:[200,300,400,500,600,700,800],url:"Dosis:200,300,400,500,600,700,800"},{id:"dr_sugiyama",title:"Dr Sugiyama",family:"Dr Sugiyama, handwriting",weights:[400],url:"Dr+Sugiyama:400"},{id:"duru_sans",title:"Duru Sans",family:"Duru Sans, sans-serif",weights:[400],url:"Duru+Sans:400"},{id:"dynalight",title:"Dynalight",family:"Dynalight, display",weights:[400],url:"Dynalight:400"},{id:"eb_garamond",title:"EB Garamond",family:"EB Garamond, serif",weights:[400,500,600,700,800],url:"EB+Garamond:400,400i,500,500i,600,600i,700,700i,800,800i"},{id:"eagle_lake",title:"Eagle Lake",family:"Eagle Lake, handwriting",weights:[400],url:"Eagle+Lake:400"},{id:"eater",title:"Eater",family:"Eater, display",weights:[400],url:"Eater:400"},{id:"economica",title:"Economica",family:"Economica, sans-serif",weights:[400,700],url:"Economica:400,400i,700,700i"},{id:"eczar",title:"Eczar",family:"Eczar, serif",weights:[400,500,600,700,800],url:"Eczar:400,500,600,700,800"},{id:"el_messiri",title:"El Messiri",family:"El Messiri, sans-serif",weights:[400,500,600,700],url:"El+Messiri:400,500,600,700"},{id:"electrolize",title:"Electrolize",family:"Electrolize, sans-serif",weights:[400],url:"Electrolize:400"},{id:"elsie",title:"Elsie",family:"Elsie, display",weights:[400,900],url:"Elsie:400,900"},{id:"elsie_swash_caps",title:"Elsie Swash Caps",family:"Elsie Swash Caps, display",weights:[400,900],url:"Elsie+Swash+Caps:400,900"},{id:"emblema_one",title:"Emblema One",family:"Emblema One, display",weights:[400],url:"Emblema+One:400"},{id:"emilys_candy",title:"Emilys Candy",family:"Emilys Candy, display",weights:[400],url:"Emilys+Candy:400"},{id:"encode_sans",title:"Encode Sans",family:"Encode Sans, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Encode+Sans:100,200,300,400,500,600,700,800,900"},{id:"encode_sans_condensed",title:"Encode Sans Condensed",family:"Encode Sans Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Encode+Sans+Condensed:100,200,300,400,500,600,700,800,900"},{id:"encode_sans_expanded",title:"Encode Sans Expanded",family:"Encode Sans Expanded, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Encode+Sans+Expanded:100,200,300,400,500,600,700,800,900"},{id:"encode_sans_semi_condensed",title:"Encode Sans Semi Condensed",family:"Encode Sans Semi Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Encode+Sans+Semi+Condensed:100,200,300,400,500,600,700,800,900"},{id:"encode_sans_semi_expanded",title:"Encode Sans Semi Expanded",family:"Encode Sans Semi Expanded, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Encode+Sans+Semi+Expanded:100,200,300,400,500,600,700,800,900"},{id:"engagement",title:"Engagement",family:"Engagement, handwriting",weights:[400],url:"Engagement:400"},{id:"englebert",title:"Englebert",family:"Englebert, sans-serif",weights:[400],url:"Englebert:400"},{id:"enriqueta",title:"Enriqueta",family:"Enriqueta, serif",weights:[400,700],url:"Enriqueta:400,700"},{id:"erica_one",title:"Erica One",family:"Erica One, display",weights:[400],url:"Erica+One:400"},{id:"esteban",title:"Esteban",family:"Esteban, serif",weights:[400],url:"Esteban:400"},{id:"euphoria_script",title:"Euphoria Script",family:"Euphoria Script, handwriting",weights:[400],url:"Euphoria+Script:400"},{id:"ewert",title:"Ewert",family:"Ewert, display",weights:[400],url:"Ewert:400"},{id:"exo",title:"Exo",family:"Exo, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Exo:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"exo_2",title:"Exo 2",family:"Exo 2, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Exo+2:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"expletus_sans",title:"Expletus Sans",family:"Expletus Sans, display",weights:[400,500,600,700],url:"Expletus+Sans:400,400i,500,500i,600,600i,700,700i"},{id:"fanwood_text",title:"Fanwood Text",family:"Fanwood Text, serif",weights:[400],url:"Fanwood+Text:400,400i"},{id:"farsan",title:"Farsan",family:"Farsan, display",weights:[400],url:"Farsan:400"},{id:"fascinate",title:"Fascinate",family:"Fascinate, display",weights:[400],url:"Fascinate:400"},{id:"fascinate_inline",title:"Fascinate Inline",family:"Fascinate Inline, display",weights:[400],url:"Fascinate+Inline:400"},{id:"faster_one",title:"Faster One",family:"Faster One, display",weights:[400],url:"Faster+One:400"},{id:"fasthand",title:"Fasthand",family:"Fasthand, serif",weights:[400],url:"Fasthand:400"},{id:"fauna_one",title:"Fauna One",family:"Fauna One, serif",weights:[400],url:"Fauna+One:400"},{id:"faustina",title:"Faustina",family:"Faustina, serif",weights:[400,500,600,700],url:"Faustina:400,400i,500,500i,600,600i,700,700i"},{id:"federant",title:"Federant",family:"Federant, display",weights:[400],url:"Federant:400"},{id:"federo",title:"Federo",family:"Federo, sans-serif",weights:[400],url:"Federo:400"},{id:"felipa",title:"Felipa",family:"Felipa, handwriting",weights:[400],url:"Felipa:400"},{id:"fenix",title:"Fenix",family:"Fenix, serif",weights:[400],url:"Fenix:400"},{id:"finger_paint",title:"Finger Paint",family:"Finger Paint, display",weights:[400],url:"Finger+Paint:400"},{id:"fira_mono",title:"Fira Mono",family:"Fira Mono, monospace",weights:[400,500,700],url:"Fira+Mono:400,500,700"},{id:"fira_sans",title:"Fira Sans",family:"Fira Sans, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Fira+Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"fira_sans_condensed",title:"Fira Sans Condensed",family:"Fira Sans Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Fira+Sans+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"fira_sans_extra_condensed",title:"Fira Sans Extra Condensed",family:"Fira Sans Extra Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Fira+Sans+Extra+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"fjalla_one",title:"Fjalla One",family:"Fjalla One, sans-serif",weights:[400],url:"Fjalla+One:400"},{id:"fjord_one",title:"Fjord One",family:"Fjord One, serif",weights:[400],url:"Fjord+One:400"},{id:"flamenco",title:"Flamenco",family:"Flamenco, display",weights:[300,400],url:"Flamenco:300,400"},{id:"flavors",title:"Flavors",family:"Flavors, display",weights:[400],url:"Flavors:400"},{id:"fondamento",title:"Fondamento",family:"Fondamento, handwriting",weights:[400],url:"Fondamento:400,400i"},{id:"fontdiner_swanky",title:"Fontdiner Swanky",family:"Fontdiner Swanky, display",weights:[400],url:"Fontdiner+Swanky:400"},{id:"forum",title:"Forum",family:"Forum, display",weights:[400],url:"Forum:400"},{id:"francois_one",title:"Francois One",family:"Francois One, sans-serif",weights:[400],url:"Francois+One:400"},{id:"frank_ruhl_libre",title:"Frank Ruhl Libre",family:"Frank Ruhl Libre, serif",weights:[300,400,500,700,900],url:"Frank+Ruhl+Libre:300,400,500,700,900"},{id:"freckle_face",title:"Freckle Face",family:"Freckle Face, display",weights:[400],url:"Freckle+Face:400"},{id:"fredericka_the_great",title:"Fredericka the Great",family:"Fredericka the Great, display",weights:[400],url:"Fredericka+the+Great:400"},{id:"fredoka_one",title:"Fredoka One",family:"Fredoka One, display",weights:[400],url:"Fredoka+One:400"},{id:"freehand",title:"Freehand",family:"Freehand, display",weights:[400],url:"Freehand:400"},{id:"fresca",title:"Fresca",family:"Fresca, sans-serif",weights:[400],url:"Fresca:400"},{id:"frijole",title:"Frijole",family:"Frijole, display",weights:[400],url:"Frijole:400"},{id:"fruktur",title:"Fruktur",family:"Fruktur, display",weights:[400],url:"Fruktur:400"},{id:"fugaz_one",title:"Fugaz One",family:"Fugaz One, display",weights:[400],url:"Fugaz+One:400"},{id:"gfs_didot",title:"GFS Didot",family:"GFS Didot, serif",weights:[400],url:"GFS+Didot:400"},{id:"gfs_neohellenic",title:"GFS Neohellenic",family:"GFS Neohellenic, sans-serif",weights:[400,700],url:"GFS+Neohellenic:400,400i,700,700i"},{id:"gabriela",title:"Gabriela",family:"Gabriela, serif",weights:[400],url:"Gabriela:400"},{id:"gafata",title:"Gafata",family:"Gafata, sans-serif",weights:[400],url:"Gafata:400"},{id:"galada",title:"Galada",family:"Galada, display",weights:[400],url:"Galada:400"},{id:"galdeano",title:"Galdeano",family:"Galdeano, sans-serif",weights:[400],url:"Galdeano:400"},{id:"galindo",title:"Galindo",family:"Galindo, display",weights:[400],url:"Galindo:400"},{id:"gentium_basic",title:"Gentium Basic",family:"Gentium Basic, serif",weights:[400,700],url:"Gentium+Basic:400,400i,700,700i"},{id:"gentium_book_basic",title:"Gentium Book Basic",family:"Gentium Book Basic, serif",weights:[400,700],url:"Gentium+Book+Basic:400,400i,700,700i"},{id:"geo",title:"Geo",family:"Geo, sans-serif",weights:[400],url:"Geo:400,400i"},{id:"geostar",title:"Geostar",family:"Geostar, display",weights:[400],url:"Geostar:400"},{id:"geostar_fill",title:"Geostar Fill",family:"Geostar Fill, display",weights:[400],url:"Geostar+Fill:400"},{id:"germania_one",title:"Germania One",family:"Germania One, display",weights:[400],url:"Germania+One:400"},{id:"gidugu",title:"Gidugu",family:"Gidugu, sans-serif",weights:[400],url:"Gidugu:400"},{id:"gilda_display",title:"Gilda Display",family:"Gilda Display, serif",weights:[400],url:"Gilda+Display:400"},{id:"give_you_glory",title:"Give You Glory",family:"Give You Glory, handwriting",weights:[400],url:"Give+You+Glory:400"},{id:"glass_antiqua",title:"Glass Antiqua",family:"Glass Antiqua, display",weights:[400],url:"Glass+Antiqua:400"},{id:"glegoo",title:"Glegoo",family:"Glegoo, serif",weights:[400,700],url:"Glegoo:400,700"},{id:"gloria_hallelujah",title:"Gloria Hallelujah",family:"Gloria Hallelujah, handwriting",weights:[400],url:"Gloria+Hallelujah:400"},{id:"goblin_one",title:"Goblin One",family:"Goblin One, display",weights:[400],url:"Goblin+One:400"},{id:"gochi_hand",title:"Gochi Hand",family:"Gochi Hand, handwriting",weights:[400],url:"Gochi+Hand:400"},{id:"gorditas",title:"Gorditas",family:"Gorditas, display",weights:[400,700],url:"Gorditas:400,700"},{id:"goudy_bookletter_1911",title:"Goudy Bookletter 1911",family:"Goudy Bookletter 1911, serif",weights:[400],url:"Goudy+Bookletter+1911:400"},{id:"graduate",title:"Graduate",family:"Graduate, display",weights:[400],url:"Graduate:400"},{id:"grand_hotel",title:"Grand Hotel",family:"Grand Hotel, handwriting",weights:[400],url:"Grand+Hotel:400"},{id:"gravitas_one",title:"Gravitas One",family:"Gravitas One, display",weights:[400],url:"Gravitas+One:400"},{id:"great_vibes",title:"Great Vibes",family:"Great Vibes, handwriting",weights:[400],url:"Great+Vibes:400"},{id:"griffy",title:"Griffy",family:"Griffy, display",weights:[400],url:"Griffy:400"},{id:"gruppo",title:"Gruppo",family:"Gruppo, display",weights:[400],url:"Gruppo:400"},{id:"gudea",title:"Gudea",family:"Gudea, sans-serif",weights:[400,700],url:"Gudea:400,400i,700"},{id:"gurajada",title:"Gurajada",family:"Gurajada, serif",weights:[400],url:"Gurajada:400"},{id:"habibi",title:"Habibi",family:"Habibi, serif",weights:[400],url:"Habibi:400"},{id:"halant",title:"Halant",family:"Halant, serif",weights:[300,400,500,600,700],url:"Halant:300,400,500,600,700"},{id:"hammersmith_one",title:"Hammersmith One",family:"Hammersmith One, sans-serif",weights:[400],url:"Hammersmith+One:400"},{id:"hanalei",title:"Hanalei",family:"Hanalei, display",weights:[400],url:"Hanalei:400"},{id:"hanalei_fill",title:"Hanalei Fill",family:"Hanalei Fill, display",weights:[400],url:"Hanalei+Fill:400"},{id:"handlee",title:"Handlee",family:"Handlee, handwriting",weights:[400],url:"Handlee:400"},{id:"hanuman",title:"Hanuman",family:"Hanuman, serif",weights:[400,700],url:"Hanuman:400,700"},{id:"happy_monkey",title:"Happy Monkey",family:"Happy Monkey, display",weights:[400],url:"Happy+Monkey:400"},{id:"harmattan",title:"Harmattan",family:"Harmattan, sans-serif",weights:[400],url:"Harmattan:400"},{id:"headland_one",title:"Headland One",family:"Headland One, serif",weights:[400],url:"Headland+One:400"},{id:"heebo",title:"Heebo",family:"Heebo, sans-serif",weights:[100,300,400,500,700,800,900],url:"Heebo:100,300,400,500,700,800,900"},{id:"henny_penny",title:"Henny Penny",family:"Henny Penny, display",weights:[400],url:"Henny+Penny:400"},{id:"herr_von_muellerhoff",title:"Herr Von Muellerhoff",family:"Herr Von Muellerhoff, handwriting",weights:[400],url:"Herr+Von+Muellerhoff:400"},{id:"hind",title:"Hind",family:"Hind, sans-serif",weights:[300,400,500,600,700],url:"Hind:300,400,500,600,700"},{id:"hind_guntur",title:"Hind Guntur",family:"Hind Guntur, sans-serif",weights:[300,400,500,600,700],url:"Hind+Guntur:300,400,500,600,700"},{id:"hind_madurai",title:"Hind Madurai",family:"Hind Madurai, sans-serif",weights:[300,400,500,600,700],url:"Hind+Madurai:300,400,500,600,700"},{id:"hind_siliguri",title:"Hind Siliguri",family:"Hind Siliguri, sans-serif",weights:[300,400,500,600,700],url:"Hind+Siliguri:300,400,500,600,700"},{id:"hind_vadodara",title:"Hind Vadodara",family:"Hind Vadodara, sans-serif",weights:[300,400,500,600,700],url:"Hind+Vadodara:300,400,500,600,700"},{id:"holtwood_one_sc",title:"Holtwood One SC",family:"Holtwood One SC, serif",weights:[400],url:"Holtwood+One+SC:400"},{id:"homemade_apple",title:"Homemade Apple",family:"Homemade Apple, handwriting",weights:[400],url:"Homemade+Apple:400"},{id:"homenaje",title:"Homenaje",family:"Homenaje, sans-serif",weights:[400],url:"Homenaje:400"},{id:"im_fell_dw_pica",title:"IM Fell DW Pica",family:"IM Fell DW Pica, serif",weights:[400],url:"IM+Fell+DW+Pica:400,400i"},{id:"im_fell_dw_pica_sc",title:"IM Fell DW Pica SC",family:"IM Fell DW Pica SC, serif",weights:[400],url:"IM+Fell+DW+Pica+SC:400"},{id:"im_fell_double_pica",title:"IM Fell Double Pica",family:"IM Fell Double Pica, serif",weights:[400],url:"IM+Fell+Double+Pica:400,400i"},{id:"im_fell_double_pica_sc",title:"IM Fell Double Pica SC",family:"IM Fell Double Pica SC, serif",weights:[400],url:"IM+Fell+Double+Pica+SC:400"},{id:"im_fell_english",title:"IM Fell English",family:"IM Fell English, serif",weights:[400],url:"IM+Fell+English:400,400i"},{id:"im_fell_english_sc",title:"IM Fell English SC",family:"IM Fell English SC, serif",weights:[400],url:"IM+Fell+English+SC:400"},{id:"im_fell_french_canon",title:"IM Fell French Canon",family:"IM Fell French Canon, serif",weights:[400],url:"IM+Fell+French+Canon:400,400i"},{id:"im_fell_french_canon_sc",title:"IM Fell French Canon SC",family:"IM Fell French Canon SC, serif",weights:[400],url:"IM+Fell+French+Canon+SC:400"},{id:"im_fell_great_primer",title:"IM Fell Great Primer",family:"IM Fell Great Primer, serif",weights:[400],url:"IM+Fell+Great+Primer:400,400i"},{id:"im_fell_great_primer_sc",title:"IM Fell Great Primer SC",family:"IM Fell Great Primer SC, serif",weights:[400],url:"IM+Fell+Great+Primer+SC:400"},{id:"iceberg",title:"Iceberg",family:"Iceberg, display",weights:[400],url:"Iceberg:400"},{id:"iceland",title:"Iceland",family:"Iceland, display",weights:[400],url:"Iceland:400"},{id:"imprima",title:"Imprima",family:"Imprima, sans-serif",weights:[400],url:"Imprima:400"},{id:"inconsolata",title:"Inconsolata",family:"Inconsolata, monospace",weights:[400,700],url:"Inconsolata:400,700"},{id:"inder",title:"Inder",family:"Inder, sans-serif",weights:[400],url:"Inder:400"},{id:"indie_flower",title:"Indie Flower",family:"Indie Flower, handwriting",weights:[400],url:"Indie+Flower:400"},{id:"inika",title:"Inika",family:"Inika, serif",weights:[400,700],url:"Inika:400,700"},{id:"inknut_antiqua",title:"Inknut Antiqua",family:"Inknut Antiqua, serif",weights:[300,400,500,600,700,800,900],url:"Inknut+Antiqua:300,400,500,600,700,800,900"},{id:"irish_grover",title:"Irish Grover",family:"Irish Grover, display",weights:[400],url:"Irish+Grover:400"},{id:"istok_web",title:"Istok Web",family:"Istok Web, sans-serif",weights:[400,700],url:"Istok+Web:400,400i,700,700i"},{id:"italiana",title:"Italiana",family:"Italiana, serif",weights:[400],url:"Italiana:400"},{id:"italianno",title:"Italianno",family:"Italianno, handwriting",weights:[400],url:"Italianno:400"},{id:"itim",title:"Itim",family:"Itim, handwriting",weights:[400],url:"Itim:400"},{id:"jacques_francois",title:"Jacques Francois",family:"Jacques Francois, serif",weights:[400],url:"Jacques+Francois:400"},{id:"jacques_francois_shadow",title:"Jacques Francois Shadow",family:"Jacques Francois Shadow, display",weights:[400],url:"Jacques+Francois+Shadow:400"},{id:"jaldi",title:"Jaldi",family:"Jaldi, sans-serif",weights:[400,700],url:"Jaldi:400,700"},{id:"jim_nightshade",title:"Jim Nightshade",family:"Jim Nightshade, handwriting",weights:[400],url:"Jim+Nightshade:400"},{id:"jockey_one",title:"Jockey One",family:"Jockey One, sans-serif",weights:[400],url:"Jockey+One:400"},{id:"jolly_lodger",title:"Jolly Lodger",family:"Jolly Lodger, display",weights:[400],url:"Jolly+Lodger:400"},{id:"jomhuria",title:"Jomhuria",family:"Jomhuria, display",weights:[400],url:"Jomhuria:400"},{id:"josefin_sans",title:"Josefin Sans",family:"Josefin Sans, sans-serif",weights:[100,300,400,600,700],url:"Josefin+Sans:100,100i,300,300i,400,400i,600,600i,700,700i"},{id:"josefin_slab",title:"Josefin Slab",family:"Josefin Slab, serif",weights:[100,300,400,600,700],url:"Josefin+Slab:100,100i,300,300i,400,400i,600,600i,700,700i"},{id:"joti_one",title:"Joti One",family:"Joti One, display",weights:[400],url:"Joti+One:400"},{id:"judson",title:"Judson",family:"Judson, serif",weights:[400,700],url:"Judson:400,400i,700"},{id:"julee",title:"Julee",family:"Julee, handwriting",weights:[400],url:"Julee:400"},{id:"julius_sans_one",title:"Julius Sans One",family:"Julius Sans One, sans-serif",weights:[400],url:"Julius+Sans+One:400"},{id:"junge",title:"Junge",family:"Junge, serif",weights:[400],url:"Junge:400"},{id:"jura",title:"Jura",family:"Jura, sans-serif",weights:[300,400,500,600,700],url:"Jura:300,400,500,600,700"},{id:"just_another_hand",title:"Just Another Hand",family:"Just Another Hand, handwriting",weights:[400],url:"Just+Another+Hand:400"},{id:"just_me_again_down_here",title:"Just Me Again Down Here",family:"Just Me Again Down Here, handwriting",weights:[400],url:"Just+Me+Again+Down+Here:400"},{id:"kadwa",title:"Kadwa",family:"Kadwa, serif",weights:[400,700],url:"Kadwa:400,700"},{id:"kalam",title:"Kalam",family:"Kalam, handwriting",weights:[300,400,700],url:"Kalam:300,400,700"},{id:"kameron",title:"Kameron",family:"Kameron, serif",weights:[400,700],url:"Kameron:400,700"},{id:"kanit",title:"Kanit",family:"Kanit, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Kanit:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"kantumruy",title:"Kantumruy",family:"Kantumruy, sans-serif",weights:[300,400,700],url:"Kantumruy:300,400,700"},{id:"karla",title:"Karla",family:"Karla, sans-serif",weights:[400,700],url:"Karla:400,400i,700,700i"},{id:"karma",title:"Karma",family:"Karma, serif",weights:[300,400,500,600,700],url:"Karma:300,400,500,600,700"},{id:"katibeh",title:"Katibeh",family:"Katibeh, display",weights:[400],url:"Katibeh:400"},{id:"kaushan_script",title:"Kaushan Script",family:"Kaushan Script, handwriting",weights:[400],url:"Kaushan+Script:400"},{id:"kavivanar",title:"Kavivanar",family:"Kavivanar, handwriting",weights:[400],url:"Kavivanar:400"},{id:"kavoon",title:"Kavoon",family:"Kavoon, display",weights:[400],url:"Kavoon:400"},{id:"kdam_thmor",title:"Kdam Thmor",family:"Kdam Thmor, display",weights:[400],url:"Kdam+Thmor:400"},{id:"keania_one",title:"Keania One",family:"Keania One, display",weights:[400],url:"Keania+One:400"},{id:"kelly_slab",title:"Kelly Slab",family:"Kelly Slab, display",weights:[400],url:"Kelly+Slab:400"},{id:"kenia",title:"Kenia",family:"Kenia, display",weights:[400],url:"Kenia:400"},{id:"khand",title:"Khand",family:"Khand, sans-serif",weights:[300,400,500,600,700],url:"Khand:300,400,500,600,700"},{id:"khmer",title:"Khmer",family:"Khmer, display",weights:[400],url:"Khmer:400"},{id:"khula",title:"Khula",family:"Khula, sans-serif",weights:[300,400,600,700,800],url:"Khula:300,400,600,700,800"},{id:"kite_one",title:"Kite One",family:"Kite One, sans-serif",weights:[400],url:"Kite+One:400"},{id:"knewave",title:"Knewave",family:"Knewave, display",weights:[400],url:"Knewave:400"},{id:"kotta_one",title:"Kotta One",family:"Kotta One, serif",weights:[400],url:"Kotta+One:400"},{id:"koulen",title:"Koulen",family:"Koulen, display",weights:[400],url:"Koulen:400"},{id:"kranky",title:"Kranky",family:"Kranky, display",weights:[400],url:"Kranky:400"},{id:"kreon",title:"Kreon",family:"Kreon, serif",weights:[300,400,700],url:"Kreon:300,400,700"},{id:"kristi",title:"Kristi",family:"Kristi, handwriting",weights:[400],url:"Kristi:400"},{id:"krona_one",title:"Krona One",family:"Krona One, sans-serif",weights:[400],url:"Krona+One:400"},{id:"kumar_one",title:"Kumar One",family:"Kumar One, display",weights:[400],url:"Kumar+One:400"},{id:"kumar_one_outline",title:"Kumar One Outline",family:"Kumar One Outline, display",weights:[400],url:"Kumar+One+Outline:400"},{id:"kurale",title:"Kurale",family:"Kurale, serif",weights:[400],url:"Kurale:400"},{id:"la_belle_aurore",title:"La Belle Aurore",family:"La Belle Aurore, handwriting",weights:[400],url:"La+Belle+Aurore:400"},{id:"laila",title:"Laila",family:"Laila, serif",weights:[300,400,500,600,700],url:"Laila:300,400,500,600,700"},{id:"lakki_reddy",title:"Lakki Reddy",family:"Lakki Reddy, handwriting",weights:[400],url:"Lakki+Reddy:400"},{id:"lalezar",title:"Lalezar",family:"Lalezar, display",weights:[400],url:"Lalezar:400"},{id:"lancelot",title:"Lancelot",family:"Lancelot, display",weights:[400],url:"Lancelot:400"},{id:"lateef",title:"Lateef",family:"Lateef, handwriting",weights:[400],url:"Lateef:400"},{id:"lato",title:"Lato",family:"Lato, sans-serif",weights:[100,300,400,700,900],url:"Lato:100,100i,300,300i,400,400i,700,700i,900,900i"},{id:"league_script",title:"League Script",family:"League Script, handwriting",weights:[400],url:"League+Script:400"},{id:"leckerli_one",title:"Leckerli One",family:"Leckerli One, handwriting",weights:[400],url:"Leckerli+One:400"},{id:"ledger",title:"Ledger",family:"Ledger, serif",weights:[400],url:"Ledger:400"},{id:"lekton",title:"Lekton",family:"Lekton, sans-serif",weights:[400,700],url:"Lekton:400,400i,700"},{id:"lemon",title:"Lemon",family:"Lemon, display",weights:[400],url:"Lemon:400"},{id:"lemonada",title:"Lemonada",family:"Lemonada, display",weights:[300,400,600,700],url:"Lemonada:300,400,600,700"},{id:"libre_barcode_128",title:"Libre Barcode 128",family:"Libre Barcode 128, display",weights:[400],url:"Libre+Barcode+128:400"},{id:"libre_barcode_128_text",title:"Libre Barcode 128 Text",family:"Libre Barcode 128 Text, display",weights:[400],url:"Libre+Barcode+128+Text:400"},{id:"libre_barcode_39",title:"Libre Barcode 39",family:"Libre Barcode 39, display",weights:[400],url:"Libre+Barcode+39:400"},{id:"libre_barcode_39_extended",title:"Libre Barcode 39 Extended",family:"Libre Barcode 39 Extended, display",weights:[400],url:"Libre+Barcode+39+Extended:400"},{id:"libre_barcode_39_extended_text",title:"Libre Barcode 39 Extended Text",family:"Libre Barcode 39 Extended Text, display",weights:[400],url:"Libre+Barcode+39+Extended+Text:400"},{id:"libre_barcode_39_text",title:"Libre Barcode 39 Text",family:"Libre Barcode 39 Text, display",weights:[400],url:"Libre+Barcode+39+Text:400"},{id:"libre_baskerville",title:"Libre Baskerville",family:"Libre Baskerville, serif",weights:[400,700],url:"Libre+Baskerville:400,400i,700"},{id:"libre_franklin",title:"Libre Franklin",family:"Libre Franklin, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Libre+Franklin:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"life_savers",title:"Life Savers",family:"Life Savers, display",weights:[400,700],url:"Life+Savers:400,700"},{id:"lilita_one",title:"Lilita One",family:"Lilita One, display",weights:[400],url:"Lilita+One:400"},{id:"lily_script_one",title:"Lily Script One",family:"Lily Script One, display",weights:[400],url:"Lily+Script+One:400"},{id:"limelight",title:"Limelight",family:"Limelight, display",weights:[400],url:"Limelight:400"},{id:"linden_hill",title:"Linden Hill",family:"Linden Hill, serif",weights:[400],url:"Linden+Hill:400,400i"},{id:"lobster",title:"Lobster",family:"Lobster, display",weights:[400],url:"Lobster:400"},{id:"lobster_two",title:"Lobster Two",family:"Lobster Two, display",weights:[400,700],url:"Lobster+Two:400,400i,700,700i"},{id:"londrina_outline",title:"Londrina Outline",family:"Londrina Outline, display",weights:[400],url:"Londrina+Outline:400"},{id:"londrina_shadow",title:"Londrina Shadow",family:"Londrina Shadow, display",weights:[400],url:"Londrina+Shadow:400"},{id:"londrina_sketch",title:"Londrina Sketch",family:"Londrina Sketch, display",weights:[400],url:"Londrina+Sketch:400"},{id:"londrina_solid",title:"Londrina Solid",family:"Londrina Solid, display",weights:[100,300,400,900],url:"Londrina+Solid:100,300,400,900"},{id:"lora",title:"Lora",family:"Lora, serif",weights:[400,700],url:"Lora:400,400i,700,700i"},{id:"love_ya_like_a_sister",title:"Love Ya Like A Sister",family:"Love Ya Like A Sister, display",weights:[400],url:"Love+Ya+Like+A+Sister:400"},{id:"loved_by_the_king",title:"Loved by the King",family:"Loved by the King, handwriting",weights:[400],url:"Loved+by+the+King:400"},{id:"lovers_quarrel",title:"Lovers Quarrel",family:"Lovers Quarrel, handwriting",weights:[400],url:"Lovers+Quarrel:400"},{id:"luckiest_guy",title:"Luckiest Guy",family:"Luckiest Guy, display",weights:[400],url:"Luckiest+Guy:400"},{id:"lusitana",title:"Lusitana",family:"Lusitana, serif",weights:[400,700],url:"Lusitana:400,700"},{id:"lustria",title:"Lustria",family:"Lustria, serif",weights:[400],url:"Lustria:400"},{id:"macondo",title:"Macondo",family:"Macondo, display",weights:[400],url:"Macondo:400"},{id:"macondo_swash_caps",title:"Macondo Swash Caps",family:"Macondo Swash Caps, display",weights:[400],url:"Macondo+Swash+Caps:400"},{id:"mada",title:"Mada",family:"Mada, sans-serif",weights:[200,300,400,500,600,700,900],url:"Mada:200,300,400,500,600,700,900"},{id:"magra",title:"Magra",family:"Magra, sans-serif",weights:[400,700],url:"Magra:400,700"},{id:"maiden_orange",title:"Maiden Orange",family:"Maiden Orange, display",weights:[400],url:"Maiden+Orange:400"},{id:"maitree",title:"Maitree",family:"Maitree, serif",weights:[200,300,400,500,600,700],url:"Maitree:200,300,400,500,600,700"},{id:"mako",title:"Mako",family:"Mako, sans-serif",weights:[400],url:"Mako:400"},{id:"mallanna",title:"Mallanna",family:"Mallanna, sans-serif",weights:[400],url:"Mallanna:400"},{id:"mandali",title:"Mandali",family:"Mandali, sans-serif",weights:[400],url:"Mandali:400"},{id:"manuale",title:"Manuale",family:"Manuale, serif",weights:[400,500,600,700],url:"Manuale:400,400i,500,500i,600,600i,700,700i"},{id:"marcellus",title:"Marcellus",family:"Marcellus, serif",weights:[400],url:"Marcellus:400"},{id:"marcellus_sc",title:"Marcellus SC",family:"Marcellus SC, serif",weights:[400],url:"Marcellus+SC:400"},{id:"marck_script",title:"Marck Script",family:"Marck Script, handwriting",weights:[400],url:"Marck+Script:400"},{id:"margarine",title:"Margarine",family:"Margarine, display",weights:[400],url:"Margarine:400"},{id:"marko_one",title:"Marko One",family:"Marko One, serif",weights:[400],url:"Marko+One:400"},{id:"marmelad",title:"Marmelad",family:"Marmelad, sans-serif",weights:[400],url:"Marmelad:400"},{id:"martel",title:"Martel",family:"Martel, serif",weights:[200,300,400,600,700,800,900],url:"Martel:200,300,400,600,700,800,900"},{id:"martel_sans",title:"Martel Sans",family:"Martel Sans, sans-serif",weights:[200,300,400,600,700,800,900],url:"Martel+Sans:200,300,400,600,700,800,900"},{id:"marvel",title:"Marvel",family:"Marvel, sans-serif",weights:[400,700],url:"Marvel:400,400i,700,700i"},{id:"mate",title:"Mate",family:"Mate, serif",weights:[400],url:"Mate:400,400i"},{id:"mate_sc",title:"Mate SC",family:"Mate SC, serif",weights:[400],url:"Mate+SC:400"},{id:"maven_pro",title:"Maven Pro",family:"Maven Pro, sans-serif",weights:[400,500,700,900],url:"Maven+Pro:400,500,700,900"},{id:"mclaren",title:"McLaren",family:"McLaren, display",weights:[400],url:"McLaren:400"},{id:"meddon",title:"Meddon",family:"Meddon, handwriting",weights:[400],url:"Meddon:400"},{id:"medievalsharp",title:"MedievalSharp",family:"MedievalSharp, display",weights:[400],url:"MedievalSharp:400"},{id:"medula_one",title:"Medula One",family:"Medula One, display",weights:[400],url:"Medula+One:400"},{id:"meera_inimai",title:"Meera Inimai",family:"Meera Inimai, sans-serif",weights:[400],url:"Meera+Inimai:400"},{id:"megrim",title:"Megrim",family:"Megrim, display",weights:[400],url:"Megrim:400"},{id:"meie_script",title:"Meie Script",family:"Meie Script, handwriting",weights:[400],url:"Meie+Script:400"},{id:"merienda",title:"Merienda",family:"Merienda, handwriting",weights:[400,700],url:"Merienda:400,700"},{id:"merienda_one",title:"Merienda One",family:"Merienda One, handwriting",weights:[400],url:"Merienda+One:400"},{id:"merriweather",title:"Merriweather",family:"Merriweather, serif",weights:[300,400,700,900],url:"Merriweather:300,300i,400,400i,700,700i,900,900i"},{id:"merriweather_sans",title:"Merriweather Sans",family:"Merriweather Sans, sans-serif",weights:[300,400,700,800],url:"Merriweather+Sans:300,300i,400,400i,700,700i,800,800i"},{id:"metal",title:"Metal",family:"Metal, display",weights:[400],url:"Metal:400"},{id:"metal_mania",title:"Metal Mania",family:"Metal Mania, display",weights:[400],url:"Metal+Mania:400"},{id:"metamorphous",title:"Metamorphous",family:"Metamorphous, display",weights:[400],url:"Metamorphous:400"},{id:"metrophobic",title:"Metrophobic",family:"Metrophobic, sans-serif",weights:[400],url:"Metrophobic:400"},{id:"michroma",title:"Michroma",family:"Michroma, sans-serif",weights:[400],url:"Michroma:400"},{id:"milonga",title:"Milonga",family:"Milonga, display",weights:[400],url:"Milonga:400"},{id:"miltonian",title:"Miltonian",family:"Miltonian, display",weights:[400],url:"Miltonian:400"},{id:"miltonian_tattoo",title:"Miltonian Tattoo",family:"Miltonian Tattoo, display",weights:[400],url:"Miltonian+Tattoo:400"},{id:"miniver",title:"Miniver",family:"Miniver, display",weights:[400],url:"Miniver:400"},{id:"miriam_libre",title:"Miriam Libre",family:"Miriam Libre, sans-serif",weights:[400,700],url:"Miriam+Libre:400,700"},{id:"mirza",title:"Mirza",family:"Mirza, display",weights:[400,500,600,700],url:"Mirza:400,500,600,700"},{id:"miss_fajardose",title:"Miss Fajardose",family:"Miss Fajardose, handwriting",weights:[400],url:"Miss+Fajardose:400"},{id:"mitr",title:"Mitr",family:"Mitr, sans-serif",weights:[200,300,400,500,600,700],url:"Mitr:200,300,400,500,600,700"},{id:"modak",title:"Modak",family:"Modak, display",weights:[400],url:"Modak:400"},{id:"modern_antiqua",title:"Modern Antiqua",family:"Modern Antiqua, display",weights:[400],url:"Modern+Antiqua:400"},{id:"mogra",title:"Mogra",family:"Mogra, display",weights:[400],url:"Mogra:400"},{id:"molengo",title:"Molengo",family:"Molengo, sans-serif",weights:[400],url:"Molengo:400"},{id:"molle",title:"Molle",family:"Molle, handwriting",weights:[],url:"Molle:400i"},{id:"monda",title:"Monda",family:"Monda, sans-serif",weights:[400,700],url:"Monda:400,700"},{id:"monofett",title:"Monofett",family:"Monofett, display",weights:[400],url:"Monofett:400"},{id:"monoton",title:"Monoton",family:"Monoton, display",weights:[400],url:"Monoton:400"},{id:"monsieur_la_doulaise",title:"Monsieur La Doulaise",family:"Monsieur La Doulaise, handwriting",weights:[400],url:"Monsieur+La+Doulaise:400"},{id:"montaga",title:"Montaga",family:"Montaga, serif",weights:[400],url:"Montaga:400"},{id:"montez",title:"Montez",family:"Montez, handwriting",weights:[400],url:"Montez:400"},{id:"montserrat",title:"Montserrat",family:"Montserrat, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"montserrat_alternates",title:"Montserrat Alternates",family:"Montserrat Alternates, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Montserrat+Alternates:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"montserrat_subrayada",title:"Montserrat Subrayada",family:"Montserrat Subrayada, sans-serif",weights:[400,700],url:"Montserrat+Subrayada:400,700"},{id:"moul",title:"Moul",family:"Moul, display",weights:[400],url:"Moul:400"},{id:"moulpali",title:"Moulpali",family:"Moulpali, display",weights:[400],url:"Moulpali:400"},{id:"mountains_of_christmas",title:"Mountains of Christmas",family:"Mountains of Christmas, display",weights:[400,700],url:"Mountains+of+Christmas:400,700"},{id:"mouse_memoirs",title:"Mouse Memoirs",family:"Mouse Memoirs, sans-serif",weights:[400],url:"Mouse+Memoirs:400"},{id:"mr_bedfort",title:"Mr Bedfort",family:"Mr Bedfort, handwriting",weights:[400],url:"Mr+Bedfort:400"},{id:"mr_dafoe",title:"Mr Dafoe",family:"Mr Dafoe, handwriting",weights:[400],url:"Mr+Dafoe:400"},{id:"mr_de_haviland",title:"Mr De Haviland",family:"Mr De Haviland, handwriting",weights:[400],url:"Mr+De+Haviland:400"},{id:"mrs_saint_delafield",title:"Mrs Saint Delafield",family:"Mrs Saint Delafield, handwriting",weights:[400],url:"Mrs+Saint+Delafield:400"},{id:"mrs_sheppards",title:"Mrs Sheppards",family:"Mrs Sheppards, handwriting",weights:[400],url:"Mrs+Sheppards:400"},{id:"mukta",title:"Mukta",family:"Mukta, sans-serif",weights:[200,300,400,500,600,700,800],url:"Mukta:200,300,400,500,600,700,800"},{id:"mukta_mahee",title:"Mukta Mahee",family:"Mukta Mahee, sans-serif",weights:[200,300,400,500,600,700,800],url:"Mukta+Mahee:200,300,400,500,600,700,800"},{id:"mukta_malar",title:"Mukta Malar",family:"Mukta Malar, sans-serif",weights:[200,300,400,500,600,700,800],url:"Mukta+Malar:200,300,400,500,600,700,800"},{id:"mukta_vaani",title:"Mukta Vaani",family:"Mukta Vaani, sans-serif",weights:[200,300,400,500,600,700,800],url:"Mukta+Vaani:200,300,400,500,600,700,800"},{id:"muli",title:"Muli",family:"Muli, sans-serif",weights:[200,300,400,600,700,800,900],url:"Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"},{id:"mystery_quest",title:"Mystery Quest",family:"Mystery Quest, display",weights:[400],url:"Mystery+Quest:400"},{id:"ntr",title:"NTR",family:"NTR, sans-serif",weights:[400],url:"NTR:400"},{id:"neucha",title:"Neucha",family:"Neucha, handwriting",weights:[400],url:"Neucha:400"},{id:"neuton",title:"Neuton",family:"Neuton, serif",weights:[200,300,400,700,800],url:"Neuton:200,300,400,400i,700,800"},{id:"new_rocker",title:"New Rocker",family:"New Rocker, display",weights:[400],url:"New+Rocker:400"},{id:"news_cycle",title:"News Cycle",family:"News Cycle, sans-serif",weights:[400,700],url:"News+Cycle:400,700"},{id:"niconne",title:"Niconne",family:"Niconne, handwriting",weights:[400],url:"Niconne:400"},{id:"nixie_one",title:"Nixie One",family:"Nixie One, display",weights:[400],url:"Nixie+One:400"},{id:"nobile",title:"Nobile",family:"Nobile, sans-serif",weights:[400,500,700],url:"Nobile:400,400i,500,500i,700,700i"},{id:"nokora",title:"Nokora",family:"Nokora, serif",weights:[400,700],url:"Nokora:400,700"},{id:"norican",title:"Norican",family:"Norican, handwriting",weights:[400],url:"Norican:400"},{id:"nosifer",title:"Nosifer",family:"Nosifer, display",weights:[400],url:"Nosifer:400"},{id:"nothing_you_could_do",title:"Nothing You Could Do",family:"Nothing You Could Do, handwriting",weights:[400],url:"Nothing+You+Could+Do:400"},{id:"noticia_text",title:"Noticia Text",family:"Noticia Text, serif",weights:[400,700],url:"Noticia+Text:400,400i,700,700i"},{id:"noto_sans",title:"Noto Sans",family:"Noto Sans, sans-serif",weights:[400,700],url:"Noto+Sans:400,400i,700,700i"},{id:"noto_serif",title:"Noto Serif",family:"Noto Serif, serif",weights:[400,700],url:"Noto+Serif:400,400i,700,700i"},{id:"nova_cut",title:"Nova Cut",family:"Nova Cut, display",weights:[400],url:"Nova+Cut:400"},{id:"nova_flat",title:"Nova Flat",family:"Nova Flat, display",weights:[400],url:"Nova+Flat:400"},{id:"nova_mono",title:"Nova Mono",family:"Nova Mono, monospace",weights:[400],url:"Nova+Mono:400"},{id:"nova_oval",title:"Nova Oval",family:"Nova Oval, display",weights:[400],url:"Nova+Oval:400"},{id:"nova_round",title:"Nova Round",family:"Nova Round, display",weights:[400],url:"Nova+Round:400"},{id:"nova_script",title:"Nova Script",family:"Nova Script, display",weights:[400],url:"Nova+Script:400"},{id:"nova_slim",title:"Nova Slim",family:"Nova Slim, display",weights:[400],url:"Nova+Slim:400"},{id:"nova_square",title:"Nova Square",family:"Nova Square, display",weights:[400],url:"Nova+Square:400"},{id:"numans",title:"Numans",family:"Numans, sans-serif",weights:[400],url:"Numans:400"},{id:"nunito",title:"Nunito",family:"Nunito, sans-serif",weights:[200,300,400,600,700,800,900],url:"Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"},{id:"nunito_sans",title:"Nunito Sans",family:"Nunito Sans, sans-serif",weights:[200,300,400,600,700,800,900],url:"Nunito+Sans:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"},{id:"odor_mean_chey",title:"Odor Mean Chey",family:"Odor Mean Chey, display",weights:[400],url:"Odor+Mean+Chey:400"},{id:"offside",title:"Offside",family:"Offside, display",weights:[400],url:"Offside:400"},{id:"old_standard_tt",title:"Old Standard TT",family:"Old Standard TT, serif",weights:[400,700],url:"Old+Standard+TT:400,400i,700"},{id:"oldenburg",title:"Oldenburg",family:"Oldenburg, display",weights:[400],url:"Oldenburg:400"},{id:"oleo_script",title:"Oleo Script",family:"Oleo Script, display",weights:[400,700],url:"Oleo+Script:400,700"},{id:"oleo_script_swash_caps",title:"Oleo Script Swash Caps",family:"Oleo Script Swash Caps, display",weights:[400,700],url:"Oleo+Script+Swash+Caps:400,700"},{id:"open_sans",title:"Open Sans",family:"Open Sans, sans-serif",weights:[300,400,600,700,800],url:"Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i"},{id:"open_sans_condensed",title:"Open Sans Condensed",family:"Open Sans Condensed, sans-serif",weights:[300,700],url:"Open+Sans+Condensed:300,300i,700"},{id:"oranienbaum",title:"Oranienbaum",family:"Oranienbaum, serif",weights:[400],url:"Oranienbaum:400"},{id:"orbitron",title:"Orbitron",family:"Orbitron, sans-serif",weights:[400,500,700,900],url:"Orbitron:400,500,700,900"},{id:"oregano",title:"Oregano",family:"Oregano, display",weights:[400],url:"Oregano:400,400i"},{id:"orienta",title:"Orienta",family:"Orienta, sans-serif",weights:[400],url:"Orienta:400"},{id:"original_surfer",title:"Original Surfer",family:"Original Surfer, display",weights:[400],url:"Original+Surfer:400"},{id:"oswald",title:"Oswald",family:"Oswald, sans-serif",weights:[200,300,400,500,600,700],url:"Oswald:200,300,400,500,600,700"},{id:"over_the_rainbow",title:"Over the Rainbow",family:"Over the Rainbow, handwriting",weights:[400],url:"Over+the+Rainbow:400"},{id:"overlock",title:"Overlock",family:"Overlock, display",weights:[400,700,900],url:"Overlock:400,400i,700,700i,900,900i"},{id:"overlock_sc",title:"Overlock SC",family:"Overlock SC, display",weights:[400],url:"Overlock+SC:400"},{id:"overpass",title:"Overpass",family:"Overpass, sans-serif",weights:[100,200,300,400,600,700,800,900],url:"Overpass:100,100i,200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"},{id:"overpass_mono",title:"Overpass Mono",family:"Overpass Mono, monospace",weights:[300,400,600,700],url:"Overpass+Mono:300,400,600,700"},{id:"ovo",title:"Ovo",family:"Ovo, serif",weights:[400],url:"Ovo:400"},{id:"oxygen",title:"Oxygen",family:"Oxygen, sans-serif",weights:[300,400,700],url:"Oxygen:300,400,700"},{id:"oxygen_mono",title:"Oxygen Mono",family:"Oxygen Mono, monospace",weights:[400],url:"Oxygen+Mono:400"},{id:"pt_mono",title:"PT Mono",family:"PT Mono, monospace",weights:[400],url:"PT+Mono:400"},{id:"pt_sans",title:"PT Sans",family:"PT Sans, sans-serif",weights:[400,700],url:"PT+Sans:400,400i,700,700i"},{id:"pt_sans_caption",title:"PT Sans Caption",family:"PT Sans Caption, sans-serif",weights:[400,700],url:"PT+Sans+Caption:400,700"},{id:"pt_sans_narrow",title:"PT Sans Narrow",family:"PT Sans Narrow, sans-serif",weights:[400,700],url:"PT+Sans+Narrow:400,700"},{id:"pt_serif",title:"PT Serif",family:"PT Serif, serif",weights:[400,700],url:"PT+Serif:400,400i,700,700i"},{id:"pt_serif_caption",title:"PT Serif Caption",family:"PT Serif Caption, serif",weights:[400],url:"PT+Serif+Caption:400,400i"},{id:"pacifico",title:"Pacifico",family:"Pacifico, handwriting",weights:[400],url:"Pacifico:400"},{id:"padauk",title:"Padauk",family:"Padauk, sans-serif",weights:[400,700],url:"Padauk:400,700"},{id:"palanquin",title:"Palanquin",family:"Palanquin, sans-serif",weights:[100,200,300,400,500,600,700],url:"Palanquin:100,200,300,400,500,600,700"},{id:"palanquin_dark",title:"Palanquin Dark",family:"Palanquin Dark, sans-serif",weights:[400,500,600,700],url:"Palanquin+Dark:400,500,600,700"},{id:"pangolin",title:"Pangolin",family:"Pangolin, handwriting",weights:[400],url:"Pangolin:400"},{id:"paprika",title:"Paprika",family:"Paprika, display",weights:[400],url:"Paprika:400"},{id:"parisienne",title:"Parisienne",family:"Parisienne, handwriting",weights:[400],url:"Parisienne:400"},{id:"passero_one",title:"Passero One",family:"Passero One, display",weights:[400],url:"Passero+One:400"},{id:"passion_one",title:"Passion One",family:"Passion One, display",weights:[400,700,900],url:"Passion+One:400,700,900"},{id:"pathway_gothic_one",title:"Pathway Gothic One",family:"Pathway Gothic One, sans-serif",weights:[400],url:"Pathway+Gothic+One:400"},{id:"patrick_hand",title:"Patrick Hand",family:"Patrick Hand, handwriting",weights:[400],url:"Patrick+Hand:400"},{id:"patrick_hand_sc",title:"Patrick Hand SC",family:"Patrick Hand SC, handwriting",weights:[400],url:"Patrick+Hand+SC:400"},{id:"pattaya",title:"Pattaya",family:"Pattaya, sans-serif",weights:[400],url:"Pattaya:400"},{id:"patua_one",title:"Patua One",family:"Patua One, display",weights:[400],url:"Patua+One:400"},{id:"pavanam",title:"Pavanam",family:"Pavanam, sans-serif",weights:[400],url:"Pavanam:400"},{id:"paytone_one",title:"Paytone One",family:"Paytone One, sans-serif",weights:[400],url:"Paytone+One:400"},{id:"peddana",title:"Peddana",family:"Peddana, serif",weights:[400],url:"Peddana:400"},{id:"peralta",title:"Peralta",family:"Peralta, display",weights:[400],url:"Peralta:400"},{id:"permanent_marker",title:"Permanent Marker",family:"Permanent Marker, handwriting",weights:[400],url:"Permanent+Marker:400"},{id:"petit_formal_script",title:"Petit Formal Script",family:"Petit Formal Script, handwriting",weights:[400],url:"Petit+Formal+Script:400"},{id:"petrona",title:"Petrona",family:"Petrona, serif",weights:[400],url:"Petrona:400"},{id:"philosopher",title:"Philosopher",family:"Philosopher, sans-serif",weights:[400,700],url:"Philosopher:400,400i,700,700i"},{id:"piedra",title:"Piedra",family:"Piedra, display",weights:[400],url:"Piedra:400"},{id:"pinyon_script",title:"Pinyon Script",family:"Pinyon Script, handwriting",weights:[400],url:"Pinyon+Script:400"},{id:"pirata_one",title:"Pirata One",family:"Pirata One, display",weights:[400],url:"Pirata+One:400"},{id:"plaster",title:"Plaster",family:"Plaster, display",weights:[400],url:"Plaster:400"},{id:"play",title:"Play",family:"Play, sans-serif",weights:[400,700],url:"Play:400,700"},{id:"playball",title:"Playball",family:"Playball, display",weights:[400],url:"Playball:400"},{id:"playfair_display",title:"Playfair Display",family:"Playfair Display, serif",weights:[400,700,900],url:"Playfair+Display:400,400i,700,700i,900,900i"},{id:"playfair_display_sc",title:"Playfair Display SC",family:"Playfair Display SC, serif",weights:[400,700,900],url:"Playfair+Display+SC:400,400i,700,700i,900,900i"},{id:"podkova",title:"Podkova",family:"Podkova, serif",weights:[400,500,600,700,800],url:"Podkova:400,500,600,700,800"},{id:"poiret_one",title:"Poiret One",family:"Poiret One, display",weights:[400],url:"Poiret+One:400"},{id:"poller_one",title:"Poller One",family:"Poller One, display",weights:[400],url:"Poller+One:400"},{id:"poly",title:"Poly",family:"Poly, serif",weights:[400],url:"Poly:400,400i"},{id:"pompiere",title:"Pompiere",family:"Pompiere, display",weights:[400],url:"Pompiere:400"},{id:"pontano_sans",title:"Pontano Sans",family:"Pontano Sans, sans-serif",weights:[400],url:"Pontano+Sans:400"},{id:"poppins",title:"Poppins",family:"Poppins, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"port_lligat_sans",title:"Port Lligat Sans",family:"Port Lligat Sans, sans-serif",weights:[400],url:"Port+Lligat+Sans:400"},{id:"port_lligat_slab",title:"Port Lligat Slab",family:"Port Lligat Slab, serif",weights:[400],url:"Port+Lligat+Slab:400"},{id:"pragati_narrow",title:"Pragati Narrow",family:"Pragati Narrow, sans-serif",weights:[400,700],url:"Pragati+Narrow:400,700"},{id:"prata",title:"Prata",family:"Prata, serif",weights:[400],url:"Prata:400"},{id:"preahvihear",title:"Preahvihear",family:"Preahvihear, display",weights:[400],url:"Preahvihear:400"},{id:"press_start_2p",title:"Press Start 2P",family:"Press Start 2P, display",weights:[400],url:"Press+Start+2P:400"},{id:"pridi",title:"Pridi",family:"Pridi, serif",weights:[200,300,400,500,600,700],url:"Pridi:200,300,400,500,600,700"},{id:"princess_sofia",title:"Princess Sofia",family:"Princess Sofia, handwriting",weights:[400],url:"Princess+Sofia:400"},{id:"prociono",title:"Prociono",family:"Prociono, serif",weights:[400],url:"Prociono:400"},{id:"prompt",title:"Prompt",family:"Prompt, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Prompt:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"prosto_one",title:"Prosto One",family:"Prosto One, display",weights:[400],url:"Prosto+One:400"},{id:"proza_libre",title:"Proza Libre",family:"Proza Libre, sans-serif",weights:[400,500,600,700,800],url:"Proza+Libre:400,400i,500,500i,600,600i,700,700i,800,800i"},{id:"puritan",title:"Puritan",family:"Puritan, sans-serif",weights:[400,700],url:"Puritan:400,400i,700,700i"},{id:"purple_purse",title:"Purple Purse",family:"Purple Purse, display",weights:[400],url:"Purple+Purse:400"},{id:"quando",title:"Quando",family:"Quando, serif",weights:[400],url:"Quando:400"},{id:"quantico",title:"Quantico",family:"Quantico, sans-serif",weights:[400,700],url:"Quantico:400,400i,700,700i"},{id:"quattrocento",title:"Quattrocento",family:"Quattrocento, serif",weights:[400,700],url:"Quattrocento:400,700"},{id:"quattrocento_sans",title:"Quattrocento Sans",family:"Quattrocento Sans, sans-serif",weights:[400,700],url:"Quattrocento+Sans:400,400i,700,700i"},{id:"questrial",title:"Questrial",family:"Questrial, sans-serif",weights:[400],url:"Questrial:400"},{id:"quicksand",title:"Quicksand",family:"Quicksand, sans-serif",weights:[300,400,500,700],url:"Quicksand:300,400,500,700"},{id:"quintessential",title:"Quintessential",family:"Quintessential, handwriting",weights:[400],url:"Quintessential:400"},{id:"qwigley",title:"Qwigley",family:"Qwigley, handwriting",weights:[400],url:"Qwigley:400"},{id:"racing_sans_one",title:"Racing Sans One",family:"Racing Sans One, display",weights:[400],url:"Racing+Sans+One:400"},{id:"radley",title:"Radley",family:"Radley, serif",weights:[400],url:"Radley:400,400i"},{id:"rajdhani",title:"Rajdhani",family:"Rajdhani, sans-serif",weights:[300,400,500,600,700],url:"Rajdhani:300,400,500,600,700"},{id:"rakkas",title:"Rakkas",family:"Rakkas, display",weights:[400],url:"Rakkas:400"},{id:"raleway",title:"Raleway",family:"Raleway, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"raleway_dots",title:"Raleway Dots",family:"Raleway Dots, display",weights:[400],url:"Raleway+Dots:400"},{id:"ramabhadra",title:"Ramabhadra",family:"Ramabhadra, sans-serif",weights:[400],url:"Ramabhadra:400"},{id:"ramaraja",title:"Ramaraja",family:"Ramaraja, serif",weights:[400],url:"Ramaraja:400"},{id:"rambla",title:"Rambla",family:"Rambla, sans-serif",weights:[400,700],url:"Rambla:400,400i,700,700i"},{id:"rammetto_one",title:"Rammetto One",family:"Rammetto One, display",weights:[400],url:"Rammetto+One:400"},{id:"ranchers",title:"Ranchers",family:"Ranchers, display",weights:[400],url:"Ranchers:400"},{id:"rancho",title:"Rancho",family:"Rancho, handwriting",weights:[400],url:"Rancho:400"},{id:"ranga",title:"Ranga",family:"Ranga, display",weights:[400,700],url:"Ranga:400,700"},{id:"rasa",title:"Rasa",family:"Rasa, serif",weights:[300,400,500,600,700],url:"Rasa:300,400,500,600,700"},{id:"rationale",title:"Rationale",family:"Rationale, sans-serif",weights:[400],url:"Rationale:400"},{id:"ravi_prakash",title:"Ravi Prakash",family:"Ravi Prakash, display",weights:[400],url:"Ravi+Prakash:400"},{id:"redressed",title:"Redressed",family:"Redressed, handwriting",weights:[400],url:"Redressed:400"},{id:"reem_kufi",title:"Reem Kufi",family:"Reem Kufi, sans-serif",weights:[400],url:"Reem+Kufi:400"},{id:"reenie_beanie",title:"Reenie Beanie",family:"Reenie Beanie, handwriting",weights:[400],url:"Reenie+Beanie:400"},{id:"revalia",title:"Revalia",family:"Revalia, display",weights:[400],url:"Revalia:400"},{id:"rhodium_libre",title:"Rhodium Libre",family:"Rhodium Libre, serif",weights:[400],url:"Rhodium+Libre:400"},{id:"ribeye",title:"Ribeye",family:"Ribeye, display",weights:[400],url:"Ribeye:400"},{id:"ribeye_marrow",title:"Ribeye Marrow",family:"Ribeye Marrow, display",weights:[400],url:"Ribeye+Marrow:400"},{id:"righteous",title:"Righteous",family:"Righteous, display",weights:[400],url:"Righteous:400"},{id:"risque",title:"Risque",family:"Risque, display",weights:[400],url:"Risque:400"},{id:"roboto",title:"Roboto",family:"Roboto, sans-serif",weights:[100,300,400,500,700,900],url:"Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i"},{id:"roboto_condensed",title:"Roboto Condensed",family:"Roboto Condensed, sans-serif",weights:[300,400,700],url:"Roboto+Condensed:300,300i,400,400i,700,700i"},{id:"roboto_mono",title:"Roboto Mono",family:"Roboto Mono, monospace",weights:[100,300,400,500,700],url:"Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i"},{id:"roboto_slab",title:"Roboto Slab",family:"Roboto Slab, serif",weights:[100,300,400,700],url:"Roboto+Slab:100,300,400,700"},{id:"rochester",title:"Rochester",family:"Rochester, handwriting",weights:[400],url:"Rochester:400"},{id:"rock_salt",title:"Rock Salt",family:"Rock Salt, handwriting",weights:[400],url:"Rock+Salt:400"},{id:"rokkitt",title:"Rokkitt",family:"Rokkitt, serif",weights:[100,200,300,400,500,600,700,800,900],url:"Rokkitt:100,200,300,400,500,600,700,800,900"},{id:"romanesco",title:"Romanesco",family:"Romanesco, handwriting",weights:[400],url:"Romanesco:400"},{id:"ropa_sans",title:"Ropa Sans",family:"Ropa Sans, sans-serif",weights:[400],url:"Ropa+Sans:400,400i"},{id:"rosario",title:"Rosario",family:"Rosario, sans-serif",weights:[400,700],url:"Rosario:400,400i,700,700i"},{id:"rosarivo",title:"Rosarivo",family:"Rosarivo, serif",weights:[400],url:"Rosarivo:400,400i"},{id:"rouge_script",title:"Rouge Script",family:"Rouge Script, handwriting",weights:[400],url:"Rouge+Script:400"},{id:"rozha_one",title:"Rozha One",family:"Rozha One, serif",weights:[400],url:"Rozha+One:400"},{id:"rubik",title:"Rubik",family:"Rubik, sans-serif",weights:[300,400,500,700,900],url:"Rubik:300,300i,400,400i,500,500i,700,700i,900,900i"},{id:"rubik_mono_one",title:"Rubik Mono One",family:"Rubik Mono One, sans-serif",weights:[400],url:"Rubik+Mono+One:400"},{id:"ruda",title:"Ruda",family:"Ruda, sans-serif",weights:[400,700,900],url:"Ruda:400,700,900"},{id:"rufina",title:"Rufina",family:"Rufina, serif",weights:[400,700],url:"Rufina:400,700"},{id:"ruge_boogie",title:"Ruge Boogie",family:"Ruge Boogie, handwriting",weights:[400],url:"Ruge+Boogie:400"},{id:"ruluko",title:"Ruluko",family:"Ruluko, sans-serif",weights:[400],url:"Ruluko:400"},{id:"rum_raisin",title:"Rum Raisin",family:"Rum Raisin, sans-serif",weights:[400],url:"Rum+Raisin:400"},{id:"ruslan_display",title:"Ruslan Display",family:"Ruslan Display, display",weights:[400],url:"Ruslan+Display:400"},{id:"russo_one",title:"Russo One",family:"Russo One, sans-serif",weights:[400],url:"Russo+One:400"},{id:"ruthie",title:"Ruthie",family:"Ruthie, handwriting",weights:[400],url:"Ruthie:400"},{id:"rye",title:"Rye",family:"Rye, display",weights:[400],url:"Rye:400"},{id:"sacramento",title:"Sacramento",family:"Sacramento, handwriting",weights:[400],url:"Sacramento:400"},{id:"sahitya",title:"Sahitya",family:"Sahitya, serif",weights:[400,700],url:"Sahitya:400,700"},{id:"sail",title:"Sail",family:"Sail, display",weights:[400],url:"Sail:400"},{id:"saira",title:"Saira",family:"Saira, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Saira:100,200,300,400,500,600,700,800,900"},{id:"saira_condensed",title:"Saira Condensed",family:"Saira Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Saira+Condensed:100,200,300,400,500,600,700,800,900"},{id:"saira_extra_condensed",title:"Saira Extra Condensed",family:"Saira Extra Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Saira+Extra+Condensed:100,200,300,400,500,600,700,800,900"},{id:"saira_semi_condensed",title:"Saira Semi Condensed",family:"Saira Semi Condensed, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Saira+Semi+Condensed:100,200,300,400,500,600,700,800,900"},{id:"salsa",title:"Salsa",family:"Salsa, display",weights:[400],url:"Salsa:400"},{id:"sanchez",title:"Sanchez",family:"Sanchez, serif",weights:[400],url:"Sanchez:400,400i"},{id:"sancreek",title:"Sancreek",family:"Sancreek, display",weights:[400],url:"Sancreek:400"},{id:"sansita",title:"Sansita",family:"Sansita, sans-serif",weights:[400,700,800,900],url:"Sansita:400,400i,700,700i,800,800i,900,900i"},{id:"sarala",title:"Sarala",family:"Sarala, sans-serif",weights:[400,700],url:"Sarala:400,700"},{id:"sarina",title:"Sarina",family:"Sarina, display",weights:[400],url:"Sarina:400"},{id:"sarpanch",title:"Sarpanch",family:"Sarpanch, sans-serif",weights:[400,500,600,700,800,900],url:"Sarpanch:400,500,600,700,800,900"},{id:"satisfy",title:"Satisfy",family:"Satisfy, handwriting",weights:[400],url:"Satisfy:400"},{id:"scada",title:"Scada",family:"Scada, sans-serif",weights:[400,700],url:"Scada:400,400i,700,700i"},{id:"scheherazade",title:"Scheherazade",family:"Scheherazade, serif",weights:[400,700],url:"Scheherazade:400,700"},{id:"schoolbell",title:"Schoolbell",family:"Schoolbell, handwriting",weights:[400],url:"Schoolbell:400"},{id:"scope_one",title:"Scope One",family:"Scope One, serif",weights:[400],url:"Scope+One:400"},{id:"seaweed_script",title:"Seaweed Script",family:"Seaweed Script, display",weights:[400],url:"Seaweed+Script:400"},{id:"secular_one",title:"Secular One",family:"Secular One, sans-serif",weights:[400],url:"Secular+One:400"},{id:"sedgwick_ave",title:"Sedgwick Ave",family:"Sedgwick Ave, handwriting",weights:[400],url:"Sedgwick+Ave:400"},{id:"sedgwick_ave_display",title:"Sedgwick Ave Display",family:"Sedgwick Ave Display, handwriting",weights:[400],url:"Sedgwick+Ave+Display:400"},{id:"sevillana",title:"Sevillana",family:"Sevillana, display",weights:[400],url:"Sevillana:400"},{id:"seymour_one",title:"Seymour One",family:"Seymour One, sans-serif",weights:[400],url:"Seymour+One:400"},{id:"shadows_into_light",title:"Shadows Into Light",family:"Shadows Into Light, handwriting",weights:[400],url:"Shadows+Into+Light:400"},{id:"shadows_into_light_two",title:"Shadows Into Light Two",family:"Shadows Into Light Two, handwriting",weights:[400],url:"Shadows+Into+Light+Two:400"},{id:"shanti",title:"Shanti",family:"Shanti, sans-serif",weights:[400],url:"Shanti:400"},{id:"share",title:"Share",family:"Share, display",weights:[400,700],url:"Share:400,400i,700,700i"},{id:"share_tech",title:"Share Tech",family:"Share Tech, sans-serif",weights:[400],url:"Share+Tech:400"},{id:"share_tech_mono",title:"Share Tech Mono",family:"Share Tech Mono, monospace",weights:[400],url:"Share+Tech+Mono:400"},{id:"shojumaru",title:"Shojumaru",family:"Shojumaru, display",weights:[400],url:"Shojumaru:400"},{id:"short_stack",title:"Short Stack",family:"Short Stack, handwriting",weights:[400],url:"Short+Stack:400"},{id:"shrikhand",title:"Shrikhand",family:"Shrikhand, display",weights:[400],url:"Shrikhand:400"},{id:"siemreap",title:"Siemreap",family:"Siemreap, display",weights:[400],url:"Siemreap:400"},{id:"sigmar_one",title:"Sigmar One",family:"Sigmar One, display",weights:[400],url:"Sigmar+One:400"},{id:"signika",title:"Signika",family:"Signika, sans-serif",weights:[300,400,600,700],url:"Signika:300,400,600,700"},{id:"signika_negative",title:"Signika Negative",family:"Signika Negative, sans-serif",weights:[300,400,600,700],url:"Signika+Negative:300,400,600,700"},{id:"simonetta",title:"Simonetta",family:"Simonetta, display",weights:[400,900],url:"Simonetta:400,400i,900,900i"},{id:"sintony",title:"Sintony",family:"Sintony, sans-serif",weights:[400,700],url:"Sintony:400,700"},{id:"sirin_stencil",title:"Sirin Stencil",family:"Sirin Stencil, display",weights:[400],url:"Sirin+Stencil:400"},{id:"six_caps",title:"Six Caps",family:"Six Caps, sans-serif",weights:[400],url:"Six+Caps:400"},{id:"skranji",title:"Skranji",family:"Skranji, display",weights:[400,700],url:"Skranji:400,700"},{id:"slabo_13px",title:"Slabo 13px",family:"Slabo 13px, serif",weights:[400],url:"Slabo+13px:400"},{id:"slabo_27px",title:"Slabo 27px",family:"Slabo 27px, serif",weights:[400],url:"Slabo+27px:400"},{id:"slackey",title:"Slackey",family:"Slackey, display",weights:[400],url:"Slackey:400"},{id:"smokum",title:"Smokum",family:"Smokum, display",weights:[400],url:"Smokum:400"},{id:"smythe",title:"Smythe",family:"Smythe, display",weights:[400],url:"Smythe:400"},{id:"sniglet",title:"Sniglet",family:"Sniglet, display",weights:[400,800],url:"Sniglet:400,800"},{id:"snippet",title:"Snippet",family:"Snippet, sans-serif",weights:[400],url:"Snippet:400"},{id:"snowburst_one",title:"Snowburst One",family:"Snowburst One, display",weights:[400],url:"Snowburst+One:400"},{id:"sofadi_one",title:"Sofadi One",family:"Sofadi One, display",weights:[400],url:"Sofadi+One:400"},{id:"sofia",title:"Sofia",family:"Sofia, handwriting",weights:[400],url:"Sofia:400"},{id:"sonsie_one",title:"Sonsie One",family:"Sonsie One, display",weights:[400],url:"Sonsie+One:400"},{id:"sorts_mill_goudy",title:"Sorts Mill Goudy",family:"Sorts Mill Goudy, serif",weights:[400],url:"Sorts+Mill+Goudy:400,400i"},{id:"source_code_pro",title:"Source Code Pro",family:"Source Code Pro, monospace",weights:[200,300,400,500,600,700,900],url:"Source+Code+Pro:200,300,400,500,600,700,900"},{id:"source_sans_pro",title:"Source Sans Pro",family:"Source Sans Pro, sans-serif",weights:[200,300,400,600,700,900],url:"Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i"},{id:"source_serif_pro",title:"Source Serif Pro",family:"Source Serif Pro, serif",weights:[400,600,700],url:"Source+Serif+Pro:400,600,700"},{id:"space_mono",title:"Space Mono",family:"Space Mono, monospace",weights:[400,700],url:"Space+Mono:400,400i,700,700i"},{id:"special_elite",title:"Special Elite",family:"Special Elite, display",weights:[400],url:"Special+Elite:400"},{id:"spectral",title:"Spectral",family:"Spectral, serif",weights:[200,300,400,500,600,700,800],url:"Spectral:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i"},{id:"spectral_sc",title:"Spectral SC",family:"Spectral SC, serif",weights:[200,300,400,500,600,700,800],url:"Spectral+SC:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i"},{id:"spicy_rice",title:"Spicy Rice",family:"Spicy Rice, display",weights:[400],url:"Spicy+Rice:400"},{id:"spinnaker",title:"Spinnaker",family:"Spinnaker, sans-serif",weights:[400],url:"Spinnaker:400"},{id:"spirax",title:"Spirax",family:"Spirax, display",weights:[400],url:"Spirax:400"},{id:"squada_one",title:"Squada One",family:"Squada One, display",weights:[400],url:"Squada+One:400"},{id:"sree_krushnadevaraya",title:"Sree Krushnadevaraya",family:"Sree Krushnadevaraya, serif",weights:[400],url:"Sree+Krushnadevaraya:400"},{id:"sriracha",title:"Sriracha",family:"Sriracha, handwriting",weights:[400],url:"Sriracha:400"},{id:"stalemate",title:"Stalemate",family:"Stalemate, handwriting",weights:[400],url:"Stalemate:400"},{id:"stalinist_one",title:"Stalinist One",family:"Stalinist One, display",weights:[400],url:"Stalinist+One:400"},{id:"stardos_stencil",title:"Stardos Stencil",family:"Stardos Stencil, display",weights:[400,700],url:"Stardos+Stencil:400,700"},{id:"stint_ultra_condensed",title:"Stint Ultra Condensed",family:"Stint Ultra Condensed, display",weights:[400],url:"Stint+Ultra+Condensed:400"},{id:"stint_ultra_expanded",title:"Stint Ultra Expanded",family:"Stint Ultra Expanded, display",weights:[400],url:"Stint+Ultra+Expanded:400"},{id:"stoke",title:"Stoke",family:"Stoke, serif",weights:[300,400],url:"Stoke:300,400"},{id:"strait",title:"Strait",family:"Strait, sans-serif",weights:[400],url:"Strait:400"},{id:"sue_ellen_francisco",title:"Sue Ellen Francisco",family:"Sue Ellen Francisco, handwriting",weights:[400],url:"Sue+Ellen+Francisco:400"},{id:"suez_one",title:"Suez One",family:"Suez One, serif",weights:[400],url:"Suez+One:400"},{id:"sumana",title:"Sumana",family:"Sumana, serif",weights:[400,700],url:"Sumana:400,700"},{id:"sunshiney",title:"Sunshiney",family:"Sunshiney, handwriting",weights:[400],url:"Sunshiney:400"},{id:"supermercado_one",title:"Supermercado One",family:"Supermercado One, display",weights:[400],url:"Supermercado+One:400"},{id:"sura",title:"Sura",family:"Sura, serif",weights:[400,700],url:"Sura:400,700"},{id:"suranna",title:"Suranna",family:"Suranna, serif",weights:[400],url:"Suranna:400"},{id:"suravaram",title:"Suravaram",family:"Suravaram, serif",weights:[400],url:"Suravaram:400"},{id:"suwannaphum",title:"Suwannaphum",family:"Suwannaphum, display",weights:[400],url:"Suwannaphum:400"},{id:"swanky_and_moo_moo",title:"Swanky and Moo Moo",family:"Swanky and Moo Moo, handwriting",weights:[400],url:"Swanky+and+Moo+Moo:400"},{id:"syncopate",title:"Syncopate",family:"Syncopate, sans-serif",weights:[400,700],url:"Syncopate:400,700"},{id:"tangerine",title:"Tangerine",family:"Tangerine, handwriting",weights:[400,700],url:"Tangerine:400,700"},{id:"taprom",title:"Taprom",family:"Taprom, display",weights:[400],url:"Taprom:400"},{id:"tauri",title:"Tauri",family:"Tauri, sans-serif",weights:[400],url:"Tauri:400"},{id:"taviraj",title:"Taviraj",family:"Taviraj, serif",weights:[100,200,300,400,500,600,700,800,900],url:"Taviraj:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"teko",title:"Teko",family:"Teko, sans-serif",weights:[300,400,500,600,700],url:"Teko:300,400,500,600,700"},{id:"telex",title:"Telex",family:"Telex, sans-serif",weights:[400],url:"Telex:400"},{id:"tenali_ramakrishna",title:"Tenali Ramakrishna",family:"Tenali Ramakrishna, sans-serif",weights:[400],url:"Tenali+Ramakrishna:400"},{id:"tenor_sans",title:"Tenor Sans",family:"Tenor Sans, sans-serif",weights:[400],url:"Tenor+Sans:400"},{id:"text_me_one",title:"Text Me One",family:"Text Me One, sans-serif",weights:[400],url:"Text+Me+One:400"},{id:"the_girl_next_door",title:"The Girl Next Door",family:"The Girl Next Door, handwriting",weights:[400],url:"The+Girl+Next+Door:400"},{id:"tienne",title:"Tienne",family:"Tienne, serif",weights:[400,700,900],url:"Tienne:400,700,900"},{id:"tillana",title:"Tillana",family:"Tillana, handwriting",weights:[400,500,600,700,800],url:"Tillana:400,500,600,700,800"},{id:"timmana",title:"Timmana",family:"Timmana, sans-serif",weights:[400],url:"Timmana:400"},{id:"tinos",title:"Tinos",family:"Tinos, serif",weights:[400,700],url:"Tinos:400,400i,700,700i"},{id:"titan_one",title:"Titan One",family:"Titan One, display",weights:[400],url:"Titan+One:400"},{id:"titillium_web",title:"Titillium Web",family:"Titillium Web, sans-serif",weights:[200,300,400,600,700,900],url:"Titillium+Web:200,200i,300,300i,400,400i,600,600i,700,700i,900"},{id:"trade_winds",title:"Trade Winds",family:"Trade Winds, display",weights:[400],url:"Trade+Winds:400"},{id:"trirong",title:"Trirong",family:"Trirong, serif",weights:[100,200,300,400,500,600,700,800,900],url:"Trirong:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"},{id:"trocchi",title:"Trocchi",family:"Trocchi, serif",weights:[400],url:"Trocchi:400"},{id:"trochut",title:"Trochut",family:"Trochut, display",weights:[400,700],url:"Trochut:400,400i,700"},{id:"trykker",title:"Trykker",family:"Trykker, serif",weights:[400],url:"Trykker:400"},{id:"tulpen_one",title:"Tulpen One",family:"Tulpen One, display",weights:[400],url:"Tulpen+One:400"},{id:"ubuntu",title:"Ubuntu",family:"Ubuntu, sans-serif",weights:[300,400,500,700],url:"Ubuntu:300,300i,400,400i,500,500i,700,700i"},{id:"ubuntu_condensed",title:"Ubuntu Condensed",family:"Ubuntu Condensed, sans-serif",weights:[400],url:"Ubuntu+Condensed:400"},{id:"ubuntu_mono",title:"Ubuntu Mono",family:"Ubuntu Mono, monospace",weights:[400,700],url:"Ubuntu+Mono:400,400i,700,700i"},{id:"ultra",title:"Ultra",family:"Ultra, serif",weights:[400],url:"Ultra:400"},{id:"uncial_antiqua",title:"Uncial Antiqua",family:"Uncial Antiqua, display",weights:[400],url:"Uncial+Antiqua:400"},{id:"underdog",title:"Underdog",family:"Underdog, display",weights:[400],url:"Underdog:400"},{id:"unica_one",title:"Unica One",family:"Unica One, display",weights:[400],url:"Unica+One:400"},{id:"unifrakturcook",title:"UnifrakturCook",family:"UnifrakturCook, display",weights:[700],url:"UnifrakturCook:700"},{id:"unifrakturmaguntia",title:"UnifrakturMaguntia",family:"UnifrakturMaguntia, display",weights:[400],url:"UnifrakturMaguntia:400"},{id:"unkempt",title:"Unkempt",family:"Unkempt, display",weights:[400,700],url:"Unkempt:400,700"},{id:"unlock",title:"Unlock",family:"Unlock, display",weights:[400],url:"Unlock:400"},{id:"unna",title:"Unna",family:"Unna, serif",weights:[400,700],url:"Unna:400,400i,700,700i"},{id:"vt323",title:"VT323",family:"VT323, monospace",weights:[400],url:"VT323:400"},{id:"vampiro_one",title:"Vampiro One",family:"Vampiro One, display",weights:[400],url:"Vampiro+One:400"},{id:"varela",title:"Varela",family:"Varela, sans-serif",weights:[400],url:"Varela:400"},{id:"varela_round",title:"Varela Round",family:"Varela Round, sans-serif",weights:[400],url:"Varela+Round:400"},{id:"vast_shadow",title:"Vast Shadow",family:"Vast Shadow, display",weights:[400],url:"Vast+Shadow:400"},{id:"vesper_libre",title:"Vesper Libre",family:"Vesper Libre, serif",weights:[400,500,700,900],url:"Vesper+Libre:400,500,700,900"},{id:"vibur",title:"Vibur",family:"Vibur, handwriting",weights:[400],url:"Vibur:400"},{id:"vidaloka",title:"Vidaloka",family:"Vidaloka, serif",weights:[400],url:"Vidaloka:400"},{id:"viga",title:"Viga",family:"Viga, sans-serif",weights:[400],url:"Viga:400"},{id:"voces",title:"Voces",family:"Voces, display",weights:[400],url:"Voces:400"},{id:"volkhov",title:"Volkhov",family:"Volkhov, serif",weights:[400,700],url:"Volkhov:400,400i,700,700i"},{id:"vollkorn",title:"Vollkorn",family:"Vollkorn, serif",weights:[400,600,700,900],url:"Vollkorn:400,400i,600,600i,700,700i,900,900i"},{id:"vollkorn_sc",title:"Vollkorn SC",family:"Vollkorn SC, serif",weights:[400,600,700,900],url:"Vollkorn+SC:400,600,700,900"},{id:"voltaire",title:"Voltaire",family:"Voltaire, sans-serif",weights:[400],url:"Voltaire:400"},{id:"waiting_for_the_sunrise",title:"Waiting for the Sunrise",family:"Waiting for the Sunrise, handwriting",weights:[400],url:"Waiting+for+the+Sunrise:400"},{id:"wallpoet",title:"Wallpoet",family:"Wallpoet, display",weights:[400],url:"Wallpoet:400"},{id:"walter_turncoat",title:"Walter Turncoat",family:"Walter Turncoat, handwriting",weights:[400],url:"Walter+Turncoat:400"},{id:"warnes",title:"Warnes",family:"Warnes, display",weights:[400],url:"Warnes:400"},{id:"wellfleet",title:"Wellfleet",family:"Wellfleet, display",weights:[400],url:"Wellfleet:400"},{id:"wendy_one",title:"Wendy One",family:"Wendy One, sans-serif",weights:[400],url:"Wendy+One:400"},{id:"wire_one",title:"Wire One",family:"Wire One, sans-serif",weights:[400],url:"Wire+One:400"},{id:"work_sans",title:"Work Sans",family:"Work Sans, sans-serif",weights:[100,200,300,400,500,600,700,800,900],url:"Work+Sans:100,200,300,400,500,600,700,800,900"},{id:"yanone_kaffeesatz",title:"Yanone Kaffeesatz",family:"Yanone Kaffeesatz, sans-serif",weights:[200,300,400,700],url:"Yanone+Kaffeesatz:200,300,400,700"},{id:"yantramanav",title:"Yantramanav",family:"Yantramanav, sans-serif",weights:[100,300,400,500,700,900],url:"Yantramanav:100,300,400,500,700,900"},{id:"yatra_one",title:"Yatra One",family:"Yatra One, display",weights:[400],url:"Yatra+One:400"},{id:"yellowtail",title:"Yellowtail",family:"Yellowtail, handwriting",weights:[400],url:"Yellowtail:400"},{id:"yeseva_one",title:"Yeseva One",family:"Yeseva One, display",weights:[400],url:"Yeseva+One:400"},{id:"yesteryear",title:"Yesteryear",family:"Yesteryear, handwriting",weights:[400],url:"Yesteryear:400"},{id:"yrsa",title:"Yrsa",family:"Yrsa, serif",weights:[300,400,500,600,700],url:"Yrsa:300,400,500,600,700"},{id:"zeyada",title:"Zeyada",family:"Zeyada, handwriting",weights:[400],url:"Zeyada:400"},{id:"zilla_slab",title:"Zilla Slab",family:"Zilla Slab, serif",weights:[300,400,500,600,700],url:"Zilla+Slab:300,300i,400,400i,500,500i,600,600i,700,700i"},{id:"zilla_slab_highlight",title:"Zilla Slab Highlight",family:"Zilla Slab Highlight, display",weights:[400,700],url:"Zilla+Slab+Highlight:400,700"}]},function(e,t,a){"use strict";t.a=function(){return Object(o.b)().getState().styles.fontStyles.filter(e=>!0!==e.deleted)};var o=a(13)},function(e,t,a){"use strict";t.a=function(){return Object(o.b)().getState().styles.colorPalette};var o=a(13)},,,function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i);t.a=class extends o.Component{constructor(...e){var t;return t=super(...e),this.onMouseDown=(()=>{window.parent.document.addEventListener("mouseup",this.onMouseUp),window.parent.document.querySelector("#brz-ed-iframe").style.pointerEvents="none"}),this.onMouseUp=(()=>{window.parent.document.removeEventListener("mouseup",this.onMouseUp),window.parent.document.querySelector("#brz-ed-iframe").style.removeProperty("pointer-events")}),t}componentDidMount(){l.a.findDOMNode(this).addEventListener("mousedown",this.onMouseDown)}render(){return r.a.Children.only(this.props.children)}}},,function(e,t,a){"use strict";var o=a(22),r=a(18),i=a(82),l=a(45),n=a(44),s=a(102),p=a(58),c=a(101),d=a(28),m=a(75),g=a(33).f,u=a(157)(0),h=a(37);e.exports=function(e,t,a,b,y,f){var v=o[e],w=v,x=y?"set":"add",C=w&&w.prototype,B={};return h&&"function"==typeof w&&(f||C.forEach&&!l(function(){(new w).entries().next()}))?(w=t(function(t,a){c(t,w,e,"_c"),t._c=new v,void 0!=a&&p(a,y,t[x],t)}),u("add,clear,delete,forEach,get,has,set,keys,values,entries,toJSON".split(","),function(e){var t="add"==e||"set"==e;e in C&&(!f||"clear"!=e)&&n(w.prototype,e,function(a,o){if(c(this,w,e),!t&&f&&!d(a))return"get"==e&&void 0;var r=this._c[e](0===a?0:a,o);return t?this:r})}),f||g(w.prototype,"size",{get:function(){return this._c.size}})):(w=b.getConstructor(t,e,y,x),s(w.prototype,a),i.NEED=!0),m(w,e),B[e]=w,r(r.G+r.W+r.F,B),f||b.setStrong(w,e,y),w}},function(e,t,a){"use strict";var o=a(18);e.exports=function(e){o(o.S,e,{of:function(){for(var e=arguments.length,t=Array(e);e--;)t[e]=arguments[e];return new this(t)}})}},function(e,t,a){"use strict";var o=a(18),r=a(71),i=a(39),l=a(58);e.exports=function(e){o(o.S,e,{from:function(e){var t,a,o,n,s=arguments[1];return r(this),(t=void 0!==s)&&r(s),void 0==e?new this:(a=[],t?(o=0,n=i(s,arguments[2],2),l(e,!1,function(e){a.push(n(e,o++))})):l(e,!1,a.push,a),new this(a))}})}},function(e,t,a){"use strict";t.a=function(e){if(!e)return"";return r.a.map(e,function(e,t){return t+"="+encodeURIComponent(e)}).join("&")};var o=a(2),r=a.n(o)},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(2),l=a.n(i),n=a(238),s=a.n(n);t.a={simpleCheckForValidColor(e){let t=0,a=0;return l.a.each(["r","g","b","a","h","s","l","v"],o=>{if(e[o]&&(t+=1,isNaN(e[o])||(a+=1),"s"===o||"l"===o)){/^\d+%$/.test(e[o])&&(a+=1)}}),t===a&&e},toState(e,t,a){const o=e.hex?s()(e.hex):s()(e),i=o.toHsl(),l=o.toHsv(),n=o.toRgb(),p=o.toHex();0===i.s&&(i.h=t||0,l.h=t||0);let c={};return e.hex||0===l.v||(c={hsv:l}),a||(c={hsv:l}),"saturation"===e.wasChanged&&(c={hsv:{h:l.h,s:0===l.s?e.s/100:l.s,v:l.v}}),"hue"!==e.wasChanged&&"opacity"!==e.wasChanged||(c={}),r()({hsl:i,hex:`#${p}`,rgb:n,oldHue:e.h||t||i.h,source:e.source},c)},isValidHex:e=>s()(e).isValid(),getContrastingColor(e){if(!e)return"#fff";const t=this.toState(e);return"transparent"===t.hex?"rgba(0,0,0,0.4)":(299*t.rgb.r+587*t.rgb.g+114*t.rgb.b)/1e3>=128?"#000":"#fff"}}},,function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(2),s=a.n(n),p=a(1),c=a.n(p),d=a(83),m=a(65),g=a(5);class u extends l.a.Component{constructor(...e){var t;return t=super(...e),this.renderLabel=(()=>{const{label:e,helper:t,helperContent:a}=this.props,o=t?l.a.createElement("div",{className:"brz-ed-option__helper"},l.a.createElement(g.a,{icon:"nc-alert-circle-que"}),l.a.createElement("div",{className:"brz-ed-option__helper__content"},a)):null;return l.a.createElement("div",{className:"brz-ed-option__label brz-ed-option__select__label"},e,o)}),this.renderChoices=(()=>this.props.choices.map((e,t)=>{const{title:a,icon:o,value:r}=e;return l.a.createElement(m.a,{key:t,value:r,title:a},o&&l.a.createElement(g.a,{icon:o}),l.a.createElement("span",null,a))})),this.renderAfterSelect=(()=>{}),t}render(){const{label:e,display:t,itemHeight:a,helper:o,value:i,onChange:n,className:p,attr:m}=this.props,g=c()("brz-ed-option__select",`brz-ed-option__${t}`,p,m.className),u=s.a.omit(m,"className");return l.a.createElement("div",r()({className:g},u),e||o?this.renderLabel():null,l.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},l.a.createElement(d.a,{className:"brz-control__select--dark",defaultValue:i,itemHeight:a,onChange:n},this.renderChoices()),this.renderAfterSelect()))}}u.defaultProps={label:"",display:"inline",className:"",itemHeight:30,icon:null,choices:[],attr:{},helper:!1,helperContent:"",onChange:s.a.noop},t.a=u},,,function(e,t,a){"use strict";t.a=(e=>e[0].toUpperCase()+e.slice(1));t.b=((e,...t)=>{let a=0;return e.replace(/%s/g,()=>t[a++])})},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7),l=a.n(i),n=a(2),s=a.n(n),p=a(1),c=a.n(p);class d extends r.a.Component{constructor(...e){var t;return t=super(...e),this.handleFocus=(()=>{const e=l.a.findDOMNode(this),t=e.value.length;if(e.setSelectionRange)e.focus(),e.setSelectionRange(t,t);else if(e.createTextRange){var a=e.createTextRange();a.collapse(!0),a.moveEnd("character",t),a.moveStart("character",t)}this.props.onFocus()}),this.handleKeyDown=(e=>{13===e.keyCode&&(e.preventDefault(),this.props.onEnterKeyDown())}),this.handleChange=(e=>{this.props.onChange(e.target.value)}),t}componentDidMount(){this.handleFocus()}render(){const e=c()("brz-input",this.props.className);return r.a.createElement("input",{className:e,type:"text",placeholder:this.props.placeholder,value:this.props.value,onFocus:this.handleFocus,onKeyDown:this.handleKeyDown,onChange:this.handleChange})}}t.a=d,d.defaultProps={value:"",placeholder:"",className:"",onFocus:s.a.noop,onChange:s.a.noop,onEnterKeyDown:s.a.noop}},,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(1),s=a.n(n),p=a(719);class c extends l.a.Component{render(){const{data:e,className:t}=this.props,a=p.a[e.type],o="object"==typeof e.extraProps?e.extraProps:"function"==typeof e.extraProps?e.extraProps():{},i=s()(e.className,t,o.className);return l.a.createElement(a,r()({},e,o,{className:i}))}}c.defaultProps={className:"",data:{}},t.a=c},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(2),l=a.n(i);class n extends r.a.Component{render(){return r.a.createElement("div",{className:"brz-ed-fixed"},r.a.createElement("div",{className:"brz-ed-fixed-overlay",onClick:this.props.onClose}),r.a.createElement("div",{className:"brz-ed-fixed-scroll"},this.props.children))}}n.defaultProps={onClose:l.a.noop},t.a=n},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(7),s=a.n(n),p=a(274),c=a.n(p),d=a(31);t.a=class extends i.Component{constructor(e){super(e),this.scrollParentGetter=this.scrollParentGetter.bind(this)}scrollParentGetter(){return s.a.findDOMNode(this).children[0]}render(){return l.a.createElement(d.a,{style:{height:400,overflow:"hidden"},className:"brz-ed-scroll-pane brz-ed-scroll__popup"},l.a.createElement(c.a,r()({},this.props,{scrollParentGetter:this.scrollParentGetter})))}}},,function(e,t,a){e.exports={default:a(734),__esModule:!0}},function(e,t,a){var o=a(57),r=a(50),i=a(81).f;e.exports=function(e){return function(t){for(var a,l=r(t),n=o(l),s=n.length,p=0,c=[];s>p;)i.call(l,a=n[p++])&&c.push(e?[a,l[a]]:l[a]);return c}}},function(e,t,a){"use strict";var o=a(748),r=a(762),i=a(808),l=a(816),n=a(822),s=a(828),p=a(832),c=a(837),d=a(846),m=a(291),g=a(856),u=a(864),h=a(868),b=a(872),y=a(876),f=a(880),v=a(884),w=a(888),x=a(892),C=a(896),B=a(900),T=a(904),z=a(908),_=a(914),R=a(926),k=a(931),O=a(934),S=a(939),W=a(942),P=a(947),L=a(948);a.d(t,"a",function(){return L.a}),t.b={Page:o.a,Section:r.a,SectionItem:i.a,Row:l.a,Column:n.a,Form:s.a,FormFields:p.a,FormField:c.a,Wrapper:d.a,Cloneable:m.a,RichText:g.a,Video:u.a,Icon:h.a,Image:b.a,Line:y.a,Spacer:f.a,EmbedCode:v.a,Map:w.a,Button:x.a,Counter:C.a,SoundCloud:B.a,ProgressBar:T.a,IconText:z.a,Countdown:_.a,Tabs:R.a,Tab:k.a,Accordion:O.a,AccordionItem:S.a,SectionFooter:W.a,GlobalBlock:P.a}},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(2),l=a.n(i),n=a(1),s=a.n(n),p=a(5);class c extends r.a.Component{render(){const{className:e,icon:t}=this.props,a=s()(e,"floating-action-button");return r.a.createElement("div",{className:a,onClick:this.props.onClick},t?r.a.createElement(p.a,{icon:t}):null)}}c.defaultProps={className:"",icon:null,onClick:l.a.noop},t.a=c},function(e,t,a){"use strict";t.a=function(e){if(!e||0===e.length)return e;const t=i(r/e.length),a=i(r-t*(e.length-1));return e.map((r,i)=>{const l=i!==e.length-1?t:a;return Object(o.setIn)(r,["value","width"],l)})};var o=a(34);a.n(o);const r=100,i=e=>Number(e.toFixed(1))},,,function(e,t,a){"use strict";t.i=function(e){const{showOnDesktop:t,showOnMobile:a,className:o,customClassName:i}=e;let s;{const e={filter:"blur(3px)",opacity:.9};s={zIndex:"var(--zIndex)",".brz & .brz-container__wrap":{flexDirection:"var(--fullHeightColumn)",justifyContent:"var(--fullHeightCenter)",minHeight:"var(--fullHeight100vh)"},".brz & .brz-slick-slider__dots":{color:"var(--colorDots)"},".brz & .brz-slick-slider__arrow":{color:"var(--colorArrows)"},".brz-ed--desktop & .brz-container__wrap":r()({},"on"===t?null:e),".brz-ed--mobile & .brz-container__wrap":r()({},"on"===a?null:e)}}const p=String(Object(n.css)(s));return l()("brz-section",p,o,i)},t.h=function(e){0;const{fullHeight:t,sliderDotsColorHex:a,sliderDotsColorOpacity:o,sliderArrowsColorHex:r,sliderArrowsColorOpacity:i,zIndex:l}=e;return{"--fullHeight100vh":"on"===t?"100vh":"auto","--fullHeightColumn":"on"===t?"column":null,"--fullHeightCenter":"on"===t?"center":null,"--colorDots":Object(p.c)(a,o),"--colorArrows":Object(p.c)(r,i),"--zIndex":0===l?"auto":l}},t.b=function(e,t){let a;a={"> .brz-bg-media":{borderTopWidth:"var(--borderTopWidth)",borderRightWidth:"var(--borderRightWidth)",borderBottomWidth:"var(--borderBottomWidth)",borderLeftWidth:"var(--borderLeftWidth)",borderColor:"var(--borderColor)",borderStyle:"var(--borderStyle)",borderTopLeftRadius:"var(--borderTopLeftRadius)",borderTopRightRadius:"var(--borderTopRightRadius)",borderBottomLeftRadius:"var(--borderBottomLeftRadius)",borderBottomRightRadius:"var(--borderBottomRightRadius)"},".brz-ed--desktop &":{"> .brz-bg-media > .brz-bg-image":{backgroundImage:"var(--backgroundImage)",backgroundPositionX:"var(--backgroundPositionX)",backgroundPositionY:"var(--backgroundPositionY)",backgroundAttachment:"var(--backgroundAttachment)"},"> .brz-bg-media > .brz-bg-color":{backgroundColor:"var(--backgroundColor)"},"> .brz-bg-media > .brz-bg-map":{display:"var(--mediaBg)"}},".brz-ed--mobile &":{"> .brz-bg-media > .brz-bg-image":{backgroundImage:"var(--mobileBackgroundImage)",backgroundPositionX:"var(--mobileBackgroundPositionX)",backgroundPositionY:"var(--mobileBackgroundPositionY)",backgroundAttachment:"var(--mobileBackgroundAttachment)"},"> .brz-bg-media > .brz-bg-color":{backgroundColor:"var(--mobileBackgroundColor)"},"> .brz-bg-media > .brz-bg-map":{display:"var(--mobileMediaBg)"}}};const o=String(Object(n.css)(a));return l()(o)},t.a=function(e,t){0;const{media:a,bgImageSrc:o,bgAttachment:r,bgPositionX:i,bgPositionY:l,bgColorHex:n,bgColorOpacity:d,borderWidth:m,borderWidthType:g,borderTopWidth:u,borderRightWidth:h,borderBottomWidth:b,borderLeftWidth:y,borderColorHex:f,borderColorOpacity:v,borderRadius:w,borderRadiusType:x,borderTopLeftRadius:C,borderTopRightRadius:B,borderBottomLeftRadius:T,borderBottomRightRadius:z,mobileMedia:_,mobileBgImageSrc:R,mobileBgAttachment:k,mobileBgPositionX:O,mobileBgPositionY:S,mobileBgColorHex:W,mobileBgColorOpacity:P}=e,{showSlider:L}=t.meta;return{"--mediaBg":"map"===a?"block":"none","--backgroundImage":"image"===a&&o?`url(${Object(s.a)(o)})`:"none","--backgroundPositionX":`${i}%`,"--backgroundPositionY":`${l}%`,"--backgroundAttachment":c[L?"none":r],"--backgroundColor":Object(p.c)(n,d),"--borderTopWidth":"grouped"===g?`${m}px`:`${u}px`,"--borderRightWidth":"grouped"===g?`${m}px`:`${h}px`,"--borderBottomWidth":"grouped"===g?`${m}px`:`${b}px`,"--borderLeftWidth":"grouped"===g?`${m}px`:`${y}px`,"--borderColor":`${Object(p.c)(f,v)}`,"--borderStyle":"solid","--borderTopLeftRadius":"grouped"===x?`${w}px`:`${C}px`,"--borderTopRightRadius":"grouped"===x?`${w}px`:`${B}px`,"--borderBottomLeftRadius":"grouped"===x?`${w}px`:`${T}px`,"--borderBottomRightRadius":"grouped"===x?`${w}px`:`${z}px`,"--mobileMediaBg":"map"===_?"block":"none","--mobileBackgroundImage":R&&"map"!==_?`url(${Object(s.a)(R)})`:"none","--mobileBackgroundPositionX":`${O}%`,"--mobileBackgroundPositionY":`${S}%`,"--mobileBackgroundAttachment":c[L?"none":k],"--mobileBackgroundColor":Object(p.c)(W,P)}},t.g=function(e){const{containerClassName:t}=e;let a;a={".brz-ed--desktop &":{maxWidth:"var(--maxWidth)"},borderTopWidth:"var(--borderTopWidth)",borderRightWidth:"var(--borderRightWidth)",borderBottomWidth:"var(--borderBottomWidth)",borderLeftWidth:"var(--borderLeftWidth)",borderColor:"transparent",borderStyle:"solid"};const o=String(Object(n.css)(a));return l()("brz-container",o,t)},t.f=function(e){0;const{containerSize:t,containerType:a,borderWidthType:o,borderWidth:r,borderTopWidth:i,borderRightWidth:l,borderBottomWidth:n,borderLeftWidth:s}=e;return{"--maxWidth":"boxed"===a?`${t}%`:"100%","--borderTopWidth":"grouped"===o?`${r}px`:`${i}px`,"--borderRightWidth":"grouped"===o?`${r}px`:`${l}px`,"--borderBottomWidth":"grouped"===o?`${r}px`:`${n}px`,"--borderLeftWidth":"grouped"===o?`${r}px`:`${s}px`}},t.d=function(e){let t;t={maxWidth:"var(--containerWidth)",height:"100%",".brz-ed--desktop &":{paddingTop:"var(--paddingTop)",paddingBottom:"var(--paddingBottom)"},".brz-ed--mobile &":{paddingTop:"var(--mobilePaddingTop)",paddingBottom:"var(--mobilePaddingBottom)"}};const a=String(Object(n.css)(t));return l()("brz-container__wrap",a)},t.c=function(e){0;const{containerType:t,paddingType:a,padding:o,paddingSuffix:r,paddingTop:i,paddingTopSuffix:l,paddingBottom:n,paddingBottomSuffix:s,mobilePaddingType:p,mobilePadding:c,mobilePaddingSuffix:d,mobilePaddingTop:m,mobilePaddingTopSuffix:g,mobilePaddingBottom:u,mobilePaddingBottomSuffix:h}=e;return{"--containerWidth":"fullWidth"===t?"100%":"1170px","--paddingTop":"grouped"===a?o+r:i+l,"--paddingBottom":"grouped"===a?o+r:n+s,"--mobilePaddingTop":"grouped"===p?c+d:m+g,"--mobilePaddingBottom":"grouped"===p?c+d:u+h}},t.e=function(e){return l()("brz-section__content",e.className)};var o=a(3),r=a.n(o),i=a(1),l=a.n(i),n=a(10),s=(a.n(n),a(32)),p=a(8);const c={none:"scroll",fixed:"fixed",animated:"scroll"}},,,,function(e,t,a){"use strict";t.a=function(e,t){const{type:a,key:o}=e,p=r.a.extend({},l,t),{url:c,options:d}="youtube"===a?n(o,p):s(o,p);return`${c}?${Object(i.a)(d)}`};var o=a(2),r=a.n(o),i=a(236);const l={autoplay:!1,controls:!0,loop:!1,quality:"default"},n=(e,{autoplay:t,controls:a,loop:o,suggestedVideo:r})=>{let i={autoplay:Number(t),controls:Number(a),showinfo:0,modestbranding:1,wmode:"transparent",enablejsapi:1,loop:0,rel:Number(r)};return o&&(i.loop=1,i.playlist=e),{url:`https://www.youtube.com/embed/${e}`,options:i}},s=(e,{autoplay:t,loop:a,quality:o})=>({url:`https://player.vimeo.com/video/${e}`,options:{autoplay:Number(t),background:0,title:0,byline:0,badge:!1,autopause:!1,portrait:!1,loop:Number(a),quality:o}})},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(7);a.n(i);t.a=class extends r.a.Component{render(){const{children:e}=this.props;return r.a.cloneElement(r.a.Children.only(e),{"data-sortable-handle":!0})}}},function(e,t,a){"use strict";var o=a(0),r=a.n(o),i=a(1),l=a.n(i),n=a(62),s=(a.n(n),a(30)),p=a(5);class c extends o.Component{constructor(...e){var t;return t=super(...e),this.state={active:!1},this.handleClick=(()=>{this.state.active||this.setState({active:!0})}),this.handleClickOutside=(()=>{this.state.active&&this.setState({active:!1})}),this.setActive=(e=>{this.setState({active:e})}),this.renderIcon=(()=>{const{icon:e,activeIcon:t}=this.props,{active:a}=this.state;return t?r.a.createElement(n.CSSTransition,{in:a,timeout:150,classNames:"brz-ed-fade"},a?r.a.createElement(p.a,{kre:"activeIcon",icon:t}):r.a.createElement(p.a,{key:"icon",icon:e})):r.a.createElement(p.a,{icon:e})}),t}render(){const{active:e}=this.state,{className:t,color:a,icon:o,activeIcon:i,clickOutsideExceptions:n,reactToClick:p}=this.props,c=l()("brz-ed-floating__button",{[`brz-ed-floating__button--${a}`]:a},t,{"brz-ed-floating__button--active":e});l()({"brz-ed-floating__button--icon-active":e});return p?r.a.createElement(s.a,{exceptions:n,onClickOutside:this.handleClickOutside},r.a.createElement("div",{className:c,onClick:this.handleClick},this.renderIcon())):r.a.createElement("div",{className:c},this.renderIcon())}}c.defaultProps={className:"",icon:"nc-stre-up",activeIcon:"nc-drag",color:"grey",clickOutsideExceptions:[".brz-ed-sidebar__right"],reactToClick:!0},t.a=c},function(e,t,a){"use strict";t.d=function(e){let t;t={".brz-ed--desktop &":{textAlign:"var(--horizontalAlign)"},".brz-ed--mobile &":{textAlign:"var(--mobileHorizontalAlign)"}};const a=String(Object(i.css)(t));return r()("brz-form",a)},t.c=function(e){0;const{horizontalAlign:t,mobileHorizontalAlign:a}=e;return{"--horizontalAlign":t,"--mobileHorizontalAlign":a}},t.b=function(e){let t;t={".brz & .brz-form__item":{fontFamily:"var(--fontFamily)",fontWeight:"var(--fontWeight)",letterSpacing:"var(--letterSpacing)",color:"var(--color)","& .brz-form__field":{backgroundColor:"var(--backgroundColor)",borderColor:"var(--borderColor)",borderWidth:"var(--borderWidth)",borderStyle:"var(--borderStyle)",borderRadius:"var(--borderRadius)"},"& .brz-form__select-item__input":{color:"var(--color)"}},".brz & .form-alert":{fontFamily:"var(--fontFamily)"},".brz-ed--desktop &.brz-form__fields":{marginRight:"var(--marginRight)",marginLeft:"var(--marginLeft)"},".brz-ed--desktop & .brz-form__item":{fontSize:"var(--fontSize)",lineHeight:"var(--lineHeight)",paddingRight:"var(--paddingRight)",paddingBottom:"var(--paddingBottom)",paddingLeft:"var(--paddingLeft)"},".brz-ed--mobile &.brz-form__fields":{marginRight:"var(--mobileMarginRight)",marginLeft:"var(--mobileMarginLeft)"},".brz-ed--mobile & .brz-form__item":{fontSize:"var(--mobileFontSize)",lineHeight:"var(--mobileLineHeight)",paddingRight:"var(--mobilePaddingRight)",paddingBottom:"var(--mobilePaddingBottom)",paddingLeft:"var(--mobilePaddingLeft)"}};const a=String(Object(i.css)(t));return r()("brz-form__fields",a)},t.a=function(e){0;const{fontFamily:t,fontSize:a,fontWeight:o,lineHeight:r,letterSpacing:i,marginBottom:s,colorHex:p,colorOpacity:c,bgColorHex:d,bgColorOpacity:m,borderWidth:g,borderStyle:u,borderColorHex:h,borderColorOpacity:b,borderRadius:y,paddingTop:f,paddingRight:v,paddingBottom:w,paddingLeft:x,mobileFontSize:C,mobileLineHeight:B,mobileBorderRadius:T,mobilePaddingTop:z,mobilePaddingRight:_,mobilePaddingBottom:R,mobilePaddingLeft:k}=e;return{"--paddingTop":`${f}px`,"--paddingRight":`${v/2}px`,"--paddingBottom":`${w}px`,"--paddingLeft":`${x/2}px`,"--marginRight":`-${v/2}px`,"--marginLeft":`-${x/2}px`,"--fontFamily":Object(n.a)(t).family,"--fontWeight":o,"--fontSize":`${a}px`,"--lineHeight":r,"--letterSpacing":`${i}px`,"--color":Object(l.c)(p,c),"--backgroundColor":Object(l.c)(d,m),"--borderColor":Object(l.c)(h,b),"--borderWidth":`${g}px`,"--borderStyle":u,"--borderRadius":`${y}px`,"--mobileFontSize":`${C}px`,"--mobileLineHeight":B,"--mobileBorderRadius":`${T}px`,"--mobilePaddingTop":`${z}px`,"--mobilePaddingRight":`${_/2}px`,"--mobilePaddingBottom":`${R}px`,"--mobilePaddingLeft":`${k/2}px`,"--mobileMarginRight":`-${_/2}px`,"--mobileMarginLeft":`-${k/2}px`}};var o=a(1),r=a.n(o),i=a(10),l=(a.n(i),a(8)),n=a(11)},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=a(838),r=a(839),i=a(840),l=a(841),n=a(842);a.d(t,"Text",function(){return o.a}),a.d(t,"Email",function(){return r.a}),a.d(t,"Number",function(){return i.a}),a.d(t,"Paragraph",function(){return l.a}),a.d(t,"Select",function(){return n.a})},function(e,t,a){"use strict";var o=a(3),r=a.n(o),i=a(0),l=a.n(i),n=a(2),s=a.n(n),p=a(1),c=(a.n(p),a(10)),d=(a.n(c),a(9)),m=a(49),g=a(54),u=a(125),h=a(126),b=a(852),y=a(853),f=a(854),v=a(855),w=a.n(v);class x extends d.a{constructor(...e){var t;return t=super(...e),this.handleToolbarEnter=(()=>{this.containerBorder.setParentsHover(!0)}),this.handleToolbarLeave=(()=>{this.containerBorder.setParentsHover(!1)}),this.handleSortableStart=(()=>{this.containerBorder.setActive(!0)}),this.handleSortableEnd=(()=>{this.containerBorder&&this.containerBorder.setActive(!1)}),t}static get componentId(){return"Cloneable"}handleValueChange(e,t){0===e.items.length?this.selfDestruct():super.handleValueChange(e,t)}getMeta(e){const{meta:t}=this.props,{marginType:a,margin:o,marginSuffix:r,marginLeft:i,marginLeftSuffix:l,marginRight:n,marginRightSuffix:p,paddingType:c,padding:d,paddingSuffix:m,paddingLeft:g,paddingLeftSuffix:u,paddingRight:b,paddingRightSuffix:y,mobilePadding:f,mobilePaddingType:v,mobilePaddingSuffix:w,mobilePaddingLeft:x,mobilePaddingLeftSuffix:C,mobilePaddingRight:B,mobilePaddingRightSuffix:T,mobileMargin:z,mobileMarginType:_,mobileMarginSuffix:R,mobileMarginLeft:k,mobileMarginLeftSuffix:O,mobileMarginRight:S,mobileMarginRightSuffix:W}=e,P="grouped"===a?Object(h.a)(2*o,r,t.desktopW):Object(h.a)(i,l,t.desktopW)+Object(h.a)(n,p,t.desktopW),L="grouped"===c?Object(h.a)(2*d,m,t.desktopW):Object(h.a)(g,u,t.desktopW)+Object(h.a)(b,y,t.desktopW),H="grouped"===v?Object(h.a)(2*f,w,t.mobileW):Object(h.a)(x,C,t.mobileW)+Object(h.a)(B,T,t.mobileW),I=P+L,j=("grouped"===_?Object(h.a)(2*z,R,t.mobileW):Object(h.a)(k,O,t.mobileW)+Object(h.a)(S,W,t.mobileW))+H,E=Math.round(10*(t.mobileW-j))/10,M=Math.round(10*(t.desktopW-I))/10;return s.a.extend({},t,{mobileW:E,desktopW:M,inCloneable:!0})}renderContent(e){const{minItems:t,maxItems:a,blockType:o}=e,r=this.makeSubcomponentProps({bindWithKey:"items",blockType:o,containerClassName:Object(f.d)(e),itemClassName:Object(f.f)(e),minItems:t,maxItems:a,meta:this.getMeta(e),toolbarExtend:this.makeToolbarPropsFromConfig(y),onSortableStart:this.handleSortableStart,onSortableEnd:this.handleSortableEnd,itemProps:{onToolbarEnter:this.handleToolbarEnter,onToolbarLeave:this.handleToolbarLeave}});return l.a.createElement(g.a,{className:Object(f.b)(e)},l.a.createElement(b.a,r))}renderForEdit(e){const{showBorder:t}=this.props,a=r()({},Object(f.a)(e),Object(f.c)(e),Object(f.e)(e)),{animationName:o,animationDuration:i,animationDelay:n}=e;return l.a.createElement(u.a,{className:Object(f.g)(e,this.props),style:a,name:"none"!==o&&o,duration:i,delay:n},l.a.createElement(m.a,{ref:e=>{this.containerBorder=e},className:"brz-ed-border__wrapper",borderStyle:t?"dotted":"none",activeBorderStyle:t?"dotted":"none",showBorders:t,clickOutsideExceptions:[".brz-ed-sidebar__right","#brz-toolbar-portal"],path:this.props.path},this.renderContent(e)))}renderForView(e){const{animationName:t,animationDuration:a,animationDelay:o}=e;return l.a.createElement(u.a,{className:Object(f.g)(e,this.props),name:"none"!==t&&t,duration:a,delay:o},this.renderContent(e))}}x.defaultProps={className:"",showBorder:!0,meta:{}},x.defaultValue=w.a,t.a=x},function(e,t,a){"use strict";var o=a(2),r=a.n(o);const i=(e,{imageWidth:t,imageHeight:a,resize:o,width:r,height:i})=>{const l=e/(t/a);return{width:Math.round(e*(o/100)*(r/100)),height:Math.round(l*(o/100)*(i/100))}};t.b=i;t.a=((e,t,a=!1)=>{let o=r.a.extend({},t);const l=i(e,o);o.wrapperWidth=l.width,o.wrapperHeight=l.height;const n=((e,t)=>(t.imageHeight=e/(t.imageWidth/t.imageHeight),t.imageWidth=e,t))(e,o);let s=1;(o=r.a.extend(o,n)).height>100&&(s=o.height/100);let p=o.imageWidth*(o.resize/100)*(o.zoom/100)*s,c=o.imageHeight*(o.resize/100)*(o.zoom/100)*s;var d={imgWidth:p,imgHeight:c,imgMarginWidth:p-l.width*(o.zoom/100),imgMarginHeight:c-l.height*(o.zoom/100),wrapperWidth:o.wrapperWidth,wrapperHeight:o.wrapperHeight,positionX:o.positionX,positionY:o.positionY};const m=((e,t)=>{let a,o,r,i;const l=e.positionX,n=e.positionY,s=e.imgWidth-e.wrapperWidth,p=e.imgHeight-e.wrapperHeight;return r=l*e.imgWidth/100,i=n*e.imgHeight/100,a=r-e.wrapperWidth/2,o=i-e.wrapperHeight/2,e.imgWidth>e.wrapperWidth?(a<0&&(a=0),a>s&&(a=s)):a=t?0:s/2,e.imgHeight>e.wrapperHeight?(o<0&&(o=0),o>p&&(o=p)):o=t?0:p/2,{left:-a,top:-o}})(d,a);return{width:Math.round(d.imgWidth),height:Math.round(d.imgHeight),marginLeft:Math.round(m.left),marginTop:Math.round(m.top)}})},function(e,t,a){"use strict";t.b=function(){return r()(g).map(function(e,t){return{title:g[e].title,value:e}})};var o=a(63),r=a.n(o),i=a(916),l=a(917),n=a(918),s=a(919),p=a(920),c=a(921),d=a(922),m=a(4),g={de:{title:Object(m.a)("German"),component:i.a},en:{title:Object(m.a)("English"),component:l.a},es:{title:Object(m.a)("Spanish"),component:n.a},fr:{title:Object(m.a)("French"),component:s.a},it:{title:Object(m.a)("Italian"),component:p.a},nl:{title:Object(m.a)("Dutch"),component:c.a},ru:{title:Object(m.a)("Russian"),component:d.a}};t.a=function(e){return(g[e]||g.en).component}},function(e,t,a){"use strict";var o=a(16);t.a=(()=>o.a.get("wp").hasSidebars);t.b=(e=>Boolean(o.a.get("wp").plugins[e]))},function(e,t,a){a(296),e.exports=a(302)},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){var t=a(16),o=a(300),r=a(301);const i=e.__VISUAL_CONFIG__,l={icons:o.a,fonts:r.a};t.a.load(i),t.a.load(l)}.call(t,a(17))},,,,function(e,t,a){"use strict";t.a={types:[{id:0,name:"outline",title:"Outline",icon:"nc-cube"},{id:1,name:"glyph",title:"Glyph",icon:"nc-full-cube"}],categories:[{id:1,title:"Animals/Nature"},{id:2,title:"Arrows"},{id:3,title:"Business/Finance"},{id:4,title:"Clothes/Accessories"},{id:5,title:"Design/Development"},{id:6,title:"Emoticons"},{id:7,title:"Energy/Environment"},{id:8,title:"Files/Folders"},{id:10,title:"Food"},{id:11,title:"Home/Buildings"},{id:12,title:"Healthcare/Medical"},{id:13,title:"Holidays"},{id:14,title:"Loaders"},{id:15,title:"Maps/Location"},{id:16,title:"Multimedia"},{id:18,title:"School/Education"},{id:19,title:"Shopping"},{id:20,title:"Social Media"},{id:21,title:"Sport"},{id:22,title:"Technology"},{id:23,title:"Text Editing"},{id:24,title:"Touch Gestures"},{id:25,title:"Transportation"},{id:26,title:"Travel"},{id:27,title:"User Interface"},{id:28,title:"Users"},{id:29,title:"Weather"}],list:[{title:"food noodles plate italian noodle pasta spaghetti",name:"pasta",cat:[10],type:0},{title:"badge food certified healthy leaf organic natural",name:"organic-2",cat:[1,10],type:0},{title:"food frozen dessert breakfast cup yogurt sour dairy skyr",name:"yogurt",cat:[10],type:0},{title:"time kitchen timer stopwatch",name:"timer",cat:[10,21],type:0},{title:"food movie snack popcorn cinema",name:"popcorn",cat:[10],type:0},{title:"bag food drink beverage tea",name:"tea-bag",cat:[10],type:0},{title:"food bottle chinese japanese soy sauce oriental asian",name:"soy-sauce",cat:[10],type:0},{title:"sweet candy sugar lollipop",name:"lollipop",cat:[10],type:0},{title:"food bowl soup hot broth noodle ramen stew",name:"soup",cat:[10],type:0},{title:"food bowl rice cereal porridge grains",name:"rice",cat:[10],type:0},{title:"food vegetable pickle cucumber",name:"pickle",cat:[10],type:0},{title:"bag food delivery package takeaway",name:"bag-delivery",cat:[10,19],type:0},{title:"food sweet sugar dispenser cane",name:"sugar",cat:[10],type:0},{title:"food vegetable pepper salad",name:"pepper",cat:[10],type:0},{title:"food vegetable aubergine eggplant",name:"aubergine",cat:[10],type:0},{title:"food vegetable onion",name:"onion",cat:[10],type:0},{title:"food vegetable corn cereal cereals",name:"corn",cat:[10],type:0},{title:"food vegetable chips potato mashed",name:"potato",cat:[10],type:0},{title:"food vegetable garlic onion",name:"garlic",cat:[10],type:0},{title:"food fruit kiwi kiwifruit",name:"kiwi",cat:[10],type:0},{title:"food fruit berry blueberries blueberry",name:"blueberries",cat:[10],type:0},{title:"food fruit orange juice citrus grapefruit clementine",name:"orange",cat:[10],type:0},{title:"food fruit pear",name:"pear",cat:[10],type:0},{title:"food fruit lemon lime detox lemonade citrus",name:"lemon",cat:[10],type:0},{title:"food fruit pineapple tropical",name:"pineapple",cat:[10],type:0},{title:"health drink healthy beverage juice smoothie milkshake",name:"smoothie",cat:[10],type:0},{title:"nut nuts allergy peanut butter",name:"peanut",cat:[10],type:0},{title:"dessert sweet chocolate cream choco spread",name:"choco-cream",cat:[10],type:0},{title:"food dessert sweet sugar churros spanish",name:"churros",cat:[10],type:0},{title:"cake dessert sweet bakery cupcake muffin pastry",name:"cupcake",cat:[10],type:0},{title:"fruit dessert sweet sugar jelly gelatin",name:"jelly",cat:[10],type:0},{title:"dessert sweet cream ice sugar ice cream gelato",name:"ice-cream",cat:[10],type:0},{title:"dessert sweet bee honey syrup nectar dipper sugar",name:"honey",cat:[10],type:0},{title:"cake dessert sweet chocolate bakery mousse",name:"chocolate-mousse",cat:[10],type:0},{title:"food dessert sweet pancake pastry waffle",name:"waffle",cat:[10],type:0},{title:"dessert sweet pastry crepe crepes wrap",name:"crepe",cat:[10],type:0},{title:"cake dessert bakery pancake pastry crumpet waffle",name:"crumpet",cat:[10],type:0},{title:"dessert bread loaf bakery baking brioche pastry",name:"brioche",cat:[10],type:0},{title:"food nature healthy leaf organic",name:"organic",cat:[1,10],type:0},{title:"glass water drink beverage potable",name:"glass-water",cat:[10],type:0},{title:"food vegetable tomato",name:"tomato",cat:[10],type:0},{title:"glass drink healthy beverage leaf detox",name:"detox",cat:[10],type:0},{title:"food sandwich breakfast bread toast fastfood snack",name:"snack",cat:[10],type:0},{title:"fork vegetable carrot diet vegan vegetarian",name:"vegan",cat:[10],type:0},{title:"weight food calendar diet plan meals loss",name:"diet-plan",cat:[10,12,21],type:0},{title:"measure scale weight food kitchen",name:"food-scale",cat:[10,12],type:0},{title:"fruit drink healthy beverage orange juice fresh tropicana",name:"juice",cat:[10],type:0},{title:"food healthy diet plan wellness nutrition nutritional meals",name:"nutrition",cat:[10,12,21],type:0},{title:"energy fire sport fuel flame fitness cardio calorie calories",name:"energy",cat:[10,21],type:0},{title:"apple food health diet plan eating nutrition",name:"diet",cat:[10,12,21],type:0},{title:"list add create todo recipe ingredients",name:"recipe-create",cat:[10],type:0},{title:"list todo recipe ingredients",name:"recipe",cat:[10],type:0},{title:"food healthy vegetable diet salad lettuce",name:"salad",cat:[10],type:0},{title:"schedule time check alarm calendar appointment event reservation booking confirmation confirm",name:"event-confirm",cat:[27],type:0},{title:"schedule new time add create alarm calendar appointment event reservation booking",name:"event-create",cat:[27],type:0},{title:"list bill cheque payment price invoice receipt prices",name:"bill",cat:[3,10,19],type:0},{title:"list glass menu alcohol drink cocktail wine",name:"drink-list",cat:[10],type:0},{title:"schedule time alarm calendar appointment event opening times hours",name:"opening-times",cat:[10,27],type:0},{title:"food turkey meat chicken poultry dinner roast",name:"roast-chicken",cat:[10],type:0},{title:"food hazelnut nut nuts allergy protein",name:"hazelnut",cat:[10],type:0},{title:"food service dish course tray staff waiter",name:"dish",cat:[10],type:0},{title:"list food menu bottle alcohol drink cocktail wine",name:"wine-list",cat:[10],type:0},{title:"list price food menu catalog catalogue restaurant brochure prices flyer promotion",name:"restaurant-menu",cat:[10],type:0},{title:"restaurant reservation booking",name:"reservation",cat:[10],type:0},{title:"hat cooking chef restaurant cook",name:"chef",cat:[10],type:0},{title:"bar view summer restaurant cafe terrace rooftop",name:"terrace",cat:[10,11],type:0},{title:"fork food cutlery knife restaurant dinner eating",name:"cutlery",cat:[10],type:0},{title:"food coffee espresso organic bean caffeine cafe",name:"coffee-bean",cat:[10],type:0},{title:"food fruit healthy organic avocado",name:"avocado",cat:[10],type:0},{title:"dessert sweet breakfast bakery pancake syrup baking",name:"pancake",cat:[10],type:0},{title:"food meat pork bbq grill bone beef steak rib butcher",name:"steak-2",cat:[10],type:0},{title:"rotate circle loading progress wait interactive spinner rotation loader",name:"l-circles",cat:[14],type:0},{title:"rotate loading progress wait interactive spinner rotation loader",name:"l-circle",cat:[14],type:0},{title:"chat description srt accessibility bubble subs subtitles subtitle caption",name:"subtitles",cat:[16],type:0},{title:"arrow arrows horizontal enlarge expand fullscreen increase maximize window zoom fit full measure resize responsive scale size width",name:"resize-h",cat:[2],type:0},{title:"arrow arrows enlarge expand fullscreen increase maximize window zoom vertical fit full measure resize responsive scale size height",name:"resize-v",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom center",name:"zoom-triangles",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom center",name:"zoom-e",cat:[2,16],type:0},{title:"move drag tool hand pan privacy",name:"tool-hand",cat:[5],type:0},{title:"select tool rectangle selection marquee",name:"tool-select",cat:[5],type:0},{title:"ui system design template components patterns guidelines component module",name:"components",cat:[5,27],type:0},{title:"system columns css grid flexbox rows",name:"grid-system",cat:[5],type:0},{title:"tool rectangle mask clip clipping masking rect",name:"mask-rect",cat:[5],type:0},{title:"circle tool oval mask clip clipping masking",name:"mask-oval",cat:[5],type:0},{title:"image material background texture img pattern",name:"texture",cat:[5],type:0},{title:"tool filter blur fuzzy gaussian",name:"tool-blur",cat:[5,16],type:0},{title:"scale size height dimension big large dimensions tall",name:"size-large",cat:[5,19],type:0},{title:"scale size height dimension medium dimensions average",name:"size-medium",cat:[5,19],type:0},{title:"scale size height dimension small dimensions",name:"size-small",cat:[5,19],type:0},{title:"git fork programming push commit pull svn",name:"git-commit",cat:[5],type:0},{title:"ui system library design block components modules patterns guidelines styleguide",name:"design-system",cat:[5,27],type:0},{title:"design shape shapes custom",name:"shape-custom",cat:[5],type:0},{title:"arrow design shape shapes",name:"shape-arrow",cat:[5],type:0},{title:"line design shape shapes",name:"shape-line",cat:[5],type:0},{title:"design shape style shapes star",name:"shape-star",cat:[5],type:0},{title:"design shape shapes polygon",name:"shape-polygon-2",cat:[5],type:0},{title:"design shape rectangle square shapes",name:"shape-rectangle",cat:[5],type:0},{title:"circle design shape oval shapes",name:"shape-oval",cat:[5],type:0},{title:"tool design shape triangle shapes",name:"shape-triangle-2",cat:[5],type:0},{title:"position location target focus distance margin static",name:"position",cat:[5],type:0},{title:"corner design angle border radius",name:"border-radius",cat:[5],type:0},{title:"css style border outer",name:"border",cat:[5],type:0},{title:"scale tool edit transform reshape 2d",name:"transform-2d",cat:[5],type:0},{title:"layer layers design card style palette cards",name:"cards",cat:[5],type:0},{title:"play connection network tool connect animation wireframe link wire prototype usability concept",name:"prototype",cat:[5],type:0},{title:"tool color gradient mask background colour linear fade luma",name:"gradient",cat:[5],type:0},{title:"safety car vehicle warning secure airbag",name:"airbag",cat:[25],type:0},{title:"woman man walk walking footpath walks moving",name:"walk",cat:[25],type:0},{title:"sign car vehicle space parking garage",name:"parking",cat:[25,26],type:0},{title:"switch start power on engine run",name:"engine-start",cat:[22,25],type:0},{title:"can station drip oil engine lubrication",name:"oil",cat:[7,25],type:0},{title:"visibility smart eye signal signals parking sensors driverless",name:"parking-sensors",cat:[25,22],type:0},{title:"seat chair vehicle seating seats",name:"seat",cat:[25],type:0},{title:"fan air conditioner cooler ventilation ventilator",name:"ventilation",cat:[25],type:0},{title:"stop car wheel disk brake brakes pedal discs",name:"brakes",cat:[25],type:0},{title:"open car vehicle trunk",name:"trunk",cat:[25],type:0},{title:"energy electric plug smart battery charger plugin hybrid",name:"hybrid",cat:[22,25,7],type:0},{title:"window car air conditioner ventilation",name:"car-ventilation",cat:[25],type:0},{title:"window wash washing car washer carwash fluid",name:"washing-fluid",cat:[25],type:0},{title:"car radiator auto engine diesel turbo piston cylinder combustion cylinders mechanic motor",name:"engine",cat:[25],type:0},{title:"inside door open car locked entrance doors",name:"car-door",cat:[25],type:0},{title:"light car indicator lights sidelight beam",name:"car-lights",cat:[25],type:0},{title:"drive car wheel gear cog tire traction",name:"wheel-2",cat:[25],type:0},{title:"controller car wheel gear steering tire driver",name:"wheel",cat:[25],type:0},{title:"car vehicle wheel rim part",name:"rim",cat:[25],type:0},{title:"energy power electric electricity charge charging level battery ion lithium rechargeable status",name:"battery-level",cat:[7,22,25],type:0},{title:"security seat safety belt car locked protection transportation accident seatbelt",name:"seatbelt",cat:[25],type:0},{title:"fuel station oil gas petrol gasoline diesel",name:"fuel-2",cat:[7,25],type:0},{title:"technology calibration smart sensor sensors alarms detector ignition cmos analyzer",name:"sensor",cat:[22,25],type:0},{title:"danger car transport vehicle auto transportation crash automobile broken insurance accident collision damage",name:"car-accident",cat:[25],type:0},{title:"wash clean car transport vehicle auto transportation automobile carwash",name:"car-wash",cat:[25],type:0},{title:"connect technology smart car vehicle signal wifi",name:"car-connect",cat:[25],type:0},{title:"sign car vehicle auto parking garage rental valet slot",name:"car-parking",cat:[25],type:0},{title:"transport cycle transportation bicycle bike cyclist cycling",name:"cyclist",cat:[21,25],type:0},{title:"transport cycle transportation bicycle bike cyclist cycling",name:"bike-2",cat:[21,25],type:0},{title:"sign key email website address at",name:"at-sign",cat:[23,27],type:0},{title:"delete remove schedule time volume minus alarm timer sound alert cancel event mute negative quiet silence",name:"alarm-delete",cat:[27],type:0},{title:"communication new answer chat comment conversation dialog message messages reply speaking talk note add create plus addition bubble",name:"comment-add",cat:[27],type:0},{title:"data schedule time chart timer events event plan history timeline past",name:"timeline",cat:[5,27],type:0},{title:"schedule new time add create plus addition alarm timer positive alert track event tracking",name:"alarm-add",cat:[27],type:0},{title:"time chart graph management timer project gantt timeline",name:"gantt",cat:[27],type:0},{title:"delete remove award favorite favourite minus love romantic like heart cancel valentine dating relationship romance negative",name:"fav-remove",cat:[27],type:0},{title:"file increase new add create plus addition positive",name:"file-add",cat:[8,27],type:0},{title:"file decrease delete remove minus cancel deletion less removal subtract",name:"file-delete",cat:[27,8],type:0},{title:"media web news content marketing blogger wordpress article blog cms feed documentation copywriting",name:"blog",cat:[27],type:0},{title:"left right interface browser layout page website boxes grid mockup site table tile wireframe sidebar webpage",name:"sidebar",cat:[5,27],type:0},{title:"enlarge expand fullscreen increase maximize zoom full scale size display computer monitor screen fullsize large",name:"full-screen",cat:[16,27],type:0},{title:"network display development device mirror duplicate cast desktop mirroring monitor screen streaming wireless",name:"mirror-2",cat:[5,27],type:0},{title:"rotate loading progress tool wait spinner rotation loader",name:"refresh-02",cat:[14,5],type:0},{title:"loading progress wait spinner loader",name:"refresh-01",cat:[14],type:0},{title:"loading progress wait spinner loader",name:"dots",cat:[14],type:0},{title:"loading progress wait spinner loader",name:"circle",cat:[14],type:0},{title:"loading progress wait spinner loader",name:"bars",cat:[14],type:0},{title:"user business finance account avatar businessman contact male suit tie",name:"business-contact-85",cat:[3],type:0},{title:"arrow arrows move out enlarge expand fullscreen increase maximize reach window zoom",name:"zoom",cat:[2],type:0},{title:"ui user interface zoom glass view search find lens magnify explore lookup magnifier magnifying",name:"zoom-split",cat:[27],type:0},{title:"out ui user interface zoom glass view search minus find lens magnify explore lookup magnifier magnifying recede reduce",name:"zoom-split-out",cat:[27],type:0},{title:"ui user interface enlarge increase zoom in glass plus view search find lens magnify explore lookup magnifier magnifying approach",name:"zoom-split-in",cat:[27],type:0},{title:"out ui user interface zoom glass view search minus find lens magnify explore lookup magnifier magnifying recede reduce",name:"zoom-out",cat:[27],type:0},{title:"ui user interface enlarge increase zoom in glass plus view search find lens magnify explore lookup magnifier magnifying approach",name:"zoom-in",cat:[27],type:0},{title:"ui user interface zoom glass view search find lens magnify explore lookup magnifier magnifying",name:"zoom-bold",cat:[27],type:0},{title:"out ui user interface zoom glass view search minus find lens magnify explore lookup magnifier magnifying recede reduce",name:"zoom-bold-out",cat:[27],type:0},{title:"ui user interface enlarge increase zoom in glass plus view search find lens magnify explore lookup magnifier magnifying approach",name:"zoom-bold-in",cat:[27],type:0},{title:"arrow arrows direction move out directions enlarge expand fullscreen increase maximize reach window zoom",name:"zoom-100",cat:[2],type:0},{title:"arrow arrows direction move out directions enlarge expand fullscreen increase maximize reach window zoom tool",name:"zoom-99",cat:[2,5],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom center",name:"zoom-88",cat:[2],type:0},{title:"zoom glass view search find lens magnify explore lookup magnifier magnifying",name:"zoom-2",cat:[27,5],type:0},{title:"holidays halloween monster death zombie",name:"zombie",cat:[13],type:0},{title:"file folder document extension archive zip compressed zipped",name:"zip-55",cat:[8],type:0},{title:"file folder document extension archive zip compressed zipped",name:"zip-54",cat:[8],type:0},{title:"food animal nature pet bones dog domestic",name:"food-dog",cat:[1],type:0},{title:"user business finance account avatar businessman contact male suit tie eyewear glasses",name:"business-contact-89",cat:[3],type:0},{title:"user business finance account avatar businessman contact suit female woman",name:"contact-88",cat:[3],type:0},{title:"user business finance account avatar businessman contact suit female woman",name:"contact-87",cat:[3],type:0},{title:"user business finance account avatar businessman contact male suit tie",name:"contact-86",cat:[3],type:0},{title:"switch ui user interface control preferences options settings configuration setting switcher switches toggle tuner",name:"ui-04",cat:[27],type:0},{title:"switch ui user interface control preferences options settings configuration setting switcher switches toggle tuner",name:"ui-03",cat:[27],type:0},{title:"input cursor tool paragraph text type typography edit write mouse point pointer editing insert typing writing area character textarea",name:"text-2",cat:[23,5],type:0},{title:"navigation gps location energy environment travel earth globe world map planet maps",name:"world",cat:[7,15,26],type:0},{title:"direction navigation position gps location earth globe world map pin place marker planet maps",name:"world-pin",cat:[15],type:0},{title:"earth globe world",name:"world-2",cat:[26],type:0},{title:"direction navigation position gps location earth globe world map pin place marker planet maps",name:"worl-marker",cat:[15],type:0},{title:"object ball cat wool",name:"wool-ball",cat:[1],type:0},{title:"log animal nature forest trees material wood wooden",name:"wood",cat:[1],type:0},{title:"user profile account avatar contact female woman person users member human friend follower",name:"woman",cat:[12,28],type:0},{title:"up user profile account avatar contact female woman person users member human friend follower body",name:"woman-up",cat:[28],type:0},{title:"user sign male female woman man healthcare health medical users symbol gender guy sex straight couple girl hetero heterosexual",name:"woman-man",cat:[12,28],type:0},{title:"down user profile account avatar contact female woman person users member human friend follower body",name:"woman-down",cat:[28],type:0},{title:"user profile account avatar contact female woman person users member human friend follower",name:"woman-25",cat:[28],type:0},{title:"user profile account avatar contact female woman person users member human friend follower",name:"woman-24",cat:[28],type:0},{title:"user sign female woman symbol gender sex girl",name:"woman-21",cat:[12,28],type:0},{title:"user profile account avatar contact female woman person users member human friend follower",name:"woman-2",cat:[28],type:0},{title:"holidays halloween animal nature scary monster face werewolf wolf",name:"wolf",cat:[1,13],type:0},{title:"hat holidays halloween magic scary witch",name:"witch-hat",cat:[13],type:0},{title:"emoticon smiley cheerful happy smile positive satisfied wink",name:"wink-69",cat:[6],type:0},{title:"emoticon smiley cheerful happy smile positive satisfied wink",name:"wink-11",cat:[6],type:0},{title:"emoticon smiley cheerful happy smile positive satisfied wink",name:"wink-06",cat:[6],type:0},{title:"arrow left bottom move out interface enlarge expand fullscreen increase maximize reach window zoom application browser windows",name:"window-zoom-out",cat:[2],type:0},{title:"arrow right move out top interface enlarge expand fullscreen increase maximize reach window zoom application browser windows",name:"window-zoom-in",cat:[2],type:0},{title:"responsive browser layout app tab design internet web development mobile programming website mockup site wireframe webpage code coding develop first",name:"window-responsive",cat:[5],type:0},{title:"browser layout document paragraph text app tab list design internet web development page picture website image photo boxes grid masonry mockup site table tile view wireframe header sidebar webpage content description",name:"window-paragraph",cat:[5],type:0},{title:"browser layout app tab list design internet web development page programming website html boxes grid masonry mockup site table tile view wireframe header sidebar webpage code coding dev develop",name:"window-dev",cat:[5],type:0},{title:"ui user interface window close exit application browser windows delete remove app internet web page frame webpage minus widget software online dock removal plugin",name:"window-delete",cat:[27],type:0},{title:"line browser layout app tab list design internet web development page programming website html boxes grid masonry mockup site table tile view wireframe header sidebar webpage code coding dev develop command console terminal",name:"window-code",cat:[5],type:0},{title:"ui user interface window application browser windows app new internet web page add create plus frame webpage addition widget software online dock plugin",name:"window-add",cat:[27],type:0},{title:"weather energy environment power recharge recharger turbine wheel wind windmill windy",name:"wind",cat:[7,29],type:0},{title:"wind windy",name:"wind-2",cat:[29],type:0},{title:"connection communication network internet tech technology wireless label signal pulse radar online wifi broadband connectivity hotspot reception router sensor signals wave",name:"wifi",cat:[22],type:0},{title:"connection communication network internet tech technology device wireless signal online wifi broadband connectivity hotspot reception router sensor signals antenna lan modem",name:"wifi-router",cat:[22],type:0},{title:"connection lock security communication network internet safe tech technology wireless signal padlock protection secure pulse radar online wifi broadband connectivity hotspot reception router sensor signals wave",name:"wifi-protected",cat:[22],type:0},{title:"connection communication network internet tech technology wireless signal pulse disabled radar off online wifi broadband connectivity hotspot reception router sensor signals wave disconnected offline",name:"wifi-off",cat:[22],type:0},{title:"connection communication network internet tech technology wireless label signal pulse radar online wifi broadband connectivity hotspot reception router sensor signals wave",name:"wifi-2",cat:[22],type:0},{title:"ui user interface window application app web frame widget dock plugin",name:"widget",cat:[27],type:0},{title:"travel house america white monument government independence president washington",name:"white-house",cat:[26],type:0},{title:"sport game alarm notification foul referee whistle",name:"whistle",cat:[21],type:0},{title:"man emoticon smiley moustache whisker",name:"whiskers",cat:[6],type:0},{title:"mix food cooking blend tools utensils whisk",name:"whisk",cat:[10],type:0},{title:"healthcare health medical disabled wheelchair",name:"wheelchair",cat:[12],type:0},{title:"emoticon smiley concern confused puzzled what",name:"what",cat:[6],type:0},{title:"scale weight furniture healthcare health medical diet",name:"weight",cat:[11,12],type:0},{title:"animal nature healthcare health medical drugs weed",name:"weed",cat:[1,12],type:0},{title:"ui user interface browser layout app tab list design internet web development page website boxes grid masonry mockup site table tile view wireframe header sidebar webpage",name:"webpage",cat:[5,27],type:0},{title:"browser layout app tab design internet web development website mockup site wireframe webpage",name:"webpage-2",cat:[27],type:0},{title:"video conference chat web tech technology camera record cam surveillance recorder webcam",name:"webcam-39",cat:[22],type:0},{title:"video conference chat web tech technology camera record cam surveillance recorder webcam",name:"webcam-38",cat:[22],type:0},{title:"browser layout design internet web development programming website create site code coding develop project service webdesign",name:"web-design",cat:[5],type:0},{title:"user sign person users bathroom loo restroom toilet human couple lavatory sanitary",name:"wc",cat:[28],type:0},{title:"food fruit slice healthy melon watermelon",name:"watermelon",cat:[10],type:0},{title:"energy environment ecology saver green respect sustainability drops gardening water",name:"water",cat:[7],type:0},{title:"energy environment ecology green respect sustainability drops water sink",name:"water-sink",cat:[7],type:0},{title:"save energy environment drop hand ecology green planet water",name:"water-hand",cat:[7],type:0},{title:"clock time watch accessory tech technology apple device smart alarm iwatch timer track digital tracking wristwatch",name:"watch",cat:[22],type:0},{title:"clock time watch accessory tech technology device smart alarm timer track digital tracking wristwatch",name:"watch-time",cat:[22],type:0},{title:"responsive clock schedule tool app time watch design android apple development device ios code coding develop tag smart alarm iwatch smartwatch timer wearable",name:"watch-dev",cat:[5],type:0},{title:"clock time watch clothes accessory tech technology device smart alarm timer track digital tracking wristwatch",name:"watch-circle",cat:[4,22],type:0},{title:"arrows energy environment clean danger virus ecology green toxic waste cycle garbage recycle recycling bin envir-64px-glyph_waste trash",name:"waste",cat:[7],type:0},{title:"arrows energy environment clean ecology green waste cycle garbage recycle recycling bin trash",name:"waste-recycling",cat:[7],type:0},{title:"energy environment danger virus atomic emergency radiation sickness toxic waste",name:"waste-danger",cat:[7],type:0},{title:"machine furniture clothes accessory laundry care cleaning clothing wash washing mashine washer",name:"wash",cat:[4,11],type:0},{title:"machine clothes accessory laundry care cleaning clothing wash washing",name:"wash-hand",cat:[4],type:0},{title:"machine clothes accessory laundry care cleaning clothing wash washing 90",name:"wash-90",cat:[4],type:0},{title:"machine clothes accessory laundry care cleaning clothing wash washing 60",name:"wash-60",cat:[4],type:0},{title:"machine clothes accessory laundry care cleaning clothing wash washing 30",name:"wash-30",cat:[4],type:0},{title:"laundry wash washing mashine washer",name:"wash-2",cat:[11],type:0},{title:"furniture cabinet armoire closet wardrobe",name:"wardrobe",cat:[11],type:0},{title:"select tool design development editing filter photo magic stick effect enhance fairy fairytail fantasy juggle magician trick wand wish wizard",name:"wand-11",cat:[5],type:0},{title:"change shopping cash payment money coin pay wallet purse profit spend",name:"wallet",cat:[19],type:0},{title:"business finance cash payment money pay wallet",name:"wallet-90",cat:[3],type:0},{title:"business finance shopping cash payment money pay wallet",name:"wallet-44",cat:[3,19],type:0},{title:"business finance shopping cash payment money pay wallet",name:"wallet-43",cat:[3,19],type:0},{title:"connection security communication network safe tech technology secure private virtual vpn",name:"vpn",cat:[22],type:0},{title:"up media volume multimedia audio sound speaker",name:"volume-up",cat:[16],type:0},{title:"media volume multimedia audio sound speaker mute",name:"volume-off",cat:[16],type:0},{title:"down media volume multimedia audio sound speaker",name:"volume-down",cat:[16],type:0},{title:"media ban volume multimedia audio sound speaker mute",name:"volume-ban",cat:[16],type:0},{title:"media volume multimedia audio sound speaker",name:"volume-98",cat:[16],type:0},{title:"media volume multimedia audio sound speaker",name:"volume-97",cat:[16],type:0},{title:"media volume multimedia audio sound speaker mute",name:"volume-93",cat:[16],type:0},{title:"sport game beach ball volley volleyball",name:"volleyball",cat:[21],type:0},{title:"user profile avatar contact person volume sound users member human speaker record voice recorder speach speak",name:"voice-record",cat:[28],type:0},{title:"animal nature bug insect emoticon smiley disease virus",name:"virus",cat:[1,6],type:0},{title:"media video holidays film movie camera multimedia videocamera",name:"videocamera-72",cat:[13,16],type:0},{title:"media video film movie camera multimedia videocamera",name:"videocamera-71",cat:[16],type:0},{title:"play media video film movie multimedia",name:"video-67",cat:[16],type:0},{title:"media video film movie camera multimedia videocamera",name:"video-66",cat:[16],type:0},{title:"media video film movie camera multimedia videocamera",name:"video-65",cat:[16],type:0},{title:"play media video text film movie editing camera multimedia",name:"video-64",cat:[16,23],type:0},{title:"clothes accessory wear underwear undershirt vest",name:"vest",cat:[4],type:0},{title:"sport clothes accessory wear undershirt vest",name:"vest-sport",cat:[4,21],type:0},{title:"suit wear food apron cooking vest chef uniform",name:"vest-31",cat:[10],type:0},{title:"vehicle transportation scooter vespa",name:"vespa",cat:[25],type:0},{title:"vehicle transportation scooter vespa",name:"vespa-front",cat:[25],type:0},{title:"curve tool format pen edit shape create point editing vector anchor arc curves graphics points",name:"vector",cat:[5],type:0},{title:"file document pen edit pencil write editing draft vector",name:"vector-2",cat:[8],type:0},{title:"holidays halloween evil horror scary monster dracula vampire",name:"vampire",cat:[13],type:0},{title:"file share user communication post folder document profile account person paper item users member",name:"user",cat:[8,28],type:0},{title:"sport water pool aquatics swimmer swimming",name:"user-swim",cat:[21],type:0},{title:"sport snow boarding snowboard",name:"user-snowboard",cat:[21],type:0},{title:"sport training exercise workout jogging marathon running",name:"user-run",cat:[21],type:0},{title:"sport health meditation stretching pilates yoga",name:"user-meditation",cat:[21],type:0},{title:"sport game rock climbing mountain activity",name:"user-climb",cat:[21],type:0},{title:"balance sport health exercise workout meditation stretching",name:"user-balance",cat:[21],type:0},{title:"storage design pen connect tech technology cable development device drive flash memory port portable removable stick usb",name:"usb",cat:[5,22],type:0},{title:"emoticon angry furious smiley unhappy upset",name:"upset-14",cat:[6],type:0},{title:"emoticon angry furious smiley unhappy upset",name:"upset-13",cat:[6],type:0},{title:"arrow direction top up cloud data file input save share storage sync transfer backup ftp hosting import server upload folder document paper item",name:"upload",cat:[2,8],type:0},{title:"arrow direction top up cloud data file input save share storage sync transfer backup ftp hosting import server upload folder document paper item",name:"upload-2",cat:[2,8],type:0},{title:"arrow direction expand control git version combine join merge pointing together unify unite",name:"unite",cat:[2],type:0},{title:"arrow direction expand control git version combine join merge pointing together unify unite",name:"unite-round",cat:[2],type:0},{title:"files file separate split group document layer layers note design report development copy paper clone copies documents duplicate paste apart break deselect ungroup",name:"ungroup",cat:[5],type:0},{title:"arrow back curve invert left repeat rotate undo backward sync infinite infinity load loading loop process refresh reload replay update tool dotted rotation",name:"undo-29",cat:[2,5],type:0},{title:"arrow back curve invert left redo repeat rotate undo backward",name:"undo-25",cat:[2],type:0},{title:"woman clothes accessory wear underwear",name:"underwear",cat:[4],type:0},{title:"clothes accessory wear underwear men",name:"underwear-man",cat:[4],type:0},{title:"font text type typography style editing underline formatting",name:"underline",cat:[23],type:0},{title:"travel beach object umbrella",name:"umbrella-14",cat:[26],type:0},{title:"weather object rain umbrella",name:"umbrella-13",cat:[29],type:0},{title:"video display furniture shelf computer tech technology device film movie desktop monitor screen television tv personal entertainment workstation",name:"tv",cat:[11,22],type:0},{title:"video display tech technology device film movie screen television tv retro entertainment old crt",name:"tv-old",cat:[22],type:0},{title:"video display computer device film movie desktop monitor screen television tv personal entertainment workstation",name:"tv-2",cat:[22],type:0},{title:"animal nature sea slow turtle",name:"turtle",cat:[1],type:0},{title:"sport clothes accessory shirt wear sleeve tshirt short tee",name:"tshirt-sport",cat:[4,21],type:0},{title:"clothes accessory shirt wear sleeve tshirt half short tee",name:"tshirt-54",cat:[4],type:0},{title:"clothes accessory shirt wear sleeve tshirt half short tee",name:"tshirt-53",cat:[4],type:0},{title:"delivery vehicle transportation truck",name:"truck-front",cat:[25],type:0},{title:"sport achievement award medal prize winner cup champion trophy victory",name:"trophy",cat:[21],type:0},{title:"travel suitcase cart trolley baggage luggage",name:"trolley",cat:[26],type:0},{title:"media accessory photo camera multimedia tripod",name:"tripod",cat:[16],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards file upload",name:"triangle-up",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"triangle-up-64",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"triangle-up-19",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"triangle-right",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"triangle-right-62",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards play",name:"triangle-right-17",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"triangle-left",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"triangle-left-63",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"triangle-left-18",cat:[2],type:0},{title:"arrow bottom descend downward download file",name:"triangle-down",cat:[2],type:0},{title:"arrow bottom descend down downward move",name:"triangle-down-65",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"triangle-down-20",cat:[2],type:0},{title:"arrow line direction keyboard move navigation out position top up upward upwards increase progress diagram sales stats trend visits growth",name:"trend-up",cat:[2],type:0},{title:"arrow line down progress decrease diagram sales shrink stats trend visits",name:"trend-down",cat:[2],type:0},{title:"holidays decoration tree christmas",name:"tree",cat:[13],type:0},{title:"holidays ball decoration tree christmas",name:"tree-ball",cat:[13],type:0},{title:"environment plant animal nature summer ecology green tree forest trees flora spring",name:"tree-03",cat:[1],type:0},{title:"environment plant animal nature summer ecology green tree forest trees flora spring",name:"tree-02",cat:[1],type:0},{title:"energy environment plant animal nature summer ecology green tree forest trees flora spring",name:"tree-01",cat:[1,7],type:0},{title:"direction navigation gps location path guide map address parchment maps track route street hidden secret treasure",name:"treasure-map-40",cat:[15],type:0},{title:"direction navigation gps location path guide map address maps track route street hidden secret treasure",name:"treasure-map-21",cat:[15],type:0},{title:"ui user interface delete remove furniture can waste garbage recycle recycling bin trash dump dustbin junk rubbish trashcan",name:"trash",cat:[11,27],type:0},{title:"ui user interface delete remove can waste garbage recycle recycling bin trash dump dustbin junk rubbish trashcan",name:"trash-simple",cat:[27],type:0},{title:"ui user interface delete remove can waste garbage recycle recycling bin trash dump dustbin junk rubbish trashcan",name:"trash-round",cat:[27],type:0},{title:"resize scale design development shape animation rectangle transform translate reshape",name:"transform",cat:[5],type:0},{title:"orientation resize scale center box design development shape animation transform translate grid reshape origin",name:"transform-origin",cat:[5],type:0},{title:"vehicle transportation bus train tram",name:"tram",cat:[25],type:0},{title:"travel vehicle transportation train",name:"train",cat:[25],type:0},{title:"vehicle speed transportation train",name:"train-speed",cat:[25],type:0},{title:"vehicle farm transportation tractor",name:"tractor",cat:[25],type:0},{title:"font text type typography style editing tracking formatting",name:"tracking",cat:[23],type:0},{title:"box shopping delivery gift package present surprise track donation tracking",name:"track-delivery",cat:[19],type:0},{title:"media hand tap photo camera touch multimedia",name:"touch",cat:[16],type:0},{title:"healthcare health medical tooth",name:"tooth",cat:[12],type:0},{title:"furniture bathroom loo restroom toilet wc",name:"toilet",cat:[11],type:0},{title:"furniture paper roll bathroom toilet tissue",name:"toilet-paper",cat:[11],type:0},{title:"file form document list note notebook notes pad design report check notepad development page paper mark checklist tasks todo clipboard checkmark complete completed done marks task",name:"todo",cat:[5],type:0},{title:"arrow progress whole version 24h availability available career clock daily day every freelance freelancer monthly schedule weekly yearly time watch wait alarm timer alert appointment countdown track event tracking deadline hour history",name:"time",cat:[2,27,5],type:0},{title:"ui user interface measure clock schedule time watch sport alarm timer speed alert countdown track event tracking productivity deadline hour stopwatch history chronometer lap",name:"time-countdown",cat:[21,27],type:0},{title:"ui user interface clock schedule time watch furniture alarm timer alert track event tracking deadline hour history",name:"time-clock",cat:[11,27],type:0},{title:"ui user interface clock schedule time watch furniture alarm timer alert track event tracking deadline hour history",name:"time-alarm",cat:[11,27],type:0},{title:"progress availability available clock daily day monthly schedule weekly yearly time watch wait alarm timer alert appointment countdown track event tracking deadline hour history",name:"time-3",cat:[27],type:0},{title:"availability available clock daily day every monthly schedule weekly yearly document time watch wait paper alarm timer alert appointment countdown track event tracking deadline hour history",name:"time-2",cat:[8],type:0},{title:"line ui user interface layout list shape website gallery boxes column grid mockup row table tile view wireframe",name:"tile-56",cat:[27],type:0},{title:"line ui user interface layout list shape website gallery boxes column grid mockup row table tile view wireframe",name:"tile-55",cat:[27],type:0},{title:"tie clothes accessory holidays wear bow classic",name:"tie-bow",cat:[4,13],type:0},{title:"business finance tie dress",name:"tie-02",cat:[3],type:0},{title:"business finance tie clothes accessory dress",name:"tie-01",cat:[3,4],type:0},{title:"media movie multimedia event show ticket",name:"ticket-76",cat:[16],type:0},{title:"media sport movie multimedia event show ticket",name:"ticket-75",cat:[16,21],type:0},{title:"input cursor tool font format paragraph text type typography education school design edit write development mouse point pointer editing insert typing writing editor area character textarea letter alphabet alphabetic capital typeface",name:"text",cat:[5,18,23],type:0},{title:"sport ball tennis equipment racket",name:"tennis",cat:[21],type:0},{title:"sport ball tennis equipment",name:"tennis-ball",cat:[21],type:0},{title:"travel temple building religious",name:"temple-25",cat:[26],type:0},{title:"weather energy environment healthcare health medical temperature thermometer",name:"temperature-24",cat:[7,12,29],type:0},{title:"weather energy environment food healthcare health medical temperature thermometer",name:"temperature-23",cat:[7,10,12,29],type:0},{title:"food drink beverage hot cup mug tea",name:"tea",cat:[10],type:0},{title:"arrow ui user interface business finance dartboard darts goal goals target targeting eye aim marketing objective archery bull's bullseye motive purpose",name:"target",cat:[27],type:0},{title:"media music holidays multimedia audio retro tape",name:"tape",cat:[13,16],type:0},{title:"hand mobile fingers gesture tap screen touch one gestures interactive",name:"tap-02",cat:[24],type:0},{title:"hand mobile fingers gesture tap screen touch one gestures interactive",name:"tap-01",cat:[24],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"tail-up",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"tail-triangle-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"tail-triangle-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"tail-triangle-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"tail-triangle-down",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"tail-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"tail-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"tail-down",cat:[2],type:0},{title:"ui user interface organize shopping price discount ecommerce sale category label tag store attribute",name:"tag",cat:[19,27],type:0},{title:"organize time shopping price discount ecommerce sale category label tag countdown store attribute",name:"tag-sale",cat:[19],type:0},{title:"delete remove organize shopping price discount ecommerce sale category label tag cancel store attribute",name:"tag-remove",cat:[19],type:0},{title:"organize shopping price discount ecommerce sale category label favorite favourite tag love like heart store attribute loyalty",name:"tag-loyalty",cat:[19],type:0},{title:"ui user interface organize shopping price discount ecommerce sale category label tag store attribute",name:"tag-line",cat:[19,27],type:0},{title:"organize shopping price discount ecommerce sale category label tag store attribute",name:"tag-cut",cat:[19],type:0},{title:"ui user interface organize shopping price discount ecommerce sale category label tag store attribute",name:"tag-content",cat:[19,27],type:0},{title:"organize success select shopping check price discount ecommerce sale category selected label tag accept checked store attribute",name:"tag-check",cat:[19],type:0},{title:"organize new shopping price discount ecommerce sale add plus category label tag store attribute",name:"tag-add",cat:[19],type:0},{title:"organize shopping price discount ecommerce sale category label tag store attribute",name:"tag-2",cat:[27],type:0},{title:"sport strategy coach planning tactic",name:"tactic",cat:[21,3],type:0},{title:"food mexico fastfood mexican tacos tortilla wrap",name:"tacos",cat:[10],type:0},{title:"art drawing design pen tech technology write device draw graphic touch tablet stylus wacom",name:"tablet",cat:[5,22],type:0},{title:"tech technology android apple device mobile ipad ios touch tablet touchscreen toolbar",name:"tablet-toolbar",cat:[22],type:0},{title:"book tech technology amazon read device mobile ipad touch tablet ebook touchscreen reader ereader kindle",name:"tablet-reader-42",cat:[22],type:0},{title:"book tech technology amazon read device mobile ipad touch tablet ebook touchscreen reader ereader kindle",name:"tablet-reader-31",cat:[22],type:0},{title:"responsive display layout design web development device mobile phone smartphone ipad iphone website screen develop touch first devices tablet",name:"tablet-mobile",cat:[5],type:0},{title:"tech technology android apple device mobile ipad ios touch tablet touchscreen",name:"tablet-button",cat:[22],type:0},{title:"book amazon read device mobile ipad touch tablet ebook touchscreen reader ereader kindle",name:"tablet-2",cat:[22],type:0},{title:"furniture table desk room dining",name:"table",cat:[11],type:0},{title:"arrow right arrows move navigation ui user interface lines list bars menu options settings blocks table slide",name:"table-right",cat:[27],type:0},{title:"arrow left arrows move navigation ui user interface lines list bars menu options settings blocks table slide",name:"table-left",cat:[27],type:0},{title:"arrow download input save import user enter entry in inbox inside lock log login password security sign update way system",name:"system-update",cat:[2],type:0},{title:"needle healthcare health medical syringe",name:"syringe",cat:[12],type:0},{title:"data sync transfer connection update connect tech technology device mobile phone smartphone synchronization synchronize syncing",name:"sync",cat:[22],type:0},{title:"tool travel pocket knife swiss compact screw",name:"swiss-knife",cat:[26],type:0},{title:"up hand fingers gesture touch one gestures swipe",name:"swipe-up",cat:[24],type:0},{title:"right hand fingers gesture touch one gestures swipe",name:"swipe-right",cat:[24],type:0},{title:"left hand fingers gesture touch one gestures swipe",name:"swipe-left",cat:[24],type:0},{title:"bottom down hand fingers gesture touch one gestures swipe",name:"swipe-bottom",cat:[24],type:0},{title:"sport travel woman clothes accessory wear swimming swimsuit swimwear bikini",name:"swimwear",cat:[4,21,26],type:0},{title:"sport travel clothes accessory man wear swimming swimsuit swimwear trunk",name:"swimsuit",cat:[4,21,26],type:0},{title:"arrow alternative arrows change exchange files flip swap switch transmit vertical",name:"swap-vertical",cat:[2],type:0},{title:"arrow alternative arrows change exchange files flip horizontal swap switch transmit",name:"swap-horizontal",cat:[2],type:0},{title:"food chopstick seafood japanese rice roll sushi",name:"sushi",cat:[10],type:0},{title:"open emoticon smiley surprise surprised mouth disbelief shocked",name:"surprise",cat:[6],type:0},{title:"board sport travel beach summer water wind sea surfing sailing surf watersport windsurf",name:"surf",cat:[21,26],type:0},{title:"wind sea sailing surf watersport windsurf",name:"surf-2",cat:[21,26],type:0},{title:"ui user interface shopping safe object help support life",name:"support-17",cat:[19,27],type:0},{title:"ui user interface shopping safe object help support life",name:"support-16",cat:[19,27],type:0},{title:"energy power sport food fitness gym powder proteins supplement vitamin",name:"supplement",cat:[21,10],type:0},{title:"font text type typography style editing formatting superscript",name:"superscript",cat:[23],type:0},{title:"travel glasses eyeglasses glass read spectacles sunglasses",name:"sunglasses",cat:[26],type:0},{title:"sunglasses emoticon smiley cheerful happy smile cool",name:"sunglasses-49",cat:[6],type:0},{title:"sunglasses emoticon smiley cheerful happy smile cool",name:"sunglasses-48",cat:[6],type:0},{title:"weather sun sunny fog mist",name:"sun-fog-43",cat:[29],type:0},{title:"weather sun sunny fog mist sunrise sunset",name:"sun-fog-30",cat:[29],type:0},{title:"weather sun sunny fog mist sunrise sunset",name:"sun-fog-29",cat:[29],type:0},{title:"cloud weather sun sunny",name:"sun-cloud",cat:[29],type:0},{title:"cloud weather sun snow sunny flake",name:"sun-cloud-snow-55",cat:[29],type:0},{title:"cloud weather sun snow sunny",name:"sun-cloud-snow-54",cat:[29],type:0},{title:"cloud weather sun sunny rain",name:"sun-cloud-rain",cat:[29],type:0},{title:"cloud weather light flash sun sunny lightning",name:"sun-cloud-light",cat:[29],type:0},{title:"cloud weather sun sunny hail",name:"sun-cloud-hail",cat:[29],type:0},{title:"cloud weather sun sunny fog mist",name:"sun-cloud-fog",cat:[29],type:0},{title:"cloud weather drop sun sunny rain",name:"sun-cloud-drop",cat:[29],type:0},{title:"font text type typography style editing formatting subscript",name:"subscript",cat:[23],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"strong-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"strong-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"strong-left",cat:[2],type:0},{title:"arrow bottom descend down downward move",name:"strong-down",cat:[2],type:0},{title:"font text type typography style editing formatting strikethrough",name:"strikethrough",cat:[23],type:0},{title:"zoom in hand gesture touch gestures magnify stretch",name:"stretch",cat:[24],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards chevron",name:"stre-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards chevron",name:"stre-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous chevron",name:"stre-left",cat:[2],type:0},{title:"arrow direction bottom down keyboard move navigation chevron",name:"stre-down",cat:[2],type:0},{title:"food fruit love healthy berry passion strawberry",name:"strawberry",cat:[10],type:0},{title:"business finance sport chess game piece rook strategy tower",name:"strategy",cat:[3,21],type:0},{title:"commerce home shopping ecommerce shop food restaurant retail market mall online retailer store cafe",name:"store",cat:[19,10],type:0},{title:"storage furniture drawer cabinet cupboard drawers bureau dresser",name:"storage",cat:[11],type:0},{title:"storage furniture hanger towel radiator dryer rail steel warmer",name:"storage-hanger",cat:[11],type:0},{title:"sales business finance chart graph report statistics analytics money stock",name:"stock",cat:[3,19],type:0},{title:"box shopping stock delivery pack package shipping cargo ship lift warehouse",name:"stock-2",cat:[19],type:0},{title:"steps healthcare health medical feet shoes",name:"steps",cat:[12],type:0},{title:"sport car wheel race driving steering",name:"steering-wheel",cat:[21,25],type:0},{title:"food meat bone beef steak",name:"steak",cat:[10],type:0},{title:"file folder document paper bookmark favorite favourite item love like favorites star",name:"star",cat:[8],type:0},{title:"user profile account avatar contact female woman person users member bathroom wc human friend follower toilette",name:"standing-woman",cat:[28],type:0},{title:"user profile account avatar contact male man person users member bathroom wc human friend follower toilette",name:"standing-man",cat:[28],type:0},{title:"certificate design development logo mark accept approve approved branding certified certify postage quality seal stamp valid",name:"stamp",cat:[5],type:0},{title:"arrow direction top up upward cloud data file input save share storage transfer backup ftp hosting import server upload ui user interface",name:"square-upload",cat:[2,27],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"square-up",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"square-up-05",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"square-simple-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"square-simple-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"square-simple-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"square-simple-down",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards play",name:"square-right",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"square-right-03",cat:[2],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"square-remove-12",cat:[27],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"square-remove-09",cat:[27],type:0},{title:"direction navigation position gps location map pin place address marker maps street near nearby",name:"square-pin",cat:[15],type:0},{title:"direction navigation position gps location map pin place address marker maps street near nearby",name:"square-marker",cat:[15],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"square-left",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"square-left-04",cat:[2],type:0},{title:"arrow bottom descend down downward data download file input save share storage transfer ui user interface",name:"square-download",cat:[2,27],type:0},{title:"arrow bottom descend down downward",name:"square-down",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"square-down-06",cat:[2],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"square-delete-13",cat:[27],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"square-delete-10",cat:[27],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards top up upward upwards enlarge fullscreen zoom",name:"square-corner-up-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous top up upward upwards enlarge fullscreen zoom",name:"square-corner-up-left",cat:[2],type:0},{title:"arrow forward right direction bottom keyboard move navigation out position next onward onwards enlarge fullscreen zoom",name:"square-corner-down-right",cat:[2],type:0},{title:"arrow back left direction bottom backward backwards keyboard move navigation out position previous enlarge fullscreen zoom",name:"square-corner-down-left",cat:[2],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"square-add-11",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"square-add-08",cat:[27],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"user-frame-33",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"user-frame-32",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"user-frame-31",cat:[28],type:0},{title:"art design cleaning development paint painting object airbrush bottle can deodorant fragrance graffiti perfume scent spray",name:"spray",cat:[5],type:0},{title:"art design cleaning development paint painting object airbrush bottle can deodorant fragrance graffiti perfume scent spray",name:"spray-2",cat:[11],type:0},{title:"media sport photo camera option multimedia",name:"sport",cat:[16],type:0},{title:"arrow arrows change direction move divide separate split branch git version fork splitter",name:"split",cat:[2],type:0},{title:"arrow arrows change move divide separate split branch git version splitter divider",name:"split-vertical",cat:[2],type:0},{title:"arrow arrows change direction move divide separate split branch git version fork splitter",name:"split-round",cat:[2],type:0},{title:"arrow arrows change move divide separate split branch git version splitter divider",name:"split-horizontal",cat:[2],type:0},{title:"arrow arrows change direction move navigation circle expand divide separate split branch control controller dot git slider version",name:"split-37",cat:[2],type:0},{title:"arrow arrows change direction move navigation circle round expand divide separate split branch controller dot git slider version",name:"split-33",cat:[2],type:0},{title:"emoticon smiley malicious smirking spiteful",name:"spiteful",cat:[6],type:0},{title:"holidays halloween spider web animal nature bug virus",name:"spider",cat:[1,13],type:0},{title:"no emoticon smiley lips sealed speechless words",name:"speechless",cat:[6],type:0},{title:"media multimedia audio alert notification speaker voice",name:"speaker",cat:[16],type:0},{title:"media music multimedia audio sound speaker",name:"speaker-05",cat:[16],type:0},{title:"media multimedia audio alert notification speaker voice",name:"speaker-01",cat:[16],type:0},{title:"object space spaceship rocket",name:"spaceship",cat:[26,27],type:0},{title:"sport travel flower beauty meditation pilates yoga relax spa wellness",name:"spa",cat:[21,26],type:0},{title:"media music multimedia audio sound waves",name:"sound-wave",cat:[16],type:0},{title:"officer emoticon smiley helmet soldier",name:"soldier",cat:[6],type:0},{title:"furniture couch living lounge room sofa",name:"sofa",cat:[11],type:0},{title:"energy power tech technology electric jack wall electrical outlet socket",name:"socket",cat:[22],type:0},{title:"energy power tech technology electric jack wall electrical outlet socket",name:"socket-uk",cat:[22],type:0},{title:"energy power tech technology electric jack wall electrical outlet socket",name:"socket-europe-2",cat:[22],type:0},{title:"energy power tech technology electric jack wall electrical outlet socket",name:"socket-europe-1",cat:[22],type:0},{title:"clothes accessory wear sock stocking",name:"sock",cat:[4],type:0},{title:"sport goal football soccer field fifa stadium",name:"soccer-field",cat:[21],type:0},{title:"man holidays ice christmas snow winter snowman",name:"snowman",cat:[13],type:0},{title:"man holidays head ice christmas snow winter snowman",name:"snowman-head",cat:[13],type:0},{title:"sport snow boarding snowboard",name:"snowboard",cat:[21],type:0},{title:"weather holidays snow flake",name:"snow",cat:[13,29],type:0},{title:"holidays ball christmas snow snowfall winter",name:"snow-ball",cat:[13],type:0},{title:"animal nature tongue cobra jungle reptile serpent snake tail viper",name:"snake",cat:[1],type:0},{title:"emoticon smiley cheerful happy smile positive satisfied",name:"smile",cat:[6],type:0},{title:"smart emoticon smiley geek nerd nerdy wunderkind",name:"smart",cat:[6],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"small-up",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"small-triangle-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards play",name:"small-triangle-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"small-triangle-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"small-triangle-down",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"small-right",cat:[2],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"small-remove",cat:[27],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"small-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"small-down",cat:[2],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"small-delete",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"small-add",cat:[27],type:0},{title:"animal nature emoticon smiley indolence laziness sloth",name:"sloth",cat:[1,6],type:0},{title:"slider design development gallery block image browse carousel hero images photos pictures slide slides",name:"slider",cat:[5],type:0},{title:"arrow right arrows move navigation ui user interface lines list bars menu options settings slide",name:"slide-right",cat:[27],type:0},{title:"arrow left arrows move navigation ui user interface lines list bars menu options settings slide",name:"slide-left",cat:[27],type:0},{title:"box design development paper cut cutlery cutter knife slice utensil",name:"slice",cat:[5],type:0},{title:"sleep emoticon smiley rest",name:"sleep",cat:[6],type:0},{title:"sleep emoticon smiley rest",name:"sleep-2",cat:[6],type:0},{title:"clothes accessory wear jeans pants slacks trousers",name:"slacks-13",cat:[4],type:0},{title:"clothes accessory wear jeans pants slacks trousers",name:"slacks-12",cat:[4],type:0},{title:"holidays object emoticon smiley danger dead death head poison skeleton skull",name:"skull",cat:[6,13],type:0},{title:"object death head skull",name:"skull-2",cat:[13,6],type:0},{title:"woman clothes accessory dress wear skirt",name:"skirt",cat:[4],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"skew-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"skew-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"skew-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"skew-down",cat:[2],type:0},{title:"board sport skating street transportation skate skateboard",name:"skateboard",cat:[21,25],type:0},{title:"board skating street skate skateboard",name:"skateboard-2",cat:[21,25],type:0},{title:"size font text type typography style editing formatting",name:"size",cat:[23],type:0},{title:"furniture wash tap water sink bathroom faucet spigot",name:"sink",cat:[11],type:0},{title:"energy environment furniture wash tap water sink bathroom faucet spigot",name:"sink-wash",cat:[7,11],type:0},{title:"file folder document text note report page paper item draft single letter content sheet",name:"single",cat:[8],type:0},{title:"position location user profile account avatar contact male man person users member human friend follower body",name:"single-position",cat:[28],type:0},{title:"file post folder document paragraph text note report page paper item draft single letter content sheet folded article blog",name:"single-paragraph",cat:[8,27],type:0},{title:"file folder document text note report page paper item draft single letter content sheet folded",name:"single-folded",cat:[8],type:0},{title:"file post folder document text note report page paper item draft single letter content sheet folded article blog",name:"single-folded-content",cat:[8,27],type:0},{title:"files file folder group document text note report page copy paper documents duplicate item draft single letter content sheet",name:"single-copy-06",cat:[8],type:0},{title:"files file folder group document text note report page copy paper documents duplicate item draft single letter content sheet",name:"single-copy-04",cat:[8],type:0},{title:"files file folder group document text note report page copy paper copies documents duplicate item draft single letter content sheet",name:"single-copies",cat:[8],type:0},{title:"file folder document text note report page paper item draft single letter content sheet",name:"single-content-03",cat:[8],type:0},{title:"file folder document text note report page paper item draft single letter content sheet",name:"single-content-02",cat:[8],type:0},{title:"user profile account avatar contact male man person users member human friend follower body",name:"single-body",cat:[12,28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"single-05",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"single-04",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"single-03",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"single-02",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"single-01",cat:[28],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"simple-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"simple-right",cat:[2],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"simple-remove",cat:[27],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"simple-left",cat:[2],type:0},{title:"arrow direction bottom descend down downward keyboard move navigation out position downwards",name:"simple-down",cat:[2],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"simple-delete",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"simple-add",cat:[27],type:0},{title:"tech technology card mobile phone memory chip integrated micro nano sim",name:"sim-card",cat:[22],type:0},{title:"out emoticon smiley happy grimace mouth tongue silly",name:"silly",cat:[6],type:0},{title:"sign document business finance pen signature edit pencil write",name:"signature",cat:[3],type:0},{title:"network control controller connect internet tech technology device wireless signal radio radar online receiver wifi hotspot reception signals remote strong",name:"signal",cat:[22],type:0},{title:"network internet wireless signal radar online wifi hotspot reception signals strong",name:"signal-2",cat:[27],type:0},{title:"sign business finance drawing pen signature",name:"sign",cat:[3],type:0},{title:"sign info board display shopping advertise advertisement advertising billboard notice signboard",name:"sign-board",cat:[19],type:0},{title:"holidays halloween horror scary danger death sickle weapon",name:"sickle",cat:[13],type:0},{title:"emoticon smiley disgusted fever nauseated nauseous sick",name:"sick",cat:[6],type:0},{title:"no emoticon smiley mouth embarrassed shy without",name:"shy",cat:[6],type:0},{title:"arrow arrows exchange play sync compilation cross crossing media mix music playlist random shuffle songs video",name:"shuffle-98",cat:[2],type:0},{title:"arrow arrows exchange play sync compilation cross crossing media mix music playlist random shuffle songs video",name:"shuffle-97",cat:[2],type:0},{title:"arrow arrows exchange play sync compilation cross crossing media mix music playlist random shuffle songs video",name:"shuffle-35",cat:[2],type:0},{title:"arrow arrows exchange play sync compilation cross crossing media mix music playlist random shuffle songs video",name:"shuffle-01",cat:[2],type:0},{title:"food animal nature seafood prawn shrimp",name:"shrimp",cat:[1,10],type:0},{title:"energy environment furniture water bath bathroom shower",name:"shower",cat:[7,11],type:0},{title:"tool object animal nature shovel",name:"shovel",cat:[1],type:0},{title:"ui user interface commerce home shopping ecommerce shop food retail market mall online retailer store",name:"shop",cat:[10,19,27],type:0},{title:"location commerce shopping shop pin address find retail market mall online retailer store locator",name:"shop-location",cat:[19],type:0},{title:"high woman clothes accessory wear footwear shoe heels",name:"shoe-woman",cat:[4],type:0},{title:"sport clothes accessory wear footwear shoe sports",name:"shoe-sport",cat:[4,21],type:0},{title:"sport footwear shoe training exercise workout jogging marathon running",name:"shoe-run",cat:[21],type:0},{title:"clothes accessory wear footwear shoe men",name:"shoe-man",cat:[4],type:0},{title:"business finance avatar businessman tie clothes accessory man person professional shirt wear neck",name:"shirt",cat:[4],type:0},{title:"business finance avatar businessman tie clothes accessory man person professional shirt wear neck",name:"shirt-neck",cat:[4],type:0},{title:"business finance avatar businessman tie clothes accessory man person professional shirt wear neck buttons",name:"shirt-buttons",cat:[4],type:0},{title:"business finance avatar businessman tie clothes accessory man person professional shirt wear neck",name:"shirt-business",cat:[4],type:0},{title:"animal nature head face farm lamb sheep wool",name:"sheep",cat:[1],type:0},{title:"tool school design pencil development stationery sharpen sharpener",name:"sharpener",cat:[5],type:0},{title:"travel animal nature emoticon smiley big bigmouth mouth danger shark sea wave fin",name:"shark",cat:[1,6,26],type:0},{title:"animal danger shark sea wave fin",name:"shark-2",cat:[1,26],type:0},{title:"arrow files file share connection social user update communication export network post sharing folder document format profile office account connect paper item users member shared",name:"shared",cat:[8,28],type:0},{title:"arrow file share storage transfer upload connection social export output post sharing group connect connected networking node seo",name:"share",cat:[2,27],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards share connection social update communication export network post sharing",name:"share-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous share connection social update communication export network post sharing",name:"share-left",cat:[2],type:0},{title:"arrow up file share storage transfer upload connection social ui user interface update communication export network outbox output post sharing group team connect internet connected networking node seo dots",name:"share-bold",cat:[27],type:0},{title:"arrow left share connection social ui user interface update communication export network post sharing",name:"share-92",cat:[2,27],type:0},{title:"arrow right share connection social ui user interface update communication export network post sharing",name:"share-91",cat:[2,27],type:0},{title:"arrow direction top up upward file share storage transfer upload connection social ui user interface update communication export launch network outbox output post sharing start",name:"share-66",cat:[2,27],type:0},{title:"arrow up file share storage transfer upload connection social update communication export network outbox output post sharing group team connect internet connected networking node seo dots",name:"share-2",cat:[27],type:0},{title:"circle group math mathematics design development shape triangle geometry rectangle plus square shapes symbols",name:"shapes",cat:[5],type:0},{title:"line connection network group design connect development shape triangle transform editor crop vector connected networking node outline spline stroke",name:"shape-triangle",cat:[5],type:0},{title:"line connection network group design connect development shape rectangle transform square editor crop vector connected networking node outline spline stroke",name:"shape-square",cat:[5],type:0},{title:"line connection network group design connect development shape transform editor crop vector connected networking node outline spline stroke polygon",name:"shape-polygon",cat:[5],type:0},{title:"line circle connection network group design connect development shape transform oval editor crop vector connected networking node outline spline stroke",name:"shape-circle",cat:[5],type:0},{title:"circle expand path combine join merge unite tool design development shape style add square adjust adjustment finder overlap pathfinder paths shapes intersect intersection addition",name:"shape-adjust",cat:[5],type:0},{title:"energy power sport drink shaker",name:"shaker",cat:[21],type:0},{title:"media hand photo camera multimedia shaking",name:"shake",cat:[16],type:0},{title:"bridge travel san francisco gates highway",name:"sf-bridge",cat:[26],type:0},{title:"ui user interface control preferences tool system building edit options settings filter diy adjust adjustment option project configuration configure gear parameter parameters setting setup tools build engine repair screwdriver wrench",name:"settings",cat:[27],type:0},{title:"ui user interface control preferences tool system building edit options settings filter diy adjust adjustment option project configuration configure gear parameter parameters setting setup tools build engine repair wrench",name:"settings-tool-67",cat:[27],type:0},{title:"ui user interface control preferences tool system building edit options settings filter diy adjust adjustment option project configuration configure gear parameter parameters setting setup tools build engine repair wrench",name:"settings-tool-66",cat:[27],type:0},{title:"ui user interface control preferences tool system edit options settings filter adjust adjustment option wheel configuration configure gear parameter parameters setting setup tools engine cog cogwheel",name:"settings-gear-65",cat:[27],type:0},{title:"ui user interface control preferences tool system edit options settings filter adjust adjustment option wheel configuration configure gear parameter parameters setting setup tools engine cog cogwheel",name:"settings-gear-64",cat:[27],type:0},{title:"ui user interface control preferences tool system edit options settings filter adjust adjustment option wheel configuration configure gear parameter parameters setting setup tools engine cog cogwheel",name:"settings-gear-63",cat:[27],type:0},{title:"file folder control preferences document system office edit options settings paper item adjust option configuration configure gear parameter parameters setting setup tools",name:"settings-99",cat:[8],type:0},{title:"file folder control preferences document system office edit options settings paper item adjust option configuration configure parameter parameters setting setup tools",name:"settings-46",cat:[8],type:0},{title:"arrow arrows change direction move navigation expand resize divide split branch control controller git version fork splitter divider",name:"separate",cat:[2],type:0},{title:"arrow arrows change direction move navigation expand resize split branch control controller git version fork splitter",name:"separate-round",cat:[2],type:0},{title:"ui user interface communication send email mail message messages contact write paper letter news fly airplane flight plane sending",name:"send",cat:[27],type:0},{title:"communication send email mail message messages contact write paper letter news fly airplane flight plane sending",name:"send-2",cat:[27],type:0},{title:"media photo camera option multimedia face selfie capture",name:"selfie",cat:[16],type:0},{title:"design development add plus selection filter grid view categories category filtering filters refine search selected sort",name:"selection",cat:[5],type:0},{title:"ui user interface cursor select tool design pointer selection frame area choose",name:"select",cat:[27],type:0},{title:"arrow arrows direction down up enlarge expand increase maximize vertical select",name:"select-84",cat:[2,27],type:0},{title:"arrow arrows direction down up enlarge expand increase maximize vertical select",name:"select-83",cat:[2,27],type:0},{title:"navigation ui user interface lines list bars gallery hamburger menu options settings burger segment segmentation",name:"segmentation",cat:[27],type:0},{title:"ui user interface security safety protection secure access antivirus firewall shield protect insurance",name:"security",cat:[27],type:0},{title:"file zoom document format contact discover glass filter paper view search item research find lens preview magnify magnifier magnifying seo article",name:"search",cat:[8],type:0},{title:"user profile account avatar contact male man person view search find lens member human friend follower",name:"search-3",cat:[28],type:0},{title:"zoom paragraph text glass filter view search research find lens magnify magnifier magnifying seo article",name:"search-2",cat:[27],type:0},{title:"sport travel glasses mask sea swimming dive diving snorkel",name:"sea-mask",cat:[21,26],type:0},{title:"media card multimedia memory sd",name:"sd",cat:[16],type:0},{title:"left right down up vertical hand gesture vertically touch scroll gestures",name:"scroll-vertical",cat:[24],type:0},{title:"left right horizontal hand gesture horizontally touch scroll gestures",name:"scroll-horitontal",cat:[24],type:0},{title:"glass food cube alcohol drink ice scotch whisky",name:"scotch",cat:[10],type:0},{title:"tool design craft edit development cut cutting scissor scissors shears trim",name:"scissors",cat:[5],type:0},{title:"line tool dotted design craft discount edit development paper cut cutting scissor scissors shears trim coupon dashed reduction",name:"scissors-dashed",cat:[5],type:0},{title:"education school building",name:"school",cat:[18],type:0},{title:"clothes accessory wear scarf stole",name:"scarf",cat:[4],type:0},{title:"shopping gesture code touch gestures barcode product scan scanner",name:"scan",cat:[24],type:0},{title:"scale balance weight business finance judge law attorney case court justice",name:"scale",cat:[3],type:0},{title:"vertical resize scale size text edit dimension editing",name:"scale-vertical",cat:[23],type:0},{title:"arrow right direction top enlarge fullscreen zoom resize scale design development reshape scaling",name:"scale-up",cat:[5],type:0},{title:"horizontal resize scale size text edit dimension editing",name:"scale-horizontal",cat:[23],type:0},{title:"arrow left direction bottom down out enlarge fullscreen zoom resize scale design development reshape scaling",name:"scale-down",cat:[5],type:0},{title:"measure scale balance weight kitchen",name:"scale-4",cat:[10,19],type:0},{title:"measure scale balance weight kitchen",name:"scale-3",cat:[10],type:0},{title:"enlarge fullscreen zoom measure resize balance animation rectangle transform translate reshape scaling",name:"scale-2",cat:[5],type:0},{title:"save energy environment globe world ecology green hands planet respect sustainability",name:"save-planet",cat:[7],type:0},{title:"food meat pork sausage wiener",name:"sausage",cat:[10],type:0},{title:"emoticon smiley cheerful happy smile positive satisfied",name:"satisfied",cat:[6],type:0},{title:"hat holidays christmas claus santa",name:"santa-hat",cat:[13],type:0},{title:"food kitchen pepper salt seasoning shaker spice",name:"salt",cat:[10],type:0},{title:"shopping deal discount ecommerce sale shop label tag coupon reduction ticket offer sticker",name:"sale",cat:[19],type:0},{title:"security box business finance furniture safe combination safety vault",name:"safe",cat:[3,11],type:0},{title:"emoticon smiley unhappy sad dissapointed",name:"sad",cat:[6],type:0},{title:"measure scale tool text message education note design pen edit pencil write development geometry draw create editing compose craetive drafting editor meter ruler",name:"ruler-pencil",cat:[5],type:0},{title:"sport game ball league rugby try",name:"rugby",cat:[21],type:0},{title:"sport travel row sea training canoeing river rowing",name:"rowing",cat:[21,26],type:0},{title:"direction navigation location sign path available open check map maps track route street accessible walkable",name:"route-open",cat:[15],type:0},{title:"direction navigation location sign close exit cross path map block maps track route street arrest interrupted interruption",name:"route-close",cat:[15],type:0},{title:"direction navigation location sign path map stop danger maps alert attention caution exclamation warning track route street",name:"route-alert",cat:[15],type:0},{title:"business finance shopping money currency renminbir yen yuan cashier",name:"round-yen",cat:[3,19],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"round-up",cat:[2],type:0},{title:"arrow forward right arrows direction bottom keyboard move navigation out position next onward onwards top up upward upwards corner curved",name:"round-up-right",cat:[2],type:0},{title:"arrow back left arrows direction backward backwards keyboard move navigation out position previous top up upward upwards corner curved",name:"round-up-left",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"round-right",cat:[2],type:0},{title:"arrow forward right arrows direction bottom keyboard move navigation out position next onward onwards corner curved",name:"round-right-down",cat:[2],type:0},{title:"business finance shopping money currency pound sterlin cashier",name:"round-pound",cat:[3,19],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"round-left",cat:[2],type:0},{title:"arrow back left arrows direction bottom backward backwards keyboard move navigation out position previous corner curved",name:"round-left-down",cat:[2],type:0},{title:"business finance shopping money currency euro cashier",name:"round-euro",cat:[3,19],type:0},{title:"arrow bottom descend down downward",name:"round-down",cat:[2],type:0},{title:"business finance shopping money currency dollar cashier",name:"round-dollar",cat:[3,19],type:0},{title:"rotate flip communication tech technology android device mobile phone smartphone iphone ios telephone call touchscreen rotation shake vibration",name:"rotate",cat:[22],type:0},{title:"arrow forward right rotate direction keyboard move navigation out position next onward onwards media clockwise picture image photo multimedia",name:"rotate-right",cat:[2,16],type:0},{title:"arrow forward right rotate direction keyboard move navigation out position next onward onwards media clockwise picture image photo multimedia",name:"rotate-right-2",cat:[2,16],type:0},{title:"rotate flip lock security communication safe tech technology device mobile phone smartphone telephone padlock protection secure rotation shake vibration",name:"rotate-lock",cat:[22],type:0},{title:"arrow back left rotate direction backward backwards keyboard move navigation out position previous media anti-clockwise counterclockwise picture image photo multimedia",name:"rotate-left",cat:[2,16],type:0},{title:"arrow back left rotate direction backward backwards keyboard move navigation out position previous media anti-clockwise counterclockwise picture image photo multimedia",name:"rotate-left-2",cat:[2,16],type:0},{title:"rotate move sync refresh edit gesture touch gestures",name:"rotate-23",cat:[24],type:0},{title:"rotate move sync refresh hand edit gesture touch gestures",name:"rotate-22",cat:[24],type:0},{title:"sport health fitness cardio gym jump rope",name:"rope",cat:[21],type:0},{title:"travel monument colosseum rome",name:"rome",cat:[26],type:0},{title:"pin food roller bread bakery rolling",name:"rolling-pin",cat:[10],type:0},{title:"media film photo camera multimedia roll retro",name:"roll",cat:[16],type:0},{title:"music metal emoticon smiley fan rock",name:"rock",cat:[6],type:0},{title:"man kid robot emoticon smiley automation mechanical toy",name:"robot",cat:[6],type:0},{title:"location path map point maps route destination road traffic transportation trail",name:"road",cat:[15,25],type:0},{title:"right direction navigation sign travel road",name:"road-sign-right",cat:[26],type:0},{title:"left direction navigation sign travel road",name:"road-sign-left",cat:[26],type:0},{title:"location path map point maps route destination road traffic transportation trail",name:"road-2",cat:[15,25],type:0},{title:"travel brazil monument christ de janeiro jesus rio saviour statue",name:"rio",cat:[26],type:0},{title:"clothes accessory wear diamond engagement jewelry ring",name:"ring",cat:[4],type:0},{title:"arrow back up cloud data save storage backup refresh revert fix machine restore time watch",name:"restore",cat:[2],type:0},{title:"arrow communication answer chat comment comments conversation dialog email forum mail message messages reply speaking talk",name:"reply",cat:[2],type:0},{title:"arrow communication all answer chat comment comments conversation dialog email forum mail message messages reply speaking talk",name:"reply-all",cat:[2],type:0},{title:"arrow repeat arrows sync infinite infinity load loading loop process refresh reload replay update shuffle",name:"replay",cat:[2],type:0},{title:"change exchange files swap file transfer folder group document note report copy paper documents duplicate item items draft overwrite replace",name:"replace",cat:[8],type:0},{title:"change exchange files swap file transfer folder group copy documents duplicate catalog items archive overwrite replace folders",name:"replace-folder",cat:[8],type:0},{title:"file folder delete remove document format office paper item clear minus cancel",name:"remove",cat:[8],type:0},{title:"control controller tech technology device wireless signal radio remote zapper",name:"remote",cat:[22],type:0},{title:"media music multimedia audio dj remix",name:"remix",cat:[16],type:0},{title:"arrow repeat arrows exchange circle round sync infinite infinity load loading loop process refresh reload replay update",name:"reload",cat:[2],type:0},{title:"change file sync refresh reload update folder document format office paper item",name:"refresh",cat:[8],type:0},{title:"arrow repeat arrows exchange sync infinite infinity load loading loop process refresh reload replay update energy environment",name:"refresh-69",cat:[2,7],type:0},{title:"arrow repeat arrows sync infinite infinity load loading loop process refresh reload replay update energy environment progress whole",name:"refresh-68",cat:[2,7],type:0},{title:"arrow back curve forward invert line redo repeat right rotate",name:"redo-81",cat:[2],type:0},{title:"arrow back curve forward invert line redo repeat right rotate",name:"redo-79",cat:[2],type:0},{title:"arrow back curve forward invert redo repeat right rotate",name:"redo-26",cat:[2],type:0},{title:"arrow back curve forward invert redo repeat right rotate",name:"redo-10",cat:[2],type:0},{title:"arrows energy environment clean ecology green waste cycle garbage recycle recycling",name:"recycling",cat:[7],type:0},{title:"book food cooking recipe",name:"recipe-book-47",cat:[10],type:0},{title:"book food cooking recipe",name:"recipe-book-46",cat:[10],type:0},{title:"shopping bill check sale invoice receipt expense income purchase",name:"receipt",cat:[19],type:0},{title:"shopping bill check sale invoice receipt expense income purchase",name:"receipt-list-43",cat:[19],type:0},{title:"shopping bill check sale invoice receipt expense income purchase",name:"receipt-list-42",cat:[19],type:0},{title:"mouse animal nature head mice rat rodent",name:"rat",cat:[1],type:0},{title:"data storage computer tech technology hardware memory chip motherboard ram",name:"ram",cat:[22],type:0},{title:"weather rainbow",name:"rainbow",cat:[29],type:0},{title:"weather rain",name:"rain",cat:[29],type:0},{title:"weather rain hail",name:"rain-hail",cat:[29],type:0},{title:"media multimedia signal audio radio",name:"radio",cat:[16],type:0},{title:"energy environment danger virus atomic emergency radiation sickness toxic waste",name:"radiation",cat:[7],type:0},{title:"location security target map maps find scan scanner radar explore track",name:"radar",cat:[15],type:0},{title:"sport travel beach tennis racket",name:"rackets",cat:[21,26],type:0},{title:"holidays animal nature easter bunny rabbit",name:"rabbit",cat:[1,13],type:0},{title:"text message editing marks bubble quotation quote",name:"quote",cat:[23],type:0},{title:"open emoticon smiley cheerful happy smile mouth laugh positive quite",name:"quite-happy",cat:[6],type:0},{title:"file sign info folder document paper mark item alert information notification faq help support ask query question unknown",name:"question",cat:[8],type:0},{title:"travel egypt monument pyramid",name:"pyramid",cat:[26],type:0},{title:"emoticon smiley concern confused puzzled thinking",name:"puzzled",cat:[6],type:0},{title:"play game object puzzle solution",name:"puzzle-10",cat:[3],type:0},{title:"play game object marketing puzzle solution",name:"puzzle-09",cat:[3],type:0},{title:"arrow back left arrows direction backward previous double rewind media player",name:"push-previous",cat:[2],type:0},{title:"arrow forward right direction next onward double advance proceed",name:"push-next",cat:[2],type:0},{title:"holidays halloween evil scary pumpkin",name:"pumpkin",cat:[13],type:0},{title:"sport healthcare health medical beat pulse",name:"pulse",cat:[12,21],type:0},{title:"watch sport healthcare health medical beat pulse",name:"pulse-watch",cat:[12,21],type:0},{title:"sleep healthcare health medical beat pulse",name:"pulse-sleep",cat:[12],type:0},{title:"sport phone healthcare health medical beat pulse",name:"pulse-phone",cat:[12,21],type:0},{title:"chart graph healthcare health medical beat pulse",name:"pulse-chart",cat:[12],type:0},{title:"food meat pork bone thigh ham prosciutto",name:"prosciutto",cat:[10],type:0},{title:"energy environment progress whole availability available clock day business finance",name:"progress",cat:[3,7],type:0},{title:"arrow back bottom down move organize business hierarchy layer layers list order priority seat low send",name:"priority-low",cat:[2],type:0},{title:"arrow move top up organize bring business hierarchy high layer layers list order priority seat",name:"priority-high",cat:[2],type:0},{title:"document office tech technology device copy paper print fax printer printing",name:"print",cat:[22],type:0},{title:"document office tech technology device copy paper print fax printer printing",name:"printer",cat:[22],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-rotate",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-container",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-container-rotate",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-container-circle",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-container-circle-rotate",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-circle",cat:[27],type:0},{title:"ui user interface control slider preferences system edit options settings filter adjust adjustment option configuration configure parameter parameters setting setup tools sliders",name:"preferences-circle-rotate",cat:[27],type:0},{title:"food cooking kitchen tools utensils hot pot",name:"pot",cat:[10],type:0},{title:"direction navigation position gps location user account avatar contact map place maps near nearby friend",name:"position-user",cat:[15],type:0},{title:"direction navigation position gps location map pin place marker maps near nearby",name:"position-pin",cat:[15],type:0},{title:"direction navigation position gps location map pin place marker maps near nearby",name:"position-marker",cat:[15],type:0},{title:"machine shopping cash payment card checkout credit debit point terminal register swipe credit card till transaction pos",name:"pos",cat:[19],type:0},{title:"emoticon smiley happy excrement pet pile poo poop",name:"poop",cat:[6],type:0},{title:"sport travel water pool swimming wave stairs",name:"pool",cat:[21,26],type:0},{title:"user security avatar officer hat law secure users enforcement police",name:"police",cat:[28],type:0},{title:"media picture image photo multimedia polaroid",name:"polaroid",cat:[16],type:0},{title:"user media profile picture image photo camera multimedia polaroid selfie",name:"polaroid-user",cat:[16],type:0},{title:"media picture image photo multimedia polaroid",name:"polaroid-multiple",cat:[16],type:0},{title:"media delete remove picture image photo multimedia polaroid",name:"polaroid-delete",cat:[16],type:0},{title:"media picture add image photo multimedia polaroid",name:"polaroid-add",cat:[16],type:0},{title:"direction navigation position gps location target map pin point place marker point b",name:"point-b",cat:[15],type:0},{title:"direction navigation position gps location target map pin point place marker arrival point a",name:"point-a",cat:[15],type:0},{title:"sport blocks winner podium trophy victory",name:"podium",cat:[21],type:0},{title:"sport blocks winner podium trophy victory",name:"podium-trophy",cat:[21],type:0},{title:"energy environment business finance tech technology cable electric electricity jack plug",name:"plug",cat:[3,7,22],type:0},{title:"play ui user interface media music playlist list collection album checklist items tasks audio sound feedlist",name:"playlist",cat:[27],type:0},{title:"play media video film movie multimedia",name:"player",cat:[16],type:0},{title:"play playlist video player display tech technology film movie monitor screen television tv entertainment",name:"player-48",cat:[22],type:0},{title:"play playlist video player display tech technology film movie monitor screen television tv entertainment",name:"player-19",cat:[22],type:0},{title:"play file music video folder player document office film movie paper item stream",name:"play",cat:[8],type:0},{title:"play media video film movie multimedia",name:"play-69",cat:[16],type:0},{title:"play media video film movie multimedia",name:"play-68",cat:[16],type:0},{title:"food tools utensils dish plate crockery",name:"plate",cat:[10],type:0},{title:"energy environment growth plant animal nature ecology green gardening life agriculture leaves ground startup vase",name:"plant-vase",cat:[1,7],type:0},{title:"energy environment growth plant animal nature ecology green gardening life agriculture leaves ground startup",name:"plant-ground",cat:[1,7],type:0},{title:"education school globe world object planet space",name:"planet",cat:[18],type:0},{title:"travel transportation aircraft airplane flight jet plane",name:"plane-18",cat:[25],type:0},{title:"travel transportation aircraft airplane flight jet plane",name:"plane-17",cat:[25],type:0},{title:"food fastfood italian pizza",name:"pizza",cat:[10],type:0},{title:"food slice fastfood italian pizza",name:"pizza-slice",cat:[10],type:0},{title:"emoticon smiley pirate",name:"pirate",cat:[6],type:0},{title:"smoke object pipe",name:"pipe",cat:[4],type:0},{title:"direction navigation position gps location map pin copy duplicate place marker maps pins",name:"pins",cat:[15],type:0},{title:"sport game table ball tennis ping pong racket",name:"ping-pong",cat:[21],type:0},{title:"out zoom shrink hand gesture touch gestures magnify minimize pinch",name:"pinch",cat:[24],type:0},{title:"direction navigation position gps location map pin pushpin place marker maps locator",name:"pin",cat:[3,15],type:0},{title:"direction navigation position gps location user avatar contact map pin place marker near nearby tracking placeholder",name:"pin-user",cat:[15],type:0},{title:"direction navigation position gps location schedule time map pin place marker calendar appointment countdown",name:"pin-time",cat:[15],type:0},{title:"direction navigation position sync gps location refresh reload update map pin place marker",name:"pin-sync",cat:[15],type:0},{title:"direction navigation position gps location map pin place favorite favourite marker love like star",name:"pin-star",cat:[15],type:0},{title:"direction navigation position share social gps location connect map pin place marker",name:"pin-share",cat:[15],type:0},{title:"direction navigation position gps location control preferences system map pin edit options settings place marker adjust option configuration configure gear parameter parameters setting setup",name:"pin-settings",cat:[15],type:0},{title:"direction navigation position gps location lock security map safe pin place marker padlock protection secure",name:"pin-security",cat:[15],type:0},{title:"direction navigation position gps location map pin view search place marker find lens explore lookup",name:"pin-search",cat:[15],type:0},{title:"direction navigation position gps location delete remove map pin place marker clear minus maps cancel",name:"pin-remove",cat:[15],type:0},{title:"direction navigation position gps location delete remove map pin place marker clear minus cancel",name:"pin-remove-2",cat:[15],type:0},{title:"direction navigation position gps location map pin place favorite favourite marker love like heart",name:"pin-heart",cat:[15],type:0},{title:"change direction navigation position gps location map pin edit place marker modify",name:"pin-edit",cat:[15],type:0},{title:"direction navigation position gps location delete remove map pin place marker clear minus cancel",name:"pin-delete",cat:[15],type:0},{title:"direction navigation position gps location map pin copy duplicate place marker maps pins",name:"pin-copy",cat:[15],type:0},{title:"direction navigation position gps location check map pin place mark marker approved complete completed done checked tick",name:"pin-check",cat:[15],type:0},{title:"direction navigation position gps location new map pin add create plus place marker maps",name:"pin-add",cat:[15],type:0},{title:"direction navigation position gps location new map pin add create plus place marker maps",name:"pin-add-2",cat:[15],type:0},{title:"position location user chat profile account avatar contact person pin member human friend locator tooltip follower",name:"pin-4",cat:[28,15],type:0},{title:"direction navigation position gps location map pin place marker",name:"pin-3",cat:[15],type:0},{title:"lock login password security pin combination code secure access passcode",name:"pin-2",cat:[24],type:0},{title:"cross box healthcare health medical container pill",name:"pill-container-47",cat:[12],type:0},{title:"box healthcare health medical container pill",name:"pill-container-44",cat:[12],type:0},{title:"healthcare health medical medicine drugs pill",name:"pill-43",cat:[12],type:0},{title:"healthcare health medical medicine drugs pill",name:"pill-42",cat:[12],type:0},{title:"storage business finance banking bank treasury coin deposit pig piggy safe",name:"pig",cat:[3],type:0},{title:"pig piggy safe animal nature pork face farm",name:"pig-2",cat:[1],type:0},{title:"media picture image photo multimedia",name:"picture",cat:[16],type:0},{title:"tool travel object mountain axe pick pickaxe",name:"pickaxe",cat:[26],type:0},{title:"media music multimedia audio piano",name:"piano",cat:[16],type:0},{title:"design development picture filter image photo photography editor adjustment camera",name:"photo-editor",cat:[5],type:0},{title:"communication conversation talk contact android development device mobile phone smartphone iphone ios telephone call cellular smart ringing landline calling",name:"phone",cat:[5,22],type:0},{title:"ui user interface communication conversation talk contact mobile phone telephone call ringing calling",name:"phone-call",cat:[27],type:0},{title:"ui user interface communication conversation talk contact mobile phone end telephone call",name:"phone-call-end",cat:[27],type:0},{title:"communication conversation talk contact mobile phone telephone call old landline",name:"phone-3",cat:[11,27],type:0},{title:"communication conversation talk contact mobile phone telephone call ringing calling",name:"phone-2",cat:[27],type:0},{title:"arrow progress business finance shopping discount ecommerce percent percentage sale shop",name:"percentage-39",cat:[3],type:0},{title:"business finance shopping discount ecommerce percent percentage sale shop",name:"percentage-38",cat:[3,19],type:0},{title:"animal nature emoticon smiley penguin",name:"penguin",cat:[1,6],type:0},{title:"ui user interface text message education school note pen edit pencil write draw create editing compose editor draft",name:"pencil",cat:[18,27],type:0},{title:"education school design pen pencil write draw writer literature",name:"pencil-47",cat:[18],type:0},{title:"tool text message education school note design pen edit pencil write development draw create editing compose editor draft ink nib vector",name:"pen-tool",cat:[5,18],type:0},{title:"text message education school note design pen edit pencil write development draw create editing compose editor draft",name:"pen-23",cat:[5,18],type:0},{title:"text message education school note design pen edit pencil write development draw create editing compose editor draft",name:"pen-01",cat:[5,18],type:0},{title:"computer tech technology card graphics sound dvb pci rear",name:"pci-card",cat:[22],type:0},{title:"business finance payment money hand handout holding loan",name:"payment",cat:[3],type:0},{title:"foot animal nature pet print domestic paw",name:"paw",cat:[1],type:0},{title:"expand path combine join merge unite tool design development shape style add square squares finder overlap pathfinder paths shapes intersect intersection addition",name:"path-unite",cat:[5],type:0},{title:"path delete remove tool design development shape style square squares exclude exclusion finder minus overlap pathfinder paths shapes",name:"path-minus",cat:[5],type:0},{title:"expand path merge tool design development shape style square squares finder overlap pathfinder paths shapes intersect intersection",name:"path-intersect",cat:[5],type:0},{title:"path delete remove tool design development shape style square squares exclude exclusion finder minus overlap pathfinder paths shapes",name:"path-exclude",cat:[5],type:0},{title:"tool patch healthcare health medical",name:"patch",cat:[12],type:0},{title:"tool design development patch healthcare health medical aid band bandage bandaid injury medicine plaster recovery treatment",name:"patch-34",cat:[5,12],type:0},{title:"update tool fix clothes design sew sewing development cord mend patch stitch",name:"patch-19",cat:[5],type:0},{title:"document travel id passport",name:"passport",cat:[26],type:0},{title:"animal nature emoticon smiley bird parrot",name:"parrot",cat:[1,6],type:0},{title:"travel tower monument sights eiffel paris",name:"paris-tower",cat:[26],type:0},{title:"user group profile account avatar man person users member human friend child community people family parent parents",name:"parent",cat:[28],type:0},{title:"ui user interface layout document paragraph text list page picture image photo mockup wireframe content description",name:"paragraph",cat:[27],type:0},{title:"file communication folder document education school note achievement award degree diploma report paper magazine draft news parchment blog",name:"paper",cat:[8,18],type:0},{title:"education school achievement award ribbon degree diploma paper parchment reward",name:"paper-diploma",cat:[18],type:0},{title:"file tool design development paper code coding develop tag parchment",name:"paper-dev",cat:[5],type:0},{title:"file tool art drawing design development color paint canvas draw painting paper graphic brush paintbrush artist parchment",name:"paper-design",cat:[5],type:0},{title:"file communication post document note degree diploma report paper draft news parchment article blog",name:"paper-2",cat:[8,27],type:0},{title:"select guide design development color paint colors catalog picker palette swatches choice pantone",name:"pantone",cat:[5],type:0},{title:"energy environment power sun ecology saver green panel renewable solar",name:"panel",cat:[7],type:0},{title:"animal nature head face bear panda",name:"panda",cat:[1],type:0},{title:"food cooking kitchen pan tools utensils hot frying",name:"pan",cat:[10],type:0},{title:"tool art design development color paint colors draw painting brush painter artist palette swatches",name:"palette",cat:[5],type:0},{title:"clothes accessory wear homewear pajamas pyjamas sleep sleepwear",name:"pajamas",cat:[4],type:0},{title:"tool art design development bucket collect collection color fill pail paint dropper splash stain",name:"paint-bucket-40",cat:[5],type:0},{title:"tool art design development bucket collect collection color fill pail paint dropper splash stain",name:"paint-bucket-39",cat:[5],type:0},{title:"tool art design development color paint painting brush diy paintbrush painter",name:"paint-brush",cat:[5],type:0},{title:"tool design development color paint painting brush diy paintbrush painter",name:"paint-38",cat:[5],type:0},{title:"tool design development color paint painting brush diy paintbrush painter",name:"paint-37",cat:[5],type:0},{title:"tool design development color paint painting brush diy paintbrush painter roller wall",name:"paint-16",cat:[5],type:0},{title:"communication schedule meeting time tech technology device mobile phone smartphone telephone calendar appointment countdown",name:"p-time",cat:[22],type:0},{title:"download sync update communication version new system tech technology device mobile phone smartphone telephone software",name:"p-system-update",cat:[22],type:0},{title:"sync refresh reload update communication tech technology device mobile phone smartphone telephone",name:"p-sync",cat:[22],type:0},{title:"share social communication contact connect tech technology device mobile phone smartphone telephone",name:"p-share",cat:[22],type:0},{title:"communication control preferences system tech technology edit device mobile phone smartphone options settings adjust option telephone configuration configure gear parameter parameters setting setup",name:"p-settings",cat:[22],type:0},{title:"communication tech technology device mobile phone smartphone view search telephone find lens",name:"p-search",cat:[22],type:0},{title:"communication delete remove tech technology device mobile phone smartphone telephone cancel",name:"p-remove",cat:[22],type:0},{title:"position location communication pin tech technology device mobile phone smartphone telephone locator",name:"p-location",cat:[22],type:0},{title:"communication tech technology device mobile phone smartphone favorite favourite telephone love like heart",name:"p-heart",cat:[22],type:0},{title:"change communication tech technology edit device mobile phone smartphone modify telephone",name:"p-edit",cat:[22],type:0},{title:"communication check tech technology device mobile phone smartphone mark telephone approved complete completed done checked",name:"p-check",cat:[22],type:0},{title:"communication new tech technology device mobile phone smartphone add plus telephone",name:"p-add",cat:[22],type:0},{title:"education holidays halloween animal nature bird owl wisdom",name:"owl",cat:[1,13],type:0},{title:"furniture food cooking stove oven",name:"oven",cat:[10,11],type:0},{title:"arrow top up upwards window export start application browser app fire new open tab",name:"open-in-browser",cat:[2],type:0},{title:"travel food animal nature seafood octopus tentacles",name:"octopus",cat:[1,26],type:0},{title:"new travel building empire manhattan ny skyline state york",name:"ny",cat:[26],type:0},{title:"care healthcare health medical nurse",name:"nurse",cat:[12],type:0},{title:"ui user interface update communication music chat message education school volume announcement alarm audio sound alert attention notification speaker voice announce megaphone shout",name:"notification-70",cat:[18,27],type:0},{title:"ui user interface update communication music chat message volume announcement alarm audio sound alert attention notification speaker voice announce megaphone shout",name:"notification-69",cat:[27],type:0},{title:"business finance notebook notes notepad reminder to-do",name:"notes",cat:[3],type:0},{title:"document education school note notebook notepad",name:"notepad",cat:[18],type:0},{title:"files file folder document format education agenda book diary note notebook notes pad library notepad read paper label reading study manual",name:"notebook",cat:[8],type:0},{title:"cross document note notebook notepad",name:"notebook-2",cat:[12],type:0},{title:"file document list note notebook notes pad design notepad development page paper code todo develop tag clipboard",name:"note-code",cat:[5],type:0},{title:"media music note multimedia audio sound",name:"note-04",cat:[16],type:0},{title:"media music note holidays multimedia audio sound",name:"note-03",cat:[13,16],type:0},{title:"connection social ui user interface communication network group team connect internet connected networking node seo dots",name:"node",cat:[27],type:0},{title:"no emoticon smiley lips sealed speechless words",name:"no-words",cat:[6],type:0},{title:"file folder document format ban stop banned block blocked forbidden not prevent paper item accept accessibility none private prohibition",name:"no-access",cat:[8],type:0},{title:"emoticon smiley mysterious ninja samurai",name:"ninja",cat:[6],type:0},{title:"media photo camera option multimedia mode night",name:"night",cat:[16],type:0},{title:"communication post send email mail message messages contact shopping write envelope letter mailbox news newsletter subscribe",name:"newsletter",cat:[19],type:0},{title:"inbox communication post send email mail message messages contact design write development code coding develop announcement envelope letter mailbox news newsletter signup subscribe",name:"newsletter-dev",cat:[5],type:0},{title:"new shopping deal discount ecommerce sale shop label tag coupon reduction ticket offer sticker",name:"new",cat:[19],type:0},{title:"connection social user network group team profile account avatar man person networking users member human friend",name:"network",cat:[28],type:0},{title:"business finance holidays halloween net spider web",name:"net",cat:[3,13],type:0},{title:"glasses emoticon smiley cheerful happy smile geek nerd nerdy",name:"nerd-23",cat:[6],type:0},{title:"glasses emoticon smiley cheerful happy smile geek nerd nerdy",name:"nerd-22",cat:[6],type:0},{title:"clothes accessory craft needle sew sewing thread",name:"needle",cat:[4],type:0},{title:"direction navigation directions gps location navigate map pin tech technology address marker drive street destination",name:"navigation",cat:[22],type:0},{title:"play file media music player document format note multimedia audio mp3 sound soundtrack radio song listen",name:"music",cat:[8,16],type:0},{title:"cloud sync media music multimedia sound",name:"music-cloud",cat:[16],type:0},{title:"media music playlist collection album multimedia audio",name:"music-album",cat:[16],type:0},{title:"play music player device audio mp3 sound listen ipod",name:"music-2",cat:[22],type:0},{title:"food animal nature health vegetable autumn mushroom",name:"mushroom",cat:[1],type:0},{title:"user group team profile account avatar contact man person users member human friend community people collaboration collective",name:"multiple",cat:[28],type:0},{title:"user group team profile account avatar contact man person users member human friend community people collaboration collective",name:"multiple-19",cat:[28],type:0},{title:"user group team profile account avatar contact male man person users member human friend follower community people collaboration collective",name:"multiple-11",cat:[28],type:0},{title:"food drink beverage hot coffe coffee cup mug tea",name:"mug",cat:[10],type:0},{title:"food cake dessert sweet breakfast bakery cupcake muffin",name:"muffin",cat:[10],type:0},{title:"play media video film movie multimedia",name:"movie-62",cat:[16],type:0},{title:"play media video film movie multimedia",name:"movie-61",cat:[16],type:0},{title:"arrow forward direction keyboard move navigation out position top up upward upwards file upload arrange bring translate object rearrange reorganize push",name:"move-up",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous top up upward upwards enlarge fullscreen zoom",name:"move-up-left",cat:[2],type:0},{title:"arrow move top up upward organize arrange bring translate object rearrange reorganize push",name:"move-up-2",cat:[2,5],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"move-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"move-left",cat:[2],type:0},{title:"arrow bottom descend down downward move download file organize arrange send rearrange reorganize",name:"move-down",cat:[2],type:0},{title:"arrow forward right direction bottom keyboard move navigation out position next onward onwards enlarge fullscreen zoom",name:"move-down-right",cat:[2],type:0},{title:"arrow bottom descend down downward move organize arrange send translate rearrange reorganize",name:"move-down-2",cat:[2,5],type:0},{title:"arrow arrows direction move out directions enlarge expand fullscreen increase maximize reach window zoom center",name:"move-92",cat:[2],type:0},{title:"arrow arrows direction move out directions enlarge expand fullscreen increase maximize reach window zoom drag cursor",name:"move-06",cat:[2],type:0},{title:"arrow arrows direction move out directions enlarge expand fullscreen increase maximize reach window zoom drag cursor",name:"move-05",cat:[2],type:0},{title:"cursor accessory design computer tech technology development device mac click mouse pointer hardware magic scroll scrolling",name:"mouse-10",cat:[5,22],type:0},{title:"cursor accessory design computer tech technology development device mac click mouse pointer hardware magic scroll scrolling",name:"mouse-09",cat:[5,22],type:0},{title:"cursor accessory design computer tech technology development device mac click mouse pointer hardware magic scroll scrolling",name:"mouse-08",cat:[5,22],type:0},{title:"environment landscape animal nature rock climbing mountain",name:"mountain",cat:[1],type:0},{title:"sport transportation bike motorcycle moto motorbike",name:"moto",cat:[25],type:0},{title:"travel building palace religious islamic mosque muslim",name:"mosque",cat:[26],type:0},{title:"weather moon night",name:"moon",cat:[29],type:0},{title:"weather moon night stars",name:"moon-stars",cat:[29],type:0},{title:"weather full moon night",name:"moon-full",cat:[29],type:0},{title:"weather moon night fog mist",name:"moon-fog",cat:[29],type:0},{title:"cloud weather moon snow night flake",name:"moon-cloud-snow-62",cat:[29],type:0},{title:"cloud weather moon snow night",name:"moon-cloud-snow-61",cat:[29],type:0},{title:"cloud weather moon night rain",name:"moon-cloud-rain",cat:[29],type:0},{title:"cloud weather light moon flash lightning",name:"moon-cloud-light",cat:[29],type:0},{title:"cloud weather moon night hail",name:"moon-cloud-hail",cat:[29],type:0},{title:"cloud weather moon night fog mist",name:"moon-cloud-fog",cat:[29],type:0},{title:"cloud weather drop moon night rain",name:"moon-cloud-drop",cat:[29],type:0},{title:"holidays emoticon smiley big alien cyclops eye eyed monster one",name:"monster",cat:[6,13],type:0},{title:"file folder document format order certificate bill payment money dollar agreement paper item invoice receipt",name:"money",cat:[8],type:0},{title:"change clock business time finance cash payment coins funding money",name:"money-time",cat:[3],type:0},{title:"energy environment growth business finance cash payment money dollar banknotes flower",name:"money-growth",cat:[3,7],type:0},{title:"change business finance cash payment coins money dollar banknotes",name:"money-coins",cat:[3],type:0},{title:"business finance bag cash payment money pay price",name:"money-bag",cat:[3],type:0},{title:"business finance cash payment money dollar banknotes",name:"money-13",cat:[3],type:0},{title:"business finance cash payment money dollar banknotes",name:"money-12",cat:[3],type:0},{title:"business finance cash payment money dollar banknotes",name:"money-11",cat:[3],type:0},{title:"education school science healthcare health medical atom chemistry molecule",name:"molecule",cat:[12,18],type:0},{title:"science healthcare health medical atom chemistry molecule",name:"molecule-40",cat:[12],type:0},{title:"science healthcare health medical atom chemistry molecule",name:"molecule-39",cat:[12],type:0},{title:"food coffe coffee espresso moka",name:"moka",cat:[10],type:0},{title:"communication tech technology android device mobile phone smartphone iphone ios telephone call touchscreen",name:"mobile",cat:[22],type:0},{title:"communication tech technology android device mobile phone smartphone iphone ios menu telephone call touchscreen toolbar",name:"mobile-toolbar",cat:[22],type:0},{title:"communication power connect tech technology plug charge android device mobile phone smartphone iphone ios telephone call recharge recharger battery touchscreen charger",name:"mobile-recharger-09",cat:[22],type:0},{title:"communication power connect tech technology plug charge android device mobile phone smartphone iphone ios telephone call recharge recharger battery touchscreen charger",name:"mobile-recharger-08",cat:[22],type:0},{title:"communication tech technology android device mobile phone smartphone iphone ios telephone call touchscreen",name:"mobile-landscape",cat:[22],type:0},{title:"responsive app design android development device mobile phone smartphone ios code brackets coding dev develop script tag tags telephone first",name:"mobile-dev",cat:[5],type:0},{title:"responsive app drawing design android development device mobile phone smartphone ios draw graphic brush telephone",name:"mobile-design",cat:[5],type:0},{title:"user app profile account avatar contact man person mobile phone users member human friend selfie",name:"mobile-contact",cat:[28],type:0},{title:"finance shopping payment money pay shop card charge checkout credit debit method methods apple mobile phone buy credit card online",name:"mobile-card",cat:[19],type:0},{title:"communication tech technology android device mobile phone smartphone iphone ios telephone call touchscreen",name:"mobile-camera",cat:[22],type:0},{title:"communication tech technology android device mobile phone smartphone iphone ios telephone call touchscreen",name:"mobile-button",cat:[22],type:0},{title:"furniture hand electric food cooking egg beater mixer",name:"mixer",cat:[10,11],type:0},{title:"holidays decoration christmas mistletoe",name:"mistletoe",cat:[13],type:0},{title:"network display design computer web development mirror duplicate cast desktop mirroring monitor screen streaming wireless",name:"mirror",cat:[5],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"minimal-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"minimal-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"minimal-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"minimal-down",cat:[2],type:0},{title:"food pack bottle drink milk breakfast carton",name:"milk",cat:[10],type:0},{title:"food cooking kitchen microwave oven",name:"microwave",cat:[10],type:0},{title:"line windows layout list design development shape logo microsoft gallery boxes column grid row table tile view square squares",name:"microsoft",cat:[5],type:0},{title:"education school science healthcare health medical laboratory microscope research",name:"microscope",cat:[12,18],type:0},{title:"user avatar hat mouse animal users disney ear ears mickey",name:"mickey-mouse",cat:[28],type:0},{title:"media music talk tech technology multimedia audio sound mic microphone speaker voice speech",name:"mic",cat:[16,22],type:0},{title:"music talk audio sound mic microphone speaker voice speech",name:"mic-2",cat:[22],type:0},{title:"ui user interface growth settings dashboard speed setting fast gauge indicator metrics odometer performance productivity speedometer widgets",name:"metrics",cat:[27],type:0},{title:"arrow direction expand control git version combine join merge pointing together unify unite",name:"merge",cat:[2],type:0},{title:"arrow direction expand control git version combine join merge pointing together unify unite",name:"merge-round",cat:[2],type:0},{title:"arrow direction expand control git version combine join merge pointing together unify unite",name:"merge-2",cat:[2],type:0},{title:"navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu",cat:[27],type:0},{title:"navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu-square",cat:[27],type:0},{title:"right navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu-right",cat:[27],type:0},{title:"left navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu-left",cat:[27],type:0},{title:"navigation circle ui user interface dot list gallery menu options settings circles dots more",name:"menu-dots",cat:[27],type:0},{title:"navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu-bold",cat:[27],type:0},{title:"navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu-35",cat:[27],type:0},{title:"navigation ui user interface lines list bars gallery hamburger menu options settings burger",name:"menu-34",cat:[27],type:0},{title:"user group team meeting conversation dialog profile account avatar contact male man person users member appointment human friend follower community people",name:"meeting",cat:[28],type:0},{title:"food meat kebab shish spit",name:"meat-spit",cat:[10],type:0},{title:"measure food kitchen cup measuring",name:"measuring-cup",cat:[10],type:0},{title:"measure scale width tool education school office math mathematics design development triangle geometry draw meter ruler science dimention dimentions length measurement",name:"measure-big",cat:[5,18],type:0},{title:"measure scale width tool education school office math mathematics design development triangle geometry draw meter ruler science dimention dimentions length measurement",name:"measure-17",cat:[5,18],type:0},{title:"measure scale width tool education school office math mathematics design development triangle geometry draw meter ruler science dimention dimentions length measurement",name:"measure-02",cat:[5,18],type:0},{title:"business finance education school calculator math operation",name:"math",cat:[3,18],type:0},{title:"box fire food flame smoking burn campfire matches",name:"matches",cat:[10],type:0},{title:"play media music video application app bag briefcase shopping ecommerce sale shop android google purse buy market marketplace",name:"market-play",cat:[19],type:0},{title:"play media music video application app bag briefcase shopping ecommerce sale shop android google purse buy market marketplace",name:"market-music",cat:[19],type:0},{title:"education school office design pen pencil write marker highlight focus highlighter important stationery underline",name:"marker",cat:[5,18],type:0},{title:"direction navigation position gps location map pin place marker",name:"marker-3",cat:[15],type:0},{title:"arrow direction navigation gps location navigate map pin pointer marker compass locate",name:"marker-2",cat:[15],type:0},{title:"right text editing indent margin padding",name:"margin-right",cat:[23],type:0},{title:"left text editing indent margin padding",name:"margin-left",cat:[23],type:0},{title:"direction navigation gps location map address maps route street",name:"map",cat:[15],type:0},{title:"direction navigation position gps location map pin place address marker maps route street",name:"map-pin",cat:[15],type:0},{title:"direction navigation position gps location map pin place address marker maps route street",name:"map-marker",cat:[15],type:0},{title:"arrow direction navigation gps location navigate map address compass maps locate route street",name:"map-gps",cat:[15],type:0},{title:"direction navigation position gps location tool navigate travel map address compass maps instrument route street",name:"map-compass",cat:[15],type:0},{title:"direction navigation gps location map address maps route street",name:"map-big",cat:[15],type:0},{title:"emoticon smiley cheerful happy smile comic manga",name:"manga-63",cat:[6],type:0},{title:"emoticon smiley cheerful happy smile comic manga",name:"manga-62",cat:[6],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"man",cat:[28],type:0},{title:"up user profile account avatar contact male man person users member human friend follower body",name:"man-up",cat:[28],type:0},{title:"user profile account avatar contact male eyewear glasses man person sunglasses users member human friend follower",name:"man-glasses",cat:[28],type:0},{title:"down user profile account avatar contact male man person users member human friend follower body",name:"man-down",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"man-23",cat:[28],type:0},{title:"user sign male man healthcare health medical boy users symbol gender guy sex",name:"man-20",cat:[12,28],type:0},{title:"emoticon smiley malicious smirking spiteful",name:"malicious",cat:[6],type:0},{title:"clothes accessory beauty cosmetics facial gloss lip lipstick makeup",name:"makeup",cat:[4],type:0},{title:"power design charge development attract attraction horseshoe magnet magnetic magnetism metal physics science snap",name:"magnet",cat:[5],type:0},{title:"emoticon angry furious smiley unhappy upset frown mad",name:"mad-58",cat:[6],type:0},{title:"emoticon angry furious smiley unhappy upset frown mad",name:"mad-12",cat:[6],type:0},{title:"media photo animal nature camera option multimedia macro",name:"macro",cat:[1,16],type:0},{title:"direction navigation position download sync gps location update map device address route street",name:"m-update",cat:[15],type:0},{title:"direction navigation position gps location schedule time map address calendar appointment countdown route street",name:"m-time",cat:[15],type:0},{title:"direction navigation position sync gps location refresh reload update map address route street",name:"m-sync",cat:[15],type:0},{title:"direction navigation position gps location map address favorite favourite love like star route street",name:"m-star",cat:[15],type:0},{title:"direction navigation position share social gps location connect map address route street",name:"m-share",cat:[15],type:0},{title:"direction navigation position gps location control preferences system map edit options settings address adjust option configuration configure gear parameter parameters setting setup route street",name:"m-settings",cat:[15],type:0},{title:"direction navigation position gps location lock security map safe address padlock protection secure route street",name:"m-security",cat:[15],type:0},{title:"direction navigation position gps location map view search address find lens explore route street lookup",name:"m-search",cat:[15],type:0},{title:"direction navigation position gps location delete map address clear minus cancel route street",name:"m-remove",cat:[15],type:0},{title:"direction navigation position gps location map pin place address marker route street locator",name:"m-location",cat:[15],type:0},{title:"direction navigation position gps location map address favorite favourite love like heart route street",name:"m-heart",cat:[15],type:0},{title:"change direction navigation position gps location map edit address modify route street",name:"m-edit",cat:[15],type:0},{title:"direction navigation position gps location delete remove map address clear minus cancel route street",name:"m-delete",cat:[15],type:0},{title:"direction navigation position gps location check map address mark approved complete completed done checked tick route street",name:"m-check",cat:[15],type:0},{title:"direction navigation position gps location new map add plus address route street",name:"m-add",cat:[15],type:0},{title:"healthcare health medical lungs",name:"lungs",cat:[12],type:0},{title:"travel bag suitcase backpack baggage luggage",name:"luggage",cat:[26],type:0},{title:"arrow repeat arrows direction sync infinite infinity load loading loop process refresh reload replay update circuit path",name:"loop",cat:[2],type:0},{title:"arrow repeat arrows sync infinite infinity load loading loop process refresh reload replay update",name:"loop-83",cat:[2],type:0},{title:"arrow repeat arrows sync infinite infinity load loading loop process refresh reload replay update",name:"loop-82",cat:[2],type:0},{title:"arrow repeat arrows sync infinite infinity load loading loop process refresh reload replay update shuffle",name:"loop-34",cat:[2],type:0},{title:"arrow repeat arrows circle round sync infinite infinity load loading loop process refresh reload replay update shuffle",name:"loop-30",cat:[2],type:0},{title:"clothes accessory shirt wear long jumper sleeve tshirt",name:"long-sleeve",cat:[4],type:0},{title:"clock travel tower big monument ben london sights",name:"london",cat:[26],type:0},{title:"arrow out user log sign close door exit leave logout outside info",name:"logout",cat:[2],type:0},{title:"arrow out ui user interface log sign close door exit leave logout outside",name:"log-out",cat:[2,27],type:0},{title:"arrow out user log sign close door exit leave logout outside",name:"log-out-2",cat:[2,27],type:0},{title:"arrow input user enter entry form in inbox inside lock log login password security sign",name:"log-in",cat:[2],type:0},{title:"file lock security folder document format safe paper item locked padlock privacy protected protection secure",name:"locked",cat:[8],type:0},{title:"ui user interface lock login password security safe safety locked padlock privacy protected protection secure closed encryption protect",name:"lock",cat:[27],type:0},{title:"lock security communication safe tech technology device mobile phone smartphone telephone padlock protection secure",name:"lock-portrait",cat:[22],type:0},{title:"ui user interface lock login password security safe safety locked padlock privacy protected protection secure closed encryption protect theft unlock unlocked unsafe unsecure",name:"lock-open",cat:[27],type:0},{title:"lock security communication safe tech technology device mobile phone smartphone telephone padlock protection secure",name:"lock-landscape",cat:[22],type:0},{title:"ui user interface lock login password security safe safety locked padlock privacy protected protection secure closed encryption protect",name:"lock-circle",cat:[27],type:0},{title:"ui user interface lock login password security safe safety locked padlock privacy protected protection secure closed encryption protect theft unlock unlocked unsafe unsecure",name:"lock-circle-open",cat:[27],type:0},{title:"food animal nature seafood lobster",name:"lobster",cat:[1,10],type:0},{title:"process organize schedule document list agenda shopping check checklist item items listing tasks todo inventory plan wishlist",name:"list",cat:[19],type:0},{title:"text list editing numbers ordered",name:"list-numbers",cat:[23],type:0},{title:"text list editing bullet bullets unordered",name:"list-bullet",cat:[23],type:0},{title:"file share connection ui connections folder document format web paper item attachment chain hyperlink link linked links url",name:"link",cat:[8],type:0},{title:"share connection ui user interface connections remove web break chain hyperlink link linked links url broken unlink",name:"link-broken-73",cat:[27],type:0},{title:"share connection ui user interface connections remove text web editing break chain hyperlink link linked links url broken unlink",name:"link-broken-70",cat:[23,27],type:0},{title:"share connection ui user interface connections web chain hyperlink link linked links url",name:"link-72",cat:[27],type:0},{title:"share connection ui user interface connections web chain hyperlink link linked links url",name:"link-71",cat:[27],type:0},{title:"share connection ui user interface connections text web editing chain hyperlink link linked links url",name:"link-69",cat:[23,27],type:0},{title:"share connection ui user interface connections web chain hyperlink link linked links url",name:"link-68",cat:[27],type:0},{title:"share connection ui user interface connections web chain hyperlink link linked links url",name:"link-67",cat:[27],type:0},{title:"share connection ui user interface connections web chain hyperlink link linked links url",name:"link-66",cat:[27],type:0},{title:"share connection connections web attachment chain hyperlink link linked links url",name:"link-2",cat:[27],type:0},{title:"arrow line arrows direction directions growth lines competition effort group parallel success team work",name:"lines",cat:[2],type:0},{title:"line height font paragraph text editing formatting distance margins",name:"line-height",cat:[23],type:0},{title:"up hand finger gesture favorite favourite approve like thumbs vote rate thumb",name:"like",cat:[6],type:0},{title:"down no finger gesture favorite emoticon smiley like thumbs vote dislike unlike",name:"like-no",cat:[6],type:0},{title:"up hand finger gesture favorite favourite approve like thumbs vote rate thumb",name:"like-2",cat:[27],type:0},{title:"watch travel house light tower sea lighthouse",name:"lighthouse",cat:[26],type:0},{title:"fire food flame lighter smoking",name:"lighter",cat:[10],type:0},{title:"furniture bulb lamp light flashlight",name:"light",cat:[11],type:0},{title:"light traffic transportation",name:"light-traffic",cat:[25],type:0},{title:"lamp light object flashlight",name:"light-3",cat:[11],type:0},{title:"bulb light celebration party decoration christmas",name:"light-2",cat:[13],type:0},{title:"furniture books bookshop library shelf bookshelf",name:"library",cat:[11],type:0},{title:"full scale energy environment power danger dashboard level signal speed widget score",name:"power-level",cat:[7,25],type:0},{title:"media photo camera multimedia lens",name:"lens-56",cat:[16],type:0},{title:"media camera option multimedia lens",name:"lens-31",cat:[16],type:0},{title:"food fruit slice healthy lemon lime orange",name:"lemon-slice",cat:[10],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft ink leaf feather handwriting plume quill tickle",name:"leaf-edit",cat:[27],type:0},{title:"ui user interface energy environment text message note pen edit pencil write draw create editing compose editor animal nature ink leaf feather handwriting plume quill tickle",name:"leaf-81",cat:[1,7,27],type:0},{title:"ui user interface energy environment text message note pen edit pencil write draw create editing compose editor animal nature ink leaf feather handwriting plume quill tickle",name:"leaf-80",cat:[1,7,27],type:0},{title:"holidays object animal nature leaf",name:"leaf-38",cat:[1,13],type:0},{title:"object animal nature leaf organic",name:"leaf-36",cat:[1],type:0},{title:"browser layout app tab list design internet web development page website boxes grid masonry mockup site table tile view wireframe header sidebar webpage",name:"layout-25",cat:[5],type:0},{title:"layout list design web development page website gallery boxes column grid masonry mockup row site table tile view wireframe",name:"layout-11",cat:[5],type:0},{title:"files file network media structure business hierarchy layer layers order stack map relations sitemap development sheets filter management organization archive sheet layering stackable stacking",name:"layers",cat:[5,8],type:0},{title:"layer layers order stack sheets archive sheet layering overlay stackable stacking",name:"layers-3",cat:[5,27],type:0},{title:"layers picture image photo camera burst mode",name:"layers-2",cat:[5,16],type:0},{title:"business finance hammer action auction judge law lawyer legal",name:"law",cat:[3],type:0},{title:"arrow up file share storage transfer upload connection social export launch network outbox output sharing start",name:"launch-47",cat:[2],type:0},{title:"arrow up file share storage transfer upload connection social export launch network outbox output sharing start",name:"launch-11",cat:[2],type:0},{title:"open emoticon smiley cheerful happy smile mouth laugh positive",name:"laugh-35",cat:[6],type:0},{title:"open emoticon smiley cheerful happy smile mouth laugh positive",name:"laugh-17",cat:[6],type:0},{title:"notebook computer laptop tech technology device mac monitor screen pc personal",name:"laptop",cat:[22],type:0},{title:"progress business finance chart graph computer laptop",name:"laptop-72",cat:[3],type:0},{title:"progress business finance chart graph computer laptop",name:"laptop-71",cat:[3],type:0},{title:"notebook computer laptop tech technology device mac monitor screen pc personal",name:"laptop-2",cat:[22],type:0},{title:"notebook computer laptop tech technology device mac monitor screen camera pc personal",name:"laptop-1",cat:[22],type:0},{title:"communication chat comment conversation talk education school language",name:"language",cat:[18],type:0},{title:"travel furniture bulb lamp light object flame desk night camping gaslight outdoor",name:"lamp",cat:[11,26],type:0},{title:"furniture lamp light floor",name:"lamp-floor",cat:[11],type:0},{title:"lamp light flame night camping gaslight outdoor",name:"lamp-3",cat:[26],type:0},{title:"bulb lamp light desk",name:"lamp-2",cat:[11],type:0},{title:"ui user interface education school glass study science healthcare health medical chemistry flask test tube laboratory research equipment beaker chemical drug experiment lab vessel",name:"lab",cat:[12,18,27],type:0},{title:"download sync update version new system notebook computer laptop tech technology device mac monitor screen software pc personal",name:"l-system-update",cat:[22],type:0},{title:"sync refresh reload update notebook computer laptop tech technology device mac monitor screen pc personal",name:"l-sync",cat:[22],type:0},{title:"control preferences system notebook computer laptop tech technology edit device mac options settings monitor screen adjust option configuration configure gear parameter parameters setting setup pc personal",name:"l-settings",cat:[22],type:0},{title:"lock security notebook computer laptop safe tech technology device mac monitor screen padlock protection secure pc personal",name:"l-security",cat:[22],type:0},{title:"notebook computer laptop tech technology device mac view monitor screen search find lens pc personal",name:"l-search",cat:[22],type:0},{title:"delete remove notebook computer laptop tech technology device mac monitor screen cancel pc personal",name:"l-remove",cat:[22],type:0},{title:"position location notebook computer laptop pin tech technology device mac monitor screen locator pc personal",name:"l-location",cat:[22],type:0},{title:"notebook check computer laptop tech technology device mac monitor screen mark approved complete completed done checked pc personal",name:"l-check",cat:[22],type:0},{title:"new notebook computer laptop tech technology device mac add plus monitor screen pc personal",name:"l-add",cat:[22],type:0},{title:"ui media control volume multimedia audio knob",name:"knob",cat:[16],type:0},{title:"food cutlery knife tools utensils silverware",name:"knife",cat:[10],type:0},{title:"food kitchen fan extractor",name:"kitchen-fan",cat:[10],type:0},{title:"emoticon smiley kiss lips love romantic",name:"kiss",cat:[6],type:0},{title:"hat baby kid emoticon smiley cheerful happy smile boy",name:"kid",cat:[6],type:0},{title:"media hat baby kid photo camera option multimedia emoticon smiley cheerful happy smile boy",name:"kid-2",cat:[6,16],type:0},{title:"keyboard control type accessory computer tech technology typing hardware keys peripheral",name:"keyboard",cat:[22],type:0},{title:"keyboard control type accessory computer tech technology typing wireless hardware wifi keys peripheral bluetooth",name:"keyboard-wireless",cat:[22],type:0},{title:"keyboard control type accessory computer tech technology typing wireless hardware wifi keys peripheral bluetooth",name:"keyboard-wifi",cat:[22],type:0},{title:"keyboard control type accessory computer tech technology mouse typing hardware keys peripheral accessories",name:"keyboard-mouse",cat:[22],type:0},{title:"keyboard control type accessory computer tech technology typing hardware disconnect hide keys peripheral",name:"keyboard-hide",cat:[22],type:0},{title:"ui user interface lock password key object secure",name:"key-26",cat:[27],type:0},{title:"ui user interface password key object secure access",name:"key-25",cat:[27],type:0},{title:"power weight sport fitness dumbbells gym kettlebell lifting",name:"kettlebell",cat:[21],type:0},{title:"food kitchen water tea heater kettle teakettle teapot boiler",name:"kettle",cat:[10],type:0},{title:"direction navigation location way path shape vector track route street road journey",name:"journey-08",cat:[15],type:0},{title:"direction navigation location way path shape vector track route street road journey",name:"journey-07",cat:[15],type:0},{title:"direction navigation location way path shape vector track route street road journey",name:"journey-06",cat:[15],type:0},{title:"direction navigation location way path shape vector track route street road journey",name:"journey-05",cat:[15],type:0},{title:"direction navigation location way path shape vector track route street road journey",name:"journey-04",cat:[15],type:0},{title:"travel animal nature sea jellyfish medusa posionous",name:"jellyfish",cat:[1,26],type:0},{title:"clothes accessory wear jeans pants slacks trousers pocket",name:"jeans-pocket",cat:[4],type:0},{title:"clothes accessory wear jeans pants slacks trousers pocket",name:"jeans-43",cat:[4],type:0},{title:"clothes accessory wear jeans pants slacks trousers",name:"jeans-41",cat:[4],type:0},{title:"food fruit sweet jar breakfast jam marmalade preserves",name:"jam",cat:[10],type:0},{title:"font text type typography style editing formatting italic",name:"italic",cat:[23],type:0},{title:"travel building palace religious islamic istanbul mosque muslim",name:"istanbul",cat:[26],type:0},{title:"furniture clothes accessory iron ironing laundry",name:"iron",cat:[4],type:0},{title:"clothes accessory iron ironing laundry ban dont no stop",name:"iron-dont",cat:[4],type:0},{title:"clothes iron laundry",name:"iron-2",cat:[11],type:0},{title:"arrow back curve invert redo repeat rotate",name:"invert",cat:[2],type:0},{title:"healthcare health medical intestines",name:"intestine",cat:[12],type:0},{title:"arrow download input save import user enter entry in inbox inside lock log login password security sign way",name:"input-21",cat:[2],type:0},{title:"arrow download input save import user enter entry in inbox inside lock log login password security sign way",name:"input-12",cat:[2],type:0},{title:"file info folder document format paper item alert information notification about faq help hint support",name:"info",cat:[8],type:0},{title:"repeat ui user interface infinite infinity loop endless forever",name:"infinite",cat:[27],type:0},{title:"media format canvas picture gallery image photo photography graphic landscape album multimedia",name:"image",cat:[5,16],type:0},{title:"location media map picture image photo multimedia",name:"image-location",cat:[16],type:0},{title:"media delete remove picture image photo multimedia",name:"image-delete",cat:[16],type:0},{title:"media picture add image photo multimedia",name:"image-add",cat:[16],type:0},{title:"media picture image photo multimedia",name:"image-05",cat:[16],type:0},{title:"file media document format design canvas picture gallery paper image photo photography graphic landscape album multimedia",name:"image-3",cat:[8],type:0},{title:"media text picture editing image photo multimedia",name:"image-02",cat:[16,23],type:0},{title:"canvas picture gallery image photo photography graphic landscape",name:"image-2",cat:[5],type:0},{title:"media picture image photo multimedia",name:"image-01",cat:[16],type:0},{title:"travel icehouse igloo",name:"igloo",cat:[26],type:0},{title:"food dessert sweet summer cream ice icecream lolly popsicle",name:"ice-cream-72",cat:[10],type:0},{title:"food dessert sweet summer cone cream ice icecream",name:"ice-cream-22",cat:[10],type:0},{title:"travel home object camping hovel hut tent",name:"hut",cat:[26],type:0},{title:"weather hurricane storm tornado",name:"hurricane-45",cat:[29],type:0},{title:"weather hurricane storm tornado",name:"hurricane-44",cat:[29],type:0},{title:"weather energy environment healthcare health medical humidity",name:"humidity-52",cat:[7,12,29],type:0},{title:"weather healthcare health medical humidity",name:"humidity-26",cat:[12,29],type:0},{title:"design internet web development end front frontend programming standards website html html5 markup",name:"html5",cat:[5],type:0},{title:"ui user interface load loading clock time glass wait waiting timer countdown track tracking deadline hour hourglass sand stopwatch",name:"hourglass",cat:[27],type:0},{title:"travel building estate real hotel inn",name:"hotel",cat:[26],type:0},{title:"sign travel notification signboard hotel symbol",name:"hotel-symbol",cat:[26],type:0},{title:"travel front desk bell hotel",name:"hotel-bell",cat:[26],type:0},{title:"food fast fastfood hot dog hotdog sausage",name:"hot-dog",cat:[10],type:0},{title:"cross healthcare health medical hospital",name:"hospital-34",cat:[12],type:0},{title:"cross healthcare health medical hospital",name:"hospital-33",cat:[12],type:0},{title:"cross healthcare health medical hospital",name:"hospital-32",cat:[12],type:0},{title:"sport clothes accessory wear hoodie pullover sweatshirt",name:"hoodie",cat:[4,21],type:0},{title:"energy environment building home house smart ecology saver green bio shelter family",name:"home",cat:[7],type:0},{title:"ui user interface office building estate home house real page address apartment homepage local shelter",name:"home-simple",cat:[27],type:0},{title:"building estate home house real view search find lens explore apartment local lookup",name:"home-search",cat:[15],type:0},{title:"ui user interface office building estate home house real page address apartment homepage local shelter",name:"home-minimal",cat:[27],type:0},{title:"ui user interface office building estate home house real page address apartment homepage local shelter",name:"home-52",cat:[27],type:0},{title:"ui user interface office building estate home house real page address apartment homepage local shelter",name:"home-51",cat:[27],type:0},{title:"user home house person member human friend shelter community family",name:"home-2",cat:[28],type:0},{title:"time hand fingers gesture hold tap screen touch one gestures interactive",name:"hold",cat:[24],type:0},{title:"sport game stick ice hockey nhl",name:"hockey",cat:[21],type:0},{title:"food cooking kitchen ring hot plate hob hotplate stove",name:"hob",cat:[10],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards file upload",name:"hit-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"hit-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"hit-left",cat:[2],type:0},{title:"arrow bottom descend down downward download file",name:"hit-down",cat:[2],type:0},{title:"network structure business hierarchy finance map relations sitemap",name:"hierarchy-56",cat:[3],type:0},{title:"network structure business hierarchy finance map relations sitemap",name:"hierarchy-55",cat:[3],type:0},{title:"network structure business hierarchy finance map relations sitemap",name:"hierarchy-54",cat:[3],type:0},{title:"network structure business hierarchy finance map relations sitemap",name:"hierarchy-53",cat:[3],type:0},{title:"sport hat safety helmet car protection transportation crash motorcycle",name:"helmet",cat:[21,25],type:0},{title:"hat helmet protection",name:"helmet-2",cat:[21,25],type:0},{title:"vehicle transportation helicopter",name:"helicopter",cat:[25],type:0},{title:"measure height healthcare health medical patient",name:"height",cat:[12],type:0},{title:"furniture heater heating radiator",name:"heater",cat:[11],type:0},{title:"sport healthcare health medical beat heartbeat life pulse",name:"heartbeat",cat:[12,21],type:0},{title:"document format award paper favorite favourite item love romantic like favorites heart valentine dating relationship romance",name:"heart",cat:[8],type:0},{title:"ui user interface close delete remove day award favorite favourite minus love romantic like heart cancel valentine dating relationship romance negative",name:"heart-remove",cat:[27],type:0},{title:"ui user interface day award add plus favorite favourite love romantic positive like heart valentine dating relationship romance",name:"heart-add",cat:[27],type:0},{title:"day award favorite favourite love romantic like heart valentine dating relationship romance",name:"heart-2",cat:[27],type:0},{title:"communication answer conversation dialog speaking talk tech technology service audio help support headphones customer headphone headset listen",name:"headset",cat:[22],type:0},{title:"media music player accessory tech technology multimedia audio sound support headphones headphone headset listen",name:"headphones",cat:[16,22],type:0},{title:"media music multimedia audio sound support headphones",name:"headphones-mic",cat:[16],type:0},{title:"music player accessory audio sound support headphones headphone headset listen",name:"headphones-2",cat:[22],type:0},{title:"music player accessory tech technology audio sound support headphones headphone headset listen",name:"headphone",cat:[22],type:0},{title:"video tech technology cable plug port connector wire hdmi vga",name:"hdmi",cat:[22],type:0},{title:"business finance clothes accessory bowler hat wear cap",name:"hat",cat:[3,4],type:0},{title:"top clothes accessory hat wear cap",name:"hat-top",cat:[4],type:0},{title:"hat graduation university",name:"hat-3",cat:[18],type:0},{title:"hat wear cap",name:"hat-2",cat:[4,13],type:0},{title:"emoticon smiley cheerful happy smile summer sun",name:"happy-sun",cat:[6],type:0},{title:"emoticon smiley hannibal mask",name:"hannibal",cat:[6],type:0},{title:"furniture clothes coat hanger",name:"hanger",cat:[11],type:0},{title:"furniture clothes coat hanger towel",name:"hanger-clothes",cat:[11],type:0},{title:"business finance office money agreement deal handshake",name:"handshake",cat:[3],type:0},{title:"business finance payment money coin hand handout",name:"handout",cat:[3],type:0},{title:"finance shopping payment money hand shop card charge checkout credit debit method methods swipe buy credit card transaction",name:"hand-card",cat:[19],type:0},{title:"work business finance anvil bespoke craft hammer handmade",name:"hammer",cat:[3],type:0},{title:"media music multimedia audio guitar",name:"guitar",cat:[16],type:0},{title:"files file group document layer layers note design report development copy paper clone copies documents duplicate paste",name:"group",cat:[5],type:0},{title:"media photo grid camera option multimedia",name:"grid",cat:[16],type:0},{title:"line ui user interface layout list shape gallery boxes column grid row table tile view square squares",name:"grid-square",cat:[27],type:0},{title:"line ui user interface layout list shape gallery boxes column grid row table tile view square squares",name:"grid-50",cat:[27],type:0},{title:"line ui user interface layout list shape gallery boxes column grid row table tile view square squares",name:"grid-49",cat:[27],type:0},{title:"line ui user interface layout list shape gallery boxes column grid row table tile view square squares",name:"grid-48",cat:[27],type:0},{title:"line ui user interface layout list shape gallery boxes column grid row table tile view square squares",name:"grid-46",cat:[27],type:0},{title:"line ui user interface layout list shape gallery boxes column grid row table tile view square squares",name:"grid-45",cat:[27],type:0},{title:"cross holidays halloween scary graveyard cemetery grave rip tombstone",name:"grave",cat:[13],type:0},{title:"food fruit healthy grape grapes vineyard",name:"grape",cat:[10],type:0},{title:"education school check grammar",name:"grammar-check",cat:[18],type:0},{title:"cursor hand gesture grab touch gestures",name:"grab",cat:[24],type:0},{title:"arrow direction navigation gps location navigate map compass maps locate",name:"gps",cat:[15],type:0},{title:"sport game club course golf",name:"golf",cat:[21],type:0},{title:"business finance bar investment gold ingot stack treasury",name:"gold",cat:[3],type:0},{title:"arrow business finance dartboard darts goal goals target targeting",name:"goal-65",cat:[3],type:0},{title:"arrow business finance dartboard darts goal goals target targeting",name:"goal-64",cat:[3],type:0},{title:"clothes accessory wear gloves",name:"gloves",cat:[4],type:0},{title:"holidays wear gloves oven christmas glove",name:"glove",cat:[13],type:0},{title:"energy environment browser business finance education school travel earth globe internet world map object",name:"globe",cat:[3,7,18,26],type:0},{title:"globe world map",name:"globe-2",cat:[18,26],type:0},{title:"education school glasses clothes accessory wear eyeglasses glass read spectacles sunglasses",name:"glasses",cat:[4,18],type:0},{title:"glasses eyeglasses glass read spectacles",name:"glasses-2",cat:[18],type:0},{title:"glass food alcohol drink beverage wine",name:"glass",cat:[10],type:0},{title:"exchange box shopping holidays gift package present surprise birthday christmas donation wrapped",name:"gift",cat:[13],type:0},{title:"exchange box holidays gift package present christmas",name:"gift-exchange",cat:[13],type:0},{title:"exchange box shopping gift package present surprise birthday christmas donation wrapped",name:"gift-2",cat:[19,27],type:0},{title:"holidays halloween emoticon smiley ghost horror scary spooky enemy pacman",name:"ghost",cat:[6,13],type:0},{title:"halloween ghost horror scary enemy pacman",name:"ghost-2",cat:[13],type:0},{title:"line file folder layout document format list shape gallery paper boxes grid table tile view square squares item organise",name:"gallery",cat:[8],type:0},{title:"ui user interface tool settings filter categories category filtering filters refine search sort funnel seo",name:"funnel-41",cat:[27],type:0},{title:"ui user interface tool settings filter categories category filtering filters refine search sort funnel seo",name:"funnel-40",cat:[27],type:0},{title:"ui user interface tool settings filter categories category filtering filters refine search sort funnel seo",name:"funnel-39",cat:[27],type:0},{title:"ui user interface enlarge expand fullscreen increase maximize zoom full scale size in center plus screen big magnify explore magnifier magnifying fullsize large",name:"fullsize",cat:[27],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-split-73",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-split-72",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-double-75",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-double-74",cat:[2],type:0},{title:"arrow arrows move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-77",cat:[2,16],type:0},{title:"arrow arrows move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-76",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-71",cat:[2],type:0},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom disperse",name:"fullscreen-70",cat:[2],type:0},{title:"energy environment charge car charging fuel recharge recharging station",name:"fuel",cat:[7],type:0},{title:"energy environment charge ecology car charging green fuel recharge recharging station bio biofuel",name:"fuel-electric",cat:[7],type:0},{title:"furniture food cooler freezer fridge refrigerator",name:"fridge",cat:[10,11],type:0},{title:"holidays halloween horror scary spooky monster dead frankenstein",name:"frankenstein",cat:[13],type:0},{title:"layout design development picture frame image mirror oval photo photography",name:"frame",cat:[5],type:0},{title:"media picture frame photo multimedia",name:"frame-41",cat:[16],type:0},{title:"media furniture picture frame image photo multimedia",name:"frame-12",cat:[11,16],type:0},{title:"arrow forward move next ui user interface control layer design",name:"forward",cat:[27],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards file align alignment document extension font format paragraph text type typography",name:"format-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous file align alignment document extension font format paragraph text type typography",name:"format-left",cat:[2],type:0},{title:"out data input form application document design development page fill paper submission submit",name:"form",cat:[5],type:0},{title:"arrow arrows direction share directions divide separate split fork organize splitter",name:"fork",cat:[2],type:0},{title:"arrow arrows direction share directions divide separate split fork organize splitter",name:"fork-round",cat:[2],type:0},{title:"energy environment plant animal nature ecology green forest trees",name:"forest",cat:[1,7],type:0},{title:"weather wind flag forecast",name:"forecast",cat:[29],type:0},{title:"sport american football helmet bowl headguard nfl",name:"football-headguard",cat:[21],type:0},{title:"files file folder document format text email mail message note office contact pen edit pencil write create editing paper documents compose editor catalog draft envelope vector archive",name:"folder-vector",cat:[8],type:0},{title:"files file share user communication post folder document format profile office account person paper documents catalog envelope archive users member",name:"folder-user",cat:[8,28],type:0},{title:"arrow files up data file input save share storage sync transfer backup ftp hosting import server upload folder document format office paper documents catalog envelope archive",name:"folder-upload",cat:[8],type:0},{title:"files file folder clock schedule document format time office wait paper documents catalog envelope timer archive appointment countdown",name:"folder-time",cat:[8],type:0},{title:"files file folder document format office paper documents catalog bookmark favorite favourite envelope love like archive favorites star",name:"folder-star",cat:[8],type:0},{title:"arrow files file share connection social user update communication export network post sharing folder document format profile office account connect paper documents catalog envelope archive users member shared",name:"folder-shared",cat:[8,28],type:0},{title:"files file folder control preferences document format system office edit options settings paper documents catalog adjust option envelope archive configuration configure gear parameter parameters setting setup tools",name:"folder-settings-97",cat:[8],type:0},{title:"files file folder control preferences document format system office edit options settings paper documents catalog adjust option envelope archive configuration configure gear parameter parameters setting setup tools",name:"folder-settings-81",cat:[8],type:0},{title:"files file folder document format office discover paper documents view search catalog envelope archive find lens preview",name:"folder-search",cat:[8],type:0},{title:"files file folder delete remove document format office paper documents catalog clear envelope minus archive cancel",name:"folder-remove",cat:[8],type:0},{title:"change files file sync refresh reload update folder document format office paper documents catalog envelope archive",name:"folder-refresh",cat:[8],type:0},{title:"file sign info folder document mark alert information notification faq help support ask query question unknown",name:"folder-question",cat:[8],type:0},{title:"files play file music video folder player document format office film movie paper documents catalog envelope archive stream",name:"folder-play",cat:[8],type:0},{title:"files file folder document format office ban stop banned block blocked forbidden not prevent paper documents catalog envelope accept archive accessibility none private prohibition",name:"folder-no-access",cat:[8],type:0},{title:"files file media music folder player document format note office paper documents catalog multimedia envelope audio archive sound soundtrack radio song",name:"folder-music",cat:[8,16],type:0},{title:"files file folder document format order certificate office bill payment money dollar agreement paper documents catalog envelope archive invoice receipt",name:"folder-money",cat:[8],type:0},{title:"files file lock security folder document format office safe paper documents catalog envelope archive locked padlock privacy protected protection secure",name:"folder-locked",cat:[8],type:0},{title:"files file share connection connections folder document format office paper documents catalog envelope archive attachment chain hyperlink link linked links url",name:"folder-link",cat:[8],type:0},{title:"files file info folder document format office paper documents catalog envelope archive alert information notification about faq help hint support",name:"folder-info",cat:[8],type:0},{title:"files file media folder document format office picture gallery paper image photo photography documents graphic landscape album catalog item multimedia envelope archive",name:"folder-image",cat:[8,16],type:0},{title:"files file folder document format office paper documents catalog favorite favourite envelope love like archive favorites heart",name:"folder-heart",cat:[8],type:0},{title:"line files file folder layout document format list office shape gallery paper documents boxes grid table tile view square squares catalog envelope archive organise",name:"folder-gallery",cat:[8],type:0},{title:"files file sign info folder document format office stop paper documents catalog mark error envelope danger archive alert attention caution exclamation information notification problem warning",name:"folder-exclamation",cat:[8],type:0},{title:"change files file folder document format text email mail message note office contact pen edit pencil write draw create editing paper documents compose editor catalog draft modify envelope archive",name:"folder-edit",cat:[8],type:0},{title:"arrow files bottom down downward data download file input save share sync transfer backup folder document format office paper documents catalog envelope archive",name:"folder-download",cat:[8],type:0},{title:"files file folder tool document format office development programming paper documents catalog code coding develop script tag envelope archive source",name:"folder-dev",cat:[8],type:0},{title:"files cloud data file input save share storage sync transfer backup hosting import server upload folder document format office paper documents catalog envelope archive database",name:"folder-cloud",cat:[8],type:0},{title:"files file folder success select available document format office check paper documents selected catalog mark envelope accept approve approved checkmark complete completed done archive checked tick",name:"folder-check",cat:[8],type:0},{title:"files data file stats folder document format chart piechart office graph pie report statistics analytics percent paper documents catalog envelope archive charting charts results",name:"folder-chart-pie",cat:[8],type:0},{title:"files data file diagram stats growth folder document format chart office graph statistics analytics bar stock bars paper documents catalog envelope level archive",name:"folder-chart-bar",cat:[8],type:0},{title:"files file folder document format education agenda book diary note notebook notes pad ribbon office paper documents catalog label reading study bookmark favorite favourite manual mark marker envelope archive",name:"folder-bookmark",cat:[8],type:0},{title:"files file music folder document format office volume paper documents catalog envelope audio archive sound soundtrack",name:"folder-audio",cat:[8],type:0},{title:"files file folder document format new office add create plus paper documents catalog item envelope archive",name:"folder-add",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-19",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-18",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-17",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-16",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-15",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-14",cat:[8],type:0},{title:"files file folder document format office paper documents catalog envelope archive",name:"folder-13",cat:[8],type:0},{title:"weather fog mist",name:"fog",cat:[29],type:0},{title:"user profile contact person target photo camera focus users member human vatar",name:"focus",cat:[28],type:0},{title:"media photo camera multimedia focus",name:"focus-circle",cat:[16],type:0},{title:"media photo camera option multimedia focus",name:"focus-40",cat:[16],type:0},{title:"media photo camera multimedia focus",name:"focus-38",cat:[16],type:0},{title:"media goal photo camera multimedia focus aim",name:"focus-32",cat:[16],type:0},{title:"plant flower animal nature green gardening leaves rose",name:"flower-07",cat:[1],type:0},{title:"plant flower animal nature green gardening leaves",name:"flower-06",cat:[1],type:0},{title:"plant flower animal nature green gardening leaves",name:"flower-05",cat:[1],type:0},{title:"flip clothes accessory wear footwear beach flipflop flop foot sandal slipper",name:"flip",cat:[4],type:0},{title:"exchange flip horizontal swap design development transform copy mirror editor vertically complement reflect reverse twin",name:"flip-vertical",cat:[5],type:0},{title:"exchange flip swap vertical design development transform copy horizontally mirror editor complement reflect reverse twin",name:"flip-horizontal",cat:[5],type:0},{title:"up hand fingers gesture touch gestures swipe flick",name:"flick-up",cat:[24],type:0},{title:"right hand fingers gesture touch gestures swipe flick",name:"flick-right",cat:[24],type:0},{title:"left hand fingers gesture touch gestures swipe flick",name:"flick-left",cat:[24],type:0},{title:"down hand fingers gesture touch gestures swipe flick",name:"flick-down",cat:[24],type:0},{title:"education school science healthcare health medical biology flask test tube laboratory",name:"flask",cat:[12,18],type:0},{title:"science flask laboratory",name:"flask-2",cat:[12],type:0},{title:"media light photo multimedia flash off",name:"flash-off-26",cat:[16],type:0},{title:"media light photo multimedia flash off",name:"flash-off-23",cat:[16],type:0},{title:"media light photo multimedia flash auto",name:"flash-auto-25",cat:[16],type:0},{title:"media light photo multimedia flash auto",name:"flash-auto-22",cat:[16],type:0},{title:"media light photo camera multimedia flash",name:"flash-29",cat:[16],type:0},{title:"weather media light photo multimedia flash lightning",name:"flash-24",cat:[16,29],type:0},{title:"weather media light photo multimedia flash lightning",name:"flash-21",cat:[16,29],type:0},{title:"ui user interface energy fire light animal nature healthcare health medical flame hot burn burning fiery heat warm",name:"flame",cat:[1,12,27],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag",cat:[15],type:0},{title:"weather location message sport map tag important maps alert flag banner notify",name:"flag-triangle",cat:[15,21,29],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag-simple",cat:[15],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag-points-32",cat:[15],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag-points-31",cat:[15],type:0},{title:"start sport goal flag finish race",name:"flag-finish",cat:[21],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag-diagonal-34",cat:[15],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag-diagonal-33",cat:[15],type:0},{title:"location message map tag important maps alert flag banner notify",name:"flag-complex",cat:[15],type:0},{title:"arrow arrows direction move out enlarge expand fullscreen increase maximize reach window zoom vertical fit full measure resize responsive scale size height",name:"fit-vertical",cat:[2],type:0},{title:"arrow arrows direction horizontal move out enlarge expand fullscreen increase maximize reach window zoom fit full measure resize responsive scale size width",name:"fit-horizontal",cat:[2],type:0},{title:"emoticon smiley agree fist greeting punch",name:"fist",cat:[6],type:0},{title:"sport fish catching fishing hook",name:"fishing",cat:[21],type:0},{title:"food animal nature skeleton seafood fish sea bones fishbone",name:"fishbone",cat:[1,10],type:0},{title:"food cooking animal nature healthy seafood fish sea",name:"fish",cat:[1,10],type:0},{title:"lock security safe tech technology protection secure antivirus encryption firewall shield",name:"firewall",cat:[22],type:0},{title:"fire travel animal nature flame fireplace wood",name:"fire",cat:[1,26],type:0},{title:"ui user interface tool settings filter categories category filtering filters refine search sort funnel seo",name:"filter",cat:[27],type:0},{title:"navigation ui user interface close exit cross delete remove settings filter filters sort mark cancel configuration funnel nav",name:"filter-remove",cat:[27],type:0},{title:"files file network structure business hierarchy layer layers chart design map relations sitemap development filter management organization",name:"filter-organization",cat:[5],type:0},{title:"navigation ui user interface success check settings filter filters sort mark tick configuration ok funnel nav",name:"filter-check",cat:[27],type:0},{title:"arrow direction top up upward cloud data file input save share storage transfer backup ftp hosting import server upload inbox folder",name:"file-upload-93",cat:[2,8],type:0},{title:"arrow direction top up upward cloud data file input save share storage transfer backup ftp hosting import server upload inbox folder",name:"file-upload-88",cat:[2,8],type:0},{title:"arrow direction top up upward cloud data file input save share storage transfer backup ftp hosting import server upload inbox folder",name:"file-upload-86",cat:[2,8],type:0},{title:"arrow bottom descend down downward data download file input save share storage transfer inbox folder",name:"file-download-94",cat:[2,8],type:0},{title:"arrow bottom descend down downward data download file input save share storage transfer inbox folder",name:"file-download-89",cat:[2,8],type:0},{title:"arrow bottom descend down downward data download file input save share storage transfer inbox folder",name:"file-download-87",cat:[2,8],type:0},{title:"sport game mask activity fence fencing",name:"fencing",cat:[21],type:0},{title:"save ui user interface close delete remove award bookmark favorite favourite minus love like vote cancel star rate negative",name:"favourite-remove-33",cat:[27],type:0},{title:"ui user interface close delete remove day award favorite favourite minus love romantic like heart cancel valentine dating relationship romance negative",name:"favourite-remove-30",cat:[27],type:0},{title:"save ui user interface award add plus bookmark favorite favourite love positive like vote star rate",name:"favourite-add-32",cat:[27],type:0},{title:"ui user interface day award add plus favorite favourite love romantic positive like heart valentine dating relationship romance",name:"favourite-add-29",cat:[27],type:0},{title:"save ui user interface award holidays bookmark favorite favourite love like vote star rate rating",name:"favourite-31",cat:[13,27],type:0},{title:"ui user interface day award favorite favourite healthcare health medical love romantic like heart valentine dating relationship romance",name:"favourite-28",cat:[12,27],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"fat-remove",cat:[27],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"fat-delete",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"fat-add",cat:[27],type:0},{title:"user group team home house person users member human friend shelter community people couple family",name:"family",cat:[28],type:0},{title:"weather temperature degrees fahrenheit",name:"fahrenheit",cat:[29],type:0},{title:"energy environment power business finance building estate real factory industry plant smoke",name:"factory",cat:[3,7],type:0},{title:"ui user interface watch block view search visibility blind eye preview disabled hidden hide look observe overview see sight visible vision invisible",name:"eye-ban-20",cat:[27],type:0},{title:"ui user interface watch block view search visibility blind eye preview disabled hidden hide look observe overview see sight visible vision invisible",name:"eye-ban-18",cat:[27],type:0},{title:"ui user interface watch view search visibility eye preview look observe overview see sight visible vision",name:"eye-19",cat:[27],type:0},{title:"ui user interface watch view search visibility eye preview look observe overview see sight visible vision",name:"eye-17",cat:[27],type:0},{title:"arrow up file share storage transfer upload connection social export network outbox output sharing",name:"export",cat:[2],type:0},{title:"location security travel target map search maps find scan scanner radar explore track",name:"explore",cat:[15],type:0},{title:"location user security target map maps find scan scanner radar explore track",name:"explore-user",cat:[15],type:0},{title:"travel explore journey trip adventure holiday fun",name:"explore-2",cat:[26],type:0},{title:"file sign info folder document stop mark error danger alert attention caution exclamation information notification problem warning",name:"exclamation",cat:[8],type:0},{title:"change exchange user interchange trade group team account person users member replace human people",name:"exchange",cat:[28],type:0},{title:"delete remove tool school drawing design edit development clean clear erase eraser rubber wipe",name:"eraser-46",cat:[5],type:0},{title:"delete remove tool education school drawing design edit development clean clear erase eraser rubber wipe",name:"eraser-33",cat:[5,18],type:0},{title:"delete remove tool education school drawing design edit development clean clear erase eraser rubber wipe",name:"eraser-32",cat:[5,18],type:0},{title:"arrow direction move out enlarge expand fullscreen increase maximize reach window zoom vertical",name:"enlarge-vertical",cat:[2],type:0},{title:"arrow direction horizontal move out enlarge expand fullscreen increase maximize reach window zoom",name:"enlarge-horizontal",cat:[2],type:0},{title:"arrow direction move out diagonal enlarge expand fullscreen increase maximize orientation reach window zoom",name:"enlarge-diagonal-44",cat:[2],type:0},{title:"arrow direction move out diagonal enlarge expand fullscreen increase maximize orientation reach window zoom",name:"enlarge-diagonal-43",cat:[2],type:0},{title:"arrow move out circle round enlarge expand fullscreen increase maximize reach window zoom center",name:"enlarge-circle",cat:[2],type:0},{title:"ui user interface enlarge expand fullscreen increase maximize zoom full scale size in center plus screen crop big magnify explore magnifier magnifying fullsize large",name:"enlarge-59",cat:[27],type:0},{title:"ui user interface enlarge expand fullscreen increase maximize zoom full scale size in center plus screen crop big magnify explore magnifier magnifying fullsize large",name:"enlarge-58",cat:[27],type:0},{title:"ui user interface enlarge expand fullscreen increase maximize zoom full scale size in center plus screen crop big magnify explore magnifier magnifying fullsize large",name:"enlarge-57",cat:[27],type:0},{title:"arrow direction horizontal move out enlarge expand fullscreen increase maximize reach window zoom",name:"enlarge-46",cat:[2],type:0},{title:"arrow direction horizontal move out enlarge expand fullscreen increase maximize reach window zoom",name:"enlarge-45",cat:[2],type:0},{title:"energy power sport food fitness gym powder proteins supplement",name:"energy-supplement",cat:[21],type:0},{title:"energy power sport food bottle drink beverage boost fitness",name:"energy-drink",cat:[10,21],type:0},{title:"energy power sport food bottle drink beverage boost fitness",name:"energy-drink-2",cat:[10,21],type:0},{title:"ui user interface communication post send email mail message messages contact write envelope letter mailbox news newsletter",name:"email-85",cat:[27],type:0},{title:"ui user interface communication post send email mail message messages contact write envelope letter mailbox news newsletter",name:"email-84",cat:[27],type:0},{title:"ui user interface communication post send email mail message messages contact write envelope letter mailbox news newsletter",name:"email-83",cat:[27],type:0},{title:"arrow direction top up upward file upload eject",name:"eject",cat:[2],type:0},{title:"food breakfast egg fried yolk",name:"egg",cat:[10],type:0},{title:"holidays decoration egg easter",name:"egg-39",cat:[13],type:0},{title:"holidays decoration egg easter",name:"egg-38",cat:[13],type:0},{title:"change file email mail message note contact pen edit pencil write draw style create editing compose editor draft modify formatting",name:"edit",cat:[8,23],type:0},{title:"media photo camera contrast option saturation multimedia",name:"edit-saturation",cat:[16],type:0},{title:"media photo camera contrast option multimedia",name:"edit-contrast-43",cat:[16],type:0},{title:"media photo camera contrast option multimedia",name:"edit-contrast-42",cat:[16],type:0},{title:"media photo camera contrast option multimedia",name:"edit-color",cat:[16],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-78",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-77",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-76",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-75",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-74",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-73",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-72",cat:[27],type:0},{title:"ui user interface text message note pen edit pencil write draw create editing compose editor draft",name:"edit-71",cat:[27],type:0},{title:"font text type typography edit color style formatting colour",name:"edit-2",cat:[23],type:0},{title:"weather eclipse",name:"eclipse",cat:[29],type:0},{title:"weight sport fitness equipment exercise dumbbells gym workout",name:"dumbbells",cat:[21],type:0},{title:"weather drop drops water rain",name:"drops",cat:[29],type:0},{title:"weather ui user interface energy environment drop animal nature healthcare health medical ink tear water rain blood drip dripping droplet humid liquid oil petroleum wet",name:"drop",cat:[1,7,12,27,29],type:0},{title:"weather drop tool water rain blur",name:"drop-15",cat:[29,5],type:0},{title:"travel glass food alcohol drink beverage cocktail straw",name:"drink",cat:[10,26],type:0},{title:"glass alcohol drink beverage cocktail straw",name:"drink-2",cat:[26],type:0},{title:"woman clothes accessory dress wear long skirt",name:"dress-woman",cat:[4],type:0},{title:"suit clothes accessory dress wear coat jacket blazer men",name:"dress-man",cat:[4],type:0},{title:"files file storage folder organize furniture documents archive drawer cabinet cupboard drawers handle interior safebox",name:"drawer",cat:[8,11],type:0},{title:"drawer cabinet cupboard drawers",name:"drawer-2",cat:[11],type:0},{title:"arrow move upload resize drag drop cursor select design development click mouse point pointer paste reposition touch",name:"drag",cat:[5],type:0},{title:"move up control drag fingers gesture touch one gestures",name:"drag-up",cat:[24],type:0},{title:"right move control drag fingers gesture touch one gestures",name:"drag-right",cat:[24],type:0},{title:"left move control drag fingers gesture touch one gestures",name:"drag-left",cat:[24],type:0},{title:"down move control drag fingers gesture touch one gestures",name:"drag-down",cat:[24],type:0},{title:"move control drag cursor gesture touch gestures",name:"drag-31",cat:[24],type:0},{title:"move control drag cursor gesture touch gestures",name:"drag-21",cat:[24],type:0},{title:"arrow bottom descend down downward data download file input save storage backup",name:"download",cat:[2,27],type:0},{title:"arrow bottom descend down downward data download file input save backup document",name:"download-3",cat:[2,8],type:0},{title:"arrow bottom descend down downward data download file input save share storage transfer",name:"download-2",cat:[2],type:0},{title:"double hand fingers gesture tap screen touch one gestures interactive",name:"double-tap",cat:[24],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards double",name:"double-right",cat:[2],type:0},{title:"arrow back left arrows direction backward backwards keyboard move navigation out position previous double rewind",name:"double-left",cat:[2],type:0},{title:"arrow direction top up upward cloud data file input save share storage transfer backup ftp hosting import server upload drag drop",name:"dots-upload",cat:[2],type:0},{title:"arrow bottom descend down downward data download file input save share storage transfer drag drop",name:"dots-download",cat:[2],type:0},{title:"door exit furniture entrance",name:"door",cat:[11],type:0},{title:"food cake dessert sweet bakery donut frosting doughnut",name:"donut",cat:[10],type:0},{title:"animal nature pet head dog face",name:"dog",cat:[1],type:0},{title:"home house animal nature basket pet dog doghouse kennel",name:"dog-house",cat:[1],type:0},{title:"healthcare health medical doctor medic physician stethoscope",name:"doctor",cat:[12],type:0},{title:"power tech technology charge mobile phone smartphone recharge station connector dock",name:"dock",cat:[22],type:0},{title:"move top up ui user interface application align alignment layout bar place side widget dock template",name:"dock-top",cat:[27],type:0},{title:"right move ui user interface application align alignment layout bar place side widget dock template",name:"dock-right",cat:[27],type:0},{title:"left move ui user interface application align alignment layout bar place side widget dock template",name:"dock-left",cat:[27],type:0},{title:"bottom move ui user interface application align alignment layout bar place side widget dock template",name:"dock-bottom",cat:[27],type:0},{title:"science healthcare health medical dna helix",name:"dna-38",cat:[12],type:0},{title:"science healthcare health medical dna helix",name:"dna-27",cat:[12],type:0},{title:"line horizontal divide split splitter divider layout design development blocks horizontally separation",name:"divider",cat:[5],type:0},{title:"vertical center align arrange tool distribute design technology development graphic vertically",name:"distribute-vertical",cat:[5],type:0},{title:"horizontal center align arrange tool distribute design technology development horizontally graphic",name:"distribute-horizontal",cat:[5],type:0},{title:"arrow direction move out circle round enlarge expand fullscreen increase maximize reach window zoom disperse center distribute",name:"disperse",cat:[2],type:0},{title:"download save storage backup ui user interface tech technology album drive disk cd dvd blueray compact disc electronics entertainment diskette floppy floppydisk",name:"disk",cat:[22,27],type:0},{title:"player tech technology drive disk cd dvd blueray compact disc electronics entertainment reader",name:"disk-reader",cat:[22],type:0},{title:"download save storage backup drive disk diskette floppy floppydisk",name:"disk-2",cat:[27],type:0},{title:"food kitchen clean dishwasher",name:"dishwasher",cat:[10],type:0},{title:"emoticon smiley disgusted fever nauseated nauseous sick",name:"disgusted",cat:[6],type:0},{title:"finance shopping deal discount ecommerce percent percentage sale shop coupon reduction offer ratio",name:"discount",cat:[19],type:0},{title:"shopping deal discount ecommerce sale shop coupon reduction offer",name:"discount-2",cat:[19],type:0},{title:"user accessibility users patient disabled wheelchair accessible disability disable handicap invalid",name:"disabled",cat:[28],type:0},{title:"direction navigation location path available open track route street accessible walkable",name:"directions",cat:[15],type:0},{title:"arrow left line right arrows direction exchange navigation directions gps location conversion convert lines",name:"direction",cat:[2],type:0},{title:"arrow line alternative arrows change direction exchange files flip horizontal swap switch transmit navigation directions gps location",name:"direction-56",cat:[2],type:0},{title:"arrow line alternative arrows change direction exchange files flip horizontal swap switch transmit navigation directions gps location",name:"direction-53",cat:[2],type:0},{title:"game object dice",name:"dice",cat:[3],type:0},{title:"clothes accessory diamond jewelry object",name:"diamond",cat:[4],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards top up upward upwards diagonal enlarge expand fullscreen maximize zoom",name:"diag-top-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous top up upward upwards diagonal enlarge expand fullscreen maximize zoom",name:"diag-top-left",cat:[2],type:0},{title:"arrow forward right direction bottom descend down downward keyboard move navigation out position next onward onwards diagonal enlarge expand fullscreen maximize zoom downwards",name:"diag-bottom-right",cat:[2],type:0},{title:"arrow back left direction bottom descend down downward backward backwards keyboard move navigation out position previous diagonal enlarge expand fullscreen maximize zoom downwards",name:"diag-bottom-left",cat:[2],type:0},{title:"emoticon smiley smile smiling devil evil horn",name:"devil",cat:[6],type:0},{title:"connection communication network connect internet tech technology device wireless signal radio connector receiver wifi",name:"device-connection",cat:[22],type:0},{title:"file folder tool document development programming paper code coding develop script tag source",name:"dev",cat:[8],type:0},{title:"display computer tech technology apple device mac desktop monitor screen pc personal workstation imac",name:"desktop",cat:[22],type:0},{title:"display computer tech technology device desktop monitor screen television tv pc personal workstation",name:"desktop-screen",cat:[22],type:0},{title:"furniture table drawer drawers bureau desk",name:"desk",cat:[11],type:0},{title:"furniture table drawer bureau desk",name:"desk-drawer",cat:[11],type:0},{title:"measure scale tool text message education school note design pen edit pencil write development geometry draw create editing compose craetive drafting editor meter ruler",name:"design",cat:[5,18],type:0},{title:"box shopping delivery pack package shipping service transport cargo courier logistics ship transportation truck van",name:"delivery",cat:[19,25],type:0},{title:"shopping delivery shipping service transport track cargo courier logistics tracking truck van",name:"delivery-track",cat:[19],type:0},{title:"time shopping express delivery shipping service transport speed fast cargo courier logistics truck van delay ontime",name:"delivery-time",cat:[19],type:0},{title:"shopping express delivery shipping service transport speed fast cargo courier logistics truck van",name:"delivery-fast",cat:[19],type:0},{title:"box shopping delivery pack package shipping service transport cargo courier logistics ship",name:"delivery-3",cat:[19],type:0},{title:"box shopping delivery pack package shipping service transport cargo courier logistics ship",name:"delivery-2",cat:[19],type:0},{title:"arrow back left direction backward keyboard previous delete key remove",name:"delete-50",cat:[2],type:0},{title:"arrow back left direction backward keyboard previous cross delete key remove",name:"delete-49",cat:[2],type:0},{title:"user delete remove profile account avatar contact male man person minus cancel users friend follower",name:"delete-30",cat:[28],type:0},{title:"user delete remove profile account avatar contact male man person minus cancel users friend follower",name:"delete-28",cat:[28],type:0},{title:"holidays animal nature christmas deer reindeer rudolph",name:"deer",cat:[1,13],type:0},{title:"holidays celebration party decoration christmas bell",name:"decoration",cat:[13],type:0},{title:"hand holidays halloween dead graveyard rise zombie",name:"dead-hand",cat:[13],type:0},{title:"cloud data storage hosting server ui user interface web hardware memory database harddriver",name:"database",cat:[27],type:0},{title:"ui user interface scale growth settings meter dashboard speed widget setting fast gauge indicator metrics odometer performance productivity speedometer",name:"dashboard-level",cat:[27,25],type:0},{title:"ui interface scale growth settings meter dashboard speed widget setting fast gauge indicator metrics odometer performance productivity speedometer",name:"dashboard-half",cat:[25,27],type:0},{title:"ui user interface scale growth settings meter dashboard speed widget setting fast gauge indicator metrics odometer performance productivity speedometer",name:"dashboard-30",cat:[27],type:0},{title:"ui user interface scale growth settings meter dashboard speed widget setting fast gauge indicator metrics odometer performance productivity speedometer",name:"dashboard-29",cat:[27],type:0},{title:"play sport goal target game aim dart objective shooting",name:"dart",cat:[21],type:0},{title:"fork food cutlery knife tools utensils silverware",name:"cutlery-77",cat:[10],type:0},{title:"food cutlery knife tools utensils silverware spoon",name:"cutlery-76",cat:[10],type:0},{title:"fork food cutlery tools utensils silverware spoon",name:"cutlery-75",cat:[10],type:0},{title:"emoticon smiley cute",name:"cute",cat:[6],type:0},{title:"shopping deal discount ecommerce sale shop cut coupon reduction offer",name:"cut",cat:[19],type:0},{title:"communication answer chat comment comments conversation dialog forum message messages reply speaking talk shopping service help support customer",name:"customer-support",cat:[19],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous share connection social",name:"curved-previous",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards share connection social",name:"curved-next",cat:[2],type:0},{title:"arrow arrows change direction move navigation circle share social directions expand divide split branch control controller dot git slider version",name:"curve-split",cat:[2],type:0},{title:"arrow arrows change direction move navigation circle share social directions expand divide split branch control controller dot git slider version",name:"curve-directions",cat:[2],type:0},{title:"arrow repeat arrows direction sync infinite infinity load loading loop process refresh reload replay update circuit path",name:"curve-circuit",cat:[2],type:0},{title:"window furniture curtain drape",name:"curtain",cat:[11],type:0},{title:"arrow input cursor text type design edit write development click mouse point pointer editing insert typing writing",name:"cursor-text",cat:[5],type:0},{title:"arrow cursor design hand development click mouse point pointer finger active tap",name:"cursor-pointer",cat:[5],type:0},{title:"arrow cursor design ban development click mouse point pointer allowed banned block blocked forbidden frozen inactive not prevent unavailable",name:"cursor-not-allowed",cat:[5],type:0},{title:"arrow navigation lines cursor list design development click mouse point pointer bars gallery hamburger menu options settings",name:"cursor-menu",cat:[5],type:0},{title:"arrow load loading cursor design development click mouse point pointer wait waiting",name:"cursor-load",cat:[5],type:0},{title:"cursor design hand development click mouse point pointer finger fingers gesture grab hold pan",name:"cursor-grab",cat:[5],type:0},{title:"arrow cursor new design development click mouse add copy create plus point pointer selection",name:"cursor-add",cat:[5],type:0},{title:"arrow cursor design development click mouse point pointer",name:"cursor-49",cat:[5],type:0},{title:"arrow cursor design development click mouse point pointer",name:"cursor-48",cat:[5],type:0},{title:"business finance shopping cash funding money currency investment renminbir yen yuan",name:"currency-yen",cat:[3,19],type:0},{title:"business finance shopping cash funding money currency investment pound sterlin",name:"currency-pound",cat:[3,19],type:0},{title:"arrows change exchange commerce conversion convert interchange trade finance shopping money currency rate",name:"currency-exchange",cat:[19],type:0},{title:"business finance shopping cash funding money currency investment euro",name:"currency-euro",cat:[3,19],type:0},{title:"business finance shopping cash funding money currency dollar investment",name:"currency-dollar",cat:[3,19],type:0},{title:"design internet web development cascading css css3 end front frontend programming sheets standards style website",name:"css3",cat:[5],type:0},{title:"emoticon smiley unhappy cry sad tear",name:"cry-57",cat:[6],type:0},{title:"emoticon smiley unhappy cry sad tear",name:"cry-15",cat:[6],type:0},{title:"sport branding crown diadem king premium queen",name:"crown",cat:[21],type:0},{title:"location dartboard goal target map focus maps aim crosshair radar",name:"crosshair",cat:[15],type:0},{title:"arrow circle round cross through hole pass passing pathway",name:"cross",cat:[2],type:0},{title:"arrow line arrows direction connection directions vertical cross lines through bridge divide separate split",name:"cross-vertical",cat:[2],type:0},{title:"arrow line direction keyboard move navigation out position top up upward upwards cross lines through",name:"cross-up",cat:[2],type:0},{title:"arrow forward line right direction keyboard move navigation out position next onward onwards cross lines through",name:"cross-right",cat:[2],type:0},{title:"arrow back left line direction backward backwards keyboard move navigation out position previous cross lines through",name:"cross-left",cat:[2],type:0},{title:"arrow line arrows direction horizontal connection directions cross lines through bridge divide separate split",name:"cross-horizontal",cat:[2],type:0},{title:"arrow line bottom down cross lines through",name:"cross-down",cat:[2],type:0},{title:"measure resize tool design edit development frame graphic adjust crop cut modify",name:"crop",cat:[5],type:0},{title:"food dessert sweet breakfast bread bakery croissant",name:"croissant",cat:[10],type:0},{title:"sport game ball bat cricket",name:"cricket",cat:[21],type:0},{title:"lock security shopping payment safe card checkout credit debit padlock protection secure credit card",name:"credit-locked",cat:[19],type:0},{title:"finance shopping payment money shop card charge checkout credit debit method methods buy credit card",name:"credit-card",cat:[19],type:0},{title:"machine finance atm shopping cash money shop card charge credit debit method methods insert buy withdraw withdrawal",name:"credit-card-in",cat:[19],type:0},{title:"furniture baby bed cradle crib",name:"cradle",cat:[11],type:0},{title:"food animal nature crab seafood",name:"crab",cat:[1,10],type:0},{title:"animal nature milk agriculture cow farm",name:"cow",cat:[1],type:0},{title:"shopping deal discount ecommerce sale shop coupon reduction ticket offer",name:"coupon",cat:[19],type:0},{title:"user sign female woman users symbol gender sex couple girl lesbian",name:"couple-lesbian",cat:[28],type:0},{title:"user sign male man users symbol gay gender guy sex straight",name:"couple-gay",cat:[28],type:0},{title:"media photo camera multimedia timer countdown self-timer",name:"countdown-35",cat:[16],type:0},{title:"media photo camera multimedia timer countdown self-timer",name:"countdown-34",cat:[16],type:0},{title:"woman clothes accessory wear bustier corset",name:"corset",cat:[4],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards corner squared",name:"corner-up",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards corner curved",name:"corner-up-round",cat:[2],type:0},{title:"arrow forward right arrows direction keyboard move navigation out position next onward onwards top up upward upwards corner curved",name:"corner-up-right",cat:[2],type:0},{title:"arrow back left arrows direction backward backwards keyboard move navigation out position previous top up upward upwards corner curved",name:"corner-up-left",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards corner squared",name:"corner-right",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards corner curved",name:"corner-right-round",cat:[2],type:0},{title:"arrow forward right arrows direction keyboard move navigation out position next onward onwards top corner curved",name:"corner-right-down",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous corner squared",name:"corner-left",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous corner curved",name:"corner-left-round",cat:[2],type:0},{title:"arrow back left arrows direction bottom backward backwards keyboard move navigation out position previous corner curved",name:"corner-left-down",cat:[2],type:0},{title:"arrow down corner squared",name:"corner-down",cat:[2],type:0},{title:"arrow down corner curved",name:"corner-down-round",cat:[2],type:0},{title:"backup folder group layer layers copy clone copies duplicate paste",name:"copy",cat:[5],type:0},{title:"files file backup group document copy clone copies documents duplicate paste draft",name:"copy-2",cat:[8],type:0},{title:"food cake dessert sweet biscuits cookie cookies",name:"cookies",cat:[10],type:0},{title:"arrow left right arrows change exchange commerce conversion convert interchange trade",name:"conversion",cat:[2],type:0},{title:"play video controller pad tech technology game object console joystick videogame gamepad nintendo playstation remote xbox",name:"controller",cat:[22],type:0},{title:"play video controller pad tech technology game console joystick videogame gamepad nintendo playstation remote xbox",name:"controller-3",cat:[22],type:0},{title:"play video controller pad tech technology game console joystick videogame gamepad nintendo playstation remote xbox",name:"controller-2",cat:[22],type:0},{title:"arrow swap directions scale balance navigate scales weight opposite revert contrast contrasting compare",name:"contrast",cat:[2],type:0},{title:"half colors photo graphic adjust adjustment brightness calibration camera contrast contrasting exposure highlight saturation shadow",name:"contrast-2",cat:[5],type:0},{title:"user business list finance agenda book contacts diary note notebook notes pad contact man person address call users human phonebook",name:"contacts",cat:[3,28],type:0},{title:"user list agenda contacts profile account avatar contact person sidebar address call users human friend follower phonebook",name:"contacts-45",cat:[28],type:0},{title:"user list agenda contacts profile account avatar contact person sidebar address call users human friend follower phonebook",name:"contacts-44",cat:[28],type:0},{title:"user business list finance agenda book contacts diary note notebook notes pad contact man person address call users human phonebook",name:"contacts-2",cat:[3,28],type:0},{title:"connection communication network power internet tech technology jack plug connector wire",name:"connection",cat:[22],type:0},{title:"connection communication business finance connect",name:"connect",cat:[3],type:0},{title:"object cone street traffic",name:"cone",cat:[25],type:0},{title:"computer tech technology tower device desktop pc personal cpu workstation",name:"computer",cat:[22],type:0},{title:"arrow direction top up upward cloud data file input save share storage transfer backup ftp hosting import server upload folder",name:"computer-upload",cat:[2,8],type:0},{title:"computer tech technology device desktop monitor pc personal workstation old vintage",name:"computer-old",cat:[22],type:0},{title:"computer tech technology tower device desktop monitor screen pc personal cpu workstation",name:"computer-monitor",cat:[22],type:0},{title:"circle measure tool education school drawing math design geometry draw graphic drafting architecture compass engineer",name:"compass",cat:[5,18],type:0},{title:"direction navigation position gps location tool navigate travel map compass maps instrument",name:"compass-06",cat:[15],type:0},{title:"direction navigation position gps location tool navigate travel map compass maps instrument",name:"compass-05",cat:[15],type:0},{title:"direction navigation position gps location tool navigate travel map compass maps instrument",name:"compass-04",cat:[15],type:0},{title:"direction navigation position gps location tool navigate travel map compass maps instrument",name:"compass-3",cat:[15,29],type:0},{title:"direction navigation position gps location tool navigate travel map compass maps instrument",name:"compass-2",cat:[15],type:0},{title:"arrow navigation directions scale balance guide navigate scales weight",name:"compare",cat:[2],type:0},{title:"keyboard sign control key design apple button development mac cmd command macintosh",name:"command",cat:[5],type:0},{title:"font text type typography color style editing formatting colour",name:"color",cat:[23],type:0},{title:"file education school book notebook library design read development collection gallery album binder catalog catalogue knowledge label learn learning magazine press reading study",name:"collection",cat:[5,18],type:0},{title:"animal nature pet cat collar domestic god",name:"collar",cat:[1],type:0},{title:"change business finance cash payment coins funding money",name:"coins",cat:[3],type:0},{title:"cross holidays halloween death coffin funeral",name:"coffin",cat:[13],type:0},{title:"food drink beverage hot coffe coffee cup mug tea",name:"coffee",cat:[10],type:0},{title:"long food drink beverage hot coffe coffee cup mug tea",name:"coffee-long",cat:[10],type:0},{title:"machine coffee maker",name:"coffee-2",cat:[11],type:0},{title:"long food drink beverage hot coffe coffee cup mug",name:"coffe-long",cat:[10],type:0},{title:"text design web development programming website editing html code brackets coding dev develop developer embed programmer script tag tags",name:"code",cat:[5,23],type:0},{title:"layout text design web development page programming website html editor code coding dev develop developer programmer script tag tags",name:"code-editor",cat:[5],type:0},{title:"glass food alcohol drink beverage cocktail straw",name:"cocktail",cat:[10],type:0},{title:"ribbon holidays bow gift present decoration christmas cockade",name:"cockade",cat:[13],type:0},{title:"clothes accessory wear coat jacket",name:"coat",cat:[4],type:0},{title:"furniture clothes coat hanger",name:"coat-hanger",cat:[11],type:0},{title:"energy environment plant animal nature green four clover fortune leaf luck lucky",name:"clover",cat:[1,7],type:0},{title:"cloud data file input save share storage sync transfer backup hosting import server upload folder database",name:"cloud",cat:[8],type:0},{title:"arrow direction top up cloud data file input save share storage sync transfer weather backup ftp hosting import server upload",name:"cloud-upload-96",cat:[2,29],type:0},{title:"arrow direction top up cloud data file input save share storage sync transfer backup ftp hosting import server upload",name:"cloud-upload-94",cat:[2],type:0},{title:"cloud weather sun sunny",name:"cloud-sun-19",cat:[29],type:0},{title:"cloud weather sun sunny",name:"cloud-sun-17",cat:[29],type:0},{title:"cloud weather snow flake",name:"cloud-snow-42",cat:[29],type:0},{title:"cloud weather snow",name:"cloud-snow-34",cat:[29],type:0},{title:"cloud weather rainbow",name:"cloud-rainbow",cat:[29],type:0},{title:"cloud weather rain",name:"cloud-rain",cat:[29],type:0},{title:"cloud weather moon night",name:"cloud-moon",cat:[29],type:0},{title:"cloud weather light flash lightning",name:"cloud-light",cat:[29],type:0},{title:"cloud weather hail",name:"cloud-hail",cat:[29],type:0},{title:"cloud weather fog mist",name:"cloud-fog-32",cat:[29],type:0},{title:"cloud weather fog mist",name:"cloud-fog-31",cat:[29],type:0},{title:"cloud weather drop rain",name:"cloud-drop",cat:[29],type:0},{title:"arrow bottom descend down downward cloud data download file input save share storage sync transfer weather",name:"cloud-download-95",cat:[2,29],type:0},{title:"arrow bottom descend down downward cloud data download file input save share storage sync transfer",name:"cloud-download-93",cat:[2],type:0},{title:"cloud storage weather backup ui user interface cloudy forecast icloud",name:"cloud-26",cat:[27,29],type:0},{title:"cloud storage weather backup ui user interface cloudy forecast icloud",name:"cloud-25",cat:[27,29],type:0},{title:"drop tool drawing design development color paint clone dropper eyedropper picker pipette",name:"clone",cat:[5],type:0},{title:"arrow arrows direction energy board circuit connections electronic path power",name:"circuit",cat:[2],type:0},{title:"arrow arrows direction energy board circuit connections electronic path power",name:"circuit-round",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards circle round",name:"circle-up-39",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards circle round",name:"circle-up-11",cat:[2],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards circle round",name:"circle-simple-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards circle round",name:"circle-simple-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous circle round",name:"circle-simple-left",cat:[2],type:0},{title:"arrow bottom descend down downward circle round",name:"circle-simple-down",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards circle round",name:"circle-right-37",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards circle round play",name:"circle-right-09",cat:[2],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"circle-remove",cat:[27],type:0},{title:"arrow out circle round user log sign close door exit leave logout outside info",name:"circle-out",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous circle round",name:"circle-left-38",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous circle round",name:"circle-left-10",cat:[2],type:0},{title:"arrow circle round download input save import user enter entry in inbox inside lock log login password security sign way",name:"circle-in",cat:[2],type:0},{title:"arrow bottom descend down downward circle round",name:"circle-down-40",cat:[2],type:0},{title:"arrow bottom descend down downward circle round",name:"circle-down-12",cat:[2],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"circle-delete",cat:[27],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"circle-bold-remove",cat:[27],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"circle-bold-delete",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"circle-bold-add",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"circle-add",cat:[27],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"circle-10",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"circle-09",cat:[28],type:0},{title:"user profile account avatar contact male man person users member human friend follower",name:"circle-08",cat:[28],type:0},{title:"travel building catholic chistian church religious",name:"church",cat:[26],type:0},{title:"bar food dessert sweet candy chocolate",name:"chocolate",cat:[10],type:0},{title:"food finger french chips fries",name:"chips",cat:[10],type:0},{title:"travel temple building city forbidden flag china monument palace",name:"china",cat:[26],type:0},{title:"holidays christmas chimney fireplace",name:"chimney",cat:[13],type:0},{title:"food vegetable vegetables chili hot pepper",name:"chili",cat:[10],type:0},{title:"user male baby kid boy toy users infant child newborn",name:"child",cat:[28],type:0},{title:"food animal nature turkey meat bone chicken leg thigh poultry",name:"chicken",cat:[10],type:0},{title:"turkey chicken poultry",name:"chicken-2",cat:[1],type:0},{title:"food fruit healthy cherry",name:"cherry",cat:[10],type:0},{title:"business finance banking shopping bill cash check cheque payment pen money method receipt",name:"cheque",cat:[3,19],type:0},{title:"banking shopping bill check cheque payment money method receipt",name:"cheque-3",cat:[19],type:0},{title:"banking shopping bill check cheque payment money method receipt",name:"cheque-2",cat:[19],type:0},{title:"hat cap food cooking chef",name:"chef-hat",cat:[10],type:0},{title:"food hamburger sandwich burger cheeseburger fast fastfood",name:"cheeseburger",cat:[10],type:0},{title:"piece food of breakfast cheddar cheese",name:"cheese-87",cat:[10],type:0},{title:"piece food of breakfast cheddar cheese",name:"cheese-24",cat:[10],type:0},{title:"file success select available document check selected mark accept approve approved checkmark complete completed done checked tick",name:"check",cat:[8],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-square-11",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-square-09",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-small",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-simple",cat:[27],type:0},{title:"location ui user interface log sign exit logout info travel check calendar flight date airport arrival check-out",name:"check-out",cat:[27],type:0},{title:"location ui user interface enter log login sign info travel check calendar flight date airport check-in departure",name:"check-in",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-curve",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-circle-08",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-circle-07",cat:[27],type:0},{title:"ui user interface success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-bold",cat:[27],type:0},{title:"success select check selected mark accept approve approved checkmark complete completed done checked tick checkbox ok",name:"check-2",cat:[27],type:0},{title:"ui user interface communication answer chat comment comments conversation dialog forum message messages reply speaking talk bubble bubbles",name:"chat",cat:[27],type:0},{title:"ui user interface communication answer chat comment comments conversation dialog forum message messages reply speaking talk bubble bubbles",name:"chat-round",cat:[27],type:0},{title:"ui user interface communication answer chat comment comments conversation dialog forum message messages reply speaking talk bubble bubbles",name:"chat-round-content",cat:[27],type:0},{title:"ui user interface communication answer chat comment comments conversation dialog forum message messages reply speaking talk bubble bubbles",name:"chat-reply",cat:[27],type:0},{title:"ui user interface communication answer chat comment comments conversation dialog forum message messages reply speaking talk bubble bubbles",name:"chat-content",cat:[27],type:0},{title:"ui user interface communication chat comment comments conversation dialog forum message messages speaking talk bubble bubbles",name:"chat-46",cat:[27],type:0},{title:"ui user interface communication chat comment comments conversation dialog forum message messages speaking talk bubble bubbles",name:"chat-45",cat:[27],type:0},{title:"ui user interface communication chat comment comments conversation dialog forum message messages speaking talk bubble bubbles",name:"chat-33",cat:[27],type:0},{title:"business finance piechart graph pie report statistics",name:"chart",cat:[3,27],type:0},{title:"files data file stats folder document format chart piechart office graph pie report statistics analytics percent paper documents catalog envelope archive charting charts results",name:"chart-pie",cat:[8],type:0},{title:"business finance piechart graph pie report statistics",name:"chart-pie-36",cat:[3],type:0},{title:"business finance piechart graph pie report statistics",name:"chart-pie-35",cat:[3],type:0},{title:"arrow data progress diagram business finance chart graph report statistics analytics bar",name:"chart-growth",cat:[3],type:0},{title:"data ui user interface diagram stats growth chart graph statistics analytics bar stock bars level signal wifi",name:"chart-bars",cat:[27],type:0},{title:"files data file diagram stats growth folder document format chart office graph statistics analytics bar stock bars paper documents catalog envelope level archive",name:"chart-bar",cat:[8],type:0},{title:"data ui user interface diagram stats growth chart graph statistics analytics bar stock bars level signal wifi strong",name:"chart-bar-53",cat:[27],type:0},{title:"data ui user interface diagram stats growth chart graph statistics analytics bar stock bars level signal wifi",name:"chart-bar-52",cat:[27],type:0},{title:"arrow data progress diagram business finance chart graph report statistics analytics bar",name:"chart-bar-33",cat:[3],type:0},{title:"data diagram business finance chart graph report statistics analytics bar",name:"chart-bar-32",cat:[3],type:0},{title:"circle data stats business finance chart piechart graph pie report statistics analytics percent slice charting charts results",name:"chart-3",cat:[27],type:0},{title:"circle data stats business finance chart piechart graph pie report statistics analytics percent slice charting charts results",name:"chart-2",cat:[27,19],type:0},{title:"holidays glass food alcohol drink wine champagne",name:"champagne",cat:[10,13],type:0},{title:"board education school chalk",name:"chalkboard",cat:[18],type:0},{title:"business seat finance furniture chair design intorior officer",name:"chair",cat:[3,11],type:0},{title:"seat chair",name:"chair-2",cat:[11],type:0},{title:"arrow circle round center align alignment arrange central centralize centralized conference display layout meeting preferences structure tool",name:"centralize",cat:[2],type:0},{title:"weather temperature celsius degrees",name:"celsius",cat:[29],type:0},{title:"player tech technology drive disk cd dvd blueray compact disc electronics entertainment reader",name:"cd-reader",cat:[22],type:0},{title:"security video circuit watch tech technology camera television closed cam cctv monitoring spy surveillance",name:"cctv",cat:[22],type:0},{title:"holidays halloween magic death pot cauldron potion witch",name:"cauldron",cat:[13],type:0},{title:"holidays halloween animal nature pet cat",name:"cat",cat:[1,13],type:0},{title:"travel building tower bastion castle",name:"castle",cat:[26],type:0},{title:"shopping cash payment money shop checkout register buy store till",name:"cash-register",cat:[19],type:0},{title:"bag shopping ecommerce sale shop checkout basket buy cart retail trolley",name:"cart",cat:[19],type:0},{title:"bag shopping ecommerce sale shop checkout basket speed fast buy cart retail trolley",name:"cart-speed",cat:[19],type:0},{title:"ui user interface bag shopping ecommerce sale shop checkout basket buy cart retail trolley",name:"cart-simple",cat:[19,27],type:0},{title:"delete remove bag shopping ecommerce sale shop checkout clear minus basket cancel buy cart retail trolley",name:"cart-simple-remove",cat:[19],type:0},{title:"ui user interface new bag shopping ecommerce sale shop checkout add plus basket buy cart retail trolley",name:"cart-simple-in",cat:[19,27],type:0},{title:"new bag shopping ecommerce sale shop checkout add plus basket buy cart retail trolley",name:"cart-simple-add",cat:[19],type:0},{title:"back bag shopping ecommerce sale shop checkout basket buy cart retail trolley return",name:"cart-return",cat:[19],type:0},{title:"delete remove bag shopping ecommerce sale shop checkout clear minus basket cancel buy cart retail trolley",name:"cart-remove",cat:[19],type:0},{title:"sync refresh reload update bag shopping ecommerce sale shop checkout basket buy cart retail trolley",name:"cart-refresh",cat:[19],type:0},{title:"ui user interface bag shopping ecommerce sale shop checkout basket buy cart retail trolley",name:"cart-9",cat:[19,27],type:0},{title:"delete remove bag shopping ecommerce sale shop checkout clear minus basket cancel buy cart retail trolley",name:"cart-remove-9",cat:[19],type:0},{title:"ui user interface new bag shopping ecommerce sale shop checkout add plus basket buy cart retail trolley",name:"cart-in-9",cat:[19,27],type:0},{title:"new bag shopping ecommerce sale shop checkout add plus basket buy cart retail trolley",name:"cart-add-9",cat:[19],type:0},{title:"full bag shopping ecommerce sale shop checkout basket buy cart retail trolley",name:"cart-full",cat:[19],type:0},{title:"bag shopping ecommerce sale shop checkout favorite favourite basket love like heart buy cart picnic retail trolley",name:"cart-favorite",cat:[19],type:0},{title:"new bag shopping ecommerce sale shop checkout add plus basket buy cart retail trolley",name:"cart-add",cat:[19],type:0},{title:"food vegetable vegetables carrot root",name:"carrot",cat:[10],type:0},{title:"sport home training bicycle bike cardio exercise",name:"cardio",cat:[21],type:0},{title:"sync refresh reload update finance shopping payment money shop card charge checkout credit debit method methods buy credit card",name:"card-update",cat:[19],type:0},{title:"delete remove finance shopping payment money shop card charge checkout credit debit method methods cancel buy credit card",name:"card-remove",cat:[19],type:0},{title:"finance shopping payment money shop card charge checkout credit debit method methods favorite favourite love like heart buy credit card",name:"card-favorite",cat:[19],type:0},{title:"change finance shopping payment money shop edit card charge checkout credit debit method methods buy credit card",name:"card-edit",cat:[19],type:0},{title:"ui user interface security chat message badge card mobile alarm alert notification",name:"card-alert",cat:[27],type:0},{title:"ui user interface sign new finance badge shopping payment money shop card charge checkout credit debit method methods add create plus notification buy credit card more notifications",name:"card-add",cat:[19,27],type:0},{title:"sign new badge card add create plus notification more notifications",name:"card-add-2",cat:[27],type:0},{title:"energy environment electric drive ecology car charging eco green transport vehicle auto transportation automobile",name:"car",cat:[7,25],type:0},{title:"drive car vehicle auto transportation automobile cab taxi",name:"car-taxi",cat:[25],type:0},{title:"drive car vehicle auto transportation automobile",name:"car-sport",cat:[25],type:0},{title:"drive car vehicle auto transportation automobile",name:"car-simple",cat:[25],type:0},{title:"drive car vehicle auto transportation automobile",name:"car-front",cat:[25],type:0},{title:"drive car vehicle auto transportation automobile",name:"car-2",cat:[25],type:0},{title:"font text style editing formatting capitalize caps small",name:"caps-small",cat:[23],type:0},{title:"all font text style editing formatting capitalize caps",name:"caps-all",cat:[23],type:0},{title:"font text style editing formatting capitalize caps",name:"capitalize",cat:[23],type:0},{title:"sport clothes accessory hat wear baseball cap",name:"cap",cat:[4],type:0},{title:"interface board layout art artboard design development paint artwork canvas colors draw easel guides painting picture portrait",name:"canvas",cat:[5],type:0},{title:"holidays food stick sweet candy wrapper christmas",name:"candy",cat:[10,13],type:0},{title:"stick sweet candy christmas",name:"candy-2",cat:[13],type:0},{title:"light holidays food anniversary birthday candle candles celebration party decoration flame",name:"candle",cat:[10,13],type:0},{title:"travel camping tent basecamp",name:"camping",cat:[26],type:0},{title:"travel transportation camper caravan trailer",name:"camper",cat:[26],type:0},{title:"gesture photo photography camera touch focus lens gestures shutter",name:"camera",cat:[24],type:0},{title:"media photo camera multimedia timer",name:"camera-time",cat:[16],type:0},{title:"media picture image photo camera multimedia polaroid",name:"camera-square-58",cat:[16],type:0},{title:"media picture image photo camera multimedia",name:"camera-square-57",cat:[16],type:0},{title:"media display photo camera multimedia",name:"camera-screen",cat:[16],type:0},{title:"media photo camera multimedia digital",name:"camera-compact",cat:[16],type:0},{title:"media ban photo camera multimedia",name:"camera-ban-37",cat:[16],type:0},{title:"media ban photo camera multimedia",name:"camera-ban-36",cat:[16],type:0},{title:"media photo camera multimedia digital",name:"camera-20",cat:[16],type:0},{title:"media photo camera multimedia digital",name:"camera-19",cat:[16],type:0},{title:"media photo camera multimedia digital",name:"camera-18",cat:[16],type:0},{title:"ui user interface day schedule time grid calendar appointment event plan planning date month timetable year",name:"calendar-grid-61",cat:[27],type:0},{title:"day schedule time holidays grid calendar appointment event plan planning date month timetable year",name:"calendar-grid-58",cat:[13,27],type:0},{title:"ui user interface day schedule time check completed done calendar checked appointment event plan planning date month timetable year checkmark. complete",name:"calendar-check-62",cat:[27],type:0},{title:"ui user interface day schedule time check completed done calendar checked appointment event plan planning date month timetable year checkmark. complete",name:"calendar-check-59",cat:[27],type:0},{title:"ui user interface day schedule new time add calendar appointment event plan date month",name:"calendar-add",cat:[27],type:0},{title:"ui user interface day schedule time calendar appointment event plan planning date month timetable year",name:"calendar-60",cat:[27],type:0},{title:"ui user interface day schedule time calendar appointment event plan planning date month timetable year",name:"calendar-57",cat:[27],type:0},{title:"business finance education school accounting budget calculate calculator math mathematics",name:"calculator",cat:[3,18],type:0},{title:"holidays emoticon smiley anniversary birthday cake candle candles celebration dessert party sweet",name:"cake",cat:[6,13],type:0},{title:"holidays food slice anniversary birthday cake celebration dessert party sweet cheesecake",name:"cake-slice",cat:[10,13],type:0},{title:"food anniversary birthday cake candles celebration dessert party sweet",name:"cake-100",cat:[10],type:0},{title:"food anniversary birthday cake candles celebration dessert party sweet",name:"cake-13",cat:[10],type:0},{title:"furniture plant animal nature cactus tree",name:"cactus",cat:[1,11],type:0},{title:"connection power accessory connect tech technology cable jack plug port usb connector wire charger",name:"cable-50",cat:[22],type:0},{title:"connection power accessory connect tech technology cable jack plug port usb connector wire charger",name:"cable-49",cat:[22],type:0},{title:"furniture drawer cabinet cupboard drawers",name:"cabinet",cat:[11],type:0},{title:"clothes accessory wear button",name:"button",cat:[4],type:0},{title:"ui media control button stop multimedia",name:"button-stop",cat:[16],type:0},{title:"next ui media multimedia skip",name:"button-skip",cat:[16],type:0},{title:"back previous rewind ui media multimedia",name:"button-rewind",cat:[16],type:0},{title:"ui media control button multimedia rec record",name:"button-record",cat:[16],type:0},{title:"back previous rewind ui media multimedia",name:"button-previous",cat:[16],type:0},{title:"ui media power button multimedia off on",name:"button-power",cat:[16],type:0},{title:"play ui media control button multimedia",name:"button-play",cat:[16],type:0},{title:"ui media control button multimedia pause",name:"button-pause",cat:[16],type:0},{title:"next ui media multimedia skip",name:"button-next",cat:[16],type:0},{title:"ui media control eject button multimedia",name:"button-eject",cat:[16],type:0},{title:"ui media control button stop multimedia",name:"button-circle-stop",cat:[16],type:0},{title:"play ui media control button multimedia",name:"button-circle-play",cat:[16],type:0},{title:"ui media control button multimedia pause",name:"button-circle-pause",cat:[16],type:0},{title:"arrow control cursor action button click mouse trigger",name:"button-2",cat:[5],type:0},{title:"animal nature insect fly butterfly wings",name:"butterfly",cat:[1],type:0},{title:"business finance avatar businessman tie clothes man person professional shirt shopping",name:"businessman-04",cat:[3,19],type:0},{title:"business finance avatar businessman tie clothes accessory man person professional shirt",name:"businessman-03",cat:[3,4],type:0},{title:"education school vehicle transportation bus",name:"bus",cat:[18,25],type:0},{title:"education school vehicle transportation bus",name:"bus-front-12",cat:[18,25],type:0},{title:"education school vehicle transportation bus",name:"bus-front-10",cat:[25],type:0},{title:"navigation ui user interface layout list menu options bullet bullets items",name:"bullet-list",cat:[27],type:0},{title:"ui process organize schedule text list agenda design check development menu bullet bullets checklist item items listing tasks todo",name:"bullet-list-70",cat:[5],type:0},{title:"ui process organize schedule text list agenda design check development menu bullet bullets checklist item items listing tasks todo",name:"bullet-list-69",cat:[5],type:0},{title:"ui process organize schedule text list agenda design check development menu bullet bullets checklist item items listing tasks todo",name:"bullet-list-68",cat:[5],type:0},{title:"ui process organize schedule text list agenda design check development menu bullet bullets checklist item items listing tasks todo",name:"bullet-list-67",cat:[5],type:0},{title:"energy environment bulb lamp light electric ecology lightbulb saver",name:"bulb",cat:[7],type:0},{title:"energy environment bulb light electric ecology lightbulb saver",name:"bulb-saver",cat:[7],type:0},{title:"business finance bulb idea lamp light",name:"bulb-63",cat:[3],type:0},{title:"business finance bulb idea lamp light",name:"bulb-62",cat:[3],type:0},{title:"business finance bulb idea lamp light",name:"bulb-61",cat:[3],type:0},{title:"business finance building city company construction estate home house real skyscraper",name:"building",cat:[3],type:0},{title:"design development animal nature bug error insect ladybird ladybug",name:"bug",cat:[1,5],type:0},{title:"save design development bucket collect collection color fill pail paint",name:"bucket",cat:[5],type:0},{title:"tool education school art drawing design development color paint draw painting graphic brush paintbrush artist",name:"brush",cat:[5,18],type:0},{title:"social network browser design internet web apple development mac page ios osx safari",name:"browser-safari",cat:[5],type:0},{title:"social network browser design internet web development page opera",name:"browser-opera",cat:[5],type:0},{title:"social network browser design internet web development page explorer microsoft",name:"browser-ie",cat:[5],type:0},{title:"social network browser design internet web development page firefox fox mozilla",name:"browser-firefox",cat:[5],type:0},{title:"social network browser design internet web development page edge explorer microsoft",name:"browser-edge",cat:[5],type:0},{title:"social network browser design internet web google development chrome page",name:"browser-chrome",cat:[5],type:0},{title:"object clean broom",name:"broom",cat:[11],type:0},{title:"food broccoli cabbage vegetable vegetables",name:"broccoli",cat:[10],type:0},{title:"media photo brightness camera contrast option multimedia",name:"brightness-47",cat:[16],type:0},{title:"weather energy environment media photo brightness camera option multimedia sun sunny",name:"brightness-46",cat:[7,16,29],type:0},{title:"work business finance bag briefcase job office portfolio suitcase",name:"briefcase-26",cat:[3],type:0},{title:"work business finance bag briefcase job office portfolio suitcase",name:"briefcase-25",cat:[3],type:0},{title:"work business finance bag briefcase job office portfolio suitcase",name:"briefcase-24",cat:[3],type:0},{title:"food slice sandwich breakfast bread loaf toast",name:"bread",cat:[10],type:0},{title:"healthcare health medical brain mind",name:"brain",cat:[12],type:0},{title:"woman clothes accessory wear bra underwear",name:"bra",cat:[4],type:0},{title:"sport gloves ring punch boxing equipment fighting training",name:"boxing",cat:[21],type:0},{title:"file storage post folder box document order shopping collection editor delivery gift package parcel present shipping archive container drawer product donation",name:"box",cat:[8,19],type:0},{title:"post box order shopping delivery gift package parcel present shipping surprise product donation wrapped",name:"box-ribbon",cat:[19],type:0},{title:"post box order shopping delivery gift package parcel present shipping product donation",name:"box-3d-50",cat:[19],type:0},{title:"post box order shopping delivery gift package parcel present shipping product donation",name:"box-2",cat:[19],type:0},{title:"sport object ball bowling",name:"bowling",cat:[21],type:0},{title:"food bowl dish soup",name:"bowl",cat:[10],type:0},{title:"arrow sport bow object weapon",name:"bow",cat:[21],type:0},{title:"food bottle alcohol drink beer wine",name:"bottle",cat:[10],type:0},{title:"food bottle alcohol drink wine",name:"bottle-wine",cat:[10],type:0},{title:"emoticon smiley bored boring exhausted sleepy tired yawn",name:"bored",cat:[6],type:0},{title:"clothes accessory holidays wear boot footwear shoe ice christmas skates skating",name:"boot",cat:[4,13],type:0},{title:"high woman clothes accessory wear boot footwear shoe heels",name:"boot-woman",cat:[4],type:0},{title:"wear boot footwear shoe ice christmas skates skating",name:"boot-2",cat:[13],type:0},{title:"business finance education school furniture books bookshop library mini shelf",name:"books",cat:[3,11,18],type:0},{title:"education school books bookshop library shelf",name:"books-46",cat:[18],type:0},{title:"agenda book diary note notebook notes pad achievement award ribbon label bookmark favorite favourite mark marker like bookmarking marked preference saved",name:"bookmark",cat:[8],type:0},{title:"location delete remove achievement award ribbon bookmark favorite favourite mark marker clear minus like cancel bookmarking marked preference saved removal",name:"bookmark-remove",cat:[15,27],type:0},{title:"location delete remove achievement award ribbon bookmark favorite favourite mark marker clear minus like cancel bookmarking marked preference saved removal",name:"bookmark-remove-2",cat:[15,27],type:0},{title:"location new achievement award ribbon add create plus bookmark favorite favourite mark marker like bookmarking marked preference saved",name:"bookmark-add",cat:[15,27],type:0},{title:"location new achievement award ribbon add create plus bookmark favorite favourite mark marker like bookmarking marked preference saved",name:"bookmark-add-2",cat:[15,27],type:0},{title:"achievement award ribbon label reading study bookmark favorite favourite mark marker like bookmarking marked preference saved",name:"bookmark-2",cat:[15,18,27],type:0},{title:"open education school book notebook library read album knowledge learn learning magazine press reading study bible",name:"book",cat:[18,27],type:0},{title:"education school agenda book contacts diary note notebook notes pad contact design read development learn reading study address code manual register",name:"book-open",cat:[5,18],type:0},{title:"education school agenda book contacts diary note notebook notes pad contact design read development learn reading study address code manual register",name:"book-open-2",cat:[5,18],type:0},{title:"finance education school agenda book contacts diary note notebook notes pad ribbon contact design development label reading study address bookmark code favorite favourite manual mark marker",name:"book-bookmark",cat:[5,18],type:0},{title:"finance education school agenda book contacts diary note notebook notes pad ribbon contact design development label reading study address bookmark code favorite favourite manual mark marker",name:"book-bookmark-2",cat:[5,18],type:0},{title:"education school book notebook",name:"book-39",cat:[18],type:0},{title:"files file folder education school agenda book diary note notebook notes pad library read learn reading study manual",name:"book-08",cat:[8,18],type:0},{title:"files file folder education school agenda book diary note notebook notes pad library read learn reading study manual",name:"book-07",cat:[8,18],type:0},{title:"cross holidays halloween animal nature scary bone bones dog human",name:"bones",cat:[1,13],type:0},{title:"emoticon smiley bomb",name:"bomb",cat:[6],type:0},{title:"ui user interface control preferences tool edit options settings configuration setting setup bolt",name:"bolt",cat:[27],type:0},{title:"weight font text editing bold formatting",name:"bold",cat:[23],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"bold-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"bold-right",cat:[2],type:0},{title:"ui user interface close exit cross delete remove cancel deletion removal denied discard dismiss wrong",name:"bold-remove",cat:[27],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"bold-left",cat:[2],type:0},{title:"arrow bottom descend down downward",name:"bold-down",cat:[2],type:0},{title:"arrow line alternative arrows change direction exchange files flip horizontal swap switch transmit",name:"bold-direction",cat:[2],type:0},{title:"ui user interface close exit decrease delete remove minus cancel deletion less removal subtract",name:"bold-delete",cat:[27],type:0},{title:"ui user interface expand increase new add create plus addition positive",name:"bold-add",cat:[27],type:0},{title:"travel delivery vehicle sea ship transportation boat",name:"boat",cat:[25],type:0},{title:"travel delivery vehicle sea ship transportation boat",name:"boat-small-03",cat:[25],type:0},{title:"travel delivery vehicle sea ship transportation boat",name:"boat-small-02",cat:[25],type:0},{title:"travel delivery vehicle sea ship transportation boat",name:"boat-front",cat:[25],type:0},{title:"sign info board display shopping advertise advertisement advertising billboard notice signboard",name:"board",cat:[19],type:0},{title:"board education school artboard",name:"board-51",cat:[18],type:0},{title:"line board business finance art artboard drawing chart",name:"board-30",cat:[3],type:0},{title:"line board business finance art artboard drawing chart piechart",name:"board-29",cat:[3],type:0},{title:"line board business finance art artboard drawing",name:"board-28",cat:[3],type:0},{title:"line board business finance education school art artboard drawing",name:"board-27",cat:[3,18],type:0},{title:"sign info board display advertise advertisement advertising billboard notice signboard",name:"board-2",cat:[19],type:0},{title:"sync connection ui user interface communication network connect technology wireless signal bluetooth",name:"bluetooth",cat:[27],type:0},{title:"arrow direction keyboard move navigation out position top up upward upwards",name:"block-up",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards top up upward upwards enlarge expand fullscreen maximize zoom box undock",name:"block-top-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous top up upward upwards enlarge expand fullscreen maximize zoom box undock",name:"block-top-left",cat:[2],type:0},{title:"arrow forward right direction keyboard move navigation out position next onward onwards",name:"block-right",cat:[2],type:0},{title:"arrow back left direction backward backwards keyboard move navigation out position previous",name:"block-left",cat:[2],type:0},{title:"arrow bottom descend down downward move",name:"block-down",cat:[2],type:0},{title:"arrow forward right direction bottom descend down downward keyboard move navigation out position next onward onwards enlarge expand fullscreen maximize zoom downwards box undock",name:"block-bottom-right",cat:[2],type:0},{title:"arrow back left direction bottom descend down downward backward backwards keyboard move navigation out position previous enlarge expand fullscreen maximize zoom downwards box undock",name:"block-bottom-left",cat:[2],type:0},{title:"emoticon smiley surprise surprised astonished blind dizzy",name:"blind",cat:[6],type:0},{title:"box tool design development filter graphic grid blend distort gradient illustration mesh netted warp",name:"blend",cat:[5],type:0},{title:"emoticon smiley bleah concern confused puzzled thinking",name:"bleah",cat:[6],type:0},{title:"finance shopping payment funding money currency coin ecommerce card charge checkout credit debit method methods bitcoin digital online",name:"bitcoin",cat:[19],type:0},{title:"holidays sweet bread cookie biscuit christmas ginger gingerbread",name:"biscuit",cat:[13],type:0},{title:"travel discover object explore binocular binoculars",name:"binocular",cat:[26],type:0},{title:"play sport object billiard pool",name:"billiard",cat:[21],type:0},{title:"sport transportation bicycle bike cyclist",name:"bike",cat:[21,25],type:0},{title:"out emoticon smiley big happy bigmouth grimace mouth tongue",name:"bigmouth",cat:[6],type:0},{title:"emoticon smiley big cheerful grin happy smile smiling teeth",name:"big-smile",cat:[6],type:0},{title:"emoticon smiley big eyes surprise surprised",name:"big-eyes",cat:[6],type:0},{title:"glass food alcohol drink beverage cocktail straw",name:"beverage",cat:[10],type:0},{title:"door travel wall berlin brandenburg gate",name:"berlin",cat:[26],type:0},{title:"clothes accessory wear belt strap",name:"belt",cat:[4],type:0},{title:"ui user interface ring alarm sound alert notification christmas bell buzz ringing ringtone wake",name:"bell-55",cat:[27],type:0},{title:"ui user interface education school ring alarm sound alert notification christmas bell buzz ringing ringtone wake",name:"bell-54",cat:[18,27],type:0},{title:"ui user interface holidays ring alarm sound alert notification christmas bell buzz ringing ringtone wake",name:"bell-53",cat:[13,27],type:0},{title:"glass food alcohol drink beer beverage",name:"beer-96",cat:[10],type:0},{title:"holidays glass food alcohol drink beer beverage",name:"beer-95",cat:[10,13],type:0},{title:"animal nature insect bee fly honey wasp",name:"bee",cat:[1],type:0},{title:"furniture sleep side bed",name:"bed-side",cat:[11],type:0},{title:"double furniture sleep bed",name:"bed-23",cat:[11],type:0},{title:"furniture sleep bed",name:"bed-09",cat:[11],type:0},{title:"baby object animal nature toy face bear teddy",name:"bear",cat:[1],type:0},{title:"baby object animal nature toy face bear teddy",name:"bear-2",cat:[1],type:0},{title:"energy environment power object battery",name:"battery",cat:[7],type:0},{title:"ui user interface energy environment power low electric electricity plug charge charging level lightning battery ion lithium rechargeable status",name:"battery-low",cat:[7,27],type:0},{title:"ui user interface energy environment power electric electricity plug charge charging level lightning battery ion lithium rechargeable status",name:"battery-half",cat:[7,27],type:0},{title:"ui user interface energy environment power electric electricity plug charge charging level lightning battery ion lithium rechargeable status",name:"battery-83",cat:[7,27],type:0},{title:"ui user interface energy environment power electric electricity plug charge charging level lightning battery ion lithium rechargeable status",name:"battery-81",cat:[7,27],type:0},{title:"furniture bath bathroom shower tub",name:"bath-tub",cat:[11],type:0},{title:"man holidays halloween hero animal nature bat batman",name:"bat",cat:[1,13],type:0},{title:"sport game ball basket basketball nba",name:"basketball-13",cat:[21],type:0},{title:"sport game ball basket basketball nba",name:"basketball-12",cat:[21],type:0},{title:"ui user interface shopping ecommerce sale shop checkout basket buy cart groceries picnic retail",name:"basket",cat:[19,27],type:0},{title:"sync refresh reload update shopping ecommerce sale shop checkout basket buy cart groceries picnic retail",name:"basket-update",cat:[19],type:0},{title:"shopping ecommerce sale shop checkout basket buy cart groceries picnic retail",name:"basket-simple",cat:[19],type:0},{title:"delete remove bag shopping ecommerce sale shop checkout clear minus cancel buy cart groceries retail",name:"basket-simple-remove",cat:[19],type:0},{title:"new bag shopping ecommerce sale shop checkout add plus buy cart groceries retail",name:"basket-simple-add",cat:[19],type:0},{title:"share social shopping connect ecommerce sale shop checkout basket buy cart groceries picnic retail",name:"basket-share",cat:[19],type:0},{title:"shopping ecommerce sale shop checkout view search basket find lens buy cart groceries picnic retail",name:"basket-search",cat:[19],type:0},{title:"delete remove bag shopping ecommerce sale shop checkout clear minus cancel buy cart groceries retail",name:"basket-remove",cat:[19],type:0},{title:"shopping ecommerce sale shop checkout favorite favourite basket love like heart buy cart groceries picnic retail",name:"basket-favorite",cat:[19],type:0},{title:"change bag shopping ecommerce sale shop edit checkout modify buy cart groceries retail",name:"basket-edit",cat:[19],type:0},{title:"new bag shopping ecommerce sale shop checkout add plus buy cart groceries retail",name:"basket-add",cat:[19],type:0},{title:"sport game baseball ball base catch league",name:"baseball",cat:[21],type:0},{title:"sport game baseball bat base league",name:"baseball-bat",cat:[21],type:0},{title:"sport game baseball ball base catch league",name:"baseball-ball",cat:[21],type:0},{title:"shopping bar price checkout label code tag barcode product scan scanner qr qrcode",name:"barcode-qr",cat:[19],type:0},{title:"shopping bar price checkout label code tag barcode product scan scanner",name:"barcode",cat:[19],type:0},{title:"shopping bar price checkout label code tag barcode product scan scanner",name:"barcode-scan",cat:[19],type:0},{title:"travel food cooking barbecue barbeque bbq grill",name:"barbecue",cat:[10,26],type:0},{title:"fork food cooking tools barbecue barbeque bbq grill rotisserie spatula utensils",name:"barbecue-tools",cat:[10],type:0},{title:"food cooking barbecue barbeque bbq grill",name:"barbecue-15",cat:[10],type:0},{title:"business finance travel bank columns landmark temple",name:"bank",cat:[3,26],type:0},{title:"food fruit banana healthy",name:"banana",cat:[10],type:0},{title:"ui user interface sign ban stop banned block blocked forbidden not prevent none private cancel",name:"ban",cat:[27],type:0},{title:"ui user interface sign ban stop banned block blocked forbidden not prevent none private cancel",name:"ban-bold",cat:[27],type:0},{title:"holidays object party baloon",name:"baloon",cat:[13],type:0},{title:"play education school sport ball football soccer",name:"ball-soccer",cat:[18,21],type:0},{title:"play education school sport ball basket",name:"ball-basket",cat:[18,21],type:0},{title:"media balance photo camera option multimedia white",name:"balance",cat:[16],type:0},{title:"food french breakfast baguette bread loaf",name:"baguette",cat:[10],type:0},{title:"travel bag briefcase suitcase backpack baggage luggage",name:"bag",cat:[26],type:0},{title:"time bag briefcase shopping discount ecommerce sale shop purse countdown buy cart handbag offer",name:"bag-time",cat:[19],type:0},{title:"delete remove bag briefcase shopping ecommerce sale shop purse clear minus cancel buy cart handbag",name:"bag-remove-22",cat:[19],type:0},{title:"delete remove bag briefcase shopping ecommerce sale shop purse clear minus cancel buy cart handbag",name:"bag-remove-19",cat:[19],type:0},{title:"change bag briefcase shopping ecommerce sale shop edit purse modify buy cart handbag",name:"bag-edit",cat:[19],type:0},{title:"new bag briefcase shopping ecommerce sale shop purse add plus buy cart handbag",name:"bag-add-21",cat:[19],type:0},{title:"new bag briefcase shopping ecommerce sale shop purse add plus buy cart handbag",name:"bag-add-18",cat:[19],type:0},{title:"cross bag healthcare health medical survival",name:"bag-50",cat:[12],type:0},{title:"cross bag healthcare health medical survival",name:"bag-49",cat:[12],type:0},{title:"bag clothes accessory hand wear purse",name:"bag-22",cat:[4],type:0},{title:"bag clothes accessory hand wear purse",name:"bag-21",cat:[4],type:0},{title:"bag briefcase shopping ecommerce sale shop purse buy cart handbag",name:"bag-20",cat:[19],type:0},{title:"bag briefcase shopping ecommerce sale shop purse buy cart handbag",name:"bag-17",cat:[19],type:0},{title:"bag briefcase shopping ecommerce sale shop purse buy cart handbag",name:"bag-16",cat:[19],type:0},{title:"ui user interface bag briefcase shopping ecommerce sale shop purse buy cart handbag",name:"bag-09",cat:[19,27],type:0},{title:"sport game activity badminton tennis",name:"badminton",cat:[21],type:0},{title:"business finance badge card id cardholder id card identification identity lanyard profile",name:"badge",cat:[3],type:0},{title:"user login document badge identification identity profile contact card tag users member access",name:"badge-15",cat:[28],type:0},{title:"user login document badge identification identity profile contact card tag users member access",name:"badge-14",cat:[28],type:0},{title:"user login document badge identification identity profile contact man card tag users member access human",name:"badge-13",cat:[28],type:0},{title:"food bacon breakfast meat pork",name:"bacon",cat:[10],type:0},{title:"arrow back backward move ui user interface control layer design",name:"backward",cat:[27],type:0},{title:"travel bag clothes accessory wear backpack camping",name:"backpack",cat:[4,26],type:0},{title:"education school bag backpack",name:"backpack-58",cat:[18],type:0},{title:"education school bag backpack",name:"backpack-57",cat:[18],type:0},{title:"travel bag clothes accessory wear backpack camping",name:"backpack-2",cat:[4,26],type:0},{title:"font text type typography color style editing background",name:"background",cat:[23],type:0},{title:"arrow back curve forward invert left line redo repeat right rotate undo",name:"back-80",cat:[2],type:0},{title:"arrow back curve forward invert left line redo repeat right rotate undo",name:"back-78",cat:[2],type:0},{title:"play suit clothes accessory baby kid romper wear food object bottle biberon infant milk child dummy",name:"baby",cat:[4],type:0},{title:"baby object bottle milk child",name:"baby-bottle",cat:[10],type:0},{title:"baby object child dummy pacifier",name:"baby-3",cat:[10],type:0},{title:"baby bottle biberon infant milk",name:"baby-2",cat:[10],type:0},{title:"user lock security group profile account avatar contact male man person safe padlock protection secure users member human friend follower community people",name:"b-security",cat:[28],type:0},{title:"user delete remove group profile account avatar contact male man person cancel users member human friend follower community people",name:"b-remove",cat:[28],type:0},{title:"user communication group team meeting answer chat comment comments conversation dialog forum message messages reply speaking talk profile account avatar contact male man person service help support users member appointment human friend customer follower community people",name:"b-meeting",cat:[28],type:0},{title:"user group profile account avatar contact male man person favorite favourite love like heart users member human friend follower community people",name:"b-love",cat:[28],type:0},{title:"position location user group profile account avatar contact male man person pin users member human friend locator follower body community people",name:"b-location",cat:[28],type:0},{title:"user group profile account avatar contact male man person check mark approved complete completed done checked tick users member human friend follower community people",name:"b-check",cat:[28],type:0},{title:"user group new profile account avatar contact male man person add create plus users friend follower community people",name:"b-add",cat:[28],type:0},{title:"travel object weapon axe hatchet",name:"axe",cat:[26],type:0},{title:"competition achievement award ribbon badge shopping seal medal prize winner reward champion recognition",name:"award",cat:[19],type:0},{title:"business finance education school achievement award ribbon certificate",name:"award-74",cat:[3,18],type:0},{title:"education school sport award medal prize winner",name:"award-55",cat:[18,21],type:0},{title:"business finance education school award ribbon certificate degree diploma licence patent",name:"award-49",cat:[3,18],type:0},{title:"business finance education school sport achievement award ribbon",name:"award-48",cat:[3,18,21],type:0},{title:"file music folder document volume audio sound soundtrack",name:"audio",cat:[8],type:0},{title:"media multimedia audio mic microphone speaker",name:"audio-92",cat:[16],type:0},{title:"media text editing multimedia audio mic microphone speaker",name:"audio-91",cat:[16,23],type:0},{title:"file ui user interface inbox text email mail contact copy editing paper attachment attach attached attaching clip collate include paperclip",name:"attach-87",cat:[23,27],type:0},{title:"file ui user interface inbox text email mail contact copy editing paper attachment attach attached attaching clip collate include paperclip",name:"attach-86",cat:[23,27],type:0},{title:"education school science healthcare health medical atom chemistry molecule",name:"atom",cat:[12,18],type:0},{title:"business machine finance atm banking",name:"atm",cat:[3],type:0},{title:"object helmet space astronaut",name:"astronaut",cat:[26],type:0},{title:"line interface board layout tool artboard design target development shape paint artwork canvas colors draw guides grid pallet spacing swatch",name:"artboard",cat:[5],type:0},{title:"furniture chair armchair",name:"armchair",cat:[11],type:0},{title:"files file storage ui user interface folder organize box document furniture collection documents editor archive container drawer cabinet handle safebox",name:"archive",cat:[8,27],type:0},{title:"file storage folder box document collection editor archive container drawer",name:"archive-paper",cat:[8],type:0},{title:"file storage folder success available box document check collection editor archive container drawer",name:"archive-paper-check",cat:[8],type:0},{title:"file storage folder box document collection editor archive container drawer",name:"archive-content",cat:[8],type:0},{title:"file storage folder success available box document check collection editor mark approved complete completed done archive container drawer checked tick",name:"archive-check",cat:[8],type:0},{title:"file storage folder box document collection editor archive container drawer",name:"archive-3d-content",cat:[8],type:0},{title:"file storage folder success available box document check collection editor mark approved complete completed done archive container drawer checked tick",name:"archive-3d-check",cat:[8],type:0},{title:"files file storage ui user interface folder organize box document furniture collection documents editor archive container drawer cabinet handle safebox",name:"archive-2",cat:[8,27],type:0},{title:"direction navigation position gps location time map reminder pin place marker maps appointment",name:"appointment",cat:[15],type:0},{title:"design payment computer pay apple development device ipad iphone logo mac",name:"apple",cat:[5,22],type:0},{title:"education apple food fruit healthcare health medical",name:"apple-2",cat:[10,12],type:0},{title:"storage box app design development cube cardboard delivery gift pack package parcel present shipment shipping",name:"app",cat:[5],type:0},{title:"scale design development animation rectangle transform translate",name:"animation-32",cat:[5],type:0},{title:"play video key design development animation motion film frames movie steps",name:"animation-31",cat:[5],type:0},{title:"curve move path design development animation bezier bounce easing motion trajectory",name:"animation-14",cat:[5],type:0},{title:"emoticon angry furious smiley unhappy upset",name:"angry-44",cat:[6],type:0},{title:"emoticon angry furious smiley unhappy upset",name:"angry-10",cat:[6],type:0},{title:"right measure tool mathematics design development shape angle geometry",name:"angle",cat:[5],type:0},{title:"design android google development bot device mobile phone robot smartphone",name:"android",cat:[5,22],type:0},{title:"object anchor help support link",name:"anchor",cat:[25,26],type:0},{title:"data ui user interface diagram stats chart graph report statistics analytics monitor healthcare health medical charting charts results analysis analytic",name:"analytics-89",cat:[12,27],type:0},{title:"data ui user interface diagram stats chart graph report statistics analytics monitor healthcare health medical charting charts results analysis analytic",name:"analytics-88",cat:[12,27],type:0},{title:"cross healthcare health medical emergency ambulance hospital",name:"ambulance",cat:[12],type:0},{title:"move top align alignment arrange layout paragraph text typography design development arrangement baseline place side",name:"align-top",cat:[5],type:0},{title:"right move align alignment arrange layout editing arrangement place side",name:"align-right",cat:[5],type:0},{title:"right align font paragraph text type typography",name:"align-right-2",cat:[23],type:0},{title:"left move align alignment arrange layout editing arrangement place side",name:"align-left",cat:[5],type:0},{title:"left align font paragraph text type typography",name:"align-left-2",cat:[23],type:0},{title:"align font paragraph text type typography editing justify",name:"align-justify",cat:[23],type:0},{title:"center align font paragraph text type typography editing",name:"align-center",cat:[23],type:0},{title:"move vertical center align alignment arrange layout paragraph text typography design development arrangement baseline place side middle vertically",name:"align-center-vertical",cat:[5],type:0},{title:"horizontal move center align alignment arrange layout paragraph text typography design development horizontally arrangement baseline place side middle",name:"align-center-horizontal",cat:[5],type:0},{title:"bottom move align alignment arrange layout paragraph text typography design development arrangement baseline place side",name:"align-bottom",cat:[5],type:0},{title:"object alien space ufo spaceship",name:"alien-33",cat:[25],type:0},{title:"object emoticon alien space ufo",name:"alien-29",cat:[6],type:0},{title:"ui user interface error danger alert attention caution exclamation problem warning red",name:"alert",cat:[27],type:0},{title:"ui user interface sign info alert information notification about faq help support tooltip",name:"alert-square-i",cat:[27],type:0},{title:"ui user interface sign info mark alert information notification about faq help support ask query question",name:"alert-square-que",cat:[27],type:0},{title:"ui user interface sign info stop mark error danger alert attention caution exclamation information notification warning",name:"alert-square-exc",cat:[27],type:0},{title:"ui user interface sign info alert information notification about faq help support tooltip",name:"alert-i",cat:[27],type:0},{title:"ui user interface sign info travel alert information notification about faq help support tooltip",name:"alert-circle-i",cat:[26,27],type:0},{title:"ui user interface sign info mark alert information notification about faq help support ask query question",name:"alert-circle-que",cat:[27],type:0},{title:"ui user interface sign info stop mark error danger alert attention caution exclamation information notification warning",name:"alert-circle-exc",cat:[27],type:0},{title:"ui user interface sign info mark alert information notification about faq help support ask query question",name:"alert-que",cat:[27],type:0},{title:"ui user interface sign stop mark error danger alert attention caution exclamation notification warning",name:"alert-exc",cat:[27],type:0},{title:"food bottle danger attention alcohol drink",name:"alcohol",cat:[10],type:0},{title:"education school book notebook library read collection picture gallery photo album binder catalog catalogue knowledge label learn learning magazine press reading study",name:"album",cat:[5,16,18],type:0},{title:"file media collection picture gallery photo album binder catalog catalogue magazine multimedia",name:"album-2",cat:[5,16],type:0},{title:"furniture air conditioner",name:"air-conditioner",cat:[11],type:0},{title:"air baloon transportation",name:"air-baloon",cat:[25],type:0},{title:"business finance education school agenda book contacts diary note notebook notes pad",name:"agenda",cat:[3,18],type:0},{title:"finance education school agenda book diary note notebook notes pad ribbon bookmark favorite favourite",name:"agenda-bookmark",cat:[18],type:0},{title:"file folder document new add create plus paper item",name:"add",cat:[8],type:0},{title:"user new profile account avatar contact male man person add create plus users friend follower",name:"add-29",cat:[28],type:0},{title:"user new profile account avatar contact male man person add create plus users friend follower",name:"add-27",cat:[28],type:0},{title:"cursor hand pointer finger gesture active tap touch gestures",name:"active-40",cat:[24],type:0},{title:"cursor hand pointer finger gesture active tap touch gestures",name:"active-38",cat:[24],type:0},{title:"media video action film movie multimedia",name:"action-74",cat:[16],type:0},{title:"media video action film movie multimedia",name:"action-73",cat:[16],type:0},{title:"user profile account avatar person accessibility users member human accessible fair",name:"accessibility",cat:[28],type:0},{title:"education school alphabet abc letters",name:"abc",cat:[18],type:0},{title:"user schedule meeting time profile account avatar contact male man person calendar users member appointment countdown human friend follower",name:"a-time",cat:[28],type:0},{title:"sync user refresh reload update profile account avatar contact male man person users member human friend follower",name:"a-sync",cat:[28],type:0},{title:"user profile account avatar contact male man person favorite favourite love like users member star human friend follower",name:"a-star",cat:[28],type:0},{title:"share social user profile account avatar contact male man person connect users member human friend follower",name:"a-share",cat:[28],type:0},{title:"user lock security profile account avatar contact male man person safe padlock protection secure users member human friend follower",name:"a-security",cat:[28],type:0},{title:"user profile account avatar contact male man person view search find lens users member human friend follower",name:"a-search",cat:[28],type:0},{title:"user delete remove profile account avatar contact male man person cancel users member human friend follower",name:"a-remove",cat:[28],type:0},{title:"position location user profile account avatar contact male man person pin users member human friend locator follower body",name:"a-location",cat:[28],type:0},{title:"user profile account avatar contact male man person favorite favourite love like heart users member human friend follower",name:"a-heart",cat:[28],type:0},{title:"change user profile account avatar contact male man person edit modify users member human friend follower",name:"a-edit",cat:[28],type:0},{title:"user delete remove profile account avatar contact male man person cancel users member human friend follower",name:"a-delete",cat:[28],type:0},{title:"user profile account avatar contact male man person check mark approved complete completed done checked tick users member human friend follower",name:"a-check",cat:[28],type:0},{title:"user new profile account avatar contact male man person add create plus users friend follower",name:"a-add",cat:[28],type:0},{title:"up hand fingers gesture touch gestures swipe four",name:"4x-swipe-up",cat:[24],type:0},{title:"right hand fingers gesture touch gestures swipe four",name:"4x-swipe-right",cat:[24],type:0},{title:"left hand fingers gesture touch gestures swipe four",name:"4x-swipe-left",cat:[24],type:0},{title:"hand three fingers gesture tap screen touch gestures interactive",name:"3x-tap",cat:[24],type:0},{title:"up hand three fingers gesture touch gestures swipe",name:"3x-swipe-up",cat:[24],type:0},{title:"right hand three fingers gesture touch gestures swipe",name:"3x-swipe-right",cat:[24],type:0},{title:"left hand three fingers gesture touch gestures swipe",name:"3x-swipe-left",cat:[24],type:0},{title:"media glasses eyeglasses spectacles movie multimedia",name:"3d",cat:[16],type:0},{title:"design development 3D dimension dimensional shape axis coordinate coordinates cube volume",name:"3d-29",cat:[5],type:0},{title:"design development 3D dimension dimensional pyramidal shape three triangle augmented reality",name:"3d-model",cat:[5],type:0},{title:"hand fingers gesture tap screen touch gestures two interactive",name:"2x-tap",cat:[24],type:0},{title:"up hand fingers gesture touch gestures two swipe",name:"2x-swipe-up",cat:[24],type:0},{title:"right hand fingers gesture touch gestures two swipe",name:"2x-swipe-right",cat:[24],type:0},{title:"left hand fingers gesture touch gestures two swipe",name:"2x-swipe-left",cat:[24],type:0},{title:"down hand fingers gesture touch gestures two swipe",name:"2x-swipe-down",cat:[24],type:0},{title:"move up upwards control drag fingers gesture touch gestures two",name:"2x-drag-up",cat:[24],type:0},{title:"down move control drag fingers gesture touch gestures two",name:"2x-drag-down",cat:[24],type:0},{title:"food noodles plate italian noodle pasta spaghetti",name:"pasta",cat:[10],type:1},{title:"badge food certified healthy leaf organic natural",name:"organic-2",cat:[1,10],type:1},{title:"food frozen dessert breakfast cup yogurt sour dairy skyr",name:"yogurt",cat:[10],type:1},{title:"time kitchen timer stopwatch",name:"timer",cat:[10,21],type:1},{title:"food movie snack popcorn cinema",name:"popcorn",cat:[10],type:1},{title:"bag food drink beverage tea",name:"tea-bag",cat:[10],type:1},{title:"food bottle chinese japanese soy sauce oriental asian",name:"soy-sauce",cat:[10],type:1},{title:"sweet candy sugar lollipop",name:"lollipop",cat:[10],type:1},{title:"food bowl soup hot broth noodle ramen stew",name:"soup",cat:[10],type:1},{title:"food bowl rice cereal porridge grains",name:"rice",cat:[10],type:1},{title:"food vegetable pickle cucumber",name:"pickle",cat:[10],type:1},{title:"bag food delivery package takeaway",name:"bag-delivery",cat:[10,19],type:1},{title:"food sweet sugar dispenser cane",name:"sugar",cat:[10],type:1},{title:"food vegetable pepper salad",name:"pepper",cat:[10],type:1},{title:"food vegetable aubergine eggplant",name:"aubergine",cat:[10],type:1},{title:"food vegetable onion",name:"onion",cat:[10],type:1},{title:"food vegetable corn cereal cereals",name:"corn",cat:[10],type:1},{title:"food vegetable chips potato mashed",name:"potato",cat:[10],type:1},{title:"food vegetable garlic onion",name:"garlic",cat:[10],type:1},{title:"food fruit kiwi kiwifruit",name:"kiwi",cat:[10],type:1},{title:"food fruit berry blueberries blueberry",name:"blueberries",cat:[10],type:1},{title:"food fruit orange juice citrus grapefruit clementine",name:"orange",cat:[10],type:1},{title:"food fruit pear",name:"pear",cat:[10],type:1},{title:"food fruit lemon lime detox lemonade citrus",name:"lemon",cat:[10],type:1},{title:"food fruit pineapple tropical",name:"pineapple",cat:[10],type:1},{title:"health drink healthy beverage juice smoothie milkshake",name:"smoothie",cat:[10],type:1},{title:"nut nuts allergy peanut butter",name:"peanut",cat:[10],type:1},{title:"dessert sweet chocolate cream choco spread",name:"choco-cream",cat:[10],type:1},{title:"food dessert sweet sugar churros spanish",name:"churros",cat:[10],type:1},{title:"cake dessert sweet bakery cupcake muffin pastry",name:"cupcake",cat:[10],type:1},{title:"fruit dessert sweet sugar jelly gelatin",name:"jelly",cat:[10],type:1},{title:"dessert sweet cream ice sugar ice cream gelato",name:"ice-cream",cat:[10],type:1},{title:"dessert sweet bee honey syrup nectar dipper sugar",name:"honey",cat:[10],type:1},{title:"cake dessert sweet chocolate bakery mousse",name:"chocolate-mousse",cat:[10],type:1},{title:"food dessert sweet pancake pastry waffle",name:"waffle",cat:[10],type:1},{title:"dessert sweet pastry crepe crepes wrap",name:"crepe",cat:[10],type:1},{title:"cake dessert bakery pancake pastry crumpet waffle",name:"crumpet",cat:[10],type:1},{title:"dessert bread loaf bakery baking brioche pastry",name:"brioche",cat:[10],type:1},{title:"food nature healthy leaf organic",name:"organic",cat:[1,10],type:1},{title:"glass water drink beverage potable",name:"glass-water",cat:[10],type:1},{title:"food vegetable tomato",name:"tomato",cat:[10],type:1},{title:"glass drink healthy beverage leaf detox",name:"detox",cat:[10],type:1},{title:"food sandwich breakfast bread toast fastfood snack",name:"snack",cat:[10],type:1},{title:"fork vegetable carrot diet vegan vegetarian",name:"vegan",cat:[10],type:1},{title:"weight food calendar diet plan meals loss",name:"diet-plan",cat:[10,12,21],type:1},{title:"measure scale weight food kitchen",name:"food-scale",cat:[10,12],type:1},{title:"fruit drink healthy beverage orange juice fresh tropicana",name:"juice",cat:[10],type:1},{title:"food healthy diet plan wellness nutrition nutritional meals",name:"nutrition",cat:[10,12,21],type:1},{title:"file document note microsoft onenote",name:"onenote",cat:[20,8],type:1},{title:"energy fire sport fuel flame fitness cardio calorie calories",name:"energy",cat:[10,21],type:1},{title:"apple food health diet plan eating nutrition",name:"diet",cat:[10,12,21],type:1},{title:"list add create todo recipe ingredients",name:"recipe-create",cat:[10],type:1},{title:"list todo recipe ingredients",name:"recipe",cat:[10],type:1},{title:"food healthy vegetable diet salad lettuce",name:"salad",cat:[10],type:1},{title:"schedule time check alarm calendar appointment event reservation booking confirmation confirm",name:"event-confirm",cat:[27],type:1},{title:"schedule new time add create alarm calendar appointment event reservation booking",name:"event-create",cat:[27],type:1},{title:"list bill cheque payment price invoice receipt prices",name:"bill",cat:[3,10,19],type:1},{title:"list glass menu alcohol drink cocktail wine",name:"drink-list",cat:[10],type:1},{title:"schedule time alarm calendar appointment event opening times hours",name:"opening-times",cat:[10,27],type:1},{title:"food turkey meat chicken poultry dinner roast",name:"roast-chicken",cat:[10],type:1},{title:"food hazelnut nut nuts allergy protein",name:"hazelnut",cat:[10],type:1},{title:"food service dish course tray staff waiter",name:"dish",cat:[10],type:1},{title:"list food menu bottle alcohol drink cocktail wine",name:"wine-list",cat:[10],type:1},{title:"list price food menu catalog catalogue restaurant brochure prices flyer promotion",name:"restaurant-menu",cat:[10],type:1},{title:"restaurant reservation booking",name:"reservation",cat:[10],type:1},{title:"hat cooking chef restaurant cook",name:"chef",cat:[10],type:1},{title:"bar view summer restaurant cafe terrace rooftop",name:"terrace",cat:[10,11],type:1},{title:"fork food cutlery knife restaurant dinner eating",name:"cutlery",cat:[10],type:1},{title:"food coffee espresso organic bean caffeine cafe",name:"coffee-bean",cat:[10],type:1},{title:"food fruit healthy organic avocado",name:"avocado",cat:[10],type:1},{title:"dessert sweet breakfast bakery pancake syrup baking",name:"pancake",cat:[10],type:1},{title:"food meat pork bbq grill bone beef steak rib butcher",name:"steak-2",cat:[10],type:1},{title:"rotate circle loading progress wait interactive spinner rotation loader",name:"l-circles",cat:[14],type:1},{title:"rotate loading progress wait interactive spinner rotation loader",name:"l-circle",cat:[14],type:1},{title:"video streaming twitch",name:"twitch",cat:[20],type:1},{title:"chat description srt accessibility bubble subs subtitles subtitle caption",name:"subtitles",cat:[16],type:1},{title:"arrow arrows horizontal enlarge expand fullscreen increase maximize window zoom fit full measure resize responsive scale size width",name:"resize-h",cat:[2],type:1},{title:"arrow arrows enlarge expand fullscreen increase maximize window zoom vertical fit full measure resize responsive scale size height",name:"resize-v",cat:[2],type:1},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom center",name:"zoom-triangles",cat:[2],type:1},{title:"arrow move out enlarge expand fullscreen increase maximize reach window zoom center",name:"zoom-e",cat:[2,16],type:1},{title:"social game discord gaming",name:"discord",cat:[20],type:1},{title:"move drag tool hand pan privacy",name:"tool-hand",cat:[5],type:1},{title:"select tool rectangle selection marquee",name:"tool-select",cat:[5],type:1},{title:"ui system design template components patterns guidelines component module",name:"components",cat:[5,27],type:1},{title:"system columns css grid flexbox rows",name:"grid-system",cat:[5],type:1},{title:"tool rectangle mask clip clipping masking rect",name:"mask-rect",cat:[5],type:1},{title:"circle tool oval mask clip clipping masking",name:"mask-oval",cat:[5],type:1},{title:"image material background texture img pattern",name:"texture",cat:[5],type:1},{title:"tool filter blur fuzzy gaussian",name:"tool-blur",cat:[5,16],type:1},{title:"scale size height dimension big large dimensions tall",name:"size-large",cat:[5,19],type:1},{title:"scale size height dimension medium dimensions average",name:"size-medium",cat:[5,19],type:1},{title:"scale size height dimension small dimensions",name:"size-small",cat:[5,19],type:1},{title:"git fork programming push commit pull svn",name:"git-commit",cat:[5],type:1},{title:"ui system library design block components modules patterns guidelines styleguide",name:"design-system",cat:[5,27],type:1},{title:"design shape shapes custom",name:"shape-custom",cat:[5],type:1},{title:"arrow design shape shapes",name:"shape-arrow",cat:[5],type:1},{title:"line design shape shapes",name:"shape-line",cat:[5],type:1},{title:"design shape style shapes star",name:"shape-star",cat:[5],type:1},{title:"design shape shapes polygon",name:"shape-polygon-2",cat:[5],type:1},{title:"design shape rectangle square shapes",name:"shape-rectangle",cat:[5],type:1},{title:"circle design shape oval shapes",name:"shape-oval",cat:[5],type:1},{title:"tool design shape triangle shapes",name:"shape-triangle-2",cat:[5],type:1},{title:"position location target focus distance margin static",name:"position",cat:[5],type:1},{title:"corner design angle border radius",name:"border-radius",cat:[5],type:1},{title:"css style border outer",name:"border",cat:[5],type:1},{title:"scale tool edit transform reshape 2d",name:"transform-2d",cat:[5],type:1},{title:"layer layers design card style palette cards",name:"cards",cat:[5],type:1},{title:"play connection network tool connect animation wireframe link wire prototype usability concept",name:"prototype",cat:[5],type:1},{title:"tool color gradient mask background colour linear fade luma",name:"gradient",cat:[5],type:1},{title:"safety car vehicle warning secure airbag",name:"airbag",cat:[25],type:1},{title:"woman man walk walking footpath walks moving",name:"walk",cat:[25],type:1},{title:"sign car vehicle space parking garage",name:"parking",cat:[25,26],type:1},{title:"switch start power on engine run",name:"engine-start",cat:[22,25],type:1},{title:"can station drip oil engine lubrication",name:"oil",cat:[7,25],type:1},{title:"visibility smart eye signal signals parking sensors driverless",name:"parking-sensors",cat:[25,22],type:1},{title:"seat chair vehicle seating seats",name:"seat",cat:[25],type:1},{title:"fan air conditioner cooler ventilation ventilator",name:"ventilation",cat:[25],type:1},{title:"stop car wheel disk brake brakes pedal discs",name:"brakes",cat:[25],type:1},{title:"open car vehicle trunk",name:"trunk",cat:[25],type:1},{title:"energy electric plug smart battery charger plugin hybrid",name:"hybrid",cat:[22,25,7],type:1},{title:"window car air conditioner ventilation",name:"car-ventilation",cat:[25],type:1},{title:"window wash washing car washer carwash fluid",name:"washing-fluid",cat:[25],type:1},{title:"car radiator auto engine diesel turbo piston cylinder combustion cylinders mechanic motor",name:"engine",cat:[25],type:1},{title:"inside door open car locked entrance doors",name:"car-door",cat:[25],type:1},{title:"light car indicator lights sidelight beam",name:"car-lights",cat:[25],type:1},{title:"drive car wheel gear cog tire traction",name:"wheel-2",cat:[25],type:1},{title:"controller car wheel gear steering tire driver",name:"wheel",cat:[25],type:1},{title:"car vehicle wheel rim part",name:"rim",cat:[25],type:1},{title:"energy power electric electricity charge charging level battery ion lithium rechargeable status",name:"battery-level",cat:[7,22,25],type:1},{title:"security seat safety belt car locked protection transportation accident seatbelt",name:"seatbelt",cat:[25],type:1},{title:"fuel station oil gas petrol gasoline diesel",name:"fuel-2",cat:[7,25],type:1},{title:"technology calibration smart sensor sensors alarms detector ignition cmos analyzer",name:"sensor",cat:[22,25],type:1},{title:"danger car transport vehicle auto transportation crash automobile broken insurance accident collision damage",name:"car-accident",cat:[25],type:1},{title:"wash clean car transport vehicle auto transportation automobile carwash",name:"car-wash",cat:[25],type:1},{title:"connect technology smart car vehicle signal wifi",name:"car-connect",cat:[25],type:1},{title:"sign car vehicle auto parking garage rental valet slot",name:"car-parking",cat:[25],type:1},{title:"transport cycle transportation bicycle bike cyclist cycling",name:"cyclist",cat:[21,25],type:1},{title:"transport cycle transportation bicycle bike cyclist cycling",name:"bike-2",cat:[21,25],type:1},{title:"sign key email website address at",name:"at-sign",cat:[23,27],type:1},{title:"delete remove schedule time volume minus alarm timer sound alert cancel event mute negative quiet silence",name:"alarm-delete",cat:[27],type:1},{title:"communication new answer chat comment conversation dialog message messages reply speaking talk note add create plus addition bubble",name:"comment-add",cat:[27],type:1},{title:"data schedule time chart timer events event plan history timeline past",name:"timeline",cat:[5,27],type:1},{title:"schedule new time add create plus addition alarm timer posit