Version Description
- 2019-09-18 =
- New: Custom fonts
- New: Text image mask
- New: Text shadow
- New: Text gradient color
- New: Block shape dividers were moved from PRO to Free
- Improved: Migrated Soundcloud, Counter, Facebook Group, Page and Comments to a new CSS system meant to clean up the DOM
- Improved: Reduced JavaScript file size
- Improved: Improved error handling in api
- Fixed: Unable to unglobal Header and Footer blocks
- Fixed: Unable to use drag and drop in a global Popup block
- Fixed: Inputs, selects and textareas not being cleared when successfully submitting a form
- Fixed: Changing Section width in desktop mode affected other modes as well
- Fixed: RichText putting extra whitespace sometimes
- Fixed: SVG for two Section dividers
- Fixed: Wrong submit settings action call
- Fixed: Media asset processor
- Fixed: Template view on network sites
- Fixed: Fixed the case for duplicated global blocks in database
- Fixed: Media asset processor to replace all image urls from static css
- Fixed: Fixed ajax urls
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 1.0.82 |
Comparing to | |
See all releases |
Code changes from version 1.0.81 to 1.0.82
- README.md +24 -2
- admin/abstract-api.php +14 -4
- admin/blocks/api.php +20 -60
- admin/fonts/api.php +147 -0
- admin/fonts/handler.php +165 -0
- admin/fonts/main.php +80 -0
- admin/fonts/manager.php +277 -0
- admin/fonts/views/fonts.css.twig +13 -0
- admin/form-entries.php +1 -1
- admin/main.php +54 -66
- admin/migrations.php +32 -9
- admin/migrations/block-post-title-migration.php +51 -0
- admin/migrations/clean-invalid-blocks-migration.php +7 -0
- admin/migrations/form-serialization-migration.php +7 -0
- admin/migrations/global-blocks-to-custom-post-migration.php +26 -11
- admin/migrations/global-versions-migration.php +17 -2
- admin/migrations/globals-to-data-migration.php +54 -0
- admin/migrations/migration-interface.php +6 -0
- admin/migrations/null-migration.php +7 -0
- admin/migrations/posts-trait.php +53 -31
- admin/migrations/project-to-custom-post-migration.php +8 -0
- admin/migrations/rules-migration.php +7 -0
- admin/migrations/shortcodes-mobile-one-migration.php +7 -0
- admin/rule.php +1 -1
- admin/rules/api.php +18 -11
- admin/rules/manager.php +1 -1
- admin/settings.php +4 -0
- admin/static/js/rules.js +17 -9
- admin/templates.php +1 -4
- admin/views/optimizer/optimizer-general.html.twig +16 -6
- autoload.php +1 -1
- brizy.php +5 -6
- compatibilities/init.php +9 -2
- compatibilities/yoast-seo.php +24 -0
- config.php +15 -13
- content/providers/free-provider.php +2 -1
- editor.php +18 -11
- editor/api.php +81 -79
- editor/api/client.php +22 -12
- editor/asset/media-asset-processor.php +2 -22
- editor/block-screenshot-api.php +86 -41
- editor/block.php +53 -0
- editor/data/project-merge-strategy-interface.php +5 -0
- editor/data/project-merge-strategy.php +32 -0
- editor/data/project-merge81.php +45 -0
- editor/data/project-merge82.php +91 -0
- editor/editor/editor.php +40 -31
- editor/forms/abstract-integration.php +5 -0
- editor/post.php +13 -22
- editor/project.php +69 -46
- editor/storage/post.php +3 -0
- editor/storage/project-globals.php +21 -0
- editor/url-builder.php +20 -7
- logger.php +7 -8
- public/abstract-proxy.php +1 -1
- public/editor-build/defaults.json +418 -0
- public/editor-build/editor/css/editor.css +4773 -4540
- public/editor-build/editor/css/preview.css +243 -49
- public/editor-build/editor/fonts/icomoon.eot +0 -0
- public/editor-build/editor/fonts/icomoon.svg +0 -47
- public/editor-build/editor/fonts/icomoon.ttf +0 -0
- public/editor-build/editor/fonts/icomoon.woff +0 -0
- public/editor-build/editor/icons/editor/arrow-down.svg +1 -0
- public/editor-build/editor/icons/editor/close-popup.svg +1 -0
- public/editor-build/editor/icons/editor/close.svg +1 -0
- public/editor-build/editor/icons/editor/dynamic-img.svg +1 -0
- public/editor-build/editor/icons/editor/iframe.svg +1 -0
- public/editor-build/editor/icons/editor/img.svg +1 -0
- public/editor-build/editor/icons/editor/menu-3.svg +1 -0
- public/editor-build/editor/icons/editor/pin.svg +1 -0
- public/editor-build/editor/icons/editor/play.svg +1 -0
- public/editor-build/editor/icons/editor/right-arrow-filled.svg +1 -0
- public/editor-build/editor/icons/editor/right-arrow-heavy.svg +1 -0
- public/editor-build/editor/icons/editor/right-arrow-outline.svg +1 -0
- public/editor-build/editor/icons/editor/right-arrow-tail.svg +1 -0
- public/editor-build/editor/icons/editor/right-arrow-thin.svg +1 -0
- public/editor-build/editor/icons/editor/sound-cloud.svg +1 -0
- public/editor-build/editor/icons/editor/woo-2.svg +1 -0
- public/editor-build/editor/icons/editor/wp-shortcode.svg +1 -0
- public/editor-build/editor/icons/icons.svg +2 -1
- public/editor-build/editor/img/{mac-keyboard@1x.png → mac-keyboard1x.png} +0 -0
- public/editor-build/editor/img/{mac-keyboard@2x.png → mac-keyboard2x.png} +0 -0
- public/editor-build/editor/img/{pc-keyboard@1x.png → pc-keyboard1x.png} +0 -0
- public/editor-build/editor/img/{pc-keyboard@2x.png → pc-keyboard2x.png} +0 -0
- public/editor-build/editor/js/0.worker.js +0 -1
README.md
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: themefuse<br>
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.2.1<br>
|
5 |
-
Requires PHP: 5.
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv3<br>
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -118,6 +118,28 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
|
|
118 |
|
119 |
## Changelog
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
### 1.0.81 - 2019-05-29 ###
|
122 |
* Fixed: Popup option not working for certain users
|
123 |
* Fixed: Url for Go to pro button
|
2 |
Contributors: themefuse<br>
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.2.1<br>
|
5 |
+
Requires PHP: 5.6<br>
|
6 |
+
Stable tag: 1.0.82<br>
|
7 |
License: GPLv3<br>
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
118 |
|
119 |
## Changelog
|
120 |
|
121 |
+
### 1.0.82 - 2019-09-18 ###
|
122 |
+
* New: Custom fonts
|
123 |
+
* New: Text image mask
|
124 |
+
* New: Text shadow
|
125 |
+
* New: Text gradient color
|
126 |
+
* New: Block shape dividers were moved from PRO to Free
|
127 |
+
* Improved: Migrated Soundcloud, Counter, Facebook Group, Page and Comments to a new CSS system meant to clean up the DOM
|
128 |
+
* Improved: Reduced JavaScript file size
|
129 |
+
* Improved: Improved error handling in api
|
130 |
+
* Fixed: Unable to “unglobal” Header and Footer blocks
|
131 |
+
* Fixed: Unable to use drag and drop in a global Popup block
|
132 |
+
* Fixed: Inputs, selects and textareas not being cleared when successfully submitting a form
|
133 |
+
* Fixed: Changing Section width in desktop mode affected other modes as well
|
134 |
+
* Fixed: RichText putting extra whitespace sometimes
|
135 |
+
* Fixed: SVG for two Section dividers
|
136 |
+
* Fixed: Wrong submit settings action call
|
137 |
+
* Fixed: Media asset processor
|
138 |
+
* Fixed: Template view on network sites
|
139 |
+
* Fixed: Fixed the case for duplicated global blocks in database
|
140 |
+
* Fixed: Media asset processor to replace all image urls from static css
|
141 |
+
* Fixed: Fixed ajax urls
|
142 |
+
|
143 |
### 1.0.81 - 2019-05-29 ###
|
144 |
* Fixed: Popup option not working for certain users
|
145 |
* Fixed: Url for Go to pro button
|
admin/abstract-api.php
CHANGED
@@ -20,11 +20,21 @@ abstract class Brizy_Admin_AbstractApi {
|
|
20 |
* @param $action
|
21 |
*/
|
22 |
protected function verifyNonce( $action ) {
|
23 |
-
if ( ! wp_verify_nonce( $this->getRequestNonce(), $action ) ) {
|
24 |
-
Brizy_Logger::instance()->error( 'Invalid request nonce', $_REQUEST );
|
25 |
-
$this->error( 400, "Bad request" );
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
}
|
|
|
|
|
|
|
|
|
28 |
}
|
29 |
|
30 |
/**
|
@@ -52,6 +62,6 @@ abstract class Brizy_Admin_AbstractApi {
|
|
52 |
* @param $data
|
53 |
*/
|
54 |
protected function success( $data ) {
|
55 |
-
|
56 |
}
|
57 |
}
|
20 |
* @param $action
|
21 |
*/
|
22 |
protected function verifyNonce( $action ) {
|
|
|
|
|
|
|
23 |
|
24 |
+
$version = $this->param( 'version' );
|
25 |
+
if ( $version !== BRIZY_EDITOR_VERSION ) {
|
26 |
+
Brizy_Logger::instance()->critical( 'Request with invalid version',
|
27 |
+
[
|
28 |
+
'editorVersion' => BRIZY_EDITOR_VERSION,
|
29 |
+
'providedVersion' => $version
|
30 |
+
] );
|
31 |
+
|
32 |
+
$this->error( 400, "Invalid editor version. Please refresh the page and try again" );
|
33 |
}
|
34 |
+
// if ( ! wp_verify_nonce( $this->getRequestNonce(), $action ) ) {
|
35 |
+
// Brizy_Logger::instance()->error( 'Invalid request nonce', $_REQUEST );
|
36 |
+
// $this->error( 400, "Bad request" );
|
37 |
+
// }
|
38 |
}
|
39 |
|
40 |
/**
|
62 |
* @param $data
|
63 |
*/
|
64 |
protected function success( $data ) {
|
65 |
+
wp_send_json_success( $data );
|
66 |
}
|
67 |
}
|
admin/blocks/api.php
CHANGED
@@ -11,8 +11,8 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
11 |
|
12 |
const nonce = 'brizy-api';
|
13 |
|
14 |
-
const
|
15 |
-
const
|
16 |
|
17 |
const CREATE_GLOBAL_BLOCK_ACTION = 'brizy-create-global-block';
|
18 |
const CREATE_SAVED_BLOCK_ACTION = 'brizy-create-saved-block';
|
@@ -58,8 +58,8 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
58 |
}
|
59 |
|
60 |
protected function initializeApiActions() {
|
61 |
-
add_action( 'wp_ajax_' . self::
|
62 |
-
add_action( 'wp_ajax_' . self::
|
63 |
add_action( 'wp_ajax_' . self::CREATE_GLOBAL_BLOCK_ACTION, array( $this, 'actionCreateGlobalBlock' ) );
|
64 |
add_action( 'wp_ajax_' . self::UPDATE_GLOBAL_BLOCK_ACTION, array( $this, 'actionUpdateGlobalBlock' ) );
|
65 |
add_action( 'wp_ajax_' . self::UPDATE_SAVED_BLOCK_ACTION, array( $this, 'actionUpdateSavedBlock' ) );
|
@@ -73,7 +73,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
73 |
$this->verifyNonce( self::nonce );
|
74 |
|
75 |
try {
|
76 |
-
$blocks =
|
77 |
|
78 |
$this->success( $blocks );
|
79 |
|
@@ -86,7 +86,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
86 |
$this->verifyNonce( self::nonce );
|
87 |
|
88 |
try {
|
89 |
-
$blocks =
|
90 |
|
91 |
$this->success( $blocks );
|
92 |
|
@@ -108,14 +108,14 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
108 |
|
109 |
try {
|
110 |
$editorData = stripslashes( $this->param( 'data' ) );
|
111 |
-
$position
|
112 |
|
113 |
$block = $this->createBlock( $this->param( 'uid' ), 'publish', Brizy_Admin_Blocks_Main::CP_GLOBAL );
|
114 |
$block->set_editor_data( $editorData );
|
115 |
$block->set_needs_compile( true );
|
116 |
|
117 |
if ( $position ) {
|
118 |
-
$block->setPosition( Brizy_Editor_BlockPosition::createFromSerializedData( get_object_vars(json_decode($position)) ) );
|
119 |
}
|
120 |
|
121 |
// rules
|
@@ -128,7 +128,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
128 |
|
129 |
do_action( 'brizy_global_data_updated' );
|
130 |
|
131 |
-
$this->success( $block );
|
132 |
|
133 |
} catch ( Exception $exception ) {
|
134 |
$this->error( 400, $exception->getMessage() );
|
@@ -146,6 +146,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
146 |
$this->error( 400, 'Invalid data' );
|
147 |
}
|
148 |
|
|
|
149 |
try {
|
150 |
$data = stripslashes( $this->param( 'data' ) );
|
151 |
$block = $this->createBlock( $this->param( 'uid' ), 'publish', Brizy_Admin_Blocks_Main::CP_SAVED );
|
@@ -155,7 +156,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
155 |
|
156 |
do_action( 'brizy_global_data_updated' );
|
157 |
|
158 |
-
$this->success( $block );
|
159 |
|
160 |
} catch ( Exception $exception ) {
|
161 |
$this->error( 400, $exception->getMessage() );
|
@@ -184,7 +185,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
184 |
$position = stripslashes( $this->param( 'position' ) );
|
185 |
|
186 |
if ( $position ) {
|
187 |
-
$block->setPosition( Brizy_Editor_BlockPosition::createFromSerializedData( get_object_vars(json_decode($position)) ) );
|
188 |
}
|
189 |
|
190 |
// rules
|
@@ -200,7 +201,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
200 |
do_action( 'brizy_global_data_updated' );
|
201 |
}
|
202 |
|
203 |
-
$this->success( $block
|
204 |
} catch
|
205 |
( Exception $exception ) {
|
206 |
$this->error( 400, $exception->getMessage() );
|
@@ -223,14 +224,14 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
223 |
|
224 |
$block->set_editor_data( stripslashes( $this->param( 'data' ) ) );
|
225 |
|
226 |
-
if ( (int) $this->param( '
|
227 |
$block->auto_save_post();
|
228 |
} else {
|
229 |
$block->save();
|
230 |
do_action( 'brizy_global_data_updated' );
|
231 |
}
|
232 |
|
233 |
-
$this->success( $block
|
234 |
} catch ( Exception $exception ) {
|
235 |
$this->error( 400, $exception->getMessage() );
|
236 |
}
|
@@ -301,33 +302,6 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
301 |
$this->success( '200', json_encode( $positionObject ) );
|
302 |
}
|
303 |
|
304 |
-
/**
|
305 |
-
* @param $type
|
306 |
-
* @param array $arags
|
307 |
-
*
|
308 |
-
* @return array
|
309 |
-
* @throws Brizy_Editor_Exceptions_NotFound
|
310 |
-
*/
|
311 |
-
private function getBlocksByType( $type, $arags = array() ) {
|
312 |
-
|
313 |
-
$filterArgs = array(
|
314 |
-
'post_type' => $type,
|
315 |
-
'posts_per_page' => - 1,
|
316 |
-
'post_status' => 'any',
|
317 |
-
'orderby' => 'ID',
|
318 |
-
'order' => 'ASC',
|
319 |
-
);
|
320 |
-
$filterArgs = array_merge( $filterArgs, $arags );
|
321 |
-
|
322 |
-
$wpBlocks = get_posts( $filterArgs );
|
323 |
-
$blocks = array();
|
324 |
-
|
325 |
-
foreach ( $wpBlocks as $wpPost ) {
|
326 |
-
$blocks[] = $this->postData( Brizy_Editor_Block::get( $wpPost ) );
|
327 |
-
}
|
328 |
-
|
329 |
-
return $blocks;
|
330 |
-
}
|
331 |
|
332 |
/**
|
333 |
* @param $uid
|
@@ -344,6 +318,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
344 |
meta_key='brizy_post_uid' and
|
345 |
meta_value='%s'
|
346 |
WHERE p.post_type IN ('%s')
|
|
|
347 |
LIMIT 1", array( $uid, $postType ) );
|
348 |
|
349 |
return $wpdb->get_var( $prepare );
|
@@ -363,6 +338,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
363 |
pm.post_id=p.ID and
|
364 |
meta_key='brizy_post_uid' and
|
365 |
meta_value='%s'
|
|
|
366 |
LIMIT 1", array( $uid, ) );
|
367 |
|
368 |
return $wpdb->get_var( $prepare );
|
@@ -390,7 +366,10 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
390 |
* @throws Brizy_Editor_Exceptions_NotFound
|
391 |
*/
|
392 |
private function createBlock( $uid, $status, $type ) {
|
|
|
393 |
$post = wp_insert_post( array(
|
|
|
|
|
394 |
'post_status' => $status,
|
395 |
'post_type' => $type
|
396 |
) );
|
@@ -421,23 +400,4 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
|
|
421 |
}
|
422 |
|
423 |
|
424 |
-
/**
|
425 |
-
* @param Brizy_Editor_Block $post
|
426 |
-
*
|
427 |
-
* @return array
|
428 |
-
*/
|
429 |
-
public function postData( Brizy_Editor_Block $post ) {
|
430 |
-
|
431 |
-
$p_id = (int) $post->get_id();
|
432 |
-
|
433 |
-
$global = array(
|
434 |
-
'uid' => $post->get_uid(),
|
435 |
-
'status' => get_post_status( $p_id ),
|
436 |
-
'data' => $post->get_editor_data(),
|
437 |
-
'position' => $post->getPosition(),
|
438 |
-
'rules' => $this->ruleManager->getRules( $p_id ),
|
439 |
-
);
|
440 |
-
|
441 |
-
return $global;
|
442 |
-
}
|
443 |
}
|
11 |
|
12 |
const nonce = 'brizy-api';
|
13 |
|
14 |
+
const GET_GLOBAL_BLOCKS_ACTION = 'brizy-get-global-blocks';
|
15 |
+
const GET_SAVED_BLOCKS_ACTION = 'brizy-get-saved-blocks';
|
16 |
|
17 |
const CREATE_GLOBAL_BLOCK_ACTION = 'brizy-create-global-block';
|
18 |
const CREATE_SAVED_BLOCK_ACTION = 'brizy-create-saved-block';
|
58 |
}
|
59 |
|
60 |
protected function initializeApiActions() {
|
61 |
+
add_action( 'wp_ajax_' . self::GET_GLOBAL_BLOCKS_ACTION, array( $this, 'actionGetGlobalBlocks' ) );
|
62 |
+
add_action( 'wp_ajax_' . self::GET_SAVED_BLOCKS_ACTION, array( $this, 'actionGetSavedBlocks' ) );
|
63 |
add_action( 'wp_ajax_' . self::CREATE_GLOBAL_BLOCK_ACTION, array( $this, 'actionCreateGlobalBlock' ) );
|
64 |
add_action( 'wp_ajax_' . self::UPDATE_GLOBAL_BLOCK_ACTION, array( $this, 'actionUpdateGlobalBlock' ) );
|
65 |
add_action( 'wp_ajax_' . self::UPDATE_SAVED_BLOCK_ACTION, array( $this, 'actionUpdateSavedBlock' ) );
|
73 |
$this->verifyNonce( self::nonce );
|
74 |
|
75 |
try {
|
76 |
+
$blocks = Brizy_Editor_Block::getBlocksByType( Brizy_Admin_Blocks_Main::CP_GLOBAL );
|
77 |
|
78 |
$this->success( $blocks );
|
79 |
|
86 |
$this->verifyNonce( self::nonce );
|
87 |
|
88 |
try {
|
89 |
+
$blocks = Brizy_Editor_Block::getBlocksByType( Brizy_Admin_Blocks_Main::CP_SAVED );
|
90 |
|
91 |
$this->success( $blocks );
|
92 |
|
108 |
|
109 |
try {
|
110 |
$editorData = stripslashes( $this->param( 'data' ) );
|
111 |
+
$position = stripslashes( $this->param( 'position' ) );
|
112 |
|
113 |
$block = $this->createBlock( $this->param( 'uid' ), 'publish', Brizy_Admin_Blocks_Main::CP_GLOBAL );
|
114 |
$block->set_editor_data( $editorData );
|
115 |
$block->set_needs_compile( true );
|
116 |
|
117 |
if ( $position ) {
|
118 |
+
$block->setPosition( Brizy_Editor_BlockPosition::createFromSerializedData( get_object_vars( json_decode( $position ) ) ) );
|
119 |
}
|
120 |
|
121 |
// rules
|
128 |
|
129 |
do_action( 'brizy_global_data_updated' );
|
130 |
|
131 |
+
$this->success( Brizy_Editor_Block::postData( $block ) );
|
132 |
|
133 |
} catch ( Exception $exception ) {
|
134 |
$this->error( 400, $exception->getMessage() );
|
146 |
$this->error( 400, 'Invalid data' );
|
147 |
}
|
148 |
|
149 |
+
|
150 |
try {
|
151 |
$data = stripslashes( $this->param( 'data' ) );
|
152 |
$block = $this->createBlock( $this->param( 'uid' ), 'publish', Brizy_Admin_Blocks_Main::CP_SAVED );
|
156 |
|
157 |
do_action( 'brizy_global_data_updated' );
|
158 |
|
159 |
+
$this->success( Brizy_Editor_Block::postData( $block ) );
|
160 |
|
161 |
} catch ( Exception $exception ) {
|
162 |
$this->error( 400, $exception->getMessage() );
|
185 |
$position = stripslashes( $this->param( 'position' ) );
|
186 |
|
187 |
if ( $position ) {
|
188 |
+
$block->setPosition( Brizy_Editor_BlockPosition::createFromSerializedData( get_object_vars( json_decode( $position ) ) ) );
|
189 |
}
|
190 |
|
191 |
// rules
|
201 |
do_action( 'brizy_global_data_updated' );
|
202 |
}
|
203 |
|
204 |
+
$this->success( Brizy_Editor_Block::postData( $block ) );
|
205 |
} catch
|
206 |
( Exception $exception ) {
|
207 |
$this->error( 400, $exception->getMessage() );
|
224 |
|
225 |
$block->set_editor_data( stripslashes( $this->param( 'data' ) ) );
|
226 |
|
227 |
+
if ( (int) $this->param( 'is_autosave' ) ) {
|
228 |
$block->auto_save_post();
|
229 |
} else {
|
230 |
$block->save();
|
231 |
do_action( 'brizy_global_data_updated' );
|
232 |
}
|
233 |
|
234 |
+
$this->success( Brizy_Editor_Block::postData( $block ) );
|
235 |
} catch ( Exception $exception ) {
|
236 |
$this->error( 400, $exception->getMessage() );
|
237 |
}
|
302 |
$this->success( '200', json_encode( $positionObject ) );
|
303 |
}
|
304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
|
306 |
/**
|
307 |
* @param $uid
|
318 |
meta_key='brizy_post_uid' and
|
319 |
meta_value='%s'
|
320 |
WHERE p.post_type IN ('%s')
|
321 |
+
ORDER BY p.ID DESC
|
322 |
LIMIT 1", array( $uid, $postType ) );
|
323 |
|
324 |
return $wpdb->get_var( $prepare );
|
338 |
pm.post_id=p.ID and
|
339 |
meta_key='brizy_post_uid' and
|
340 |
meta_value='%s'
|
341 |
+
ORDER BY p.ID DESC
|
342 |
LIMIT 1", array( $uid, ) );
|
343 |
|
344 |
return $wpdb->get_var( $prepare );
|
366 |
* @throws Brizy_Editor_Exceptions_NotFound
|
367 |
*/
|
368 |
private function createBlock( $uid, $status, $type ) {
|
369 |
+
$name = md5( time() );
|
370 |
$post = wp_insert_post( array(
|
371 |
+
'post_title' => $name,
|
372 |
+
'post_name' => $name,
|
373 |
'post_status' => $status,
|
374 |
'post_type' => $type
|
375 |
) );
|
400 |
}
|
401 |
|
402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
}
|
admin/fonts/api.php
ADDED
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Created by PhpStorm.
|
4 |
+
* User: alex
|
5 |
+
* Date: 7/18/18
|
6 |
+
* Time: 10:48 AM
|
7 |
+
*/
|
8 |
+
|
9 |
+
|
10 |
+
class Brizy_Admin_Fonts_Api extends Brizy_Admin_AbstractApi {
|
11 |
+
|
12 |
+
const nonce = 'brizy-api';
|
13 |
+
|
14 |
+
const AJAX_CREATE_FONT_ACTION = 'brizy-create-font';
|
15 |
+
const AJAX_DELETE_FONT_ACTION = 'brizy-delete-font';
|
16 |
+
const AJAX_GET_FONTS_ACTION = 'brizy-get-fonts';
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @var Brizy_Admin_Fonts_Manager
|
20 |
+
*/
|
21 |
+
private $fontManager;
|
22 |
+
|
23 |
+
/**
|
24 |
+
* @return Brizy_Admin_Fonts_Api
|
25 |
+
*/
|
26 |
+
public static function _init() {
|
27 |
+
static $instance;
|
28 |
+
|
29 |
+
if ( ! $instance ) {
|
30 |
+
$instance = new self();
|
31 |
+
}
|
32 |
+
|
33 |
+
return $instance;
|
34 |
+
}
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Brizy_Admin_Fonts_Api constructor.
|
38 |
+
*/
|
39 |
+
public function __construct() {
|
40 |
+
|
41 |
+
$this->fontManager = new Brizy_Admin_Fonts_Manager();
|
42 |
+
parent::__construct();
|
43 |
+
}
|
44 |
+
|
45 |
+
/**
|
46 |
+
* @return null
|
47 |
+
*/
|
48 |
+
protected function getRequestNonce() {
|
49 |
+
return self::nonce;
|
50 |
+
}
|
51 |
+
|
52 |
+
protected function initializeApiActions() {
|
53 |
+
add_action( 'wp_ajax_' . self::AJAX_CREATE_FONT_ACTION, array( $this, 'actionCreateFont' ) );
|
54 |
+
add_action( 'wp_ajax_' . self::AJAX_DELETE_FONT_ACTION, array( $this, 'actionDeleteFont' ) );
|
55 |
+
add_action( 'wp_ajax_' . self::AJAX_GET_FONTS_ACTION, array( $this, 'actionGetFonts' ) );
|
56 |
+
}
|
57 |
+
|
58 |
+
public function actionGetFonts() {
|
59 |
+
|
60 |
+
$this->verifyNonce( self::nonce );
|
61 |
+
|
62 |
+
$manager = new Brizy_Admin_Fonts_Manager();
|
63 |
+
|
64 |
+
$this->success( $manager->getAllFonts() );
|
65 |
+
}
|
66 |
+
|
67 |
+
public function actionCreateFont() {
|
68 |
+
try {
|
69 |
+
|
70 |
+
$this->verifyNonce( self::nonce );
|
71 |
+
|
72 |
+
if ( ! ( $fontUidId = $this->param( 'id' ) ) ) {
|
73 |
+
$this->error( 400, 'Invalid font uid' );
|
74 |
+
}
|
75 |
+
|
76 |
+
if ( ! ( $family = $this->param( 'family' ) ) ) {
|
77 |
+
$this->error( 400, 'Invalid font family' );
|
78 |
+
}
|
79 |
+
|
80 |
+
if ( ! ( $fontType = $this->param( 'type' ) ) ) {
|
81 |
+
$fontType = 'uploaded';
|
82 |
+
}
|
83 |
+
|
84 |
+
if ( ! isset( $_FILES['fonts'] ) ) {
|
85 |
+
$this->error( 400, 'Invalid font files' );
|
86 |
+
}
|
87 |
+
|
88 |
+
$existingFont = $this->fontManager->getFontByFamily( $fontUidId, $family, $fontType );
|
89 |
+
|
90 |
+
if ( $existingFont ) {
|
91 |
+
$this->error( 400, 'This font family already exists.' );
|
92 |
+
}
|
93 |
+
|
94 |
+
try {
|
95 |
+
|
96 |
+
$files = array();
|
97 |
+
// create font attachments
|
98 |
+
foreach ( $_FILES['fonts']['name'] as $weight => $attachments ) {
|
99 |
+
foreach ( $attachments as $type => $file ) {
|
100 |
+
$files[ $weight ][ $type ] = array(
|
101 |
+
'name' => $_FILES['fonts']['name'][ $weight ][ $type ],
|
102 |
+
'type' => $_FILES['fonts']['type'][ $weight ][ $type ],
|
103 |
+
'tmp_name' => $_FILES['fonts']['tmp_name'][ $weight ][ $type ],
|
104 |
+
'error' => $_FILES['fonts']['error'][ $weight ][ $type ],
|
105 |
+
'size' => $_FILES['fonts']['size'][ $weight ][ $type ]
|
106 |
+
);
|
107 |
+
}
|
108 |
+
}
|
109 |
+
|
110 |
+
$fontPostId = $this->fontManager->createFont( $fontUidId, $family, $files, $fontType );
|
111 |
+
} catch ( Exception $e ) {
|
112 |
+
Brizy_Logger::instance()->debug( 'Create font ERROR', [ $e ] );
|
113 |
+
$this->error( 400, $e->getMessage() );
|
114 |
+
}
|
115 |
+
|
116 |
+
$fontUidId = get_post_meta( $fontPostId, 'brizy_post_uid', true );
|
117 |
+
|
118 |
+
$font = $this->fontManager->getFont( $fontUidId );
|
119 |
+
|
120 |
+
$this->success( $font );
|
121 |
+
|
122 |
+
} catch ( Exception $exception ) {
|
123 |
+
Brizy_Logger::instance()->critical( $exception->getMessage(), [ $exception ] );
|
124 |
+
$this->error( 400, $exception->getMessage() );
|
125 |
+
}
|
126 |
+
}
|
127 |
+
|
128 |
+
public function actionDeleteFont() {
|
129 |
+
|
130 |
+
$this->verifyNonce( self::nonce );
|
131 |
+
|
132 |
+
if ( ! ( $fontId = $this->param( 'id' ) ) ) {
|
133 |
+
$this->error( 400, 'Invalid font id' );
|
134 |
+
}
|
135 |
+
|
136 |
+
$manager = new Brizy_Admin_Fonts_Manager();
|
137 |
+
|
138 |
+
try {
|
139 |
+
$manager->deleteFont( $fontId );
|
140 |
+
} catch ( Exception $exception ) {
|
141 |
+
Brizy_Logger::instance()->critical( $exception->getMessage(), [ $exception ] );
|
142 |
+
$this->error( $exception->getCode(), $exception->getMessage() );
|
143 |
+
}
|
144 |
+
|
145 |
+
$this->success( [] );
|
146 |
+
}
|
147 |
+
}
|
admin/fonts/handler.php
ADDED
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
class Brizy_Admin_Fonts_Handler extends Brizy_Public_AbstractProxy {
|
5 |
+
const ENDPOINT = 'brizy-font';
|
6 |
+
|
7 |
+
/**
|
8 |
+
* @return array
|
9 |
+
*/
|
10 |
+
protected function get_endpoint_keys() {
|
11 |
+
return array( self::ENDPOINT );
|
12 |
+
}
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @return mixed|void
|
16 |
+
* @throws Twig_Error_Loader
|
17 |
+
* @throws Twig_Error_Runtime
|
18 |
+
* @throws Twig_Error_Syntax
|
19 |
+
*/
|
20 |
+
public function process_query() {
|
21 |
+
global $wp_query;
|
22 |
+
$vars = $wp_query->query_vars;
|
23 |
+
|
24 |
+
|
25 |
+
// Check if user is not querying API
|
26 |
+
if ( ! isset( $vars[ self::ENDPOINT ] ) || ! is_string( $vars[ self::ENDPOINT ] ) ) {
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
|
30 |
+
session_write_close();
|
31 |
+
|
32 |
+
$fontQueries = $this->explodeFont( $vars[ self::ENDPOINT ] );
|
33 |
+
|
34 |
+
if ( count( $fontQueries ) == 0 ) {
|
35 |
+
return;
|
36 |
+
}
|
37 |
+
|
38 |
+
$contexts = array();
|
39 |
+
|
40 |
+
foreach ( $fontQueries as $fontUid => $weights ) {
|
41 |
+
$contexts[ $fontUid ] = array();
|
42 |
+
$fontPost = $this->getFont( $fontUid );
|
43 |
+
|
44 |
+
if ( ! $fontPost ) {
|
45 |
+
continue;
|
46 |
+
}
|
47 |
+
|
48 |
+
foreach ( $weights as $weight ) {
|
49 |
+
$contexts[ $fontUid ][ $weight ] = $this->getFontWeightFileUrls( $fontPost->ID, $weight );
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
header( 'Content-Type: text/css' );
|
54 |
+
|
55 |
+
$twigEngine = Brizy_TwigEngine::instance( path_join( BRIZY_PLUGIN_PATH, "admin/fonts/views" ) );
|
56 |
+
$twigEngine->getEnvironment()
|
57 |
+
->addFilter( new Twig_SimpleFilter( 'fontStyle', function ( $weight ) {
|
58 |
+
$weight = preg_replace( "/\d+/", "", $weight );
|
59 |
+
|
60 |
+
if ( trim( $weight ) == "" ) {
|
61 |
+
return 'normal';
|
62 |
+
}
|
63 |
+
|
64 |
+
return $weight;
|
65 |
+
} ) );
|
66 |
+
$twigEngine->getEnvironment()
|
67 |
+
->addFilter( new Twig_SimpleFilter( 'fontType', function ( $type ) {
|
68 |
+
|
69 |
+
switch ( $type ) {
|
70 |
+
case 'ttf':
|
71 |
+
return 'truetype';
|
72 |
+
default:
|
73 |
+
return $type;
|
74 |
+
}
|
75 |
+
|
76 |
+
} ) );
|
77 |
+
$twigEngine->getEnvironment()->addFilter( new Twig_SimpleFilter( 'fontWeight', function ( $weight ) {
|
78 |
+
return trim( preg_replace( "/[^\d]+/", "", $weight ) );
|
79 |
+
} ) );
|
80 |
+
|
81 |
+
echo $twigEngine->render( 'fonts.css.twig', array(
|
82 |
+
'fonts' => $contexts
|
83 |
+
) );
|
84 |
+
|
85 |
+
exit;
|
86 |
+
}
|
87 |
+
|
88 |
+
/**
|
89 |
+
* @param $request
|
90 |
+
*
|
91 |
+
* @return array
|
92 |
+
*/
|
93 |
+
private function explodeFont( $request ) {
|
94 |
+
$fonts = explode( "|", $request );
|
95 |
+
|
96 |
+
$fontsParsed = array();
|
97 |
+
|
98 |
+
foreach ( $fonts as $fontRequest ) {
|
99 |
+
$font = explode( ':', $fontRequest );
|
100 |
+
$fontsParsed[ $font[0] ] = explode( ',', $font['1'] );
|
101 |
+
}
|
102 |
+
|
103 |
+
return $fontsParsed;
|
104 |
+
}
|
105 |
+
|
106 |
+
/**
|
107 |
+
* @param $uid
|
108 |
+
*
|
109 |
+
* @return mixed|null
|
110 |
+
*/
|
111 |
+
private function getFont( $uid ) {
|
112 |
+
$fonts = get_posts( [
|
113 |
+
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
114 |
+
'post_status' => 'publish',
|
115 |
+
'meta_query' => array(
|
116 |
+
array(
|
117 |
+
'key' => 'brizy_post_uid',
|
118 |
+
'value' => $uid
|
119 |
+
)
|
120 |
+
),
|
121 |
+
] );
|
122 |
+
|
123 |
+
if ( is_array( $fonts ) && isset( $fonts[0] ) ) {
|
124 |
+
return $fonts[0];
|
125 |
+
}
|
126 |
+
|
127 |
+
return null;
|
128 |
+
}
|
129 |
+
|
130 |
+
/**
|
131 |
+
* @param $fontId
|
132 |
+
* @param $weight
|
133 |
+
*
|
134 |
+
* @return array|bool
|
135 |
+
*/
|
136 |
+
function getFontWeightFileUrls( $fontId, $weight ) {
|
137 |
+
|
138 |
+
$args = array(
|
139 |
+
'meta_query' => array(
|
140 |
+
array(
|
141 |
+
'key' => 'brizy-font-weight',
|
142 |
+
'value' => $weight
|
143 |
+
)
|
144 |
+
),
|
145 |
+
'post_type' => 'attachment',
|
146 |
+
'post_parent' => $fontId
|
147 |
+
);
|
148 |
+
|
149 |
+
$posts = get_posts( $args );
|
150 |
+
|
151 |
+
|
152 |
+
if ( ! $posts || is_wp_error( $posts ) ) {
|
153 |
+
return false;
|
154 |
+
}
|
155 |
+
|
156 |
+
$result = array();
|
157 |
+
|
158 |
+
foreach ( $posts as $post ) {
|
159 |
+
$type = get_post_meta( $post->ID, 'brizy-font-file-type', true );
|
160 |
+
$result[ $type ] = wp_get_attachment_url( $post->ID );
|
161 |
+
}
|
162 |
+
|
163 |
+
return $result;
|
164 |
+
}
|
165 |
+
}
|
admin/fonts/main.php
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Created by PhpStorm.
|
4 |
+
* User: alex
|
5 |
+
* Date: 1/11/19
|
6 |
+
* Time: 10:59 AM
|
7 |
+
*/
|
8 |
+
|
9 |
+
|
10 |
+
class Brizy_Admin_Fonts_Main {
|
11 |
+
|
12 |
+
const CP_FONT = 'brizy-font';
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @return Brizy_Admin_Fonts_Main
|
16 |
+
*/
|
17 |
+
public static function _init() {
|
18 |
+
static $instance;
|
19 |
+
|
20 |
+
if ( ! $instance ) {
|
21 |
+
$instance = new self();
|
22 |
+
}
|
23 |
+
|
24 |
+
return $instance;
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* BrizyPro_Admin_Popups constructor.
|
29 |
+
*/
|
30 |
+
public function __construct() {
|
31 |
+
add_action( 'wp_loaded', array( $this, 'initializeActions' ) );
|
32 |
+
add_filter( 'upload_mimes', array( $this, 'addFOntTypes' ), 1, 1 );
|
33 |
+
|
34 |
+
$urlBuilder = new Brizy_Editor_UrlBuilder();
|
35 |
+
$handler = new Brizy_Admin_Fonts_Handler( $urlBuilder, null );
|
36 |
+
}
|
37 |
+
|
38 |
+
/**
|
39 |
+
*
|
40 |
+
*/
|
41 |
+
public function initializeActions() {
|
42 |
+
Brizy_Admin_Fonts_Api::_init();
|
43 |
+
}
|
44 |
+
|
45 |
+
public function addFOntTypes( $mime_types ) {
|
46 |
+
|
47 |
+
$mime_types['ttf'] = 'application/x-font-ttf';
|
48 |
+
$mime_types['eot'] = 'application/vnd.ms-fontobject';
|
49 |
+
$mime_types['woff'] = 'application/x-font-woff';
|
50 |
+
$mime_types['woff2'] = 'application/x-font-woff2';
|
51 |
+
|
52 |
+
return $mime_types;
|
53 |
+
}
|
54 |
+
|
55 |
+
|
56 |
+
static public function registerCustomPosts() {
|
57 |
+
|
58 |
+
$labels = array(
|
59 |
+
'name' => _x( 'Fonts', 'post type general name' ),
|
60 |
+
);
|
61 |
+
|
62 |
+
register_post_type( self::CP_FONT,
|
63 |
+
array(
|
64 |
+
'labels' => $labels,
|
65 |
+
'public' => false,
|
66 |
+
'has_archive' => false,
|
67 |
+
'description' => __( 'Brizy font.', 'brizy' ),
|
68 |
+
'publicly_queryable' => false,
|
69 |
+
'show_ui' => false,
|
70 |
+
'show_in_menu' => false,
|
71 |
+
'query_var' => false,
|
72 |
+
'capability_type' => 'page',
|
73 |
+
'hierarchical' => false,
|
74 |
+
'show_in_rest' => false,
|
75 |
+
'exclude_from_search' => true,
|
76 |
+
'supports' => array( 'title', 'page-attributes' )
|
77 |
+
)
|
78 |
+
);
|
79 |
+
}
|
80 |
+
}
|
admin/fonts/manager.php
ADDED
@@ -0,0 +1,277 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
class Brizy_Admin_Fonts_Manager {
|
5 |
+
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Get all fonts as arrays
|
9 |
+
*
|
10 |
+
* @return array
|
11 |
+
*/
|
12 |
+
public function getAllFonts() {
|
13 |
+
global $wpdb;
|
14 |
+
|
15 |
+
$fonts = get_posts( array(
|
16 |
+
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
17 |
+
'post_status' => 'publish',
|
18 |
+
'numberposts' => - 1,
|
19 |
+
'orderby' => 'ID',
|
20 |
+
'order' => 'ASC',
|
21 |
+
) );
|
22 |
+
|
23 |
+
$result = array();
|
24 |
+
|
25 |
+
foreach ( $fonts as $font ) {
|
26 |
+
|
27 |
+
$weights = $wpdb->get_results( $wpdb->prepare(
|
28 |
+
"SELECT m.meta_value FROM {$wpdb->posts} p
|
29 |
+
JOIN {$wpdb->postmeta} m ON m.post_id=p.ID && m.meta_key='brizy-font-weight'
|
30 |
+
WHERE p.post_parent=%d
|
31 |
+
",
|
32 |
+
array( $font->ID ) ), ARRAY_A
|
33 |
+
);
|
34 |
+
|
35 |
+
$result[] = array(
|
36 |
+
'id' => get_post_meta( $font->ID, 'brizy_post_uid', true ),
|
37 |
+
'family' => $font->post_title,
|
38 |
+
'type' => get_post_meta( $font->ID, 'brizy-font-type', true ),
|
39 |
+
'weights' => array_map( function ( $v ) {
|
40 |
+
return $v['meta_value'];
|
41 |
+
}, $weights )
|
42 |
+
);
|
43 |
+
}
|
44 |
+
|
45 |
+
return $result;
|
46 |
+
}
|
47 |
+
|
48 |
+
/**
|
49 |
+
* @param $uid
|
50 |
+
*
|
51 |
+
* @return array|null
|
52 |
+
*/
|
53 |
+
public function getFont( $uid ) {
|
54 |
+
|
55 |
+
global $wpdb;
|
56 |
+
|
57 |
+
$fonts = get_posts( array(
|
58 |
+
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
59 |
+
'post_status' => 'publish',
|
60 |
+
'meta_key' => 'brizy_post_uid',
|
61 |
+
'meta_value' => $uid,
|
62 |
+
'numberposts' => - 1,
|
63 |
+
'orderby' => 'ID',
|
64 |
+
'order' => 'DESC',
|
65 |
+
) );
|
66 |
+
|
67 |
+
if ( isset( $fonts[0] ) ) {
|
68 |
+
$font = $fonts[0];
|
69 |
+
} else {
|
70 |
+
return null;
|
71 |
+
}
|
72 |
+
|
73 |
+
return $this->getFontReturnData( $font );
|
74 |
+
}
|
75 |
+
|
76 |
+
public function getFontByFamily( $uid, $family, $type ) {
|
77 |
+
|
78 |
+
$fonts = get_posts( array(
|
79 |
+
'title' => $family,
|
80 |
+
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
81 |
+
'post_status' => 'publish',
|
82 |
+
'meta_key' => 'brizy-font-type',
|
83 |
+
'meta_value' => $type,
|
84 |
+
'numberposts' => - 1,
|
85 |
+
'orderby' => 'ID',
|
86 |
+
'order' => 'DESC',
|
87 |
+
) );
|
88 |
+
|
89 |
+
if ( isset( $fonts[0] ) ) {
|
90 |
+
$font = $fonts[0];
|
91 |
+
if ( $uid == get_post_meta( $font->ID, 'brizy_post_uid', true ) ) {
|
92 |
+
return $this->getFontReturnData( $font );
|
93 |
+
}
|
94 |
+
|
95 |
+
}
|
96 |
+
|
97 |
+
return null;
|
98 |
+
}
|
99 |
+
|
100 |
+
/**
|
101 |
+
* @param $uid
|
102 |
+
* @param $family
|
103 |
+
* @param $fontWeights
|
104 |
+
* @param $fontType
|
105 |
+
*
|
106 |
+
* @return int
|
107 |
+
* @throws Exception
|
108 |
+
*/
|
109 |
+
public function createFont( $uid, $family, $fontWeights, $fontType ) {
|
110 |
+
global $wpdb;
|
111 |
+
|
112 |
+
if ( $uid == '' ) {
|
113 |
+
throw new Exception( 'Invalid font uid' );
|
114 |
+
}
|
115 |
+
if ( $family == '' ) {
|
116 |
+
throw new Exception( 'Invalid font family' );
|
117 |
+
}
|
118 |
+
|
119 |
+
if ( $fontType == '' ) {
|
120 |
+
throw new Exception( 'Invalid font type' );
|
121 |
+
}
|
122 |
+
|
123 |
+
if ( ! is_array( $fontWeights ) || empty( $fontWeights ) ) {
|
124 |
+
throw new Exception( 'Invalid font weights' );
|
125 |
+
}
|
126 |
+
|
127 |
+
$font = $this->getFont( $uid );
|
128 |
+
|
129 |
+
if ( $font ) {
|
130 |
+
throw new Exception( 'This font already exists' );
|
131 |
+
}
|
132 |
+
|
133 |
+
// Need to require these files
|
134 |
+
if ( ! function_exists( 'media_handle_upload' ) ) {
|
135 |
+
require_once( ABSPATH . "wp-admin" . '/includes/image.php' );
|
136 |
+
require_once( ABSPATH . "wp-admin" . '/includes/file.php' );
|
137 |
+
require_once( ABSPATH . "wp-admin" . '/includes/media.php' );
|
138 |
+
}
|
139 |
+
|
140 |
+
try {
|
141 |
+
$wpdb->query( 'START TRANSACTION' );
|
142 |
+
// create font post
|
143 |
+
$fontId = wp_insert_post( [
|
144 |
+
'post_title' => $family,
|
145 |
+
'post_name' => $family,
|
146 |
+
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
147 |
+
'post_status' => 'publish',
|
148 |
+
|
149 |
+
] );
|
150 |
+
|
151 |
+
if ( ! $fontId || is_wp_error( $fontId ) ) {
|
152 |
+
throw new Exception( 'Unable to create font' );
|
153 |
+
}
|
154 |
+
|
155 |
+
update_post_meta( $fontId, 'brizy_post_uid', $uid );
|
156 |
+
update_post_meta( $fontId, 'brizy-font-type', $fontType );
|
157 |
+
|
158 |
+
// create font attachments
|
159 |
+
foreach ( $fontWeights as $weight => $weightType ) {
|
160 |
+
|
161 |
+
if ( count( $weightType ) == 0 ) {
|
162 |
+
throw new Exception( 'No font files provided' );
|
163 |
+
}
|
164 |
+
|
165 |
+
foreach ( $weightType as $type => $file ) {
|
166 |
+
|
167 |
+
$id = media_handle_sideload( $file, $fontId, "Attached font file" );
|
168 |
+
|
169 |
+
if ( ! $id || is_wp_error( $id ) ) {
|
170 |
+
Brizy_Logger::instance()->critical( 'Unable to handle font sideload', [ $id ] );
|
171 |
+
throw new Exception( 'Unable to handle font sideload' );
|
172 |
+
}
|
173 |
+
|
174 |
+
update_post_meta( $id, 'brizy-font-weight', $weight );
|
175 |
+
update_post_meta( $id, 'brizy-font-file-type', $type );
|
176 |
+
}
|
177 |
+
}
|
178 |
+
|
179 |
+
$wpdb->query( 'COMMIT' );
|
180 |
+
|
181 |
+
return (int) $fontId;
|
182 |
+
|
183 |
+
} catch ( Exception $e ) {
|
184 |
+
$wpdb->query( 'ROLLBACK' );
|
185 |
+
Brizy_Logger::instance()->critical( 'Create font ERROR', [ $e->getMessage() ] );
|
186 |
+
throw new Exception( 'Unable to create font' );
|
187 |
+
}
|
188 |
+
}
|
189 |
+
|
190 |
+
/**
|
191 |
+
* @param $fontUid
|
192 |
+
*
|
193 |
+
* @return bool
|
194 |
+
* @throws Exception
|
195 |
+
*/
|
196 |
+
public function deleteFont( $fontUid ) {
|
197 |
+
global $wpdb;
|
198 |
+
|
199 |
+
if ( ! $fontUid ) {
|
200 |
+
throw new Exception( 'Invalid font uid' );
|
201 |
+
}
|
202 |
+
|
203 |
+
$font = get_posts( [
|
204 |
+
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
205 |
+
'meta_query' => array(
|
206 |
+
array(
|
207 |
+
'key' => 'brizy_post_uid',
|
208 |
+
'value' => $fontUid
|
209 |
+
)
|
210 |
+
),
|
211 |
+
'posts_per_page' => - 1,
|
212 |
+
'orderby' => 'ID',
|
213 |
+
'order' => 'DESC',
|
214 |
+
] );
|
215 |
+
|
216 |
+
if ( count( $font ) > 0 ) {
|
217 |
+
$font = $font[0];
|
218 |
+
} else {
|
219 |
+
$font = null;
|
220 |
+
}
|
221 |
+
|
222 |
+
if ( ! $font ) {
|
223 |
+
throw new Exception( 'Font not found', 404 );
|
224 |
+
}
|
225 |
+
|
226 |
+
|
227 |
+
try {
|
228 |
+
$wpdb->query( 'START TRANSACTION ' );
|
229 |
+
// delete all attachments first
|
230 |
+
|
231 |
+
$attachments = get_attached_media( '', $font->ID );
|
232 |
+
|
233 |
+
foreach ( $attachments as $attachment ) {
|
234 |
+
wp_delete_attachment( $attachment->ID, 'true' );
|
235 |
+
}
|
236 |
+
|
237 |
+
// delete font
|
238 |
+
wp_delete_post( $font->ID );
|
239 |
+
|
240 |
+
$wpdb->query( 'COMMIT' );
|
241 |
+
|
242 |
+
} catch ( Exception $e ) {
|
243 |
+
$wpdb->query( 'ROLLBACK' );
|
244 |
+
Brizy_Logger::instance()->debug( 'Delete font ERROR', [ $e ] );
|
245 |
+
throw new Exception( 'Failed to delete font', 400 );
|
246 |
+
}
|
247 |
+
|
248 |
+
return true;
|
249 |
+
}
|
250 |
+
|
251 |
+
/**
|
252 |
+
* @param wpdb $wpdb
|
253 |
+
* @param $font
|
254 |
+
*
|
255 |
+
* @return array
|
256 |
+
*/
|
257 |
+
private function getFontReturnData( $font ) {
|
258 |
+
global $wpdb;
|
259 |
+
|
260 |
+
$weights = $wpdb->get_results( $wpdb->prepare(
|
261 |
+
"SELECT DISTINCT m.meta_value FROM {$wpdb->posts} p
|
262 |
+
JOIN {$wpdb->postmeta} m ON m.post_id=p.ID && p.post_parent=%d && m.meta_key='brizy-font-weight'
|
263 |
+
",
|
264 |
+
array( $font->ID ) ), ARRAY_A
|
265 |
+
);
|
266 |
+
|
267 |
+
|
268 |
+
return array(
|
269 |
+
'id' => get_post_meta( $font->ID, 'brizy_post_uid', true ),
|
270 |
+
'family' => $font->post_title,
|
271 |
+
'type' => get_post_meta( $font->ID, 'brizy-font-type', true ),
|
272 |
+
'weights' => array_map( function ( $v ) {
|
273 |
+
return $v['meta_value'];
|
274 |
+
}, $weights )
|
275 |
+
);
|
276 |
+
}
|
277 |
+
}
|
admin/fonts/views/fonts.css.twig
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{% for family,font in fonts %}
|
2 |
+
/* {{ family }} */
|
3 |
+
{% for weight,fontData in font %}
|
4 |
+
{% for type,font_url in fontData %}
|
5 |
+
@font-face {
|
6 |
+
font-family: '{{ family }}';
|
7 |
+
font-style: {{ weight|fontStyle }};
|
8 |
+
font-weight: {{ weight|fontWeight }};
|
9 |
+
src: local('{{ family }}'), url({{ font_url }}) format('{{ type | fontType }}');
|
10 |
+
}
|
11 |
+
{% endfor %}
|
12 |
+
{% endfor %}
|
13 |
+
{% endfor %}
|
admin/form-entries.php
CHANGED
@@ -205,7 +205,7 @@ class Brizy_Admin_FormEntries {
|
|
205 |
return $fields;
|
206 |
}
|
207 |
|
208 |
-
static public function
|
209 |
|
210 |
$labels = array(
|
211 |
'name' => _x( 'Leads', 'post type general name' ),
|
205 |
return $fields;
|
206 |
}
|
207 |
|
208 |
+
static public function registerCustomPost() {
|
209 |
|
210 |
$labels = array(
|
211 |
'name' => _x( 'Leads', 'post type general name' ),
|
admin/main.php
CHANGED
@@ -69,10 +69,12 @@ class Brizy_Admin_Main {
|
|
69 |
add_filter( 'wp_import_existing_post', array( $this, 'handleNewProjectPostImport' ), 10, 2 );
|
70 |
add_filter( 'wp_import_post_meta', array( $this, 'handleNewProjectMetaImport' ), 10, 3 );
|
71 |
|
|
|
|
|
|
|
72 |
add_filter( 'save_post', array( $this, 'save_focal_point' ), 10, 2 );
|
73 |
|
74 |
add_filter( 'admin_post_thumbnail_html', array( $this, 'addFocalPoint' ), 10, 3 );
|
75 |
-
|
76 |
}
|
77 |
|
78 |
public function addFocalPoint( $content, $postId, $thumbId ) {
|
@@ -118,7 +120,6 @@ class Brizy_Admin_Main {
|
|
118 |
return;
|
119 |
}
|
120 |
|
121 |
-
|
122 |
$bpost = Brizy_Editor_Post::get( $post );
|
123 |
|
124 |
$urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get(), $bpost->get_parent_id() );
|
@@ -283,21 +284,24 @@ class Brizy_Admin_Main {
|
|
283 |
);
|
284 |
|
285 |
$get_post_focal = get_post_meta( get_the_ID(), 'brizy_attachment_focal_point', true );
|
|
|
286 |
wp_localize_script(
|
287 |
Brizy_Editor::get()->get_slug() . '-admin-js',
|
288 |
'Brizy_Admin_Data',
|
289 |
array(
|
290 |
-
'url'
|
291 |
-
'pluginUrl'
|
292 |
-
'ruleApiHash'
|
293 |
-
'id'
|
294 |
-
'page'
|
295 |
'focalPoint' => $get_post_focal ? $get_post_focal : array( 'x' => 50, 'y' => 50 )
|
296 |
),
|
297 |
-
'actions'
|
298 |
'enable' => '_brizy_admin_editor_enable',
|
299 |
'disable' => '_brizy_admin_editor_disable',
|
300 |
-
)
|
|
|
|
|
301 |
)
|
302 |
);
|
303 |
}
|
@@ -497,12 +501,43 @@ class Brizy_Admin_Main {
|
|
497 |
exit;
|
498 |
}
|
499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
public function handleNewProjectPostImport( $existing, $post ) {
|
501 |
|
502 |
if ( $post['post_type'] == Brizy_Editor_Project::BRIZY_PROJECT ) {
|
503 |
|
504 |
$currentProject = Brizy_Editor_Project::get();
|
505 |
-
$currentProjectGlobals = $currentProject->
|
506 |
$currentProjectPostId = $currentProject->getWpPost()->ID;
|
507 |
$currentProjectStorage = Brizy_Editor_Storage_Project::instance( $currentProjectPostId );
|
508 |
|
@@ -519,57 +554,19 @@ class Brizy_Admin_Main {
|
|
519 |
// force import if the project data is not found in current project.
|
520 |
return 0;
|
521 |
}
|
|
|
522 |
|
523 |
-
$
|
524 |
-
|
525 |
-
// merge savedBlocks
|
526 |
-
$currentProjectGlobals->project->savedBlocks = array_merge(
|
527 |
-
(array) ( isset( $currentProjectGlobals->project->savedBlocks ) ? $currentProjectGlobals->project->savedBlocks : array() ),
|
528 |
-
(array) ( isset( $projectData->project->savedBlocks ) ? $projectData->project->savedBlocks : array() ) );
|
529 |
-
|
530 |
-
// merge global blocks
|
531 |
-
$currentProjectGlobals->project->globalBlocks = (object) array_merge(
|
532 |
-
(array) ( isset( $currentProjectGlobals->project->globalBlocks ) ? $currentProjectGlobals->project->globalBlocks : array() ),
|
533 |
-
(array) ( isset( $projectData->project->globalBlocks ) ? $projectData->project->globalBlocks : array() )
|
534 |
-
);
|
535 |
-
|
536 |
-
// MERGE STYLES
|
537 |
-
// 1. merge extra fonts
|
538 |
-
$currentProjectGlobals->project->extraFonts = array_unique(
|
539 |
-
array_merge(
|
540 |
-
(array) ( isset( $currentProjectGlobals->project->extraFonts ) ? $currentProjectGlobals->project->extraFonts : array() ),
|
541 |
-
(array) ( isset( $projectData->project->extraFonts ) ? $projectData->project->extraFonts : array() )
|
542 |
-
)
|
543 |
-
);
|
544 |
-
// 2. merge extra fonts styles
|
545 |
-
|
546 |
-
if ( ! isset( $currentProjectGlobals->project->styles ) ) {
|
547 |
-
$currentProjectGlobals->project->styles = (object) array( '_extraFontStyles' => array() );
|
548 |
-
}
|
549 |
-
|
550 |
-
$currentProjectGlobals->project->styles->_extraFontStyles = array_merge(
|
551 |
-
(array) ( isset( $currentProjectGlobals->project->styles->_extraFontStyles ) ? $currentProjectGlobals->project->styles->_extraFontStyles : array() ),
|
552 |
-
(array) ( isset( $projectData->project->styles->_extraFontStyles ) ? $projectData->project->styles->_extraFontStyles : array() )
|
553 |
-
);
|
554 |
-
|
555 |
-
|
556 |
-
$currentProjectGlobals->project->styles->default = $projectData->project->styles->default;
|
557 |
|
558 |
-
|
559 |
-
$selected = $projectData->project->styles->_selected;
|
560 |
-
$currentProjectGlobals->project->styles->_selected = $selected;
|
561 |
-
if ( $selected ) {
|
562 |
-
$currentProjectGlobals->project->styles->$selected = $projectData->project->styles->$selected;
|
563 |
-
}
|
564 |
-
}
|
565 |
|
566 |
// create project data backup
|
567 |
$data = $currentProjectStorage->get_storage();
|
568 |
update_post_meta( $currentProjectPostId, 'brizy-project-import-backup-' . md5( time() ), $data );
|
569 |
//---------------------------------------------------------
|
570 |
|
571 |
-
$currentProject->
|
572 |
-
|
573 |
return $currentProjectPostId;
|
574 |
}
|
575 |
|
@@ -584,19 +581,10 @@ class Brizy_Admin_Main {
|
|
584 |
return $postMeta;
|
585 |
}
|
586 |
|
|
|
|
|
|
|
587 |
public function global_data_updated() {
|
588 |
-
|
589 |
-
$posts = Brizy_Editor_Post::get_all_brizy_posts();
|
590 |
-
|
591 |
-
// we need to trigger a post update action to make sure the cache plugins will update clear the cache
|
592 |
-
remove_action( 'save_post', array( Brizy_Admin_Main::instance(), 'compile_post_action' ) );
|
593 |
-
// mark all post to be compiled on next view
|
594 |
-
foreach ( $posts as $bpost ) {
|
595 |
-
if ( ! $bpost->get_needs_compile() ) {
|
596 |
-
$bpost->set_needs_compile( true );
|
597 |
-
$bpost->save();
|
598 |
-
}
|
599 |
-
// wp_update_post( array( 'ID' => $bpost->get_id() ) );
|
600 |
-
}
|
601 |
}
|
602 |
}
|
69 |
add_filter( 'wp_import_existing_post', array( $this, 'handleNewProjectPostImport' ), 10, 2 );
|
70 |
add_filter( 'wp_import_post_meta', array( $this, 'handleNewProjectMetaImport' ), 10, 3 );
|
71 |
|
72 |
+
add_filter( 'wp_import_posts', array( $this, 'handlePostsImport' ) );
|
73 |
+
|
74 |
+
|
75 |
add_filter( 'save_post', array( $this, 'save_focal_point' ), 10, 2 );
|
76 |
|
77 |
add_filter( 'admin_post_thumbnail_html', array( $this, 'addFocalPoint' ), 10, 3 );
|
|
|
78 |
}
|
79 |
|
80 |
public function addFocalPoint( $content, $postId, $thumbId ) {
|
120 |
return;
|
121 |
}
|
122 |
|
|
|
123 |
$bpost = Brizy_Editor_Post::get( $post );
|
124 |
|
125 |
$urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get(), $bpost->get_parent_id() );
|
284 |
);
|
285 |
|
286 |
$get_post_focal = get_post_meta( get_the_ID(), 'brizy_attachment_focal_point', true );
|
287 |
+
|
288 |
wp_localize_script(
|
289 |
Brizy_Editor::get()->get_slug() . '-admin-js',
|
290 |
'Brizy_Admin_Data',
|
291 |
array(
|
292 |
+
'url' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
|
293 |
+
'pluginUrl' => BRIZY_PLUGIN_URL,
|
294 |
+
'ruleApiHash' => wp_create_nonce( Brizy_Admin_Rules_Api::nonce ),
|
295 |
+
'id' => get_the_ID(),
|
296 |
+
'page' => array(
|
297 |
'focalPoint' => $get_post_focal ? $get_post_focal : array( 'x' => 50, 'y' => 50 )
|
298 |
),
|
299 |
+
'actions' => array(
|
300 |
'enable' => '_brizy_admin_editor_enable',
|
301 |
'disable' => '_brizy_admin_editor_disable',
|
302 |
+
),
|
303 |
+
'editorVersion' => BRIZY_EDITOR_VERSION,
|
304 |
+
'pluginVersion' => BRIZY_VERSION,
|
305 |
)
|
306 |
);
|
307 |
}
|
501 |
exit;
|
502 |
}
|
503 |
|
504 |
+
public function handlePostsImport( $posts ) {
|
505 |
+
|
506 |
+
$incompatibleBrizyPosts = array();
|
507 |
+
|
508 |
+
foreach ( $posts as $i => $post ) {
|
509 |
+
if ( ! isset( $post['postmeta'] ) ) {
|
510 |
+
continue;
|
511 |
+
}
|
512 |
+
|
513 |
+
foreach ( $post['postmeta'] as $meta ) {
|
514 |
+
if ( $meta['key'] == 'brizy-post-plugin-version' && ! Brizy_Editor_Data_ProjectMergeStrategy::checkVersionCompatibility( $meta['value'] ) ) {
|
515 |
+
$incompatibleBrizyPosts[] = array(
|
516 |
+
'post_title' => $post['post_title'],
|
517 |
+
'version' => $meta['value']
|
518 |
+
);
|
519 |
+
unset( $posts[ $i ] );
|
520 |
+
}
|
521 |
+
}
|
522 |
+
}
|
523 |
+
|
524 |
+
if ( count( $incompatibleBrizyPosts ) ) {
|
525 |
+
foreach ( $incompatibleBrizyPosts as $brizy_post ) {
|
526 |
+
printf( __( 'Importing Brizy post “%s” will be skipped due to incompatible version: %s ', 'brizy' ),
|
527 |
+
esc_html( $brizy_post['post_title'] ), esc_html( $brizy_post['version'] ) );
|
528 |
+
echo '<br />';
|
529 |
+
}
|
530 |
+
}
|
531 |
+
|
532 |
+
return $posts;
|
533 |
+
}
|
534 |
+
|
535 |
public function handleNewProjectPostImport( $existing, $post ) {
|
536 |
|
537 |
if ( $post['post_type'] == Brizy_Editor_Project::BRIZY_PROJECT ) {
|
538 |
|
539 |
$currentProject = Brizy_Editor_Project::get();
|
540 |
+
$currentProjectGlobals = $currentProject->getDecodedData();
|
541 |
$currentProjectPostId = $currentProject->getWpPost()->ID;
|
542 |
$currentProjectStorage = Brizy_Editor_Storage_Project::instance( $currentProjectPostId );
|
543 |
|
554 |
// force import if the project data is not found in current project.
|
555 |
return 0;
|
556 |
}
|
557 |
+
$projectData = json_decode( base64_decode( $projectMeta['data'] ) );
|
558 |
|
559 |
+
$mergeStrategy = Brizy_Editor_Data_ProjectMergeStrategy::getMergerInstance( $projectMeta['pluginVersion'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
|
561 |
+
$mergedData = $mergeStrategy->merge( $currentProjectGlobals, $projectData );
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
|
563 |
// create project data backup
|
564 |
$data = $currentProjectStorage->get_storage();
|
565 |
update_post_meta( $currentProjectPostId, 'brizy-project-import-backup-' . md5( time() ), $data );
|
566 |
//---------------------------------------------------------
|
567 |
|
568 |
+
$currentProject->setDataAsJson( json_encode( $mergedData ) );
|
569 |
+
$currentProject->save();
|
570 |
return $currentProjectPostId;
|
571 |
}
|
572 |
|
581 |
return $postMeta;
|
582 |
}
|
583 |
|
584 |
+
/**
|
585 |
+
* Mark all post to be compiled next time
|
586 |
+
*/
|
587 |
public function global_data_updated() {
|
588 |
+
Brizy_Editor_Post::mark_all_for_compilation();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
}
|
590 |
}
|
admin/migrations.php
CHANGED
@@ -108,7 +108,6 @@ class Brizy_Admin_Migrations {
|
|
108 |
* @param string $version
|
109 |
*/
|
110 |
private function upgradeTo( $version ) {
|
111 |
-
|
112 |
global $wpdb;
|
113 |
|
114 |
wp_raise_memory_limit( 'image' );
|
@@ -139,24 +138,48 @@ class Brizy_Admin_Migrations {
|
|
139 |
} );
|
140 |
}
|
141 |
|
142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
try {
|
145 |
-
|
|
|
146 |
|
147 |
-
|
148 |
|
149 |
-
|
150 |
|
151 |
-
|
152 |
|
153 |
-
|
154 |
|
155 |
-
|
156 |
|
|
|
|
|
157 |
} catch ( Exception $e ) {
|
158 |
$wpdb->query( 'ROLLBACK' );
|
159 |
-
Brizy_Logger::instance()->debug( 'Migration process ERROR', [$e] );
|
|
|
160 |
}
|
161 |
}
|
162 |
|
108 |
* @param string $version
|
109 |
*/
|
110 |
private function upgradeTo( $version ) {
|
|
|
111 |
global $wpdb;
|
112 |
|
113 |
wp_raise_memory_limit( 'image' );
|
138 |
} );
|
139 |
}
|
140 |
|
141 |
+
$migrations = array();
|
142 |
+
|
143 |
+
foreach ( $migrationsToRun as $m ) {
|
144 |
+
$migrations[ $m->getVersion() ][] = $m;
|
145 |
+
}
|
146 |
+
|
147 |
+
foreach ( $migrations as $v => $m ) {
|
148 |
+
//prioritise migrations
|
149 |
+
usort( $migrations[ $v ], function ( $a, $b ) {
|
150 |
+
$p1 = $a->getPriority();
|
151 |
+
$p2 = $b->getPriority();
|
152 |
|
153 |
+
if ( $p1 == $p2 ) {
|
154 |
+
return 0;
|
155 |
+
}
|
156 |
+
|
157 |
+
return ( $p1 < $p2 ) ? - 1 : 1;
|
158 |
+
} );
|
159 |
+
}
|
160 |
+
|
161 |
+
// run migrations
|
162 |
+
foreach ( $migrations as $versionMigrations ) {
|
163 |
try {
|
164 |
+
foreach ( $versionMigrations as $migration ) {
|
165 |
+
|
166 |
|
167 |
+
$wpdb->query( 'START TRANSACTION ' );
|
168 |
|
169 |
+
$migrationClass = get_class( $migration );
|
170 |
|
171 |
+
$migration->execute();
|
172 |
|
173 |
+
Brizy_Logger::instance()->debug( 'Run migration: ' . $migrationClass, array( $migrationClass ) );
|
174 |
|
175 |
+
$this->globalStorage->addMigration( $migration )->save();
|
176 |
|
177 |
+
$wpdb->query( 'COMMIT' );
|
178 |
+
}
|
179 |
} catch ( Exception $e ) {
|
180 |
$wpdb->query( 'ROLLBACK' );
|
181 |
+
Brizy_Logger::instance()->debug( 'Migration process ERROR', [ $e ] );
|
182 |
+
break;
|
183 |
}
|
184 |
}
|
185 |
|
admin/migrations/block-post-title-migration.php
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Admin_Migrations_BlockPostTitleMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
+
|
5 |
+
/**
|
6 |
+
* @return int|mixed
|
7 |
+
*/
|
8 |
+
public function getPriority() {
|
9 |
+
return 0;
|
10 |
+
}
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Return the version
|
14 |
+
*
|
15 |
+
* @return mixed
|
16 |
+
*/
|
17 |
+
public function getVersion() {
|
18 |
+
return '1.0.82';
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @return int|mixed|WP_Error
|
23 |
+
* @throws Brizy_Editor_Exceptions_NotFound
|
24 |
+
*/
|
25 |
+
public function execute() {
|
26 |
+
|
27 |
+
try {
|
28 |
+
global $wpdb;
|
29 |
+
$invalidBlocks = $wpdb->get_results(
|
30 |
+
"SELECT p.ID, p.post_title FROM {$wpdb->posts} p
|
31 |
+
WHERE p.post_type='brizy-global-block' OR p.post_type='brizy-saved-block'" );
|
32 |
+
|
33 |
+
if ( is_array( $invalidBlocks ) ) {
|
34 |
+
foreach ( $invalidBlocks as $id => $block ) {
|
35 |
+
if ( $block->post_title != '' ) {
|
36 |
+
continue;
|
37 |
+
}
|
38 |
+
|
39 |
+
$name = md5( time() . $id );
|
40 |
+
$wpdb->query(
|
41 |
+
$wpdb->prepare( "UPDATE {$wpdb->posts}
|
42 |
+
SET `post_title` = %s, `post_name` = %s
|
43 |
+
WHERE ID=%d ", array( $name, $name, $block->ID ) )
|
44 |
+
);
|
45 |
+
}
|
46 |
+
}
|
47 |
+
} catch ( Exception $e ) {
|
48 |
+
return;
|
49 |
+
}
|
50 |
+
}
|
51 |
+
}
|
admin/migrations/clean-invalid-blocks-migration.php
CHANGED
@@ -16,6 +16,9 @@ class Brizy_Admin_Migrations_CleanInvalidBlocksMigration implements Brizy_Admin_
|
|
16 |
*/
|
17 |
public function execute() {
|
18 |
|
|
|
|
|
|
|
19 |
try {
|
20 |
global $wpdb;
|
21 |
|
@@ -36,4 +39,8 @@ class Brizy_Admin_Migrations_CleanInvalidBlocksMigration implements Brizy_Admin_
|
|
36 |
}
|
37 |
}
|
38 |
|
|
|
|
|
|
|
|
|
39 |
}
|
16 |
*/
|
17 |
public function execute() {
|
18 |
|
19 |
+
// disable this migration because of suspected data loss
|
20 |
+
return;
|
21 |
+
|
22 |
try {
|
23 |
global $wpdb;
|
24 |
|
39 |
}
|
40 |
}
|
41 |
|
42 |
+
public function getPriority() {
|
43 |
+
return 0;
|
44 |
+
}
|
45 |
+
|
46 |
}
|
admin/migrations/form-serialization-migration.php
CHANGED
@@ -2,6 +2,13 @@
|
|
2 |
|
3 |
class Brizy_Admin_Migrations_FormSerializationMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Return the version
|
7 |
*
|
2 |
|
3 |
class Brizy_Admin_Migrations_FormSerializationMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
5 |
+
/**
|
6 |
+
* @return int|mixed
|
7 |
+
*/
|
8 |
+
public function getPriority() {
|
9 |
+
return 0;
|
10 |
+
}
|
11 |
+
|
12 |
/**
|
13 |
* Return the version
|
14 |
*
|
admin/migrations/global-blocks-to-custom-post-migration.php
CHANGED
@@ -2,6 +2,15 @@
|
|
2 |
|
3 |
class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Return the version
|
7 |
*
|
@@ -17,18 +26,24 @@ class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_
|
|
17 |
*/
|
18 |
public function execute() {
|
19 |
|
20 |
-
$
|
21 |
-
|
22 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
if ( $globals && ! isset( $globals->project ) ) {
|
25 |
return;
|
26 |
}
|
27 |
|
28 |
if ( ! $globals || ( isset( $globals->project ) && empty( $globals->project ) ) ) {
|
29 |
-
$
|
30 |
-
$
|
31 |
-
|
32 |
return;
|
33 |
}
|
34 |
|
@@ -69,13 +84,13 @@ class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_
|
|
69 |
}
|
70 |
}
|
71 |
|
72 |
-
update_post_meta( $
|
73 |
|
74 |
unset( $globals->project->globalBlocks );
|
75 |
unset( $globals->project->savedBlocks );
|
76 |
-
|
77 |
-
$
|
78 |
-
$
|
79 |
-
$postMigrationStorage->addMigration($this)->save();
|
80 |
}
|
|
|
81 |
}
|
2 |
|
3 |
class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
5 |
+
use Brizy_Admin_Migrations_PostsTrait;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* @return int|mixed
|
9 |
+
*/
|
10 |
+
public function getPriority() {
|
11 |
+
return 0;
|
12 |
+
}
|
13 |
+
|
14 |
/**
|
15 |
* Return the version
|
16 |
*
|
26 |
*/
|
27 |
public function execute() {
|
28 |
|
29 |
+
$projectPost = $this->getProjectPost();
|
30 |
+
|
31 |
+
if ( ! $projectPost ) {
|
32 |
+
return;
|
33 |
+
}
|
34 |
+
|
35 |
+
$projectStorage = Brizy_Editor_Storage_Project::instance( $projectPost->ID );
|
36 |
+
$postMigrationStorage = new Brizy_Admin_Migrations_PostStorage( $projectPost->ID );
|
37 |
+
$globals = json_decode( base64_decode( $projectStorage->get( 'globals', false ) ) );
|
38 |
|
39 |
if ( $globals && ! isset( $globals->project ) ) {
|
40 |
return;
|
41 |
}
|
42 |
|
43 |
if ( ! $globals || ( isset( $globals->project ) && empty( $globals->project ) ) ) {
|
44 |
+
$projectStorage->set( 'globals', base64_encode( json_encode( (object) array() ) ) );
|
45 |
+
$postMigrationStorage->addMigration( $this )->save();
|
46 |
+
|
47 |
return;
|
48 |
}
|
49 |
|
84 |
}
|
85 |
}
|
86 |
|
87 |
+
update_post_meta( $projectPost->ID, 'brizy-bk-' . get_class( $this ) . '-' . $this->getVersion(), $globals );
|
88 |
|
89 |
unset( $globals->project->globalBlocks );
|
90 |
unset( $globals->project->savedBlocks );
|
91 |
+
|
92 |
+
$projectStorage->set( 'globals', base64_encode( json_encode( $globals->project ) ) );
|
93 |
+
$postMigrationStorage->addMigration( $this )->save();
|
|
|
94 |
}
|
95 |
+
|
96 |
}
|
admin/migrations/global-versions-migration.php
CHANGED
@@ -2,6 +2,15 @@
|
|
2 |
|
3 |
class Brizy_Admin_Migrations_GlobalVersionsMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Return the version
|
7 |
*
|
@@ -18,8 +27,14 @@ class Brizy_Admin_Migrations_GlobalVersionsMigration implements Brizy_Admin_Migr
|
|
18 |
public function execute() {
|
19 |
|
20 |
try {
|
21 |
-
|
22 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
$pluginVersion = $projectStorage->get( 'pluginVersion', false );
|
25 |
|
2 |
|
3 |
class Brizy_Admin_Migrations_GlobalVersionsMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
5 |
+
use Brizy_Admin_Migrations_PostsTrait;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* @return int|mixed
|
9 |
+
*/
|
10 |
+
public function getPriority() {
|
11 |
+
return 0;
|
12 |
+
}
|
13 |
+
|
14 |
/**
|
15 |
* Return the version
|
16 |
*
|
27 |
public function execute() {
|
28 |
|
29 |
try {
|
30 |
+
|
31 |
+
$projectPost = $this->getProjectPost();
|
32 |
+
|
33 |
+
if ( ! $projectPost ) {
|
34 |
+
return;
|
35 |
+
}
|
36 |
+
|
37 |
+
$projectStorage = Brizy_Editor_Storage_Project::instance( $projectPost->ID );
|
38 |
|
39 |
$pluginVersion = $projectStorage->get( 'pluginVersion', false );
|
40 |
|
admin/migrations/globals-to-data-migration.php
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Admin_Migrations_GlobalsToDataMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
+
|
5 |
+
use Brizy_Admin_Migrations_PostsTrait;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Return the version
|
9 |
+
*
|
10 |
+
* @return mixed
|
11 |
+
*/
|
12 |
+
public function getVersion() {
|
13 |
+
return '1.0.76';
|
14 |
+
}
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @return mixed|void
|
18 |
+
* @throws Exception
|
19 |
+
*/
|
20 |
+
public function execute() {
|
21 |
+
|
22 |
+
try {
|
23 |
+
$projectPost = $this->getProjectPost();
|
24 |
+
|
25 |
+
if ( ! $projectPost ) {
|
26 |
+
return;
|
27 |
+
}
|
28 |
+
|
29 |
+
$storage = Brizy_Editor_Storage_Project::instance( $projectPost->ID );
|
30 |
+
|
31 |
+
if ( $globals = $storage->get( 'globals' ) ) {
|
32 |
+
update_post_meta( $projectPost->ID, 'brizy-bk-' . get_class( $this ) . '-' . $this->getVersion(), $storage->get_storage() );
|
33 |
+
|
34 |
+
$beforeMergeGlobals = json_decode( base64_decode( $globals ) );
|
35 |
+
$editorBuildPath = BRIZY_PLUGIN_PATH .
|
36 |
+
DIRECTORY_SEPARATOR . "public" .
|
37 |
+
DIRECTORY_SEPARATOR . "editor-build";
|
38 |
+
|
39 |
+
$context = new \Brizy\DataToProjectContext( $beforeMergeGlobals, $editorBuildPath );
|
40 |
+
$projectMigration = new \Brizy\DataToProjectTransformer();
|
41 |
+
$mergedGlobals = $projectMigration->execute( $context );
|
42 |
+
$storage->set( 'data', base64_encode( json_encode( $mergedGlobals ) ) );
|
43 |
+
$storage->delete( 'globals' );
|
44 |
+
}
|
45 |
+
|
46 |
+
} catch ( Exception $e ) {
|
47 |
+
return;
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
public function getPriority() {
|
52 |
+
return 10;
|
53 |
+
}
|
54 |
+
}
|
admin/migrations/migration-interface.php
CHANGED
@@ -16,4 +16,10 @@ interface Brizy_Admin_Migrations_MigrationInterface {
|
|
16 |
*/
|
17 |
public function execute();
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
}
|
16 |
*/
|
17 |
public function execute();
|
18 |
|
19 |
+
|
20 |
+
/**
|
21 |
+
* @return mixed
|
22 |
+
*/
|
23 |
+
public function getPriority();
|
24 |
+
|
25 |
}
|
admin/migrations/null-migration.php
CHANGED
@@ -3,6 +3,13 @@
|
|
3 |
|
4 |
class Brizy_Admin_Migrations_NullMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
/**
|
7 |
* Return the version
|
8 |
*
|
3 |
|
4 |
class Brizy_Admin_Migrations_NullMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
5 |
|
6 |
+
/**
|
7 |
+
* @return int|mixed
|
8 |
+
*/
|
9 |
+
public function getPriority() {
|
10 |
+
return 0;
|
11 |
+
}
|
12 |
+
|
13 |
/**
|
14 |
* Return the version
|
15 |
*
|
admin/migrations/posts-trait.php
CHANGED
@@ -2,6 +2,29 @@
|
|
2 |
|
3 |
trait Brizy_Admin_Migrations_PostsTrait {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Get posts and meta
|
7 |
*/
|
@@ -9,13 +32,13 @@ trait Brizy_Admin_Migrations_PostsTrait {
|
|
9 |
global $wpdb;
|
10 |
|
11 |
// query all posts (all post_type, all post_status) that have meta_key = 'brizy' and is not 'revision'
|
12 |
-
return $wpdb->get_results("
|
13 |
SELECT p.ID, pm.meta_value FROM {$wpdb->postmeta} pm
|
14 |
LEFT JOIN {$wpdb->posts} p ON p.ID = pm.post_id
|
15 |
WHERE pm.meta_key = 'brizy'
|
16 |
AND p.post_type != 'revision'
|
17 |
AND p.post_type != 'attachment'
|
18 |
-
");
|
19 |
}
|
20 |
|
21 |
/**
|
@@ -25,24 +48,24 @@ trait Brizy_Admin_Migrations_PostsTrait {
|
|
25 |
global $wpdb;
|
26 |
|
27 |
// query all global posts
|
28 |
-
return $wpdb->get_results("
|
29 |
SELECT p.ID, pm.meta_value FROM {$wpdb->postmeta} pm
|
30 |
LEFT JOIN {$wpdb->posts} p ON p.ID = pm.post_id
|
31 |
WHERE pm.meta_key = 'brizy-project'
|
32 |
AND p.post_type = 'brizy-project'
|
33 |
-
");
|
34 |
}
|
35 |
|
36 |
/**
|
37 |
* Parse array of shortcodes recursive
|
38 |
*/
|
39 |
-
public function array_walk_recursive_and_delete(array &$array, callable $callback, $userdata = null) {
|
40 |
-
foreach ($array as $key => &$value) {
|
41 |
-
if ( is_array($value) ) {
|
42 |
-
$value = $this->array_walk_recursive_and_delete($value, $callback, $userdata);
|
43 |
// if is shortcode parse recursive
|
44 |
if ( isset( $value['type'] ) && isset( $value['value'] ) ) {
|
45 |
-
$this->parse_shortcodes($value);
|
46 |
}
|
47 |
}
|
48 |
}
|
@@ -53,30 +76,30 @@ trait Brizy_Admin_Migrations_PostsTrait {
|
|
53 |
/**
|
54 |
* Migrate post
|
55 |
*/
|
56 |
-
public function migrate_post($json_value) {
|
57 |
-
$old_arr = json_decode($json_value, true);
|
58 |
-
if( is_null($old_arr) ) {
|
59 |
return $json_value;
|
60 |
}
|
61 |
|
62 |
-
$new_arr = $this->array_walk_recursive_and_delete($old_arr, function ($value, $key) {
|
63 |
-
if ( is_array($value) ) {
|
64 |
-
return empty($value);
|
65 |
}
|
66 |
|
67 |
-
if ( isset($value['type']) && isset($value['value']) ) {
|
68 |
// if is shortcode return true
|
69 |
return true;
|
70 |
}
|
71 |
-
});
|
72 |
|
73 |
-
return json_encode($new_arr);
|
74 |
}
|
75 |
|
76 |
/**
|
77 |
* Parse shortcodes
|
78 |
*/
|
79 |
-
public function parse_shortcodes(array &$array) {
|
80 |
// rewrite this function in your class
|
81 |
|
82 |
return $array;
|
@@ -88,7 +111,7 @@ trait Brizy_Admin_Migrations_PostsTrait {
|
|
88 |
public function unset_prefixed_keys( array &$array, $atts = array() ) {
|
89 |
// merge with default $atts
|
90 |
$atts = array_merge(
|
91 |
-
array
|
92 |
"shortcode" => "",
|
93 |
"delete_keys" => array(),
|
94 |
"dependent_keys" => false,
|
@@ -97,32 +120,31 @@ trait Brizy_Admin_Migrations_PostsTrait {
|
|
97 |
$atts
|
98 |
);
|
99 |
|
100 |
-
if ( empty($atts['shortcode']) && empty($atts['delete_keys']) ) {
|
101 |
return $array;
|
102 |
}
|
103 |
|
104 |
if ( $atts['shortcode'] == $array['type'] ) {
|
105 |
$keys_to_remove = array();
|
106 |
-
foreach($atts['delete_keys'] as $key_to_delete) {
|
107 |
// replace "prefix" with empty string then make first letter lowercase
|
108 |
-
$key = lcfirst( str_replace($atts['key_prefix'], "", $key_to_delete) );
|
109 |
-
if ( isset( $array['value'][$key] )
|
110 |
-
|
111 |
-
|
112 |
-
{
|
113 |
$keys_to_remove[] = $key_to_delete;
|
114 |
}
|
115 |
}
|
116 |
|
117 |
// !Atention if the number of keys to delete are not the same to not delete
|
118 |
-
if ( $atts['dependent_keys'] && count($keys_to_remove) != count($atts['delete_keys']) ) {
|
119 |
$keys_to_remove = array();
|
120 |
}
|
121 |
|
122 |
// remove keys
|
123 |
-
if ( !empty($keys_to_remove) ) {
|
124 |
-
foreach($keys_to_remove as $key_to_remove) {
|
125 |
-
unset( $array['value'][$key_to_remove] );
|
126 |
}
|
127 |
}
|
128 |
}
|
2 |
|
3 |
trait Brizy_Admin_Migrations_PostsTrait {
|
4 |
|
5 |
+
|
6 |
+
/**
|
7 |
+
* @return |null
|
8 |
+
*/
|
9 |
+
public function getProjectPost() {
|
10 |
+
global $wpdb;
|
11 |
+
|
12 |
+
$row = $wpdb->get_results(
|
13 |
+
$wpdb->prepare( "SELECT * FROM {$wpdb->posts} p
|
14 |
+
WHERE p.post_type = %s and p.post_status='publish'
|
15 |
+
ORDER BY ID DESC LIMIT 1 ", Brizy_Editor_Project::BRIZY_PROJECT ),
|
16 |
+
OBJECT
|
17 |
+
);
|
18 |
+
|
19 |
+
$projectPost = null;
|
20 |
+
|
21 |
+
if ( isset( $row[0] ) ) {
|
22 |
+
return $row[0];
|
23 |
+
}
|
24 |
+
|
25 |
+
return null;
|
26 |
+
}
|
27 |
+
|
28 |
/**
|
29 |
* Get posts and meta
|
30 |
*/
|
32 |
global $wpdb;
|
33 |
|
34 |
// query all posts (all post_type, all post_status) that have meta_key = 'brizy' and is not 'revision'
|
35 |
+
return $wpdb->get_results( "
|
36 |
SELECT p.ID, pm.meta_value FROM {$wpdb->postmeta} pm
|
37 |
LEFT JOIN {$wpdb->posts} p ON p.ID = pm.post_id
|
38 |
WHERE pm.meta_key = 'brizy'
|
39 |
AND p.post_type != 'revision'
|
40 |
AND p.post_type != 'attachment'
|
41 |
+
" );
|
42 |
}
|
43 |
|
44 |
/**
|
48 |
global $wpdb;
|
49 |
|
50 |
// query all global posts
|
51 |
+
return $wpdb->get_results( "
|
52 |
SELECT p.ID, pm.meta_value FROM {$wpdb->postmeta} pm
|
53 |
LEFT JOIN {$wpdb->posts} p ON p.ID = pm.post_id
|
54 |
WHERE pm.meta_key = 'brizy-project'
|
55 |
AND p.post_type = 'brizy-project'
|
56 |
+
" );
|
57 |
}
|
58 |
|
59 |
/**
|
60 |
* Parse array of shortcodes recursive
|
61 |
*/
|
62 |
+
public function array_walk_recursive_and_delete( array &$array, callable $callback, $userdata = null ) {
|
63 |
+
foreach ( $array as $key => &$value ) {
|
64 |
+
if ( is_array( $value ) ) {
|
65 |
+
$value = $this->array_walk_recursive_and_delete( $value, $callback, $userdata );
|
66 |
// if is shortcode parse recursive
|
67 |
if ( isset( $value['type'] ) && isset( $value['value'] ) ) {
|
68 |
+
$this->parse_shortcodes( $value );
|
69 |
}
|
70 |
}
|
71 |
}
|
76 |
/**
|
77 |
* Migrate post
|
78 |
*/
|
79 |
+
public function migrate_post( $json_value ) {
|
80 |
+
$old_arr = json_decode( $json_value, true );
|
81 |
+
if ( is_null( $old_arr ) ) {
|
82 |
return $json_value;
|
83 |
}
|
84 |
|
85 |
+
$new_arr = $this->array_walk_recursive_and_delete( $old_arr, function ( $value, $key ) {
|
86 |
+
if ( is_array( $value ) ) {
|
87 |
+
return empty( $value );
|
88 |
}
|
89 |
|
90 |
+
if ( isset( $value['type'] ) && isset( $value['value'] ) ) {
|
91 |
// if is shortcode return true
|
92 |
return true;
|
93 |
}
|
94 |
+
} );
|
95 |
|
96 |
+
return json_encode( $new_arr );
|
97 |
}
|
98 |
|
99 |
/**
|
100 |
* Parse shortcodes
|
101 |
*/
|
102 |
+
public function parse_shortcodes( array &$array ) {
|
103 |
// rewrite this function in your class
|
104 |
|
105 |
return $array;
|
111 |
public function unset_prefixed_keys( array &$array, $atts = array() ) {
|
112 |
// merge with default $atts
|
113 |
$atts = array_merge(
|
114 |
+
array(
|
115 |
"shortcode" => "",
|
116 |
"delete_keys" => array(),
|
117 |
"dependent_keys" => false,
|
120 |
$atts
|
121 |
);
|
122 |
|
123 |
+
if ( empty( $atts['shortcode'] ) && empty( $atts['delete_keys'] ) ) {
|
124 |
return $array;
|
125 |
}
|
126 |
|
127 |
if ( $atts['shortcode'] == $array['type'] ) {
|
128 |
$keys_to_remove = array();
|
129 |
+
foreach ( $atts['delete_keys'] as $key_to_delete ) {
|
130 |
// replace "prefix" with empty string then make first letter lowercase
|
131 |
+
$key = lcfirst( str_replace( $atts['key_prefix'], "", $key_to_delete ) );
|
132 |
+
if ( isset( $array['value'][ $key ] )
|
133 |
+
&& isset( $array['value'][ $key_to_delete ] )
|
134 |
+
&& $array['value'][ $key ] === $array['value'][ $key_to_delete ] ) {
|
|
|
135 |
$keys_to_remove[] = $key_to_delete;
|
136 |
}
|
137 |
}
|
138 |
|
139 |
// !Atention if the number of keys to delete are not the same to not delete
|
140 |
+
if ( $atts['dependent_keys'] && count( $keys_to_remove ) != count( $atts['delete_keys'] ) ) {
|
141 |
$keys_to_remove = array();
|
142 |
}
|
143 |
|
144 |
// remove keys
|
145 |
+
if ( ! empty( $keys_to_remove ) ) {
|
146 |
+
foreach ( $keys_to_remove as $key_to_remove ) {
|
147 |
+
unset( $array['value'][ $key_to_remove ] );
|
148 |
}
|
149 |
}
|
150 |
}
|
admin/migrations/project-to-custom-post-migration.php
CHANGED
@@ -2,6 +2,14 @@
|
|
2 |
|
3 |
class Brizy_Admin_Migrations_ProjectToCustomPostMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Return the version
|
7 |
*
|
2 |
|
3 |
class Brizy_Admin_Migrations_ProjectToCustomPostMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
|
5 |
+
|
6 |
+
/**
|
7 |
+
* @return int|mixed
|
8 |
+
*/
|
9 |
+
public function getPriority() {
|
10 |
+
return 0;
|
11 |
+
}
|
12 |
+
|
13 |
/**
|
14 |
* Return the version
|
15 |
*
|
admin/migrations/rules-migration.php
CHANGED
@@ -3,6 +3,13 @@
|
|
3 |
|
4 |
class Brizy_Admin_Migrations_RulesMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
/**
|
7 |
* Return the version
|
8 |
*
|
3 |
|
4 |
class Brizy_Admin_Migrations_RulesMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
5 |
|
6 |
+
/**
|
7 |
+
* @return int|mixed
|
8 |
+
*/
|
9 |
+
public function getPriority() {
|
10 |
+
return 0;
|
11 |
+
}
|
12 |
+
|
13 |
/**
|
14 |
* Return the version
|
15 |
*
|
admin/migrations/shortcodes-mobile-one-migration.php
CHANGED
@@ -4,6 +4,13 @@ class Brizy_Admin_Migrations_ShortcodesMobileOneMigration implements Brizy_Admin
|
|
4 |
|
5 |
use Brizy_Admin_Migrations_PostsTrait;
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
/**
|
8 |
* Return the version
|
9 |
*
|
4 |
|
5 |
use Brizy_Admin_Migrations_PostsTrait;
|
6 |
|
7 |
+
/**
|
8 |
+
* @return int|mixed
|
9 |
+
*/
|
10 |
+
public function getPriority() {
|
11 |
+
return 0;
|
12 |
+
}
|
13 |
+
|
14 |
/**
|
15 |
* Return the version
|
16 |
*
|
admin/rule.php
CHANGED
@@ -372,7 +372,7 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
|
|
372 |
* @return string
|
373 |
*/
|
374 |
private function generateId() {
|
375 |
-
return md5( implode( '', func_get_args() ) );
|
376 |
}
|
377 |
|
378 |
/**
|
372 |
* @return string
|
373 |
*/
|
374 |
private function generateId() {
|
375 |
+
return md5( implode( '', func_get_args() ) .time() );
|
376 |
}
|
377 |
|
378 |
/**
|
admin/rules/api.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
|
4 |
class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
5 |
|
6 |
-
const nonce =
|
7 |
const CREATE_RULES_ACTION = 'brizy_add_rules';
|
8 |
const CREATE_RULE_ACTION = 'brizy_add_rule';
|
9 |
const DELETE_RULE_ACTION = 'brizy_delete_rule';
|
@@ -66,7 +66,7 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
|
66 |
|
67 |
$rules = $this->manager->getRules( $postId );
|
68 |
|
69 |
-
|
70 |
|
71 |
return null;
|
72 |
}
|
@@ -80,12 +80,16 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
|
80 |
$postType = get_post_type( $postId );
|
81 |
|
82 |
if ( ! $postId ) {
|
83 |
-
|
84 |
}
|
85 |
|
86 |
$ruleData = file_get_contents( "php://input" );
|
87 |
|
88 |
-
|
|
|
|
|
|
|
|
|
89 |
|
90 |
// validate rule
|
91 |
if ( $error = $this->manager->validateRule( $postType, $rule ) ) {
|
@@ -93,7 +97,6 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
|
93 |
}
|
94 |
|
95 |
$this->manager->addRule( $postId, $rule );
|
96 |
-
|
97 |
wp_send_json_success( $rule, 200 );
|
98 |
|
99 |
}
|
@@ -101,16 +104,20 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
|
101 |
public function actionCreateRules() {
|
102 |
$this->verifyNonce( self::nonce );
|
103 |
|
104 |
-
$postId
|
105 |
$postType = get_post_type( $postId );
|
106 |
|
107 |
if ( ! $postId ) {
|
108 |
-
|
109 |
}
|
110 |
|
111 |
$rulesData = file_get_contents( "php://input" );
|
112 |
|
113 |
-
|
|
|
|
|
|
|
|
|
114 |
|
115 |
// validate rule
|
116 |
if ( $errors = $this->manager->validateRules( $postType, $rules ) ) {
|
@@ -121,7 +128,7 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
|
121 |
$this->manager->addRule( $postId, $newRule );
|
122 |
}
|
123 |
|
124 |
-
|
125 |
|
126 |
return null;
|
127 |
}
|
@@ -134,12 +141,12 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
|
134 |
$ruleId = $this->param( 'rule' );
|
135 |
|
136 |
if ( ! $postId || ! $ruleId ) {
|
137 |
-
|
138 |
}
|
139 |
|
140 |
$this->manager->deleteRule( $postId, $ruleId );
|
141 |
|
142 |
-
|
143 |
}
|
144 |
|
145 |
}
|
3 |
|
4 |
class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
|
5 |
|
6 |
+
const nonce = Brizy_Editor_API::nonce;
|
7 |
const CREATE_RULES_ACTION = 'brizy_add_rules';
|
8 |
const CREATE_RULE_ACTION = 'brizy_add_rule';
|
9 |
const DELETE_RULE_ACTION = 'brizy_delete_rule';
|
66 |
|
67 |
$rules = $this->manager->getRules( $postId );
|
68 |
|
69 |
+
$this->success( $rules );
|
70 |
|
71 |
return null;
|
72 |
}
|
80 |
$postType = get_post_type( $postId );
|
81 |
|
82 |
if ( ! $postId ) {
|
83 |
+
$this->error( 400, "Validation" . 'Invalid post' );
|
84 |
}
|
85 |
|
86 |
$ruleData = file_get_contents( "php://input" );
|
87 |
|
88 |
+
try {
|
89 |
+
$rule = $this->manager->createRuleFromJson( $ruleData, $postType );
|
90 |
+
} catch ( Exception $e ) {
|
91 |
+
$this->error( 400, "Validation" . $e->getMessage() );
|
92 |
+
}
|
93 |
|
94 |
// validate rule
|
95 |
if ( $error = $this->manager->validateRule( $postType, $rule ) ) {
|
97 |
}
|
98 |
|
99 |
$this->manager->addRule( $postId, $rule );
|
|
|
100 |
wp_send_json_success( $rule, 200 );
|
101 |
|
102 |
}
|
104 |
public function actionCreateRules() {
|
105 |
$this->verifyNonce( self::nonce );
|
106 |
|
107 |
+
$postId = (int) $this->param( 'post' );
|
108 |
$postType = get_post_type( $postId );
|
109 |
|
110 |
if ( ! $postId ) {
|
111 |
+
$this->error( 400, 'Invalid post' );
|
112 |
}
|
113 |
|
114 |
$rulesData = file_get_contents( "php://input" );
|
115 |
|
116 |
+
try {
|
117 |
+
$rules = $this->manager->createRulesFromJson( $rulesData, $postType );
|
118 |
+
} catch ( Exception $e ) {
|
119 |
+
$this->error( 400, $e->getMessage() );
|
120 |
+
}
|
121 |
|
122 |
// validate rule
|
123 |
if ( $errors = $this->manager->validateRules( $postType, $rules ) ) {
|
128 |
$this->manager->addRule( $postId, $newRule );
|
129 |
}
|
130 |
|
131 |
+
$this->success( $rules, 200 );
|
132 |
|
133 |
return null;
|
134 |
}
|
141 |
$ruleId = $this->param( 'rule' );
|
142 |
|
143 |
if ( ! $postId || ! $ruleId ) {
|
144 |
+
$this->error( 400, 'Invalid request' );
|
145 |
}
|
146 |
|
147 |
$this->manager->deleteRule( $postId, $ruleId );
|
148 |
|
149 |
+
$this->success( null, 200 );
|
150 |
}
|
151 |
|
152 |
}
|
admin/rules/manager.php
CHANGED
@@ -29,7 +29,7 @@ class Brizy_Admin_Rules_Manager {
|
|
29 |
|
30 |
if ( $forceValidation ) {
|
31 |
if ( $this->validateRules( $postType, $rules ) ) {
|
32 |
-
throw new Exception( 'One or more rules are already used' );
|
33 |
}
|
34 |
}
|
35 |
|
29 |
|
30 |
if ( $forceValidation ) {
|
31 |
if ( $this->validateRules( $postType, $rules ) ) {
|
32 |
+
throw new Exception( 'One or more rules are already used or are overridden by an existent rule' );
|
33 |
}
|
34 |
}
|
35 |
|
admin/settings.php
CHANGED
@@ -333,6 +333,10 @@ class Brizy_Admin_Settings {
|
|
333 |
return;
|
334 |
}
|
335 |
|
|
|
|
|
|
|
|
|
336 |
if ( ! isset( $_POST['_wpnonce'] ) || ! wp_verify_nonce( $_POST['_wpnonce'] ) ) {
|
337 |
return;
|
338 |
}
|
333 |
return;
|
334 |
}
|
335 |
|
336 |
+
if(!isset($_POST['tab'])) {
|
337 |
+
return;
|
338 |
+
}
|
339 |
+
|
340 |
if ( ! isset( $_POST['_wpnonce'] ) || ! wp_verify_nonce( $_POST['_wpnonce'] ) ) {
|
341 |
return;
|
342 |
}
|
admin/static/js/rules.js
CHANGED
@@ -40,11 +40,13 @@ var api = {
|
|
40 |
return jQuery.getJSON(Brizy_Admin_Rules.url, {
|
41 |
action: "brizy_rule_group_list",
|
42 |
hash: Brizy_Admin_Rules.hash,
|
|
|
43 |
context: 'template-rules'
|
44 |
}).done(function (data) {
|
45 |
apiCache.groupList = jQuery.Deferred().resolve(data);
|
46 |
});
|
47 |
},
|
|
|
48 |
getPosts: function (postType, filter, exclude) {
|
49 |
|
50 |
var cachekey = postType + filter;
|
@@ -56,28 +58,33 @@ var api = {
|
|
56 |
excludePostTypes: exclude,
|
57 |
postType: postType,
|
58 |
filterTerm: filter,
|
59 |
-
hash: Brizy_Admin_Rules.hash
|
|
|
60 |
}).done(function (data) {
|
61 |
apiCache.postList[cachekey] = jQuery.Deferred().resolve(data);
|
62 |
});
|
63 |
},
|
|
|
64 |
getTerms: function (taxonomy) {
|
65 |
if (apiCache.termList[taxonomy])
|
66 |
return apiCache.termList[taxonomy];
|
67 |
return jQuery.getJSON(Brizy_Admin_Rules.url, {
|
68 |
action: "brizy_get_terms",
|
69 |
hash: Brizy_Admin_Rules.hash,
|
|
|
70 |
taxonomy: taxonomy
|
71 |
}).done(function (data) {
|
72 |
apiCache.termList[taxonomy] = jQuery.Deferred().resolve(data);
|
73 |
});
|
74 |
},
|
|
|
75 |
createRule: function (rule) {
|
76 |
|
77 |
var url = new URL(Brizy_Admin_Rules.url);
|
78 |
url.searchParams.append('action', 'brizy_add_rule');
|
79 |
url.searchParams.append('hash', Brizy_Admin_Rules.hash);
|
80 |
url.searchParams.append('post', Brizy_Admin_Rules.id);
|
|
|
81 |
|
82 |
return jQuery.ajax({
|
83 |
type: "POST",
|
@@ -92,6 +99,7 @@ var api = {
|
|
92 |
action: "brizy_delete_rule",
|
93 |
rule: ruleId,
|
94 |
hash: Brizy_Admin_Rules.hash,
|
|
|
95 |
post: Brizy_Admin_Rules.id
|
96 |
});
|
97 |
},
|
@@ -100,6 +108,7 @@ var api = {
|
|
100 |
return jQuery.post(Brizy_Admin_Rules.url, {
|
101 |
action: "brizy_list_rules",
|
102 |
hash: Brizy_Admin_Rules.hash,
|
|
|
103 |
post: Brizy_Admin_Rules.id
|
104 |
});
|
105 |
}
|
@@ -114,7 +123,7 @@ var actions = {
|
|
114 |
|
115 |
updateGroups: function (value) {
|
116 |
return function (state) {
|
117 |
-
return {groups: value};
|
118 |
};
|
119 |
},
|
120 |
|
@@ -195,7 +204,6 @@ var RuleTypeField = function (params) {
|
|
195 |
};
|
196 |
|
197 |
BrzSelect2 = function (params) {
|
198 |
-
console.log(params);
|
199 |
|
200 |
var oncreate = function (element) {
|
201 |
var el = jQuery(element);
|
@@ -204,8 +212,8 @@ BrzSelect2 = function (params) {
|
|
204 |
el.on("change", params.onChange);
|
205 |
}
|
206 |
if (typeof params.optionRequest === 'function') {
|
207 |
-
params.optionRequest().done(function (
|
208 |
-
var options = params.convertResponseToOptions(
|
209 |
options.forEach(function (option) {
|
210 |
el.append(option).trigger("change");
|
211 |
});
|
@@ -237,9 +245,9 @@ BrzSelect2 = function (params) {
|
|
237 |
};
|
238 |
|
239 |
var PostSelect2Field = function (params) {
|
240 |
-
var convertResponseToOptions = function (
|
241 |
var options = [new Option("All", null, false, false)];
|
242 |
-
data.posts.forEach(function (post) {
|
243 |
var selected = params.value.includes(post.ID + "") || params.value.includes(post.ID);
|
244 |
options.push(new Option(post.title, post.ID, false, selected));
|
245 |
});
|
@@ -278,9 +286,9 @@ var RuleCustomPostSearchField = function (params) {
|
|
278 |
};
|
279 |
|
280 |
var RuleTaxonomySearchField = function (params) {
|
281 |
-
var convertResponseToOptions = function (
|
282 |
var options = [new Option("All", null, false, false)];
|
283 |
-
data.forEach(function (term) {
|
284 |
var selected = params.rule.entityValues && (params.rule.entityValues.includes(term.term_id + "") || params.rule.entityValues.includes(term.term_id));
|
285 |
options.push(new Option(term.name, term.term_id, false, selected));
|
286 |
});
|
40 |
return jQuery.getJSON(Brizy_Admin_Rules.url, {
|
41 |
action: "brizy_rule_group_list",
|
42 |
hash: Brizy_Admin_Rules.hash,
|
43 |
+
version: Brizy_Admin_Data.editorVersion,
|
44 |
context: 'template-rules'
|
45 |
}).done(function (data) {
|
46 |
apiCache.groupList = jQuery.Deferred().resolve(data);
|
47 |
});
|
48 |
},
|
49 |
+
|
50 |
getPosts: function (postType, filter, exclude) {
|
51 |
|
52 |
var cachekey = postType + filter;
|
58 |
excludePostTypes: exclude,
|
59 |
postType: postType,
|
60 |
filterTerm: filter,
|
61 |
+
hash: Brizy_Admin_Rules.hash,
|
62 |
+
version: Brizy_Admin_Data.editorVersion
|
63 |
}).done(function (data) {
|
64 |
apiCache.postList[cachekey] = jQuery.Deferred().resolve(data);
|
65 |
});
|
66 |
},
|
67 |
+
|
68 |
getTerms: function (taxonomy) {
|
69 |
if (apiCache.termList[taxonomy])
|
70 |
return apiCache.termList[taxonomy];
|
71 |
return jQuery.getJSON(Brizy_Admin_Rules.url, {
|
72 |
action: "brizy_get_terms",
|
73 |
hash: Brizy_Admin_Rules.hash,
|
74 |
+
version: Brizy_Admin_Data.editorVersion,
|
75 |
taxonomy: taxonomy
|
76 |
}).done(function (data) {
|
77 |
apiCache.termList[taxonomy] = jQuery.Deferred().resolve(data);
|
78 |
});
|
79 |
},
|
80 |
+
|
81 |
createRule: function (rule) {
|
82 |
|
83 |
var url = new URL(Brizy_Admin_Rules.url);
|
84 |
url.searchParams.append('action', 'brizy_add_rule');
|
85 |
url.searchParams.append('hash', Brizy_Admin_Rules.hash);
|
86 |
url.searchParams.append('post', Brizy_Admin_Rules.id);
|
87 |
+
url.searchParams.append('version', Brizy_Admin_Data.editorVersion);
|
88 |
|
89 |
return jQuery.ajax({
|
90 |
type: "POST",
|
99 |
action: "brizy_delete_rule",
|
100 |
rule: ruleId,
|
101 |
hash: Brizy_Admin_Rules.hash,
|
102 |
+
version: Brizy_Admin_Data.editorVersion,
|
103 |
post: Brizy_Admin_Rules.id
|
104 |
});
|
105 |
},
|
108 |
return jQuery.post(Brizy_Admin_Rules.url, {
|
109 |
action: "brizy_list_rules",
|
110 |
hash: Brizy_Admin_Rules.hash,
|
111 |
+
version: Brizy_Admin_Data.editorVersion,
|
112 |
post: Brizy_Admin_Rules.id
|
113 |
});
|
114 |
}
|
123 |
|
124 |
updateGroups: function (value) {
|
125 |
return function (state) {
|
126 |
+
return {groups: value.data};
|
127 |
};
|
128 |
},
|
129 |
|
204 |
};
|
205 |
|
206 |
BrzSelect2 = function (params) {
|
|
|
207 |
|
208 |
var oncreate = function (element) {
|
209 |
var el = jQuery(element);
|
212 |
el.on("change", params.onChange);
|
213 |
}
|
214 |
if (typeof params.optionRequest === 'function') {
|
215 |
+
params.optionRequest().done(function (response) {
|
216 |
+
var options = params.convertResponseToOptions(response);
|
217 |
options.forEach(function (option) {
|
218 |
el.append(option).trigger("change");
|
219 |
});
|
245 |
};
|
246 |
|
247 |
var PostSelect2Field = function (params) {
|
248 |
+
var convertResponseToOptions = function (response) {
|
249 |
var options = [new Option("All", null, false, false)];
|
250 |
+
response.data.posts.forEach(function (post) {
|
251 |
var selected = params.value.includes(post.ID + "") || params.value.includes(post.ID);
|
252 |
options.push(new Option(post.title, post.ID, false, selected));
|
253 |
});
|
286 |
};
|
287 |
|
288 |
var RuleTaxonomySearchField = function (params) {
|
289 |
+
var convertResponseToOptions = function (response) {
|
290 |
var options = [new Option("All", null, false, false)];
|
291 |
+
response.data.forEach(function (term) {
|
292 |
var selected = params.rule.entityValues && (params.rule.entityValues.includes(term.term_id + "") || params.rule.entityValues.includes(term.term_id));
|
293 |
options.push(new Option(term.name, term.term_id, false, selected));
|
294 |
});
|
admin/templates.php
CHANGED
@@ -187,9 +187,6 @@ class Brizy_Admin_Templates {
|
|
187 |
|
188 |
static public function registerCustomPostTemplate() {
|
189 |
|
190 |
-
if ( is_network_admin() ) {
|
191 |
-
return;
|
192 |
-
}
|
193 |
|
194 |
$labels = array(
|
195 |
'name' => _x( 'Templates', 'post type general name' ),
|
@@ -315,7 +312,7 @@ class Brizy_Admin_Templates {
|
|
315 |
),
|
316 |
);
|
317 |
|
318 |
-
|
319 |
}
|
320 |
|
321 |
private function getCustomPostsList( $groupValue ) {
|
187 |
|
188 |
static public function registerCustomPostTemplate() {
|
189 |
|
|
|
|
|
|
|
190 |
|
191 |
$labels = array(
|
192 |
'name' => _x( 'Templates', 'post type general name' ),
|
312 |
),
|
313 |
);
|
314 |
|
315 |
+
wp_send_json_success( $groups, 200 );
|
316 |
}
|
317 |
|
318 |
private function getCustomPostsList( $groupValue ) {
|
admin/views/optimizer/optimizer-general.html.twig
CHANGED
@@ -58,20 +58,25 @@
|
|
58 |
|
59 |
function updateUI() {
|
60 |
|
61 |
-
var progress = (currentIndex
|
62 |
|
63 |
-
if(currentIndex<links.length)
|
64 |
-
{
|
65 |
$('#optimize-results').html('<p>Process: ' + progress + '' +
|
66 |
'<svg class="brz-spinner"><use xlink:href="{{ svg }}"></svg>' +
|
67 |
'</p>' +
|
68 |
'<p>Failed: ' + failCount + '</p>');
|
|
|
|
|
|
|
|
|
|
|
69 |
} else {
|
70 |
$('#optimize-results').html('<p>Process: ' + progress + '' +
|
71 |
'</p>' +
|
72 |
'<p>Failed: ' + failCount + '</p>');
|
73 |
-
|
74 |
-
jQuery('#optimize-submit').prop('disabled',false);
|
|
|
75 |
}
|
76 |
}
|
77 |
})(jQuery);
|
@@ -79,7 +84,8 @@
|
|
79 |
<div id="optimize-results">
|
80 |
<p>There are <b>{{ count }}</b> images that can be optimized.</p>
|
81 |
</div>
|
82 |
-
|
|
|
83 |
{% if count>0 %}
|
84 |
<button type="submit" id="optimize-submit" class="button button-primary"
|
85 |
onclick="startOptimize(); jQuery(this).prop('disabled',true);">
|
@@ -94,6 +100,10 @@
|
|
94 |
</div>
|
95 |
{% endif %}
|
96 |
|
|
|
|
|
|
|
|
|
97 |
<style>
|
98 |
.brz-spinner {
|
99 |
margin-left: 10px;
|
58 |
|
59 |
function updateUI() {
|
60 |
|
61 |
+
var progress = (currentIndex) + "/" + count;
|
62 |
|
63 |
+
if (currentIndex < links.length) {
|
|
|
64 |
$('#optimize-results').html('<p>Process: ' + progress + '' +
|
65 |
'<svg class="brz-spinner"><use xlink:href="{{ svg }}"></svg>' +
|
66 |
'</p>' +
|
67 |
'<p>Failed: ' + failCount + '</p>');
|
68 |
+
|
69 |
+
$('#optimize-donotclose').show();
|
70 |
+
window.onbeforeunload = function (e) {
|
71 |
+
return '';
|
72 |
+
};
|
73 |
} else {
|
74 |
$('#optimize-results').html('<p>Process: ' + progress + '' +
|
75 |
'</p>' +
|
76 |
'<p>Failed: ' + failCount + '</p>');
|
77 |
+
$('#optimize-donotclose').hide();
|
78 |
+
jQuery('#optimize-submit').prop('disabled', false);
|
79 |
+
window.onbeforeunload = undefined;
|
80 |
}
|
81 |
}
|
82 |
})(jQuery);
|
84 |
<div id="optimize-results">
|
85 |
<p>There are <b>{{ count }}</b> images that can be optimized.</p>
|
86 |
</div>
|
87 |
+
|
88 |
+
{% if not enabled %}
|
89 |
{% if count>0 %}
|
90 |
<button type="submit" id="optimize-submit" class="button button-primary"
|
91 |
onclick="startOptimize(); jQuery(this).prop('disabled',true);">
|
100 |
</div>
|
101 |
{% endif %}
|
102 |
|
103 |
+
<div id="optimize-donotclose" style="display: none;">
|
104 |
+
<p><i> {{ __("Don't leave this page until the optimisation process is completed.") }}</i></p>
|
105 |
+
</div>
|
106 |
+
|
107 |
<style>
|
108 |
.brz-spinner {
|
109 |
margin-left: 10px;
|
autoload.php
CHANGED
@@ -40,7 +40,7 @@ function brizyAutoload( $class_name ) {
|
|
40 |
|
41 |
function camelCaseToPath( $apath ) {
|
42 |
$matches = array();
|
43 |
-
preg_match_all( '/(.[a-
|
44 |
$path = null;
|
45 |
|
46 |
if ( isset($matches[1]) && count( $matches[1] ) > 1 ) {
|
40 |
|
41 |
function camelCaseToPath( $apath ) {
|
42 |
$matches = array();
|
43 |
+
preg_match_all( '/(.[a-z0-9]+|.[A-Z0-9]+|.[A-Z0-9].[a-z0-9]+)/', $apath, $matches );
|
44 |
$path = null;
|
45 |
|
46 |
if ( isset($matches[1]) && count( $matches[1] ) > 1 ) {
|
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.
|
9 |
* Text Domain: brizy
|
10 |
* License: GPLv3
|
11 |
* Domain Path: /languages
|
@@ -19,8 +19,8 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
|
|
19 |
|
20 |
define( 'BRIZY_DEVELOPMENT', false );
|
21 |
define( 'BRIZY_LOG', false );
|
22 |
-
define( 'BRIZY_VERSION', '1.0.
|
23 |
-
define( 'BRIZY_EDITOR_VERSION', '
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
26 |
define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
|
@@ -38,9 +38,8 @@ register_deactivation_hook( BRIZY_FILE, 'brizy_clean' );
|
|
38 |
|
39 |
function brizy_load() {
|
40 |
|
41 |
-
if ( version_compare( PHP_VERSION, '5.
|
42 |
add_action( 'admin_notices', 'brizy_notices' );
|
43 |
-
|
44 |
return;
|
45 |
}
|
46 |
|
@@ -51,7 +50,7 @@ function brizy_notices() {
|
|
51 |
?>
|
52 |
<div class="notice notice-error is-dismissible">
|
53 |
<p>
|
54 |
-
|
55 |
PHP <?php echo PHP_VERSION ?>.
|
56 |
<b><?php echo strtoupper( __bt( 'brziy', 'Brizy' ) ) ?> IS NOT RUNNING. </b>
|
57 |
</p>
|
5 |
* Plugin URI: https://brizy.io/
|
6 |
* Author: Brizy.io
|
7 |
* Author URI: https://brizy.io/
|
8 |
+
* Version: 1.0.82
|
9 |
* Text Domain: brizy
|
10 |
* License: GPLv3
|
11 |
* Domain Path: /languages
|
19 |
|
20 |
define( 'BRIZY_DEVELOPMENT', false );
|
21 |
define( 'BRIZY_LOG', false );
|
22 |
+
define( 'BRIZY_VERSION', '1.0.82' );
|
23 |
+
define( 'BRIZY_EDITOR_VERSION', '102' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
26 |
define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
|
38 |
|
39 |
function brizy_load() {
|
40 |
|
41 |
+
if ( version_compare( PHP_VERSION, '5.6.0' ) < 0 ) {
|
42 |
add_action( 'admin_notices', 'brizy_notices' );
|
|
|
43 |
return;
|
44 |
}
|
45 |
|
50 |
?>
|
51 |
<div class="notice notice-error is-dismissible">
|
52 |
<p>
|
53 |
+
<?php echo __bt( 'brziy', 'Brizy' ) ?> requires PHP version 5.6+, you currently running
|
54 |
PHP <?php echo PHP_VERSION ?>.
|
55 |
<b><?php echo strtoupper( __bt( 'brziy', 'Brizy' ) ) ?> IS NOT RUNNING. </b>
|
56 |
</p>
|
compatibilities/init.php
CHANGED
@@ -3,10 +3,11 @@
|
|
3 |
class Brizy_Compatibilities_Init {
|
4 |
|
5 |
public function __construct() {
|
6 |
-
$this->
|
|
|
7 |
}
|
8 |
|
9 |
-
private function
|
10 |
global $wp_version;
|
11 |
|
12 |
if ( function_exists( 'w3tc_add_ob_callback' ) || function_exists( 'w3tc_class_autoload' ) ) {
|
@@ -46,6 +47,12 @@ class Brizy_Compatibilities_Init {
|
|
46 |
}
|
47 |
}
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
private function is_plugin_active( $plugin_file ) {
|
50 |
|
51 |
if ( in_array( $plugin_file, apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
|
3 |
class Brizy_Compatibilities_Init {
|
4 |
|
5 |
public function __construct() {
|
6 |
+
$this->load_compatibilites();
|
7 |
+
add_action( 'plugins_loaded', array( $this, 'action_plugins_loaded' ) );
|
8 |
}
|
9 |
|
10 |
+
private function load_compatibilites() {
|
11 |
global $wp_version;
|
12 |
|
13 |
if ( function_exists( 'w3tc_add_ob_callback' ) || function_exists( 'w3tc_class_autoload' ) ) {
|
47 |
}
|
48 |
}
|
49 |
|
50 |
+
public function action_plugins_loaded() {
|
51 |
+
if ( function_exists( 'wpseo_auto_load' ) ) {
|
52 |
+
new Brizy_Compatibilities_YoastSeo();
|
53 |
+
}
|
54 |
+
}
|
55 |
+
|
56 |
private function is_plugin_active( $plugin_file ) {
|
57 |
|
58 |
if ( in_array( $plugin_file, apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
|
compatibilities/yoast-seo.php
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Compatibilities_YoastSeo {
|
4 |
+
|
5 |
+
public function __construct() {
|
6 |
+
add_filter( 'wpseo_twitter_image', array( $this, 'wpseo_twitter_image' ) );
|
7 |
+
}
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Yoast has a feature to add twitter share image.
|
11 |
+
* If this image or featured image is not added then
|
12 |
+
* it takes the first image from the post content.
|
13 |
+
* These action is made in the hook wp_head and we
|
14 |
+
* haven't replaced the urls yet. Here's why we see:
|
15 |
+
* <meta name="twitter:image" content="http://@brizy_SITE_URL_PLACEHOLDER@/?
|
16 |
+
*
|
17 |
+
* @param $img_url
|
18 |
+
*
|
19 |
+
* @return string
|
20 |
+
*/
|
21 |
+
public function wpseo_twitter_image( $img_url ) {
|
22 |
+
return Brizy_SiteUrlReplacer::restoreSiteUrl( $img_url );
|
23 |
+
}
|
24 |
+
}
|
config.php
CHANGED
@@ -8,13 +8,15 @@ class Brizy_Config {
|
|
8 |
const LOCAL_PAGE_MEDIA_STATIC_URL = '/brizy/media';
|
9 |
const LOCAL_PAGE_ASSET_STATIC_URL = '/brizy/%s';
|
10 |
const BRIZY_WP_EDITOR_ASSET_PATH = '/brizy/editor';
|
11 |
-
const MEDIA_IMAGE_URL = '/
|
|
|
12 |
|
13 |
const EDITOR_HOST_API = 'api.testblox.info';
|
14 |
const EDITOR_HOST_BASE = 'www.testblox.info';
|
15 |
const EDITOR_HOST_ORIGIN = 'testblox.info';
|
16 |
const EDITOR_HOST_PRIMARY = 'testblox.info';
|
17 |
|
|
|
18 |
const GATEWAY_URI = 'https://api.brizy.io';
|
19 |
|
20 |
const BRIZY_REGISTRATION_CREDENTIALS = '/wordpress/credentials';
|
@@ -33,7 +35,7 @@ class Brizy_Config {
|
|
33 |
const PLATFORM_EMAIL = "admin@admin.com";
|
34 |
|
35 |
const UPGRADE_TO_PRO_URL = "https://www.brizy.io/brizy-pro-pricing/";
|
36 |
-
const SUPPORT_URL = "https://
|
37 |
const ABOUT_URL = "https://brizy.io";
|
38 |
const SHORTPIXEL_CONFIG = "https://www.brizy.cloud/shortpixel.txt";
|
39 |
const GO_PRO_DASHBOARD_URL = "https://www.brizy.io/brizy-pro-pricing/?utm_source=wp-menu&utm_campaign=gopro&utm_medium=wp-dash/";
|
@@ -41,19 +43,19 @@ class Brizy_Config {
|
|
41 |
static public function getCompilerUrls() {
|
42 |
return new Brizy_Admin_UrlIterator(
|
43 |
array(
|
44 |
-
'http://compiler.brizy.io/compile',
|
45 |
-
'http://compiler1.brizycompiler.run/compile',
|
46 |
-
'http://compiler2.brizycompiler.run/compile'
|
47 |
)
|
48 |
);
|
49 |
}
|
50 |
|
51 |
-
static public function
|
52 |
return new Brizy_Admin_UrlIterator(
|
53 |
array(
|
54 |
-
'https://static.brizy.io/%s
|
55 |
-
'http://static1.brizycompiler.run/%s
|
56 |
-
'http://static2.brizycompiler.run/%s
|
57 |
)
|
58 |
);
|
59 |
}
|
@@ -61,9 +63,9 @@ class Brizy_Config {
|
|
61 |
static public function getEditorBaseUrls() {
|
62 |
return new Brizy_Admin_UrlIterator(
|
63 |
array(
|
64 |
-
'https://
|
65 |
-
'http://
|
66 |
-
'http://
|
67 |
)
|
68 |
);
|
69 |
}
|
@@ -71,7 +73,7 @@ class Brizy_Config {
|
|
71 |
static public function getOptimizerConfig( $className ) {
|
72 |
switch ( $className ) {
|
73 |
case 'Brizy_Editor_Asset_Optimize_ShortpixelOptimizer':
|
74 |
-
return array('API_KEY'=>'uunlmNjZZBtKLfCSg4OK');
|
75 |
}
|
76 |
}
|
77 |
|
8 |
const LOCAL_PAGE_MEDIA_STATIC_URL = '/brizy/media';
|
9 |
const LOCAL_PAGE_ASSET_STATIC_URL = '/brizy/%s';
|
10 |
const BRIZY_WP_EDITOR_ASSET_PATH = '/brizy/editor';
|
11 |
+
const MEDIA_IMAGE_URL = '/media';
|
12 |
+
const FONTS_URL = 'https://www.brizy.cloud/fonts/wp?path=%s';
|
13 |
|
14 |
const EDITOR_HOST_API = 'api.testblox.info';
|
15 |
const EDITOR_HOST_BASE = 'www.testblox.info';
|
16 |
const EDITOR_HOST_ORIGIN = 'testblox.info';
|
17 |
const EDITOR_HOST_PRIMARY = 'testblox.info';
|
18 |
|
19 |
+
// this seems like it's not used any more. Leaving untouched
|
20 |
const GATEWAY_URI = 'https://api.brizy.io';
|
21 |
|
22 |
const BRIZY_REGISTRATION_CREDENTIALS = '/wordpress/credentials';
|
35 |
const PLATFORM_EMAIL = "admin@admin.com";
|
36 |
|
37 |
const UPGRADE_TO_PRO_URL = "https://www.brizy.io/brizy-pro-pricing/";
|
38 |
+
const SUPPORT_URL = "https://support.brizy.io";
|
39 |
const ABOUT_URL = "https://brizy.io";
|
40 |
const SHORTPIXEL_CONFIG = "https://www.brizy.cloud/shortpixel.txt";
|
41 |
const GO_PRO_DASHBOARD_URL = "https://www.brizy.io/brizy-pro-pricing/?utm_source=wp-menu&utm_campaign=gopro&utm_medium=wp-dash/";
|
43 |
static public function getCompilerUrls() {
|
44 |
return new Brizy_Admin_UrlIterator(
|
45 |
array(
|
46 |
+
'http://compiler.brizy.io/compile/v2',
|
47 |
+
'http://compiler1.brizycompiler.run/compile/v2',
|
48 |
+
'http://compiler2.brizycompiler.run/compile/v2'
|
49 |
)
|
50 |
);
|
51 |
}
|
52 |
|
53 |
+
static public function getStaticUrls() {
|
54 |
return new Brizy_Admin_UrlIterator(
|
55 |
array(
|
56 |
+
'https://static.brizy.io/builds/free/%s',
|
57 |
+
'http://static1.brizycompiler.run/builds/free/%s',
|
58 |
+
'http://static2.brizycompiler.run/builds/free/%s'
|
59 |
)
|
60 |
);
|
61 |
}
|
63 |
static public function getEditorBaseUrls() {
|
64 |
return new Brizy_Admin_UrlIterator(
|
65 |
array(
|
66 |
+
'https://brizy.cloud',
|
67 |
+
'http://media1.brizycompiler.run',
|
68 |
+
'http://media2.brizycompiler.run'
|
69 |
)
|
70 |
);
|
71 |
}
|
73 |
static public function getOptimizerConfig( $className ) {
|
74 |
switch ( $className ) {
|
75 |
case 'Brizy_Editor_Asset_Optimize_ShortpixelOptimizer':
|
76 |
+
return array( 'API_KEY' => 'uunlmNjZZBtKLfCSg4OK' );
|
77 |
}
|
78 |
}
|
79 |
|
content/providers/free-provider.php
CHANGED
@@ -20,7 +20,8 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
|
|
20 |
new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
|
21 |
new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' ),
|
22 |
new Brizy_Content_Placeholders_UniquePageUrl( 'Uniquer page url','brizy_dc_current_page_unique_url' ),
|
23 |
-
new Brizy_Content_Placeholders_Simple( 'WP Language', 'brizy_dc_page_language', get_locale() )
|
|
|
24 |
);
|
25 |
}
|
26 |
}
|
20 |
new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
|
21 |
new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' ),
|
22 |
new Brizy_Content_Placeholders_UniquePageUrl( 'Uniquer page url','brizy_dc_current_page_unique_url' ),
|
23 |
+
new Brizy_Content_Placeholders_Simple( 'WP Language', 'brizy_dc_page_language', get_locale() ),
|
24 |
+
new Brizy_Content_Placeholders_Simple( 'Ajax Url', 'brizy_dc_ajax_url', admin_url( 'admin-ajax.php' ) )
|
25 |
);
|
26 |
}
|
27 |
}
|
editor.php
CHANGED
@@ -30,7 +30,11 @@ class Brizy_Editor {
|
|
30 |
|
31 |
Brizy_Admin_Flash::instance()->initialize(); // initialize flash
|
32 |
add_action( 'after_setup_theme', array( $this, 'loadCompatibilityClasses' ), - 2000 );
|
33 |
-
|
|
|
|
|
|
|
|
|
34 |
add_action( 'init', array( $this, 'initialize' ), - 2000 );
|
35 |
}
|
36 |
|
@@ -56,8 +60,8 @@ class Brizy_Editor {
|
|
56 |
$migrationManager->runMigrations( BRIZY_VERSION );
|
57 |
} catch ( Brizy_Admin_Migrations_UpgradeRequiredException $e ) {
|
58 |
Brizy_Admin_Flash::instance()->add_error( 'Please upgrade Brizy to the latest version.' );
|
59 |
-
|
60 |
-
|
61 |
}
|
62 |
}
|
63 |
|
@@ -66,6 +70,7 @@ class Brizy_Editor {
|
|
66 |
Brizy_Admin_FormEntries::_init();
|
67 |
Brizy_Admin_Templates::_init();
|
68 |
Brizy_Admin_Blocks_Main::_init();
|
|
|
69 |
Brizy_Admin_OptimizeImages::_init();
|
70 |
|
71 |
|
@@ -91,7 +96,7 @@ class Brizy_Editor {
|
|
91 |
|
92 |
try {
|
93 |
// do not delete this line
|
94 |
-
$user
|
95 |
|
96 |
if ( $pid ) {
|
97 |
$post = Brizy_Editor_Post::get( $pid );
|
@@ -122,7 +127,7 @@ class Brizy_Editor {
|
|
122 |
|
123 |
public function revisionsToKeep( $num, $post ) {
|
124 |
try {
|
125 |
-
if(in_array($post->post_type,array( Brizy_Editor_Project::BRIZY_PROJECT ))) {
|
126 |
$num = BRIZY_MAX_REVISIONS_TO_KEEP;
|
127 |
}
|
128 |
|
@@ -130,6 +135,7 @@ class Brizy_Editor {
|
|
130 |
$num = BRIZY_MAX_REVISIONS_TO_KEEP;
|
131 |
}
|
132 |
} catch ( Exception $e ) {
|
|
|
133 |
|
134 |
}
|
135 |
|
@@ -195,22 +201,23 @@ class Brizy_Editor {
|
|
195 |
function registerPageTemplates( $templates ) {
|
196 |
return array_merge( $templates,
|
197 |
array(
|
198 |
-
Brizy_Config::BRIZY_BLANK_TEMPLATE_FILE_NAME => __bt('brizy','Brizy').__( ' Template', 'brizy' )
|
199 |
) );
|
200 |
}
|
201 |
|
202 |
|
203 |
public function registerCustomPostTemplates() {
|
204 |
Brizy_Editor_Project::registerCustomPostType();
|
205 |
-
Brizy_Admin_Templates::registerCustomPostTemplate();
|
206 |
Brizy_Admin_Blocks_Main::registerCustomPosts();
|
207 |
-
|
|
|
|
|
208 |
}
|
209 |
|
210 |
/**
|
211 |
* @param Brizy_Editor_Post $post
|
212 |
*/
|
213 |
-
public function handleFrontEndEditor(
|
214 |
try {
|
215 |
$main = new Brizy_Public_Main( $post );
|
216 |
$main->initialize_front_end();
|
@@ -222,7 +229,7 @@ class Brizy_Editor {
|
|
222 |
/**
|
223 |
* @param Brizy_Editor_Post $post
|
224 |
*/
|
225 |
-
public function handleBackEndEditor(
|
226 |
|
227 |
try {
|
228 |
$main = new Brizy_Public_Main( $post );
|
@@ -420,7 +427,7 @@ class Brizy_Editor {
|
|
420 |
}
|
421 |
|
422 |
public function get_name() {
|
423 |
-
return __bt('brizy','Brizy');
|
424 |
}
|
425 |
|
426 |
protected function get_post_types() {
|
30 |
|
31 |
Brizy_Admin_Flash::instance()->initialize(); // initialize flash
|
32 |
add_action( 'after_setup_theme', array( $this, 'loadCompatibilityClasses' ), - 2000 );
|
33 |
+
try {
|
34 |
+
add_action( 'init', array( $this, 'runMigrations' ), - 3000 );
|
35 |
+
} catch ( Exception $e ) {
|
36 |
+
return;
|
37 |
+
}
|
38 |
add_action( 'init', array( $this, 'initialize' ), - 2000 );
|
39 |
}
|
40 |
|
60 |
$migrationManager->runMigrations( BRIZY_VERSION );
|
61 |
} catch ( Brizy_Admin_Migrations_UpgradeRequiredException $e ) {
|
62 |
Brizy_Admin_Flash::instance()->add_error( 'Please upgrade Brizy to the latest version.' );
|
63 |
+
Brizy_Logger::instance()->critical( 'Unknown migration found. The plugin must be downgraded to the previous version' );
|
64 |
+
throw new Exception( 'Halt plugin execution!' );
|
65 |
}
|
66 |
}
|
67 |
|
70 |
Brizy_Admin_FormEntries::_init();
|
71 |
Brizy_Admin_Templates::_init();
|
72 |
Brizy_Admin_Blocks_Main::_init();
|
73 |
+
Brizy_Admin_Fonts_Main::_init();
|
74 |
Brizy_Admin_OptimizeImages::_init();
|
75 |
|
76 |
|
96 |
|
97 |
try {
|
98 |
// do not delete this line
|
99 |
+
$user = Brizy_Editor_User::get();
|
100 |
|
101 |
if ( $pid ) {
|
102 |
$post = Brizy_Editor_Post::get( $pid );
|
127 |
|
128 |
public function revisionsToKeep( $num, $post ) {
|
129 |
try {
|
130 |
+
if ( in_array( $post->post_type, array( Brizy_Editor_Project::BRIZY_PROJECT ) ) ) {
|
131 |
$num = BRIZY_MAX_REVISIONS_TO_KEEP;
|
132 |
}
|
133 |
|
135 |
$num = BRIZY_MAX_REVISIONS_TO_KEEP;
|
136 |
}
|
137 |
} catch ( Exception $e ) {
|
138 |
+
Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
|
139 |
|
140 |
}
|
141 |
|
201 |
function registerPageTemplates( $templates ) {
|
202 |
return array_merge( $templates,
|
203 |
array(
|
204 |
+
Brizy_Config::BRIZY_BLANK_TEMPLATE_FILE_NAME => __bt( 'brizy', 'Brizy' ) . __( ' Template', 'brizy' )
|
205 |
) );
|
206 |
}
|
207 |
|
208 |
|
209 |
public function registerCustomPostTemplates() {
|
210 |
Brizy_Editor_Project::registerCustomPostType();
|
|
|
211 |
Brizy_Admin_Blocks_Main::registerCustomPosts();
|
212 |
+
Brizy_Admin_Fonts_Main::registerCustomPosts();
|
213 |
+
Brizy_Admin_FormEntries::registerCustomPost();
|
214 |
+
Brizy_Admin_Templates::registerCustomPostTemplate();
|
215 |
}
|
216 |
|
217 |
/**
|
218 |
* @param Brizy_Editor_Post $post
|
219 |
*/
|
220 |
+
public function handleFrontEndEditor( $post ) {
|
221 |
try {
|
222 |
$main = new Brizy_Public_Main( $post );
|
223 |
$main->initialize_front_end();
|
229 |
/**
|
230 |
* @param Brizy_Editor_Post $post
|
231 |
*/
|
232 |
+
public function handleBackEndEditor( $post ) {
|
233 |
|
234 |
try {
|
235 |
$main = new Brizy_Public_Main( $post );
|
427 |
}
|
428 |
|
429 |
public function get_name() {
|
430 |
+
return __bt( 'brizy', 'Brizy' );
|
431 |
}
|
432 |
|
433 |
protected function get_post_types() {
|
editor/api.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class Brizy_Editor_API {
|
4 |
|
5 |
const nonce = 'brizy-api';
|
6 |
const AJAX_GET = 'brizy_editor_get_items';
|
7 |
const AJAX_UPDATE = 'brizy_update_item';
|
8 |
-
const
|
9 |
-
const
|
10 |
const AJAX_MEDIA = 'brizy_media';
|
11 |
const AJAX_SIDEBARS = 'brizy_sidebars';
|
12 |
const AJAX_SIDEBAR_CONTENT = 'brizy_sidebar_content';
|
@@ -17,6 +17,7 @@ class Brizy_Editor_API {
|
|
17 |
const AJAX_JWT_TOKEN = 'brizy_multipass_create';
|
18 |
|
19 |
const AJAX_UPDATE_MENU_DATA = 'brizy_update_menu_data';
|
|
|
20 |
const AJAX_UPDATE_MENU_ITEM_DATA = 'brizy_update_menu_item_data';
|
21 |
|
22 |
const AJAX_DOWNLOAD_MEDIA = 'brizy_download_media';
|
@@ -25,6 +26,7 @@ class Brizy_Editor_API {
|
|
25 |
const AJAX_SET_FEATURED_IMAGE = 'brizy_set_featured_image';
|
26 |
const AJAX_SET_FEATURED_IMAGE_FOCAL_POINT = 'brizy_set_featured_image_focal_point';
|
27 |
const AJAX_REMOVE_FEATURED_IMAGE = 'brizy_remove_featured_image';
|
|
|
28 |
|
29 |
/**
|
30 |
* @var Brizy_Editor_Post
|
@@ -48,16 +50,15 @@ class Brizy_Editor_API {
|
|
48 |
|
49 |
$this->post = $post;
|
50 |
|
51 |
-
|
52 |
}
|
53 |
|
54 |
-
|
55 |
-
|
56 |
if ( Brizy_Editor::is_user_allowed() ) {
|
57 |
add_action( 'wp_ajax_' . self::AJAX_GET, array( $this, 'get_item' ) );
|
58 |
add_action( 'wp_ajax_' . self::AJAX_UPDATE, array( $this, 'update_item' ) );
|
59 |
-
add_action( 'wp_ajax_' . self::
|
60 |
-
add_action( 'wp_ajax_' . self::
|
61 |
add_action( 'wp_ajax_' . self::AJAX_SIDEBARS, array( $this, 'get_sidebars' ) );
|
62 |
add_action( 'wp_ajax_' . self::AJAX_SHORTCODE_CONTENT, array( $this, 'shortcode_content' ) );
|
63 |
add_action( 'wp_ajax_' . self::AJAX_GET_POST_OBJECTS, array( $this, 'get_post_objects' ) );
|
@@ -71,14 +72,22 @@ class Brizy_Editor_API {
|
|
71 |
$this,
|
72 |
'set_featured_image_focal_point'
|
73 |
) );
|
74 |
-
add_action( 'wp_ajax_' . self::
|
75 |
-
|
76 |
}
|
|
|
77 |
|
|
|
|
|
78 |
}
|
79 |
|
|
|
|
|
|
|
|
|
|
|
80 |
public function set_featured_image() {
|
81 |
-
$this->
|
82 |
|
83 |
if ( ! isset( $_REQUEST['attachmentId'] ) ) {
|
84 |
$this->error( 400, 'Bad request' );
|
@@ -96,6 +105,8 @@ class Brizy_Editor_API {
|
|
96 |
}
|
97 |
|
98 |
public function set_featured_image_focal_point() {
|
|
|
|
|
99 |
if ( ! isset( $_REQUEST['attachmentId'] ) || ! isset( $_REQUEST['pointX'] ) || ! isset( $_REQUEST['pointY'] ) ) {
|
100 |
$this->error( 400, 'Bad request' );
|
101 |
}
|
@@ -114,7 +125,7 @@ class Brizy_Editor_API {
|
|
114 |
}
|
115 |
|
116 |
public function remove_featured_image() {
|
117 |
-
$this->
|
118 |
|
119 |
if ( $this->post && $this->post->uses_editor() ) {
|
120 |
delete_post_thumbnail( $this->post->get_id() );
|
@@ -127,7 +138,7 @@ class Brizy_Editor_API {
|
|
127 |
|
128 |
|
129 |
public function multipass_create() {
|
130 |
-
|
131 |
try {
|
132 |
$client_id = $_REQUEST['client_id'];
|
133 |
|
@@ -182,46 +193,47 @@ class Brizy_Editor_API {
|
|
182 |
/**
|
183 |
* @internal
|
184 |
**/
|
185 |
-
public function
|
186 |
try {
|
187 |
-
$this->
|
188 |
-
$data =
|
189 |
|
190 |
$this->success( $data );
|
191 |
} catch ( Exception $exception ) {
|
192 |
Brizy_Logger::instance()->exception( $exception );
|
193 |
$this->error( $exception->getCode(), $exception->getMessage() );
|
194 |
-
exit;
|
195 |
}
|
196 |
}
|
197 |
|
198 |
/**
|
199 |
* @internal
|
200 |
*/
|
201 |
-
public function
|
202 |
try {
|
203 |
-
$this->
|
204 |
|
205 |
// update project globas
|
206 |
-
$
|
207 |
|
208 |
$project = Brizy_Editor_Project::get();
|
209 |
-
//$post_id = (int) $this->param( 'post' );
|
210 |
-
$project->setGlobalsAsJson( $data );
|
211 |
|
212 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
$project->auto_save_post();
|
214 |
} else {
|
215 |
$project->save();
|
216 |
$project->save_wp_post();
|
217 |
|
218 |
-
Brizy_Editor_Post::clear_compiled_cache();
|
219 |
-
|
220 |
do_action( 'brizy_global_data_updated' );
|
221 |
}
|
222 |
|
223 |
-
|
224 |
-
$this->success( $this->create_post_globals() );
|
225 |
} catch ( Exception $exception ) {
|
226 |
Brizy_Logger::instance()->exception( $exception );
|
227 |
$this->error( $exception->getCode(), $exception->getMessage() );
|
@@ -234,7 +246,7 @@ class Brizy_Editor_API {
|
|
234 |
**/
|
235 |
public function get_item() {
|
236 |
try {
|
237 |
-
$this->
|
238 |
$post_arr = self::create_post_arr( $this->post );
|
239 |
$post_arr['is_index'] = true; // this is for the case when the page we return is not an index page.. but the editor wants one.
|
240 |
$this->success( array( $post_arr ) );
|
@@ -250,6 +262,8 @@ class Brizy_Editor_API {
|
|
250 |
**/
|
251 |
public function update_item() {
|
252 |
try {
|
|
|
|
|
253 |
$data = stripslashes( $this->param( 'data' ) );
|
254 |
$atemplate = $this->param( 'template' );
|
255 |
|
@@ -262,7 +276,7 @@ class Brizy_Editor_API {
|
|
262 |
$this->post->set_editor_version( BRIZY_EDITOR_VERSION );
|
263 |
}
|
264 |
|
265 |
-
if ( (int) $this->param( 'is_autosave' ) ) {
|
266 |
$this->post->auto_save_post();
|
267 |
} else {
|
268 |
$this->post->compile_page();
|
@@ -280,6 +294,7 @@ class Brizy_Editor_API {
|
|
280 |
|
281 |
public function shortcode_content() {
|
282 |
try {
|
|
|
283 |
|
284 |
if ( isset( $_REQUEST['shortcode'] ) ) {
|
285 |
$shortcode = stripslashes( $_REQUEST['shortcode'] );
|
@@ -300,6 +315,7 @@ class Brizy_Editor_API {
|
|
300 |
public function get_post_objects() {
|
301 |
|
302 |
global $wp_post_types;
|
|
|
303 |
|
304 |
$searchTerm = $this->param( 'filterTerm' );
|
305 |
$postType = $this->param( 'postType' ) ? $this->param( 'postType' ) : null;
|
@@ -311,16 +327,16 @@ class Brizy_Editor_API {
|
|
311 |
} ) );
|
312 |
}
|
313 |
|
314 |
-
|
315 |
$posts = $this->get_post_list( $searchTerm, $postType, $excludePostType );
|
316 |
|
317 |
-
|
318 |
}
|
319 |
|
320 |
-
|
321 |
public function get_sidebars() {
|
322 |
global $wp_registered_sidebars;
|
323 |
|
|
|
|
|
324 |
$items = array();
|
325 |
|
326 |
foreach ( $wp_registered_sidebars as $sidebar ) {
|
@@ -334,31 +350,16 @@ class Brizy_Editor_API {
|
|
334 |
$this->success( $items );
|
335 |
}
|
336 |
|
337 |
-
protected function
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
}
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
}
|
348 |
-
|
349 |
-
protected function success( $data ) {
|
350 |
-
wp_send_json( $data );
|
351 |
-
}
|
352 |
-
|
353 |
-
protected function static_url() {
|
354 |
-
return Brizy_Editor::get()->get_url( '/includes/editor/static' );
|
355 |
-
}
|
356 |
-
|
357 |
-
private function authorize() {
|
358 |
-
if ( ! wp_verify_nonce( $_REQUEST['hash'], self::nonce ) ) {
|
359 |
-
wp_send_json_error( array( 'code' => 400, 'message' => 'Bad request' ), 400 );
|
360 |
-
}
|
361 |
-
}
|
362 |
|
363 |
public static function create_post_arr( Brizy_Editor_Post $post ) {
|
364 |
|
@@ -379,21 +380,8 @@ class Brizy_Editor_API {
|
|
379 |
return $global;
|
380 |
}
|
381 |
|
382 |
-
/**
|
383 |
-
* @return array
|
384 |
-
* @throws Brizy_Editor_Exceptions_NotFound
|
385 |
-
*/
|
386 |
-
public function create_post_globals() {
|
387 |
-
$project = Brizy_Editor_Project::get();
|
388 |
-
$globals = array(
|
389 |
-
'id' => $project->getId(),
|
390 |
-
'gb' => $project->getGlobalsAsJson(),
|
391 |
-
);
|
392 |
-
|
393 |
-
return $globals;
|
394 |
-
}
|
395 |
|
396 |
-
|
397 |
|
398 |
global $wp_post_types;
|
399 |
|
@@ -402,7 +390,13 @@ class Brizy_Editor_API {
|
|
402 |
$post_query = array(
|
403 |
'post_type' => $postType,
|
404 |
'posts_per_page' => - 1,
|
405 |
-
'post_status' => $postType == 'attachment' ? 'inherit' : array(
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
'orderby' => 'post_title',
|
407 |
'order' => 'ASC'
|
408 |
);
|
@@ -451,7 +445,7 @@ class Brizy_Editor_API {
|
|
451 |
|
452 |
|
453 |
public function get_menu_list() {
|
454 |
-
|
455 |
}
|
456 |
|
457 |
/**
|
@@ -460,18 +454,24 @@ class Brizy_Editor_API {
|
|
460 |
public function get_terms() {
|
461 |
|
462 |
try {
|
|
|
|
|
463 |
$taxonomy = $this->param( 'taxonomy' );
|
464 |
|
465 |
$terms = (array) get_terms( array( 'taxonomy' => $taxonomy, 'hide_empty' => false ) );
|
466 |
|
467 |
-
|
|
|
468 |
} catch ( Exception $e ) {
|
469 |
-
|
|
|
470 |
}
|
471 |
}
|
472 |
|
473 |
public function download_media() {
|
474 |
try {
|
|
|
|
|
475 |
$project = Brizy_Editor_Project::get();
|
476 |
$apost = (int) $_REQUEST['post_id'];
|
477 |
$post = Brizy_Editor_Post::get( $apost );
|
@@ -479,16 +479,16 @@ class Brizy_Editor_API {
|
|
479 |
$media_cacher = new Brizy_Editor_CropCacheMedia( $project, $post->get_parent_id() );
|
480 |
$media_cacher->download_original_image( $_REQUEST['media'] );
|
481 |
|
482 |
-
|
483 |
} catch ( Exception $e ) {
|
484 |
-
|
485 |
}
|
486 |
}
|
487 |
|
488 |
public function get_media_key() {
|
489 |
try {
|
490 |
session_write_close();
|
491 |
-
|
492 |
$apost = (int) $_REQUEST['post_id'];
|
493 |
$attachment_id = (int) $_REQUEST['attachment_id'];
|
494 |
|
@@ -500,7 +500,9 @@ class Brizy_Editor_API {
|
|
500 |
|
501 |
$this->success( array( 'uid' => $uid ) );
|
502 |
|
503 |
-
} catch ( Exception $
|
|
|
|
|
504 |
return;
|
505 |
}
|
506 |
}
|
1 |
<?php
|
2 |
|
3 |
+
class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
|
4 |
|
5 |
const nonce = 'brizy-api';
|
6 |
const AJAX_GET = 'brizy_editor_get_items';
|
7 |
const AJAX_UPDATE = 'brizy_update_item';
|
8 |
+
const AJAX_GET_PROJECT = 'brizy_get_project';
|
9 |
+
const AJAX_SET_PROJECT = 'brizy_set_project';
|
10 |
const AJAX_MEDIA = 'brizy_media';
|
11 |
const AJAX_SIDEBARS = 'brizy_sidebars';
|
12 |
const AJAX_SIDEBAR_CONTENT = 'brizy_sidebar_content';
|
17 |
const AJAX_JWT_TOKEN = 'brizy_multipass_create';
|
18 |
|
19 |
const AJAX_UPDATE_MENU_DATA = 'brizy_update_menu_data';
|
20 |
+
const AJAX_UPDATE_EDITOR_META_DATA = 'brizy_update_editor_meta_data';
|
21 |
const AJAX_UPDATE_MENU_ITEM_DATA = 'brizy_update_menu_item_data';
|
22 |
|
23 |
const AJAX_DOWNLOAD_MEDIA = 'brizy_download_media';
|
26 |
const AJAX_SET_FEATURED_IMAGE = 'brizy_set_featured_image';
|
27 |
const AJAX_SET_FEATURED_IMAGE_FOCAL_POINT = 'brizy_set_featured_image_focal_point';
|
28 |
const AJAX_REMOVE_FEATURED_IMAGE = 'brizy_remove_featured_image';
|
29 |
+
const AJAX_TIMESTAMP = 'brizy_timestamp';
|
30 |
|
31 |
/**
|
32 |
* @var Brizy_Editor_Post
|
50 |
|
51 |
$this->post = $post;
|
52 |
|
53 |
+
parent::__construct();
|
54 |
}
|
55 |
|
56 |
+
protected function initializeApiActions() {
|
|
|
57 |
if ( Brizy_Editor::is_user_allowed() ) {
|
58 |
add_action( 'wp_ajax_' . self::AJAX_GET, array( $this, 'get_item' ) );
|
59 |
add_action( 'wp_ajax_' . self::AJAX_UPDATE, array( $this, 'update_item' ) );
|
60 |
+
add_action( 'wp_ajax_' . self::AJAX_GET_PROJECT, array( $this, 'get_project' ) );
|
61 |
+
add_action( 'wp_ajax_' . self::AJAX_SET_PROJECT, array( $this, 'set_project' ) );
|
62 |
add_action( 'wp_ajax_' . self::AJAX_SIDEBARS, array( $this, 'get_sidebars' ) );
|
63 |
add_action( 'wp_ajax_' . self::AJAX_SHORTCODE_CONTENT, array( $this, 'shortcode_content' ) );
|
64 |
add_action( 'wp_ajax_' . self::AJAX_GET_POST_OBJECTS, array( $this, 'get_post_objects' ) );
|
72 |
$this,
|
73 |
'set_featured_image_focal_point'
|
74 |
) );
|
75 |
+
add_action( 'wp_ajax_' . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
|
76 |
+
add_action( 'wp_ajax_nopriv_' . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
|
77 |
}
|
78 |
+
}
|
79 |
|
80 |
+
protected function getRequestNonce() {
|
81 |
+
return self::nonce;
|
82 |
}
|
83 |
|
84 |
+
public function timestamp() {
|
85 |
+
$this->success( array( 'timestamp' => time() ) );
|
86 |
+
}
|
87 |
+
|
88 |
+
|
89 |
public function set_featured_image() {
|
90 |
+
$this->verifyNonce( self::nonce );
|
91 |
|
92 |
if ( ! isset( $_REQUEST['attachmentId'] ) ) {
|
93 |
$this->error( 400, 'Bad request' );
|
105 |
}
|
106 |
|
107 |
public function set_featured_image_focal_point() {
|
108 |
+
$this->verifyNonce( self::nonce );
|
109 |
+
|
110 |
if ( ! isset( $_REQUEST['attachmentId'] ) || ! isset( $_REQUEST['pointX'] ) || ! isset( $_REQUEST['pointY'] ) ) {
|
111 |
$this->error( 400, 'Bad request' );
|
112 |
}
|
125 |
}
|
126 |
|
127 |
public function remove_featured_image() {
|
128 |
+
$this->verifyNonce( self::nonce );
|
129 |
|
130 |
if ( $this->post && $this->post->uses_editor() ) {
|
131 |
delete_post_thumbnail( $this->post->get_id() );
|
138 |
|
139 |
|
140 |
public function multipass_create() {
|
141 |
+
$this->verifyNonce( self::nonce );
|
142 |
try {
|
143 |
$client_id = $_REQUEST['client_id'];
|
144 |
|
193 |
/**
|
194 |
* @internal
|
195 |
**/
|
196 |
+
public function get_project() {
|
197 |
try {
|
198 |
+
$this->verifyNonce( self::nonce );
|
199 |
+
$data = Brizy_Editor_Project::get()->create_post_data();
|
200 |
|
201 |
$this->success( $data );
|
202 |
} catch ( Exception $exception ) {
|
203 |
Brizy_Logger::instance()->exception( $exception );
|
204 |
$this->error( $exception->getCode(), $exception->getMessage() );
|
|
|
205 |
}
|
206 |
}
|
207 |
|
208 |
/**
|
209 |
* @internal
|
210 |
*/
|
211 |
+
public function set_project() {
|
212 |
try {
|
213 |
+
$this->verifyNonce( self::nonce );
|
214 |
|
215 |
// update project globas
|
216 |
+
$meta = stripslashes( $this->param( 'data' ) );
|
217 |
|
218 |
$project = Brizy_Editor_Project::get();
|
|
|
|
|
219 |
|
220 |
+
if ( ! $meta ) {
|
221 |
+
Brizy_Logger::instance()->error( 'Invalid project meta provided', [ 'data' => $this->param( 'data' ) ] );
|
222 |
+
throw new Exception( '', 400 );
|
223 |
+
}
|
224 |
+
|
225 |
+
$project->setDataAsJson( $meta );
|
226 |
+
|
227 |
+
if ( (int) $this->param( 'is_autosave' ) == 1 ) {
|
228 |
$project->auto_save_post();
|
229 |
} else {
|
230 |
$project->save();
|
231 |
$project->save_wp_post();
|
232 |
|
|
|
|
|
233 |
do_action( 'brizy_global_data_updated' );
|
234 |
}
|
235 |
|
236 |
+
$this->success( $project->create_post_data() );
|
|
|
237 |
} catch ( Exception $exception ) {
|
238 |
Brizy_Logger::instance()->exception( $exception );
|
239 |
$this->error( $exception->getCode(), $exception->getMessage() );
|
246 |
**/
|
247 |
public function get_item() {
|
248 |
try {
|
249 |
+
$this->verifyNonce( self::nonce );
|
250 |
$post_arr = self::create_post_arr( $this->post );
|
251 |
$post_arr['is_index'] = true; // this is for the case when the page we return is not an index page.. but the editor wants one.
|
252 |
$this->success( array( $post_arr ) );
|
262 |
**/
|
263 |
public function update_item() {
|
264 |
try {
|
265 |
+
$this->verifyNonce( self::nonce );
|
266 |
+
|
267 |
$data = stripslashes( $this->param( 'data' ) );
|
268 |
$atemplate = $this->param( 'template' );
|
269 |
|
276 |
$this->post->set_editor_version( BRIZY_EDITOR_VERSION );
|
277 |
}
|
278 |
|
279 |
+
if ( (int) $this->param( 'is_autosave' ) == 1 ) {
|
280 |
$this->post->auto_save_post();
|
281 |
} else {
|
282 |
$this->post->compile_page();
|
294 |
|
295 |
public function shortcode_content() {
|
296 |
try {
|
297 |
+
$this->verifyNonce( self::nonce );
|
298 |
|
299 |
if ( isset( $_REQUEST['shortcode'] ) ) {
|
300 |
$shortcode = stripslashes( $_REQUEST['shortcode'] );
|
315 |
public function get_post_objects() {
|
316 |
|
317 |
global $wp_post_types;
|
318 |
+
$this->verifyNonce( self::nonce );
|
319 |
|
320 |
$searchTerm = $this->param( 'filterTerm' );
|
321 |
$postType = $this->param( 'postType' ) ? $this->param( 'postType' ) : null;
|
327 |
} ) );
|
328 |
}
|
329 |
|
|
|
330 |
$posts = $this->get_post_list( $searchTerm, $postType, $excludePostType );
|
331 |
|
332 |
+
$this->success( array( 'filter_term' => $searchTerm, 'posts' => $posts ) );
|
333 |
}
|
334 |
|
|
|
335 |
public function get_sidebars() {
|
336 |
global $wp_registered_sidebars;
|
337 |
|
338 |
+
$this->verifyNonce( self::nonce );
|
339 |
+
|
340 |
$items = array();
|
341 |
|
342 |
foreach ( $wp_registered_sidebars as $sidebar ) {
|
350 |
$this->success( $items );
|
351 |
}
|
352 |
|
353 |
+
// protected function error( $code, $message ) {
|
354 |
+
// wp_send_json_error( array( 'code' => $code, 'message' => $message ), $code );
|
355 |
+
// }
|
356 |
+
//
|
357 |
+
// protected function success( $data ) {
|
358 |
+
// wp_send_json( $data );
|
359 |
+
// }
|
360 |
+
// protected function static_url() {
|
361 |
+
// return Brizy_Editor::get()->get_url( '/includes/editor/static' );
|
362 |
+
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
|
364 |
public static function create_post_arr( Brizy_Editor_Post $post ) {
|
365 |
|
380 |
return $global;
|
381 |
}
|
382 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
|
384 |
+
private function get_post_list( $searchTerm, $postType, $excludePostType = array() ) {
|
385 |
|
386 |
global $wp_post_types;
|
387 |
|
390 |
$post_query = array(
|
391 |
'post_type' => $postType,
|
392 |
'posts_per_page' => - 1,
|
393 |
+
'post_status' => $postType == 'attachment' ? 'inherit' : array(
|
394 |
+
'publish',
|
395 |
+
'pending',
|
396 |
+
'draft',
|
397 |
+
'future',
|
398 |
+
'private'
|
399 |
+
),
|
400 |
'orderby' => 'post_title',
|
401 |
'order' => 'ASC'
|
402 |
);
|
445 |
|
446 |
|
447 |
public function get_menu_list() {
|
448 |
+
$this->success( wp_get_nav_menus( array( 'hide_empty' => true ) ), 200 );
|
449 |
}
|
450 |
|
451 |
/**
|
454 |
public function get_terms() {
|
455 |
|
456 |
try {
|
457 |
+
$this->verifyNonce( self::nonce );
|
458 |
+
|
459 |
$taxonomy = $this->param( 'taxonomy' );
|
460 |
|
461 |
$terms = (array) get_terms( array( 'taxonomy' => $taxonomy, 'hide_empty' => false ) );
|
462 |
|
463 |
+
$this->success( array_values( $terms ) );
|
464 |
+
|
465 |
} catch ( Exception $e ) {
|
466 |
+
Brizy_Logger::instance()->error( $e->getMessage(), [ $e ] );
|
467 |
+
$this->error( 500, $e->getMessage() );
|
468 |
}
|
469 |
}
|
470 |
|
471 |
public function download_media() {
|
472 |
try {
|
473 |
+
$this->verifyNonce( self::nonce );
|
474 |
+
|
475 |
$project = Brizy_Editor_Project::get();
|
476 |
$apost = (int) $_REQUEST['post_id'];
|
477 |
$post = Brizy_Editor_Post::get( $apost );
|
479 |
$media_cacher = new Brizy_Editor_CropCacheMedia( $project, $post->get_parent_id() );
|
480 |
$media_cacher->download_original_image( $_REQUEST['media'] );
|
481 |
|
482 |
+
$this->success( array(), 200 );
|
483 |
} catch ( Exception $e ) {
|
484 |
+
$this->error( 500, $e->getMessage() );
|
485 |
}
|
486 |
}
|
487 |
|
488 |
public function get_media_key() {
|
489 |
try {
|
490 |
session_write_close();
|
491 |
+
$this->verifyNonce( self::nonce );
|
492 |
$apost = (int) $_REQUEST['post_id'];
|
493 |
$attachment_id = (int) $_REQUEST['attachment_id'];
|
494 |
|
500 |
|
501 |
$this->success( array( 'uid' => $uid ) );
|
502 |
|
503 |
+
} catch ( Exception $e ) {
|
504 |
+
Brizy_Logger::instance()->error( $e->getMessage(), [ $e ] );
|
505 |
+
|
506 |
return;
|
507 |
}
|
508 |
}
|
editor/api/client.php
CHANGED
@@ -186,22 +186,21 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
|
|
186 |
*/
|
187 |
public function compile_page( Brizy_Editor_Project $project, $page_data, $config, $compiler_url ) {
|
188 |
|
189 |
-
|
190 |
-
$
|
191 |
-
|
192 |
-
'
|
193 |
-
'
|
194 |
-
'
|
195 |
-
'
|
196 |
-
'pages_json' => json_encode( array(
|
197 |
array(
|
198 |
'id' => 1,
|
199 |
'data' => $page_data,
|
200 |
'is_index' => true
|
201 |
)
|
202 |
-
) ),
|
203 |
-
'
|
204 |
-
'
|
205 |
) );
|
206 |
|
207 |
|
@@ -211,7 +210,11 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
|
|
211 |
|
212 |
'editorData' => array(
|
213 |
'urls' => array(
|
214 |
-
'assets'
|
|
|
|
|
|
|
|
|
215 |
),
|
216 |
'serverTimestamp' => time()
|
217 |
),
|
@@ -307,4 +310,11 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
|
|
307 |
|
308 |
return $options;
|
309 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
}
|
186 |
*/
|
187 |
public function compile_page( Brizy_Editor_Project $project, $page_data, $config, $compiler_url ) {
|
188 |
|
189 |
+
|
190 |
+
$body = apply_filters( 'brizy_compiler_params', array(
|
191 |
+
'page_id' => 1,
|
192 |
+
'free_version' => BRIZY_EDITOR_VERSION,
|
193 |
+
'download_url' => 'https://static.brizy.io/builds',
|
194 |
+
'config_json' => json_encode( $config ),
|
195 |
+
'pages_json' => json_encode( array(
|
|
|
196 |
array(
|
197 |
'id' => 1,
|
198 |
'data' => $page_data,
|
199 |
'is_index' => true
|
200 |
)
|
201 |
+
) ),
|
202 |
+
'project_json' => json_encode( $project->create_post_data() ),
|
203 |
+
'global_blocks_json' => json_encode( Brizy_Editor_Block::getBlocksByType( Brizy_Admin_Blocks_Main::CP_GLOBAL ) )
|
204 |
) );
|
205 |
|
206 |
|
210 |
|
211 |
'editorData' => array(
|
212 |
'urls' => array(
|
213 |
+
'assets' => $config['urls']['assets'],
|
214 |
+
'apiEndpoint' => set_url_scheme( admin_url( 'admin-ajax.php' ) )
|
215 |
+
),
|
216 |
+
'api' => array(
|
217 |
+
'getTimestamp' => Brizy_Editor_API::AJAX_TIMESTAMP,
|
218 |
),
|
219 |
'serverTimestamp' => time()
|
220 |
),
|
310 |
|
311 |
return $options;
|
312 |
}
|
313 |
+
|
314 |
+
protected function get_project_json( Brizy_Editor_Project $project ) {
|
315 |
+
return json_encode( array(
|
316 |
+
'id' => $project->getId(),
|
317 |
+
'data' => $project->getDataAsJson()
|
318 |
+
) );
|
319 |
+
}
|
320 |
}
|
editor/asset/media-asset-processor.php
CHANGED
@@ -67,8 +67,8 @@ class Brizy_Editor_Asset_MediaAssetProcessor implements Brizy_Editor_Content_Pro
|
|
67 |
continue;
|
68 |
}
|
69 |
|
70 |
-
$post_id
|
71 |
-
$media_cache
|
72 |
|
73 |
$new_url = null;
|
74 |
|
@@ -78,28 +78,8 @@ class Brizy_Editor_Asset_MediaAssetProcessor implements Brizy_Editor_Content_Pro
|
|
78 |
return $content;
|
79 |
}
|
80 |
|
81 |
-
// if ( ! $media_path ) {
|
82 |
-
//
|
83 |
-
// // there may be cases when there is no attachment with uid due to old version of plugins
|
84 |
-
// // in this case we try to download the media and attach it to the current post
|
85 |
-
// try {
|
86 |
-
// // download media
|
87 |
-
// $media_cacher = new Brizy_Editor_CropCacheMedia( $project, $post_id );
|
88 |
-
// $media_cacher->download_original_image( $params[ Brizy_Public_CropProxy::ENDPOINT ] );
|
89 |
-
// $media_path = $this->get_attachment_file_by_uid( $params[ Brizy_Public_CropProxy::ENDPOINT ] );
|
90 |
-
// } catch ( Exception $e ) {
|
91 |
-
// continue;
|
92 |
-
// }
|
93 |
-
//
|
94 |
-
// if ( ! $media_path ) {
|
95 |
-
// continue;
|
96 |
-
// }
|
97 |
-
// }
|
98 |
-
|
99 |
try {
|
100 |
|
101 |
-
//if($media_cache->hasCroptMedia($media_path, $params[ Brizy_Public_CropProxy::ENDPOINT_FILTER ])
|
102 |
-
|
103 |
$crop_media_path = $media_cache->crop_media( $media_path, $params[ Brizy_Public_CropProxy::ENDPOINT_FILTER ], false );
|
104 |
|
105 |
$urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post_id );
|
67 |
continue;
|
68 |
}
|
69 |
|
70 |
+
$post_id = wp_is_post_revision( (int) $params[ Brizy_Public_CropProxy::ENDPOINT_POST ] ) ? wp_get_post_parent_id( (int) $params[ Brizy_Public_CropProxy::ENDPOINT_POST ] ) : (int) $params[ Brizy_Public_CropProxy::ENDPOINT_POST ];
|
71 |
+
$media_cache = new Brizy_Editor_CropCacheMedia( $project, $post_id );
|
72 |
|
73 |
$new_url = null;
|
74 |
|
78 |
return $content;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
try {
|
82 |
|
|
|
|
|
83 |
$crop_media_path = $media_cache->crop_media( $media_path, $params[ Brizy_Public_CropProxy::ENDPOINT_FILTER ], false );
|
84 |
|
85 |
$urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post_id );
|
editor/block-screenshot-api.php
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class Brizy_Editor_BlockScreenshotApi {
|
4 |
|
5 |
-
const
|
|
|
|
|
|
|
6 |
|
7 |
const BLOCK_TYPE_NORMAL = 'normal';
|
8 |
const BLOCK_TYPE_GLOBAL = 'global';
|
@@ -40,21 +43,29 @@ class Brizy_Editor_BlockScreenshotApi {
|
|
40 |
public function __construct( $post ) {
|
41 |
$this->post = $post;
|
42 |
$this->blockTypes = array( self::BLOCK_TYPE_NORMAL, self::BLOCK_TYPE_GLOBAL, self::BLOCK_TYPE_SAVED );
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
|
46 |
|
47 |
-
|
48 |
-
add_action( 'wp_ajax_' . self::
|
49 |
-
add_action( 'wp_ajax_nopriv_' . self::
|
|
|
|
|
50 |
}
|
51 |
|
52 |
public function saveBlockScreenShot() {
|
53 |
|
|
|
|
|
54 |
session_write_close();
|
55 |
|
56 |
-
if ( empty( $
|
57 |
-
|
58 |
'success' => false,
|
59 |
'message' => esc_html__( 'Bad request', 'brizy' )
|
60 |
), 400 );
|
@@ -63,44 +74,77 @@ class Brizy_Editor_BlockScreenshotApi {
|
|
63 |
// obtain the image content from POST
|
64 |
$imageContent = null;
|
65 |
$fileName = null;
|
|
|
66 |
|
67 |
-
if ( preg_match( '/^data:image\/(\w+);base64,/', $_POST['img'], $img_type ) ) {
|
68 |
-
$base64 = $_POST['img'];
|
69 |
-
$img_base64 = substr( $base64, strpos( $base64, ',' ) + 1 );
|
70 |
-
$img_type = strtolower( $img_type[1] ); // jpg, png, gif
|
71 |
-
$fileName = sanitize_file_name( $_POST['block_id'] . ".{$img_type}" );
|
72 |
-
|
73 |
-
if ( ! in_array( $img_type, array( 'jpg', 'jpeg', 'gif', 'png' ) ) ) {
|
74 |
-
wp_send_json( array(
|
75 |
-
'success' => false,
|
76 |
-
'message' => esc_html__( 'Invalid image format', 'brizy' )
|
77 |
-
) );
|
78 |
-
}
|
79 |
|
80 |
-
|
|
|
81 |
|
82 |
-
if ( false === $base64 ) {
|
83 |
-
wp_send_json( array(
|
84 |
-
'success' => false,
|
85 |
-
'message' => esc_html__( 'Invalid image content', 'brizy' )
|
86 |
-
), 400 );
|
87 |
-
}
|
88 |
-
|
89 |
-
if ( ! $this->saveScreenshot( $_POST['block_type'], $fileName, $imageContent ) ) {
|
90 |
-
wp_send_json( array(
|
91 |
-
'success' => false,
|
92 |
-
'message' => esc_html__( 'Unable to store the block thumbnail', 'brizy' )
|
93 |
-
), 500 );
|
94 |
-
}
|
95 |
|
96 |
-
|
97 |
-
|
98 |
'success' => false,
|
99 |
-
'message' => esc_html__( 'Invalid image
|
100 |
), 400 );
|
101 |
}
|
102 |
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
|
106 |
/**
|
@@ -170,9 +214,10 @@ class Brizy_Editor_BlockScreenshotApi {
|
|
170 |
private function resizeImage( $thumbnailFullPath ) {
|
171 |
try {
|
172 |
$imageEditor = wp_get_image_editor( $thumbnailFullPath );
|
173 |
-
|
174 |
-
if($imageEditor instanceof WP_Error)
|
175 |
-
throw new Exception($imageEditor->get_error_message());
|
|
|
176 |
|
177 |
$imageEditor->resize( 600, 600 );
|
178 |
$result = $imageEditor->save( $thumbnailFullPath );
|
1 |
<?php
|
2 |
|
3 |
+
class Brizy_Editor_BlockScreenshotApi extends Brizy_Admin_AbstractApi {
|
4 |
|
5 |
+
const nonce = 'brizy-api';
|
6 |
+
|
7 |
+
const AJAX_CREATE_BLOCK_SCREENSHOT = 'brizy_create_block_screenshot';
|
8 |
+
const AJAX_UPDATE_BLOCK_SCREENSHOT = 'brizy_update_block_screenshot';
|
9 |
|
10 |
const BLOCK_TYPE_NORMAL = 'normal';
|
11 |
const BLOCK_TYPE_GLOBAL = 'global';
|
43 |
public function __construct( $post ) {
|
44 |
$this->post = $post;
|
45 |
$this->blockTypes = array( self::BLOCK_TYPE_NORMAL, self::BLOCK_TYPE_GLOBAL, self::BLOCK_TYPE_SAVED );
|
46 |
+
parent::__construct();
|
47 |
+
}
|
48 |
+
|
49 |
+
protected function getRequestNonce() {
|
50 |
+
return self::nonce;
|
51 |
}
|
52 |
|
53 |
|
54 |
+
protected function initializeApiActions() {
|
55 |
+
add_action( 'wp_ajax_' . self::AJAX_CREATE_BLOCK_SCREENSHOT, array( $this, 'saveBlockScreenShot' ) );
|
56 |
+
add_action( 'wp_ajax_nopriv_' . self::AJAX_CREATE_BLOCK_SCREENSHOT, array( $this, 'saveBlockScreenShot' ) );
|
57 |
+
add_action( 'wp_ajax_' . self::AJAX_UPDATE_BLOCK_SCREENSHOT, array( $this, 'saveBlockScreenShot' ) );
|
58 |
+
add_action( 'wp_ajax_nopriv_' . self::AJAX_UPDATE_BLOCK_SCREENSHOT, array( $this, 'saveBlockScreenShot' ) );
|
59 |
}
|
60 |
|
61 |
public function saveBlockScreenShot() {
|
62 |
|
63 |
+
$this->verifyNonce( self::nonce );
|
64 |
+
|
65 |
session_write_close();
|
66 |
|
67 |
+
if ( empty( $_REQUEST['block_type'] ) || ! in_array( $_REQUEST['block_type'], $this->blockTypes ) || empty( $_REQUEST['ibsf'] ) ) {
|
68 |
+
wp_send_json_error( array(
|
69 |
'success' => false,
|
70 |
'message' => esc_html__( 'Bad request', 'brizy' )
|
71 |
), 400 );
|
74 |
// obtain the image content from POST
|
75 |
$imageContent = null;
|
76 |
$fileName = null;
|
77 |
+
$screenId = null;
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
+
$base64 = $_REQUEST['ibsf'];
|
81 |
+
$imageContent = base64_decode( $base64 );
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
+
if ( false === $imageContent ) {
|
85 |
+
wp_send_json_error( array(
|
86 |
'success' => false,
|
87 |
+
'message' => esc_html__( 'Invalid image content', 'brizy' )
|
88 |
), 400 );
|
89 |
}
|
90 |
|
91 |
+
$img_type = $this->getFileExtensionByContent( $imageContent );
|
92 |
+
|
93 |
+
if ( ! in_array( $img_type, array( 'jpg', 'jpeg', 'gif', 'png' ) ) ) {
|
94 |
+
wp_send_json_error( array(
|
95 |
+
'message' => esc_html__( 'Invalid image format', 'brizy' )
|
96 |
+
) );
|
97 |
+
}
|
98 |
+
|
99 |
+
if ( isset( $_REQUEST['id'] ) ) {
|
100 |
+
$screenId = $_REQUEST['id'];
|
101 |
+
} else {
|
102 |
+
$screenId = \Brizy\Utils\UUId::uuid();
|
103 |
+
}
|
104 |
+
|
105 |
+
$fileName = $screenId . '.' . $img_type;
|
106 |
+
|
107 |
+
if ( ! $this->saveScreenshot( $_REQUEST['block_type'], $fileName, $imageContent ) ) {
|
108 |
+
wp_send_json_error( array(
|
109 |
+
'message' => esc_html__( 'Unable to store the block thumbnail', 'brizy' )
|
110 |
+
), 500 );
|
111 |
+
}
|
112 |
+
|
113 |
+
wp_send_json_success( array( 'id' => $screenId, 'file_name' => $fileName ) );
|
114 |
+
}
|
115 |
+
|
116 |
+
protected function getFileExtensionByContent( $content ) {
|
117 |
+
$tmpfname = tempnam( "/tmp", "blockScreenShot" );
|
118 |
+
|
119 |
+
$handle = fopen( $tmpfname, "w" );
|
120 |
+
fwrite( $handle, $content );
|
121 |
+
fclose( $handle );
|
122 |
+
|
123 |
+
$mimeType = wp_get_image_mime( $tmpfname );
|
124 |
+
|
125 |
+
return $this->getExtentsionByMime( $mimeType );
|
126 |
+
}
|
127 |
+
|
128 |
+
/**
|
129 |
+
* @param $filename
|
130 |
+
* @param int $mode
|
131 |
+
*
|
132 |
+
* @return mixed|string
|
133 |
+
*/
|
134 |
+
protected function getExtentsionByMime( $mimeType ) {
|
135 |
+
|
136 |
+
$extensions = array(
|
137 |
+
'image/png' => 'png',
|
138 |
+
'image/jpeg' => 'jpeg',
|
139 |
+
'image/jpg' => 'jpg',
|
140 |
+
'image/gif' => 'gif',
|
141 |
+
);
|
142 |
+
|
143 |
+
if ( isset( $extensions[ $mimeType ] ) ) {
|
144 |
+
return $extensions[ $mimeType ];
|
145 |
+
}
|
146 |
+
|
147 |
+
return null;
|
148 |
}
|
149 |
|
150 |
/**
|
214 |
private function resizeImage( $thumbnailFullPath ) {
|
215 |
try {
|
216 |
$imageEditor = wp_get_image_editor( $thumbnailFullPath );
|
217 |
+
|
218 |
+
if ( $imageEditor instanceof WP_Error ) {
|
219 |
+
throw new Exception( $imageEditor->get_error_message() );
|
220 |
+
}
|
221 |
|
222 |
$imageEditor->resize( 600, 600 );
|
223 |
$result = $imageEditor->save( $thumbnailFullPath );
|
editor/block.php
CHANGED
@@ -175,4 +175,57 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
|
|
175 |
return $autosave;
|
176 |
}
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
175 |
return $autosave;
|
176 |
}
|
177 |
|
178 |
+
/**
|
179 |
+
* @param $type
|
180 |
+
* @param array $arags
|
181 |
+
*
|
182 |
+
* @return array
|
183 |
+
* @throws Brizy_Editor_Exceptions_NotFound
|
184 |
+
*/
|
185 |
+
public static function getBlocksByType( $type, $arags = array() ) {
|
186 |
+
|
187 |
+
$filterArgs = array(
|
188 |
+
'post_type' => $type,
|
189 |
+
'posts_per_page' => - 1,
|
190 |
+
'post_status' => 'any',
|
191 |
+
'orderby' => 'ID',
|
192 |
+
'order' => 'ASC',
|
193 |
+
);
|
194 |
+
$filterArgs = array_merge( $filterArgs, $arags );
|
195 |
+
|
196 |
+
$wpBlocks = get_posts( $filterArgs );
|
197 |
+
$blocks = array();
|
198 |
+
|
199 |
+
foreach ( $wpBlocks as $wpPost ) {
|
200 |
+
$blocks[] = self::postData( Brizy_Editor_Block::get( $wpPost ) );
|
201 |
+
}
|
202 |
+
|
203 |
+
return $blocks;
|
204 |
+
}
|
205 |
+
|
206 |
+
|
207 |
+
/**
|
208 |
+
* @param Brizy_Editor_Block $post
|
209 |
+
*
|
210 |
+
* @return array
|
211 |
+
*/
|
212 |
+
public static function postData( Brizy_Editor_Block $post ) {
|
213 |
+
|
214 |
+
$p_id = (int) $post->get_id();
|
215 |
+
$ruleManager = new Brizy_Admin_Rules_Manager();
|
216 |
+
$global = array(
|
217 |
+
'uid' => $post->get_uid(),
|
218 |
+
'status' => get_post_status( $p_id ),
|
219 |
+
'data' => $post->get_editor_data(),
|
220 |
+
);
|
221 |
+
|
222 |
+
if ( $post->get_wp_post()->post_type == Brizy_Admin_Blocks_Main::CP_GLOBAL ) {
|
223 |
+
$global['position'] = $post->getPosition();
|
224 |
+
$global['rules'] = $ruleManager->getRules( $p_id );
|
225 |
+
}
|
226 |
+
|
227 |
+
return $global;
|
228 |
+
}
|
229 |
+
|
230 |
+
|
231 |
}
|
editor/data/project-merge-strategy-interface.php
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
interface Brizy_Editor_Data_ProjectMergeStrategyInterface {
|
4 |
+
public function merge( $projectData1, $projectData2 );
|
5 |
+
}
|
editor/data/project-merge-strategy.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Editor_Data_ProjectMergeStrategy {
|
4 |
+
|
5 |
+
/**
|
6 |
+
* @param $version
|
7 |
+
*
|
8 |
+
* @return Brizy_Editor_Data_ProjectMergeStrategyInterface
|
9 |
+
*/
|
10 |
+
static public function getMergerInstance( $version ) {
|
11 |
+
if ( version_compare( $version, '1.0.81' ) <= 0 ) {
|
12 |
+
return new Brizy_Editor_Data_ProjectMerge81();
|
13 |
+
}
|
14 |
+
|
15 |
+
return new Brizy_Editor_Data_ProjectMerge82();
|
16 |
+
}
|
17 |
+
|
18 |
+
/**
|
19 |
+
* This code needs to be updated if the project data will change.
|
20 |
+
*
|
21 |
+
* @param $version
|
22 |
+
*
|
23 |
+
* @return bool
|
24 |
+
*/
|
25 |
+
static public function checkVersionCompatibility( $version ) {
|
26 |
+
if ( version_compare( $version, '1.0.81' ) > 0 && version_compare( $version, BRIZY_VERSION ) <= 0 ) {
|
27 |
+
return true;
|
28 |
+
}
|
29 |
+
|
30 |
+
return false;
|
31 |
+
}
|
32 |
+
}
|
editor/data/project-merge81.php
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Editor_Data_ProjectMerge81 implements Brizy_Editor_Data_ProjectMergeStrategyInterface {
|
4 |
+
|
5 |
+
/**
|
6 |
+
* @param $projectData1
|
7 |
+
* @param $projectData2
|
8 |
+
*
|
9 |
+
* @return mixed
|
10 |
+
*/
|
11 |
+
public function merge( $projectData1, $projectData2 ) {
|
12 |
+
// MERGE STYLES
|
13 |
+
|
14 |
+
// 1. merge extra fonts
|
15 |
+
$projectData1->extraFonts = array_unique(
|
16 |
+
array_merge(
|
17 |
+
(array) ( isset( $projectData1->extraFonts ) ? $projectData1->extraFonts : array() ),
|
18 |
+
(array) ( isset( $projectData2->extraFonts ) ? $projectData2->extraFonts : array() )
|
19 |
+
)
|
20 |
+
);
|
21 |
+
|
22 |
+
// 2. merge extra fonts styles
|
23 |
+
if ( ! isset( $projectData1->styles ) ) {
|
24 |
+
$projectData1->styles = (object) array( '_extraFontStyles' => array() );
|
25 |
+
}
|
26 |
+
|
27 |
+
$projectData1->styles->_extraFontStyles = array_merge(
|
28 |
+
(array) ( isset( $projectData1->styles->_extraFontStyles ) ? $projectData1->styles->_extraFontStyles : array() ),
|
29 |
+
(array) ( isset( $projectData2->styles->_extraFontStyles ) ? $projectData2->styles->_extraFontStyles : array() )
|
30 |
+
);
|
31 |
+
|
32 |
+
|
33 |
+
$projectData1->styles->default = $projectData2->styles->default;
|
34 |
+
|
35 |
+
if ( $projectData2->styles && isset( $projectData2->styles->_selected ) ) {
|
36 |
+
$selected = $projectData2->styles->_selected;
|
37 |
+
$projectData1->styles->_selected = $selected;
|
38 |
+
if ( $selected ) {
|
39 |
+
$projectData1->styles->$selected = $projectData2->styles->$selected;
|
40 |
+
}
|
41 |
+
}
|
42 |
+
|
43 |
+
return $projectData1;
|
44 |
+
}
|
45 |
+
}
|
editor/data/project-merge82.php
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Editor_Data_ProjectMerge82 implements Brizy_Editor_Data_ProjectMergeStrategyInterface {
|
4 |
+
private function mergeFonts( $fonts, $newFonts, $key = "family" ) {
|
5 |
+
$result = $fonts;
|
6 |
+
|
7 |
+
foreach ( $newFonts->data as $newFont ) {
|
8 |
+
$exist = false;
|
9 |
+
|
10 |
+
foreach ( $fonts->data as $font ) {
|
11 |
+
if ( $font->$key === $newFont->$key ) {
|
12 |
+
$exist = true;
|
13 |
+
}
|
14 |
+
}
|
15 |
+
|
16 |
+
if ( ! $exist ) {
|
17 |
+
$result->data[] = $newFont;
|
18 |
+
}
|
19 |
+
}
|
20 |
+
|
21 |
+
return $result;
|
22 |
+
}
|
23 |
+
|
24 |
+
public function merge( $projectData1, $projectData2 ) {
|
25 |
+
|
26 |
+
$result = $projectData1;
|
27 |
+
|
28 |
+
// selected Kit
|
29 |
+
$result->selectedKit = $projectData2->selectedKit;
|
30 |
+
|
31 |
+
// selected Style
|
32 |
+
$result->selectedStyle = $projectData2->selectedStyle;
|
33 |
+
|
34 |
+
if ( ! isset( $result->styles ) ) {
|
35 |
+
$result->styles = array();
|
36 |
+
}
|
37 |
+
|
38 |
+
// merge styles
|
39 |
+
foreach ( $projectData2->styles as $i => $style ) {
|
40 |
+
foreach ( $result->styles as $j => $resultStyle ) {
|
41 |
+
if ( $style->id === $resultStyle->id ) {
|
42 |
+
$result->styles[ $j ] = $style;
|
43 |
+
} else {
|
44 |
+
$result->styles[] = $style;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
// extraFontStyles
|
50 |
+
$result->extraFontStyles = array_merge(
|
51 |
+
(array) ( $result->extraFontStyles ),
|
52 |
+
(array) ( $projectData2->extraFontStyles )
|
53 |
+
);
|
54 |
+
|
55 |
+
// font
|
56 |
+
$result->font = $projectData2->font;
|
57 |
+
|
58 |
+
// fonts
|
59 |
+
// fonts -> config
|
60 |
+
$result->fonts->config = $this->mergeFonts( $result->fonts->config, $projectData2->fonts->config );
|
61 |
+
|
62 |
+
// fonts -> blocks
|
63 |
+
if ( isset( $projectData2->fonts->blocks ) ) {
|
64 |
+
if ( ! isset( $result->fonts->blocks ) ) {
|
65 |
+
$result->fonts->blocks = $projectData2->fonts->blocks;
|
66 |
+
} else {
|
67 |
+
$result->fonts->blocks = $this->mergeFonts( $projectData2->fonts->blocks, $projectData2->fonts->blocks );
|
68 |
+
}
|
69 |
+
}
|
70 |
+
|
71 |
+
// fonts -> google
|
72 |
+
if ( isset( $projectData2->fonts->google ) ) {
|
73 |
+
if ( ! isset( $result->fonts->google ) ) {
|
74 |
+
$result->fonts->google = $projectData2->fonts->google;
|
75 |
+
} else {
|
76 |
+
$result->fonts->google = $this->mergeFonts( $projectData2->fonts->google, $projectData2->fonts->google );
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
// fonts -> upload
|
81 |
+
if ( isset( $projectData2->fonts->upload ) ) {
|
82 |
+
if ( ! isset( $result->fonts->upload ) ) {
|
83 |
+
$result->fonts->uploud = $projectData2->fonts->upload;
|
84 |
+
} else {
|
85 |
+
$result->fonts->upload = $this->mergeFonts( $projectData2->fonts->upload, $projectData2->fonts->upload, "id" );
|
86 |
+
}
|
87 |
+
}
|
88 |
+
|
89 |
+
return $result;
|
90 |
+
}
|
91 |
+
}
|
editor/editor/editor.php
CHANGED
@@ -122,36 +122,38 @@ class Brizy_Editor_Editor_Editor {
|
|
122 |
);
|
123 |
}
|
124 |
|
125 |
-
$config
|
126 |
'user' => array( 'role' => 'admin' ),
|
127 |
'project' => array(
|
128 |
'id' => $this->project->getId()
|
129 |
),
|
130 |
'urls' => array(
|
131 |
-
'site'
|
132 |
-
'api'
|
133 |
-
'assets'
|
134 |
-
'image'
|
135 |
-
'blockThumbnails'
|
136 |
-
'
|
137 |
-
'
|
138 |
-
'
|
139 |
-
'
|
140 |
-
'
|
|
|
|
|
141 |
|
142 |
// wp specific
|
143 |
-
'changeTemplate'
|
144 |
-
'upgradeToPro'
|
145 |
-
'support'
|
146 |
-
'pluginSettings'
|
147 |
-
'dashboardNavMenu'
|
148 |
),
|
149 |
'form' => array(
|
150 |
-
'submitUrl' =>
|
151 |
),
|
152 |
'serverTimestamp' => time(),
|
153 |
'menuData' => $this->get_menu_data(),
|
154 |
-
'wp'
|
155 |
'permalink' => get_permalink( $wp_post_id ),
|
156 |
'page' => $wp_post_id,
|
157 |
'ruleMatches' => $ruleMatches,
|
@@ -165,10 +167,11 @@ class Brizy_Editor_Editor_Editor {
|
|
165 |
'getPage' => Brizy_Editor_API::AJAX_GET,
|
166 |
'updatePage' => Brizy_Editor_API::AJAX_UPDATE,
|
167 |
|
168 |
-
'
|
169 |
-
'
|
|
|
170 |
|
171 |
-
'getGlobalBlockList' => Brizy_Admin_Blocks_Api::
|
172 |
'createGlobalBlock' => Brizy_Admin_Blocks_Api::CREATE_GLOBAL_BLOCK_ACTION,
|
173 |
'updateGlobalBlock' => Brizy_Admin_Blocks_Api::UPDATE_GLOBAL_BLOCK_ACTION,
|
174 |
'deleteGlobalBlock' => Brizy_Admin_Blocks_Api::DELETE_GLOBAL_BLOCK_ACTION,
|
@@ -179,17 +182,19 @@ class Brizy_Editor_Editor_Editor {
|
|
179 |
'getRuleList' => Brizy_Admin_Rules_Api::LIST_RULE_ACTION,
|
180 |
'updateBlockPositions' => Brizy_Admin_Blocks_Api::UPDATE_BLOCK_POSITIONS_ACTION,
|
181 |
|
182 |
-
'getSavedBlockList' => Brizy_Admin_Blocks_Api::
|
183 |
'createSavedBlock' => Brizy_Admin_Blocks_Api::CREATE_SAVED_BLOCK_ACTION,
|
184 |
'updateSavedBlock' => Brizy_Admin_Blocks_Api::UPDATE_SAVED_BLOCK_ACTION,
|
185 |
'deleteSavedBlock' => Brizy_Admin_Blocks_Api::DELETE_SAVED_BLOCK_ACTION,
|
186 |
|
187 |
-
'media'
|
188 |
-
'downloadMedia'
|
189 |
-
'getMediaUid'
|
|
|
190 |
|
191 |
|
192 |
-
'
|
|
|
193 |
|
194 |
'getSidebars' => Brizy_Editor_API::AJAX_SIDEBARS,
|
195 |
'shortcodeContent' => Brizy_Editor_API::AJAX_SHORTCODE_CONTENT,
|
@@ -204,7 +209,7 @@ class Brizy_Editor_Editor_Editor {
|
|
204 |
//'getInternalLinks' => Brizy_Editor_API::AJAX_GET_INTERNAL_LINKS, // ???
|
205 |
//'updatePost' => Brizy_Editor_API::AJAX_SAVE_TRIGGER, // ???
|
206 |
//'savePage' => Brizy_Editor_API::AJAX_SAVE_TRIGGER, // ???
|
207 |
-
'getPostObjects'
|
208 |
//'getTaxonomies' => Brizy_Editor_API::AJAX_GET_TAXONOMIES, // ??
|
209 |
|
210 |
'setFeaturedImage' => Brizy_Editor_API::AJAX_SET_FEATURED_IMAGE,
|
@@ -221,6 +226,10 @@ class Brizy_Editor_Editor_Editor {
|
|
221 |
'updateIntegration' => Brizy_Editor_Forms_Api::AJAX_UPDATE_INTEGRATION,
|
222 |
'deleteIntegration' => Brizy_Editor_Forms_Api::AJAX_DELETE_INTEGRATION,
|
223 |
|
|
|
|
|
|
|
|
|
224 |
//'updateMenuData' => Brizy_Editor_API::AJAX_UPDATE_MENU_DATA, // ???
|
225 |
//'updateMenuItemData' => Brizy_Editor_API::AJAX_UPDATE_MENU_ITEM_DATA, // ???
|
226 |
),
|
@@ -233,13 +242,13 @@ class Brizy_Editor_Editor_Editor {
|
|
233 |
'pageData' => apply_filters( 'brizy_page_data', array() ),
|
234 |
'isTemplate' => $isTemplate
|
235 |
),
|
236 |
-
'applications'
|
237 |
'form' => array(
|
238 |
-
'submitUrl' =>
|
239 |
)
|
240 |
),
|
241 |
-
'
|
242 |
-
'
|
243 |
);
|
244 |
|
245 |
return self::$config = apply_filters( 'brizy_editor_config', $config );
|
122 |
);
|
123 |
}
|
124 |
|
125 |
+
$config = array(
|
126 |
'user' => array( 'role' => 'admin' ),
|
127 |
'project' => array(
|
128 |
'id' => $this->project->getId()
|
129 |
),
|
130 |
'urls' => array(
|
131 |
+
'site' => home_url(),
|
132 |
+
'api' => home_url( '/wp-json/v1' ),
|
133 |
+
'assets' => $this->urlBuilder->editor_build_url(),
|
134 |
+
'image' => $this->urlBuilder->external_media_url() . "",
|
135 |
+
'blockThumbnails' => $this->urlBuilder->external_asset_url( 'thumbs' ) . "",
|
136 |
+
'templateThumbnails' => $this->urlBuilder->external_asset_url( 'thumbs' ) . "",
|
137 |
+
'templateIcons' => $this->urlBuilder->proxy_url( 'editor/icons' ),
|
138 |
+
'templateFonts' => $this->urlBuilder->external_fonts_url(),
|
139 |
+
'editorFonts' => home_url(),
|
140 |
+
'pagePreview' => $preview_post_link,
|
141 |
+
'about' => __bt( 'about-url', apply_filters( 'brizy_about_url', Brizy_Config::ABOUT_URL ) ),
|
142 |
+
'backToDashboard' => get_edit_post_link( $wp_post_id, null ),
|
143 |
|
144 |
// wp specific
|
145 |
+
'changeTemplate' => $change_template_url,
|
146 |
+
'upgradeToPro' => __bt( 'upgrade-url', apply_filters( 'brizy_upgrade_to_pro_url', Brizy_Config::UPGRADE_TO_PRO_URL ) ),
|
147 |
+
'support' => __bt( 'support-url', apply_filters( 'brizy_support_url', Brizy_Config::SUPPORT_URL ) ),
|
148 |
+
'pluginSettings' => admin_url( 'admin.php?page=' . Brizy_Admin_Settings::menu_slug() ),
|
149 |
+
'dashboardNavMenu' => admin_url( 'nav-menus.php' ),
|
150 |
),
|
151 |
'form' => array(
|
152 |
+
'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
|
153 |
),
|
154 |
'serverTimestamp' => time(),
|
155 |
'menuData' => $this->get_menu_data(),
|
156 |
+
'wp' => array(
|
157 |
'permalink' => get_permalink( $wp_post_id ),
|
158 |
'page' => $wp_post_id,
|
159 |
'ruleMatches' => $ruleMatches,
|
167 |
'getPage' => Brizy_Editor_API::AJAX_GET,
|
168 |
'updatePage' => Brizy_Editor_API::AJAX_UPDATE,
|
169 |
|
170 |
+
'getProject' => Brizy_Editor_API::AJAX_GET_PROJECT,
|
171 |
+
'setProject' => Brizy_Editor_API::AJAX_SET_PROJECT,
|
172 |
+
'setProjectMeta' => Brizy_Editor_API::AJAX_UPDATE_EDITOR_META_DATA,
|
173 |
|
174 |
+
'getGlobalBlockList' => Brizy_Admin_Blocks_Api::GET_GLOBAL_BLOCKS_ACTION,
|
175 |
'createGlobalBlock' => Brizy_Admin_Blocks_Api::CREATE_GLOBAL_BLOCK_ACTION,
|
176 |
'updateGlobalBlock' => Brizy_Admin_Blocks_Api::UPDATE_GLOBAL_BLOCK_ACTION,
|
177 |
'deleteGlobalBlock' => Brizy_Admin_Blocks_Api::DELETE_GLOBAL_BLOCK_ACTION,
|
182 |
'getRuleList' => Brizy_Admin_Rules_Api::LIST_RULE_ACTION,
|
183 |
'updateBlockPositions' => Brizy_Admin_Blocks_Api::UPDATE_BLOCK_POSITIONS_ACTION,
|
184 |
|
185 |
+
'getSavedBlockList' => Brizy_Admin_Blocks_Api::GET_SAVED_BLOCKS_ACTION,
|
186 |
'createSavedBlock' => Brizy_Admin_Blocks_Api::CREATE_SAVED_BLOCK_ACTION,
|
187 |
'updateSavedBlock' => Brizy_Admin_Blocks_Api::UPDATE_SAVED_BLOCK_ACTION,
|
188 |
'deleteSavedBlock' => Brizy_Admin_Blocks_Api::DELETE_SAVED_BLOCK_ACTION,
|
189 |
|
190 |
+
'media' => Brizy_Editor_API::AJAX_MEDIA,
|
191 |
+
'downloadMedia' => Brizy_Editor_API::AJAX_DOWNLOAD_MEDIA,
|
192 |
+
'getMediaUid' => Brizy_Editor_API::AJAX_MEDIA_METAKEY,
|
193 |
+
'getServerTimeStamp' => Brizy_Editor_API::AJAX_TIMESTAMP,
|
194 |
|
195 |
|
196 |
+
'createBlockScreenshot' => Brizy_Editor_BlockScreenshotApi::AJAX_CREATE_BLOCK_SCREENSHOT,
|
197 |
+
'updateBlockScreenshot' => Brizy_Editor_BlockScreenshotApi::AJAX_UPDATE_BLOCK_SCREENSHOT,
|
198 |
|
199 |
'getSidebars' => Brizy_Editor_API::AJAX_SIDEBARS,
|
200 |
'shortcodeContent' => Brizy_Editor_API::AJAX_SHORTCODE_CONTENT,
|
209 |
//'getInternalLinks' => Brizy_Editor_API::AJAX_GET_INTERNAL_LINKS, // ???
|
210 |
//'updatePost' => Brizy_Editor_API::AJAX_SAVE_TRIGGER, // ???
|
211 |
//'savePage' => Brizy_Editor_API::AJAX_SAVE_TRIGGER, // ???
|
212 |
+
'getPostObjects' => Brizy_Editor_API::AJAX_GET_POST_OBJECTS, // ???
|
213 |
//'getTaxonomies' => Brizy_Editor_API::AJAX_GET_TAXONOMIES, // ??
|
214 |
|
215 |
'setFeaturedImage' => Brizy_Editor_API::AJAX_SET_FEATURED_IMAGE,
|
226 |
'updateIntegration' => Brizy_Editor_Forms_Api::AJAX_UPDATE_INTEGRATION,
|
227 |
'deleteIntegration' => Brizy_Editor_Forms_Api::AJAX_DELETE_INTEGRATION,
|
228 |
|
229 |
+
'createFont' => Brizy_Admin_Fonts_Api::AJAX_CREATE_FONT_ACTION,
|
230 |
+
'deleteFont' => Brizy_Admin_Fonts_Api::AJAX_DELETE_FONT_ACTION,
|
231 |
+
'getFonts' => Brizy_Admin_Fonts_Api::AJAX_GET_FONTS_ACTION
|
232 |
+
|
233 |
//'updateMenuData' => Brizy_Editor_API::AJAX_UPDATE_MENU_DATA, // ???
|
234 |
//'updateMenuItemData' => Brizy_Editor_API::AJAX_UPDATE_MENU_ITEM_DATA, // ???
|
235 |
),
|
242 |
'pageData' => apply_filters( 'brizy_page_data', array() ),
|
243 |
'isTemplate' => $isTemplate
|
244 |
),
|
245 |
+
'applications' => array(
|
246 |
'form' => array(
|
247 |
+
'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
|
248 |
)
|
249 |
),
|
250 |
+
'branding' => array( 'brizy' => __bt( 'brizy', 'Brizy' ) ),
|
251 |
+
'editorVersion' => BRIZY_EDITOR_VERSION
|
252 |
);
|
253 |
|
254 |
return self::$config = apply_filters( 'brizy_editor_config', $config );
|
editor/forms/abstract-integration.php
CHANGED
@@ -91,6 +91,11 @@ abstract class Brizy_Editor_Forms_AbstractIntegration extends Brizy_Admin_Serial
|
|
91 |
*/
|
92 |
public static function createFromSerializedData( $data ) {
|
93 |
$instance = null;
|
|
|
|
|
|
|
|
|
|
|
94 |
if ( is_array( $data ) ) {
|
95 |
if ( ( isset( $data['subject'] ) && isset( $data['emailTo'] ) ) || $data['id'] == 'wordpress' ) {
|
96 |
$instance = Brizy_Editor_Forms_WordpressIntegration::createFromSerializedData( $data );
|
91 |
*/
|
92 |
public static function createFromSerializedData( $data ) {
|
93 |
$instance = null;
|
94 |
+
if ( $data instanceof Brizy_Editor_Forms_WordpressIntegration ||
|
95 |
+
$data instanceof Brizy_Editor_Forms_ServiceIntegration ) {
|
96 |
+
return $data;
|
97 |
+
}
|
98 |
+
|
99 |
if ( is_array( $data ) ) {
|
100 |
if ( ( isset( $data['subject'] ) && isset( $data['emailTo'] ) ) || $data['id'] == 'wordpress' ) {
|
101 |
$instance = Brizy_Editor_Forms_WordpressIntegration::createFromSerializedData( $data );
|
editor/post.php
CHANGED
@@ -257,19 +257,25 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
|
|
257 |
$this->uses_editor = (bool) ( isset( $data[ Brizy_Editor_Constants::USES_BRIZY ] ) ? $data[ Brizy_Editor_Constants::USES_BRIZY ] : false );
|
258 |
}
|
259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
/**
|
261 |
* @return Brizy_Editor_Post[]
|
262 |
* @throws Brizy_Editor_Exceptions_NotFound
|
263 |
* @throws Brizy_Editor_Exceptions_UnsupportedPostType
|
264 |
* @todo: We need to move this method from here
|
265 |
-
*
|
266 |
-
*
|
267 |
*/
|
268 |
-
public static function
|
269 |
global $wpdb;
|
270 |
$posts = $wpdb->get_results(
|
271 |
$wpdb->prepare( "SELECT p.post_type, p.ID as post_id FROM {$wpdb->postmeta} pm
|
272 |
-
JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision'
|
273 |
WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
|
274 |
);
|
275 |
|
@@ -277,13 +283,8 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
|
|
277 |
foreach ( $posts as $p ) {
|
278 |
if ( in_array( $p->post_type, Brizy_Editor::get()->supported_post_types() ) ) {
|
279 |
|
280 |
-
if (
|
281 |
-
|
282 |
-
Brizy_Admin_Blocks_Main::CP_SAVED
|
283 |
-
) ) ) {
|
284 |
-
$result[] = Brizy_Editor_Block::get( $p->post_id );
|
285 |
-
} else {
|
286 |
-
$result[] = Brizy_Editor_Post::get( $p->post_id );
|
287 |
}
|
288 |
}
|
289 |
}
|
@@ -300,7 +301,7 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
|
|
300 |
global $wpdb;
|
301 |
$posts = $wpdb->get_results(
|
302 |
$wpdb->prepare( "SELECT p.ID FROM {$wpdb->postmeta} pm
|
303 |
-
JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision'
|
304 |
WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
|
305 |
);
|
306 |
|
@@ -309,16 +310,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
|
|
309 |
}, $posts );
|
310 |
}
|
311 |
|
312 |
-
public static function clear_compiled_cache() {
|
313 |
-
|
314 |
-
$posts = self::get_all_brizy_post_ids();
|
315 |
-
remove_action( 'save_post', array( Brizy_Admin_Main::instance(), 'compile_post_action' ) );
|
316 |
-
foreach ( $posts as $id ) {
|
317 |
-
update_metadata( 'post', $id, self::BRIZY_POST_NEEDS_COMPILE_KEY, true );
|
318 |
-
//wp_update_post( array( 'ID' => $id ) );
|
319 |
-
}
|
320 |
-
}
|
321 |
-
|
322 |
/**
|
323 |
* @param $project
|
324 |
* @param $post
|
257 |
$this->uses_editor = (bool) ( isset( $data[ Brizy_Editor_Constants::USES_BRIZY ] ) ? $data[ Brizy_Editor_Constants::USES_BRIZY ] : false );
|
258 |
}
|
259 |
|
260 |
+
/**
|
261 |
+
* Mark all brizy post that needs compile
|
262 |
+
*/
|
263 |
+
public static function mark_all_for_compilation() {
|
264 |
+
global $wpdb;
|
265 |
+
$wpdb->update( $wpdb->postmeta, array( 'meta_value' => 1 ), array( 'meta_key' => self::BRIZY_POST_NEEDS_COMPILE_KEY ) );
|
266 |
+
}
|
267 |
+
|
268 |
/**
|
269 |
* @return Brizy_Editor_Post[]
|
270 |
* @throws Brizy_Editor_Exceptions_NotFound
|
271 |
* @throws Brizy_Editor_Exceptions_UnsupportedPostType
|
272 |
* @todo: We need to move this method from here
|
|
|
|
|
273 |
*/
|
274 |
+
public static function foreach_brizy_post( $callback ) {
|
275 |
global $wpdb;
|
276 |
$posts = $wpdb->get_results(
|
277 |
$wpdb->prepare( "SELECT p.post_type, p.ID as post_id FROM {$wpdb->postmeta} pm
|
278 |
+
JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
|
279 |
WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
|
280 |
);
|
281 |
|
283 |
foreach ( $posts as $p ) {
|
284 |
if ( in_array( $p->post_type, Brizy_Editor::get()->supported_post_types() ) ) {
|
285 |
|
286 |
+
if ( is_callable( $callback ) ) {
|
287 |
+
$callback( $p );
|
|
|
|
|
|
|
|
|
|
|
288 |
}
|
289 |
}
|
290 |
}
|
301 |
global $wpdb;
|
302 |
$posts = $wpdb->get_results(
|
303 |
$wpdb->prepare( "SELECT p.ID FROM {$wpdb->postmeta} pm
|
304 |
+
JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
|
305 |
WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
|
306 |
);
|
307 |
|
310 |
}, $posts );
|
311 |
}
|
312 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
/**
|
314 |
* @param $project
|
315 |
* @param $post
|
editor/project.php
CHANGED
@@ -48,7 +48,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
48 |
protected $cloud_token;
|
49 |
protected $cloud_project;
|
50 |
protected $image_optimizer_settings;
|
51 |
-
|
52 |
//---------------------------------------------------------------------------------------------------
|
53 |
|
54 |
/**
|
@@ -59,7 +59,23 @@ class Brizy_Editor_Project implements Serializable {
|
|
59 |
protected function __construct( WP_Post $post ) {
|
60 |
$this->post = $post;
|
61 |
$this->storage = Brizy_Editor_Storage_Project::instance( $this->post->ID );
|
62 |
-
$this->loadProjectData();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
|
65 |
public function serialize() {
|
@@ -119,7 +135,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
119 |
$wp_post = get_post( $wp_post_id );
|
120 |
}
|
121 |
|
122 |
-
if ( self::$instance[ $wp_post->ID ] ) {
|
123 |
return self::$instance[ $wp_post->ID ];
|
124 |
}
|
125 |
} catch ( Exception $e ) {
|
@@ -127,30 +143,13 @@ class Brizy_Editor_Project implements Serializable {
|
|
127 |
}
|
128 |
|
129 |
return self::$instance[ $wp_post->ID ] = new self( $wp_post );
|
|
|
130 |
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
//
|
137 |
-
// // check if the project post created
|
138 |
-
// // if not then create the project pos
|
139 |
-
// $post = self::getPost();
|
140 |
-
// $project = new self( $post );
|
141 |
-
// self::$instance = $project;
|
142 |
-
//
|
143 |
-
// } catch ( Exception $e ) {
|
144 |
-
// Brizy_Logger::instance()->exception( $e );
|
145 |
-
// }
|
146 |
-
//
|
147 |
-
// return self::$instance;
|
148 |
-
}
|
149 |
-
|
150 |
-
/**
|
151 |
-
* @return false|null|WP_Post
|
152 |
-
*/
|
153 |
-
static private function getPost() {
|
154 |
global $wpdb;
|
155 |
|
156 |
$row = $wpdb->get_results(
|
@@ -187,7 +186,6 @@ class Brizy_Editor_Project implements Serializable {
|
|
187 |
$project_data = array(
|
188 |
'id' => md5( uniqid( 'Local project', true ) ),
|
189 |
'title' => 'Brizy Project',
|
190 |
-
'globals' => base64_encode( '{}' ),
|
191 |
'name' => uniqid( 'Local project', true ),
|
192 |
'user' => null,
|
193 |
'template' => array( 'slug' => 'brizy' ),
|
@@ -199,6 +197,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
199 |
'signature' => Brizy_Editor_Signature::get(),
|
200 |
'accounts' => array(),
|
201 |
'forms' => array(),
|
|
|
202 |
'brizy-license-key' => null,
|
203 |
'brizy-cloud-token' => null,
|
204 |
'brizy-cloud-project' => null,
|
@@ -219,7 +218,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
219 |
return array(
|
220 |
'id' => $this->id,
|
221 |
'title' => $this->title,
|
222 |
-
'globals' => $this->globals,
|
223 |
'name' => $this->name,
|
224 |
'user' => $this->user,
|
225 |
'template' => $this->template,
|
@@ -231,6 +230,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
231 |
'signature' => $this->signature,
|
232 |
'accounts' => $this->accounts,
|
233 |
'forms' => $this->forms,
|
|
|
234 |
'brizy-license-key' => $this->license_key,
|
235 |
'brizy-cloud-token' => $this->cloud_token,
|
236 |
'brizy-cloud-project' => $this->cloud_project,
|
@@ -238,12 +238,9 @@ class Brizy_Editor_Project implements Serializable {
|
|
238 |
);
|
239 |
}
|
240 |
|
241 |
-
protected function loadProjectData() {
|
242 |
-
$data = $this->storage->get_storage();
|
243 |
-
|
244 |
$this->id = isset( $data['id'] ) ? $data['id'] : null;
|
245 |
$this->title = isset( $data['title'] ) ? $data['title'] : null;
|
246 |
-
$this->globals = isset( $data['globals'] ) ? $data['globals'] : null;
|
247 |
$this->name = isset( $data['name'] ) ? $data['name'] : null;
|
248 |
$this->user = isset( $data['user'] ) ? $data['user'] : null;
|
249 |
$this->template = isset( $data['template'] ) ? $data['template'] : null;
|
@@ -255,6 +252,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
255 |
$this->signature = isset( $data['signature'] ) ? $data['signature'] : null;
|
256 |
$this->accounts = isset( $data['accounts'] ) ? $data['accounts'] : null;
|
257 |
$this->forms = isset( $data['forms'] ) ? $data['forms'] : null;
|
|
|
258 |
$this->license_key = isset( $data['brizy-license-key'] ) ? $data['brizy-license-key'] : null;
|
259 |
$this->cloud_token = isset( $data['brizy-cloud-token'] ) ? $data['brizy-cloud-token'] : null;
|
260 |
$this->cloud_project = isset( $data['brizy-cloud-project'] ) ? $data['brizy-cloud-project'] : null;
|
@@ -332,20 +330,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
332 |
// @todo: copy data to autosave instance
|
333 |
$data = $this->getProjectData();
|
334 |
|
335 |
-
$autosavePost->
|
336 |
-
$autosavePost->setGlobals( $data['globals'] );
|
337 |
-
$autosavePost->setTemplate( $data['template'] );
|
338 |
-
$autosavePost->setCreated( $data['created'] );
|
339 |
-
$autosavePost->setUpdated( $data['updated'] );
|
340 |
-
$autosavePost->setLanguages( $data['languages'] );
|
341 |
-
$autosavePost->setPluginVersion( $data['pluginVersion'] );
|
342 |
-
$autosavePost->setEditorVersion( $data['editorVersion'] );
|
343 |
-
$autosavePost->setSignature( $data['signature'] );
|
344 |
-
$autosavePost->setAccounts( $data['accounts'] );
|
345 |
-
$autosavePost->setForms( $data['forms'] );
|
346 |
-
$autosavePost->setLicenseKey( $data['brizy-license-key'] );
|
347 |
-
$autosavePost->setCloudToken( $data['brizy-cloud-token'] );
|
348 |
-
$autosavePost->setCloudProject( $data['brizy-cloud-project'] );
|
349 |
$autosavePost->setImageOptimizerSettings( $data['image-optimizer-settings'] );
|
350 |
|
351 |
$autosavePost->save();
|
@@ -615,6 +600,7 @@ class Brizy_Editor_Project implements Serializable {
|
|
615 |
public function setCloudProject( $cloud_project ) {
|
616 |
$this->cloud_project = $cloud_project;
|
617 |
}
|
|
|
618 |
|
619 |
/**
|
620 |
* @return mixed
|
@@ -653,6 +639,43 @@ class Brizy_Editor_Project implements Serializable {
|
|
653 |
|
654 |
return $this;
|
655 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
|
657 |
/**
|
658 |
* @return mixed
|
48 |
protected $cloud_token;
|
49 |
protected $cloud_project;
|
50 |
protected $image_optimizer_settings;
|
51 |
+
protected $data;
|
52 |
//---------------------------------------------------------------------------------------------------
|
53 |
|
54 |
/**
|
59 |
protected function __construct( WP_Post $post ) {
|
60 |
$this->post = $post;
|
61 |
$this->storage = Brizy_Editor_Storage_Project::instance( $this->post->ID );
|
62 |
+
$this->loadProjectData( $this->storage->get_storage() );
|
63 |
+
}
|
64 |
+
|
65 |
+
public static function cleanClassCache() {
|
66 |
+
self::$instance = array();
|
67 |
+
}
|
68 |
+
|
69 |
+
/**
|
70 |
+
* This will be returned by api when project is requested
|
71 |
+
*/
|
72 |
+
public function create_post_data() {
|
73 |
+
$data = array(
|
74 |
+
'id' => $this->getId(),
|
75 |
+
'data' => $this->getDataAsJson()
|
76 |
+
);
|
77 |
+
|
78 |
+
return $data;
|
79 |
}
|
80 |
|
81 |
public function serialize() {
|
135 |
$wp_post = get_post( $wp_post_id );
|
136 |
}
|
137 |
|
138 |
+
if ( isset( self::$instance[ $wp_post->ID ] ) ) {
|
139 |
return self::$instance[ $wp_post->ID ];
|
140 |
}
|
141 |
} catch ( Exception $e ) {
|
143 |
}
|
144 |
|
145 |
return self::$instance[ $wp_post->ID ] = new self( $wp_post );
|
146 |
+
}
|
147 |
|
148 |
+
/**
|
149 |
+
* @return false|WP_Post
|
150 |
+
* @throws Exception
|
151 |
+
*/
|
152 |
+
static public function getPost() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
global $wpdb;
|
154 |
|
155 |
$row = $wpdb->get_results(
|
186 |
$project_data = array(
|
187 |
'id' => md5( uniqid( 'Local project', true ) ),
|
188 |
'title' => 'Brizy Project',
|
|
|
189 |
'name' => uniqid( 'Local project', true ),
|
190 |
'user' => null,
|
191 |
'template' => array( 'slug' => 'brizy' ),
|
197 |
'signature' => Brizy_Editor_Signature::get(),
|
198 |
'accounts' => array(),
|
199 |
'forms' => array(),
|
200 |
+
'data' => base64_encode( file_get_contents( BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . "public" . DIRECTORY_SEPARATOR . "editor-build" . DIRECTORY_SEPARATOR . "defaults.json" ) ),
|
201 |
'brizy-license-key' => null,
|
202 |
'brizy-cloud-token' => null,
|
203 |
'brizy-cloud-project' => null,
|
218 |
return array(
|
219 |
'id' => $this->id,
|
220 |
'title' => $this->title,
|
221 |
+
//'globals' => $this->globals,
|
222 |
'name' => $this->name,
|
223 |
'user' => $this->user,
|
224 |
'template' => $this->template,
|
230 |
'signature' => $this->signature,
|
231 |
'accounts' => $this->accounts,
|
232 |
'forms' => $this->forms,
|
233 |
+
'data' => $this->data,
|
234 |
'brizy-license-key' => $this->license_key,
|
235 |
'brizy-cloud-token' => $this->cloud_token,
|
236 |
'brizy-cloud-project' => $this->cloud_project,
|
238 |
);
|
239 |
}
|
240 |
|
241 |
+
protected function loadProjectData( $data ) {
|
|
|
|
|
242 |
$this->id = isset( $data['id'] ) ? $data['id'] : null;
|
243 |
$this->title = isset( $data['title'] ) ? $data['title'] : null;
|
|
|
244 |
$this->name = isset( $data['name'] ) ? $data['name'] : null;
|
245 |
$this->user = isset( $data['user'] ) ? $data['user'] : null;
|
246 |
$this->template = isset( $data['template'] ) ? $data['template'] : null;
|
252 |
$this->signature = isset( $data['signature'] ) ? $data['signature'] : null;
|
253 |
$this->accounts = isset( $data['accounts'] ) ? $data['accounts'] : null;
|
254 |
$this->forms = isset( $data['forms'] ) ? $data['forms'] : null;
|
255 |
+
$this->data = isset( $data['data'] ) ? $data['data'] : null;
|
256 |
$this->license_key = isset( $data['brizy-license-key'] ) ? $data['brizy-license-key'] : null;
|
257 |
$this->cloud_token = isset( $data['brizy-cloud-token'] ) ? $data['brizy-cloud-token'] : null;
|
258 |
$this->cloud_project = isset( $data['brizy-cloud-project'] ) ? $data['brizy-cloud-project'] : null;
|
330 |
// @todo: copy data to autosave instance
|
331 |
$data = $this->getProjectData();
|
332 |
|
333 |
+
$autosavePost->loadProjectData( $data );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
$autosavePost->setImageOptimizerSettings( $data['image-optimizer-settings'] );
|
335 |
|
336 |
$autosavePost->save();
|
600 |
public function setCloudProject( $cloud_project ) {
|
601 |
$this->cloud_project = $cloud_project;
|
602 |
}
|
603 |
+
//====================================================================================================================================================================================
|
604 |
|
605 |
/**
|
606 |
* @return mixed
|
639 |
|
640 |
return $this;
|
641 |
}
|
642 |
+
//====================================================================================================================================================================================
|
643 |
+
|
644 |
+
/**
|
645 |
+
* @return mixed
|
646 |
+
*/
|
647 |
+
public function getData() {
|
648 |
+
return $this->data;
|
649 |
+
}
|
650 |
+
|
651 |
+
/**
|
652 |
+
* @param mixed $data
|
653 |
+
*
|
654 |
+
* @return Brizy_Editor_Project
|
655 |
+
*/
|
656 |
+
public function setData( $data ) {
|
657 |
+
$this->data = $data;
|
658 |
+
|
659 |
+
return $this;
|
660 |
+
}
|
661 |
+
|
662 |
+
public function setDataAsJson( $data ) {
|
663 |
+
$this->setData( base64_encode( $data ) );
|
664 |
+
|
665 |
+
return $this;
|
666 |
+
}
|
667 |
+
|
668 |
+
public function getDataAsJson() {
|
669 |
+
return base64_decode( $this->getData() );
|
670 |
+
}
|
671 |
+
|
672 |
+
/**
|
673 |
+
* @return bool|string
|
674 |
+
* @throws Brizy_Editor_Exceptions_NotFound
|
675 |
+
*/
|
676 |
+
public function getDecodedData() {
|
677 |
+
return json_decode( $this->getDataAsJson() );
|
678 |
+
}
|
679 |
|
680 |
/**
|
681 |
* @return mixed
|
editor/storage/post.php
CHANGED
@@ -29,6 +29,9 @@ class Brizy_Editor_Storage_Post extends Brizy_Editor_Storage_Abstract {
|
|
29 |
* @return array
|
30 |
*/
|
31 |
public function get_storage() {
|
|
|
|
|
|
|
32 |
$get_metadata = get_metadata( 'post', $this->get_id(), $this->key(), true );
|
33 |
|
34 |
if ( is_array( $get_metadata ) ) {
|
29 |
* @return array
|
30 |
*/
|
31 |
public function get_storage() {
|
32 |
+
|
33 |
+
wp_cache_delete( $this->get_id(), 'post_meta');
|
34 |
+
|
35 |
$get_metadata = get_metadata( 'post', $this->get_id(), $this->key(), true );
|
36 |
|
37 |
if ( is_array( $get_metadata ) ) {
|
editor/storage/project-globals.php
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if ( ! defined( 'ABSPATH' ) ) {
|
2 |
+
die( 'Direct access forbidden.' );
|
3 |
+
}
|
4 |
+
|
5 |
+
class Brizy_Editor_Storage_ProjectGlobals extends Brizy_Editor_Storage_Project {
|
6 |
+
|
7 |
+
const META_KEY = 'brizy-project-globals';
|
8 |
+
|
9 |
+
protected function key() {
|
10 |
+
return self::META_KEY;
|
11 |
+
}
|
12 |
+
|
13 |
+
/**
|
14 |
+
* @param $id
|
15 |
+
*
|
16 |
+
* @return Brizy_Editor_Storage_Post
|
17 |
+
*/
|
18 |
+
public static function instance( $id ) {
|
19 |
+
return new self( $id );
|
20 |
+
}
|
21 |
+
}
|
editor/url-builder.php
CHANGED
@@ -327,17 +327,13 @@ class Brizy_Editor_UrlBuilder
|
|
327 |
/**
|
328 |
* @param null $path
|
329 |
* @param null $template_version
|
330 |
-
* @param null $template_slug
|
331 |
*
|
332 |
* @return Brizy_Admin_UrlIterator
|
333 |
* @throws Brizy_Editor_Exceptions_NotFound
|
334 |
*/
|
335 |
-
public function external_asset_url($path = null, $template_version = null
|
336 |
{
|
337 |
|
338 |
-
if (is_null($template_slug)) {
|
339 |
-
$template_slug = Brizy_Editor_Project::get()->getTemplateSlug();
|
340 |
-
}
|
341 |
if (is_null($template_version)) {
|
342 |
$template_version = BRIZY_EDITOR_VERSION;
|
343 |
}
|
@@ -347,11 +343,28 @@ class Brizy_Editor_UrlBuilder
|
|
347 |
}
|
348 |
|
349 |
$urls = array();
|
350 |
-
foreach (Brizy_Config::
|
351 |
-
$urls[] = sprintf($url . $path, $
|
352 |
}
|
353 |
|
354 |
return new Brizy_Admin_UrlIterator($urls);
|
355 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
}
|
357 |
|
327 |
/**
|
328 |
* @param null $path
|
329 |
* @param null $template_version
|
|
|
330 |
*
|
331 |
* @return Brizy_Admin_UrlIterator
|
332 |
* @throws Brizy_Editor_Exceptions_NotFound
|
333 |
*/
|
334 |
+
public function external_asset_url($path = null, $template_version = null)
|
335 |
{
|
336 |
|
|
|
|
|
|
|
337 |
if (is_null($template_version)) {
|
338 |
$template_version = BRIZY_EDITOR_VERSION;
|
339 |
}
|
343 |
}
|
344 |
|
345 |
$urls = array();
|
346 |
+
foreach (Brizy_Config::getStaticUrls() as $url) {
|
347 |
+
$urls[] = sprintf($url . $path, $template_version);
|
348 |
}
|
349 |
|
350 |
return new Brizy_Admin_UrlIterator($urls);
|
351 |
}
|
352 |
+
|
353 |
+
/**
|
354 |
+
* @param null $template_version
|
355 |
+
*
|
356 |
+
* @return Brizy_Admin_UrlIterator
|
357 |
+
* @throws Brizy_Editor_Exceptions_NotFound
|
358 |
+
*/
|
359 |
+
public function external_fonts_url($template_version = null)
|
360 |
+
{
|
361 |
+
|
362 |
+
if (is_null($template_version)) {
|
363 |
+
$template_version = BRIZY_EDITOR_VERSION;
|
364 |
+
}
|
365 |
+
|
366 |
+
$url = Brizy_Config::FONTS_URL;
|
367 |
+
return sprintf($url, $template_version);
|
368 |
+
}
|
369 |
}
|
370 |
|
logger.php
CHANGED
@@ -70,7 +70,12 @@ class Brizy_Logger {
|
|
70 |
private function write_log( $type, $message, $context = array() ) {
|
71 |
global $wpdb;
|
72 |
|
73 |
-
if ( ! BRIZY_LOG
|
|
|
|
|
|
|
|
|
|
|
74 |
return;
|
75 |
}
|
76 |
|
@@ -80,13 +85,7 @@ class Brizy_Logger {
|
|
80 |
'context' => serialize( $context ),
|
81 |
'session_id' => session_id(),
|
82 |
'date' => current_time( 'mysql', 1 )
|
83 |
-
), array(
|
84 |
-
'%s',
|
85 |
-
'%s',
|
86 |
-
'%s',
|
87 |
-
'%s',
|
88 |
-
'%s'
|
89 |
-
) );
|
90 |
}
|
91 |
|
92 |
/**
|
70 |
private function write_log( $type, $message, $context = array() ) {
|
71 |
global $wpdb;
|
72 |
|
73 |
+
if ( ! BRIZY_LOG && ! in_array( $type, [
|
74 |
+
self::EMERGENCY_LOG,
|
75 |
+
self::ALERT_LOG,
|
76 |
+
self::CRITICAL_LOG,
|
77 |
+
self::ERROR_LOG,
|
78 |
+
] ) ) {
|
79 |
return;
|
80 |
}
|
81 |
|
85 |
'context' => serialize( $context ),
|
86 |
'session_id' => session_id(),
|
87 |
'date' => current_time( 'mysql', 1 )
|
88 |
+
), array( '%s', '%s', '%s', '%s', '%s' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
}
|
90 |
|
91 |
/**
|
public/abstract-proxy.php
CHANGED
@@ -17,7 +17,7 @@ abstract class Brizy_Public_AbstractProxy extends Brizy_Editor_Asset_StaticFile
|
|
17 |
/**
|
18 |
* Brizy_Public_AssetProxy constructor.
|
19 |
*
|
20 |
-
* @param $url_builder
|
21 |
* @param $config
|
22 |
*/
|
23 |
public function __construct( $url_builder, $config ) {
|
17 |
/**
|
18 |
* Brizy_Public_AssetProxy constructor.
|
19 |
*
|
20 |
+
* @param Brizy_Editor_UrlBuilder $url_builder
|
21 |
* @param $config
|
22 |
*/
|
23 |
public function __construct( $url_builder, $config ) {
|
public/editor-build/defaults.json
ADDED
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"selectedKit": "kxnmljnsniklnqftyvrkkzwhcvudtcmxikok",
|
3 |
+
|
4 |
+
"selectedStyle": "kldugntsakdckzxhreidncqvgunudghrcuzv",
|
5 |
+
"styles": [
|
6 |
+
{
|
7 |
+
"id": "kldugntsakdckzxhreidncqvgunudghrcuzv",
|
8 |
+
"title": "Brizy default",
|
9 |
+
"colorPalette": [
|
10 |
+
{ "id": "color1", "hex": "#191b21" },
|
11 |
+
{ "id": "color2", "hex": "#142850" },
|
12 |
+
{ "id": "color3", "hex": "#239ddb" },
|
13 |
+
{ "id": "color4", "hex": "#66738d" },
|
14 |
+
{ "id": "color5", "hex": "#bde1f4" },
|
15 |
+
{ "id": "color6", "hex": "#eef0f2" },
|
16 |
+
{ "id": "color7", "hex": "#73777f" },
|
17 |
+
{ "id": "color8", "hex": "#ffffff" }
|
18 |
+
],
|
19 |
+
"fontStyles": [
|
20 |
+
{
|
21 |
+
"deletable": "off",
|
22 |
+
"id": "paragraph",
|
23 |
+
"title": "Paragraph",
|
24 |
+
"fontFamily": "noto_serif",
|
25 |
+
"fontFamilyType": "google",
|
26 |
+
"fontSize": 16,
|
27 |
+
"fontWeight": 300,
|
28 |
+
"lineHeight": 1.7,
|
29 |
+
"letterSpacing": 0,
|
30 |
+
"tabletFontSize": 15,
|
31 |
+
"tabletFontWeight": 300,
|
32 |
+
"tabletLineHeight": 1.6,
|
33 |
+
"tabletLetterSpacing": 0,
|
34 |
+
"mobileFontSize": 15,
|
35 |
+
"mobileFontWeight": 300,
|
36 |
+
"mobileLineHeight": 1.6,
|
37 |
+
"mobileLetterSpacing": 0
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"deletable": "off",
|
41 |
+
"id": "subtitle",
|
42 |
+
"title": "Subtitle",
|
43 |
+
"fontFamily": "noto_serif",
|
44 |
+
"fontFamilyType": "google",
|
45 |
+
"fontSize": 18,
|
46 |
+
"fontWeight": 300,
|
47 |
+
"lineHeight": 1.5,
|
48 |
+
"letterSpacing": 0,
|
49 |
+
"tabletFontSize": 17,
|
50 |
+
"tabletFontWeight": 300,
|
51 |
+
"tabletLineHeight": 1.5,
|
52 |
+
"tabletLetterSpacing": 0,
|
53 |
+
"mobileFontSize": 17,
|
54 |
+
"mobileFontWeight": 300,
|
55 |
+
"mobileLineHeight": 1.5,
|
56 |
+
"mobileLetterSpacing": 0
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"deletable": "off",
|
60 |
+
"id": "abovetitle",
|
61 |
+
"title": "Above Title",
|
62 |
+
"fontFamily": "montserrat",
|
63 |
+
"fontFamilyType": "google",
|
64 |
+
"fontSize": 16,
|
65 |
+
"fontWeight": 400,
|
66 |
+
"lineHeight": 1.7,
|
67 |
+
"letterSpacing": 2,
|
68 |
+
"tabletFontSize": 15,
|
69 |
+
"tabletFontWeight": 400,
|
70 |
+
"tabletLineHeight": 1.7,
|
71 |
+
"tabletLetterSpacing": 2,
|
72 |
+
"mobileFontSize": 13,
|
73 |
+
"mobileFontWeight": 400,
|
74 |
+
"mobileLineHeight": 1.7,
|
75 |
+
"mobileLetterSpacing": 2
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"deletable": "off",
|
79 |
+
"id": "heading1",
|
80 |
+
"title": "Heading 1",
|
81 |
+
"fontFamily": "montserrat",
|
82 |
+
"fontFamilyType": "google",
|
83 |
+
"fontSize": 56,
|
84 |
+
"fontWeight": 200,
|
85 |
+
"lineHeight": 1.3,
|
86 |
+
"letterSpacing": -1.5,
|
87 |
+
"tabletFontSize": 40,
|
88 |
+
"tabletFontWeight": 200,
|
89 |
+
"tabletLineHeight": 1.3,
|
90 |
+
"tabletLetterSpacing": -1,
|
91 |
+
"mobileFontSize": 34,
|
92 |
+
"mobileFontWeight": 200,
|
93 |
+
"mobileLineHeight": 1.3,
|
94 |
+
"mobileLetterSpacing": -1
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"deletable": "off",
|
98 |
+
"id": "heading2",
|
99 |
+
"title": "Heading 2",
|
100 |
+
"fontFamily": "montserrat",
|
101 |
+
"fontFamilyType": "google",
|
102 |
+
"fontSize": 42,
|
103 |
+
"fontWeight": 700,
|
104 |
+
"lineHeight": 1.3,
|
105 |
+
"letterSpacing": -1.5,
|
106 |
+
"tabletFontSize": 35,
|
107 |
+
"tabletFontWeight": 700,
|
108 |
+
"tabletLineHeight": 1.3,
|
109 |
+
"tabletLetterSpacing": -0.5,
|
110 |
+
"mobileFontSize": 29,
|
111 |
+
"mobileFontWeight": 700,
|
112 |
+
"mobileLineHeight": 1.3,
|
113 |
+
"mobileLetterSpacing": -0.5
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"deletable": "off",
|
117 |
+
"id": "heading3",
|
118 |
+
"title": "Heading 3",
|
119 |
+
"fontFamily": "montserrat",
|
120 |
+
"fontFamilyType": "google",
|
121 |
+
"fontSize": 32,
|
122 |
+
"fontWeight": 600,
|
123 |
+
"lineHeight": 1.3,
|
124 |
+
"letterSpacing": -1,
|
125 |
+
"tabletFontSize": 27,
|
126 |
+
"tabletFontWeight": 600,
|
127 |
+
"tabletLineHeight": 1.3,
|
128 |
+
"tabletLetterSpacing": 0,
|
129 |
+
"mobileFontSize": 22,
|
130 |
+
"mobileFontWeight": 600,
|
131 |
+
"mobileLineHeight": 1.3,
|
132 |
+
"mobileLetterSpacing": 0
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"deletable": "off",
|
136 |
+
"id": "heading4",
|
137 |
+
"title": "Heading 4",
|
138 |
+
"fontFamily": "montserrat",
|
139 |
+
"fontFamilyType": "google",
|
140 |
+
"fontSize": 26,
|
141 |
+
"fontWeight": 500,
|
142 |
+
"lineHeight": 1.4,
|
143 |
+
"letterSpacing": -1,
|
144 |
+
"tabletFontSize": 24,
|
145 |
+
"tabletFontWeight": 500,
|
146 |
+
"tabletLineHeight": 1.4,
|
147 |
+
"tabletLetterSpacing": 0,
|
148 |
+
"mobileFontSize": 21,
|
149 |
+
"mobileFontWeight": 500,
|
150 |
+
"mobileLineHeight": 1.4,
|
151 |
+
"mobileLetterSpacing": 0
|
152 |
+
},
|
153 |
+
{
|
154 |
+
"deletable": "off",
|
155 |
+
"id": "heading5",
|
156 |
+
"title": "Heading 5",
|
157 |
+
"fontFamily": "montserrat",
|
158 |
+
"fontFamilyType": "google",
|
159 |
+
"fontSize": 20,
|
160 |
+
"fontWeight": 500,
|
161 |
+
"lineHeight": 1.5,
|
162 |
+
"letterSpacing": 0,
|
163 |
+
"tabletFontSize": 19,
|
164 |
+
"tabletFontWeight": 500,
|
165 |
+
"tabletLineHeight": 1.4,
|
166 |
+
"tabletLetterSpacing": 0,
|
167 |
+
"mobileFontSize": 18,
|
168 |
+
"mobileFontWeight": 500,
|
169 |
+
"mobileLineHeight": 1.4,
|
170 |
+
"mobileLetterSpacing": 0
|
171 |
+
},
|
172 |
+
{
|
173 |
+
"deletable": "off",
|
174 |
+
"id": "heading6",
|
175 |
+
"title": "Heading 6",
|
176 |
+
"fontFamily": "montserrat",
|
177 |
+
"fontFamilyType": "google",
|
178 |
+
"fontSize": 17,
|
179 |
+
"fontWeight": 500,
|
180 |
+
"lineHeight": 1.5,
|
181 |
+
"letterSpacing": 0,
|
182 |
+
"tabletFontSize": 16,
|
183 |
+
"tabletFontWeight": 500,
|
184 |
+
"tabletLineHeight": 1.4,
|
185 |
+
"tabletLetterSpacing": 0,
|
186 |
+
"mobileFontSize": 16,
|
187 |
+
"mobileFontWeight": 500,
|
188 |
+
"mobileLineHeight": 1.4,
|
189 |
+
"mobileLetterSpacing": 0
|
190 |
+
},
|
191 |
+
{
|
192 |
+
"deletable": "off",
|
193 |
+
"id": "button",
|
194 |
+
"title": "Button",
|
195 |
+
"fontFamily": "montserrat",
|
196 |
+
"fontFamilyType": "google",
|
197 |
+
"fontSize": 12,
|
198 |
+
"fontWeight": 600,
|
199 |
+
"lineHeight": 1.8,
|
200 |
+
"letterSpacing": 3,
|
201 |
+
"tabletFontSize": 12,
|
202 |
+
"tabletFontWeight": 600,
|
203 |
+
"tabletLineHeight": 1.8,
|
204 |
+
"tabletLetterSpacing": 3,
|
205 |
+
"mobileFontSize": 12,
|
206 |
+
"mobileFontWeight": 600,
|
207 |
+
"mobileLineHeight": 1.8,
|
208 |
+
"mobileLetterSpacing": 3
|
209 |
+
}
|
210 |
+
]
|
211 |
+
}
|
212 |
+
],
|
213 |
+
|
214 |
+
"extraFontStyles": [],
|
215 |
+
"font": "lato",
|
216 |
+
"fonts": {
|
217 |
+
"config": {
|
218 |
+
"data": [
|
219 |
+
{
|
220 |
+
"kind": "webfonts#webfont",
|
221 |
+
"family": "Lato",
|
222 |
+
"category": "sans-serif",
|
223 |
+
"variants": [
|
224 |
+
"100",
|
225 |
+
"100italic",
|
226 |
+
"300",
|
227 |
+
"300italic",
|
228 |
+
"regular",
|
229 |
+
"italic",
|
230 |
+
"700",
|
231 |
+
"700italic",
|
232 |
+
"900",
|
233 |
+
"900italic"
|
234 |
+
],
|
235 |
+
"subsets": ["latin-ext", "latin"],
|
236 |
+
"version": "v15",
|
237 |
+
"lastModified": "2019-03-26",
|
238 |
+
"files": {
|
239 |
+
"100": "http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf",
|
240 |
+
"300": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf",
|
241 |
+
"700": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf",
|
242 |
+
"900": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf",
|
243 |
+
"100italic": "http://fonts.gstatic.com/s/lato/v15/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf",
|
244 |
+
"300italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf",
|
245 |
+
"regular": "http://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHvxk6XweuBCY.ttf",
|
246 |
+
"italic": "http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf",
|
247 |
+
"700italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf",
|
248 |
+
"900italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"
|
249 |
+
},
|
250 |
+
"brizyId": "uzrpsocdxtgrkbxjjxkchqcybpvpzsuvdlji"
|
251 |
+
},
|
252 |
+
{
|
253 |
+
"kind": "webfonts#webfont",
|
254 |
+
"family": "ABeeZee",
|
255 |
+
"category": "sans-serif",
|
256 |
+
"variants": ["regular", "italic"],
|
257 |
+
"subsets": ["latin"],
|
258 |
+
"version": "v12",
|
259 |
+
"lastModified": "2019-01-15",
|
260 |
+
"files": {
|
261 |
+
"regular": "http://fonts.gstatic.com/s/abeezee/v12/esDR31xSG-6AGleN6tKukbcHCpE.ttf",
|
262 |
+
"italic": "http://fonts.gstatic.com/s/abeezee/v12/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf"
|
263 |
+
},
|
264 |
+
"brizyId": "fssjnezwaovklsvbjobkbtwfwzidqvknrxmc"
|
265 |
+
},
|
266 |
+
{
|
267 |
+
"kind": "webfonts#webfont",
|
268 |
+
"family": "Montserrat",
|
269 |
+
"category": "sans-serif",
|
270 |
+
"variants": [
|
271 |
+
"100",
|
272 |
+
"100italic",
|
273 |
+
"200",
|
274 |
+
"200italic",
|
275 |
+
"300",
|
276 |
+
"300italic",
|
277 |
+
"regular",
|
278 |
+
"italic",
|
279 |
+
"500",
|
280 |
+
"500italic",
|
281 |
+
"600",
|
282 |
+
"600italic",
|
283 |
+
"700",
|
284 |
+
"700italic",
|
285 |
+
"800",
|
286 |
+
"800italic",
|
287 |
+
"900",
|
288 |
+
"900italic"
|
289 |
+
],
|
290 |
+
"subsets": [
|
291 |
+
"vietnamese",
|
292 |
+
"cyrillic-ext",
|
293 |
+
"latin-ext",
|
294 |
+
"cyrillic",
|
295 |
+
"latin"
|
296 |
+
],
|
297 |
+
"version": "v13",
|
298 |
+
"lastModified": "2019-03-26",
|
299 |
+
"files": {
|
300 |
+
"100": "http://fonts.gstatic.com/s/montserrat/v13/JTUQjIg1_i6t8kCHKm45_QphziTn89dtpQ.ttf",
|
301 |
+
"200": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_aZA7g7J_950vCo.ttf",
|
302 |
+
"300": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_cJD7g7J_950vCo.ttf",
|
303 |
+
"500": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_ZpC7g7J_950vCo.ttf",
|
304 |
+
"600": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_bZF7g7J_950vCo.ttf",
|
305 |
+
"700": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_dJE7g7J_950vCo.ttf",
|
306 |
+
"800": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_c5H7g7J_950vCo.ttf",
|
307 |
+
"900": "http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_epG7g7J_950vCo.ttf",
|
308 |
+
"100italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUOjIg1_i6t8kCHKm459WxZqi7j0dJ9pTOi.ttf",
|
309 |
+
"200italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZBg_D-_xxrCq7qg.ttf",
|
310 |
+
"300italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZYgzD-_xxrCq7qg.ttf",
|
311 |
+
"regular": "http://fonts.gstatic.com/s/montserrat/v13/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf",
|
312 |
+
"italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUQjIg1_i6t8kCHKm459WxhziTn89dtpQ.ttf",
|
313 |
+
"500italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZOg3D-_xxrCq7qg.ttf",
|
314 |
+
"600italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZFgrD-_xxrCq7qg.ttf",
|
315 |
+
"700italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZcgvD-_xxrCq7qg.ttf",
|
316 |
+
"800italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZbgjD-_xxrCq7qg.ttf",
|
317 |
+
"900italic": "http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZSgnD-_xxrCq7qg.ttf"
|
318 |
+
},
|
319 |
+
"brizyId": "lpeslwpvtxtkwxfbandsesyaknvqrmpiaqyv"
|
320 |
+
},
|
321 |
+
{
|
322 |
+
"kind": "webfonts#webfont",
|
323 |
+
"family": "Noto Serif",
|
324 |
+
"category": "serif",
|
325 |
+
"variants": ["regular", "italic", "700", "700italic"],
|
326 |
+
"subsets": [
|
327 |
+
"vietnamese",
|
328 |
+
"cyrillic-ext",
|
329 |
+
"greek",
|
330 |
+
"latin-ext",
|
331 |
+
"cyrillic",
|
332 |
+
"greek-ext",
|
333 |
+
"latin"
|
334 |
+
],
|
335 |
+
"version": "v7",
|
336 |
+
"lastModified": "2019-02-21",
|
337 |
+
"files": {
|
338 |
+
"700": "http://fonts.gstatic.com/s/notoserif/v7/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf",
|
339 |
+
"regular": "http://fonts.gstatic.com/s/notoserif/v7/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf",
|
340 |
+
"italic": "http://fonts.gstatic.com/s/notoserif/v7/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf",
|
341 |
+
"700italic": "http://fonts.gstatic.com/s/notoserif/v7/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf"
|
342 |
+
},
|
343 |
+
"brizyId": "vttuvnjlopiluegwtqqyjxvjdktjpbqldovw"
|
344 |
+
},
|
345 |
+
{
|
346 |
+
"kind": "webfonts#webfont",
|
347 |
+
"family": "Playfair Display",
|
348 |
+
"category": "serif",
|
349 |
+
"variants": [
|
350 |
+
"regular",
|
351 |
+
"italic",
|
352 |
+
"700",
|
353 |
+
"700italic",
|
354 |
+
"900",
|
355 |
+
"900italic"
|
356 |
+
],
|
357 |
+
"subsets": ["vietnamese", "latin-ext", "cyrillic", "latin"],
|
358 |
+
"version": "v14",
|
359 |
+
"lastModified": "2019-02-21",
|
360 |
+
"files": {
|
361 |
+
"700": "http://fonts.gstatic.com/s/playfairdisplay/v14/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf",
|
362 |
+
"900": "http://fonts.gstatic.com/s/playfairdisplay/v14/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf",
|
363 |
+
"regular": "http://fonts.gstatic.com/s/playfairdisplay/v14/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf",
|
364 |
+
"italic": "http://fonts.gstatic.com/s/playfairdisplay/v14/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf",
|
365 |
+
"700italic": "http://fonts.gstatic.com/s/playfairdisplay/v14/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf",
|
366 |
+
"900italic": "http://fonts.gstatic.com/s/playfairdisplay/v14/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf"
|
367 |
+
},
|
368 |
+
"brizyId": "zyzecfhodguppihjwobwkjogtpmznbyyhdgr"
|
369 |
+
},
|
370 |
+
{
|
371 |
+
"kind": "webfonts#webfont",
|
372 |
+
"family": "Roboto",
|
373 |
+
"category": "sans-serif",
|
374 |
+
"variants": [
|
375 |
+
"100",
|
376 |
+
"100italic",
|
377 |
+
"300",
|
378 |
+
"300italic",
|
379 |
+
"regular",
|
380 |
+
"italic",
|
381 |
+
"500",
|
382 |
+
"500italic",
|
383 |
+
"700",
|
384 |
+
"700italic",
|
385 |
+
"900",
|
386 |
+
"900italic"
|
387 |
+
],
|
388 |
+
"subsets": [
|
389 |
+
"vietnamese",
|
390 |
+
"cyrillic-ext",
|
391 |
+
"greek",
|
392 |
+
"latin-ext",
|
393 |
+
"cyrillic",
|
394 |
+
"greek-ext",
|
395 |
+
"latin"
|
396 |
+
],
|
397 |
+
"version": "v19",
|
398 |
+
"lastModified": "2019-03-26",
|
399 |
+
"files": {
|
400 |
+
"100": "http://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf",
|
401 |
+
"300": "http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf",
|
402 |
+
"500": "http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf",
|
403 |
+
"700": "http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf",
|
404 |
+
"900": "http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf",
|
405 |
+
"100italic": "http://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf",
|
406 |
+
"300italic": "http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf",
|
407 |
+
"regular": "http://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf",
|
408 |
+
"italic": "http://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf",
|
409 |
+
"500italic": "http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf",
|
410 |
+
"700italic": "http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf",
|
411 |
+
"900italic": "http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"
|
412 |
+
},
|
413 |
+
"brizyId": "tykbceyqcgcvewxvboqneltuamxcdyyubpdl"
|
414 |
+
}
|
415 |
+
]
|
416 |
+
}
|
417 |
+
}
|
418 |
+
}
|
public/editor-build/editor/css/editor.css
CHANGED
@@ -7,4442 +7,6 @@
|
|
7 |
@font-face{font-family:pn;src:url(../fonts/pn-regular-webfont.eot);src:url(../fonts/pn-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-regular-webfont.woff2) format("woff2"),url(../fonts/pn-regular-webfont.woff) format("woff"),url(../fonts/pn-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}
|
8 |
@font-face{font-family:pn;src:url(../fonts/pn-medium-webfont.eot);src:url(../fonts/pn-medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-medium-webfont.woff2) format("woff2"),url(../fonts/pn-medium-webfont.woff) format("woff"),url(../fonts/pn-medium-webfont.svg) format("svg");font-weight:600;font-style:normal}
|
9 |
@font-face{font-family:pn;src:url(../fonts/pn-bold-webfont.eot);src:url(../fonts/pn-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-bold-webfont.woff2) format("woff2"),url(../fonts/pn-bold-webfont.woff) format("woff"),url(../fonts/pn-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}
|
10 |
-
.nc-outline-2x-drag-down:before{content:"\ea01"}
|
11 |
-
.nc-outline-2x-drag-up:before{content:"\ea02"}
|
12 |
-
.nc-outline-2x-swipe-down:before{content:"\ea03"}
|
13 |
-
.nc-outline-2x-swipe-left:before{content:"\ea04"}
|
14 |
-
.nc-outline-2x-swipe-right:before{content:"\ea05"}
|
15 |
-
.nc-outline-2x-swipe-up:before{content:"\ea06"}
|
16 |
-
.nc-outline-2x-tap:before{content:"\ea07"}
|
17 |
-
.nc-outline-3d-29:before{content:"\ea08"}
|
18 |
-
.nc-outline-3d-model:before{content:"\ea09"}
|
19 |
-
.nc-outline-3d:before{content:"\ea0a"}
|
20 |
-
.nc-outline-3x-swipe-left:before{content:"\ea0b"}
|
21 |
-
.nc-outline-3x-swipe-right:before{content:"\ea0c"}
|
22 |
-
.nc-outline-3x-swipe-up:before{content:"\ea0e"}
|
23 |
-
.nc-outline-3x-tap:before{content:"\ea0d"}
|
24 |
-
.nc-outline-4x-swipe-left:before{content:"\ea0f"}
|
25 |
-
.nc-outline-4x-swipe-right:before{content:"\ea10"}
|
26 |
-
.nc-outline-4x-swipe-up:before{content:"\ea11"}
|
27 |
-
.nc-outline-a-add:before{content:"\ea12"}
|
28 |
-
.nc-outline-a-check:before{content:"\ea13"}
|
29 |
-
.nc-outline-a-delete:before{content:"\ea14"}
|
30 |
-
.nc-outline-a-edit:before{content:"\ea15"}
|
31 |
-
.nc-outline-a-heart:before{content:"\ea16"}
|
32 |
-
.nc-outline-a-location:before{content:"\ea17"}
|
33 |
-
.nc-outline-a-remove:before{content:"\ea18"}
|
34 |
-
.nc-outline-a-search:before{content:"\ea19"}
|
35 |
-
.nc-outline-a-security:before{content:"\ea1a"}
|
36 |
-
.nc-outline-a-share:before{content:"\ea1b"}
|
37 |
-
.nc-outline-a-star:before{content:"\ea1c"}
|
38 |
-
.nc-outline-a-sync:before{content:"\ea1d"}
|
39 |
-
.nc-outline-a-time:before{content:"\ea1e"}
|
40 |
-
.nc-outline-abc:before{content:"\ea1f"}
|
41 |
-
.nc-outline-accessibility:before{content:"\ea20"}
|
42 |
-
.nc-outline-action-73:before{content:"\ea22"}
|
43 |
-
.nc-outline-action-74:before{content:"\ea21"}
|
44 |
-
.nc-outline-active-38:before{content:"\ea23"}
|
45 |
-
.nc-outline-active-40:before{content:"\ea24"}
|
46 |
-
.nc-outline-add-27:before{content:"\ea26"}
|
47 |
-
.nc-outline-add-29:before{content:"\ea25"}
|
48 |
-
.nc-outline-add:before{content:"\ea28"}
|
49 |
-
.nc-outline-agenda-bookmark:before{content:"\ea27"}
|
50 |
-
.nc-outline-agenda:before{content:"\ea29"}
|
51 |
-
.nc-outline-air-baloon:before{content:"\ea2a"}
|
52 |
-
.nc-outline-air-conditioner:before{content:"\ea2b"}
|
53 |
-
.nc-outline-airbag:before{content:"\ea2c"}
|
54 |
-
.nc-outline-alarm-add:before{content:"\ea2d"}
|
55 |
-
.nc-outline-alarm-delete:before{content:"\ea2e"}
|
56 |
-
.nc-outline-album-2:before{content:"\ea2f"}
|
57 |
-
.nc-outline-album:before{content:"\ea30"}
|
58 |
-
.nc-outline-alcohol:before{content:"\ea31"}
|
59 |
-
.nc-outline-alert-circle-exc:before{content:"\ea32"}
|
60 |
-
.nc-outline-alert-circle-i:before{content:"\ea33"}
|
61 |
-
.nc-outline-alert-circle-que:before{content:"\ea34"}
|
62 |
-
.nc-outline-alert-exc:before{content:"\ea35"}
|
63 |
-
.nc-outline-alert-i:before{content:"\ea36"}
|
64 |
-
.nc-outline-alert-que:before{content:"\ea37"}
|
65 |
-
.nc-outline-alert-square-exc:before{content:"\ea38"}
|
66 |
-
.nc-outline-alert-square-i:before{content:"\ea39"}
|
67 |
-
.nc-outline-alert-square-que:before{content:"\ea3a"}
|
68 |
-
.nc-outline-alert:before{content:"\ea3b"}
|
69 |
-
.nc-outline-alien-29:before{content:"\ea3c"}
|
70 |
-
.nc-outline-alien-33:before{content:"\ea3d"}
|
71 |
-
.nc-outline-align-bottom:before{content:"\ea3e"}
|
72 |
-
.nc-outline-align-center-horizontal:before{content:"\ea3f"}
|
73 |
-
.nc-outline-align-center-vertical:before{content:"\ea40"}
|
74 |
-
.nc-outline-align-center:before{content:"\ea41"}
|
75 |
-
.nc-outline-align-justify:before{content:"\ea42"}
|
76 |
-
.nc-outline-align-left-2:before{content:"\ea43"}
|
77 |
-
.nc-outline-align-left:before{content:"\ea44"}
|
78 |
-
.nc-outline-align-right-2:before{content:"\ea45"}
|
79 |
-
.nc-outline-align-right:before{content:"\ea46"}
|
80 |
-
.nc-outline-align-top:before{content:"\ea47"}
|
81 |
-
.nc-outline-ambulance:before{content:"\ea48"}
|
82 |
-
.nc-outline-analytics-88:before{content:"\ea49"}
|
83 |
-
.nc-outline-analytics-89:before{content:"\ea4a"}
|
84 |
-
.nc-outline-anchor:before{content:"\ea4c"}
|
85 |
-
.nc-outline-android:before{content:"\ea4b"}
|
86 |
-
.nc-outline-angle:before{content:"\ea4d"}
|
87 |
-
.nc-outline-angry-10:before{content:"\ea4e"}
|
88 |
-
.nc-outline-angry-44:before{content:"\ea50"}
|
89 |
-
.nc-outline-animation-14:before{content:"\ea4f"}
|
90 |
-
.nc-outline-animation-31:before{content:"\ea51"}
|
91 |
-
.nc-outline-animation-32:before{content:"\ea52"}
|
92 |
-
.nc-outline-app:before{content:"\ea53"}
|
93 |
-
.nc-outline-apple-2:before{content:"\ea54"}
|
94 |
-
.nc-outline-apple:before{content:"\ea55"}
|
95 |
-
.nc-outline-appointment:before{content:"\ea56"}
|
96 |
-
.nc-outline-archive-2:before{content:"\ea57"}
|
97 |
-
.nc-outline-archive-3d-check:before{content:"\ea58"}
|
98 |
-
.nc-outline-archive-3d-content:before{content:"\ea59"}
|
99 |
-
.nc-outline-archive-check:before{content:"\ea5a"}
|
100 |
-
.nc-outline-archive-content:before{content:"\ea5b"}
|
101 |
-
.nc-outline-archive-paper-check:before{content:"\ea5c"}
|
102 |
-
.nc-outline-archive-paper:before{content:"\ea5d"}
|
103 |
-
.nc-outline-archive:before{content:"\ea5e"}
|
104 |
-
.nc-outline-armchair:before{content:"\ea5f"}
|
105 |
-
.nc-outline-artboard:before{content:"\ea60"}
|
106 |
-
.nc-outline-astronaut:before{content:"\ea62"}
|
107 |
-
.nc-outline-at-sign:before{content:"\ea61"}
|
108 |
-
.nc-outline-atm:before{content:"\ea63"}
|
109 |
-
.nc-outline-atom:before{content:"\ea64"}
|
110 |
-
.nc-outline-attach-86:before{content:"\ea65"}
|
111 |
-
.nc-outline-attach-87:before{content:"\ea66"}
|
112 |
-
.nc-outline-aubergine:before{content:"\ea67"}
|
113 |
-
.nc-outline-audio-91:before{content:"\ea68"}
|
114 |
-
.nc-outline-audio-92:before{content:"\ea69"}
|
115 |
-
.nc-outline-audio:before{content:"\ea6a"}
|
116 |
-
.nc-outline-avocado:before{content:"\ea6c"}
|
117 |
-
.nc-outline-award-48:before{content:"\ea6b"}
|
118 |
-
.nc-outline-award-49:before{content:"\ea6d"}
|
119 |
-
.nc-outline-award-55:before{content:"\ea6e"}
|
120 |
-
.nc-outline-award-74:before{content:"\ea6f"}
|
121 |
-
.nc-outline-award:before{content:"\ea70"}
|
122 |
-
.nc-outline-axe:before{content:"\ea71"}
|
123 |
-
.nc-outline-b-add:before{content:"\ea72"}
|
124 |
-
.nc-outline-b-check:before{content:"\ea74"}
|
125 |
-
.nc-outline-b-location:before{content:"\ea73"}
|
126 |
-
.nc-outline-b-love:before{content:"\ea75"}
|
127 |
-
.nc-outline-b-meeting:before{content:"\ea76"}
|
128 |
-
.nc-outline-b-remove:before{content:"\ea78"}
|
129 |
-
.nc-outline-b-security:before{content:"\ea77"}
|
130 |
-
.nc-outline-baby-2:before{content:"\ea79"}
|
131 |
-
.nc-outline-baby-3:before{content:"\ea7a"}
|
132 |
-
.nc-outline-baby-bottle:before{content:"\ea7b"}
|
133 |
-
.nc-outline-baby:before{content:"\ea7c"}
|
134 |
-
.nc-outline-back-78:before{content:"\ea7d"}
|
135 |
-
.nc-outline-back-80:before{content:"\ea7e"}
|
136 |
-
.nc-outline-background:before{content:"\ea7f"}
|
137 |
-
.nc-outline-backpack-2:before{content:"\ea80"}
|
138 |
-
.nc-outline-backpack-57:before{content:"\ea81"}
|
139 |
-
.nc-outline-backpack-58:before{content:"\ea82"}
|
140 |
-
.nc-outline-backpack:before{content:"\ea83"}
|
141 |
-
.nc-outline-backward:before{content:"\ea84"}
|
142 |
-
.nc-outline-bacon:before{content:"\ea85"}
|
143 |
-
.nc-outline-badge-13:before{content:"\ea86"}
|
144 |
-
.nc-outline-badge-14:before{content:"\ea87"}
|
145 |
-
.nc-outline-badge-15:before{content:"\ea88"}
|
146 |
-
.nc-outline-badge:before{content:"\ea89"}
|
147 |
-
.nc-outline-badminton:before{content:"\ea8a"}
|
148 |
-
.nc-outline-bag-09:before{content:"\ea8b"}
|
149 |
-
.nc-outline-bag-16:before{content:"\ea8c"}
|
150 |
-
.nc-outline-bag-17:before{content:"\ea8d"}
|
151 |
-
.nc-outline-bag-20:before{content:"\ea8e"}
|
152 |
-
.nc-outline-bag-21:before{content:"\ea8f"}
|
153 |
-
.nc-outline-bag-22:before{content:"\ea90"}
|
154 |
-
.nc-outline-bag-49:before{content:"\ea91"}
|
155 |
-
.nc-outline-bag-50:before{content:"\ea92"}
|
156 |
-
.nc-outline-bag-add-18:before{content:"\ea93"}
|
157 |
-
.nc-outline-bag-add-21:before{content:"\ea94"}
|
158 |
-
.nc-outline-bag-delivery:before{content:"\ea95"}
|
159 |
-
.nc-outline-bag-edit:before{content:"\ea96"}
|
160 |
-
.nc-outline-bag-remove-19:before{content:"\ea97"}
|
161 |
-
.nc-outline-bag-remove-22:before{content:"\ea98"}
|
162 |
-
.nc-outline-bag-time:before{content:"\ea99"}
|
163 |
-
.nc-outline-bag:before{content:"\ea9a"}
|
164 |
-
.nc-outline-baguette:before{content:"\ea9b"}
|
165 |
-
.nc-outline-balance:before{content:"\ea9c"}
|
166 |
-
.nc-outline-ball-basket:before{content:"\ea9d"}
|
167 |
-
.nc-outline-ball-soccer:before{content:"\ea9e"}
|
168 |
-
.nc-outline-baloon:before{content:"\eaa0"}
|
169 |
-
.nc-outline-ban-bold:before{content:"\ea9f"}
|
170 |
-
.nc-outline-ban:before{content:"\eaa1"}
|
171 |
-
.nc-outline-banana:before{content:"\eaa2"}
|
172 |
-
.nc-outline-bank:before{content:"\eaa3"}
|
173 |
-
.nc-outline-barbecue-15:before{content:"\eaa4"}
|
174 |
-
.nc-outline-barbecue-tools:before{content:"\eaa5"}
|
175 |
-
.nc-outline-barbecue:before{content:"\eaa6"}
|
176 |
-
.nc-outline-barcode-qr:before{content:"\eaa7"}
|
177 |
-
.nc-outline-barcode-scan:before{content:"\eaa8"}
|
178 |
-
.nc-outline-barcode:before{content:"\eaa9"}
|
179 |
-
.nc-outline-bars-2:before{content:"\eaaa"}
|
180 |
-
.nc-outline-bars-rotate:before{content:"\eaac"}
|
181 |
-
.nc-outline-bars:before{content:"\eaab"}
|
182 |
-
.nc-outline-baseball-ball:before{content:"\eaad"}
|
183 |
-
.nc-outline-baseball-bat:before{content:"\eaae"}
|
184 |
-
.nc-outline-baseball:before{content:"\eaaf"}
|
185 |
-
.nc-outline-basket-add:before{content:"\eab0"}
|
186 |
-
.nc-outline-basket-edit:before{content:"\eab1"}
|
187 |
-
.nc-outline-basket-favorite:before{content:"\eab2"}
|
188 |
-
.nc-outline-basket-remove:before{content:"\eab3"}
|
189 |
-
.nc-outline-basket-search:before{content:"\eab4"}
|
190 |
-
.nc-outline-basket-share:before{content:"\eab5"}
|
191 |
-
.nc-outline-basket-simple-add:before{content:"\eab6"}
|
192 |
-
.nc-outline-basket-simple-remove:before{content:"\eab7"}
|
193 |
-
.nc-outline-basket-simple:before{content:"\eab8"}
|
194 |
-
.nc-outline-basket-update:before{content:"\eab9"}
|
195 |
-
.nc-outline-basket:before{content:"\eaba"}
|
196 |
-
.nc-outline-basketball-12:before{content:"\eabb"}
|
197 |
-
.nc-outline-basketball-13:before{content:"\eabc"}
|
198 |
-
.nc-outline-bat:before{content:"\eabd"}
|
199 |
-
.nc-outline-bath-tub:before{content:"\eabe"}
|
200 |
-
.nc-outline-battery-81:before{content:"\eabf"}
|
201 |
-
.nc-outline-battery-83:before{content:"\eac0"}
|
202 |
-
.nc-outline-battery-half:before{content:"\eac1"}
|
203 |
-
.nc-outline-battery-level:before{content:"\eac2"}
|
204 |
-
.nc-outline-battery-low:before{content:"\eac3"}
|
205 |
-
.nc-outline-battery:before{content:"\eac4"}
|
206 |
-
.nc-outline-bear-2:before{content:"\eac5"}
|
207 |
-
.nc-outline-bear:before{content:"\eac6"}
|
208 |
-
.nc-outline-bed-09:before{content:"\eac8"}
|
209 |
-
.nc-outline-bed-23:before{content:"\eac9"}
|
210 |
-
.nc-outline-bed-side:before{content:"\eac7"}
|
211 |
-
.nc-outline-bee:before{content:"\eaca"}
|
212 |
-
.nc-outline-beer-95:before{content:"\eacb"}
|
213 |
-
.nc-outline-beer-96:before{content:"\eacc"}
|
214 |
-
.nc-outline-bell-53:before{content:"\eacd"}
|
215 |
-
.nc-outline-bell-54:before{content:"\eace"}
|
216 |
-
.nc-outline-bell-55:before{content:"\eacf"}
|
217 |
-
.nc-outline-belt:before{content:"\ead0"}
|
218 |
-
.nc-outline-berlin:before{content:"\ead1"}
|
219 |
-
.nc-outline-beverage:before{content:"\ead2"}
|
220 |
-
.nc-outline-big-eyes:before{content:"\ead4"}
|
221 |
-
.nc-outline-big-smile:before{content:"\ead3"}
|
222 |
-
.nc-outline-bigmouth:before{content:"\ead5"}
|
223 |
-
.nc-outline-bike-2:before{content:"\ead6"}
|
224 |
-
.nc-outline-bike:before{content:"\ead7"}
|
225 |
-
.nc-outline-bill:before{content:"\ead9"}
|
226 |
-
.nc-outline-billiard:before{content:"\ead8"}
|
227 |
-
.nc-outline-binocular:before{content:"\eada"}
|
228 |
-
.nc-outline-biscuit:before{content:"\eadb"}
|
229 |
-
.nc-outline-bitcoin:before{content:"\eadc"}
|
230 |
-
.nc-outline-bleah:before{content:"\eadd"}
|
231 |
-
.nc-outline-blend:before{content:"\eade"}
|
232 |
-
.nc-outline-blind:before{content:"\eae0"}
|
233 |
-
.nc-outline-block-bottom-left:before{content:"\eadf"}
|
234 |
-
.nc-outline-block-bottom-right:before{content:"\eae1"}
|
235 |
-
.nc-outline-block-down:before{content:"\eae2"}
|
236 |
-
.nc-outline-block-left:before{content:"\eae3"}
|
237 |
-
.nc-outline-block-right:before{content:"\eae4"}
|
238 |
-
.nc-outline-block-top-left:before{content:"\eae5"}
|
239 |
-
.nc-outline-block-top-right:before{content:"\eae6"}
|
240 |
-
.nc-outline-block-up:before{content:"\eae8"}
|
241 |
-
.nc-outline-blog:before{content:"\eae7"}
|
242 |
-
.nc-outline-blueberries:before{content:"\eae9"}
|
243 |
-
.nc-outline-bluetooth:before{content:"\eaea"}
|
244 |
-
.nc-outline-board-2:before{content:"\eaeb"}
|
245 |
-
.nc-outline-board-27:before{content:"\eaec"}
|
246 |
-
.nc-outline-board-28:before{content:"\eaed"}
|
247 |
-
.nc-outline-board-29:before{content:"\eaee"}
|
248 |
-
.nc-outline-board-30:before{content:"\eaef"}
|
249 |
-
.nc-outline-board-51:before{content:"\eaf0"}
|
250 |
-
.nc-outline-board:before{content:"\eaf1"}
|
251 |
-
.nc-outline-boat-front:before{content:"\eaf2"}
|
252 |
-
.nc-outline-boat-small-02:before{content:"\eaf3"}
|
253 |
-
.nc-outline-boat-small-03:before{content:"\eaf4"}
|
254 |
-
.nc-outline-boat:before{content:"\eaf5"}
|
255 |
-
.nc-outline-bold-add:before{content:"\eaf6"}
|
256 |
-
.nc-outline-bold-delete:before{content:"\eaf7"}
|
257 |
-
.nc-outline-bold-direction:before{content:"\eaf8"}
|
258 |
-
.nc-outline-bold-down:before{content:"\eaf9"}
|
259 |
-
.nc-outline-bold-left:before{content:"\eafa"}
|
260 |
-
.nc-outline-bold-remove:before{content:"\eafc"}
|
261 |
-
.nc-outline-bold-right:before{content:"\eafb"}
|
262 |
-
.nc-outline-bold-up:before{content:"\eafd"}
|
263 |
-
.nc-outline-bold:before{content:"\eafe"}
|
264 |
-
.nc-outline-bolt:before{content:"\eaff"}
|
265 |
-
.nc-outline-bomb:before{content:"\eb00"}
|
266 |
-
.nc-outline-bones:before{content:"\eb01"}
|
267 |
-
.nc-outline-book-07:before{content:"\eb02"}
|
268 |
-
.nc-outline-book-08:before{content:"\eb03"}
|
269 |
-
.nc-outline-book-39:before{content:"\eb04"}
|
270 |
-
.nc-outline-book-bookmark-2:before{content:"\eb05"}
|
271 |
-
.nc-outline-book-bookmark:before{content:"\eb06"}
|
272 |
-
.nc-outline-book-open-2:before{content:"\eb07"}
|
273 |
-
.nc-outline-book-open:before{content:"\eb08"}
|
274 |
-
.nc-outline-book:before{content:"\eb09"}
|
275 |
-
.nc-outline-bookmark-2:before{content:"\eb0a"}
|
276 |
-
.nc-outline-bookmark-add-2:before{content:"\eb0b"}
|
277 |
-
.nc-outline-bookmark-add:before{content:"\eb0c"}
|
278 |
-
.nc-outline-bookmark-remove-2:before{content:"\eb0d"}
|
279 |
-
.nc-outline-bookmark-remove:before{content:"\eb0e"}
|
280 |
-
.nc-outline-bookmark:before{content:"\eb0f"}
|
281 |
-
.nc-outline-books-46:before{content:"\eb10"}
|
282 |
-
.nc-outline-books:before{content:"\eb11"}
|
283 |
-
.nc-outline-boot-2:before{content:"\eb12"}
|
284 |
-
.nc-outline-boot-woman:before{content:"\eb14"}
|
285 |
-
.nc-outline-boot:before{content:"\eb15"}
|
286 |
-
.nc-outline-border-radius:before{content:"\eb13"}
|
287 |
-
.nc-outline-border:before{content:"\eb16"}
|
288 |
-
.nc-outline-bored:before{content:"\eb17"}
|
289 |
-
.nc-outline-bottle-wine:before{content:"\eb18"}
|
290 |
-
.nc-outline-bottle:before{content:"\eb19"}
|
291 |
-
.nc-outline-bow:before{content:"\eb1a"}
|
292 |
-
.nc-outline-bowl:before{content:"\eb1b"}
|
293 |
-
.nc-outline-bowling:before{content:"\eb1d"}
|
294 |
-
.nc-outline-box-2:before{content:"\eb1c"}
|
295 |
-
.nc-outline-box-3d-50:before{content:"\eb1e"}
|
296 |
-
.nc-outline-box-ribbon:before{content:"\eb1f"}
|
297 |
-
.nc-outline-box:before{content:"\eb20"}
|
298 |
-
.nc-outline-boxing:before{content:"\eb21"}
|
299 |
-
.nc-outline-bra:before{content:"\eb22"}
|
300 |
-
.nc-outline-brain:before{content:"\eb23"}
|
301 |
-
.nc-outline-brakes:before{content:"\eb24"}
|
302 |
-
.nc-outline-bread:before{content:"\eb25"}
|
303 |
-
.nc-outline-briefcase-24:before{content:"\eb26"}
|
304 |
-
.nc-outline-briefcase-25:before{content:"\eb28"}
|
305 |
-
.nc-outline-briefcase-26:before{content:"\eb27"}
|
306 |
-
.nc-outline-brightness-46:before{content:"\eb29"}
|
307 |
-
.nc-outline-brightness-47:before{content:"\eb2a"}
|
308 |
-
.nc-outline-brioche:before{content:"\eb2d"}
|
309 |
-
.nc-outline-broccoli:before{content:"\eb2b"}
|
310 |
-
.nc-outline-broom:before{content:"\eb2c"}
|
311 |
-
.nc-outline-browser-chrome:before{content:"\eb2e"}
|
312 |
-
.nc-outline-browser-edge:before{content:"\eb2f"}
|
313 |
-
.nc-outline-browser-firefox:before{content:"\eb30"}
|
314 |
-
.nc-outline-browser-ie:before{content:"\eb31"}
|
315 |
-
.nc-outline-browser-opera:before{content:"\eb32"}
|
316 |
-
.nc-outline-browser-safari:before{content:"\eb35"}
|
317 |
-
.nc-outline-brush:before{content:"\eb34"}
|
318 |
-
.nc-outline-bucket:before{content:"\eb33"}
|
319 |
-
.nc-outline-bug:before{content:"\eb36"}
|
320 |
-
.nc-outline-building:before{content:"\eb37"}
|
321 |
-
.nc-outline-bulb-61:before{content:"\eb39"}
|
322 |
-
.nc-outline-bulb-62:before{content:"\eb38"}
|
323 |
-
.nc-outline-bulb-63:before{content:"\eb3a"}
|
324 |
-
.nc-outline-bulb-saver:before{content:"\eb3b"}
|
325 |
-
.nc-outline-bulb:before{content:"\eb3d"}
|
326 |
-
.nc-outline-bullet-list-67:before{content:"\eb3c"}
|
327 |
-
.nc-outline-bullet-list-68:before{content:"\eb3e"}
|
328 |
-
.nc-outline-bullet-list-69:before{content:"\eb41"}
|
329 |
-
.nc-outline-bullet-list-70:before{content:"\eb3f"}
|
330 |
-
.nc-outline-bullet-list:before{content:"\eb40"}
|
331 |
-
.nc-outline-bus-front-10:before{content:"\eb42"}
|
332 |
-
.nc-outline-bus-front-12:before{content:"\eb44"}
|
333 |
-
.nc-outline-bus:before{content:"\eb45"}
|
334 |
-
.nc-outline-business-contact-85:before{content:"\eb43"}
|
335 |
-
.nc-outline-business-contact-89:before{content:"\eb46"}
|
336 |
-
.nc-outline-businessman-03:before{content:"\eb47"}
|
337 |
-
.nc-outline-businessman-04:before{content:"\eb48"}
|
338 |
-
.nc-outline-butterfly:before{content:"\eb49"}
|
339 |
-
.nc-outline-button-2:before{content:"\eb4a"}
|
340 |
-
.nc-outline-button-circle-pause:before{content:"\eb4c"}
|
341 |
-
.nc-outline-button-circle-play:before{content:"\eb4b"}
|
342 |
-
.nc-outline-button-circle-stop:before{content:"\eb4d"}
|
343 |
-
.nc-outline-button-eject:before{content:"\eb4e"}
|
344 |
-
.nc-outline-button-next:before{content:"\eb50"}
|
345 |
-
.nc-outline-button-pause:before{content:"\eb4f"}
|
346 |
-
.nc-outline-button-play:before{content:"\eb51"}
|
347 |
-
.nc-outline-button-power:before{content:"\eb52"}
|
348 |
-
.nc-outline-button-previous:before{content:"\eb54"}
|
349 |
-
.nc-outline-button-record:before{content:"\eb53"}
|
350 |
-
.nc-outline-button-rewind:before{content:"\eb55"}
|
351 |
-
.nc-outline-button-skip:before{content:"\eb56"}
|
352 |
-
.nc-outline-button-stop:before{content:"\eb57"}
|
353 |
-
.nc-outline-button:before{content:"\eb58"}
|
354 |
-
.nc-outline-cabinet:before{content:"\eb59"}
|
355 |
-
.nc-outline-cable-49:before{content:"\eb5a"}
|
356 |
-
.nc-outline-cable-50:before{content:"\eb5b"}
|
357 |
-
.nc-outline-cactus:before{content:"\eb5c"}
|
358 |
-
.nc-outline-cake-100:before{content:"\eb5d"}
|
359 |
-
.nc-outline-cake-13:before{content:"\eb5e"}
|
360 |
-
.nc-outline-cake-slice:before{content:"\eb5f"}
|
361 |
-
.nc-outline-cake:before{content:"\eb60"}
|
362 |
-
.nc-outline-calculator:before{content:"\eb61"}
|
363 |
-
.nc-outline-calendar-57:before{content:"\eb62"}
|
364 |
-
.nc-outline-calendar-60:before{content:"\eb64"}
|
365 |
-
.nc-outline-calendar-add:before{content:"\eb65"}
|
366 |
-
.nc-outline-calendar-check-59:before{content:"\eb63"}
|
367 |
-
.nc-outline-calendar-check-62:before{content:"\eb66"}
|
368 |
-
.nc-outline-calendar-grid-58:before{content:"\eb67"}
|
369 |
-
.nc-outline-calendar-grid-61:before{content:"\eb68"}
|
370 |
-
.nc-outline-camera-18:before{content:"\eb69"}
|
371 |
-
.nc-outline-camera-19:before{content:"\eb6a"}
|
372 |
-
.nc-outline-camera-20:before{content:"\eb6b"}
|
373 |
-
.nc-outline-camera-ban-36:before{content:"\eb6c"}
|
374 |
-
.nc-outline-camera-ban-37:before{content:"\eb6d"}
|
375 |
-
.nc-outline-camera-compact:before{content:"\eb6e"}
|
376 |
-
.nc-outline-camera-screen:before{content:"\eb6f"}
|
377 |
-
.nc-outline-camera-square-57:before{content:"\eb70"}
|
378 |
-
.nc-outline-camera-square-58:before{content:"\eb71"}
|
379 |
-
.nc-outline-camera-time:before{content:"\eb72"}
|
380 |
-
.nc-outline-camera:before{content:"\eb73"}
|
381 |
-
.nc-outline-camper:before{content:"\eb75"}
|
382 |
-
.nc-outline-camping:before{content:"\eb74"}
|
383 |
-
.nc-outline-candle:before{content:"\eb76"}
|
384 |
-
.nc-outline-candy-2:before{content:"\eb77"}
|
385 |
-
.nc-outline-candy:before{content:"\eb78"}
|
386 |
-
.nc-outline-canvas:before{content:"\eb79"}
|
387 |
-
.nc-outline-cap:before{content:"\eb7a"}
|
388 |
-
.nc-outline-capitalize:before{content:"\eb7b"}
|
389 |
-
.nc-outline-caps-all:before{content:"\eb7c"}
|
390 |
-
.nc-outline-caps-small:before{content:"\eb7d"}
|
391 |
-
.nc-outline-car-2:before{content:"\eb7e"}
|
392 |
-
.nc-outline-car-accident:before{content:"\eb7f"}
|
393 |
-
.nc-outline-car-connect:before{content:"\eb80"}
|
394 |
-
.nc-outline-car-door:before{content:"\eb81"}
|
395 |
-
.nc-outline-car-front:before{content:"\eb82"}
|
396 |
-
.nc-outline-car-lights:before{content:"\eb83"}
|
397 |
-
.nc-outline-car-parking:before{content:"\eb84"}
|
398 |
-
.nc-outline-car-simple:before{content:"\eb85"}
|
399 |
-
.nc-outline-car-sport:before{content:"\eb86"}
|
400 |
-
.nc-outline-car-taxi:before{content:"\eb87"}
|
401 |
-
.nc-outline-car-ventilation:before{content:"\eb88"}
|
402 |
-
.nc-outline-car-wash:before{content:"\eb89"}
|
403 |
-
.nc-outline-car:before{content:"\eb8a"}
|
404 |
-
.nc-outline-card-add-2:before{content:"\eb8b"}
|
405 |
-
.nc-outline-card-add:before{content:"\eb8c"}
|
406 |
-
.nc-outline-card-alert:before{content:"\eb8d"}
|
407 |
-
.nc-outline-card-edit:before{content:"\eb8e"}
|
408 |
-
.nc-outline-card-favorite:before{content:"\eb8f"}
|
409 |
-
.nc-outline-card-remove:before{content:"\eb90"}
|
410 |
-
.nc-outline-card-update:before{content:"\eb91"}
|
411 |
-
.nc-outline-cardio:before{content:"\eb92"}
|
412 |
-
.nc-outline-cards:before{content:"\eb94"}
|
413 |
-
.nc-outline-carrot:before{content:"\eb95"}
|
414 |
-
.nc-outline-cart-9:before{content:"\eb93"}
|
415 |
-
.nc-outline-cart-add-9:before{content:"\eb96"}
|
416 |
-
.nc-outline-cart-add:before{content:"\eb97"}
|
417 |
-
.nc-outline-cart-favorite:before{content:"\eb98"}
|
418 |
-
.nc-outline-cart-full:before{content:"\eb99"}
|
419 |
-
.nc-outline-cart-in-9:before{content:"\eb9a"}
|
420 |
-
.nc-outline-cart-refresh:before{content:"\eb9c"}
|
421 |
-
.nc-outline-cart-remove-9:before{content:"\eb9b"}
|
422 |
-
.nc-outline-cart-remove:before{content:"\eb9d"}
|
423 |
-
.nc-outline-cart-return:before{content:"\eb9e"}
|
424 |
-
.nc-outline-cart-simple-add:before{content:"\eb9f"}
|
425 |
-
.nc-outline-cart-simple-in:before{content:"\eba1"}
|
426 |
-
.nc-outline-cart-simple-remove:before{content:"\eba0"}
|
427 |
-
.nc-outline-cart-simple:before{content:"\eba2"}
|
428 |
-
.nc-outline-cart-speed:before{content:"\eba3"}
|
429 |
-
.nc-outline-cart:before{content:"\eba4"}
|
430 |
-
.nc-outline-cash-register:before{content:"\eba5"}
|
431 |
-
.nc-outline-castle:before{content:"\eba6"}
|
432 |
-
.nc-outline-cat:before{content:"\eba7"}
|
433 |
-
.nc-outline-cauldron:before{content:"\eba8"}
|
434 |
-
.nc-outline-cctv:before{content:"\eba9"}
|
435 |
-
.nc-outline-cd-reader:before{content:"\ebaa"}
|
436 |
-
.nc-outline-celsius:before{content:"\ebab"}
|
437 |
-
.nc-outline-centralize:before{content:"\ebac"}
|
438 |
-
.nc-outline-chair-2:before{content:"\ebad"}
|
439 |
-
.nc-outline-chair:before{content:"\ebae"}
|
440 |
-
.nc-outline-chalkboard:before{content:"\ebaf"}
|
441 |
-
.nc-outline-champagne:before{content:"\ebb0"}
|
442 |
-
.nc-outline-chart-2:before{content:"\ebb1"}
|
443 |
-
.nc-outline-chart-3:before{content:"\ebb2"}
|
444 |
-
.nc-outline-chart-bar-32:before{content:"\ebb3"}
|
445 |
-
.nc-outline-chart-bar-33:before{content:"\ebb4"}
|
446 |
-
.nc-outline-chart-bar-52:before{content:"\ebb5"}
|
447 |
-
.nc-outline-chart-bar-53:before{content:"\ebb6"}
|
448 |
-
.nc-outline-chart-bar:before{content:"\ebb7"}
|
449 |
-
.nc-outline-chart-bars:before{content:"\ebb8"}
|
450 |
-
.nc-outline-chart-growth:before{content:"\ebb9"}
|
451 |
-
.nc-outline-chart-pie-35:before{content:"\ebba"}
|
452 |
-
.nc-outline-chart-pie-36:before{content:"\ebbb"}
|
453 |
-
.nc-outline-chart-pie:before{content:"\ebbc"}
|
454 |
-
.nc-outline-chart:before{content:"\ebbd"}
|
455 |
-
.nc-outline-chat-33:before{content:"\ebbe"}
|
456 |
-
.nc-outline-chat-45:before{content:"\ebbf"}
|
457 |
-
.nc-outline-chat-46:before{content:"\ebc0"}
|
458 |
-
.nc-outline-chat-content:before{content:"\ebc1"}
|
459 |
-
.nc-outline-chat-reply:before{content:"\ebc2"}
|
460 |
-
.nc-outline-chat-round-content:before{content:"\ebc3"}
|
461 |
-
.nc-outline-chat-round:before{content:"\ebc4"}
|
462 |
-
.nc-outline-chat:before{content:"\ebc5"}
|
463 |
-
.nc-outline-check-2:before{content:"\ebc6"}
|
464 |
-
.nc-outline-check-bold:before{content:"\ebc7"}
|
465 |
-
.nc-outline-check-circle-07:before{content:"\ebc8"}
|
466 |
-
.nc-outline-check-circle-08:before{content:"\ebc9"}
|
467 |
-
.nc-outline-check-curve:before{content:"\ebca"}
|
468 |
-
.nc-outline-check-in:before{content:"\ebcb"}
|
469 |
-
.nc-outline-check-out:before{content:"\ebcc"}
|
470 |
-
.nc-outline-check-simple:before{content:"\ebcd"}
|
471 |
-
.nc-outline-check-small:before{content:"\ebce"}
|
472 |
-
.nc-outline-check-square-09:before{content:"\ebcf"}
|
473 |
-
.nc-outline-check-square-11:before{content:"\ebd0"}
|
474 |
-
.nc-outline-check:before{content:"\ebd1"}
|
475 |
-
.nc-outline-cheese-24:before{content:"\ebd2"}
|
476 |
-
.nc-outline-cheese-87:before{content:"\ebd3"}
|
477 |
-
.nc-outline-cheeseburger:before{content:"\ebd4"}
|
478 |
-
.nc-outline-chef-hat:before{content:"\ebd6"}
|
479 |
-
.nc-outline-chef:before{content:"\ebd5"}
|
480 |
-
.nc-outline-cheque-2:before{content:"\ebd7"}
|
481 |
-
.nc-outline-cheque-3:before{content:"\ebd8"}
|
482 |
-
.nc-outline-cheque:before{content:"\ebda"}
|
483 |
-
.nc-outline-cherry:before{content:"\ebd9"}
|
484 |
-
.nc-outline-chicken-2:before{content:"\ebdb"}
|
485 |
-
.nc-outline-chicken:before{content:"\ebdc"}
|
486 |
-
.nc-outline-child:before{content:"\ebdd"}
|
487 |
-
.nc-outline-chili:before{content:"\ebde"}
|
488 |
-
.nc-outline-chimney:before{content:"\ebdf"}
|
489 |
-
.nc-outline-china:before{content:"\ebe0"}
|
490 |
-
.nc-outline-chinese:before{content:"\ebe1"}
|
491 |
-
.nc-outline-chips:before{content:"\ebe2"}
|
492 |
-
.nc-outline-choco-cream:before{content:"\ebe3"}
|
493 |
-
.nc-outline-chocolate-mousse:before{content:"\ebe4"}
|
494 |
-
.nc-outline-chocolate:before{content:"\ebe5"}
|
495 |
-
.nc-outline-church:before{content:"\ebe6"}
|
496 |
-
.nc-outline-churros:before{content:"\ebe7"}
|
497 |
-
.nc-outline-circle-02:before{content:"\ebe8"}
|
498 |
-
.nc-outline-circle-03:before{content:"\ebe9"}
|
499 |
-
.nc-outline-circle-04:before{content:"\ebea"}
|
500 |
-
.nc-outline-circle-08:before{content:"\ebec"}
|
501 |
-
.nc-outline-circle-09:before{content:"\ebeb"}
|
502 |
-
.nc-outline-circle-10:before{content:"\ebed"}
|
503 |
-
.nc-outline-circle-add:before{content:"\ebee"}
|
504 |
-
.nc-outline-circle-bold-add:before{content:"\ebef"}
|
505 |
-
.nc-outline-circle-bold-delete:before{content:"\ebf0"}
|
506 |
-
.nc-outline-circle-bold-remove:before{content:"\ebf1"}
|
507 |
-
.nc-outline-circle-delete:before{content:"\ebf2"}
|
508 |
-
.nc-outline-circle-down-12:before{content:"\ebf3"}
|
509 |
-
.nc-outline-circle-down-40:before{content:"\ebf4"}
|
510 |
-
.nc-outline-circle-in:before{content:"\ebf5"}
|
511 |
-
.nc-outline-circle-left-10:before{content:"\ebf6"}
|
512 |
-
.nc-outline-circle-left-38:before{content:"\ebf7"}
|
513 |
-
.nc-outline-circle-out:before{content:"\ebf8"}
|
514 |
-
.nc-outline-circle-remove:before{content:"\ebf9"}
|
515 |
-
.nc-outline-circle-right-09:before{content:"\ebfa"}
|
516 |
-
.nc-outline-circle-right-37:before{content:"\ebfc"}
|
517 |
-
.nc-outline-circle-simple-down:before{content:"\ebfb"}
|
518 |
-
.nc-outline-circle-simple-left:before{content:"\ebfe"}
|
519 |
-
.nc-outline-circle-simple-right:before{content:"\ebfd"}
|
520 |
-
.nc-outline-circle-simple-up:before{content:"\ebff"}
|
521 |
-
.nc-outline-circle-up-11:before{content:"\ec00"}
|
522 |
-
.nc-outline-circle-up-39:before{content:"\ec02"}
|
523 |
-
.nc-outline-circle:before{content:"\ec01"}
|
524 |
-
.nc-outline-circuit-round:before{content:"\ec03"}
|
525 |
-
.nc-outline-circuit:before{content:"\ec04"}
|
526 |
-
.nc-outline-clone:before{content:"\ec05"}
|
527 |
-
.nc-outline-cloud-25:before{content:"\ec06"}
|
528 |
-
.nc-outline-cloud-26:before{content:"\ec08"}
|
529 |
-
.nc-outline-cloud-download-93:before{content:"\ec07"}
|
530 |
-
.nc-outline-cloud-download-95:before{content:"\ec09"}
|
531 |
-
.nc-outline-cloud-drop:before{content:"\ec0a"}
|
532 |
-
.nc-outline-cloud-fog-31:before{content:"\ec0c"}
|
533 |
-
.nc-outline-cloud-fog-32:before{content:"\ec0b"}
|
534 |
-
.nc-outline-cloud-hail:before{content:"\ec0d"}
|
535 |
-
.nc-outline-cloud-light:before{content:"\ec0e"}
|
536 |
-
.nc-outline-cloud-moon:before{content:"\ec10"}
|
537 |
-
.nc-outline-cloud-rain:before{content:"\ec0f"}
|
538 |
-
.nc-outline-cloud-rainbow:before{content:"\ec11"}
|
539 |
-
.nc-outline-cloud-snow-34:before{content:"\ec12"}
|
540 |
-
.nc-outline-cloud-snow-42:before{content:"\ec14"}
|
541 |
-
.nc-outline-cloud-sun-17:before{content:"\ec13"}
|
542 |
-
.nc-outline-cloud-sun-19:before{content:"\ec15"}
|
543 |
-
.nc-outline-cloud-upload-94:before{content:"\ec16"}
|
544 |
-
.nc-outline-cloud-upload-96:before{content:"\ec17"}
|
545 |
-
.nc-outline-cloud:before{content:"\ec18"}
|
546 |
-
.nc-outline-clover:before{content:"\ec19"}
|
547 |
-
.nc-outline-coat-hanger:before{content:"\ec1a"}
|
548 |
-
.nc-outline-coat:before{content:"\ec1c"}
|
549 |
-
.nc-outline-cockade:before{content:"\ec1b"}
|
550 |
-
.nc-outline-cocktail:before{content:"\ec1d"}
|
551 |
-
.nc-outline-code-editor:before{content:"\ec1e"}
|
552 |
-
.nc-outline-code:before{content:"\ec1f"}
|
553 |
-
.nc-outline-coffe-long:before{content:"\ec20"}
|
554 |
-
.nc-outline-coffee-2:before{content:"\ec21"}
|
555 |
-
.nc-outline-coffee-bean:before{content:"\ec22"}
|
556 |
-
.nc-outline-coffee-long:before{content:"\ec23"}
|
557 |
-
.nc-outline-coffee:before{content:"\ec24"}
|
558 |
-
.nc-outline-coffin:before{content:"\ec26"}
|
559 |
-
.nc-outline-coins:before{content:"\ec25"}
|
560 |
-
.nc-outline-collar:before{content:"\ec28"}
|
561 |
-
.nc-outline-collection:before{content:"\ec27"}
|
562 |
-
.nc-outline-color:before{content:"\ec2a"}
|
563 |
-
.nc-outline-command:before{content:"\ec29"}
|
564 |
-
.nc-outline-comment-add:before{content:"\ec2b"}
|
565 |
-
.nc-outline-compare:before{content:"\ec2c"}
|
566 |
-
.nc-outline-compass-04:before{content:"\ec2e"}
|
567 |
-
.nc-outline-compass-05:before{content:"\ec2d"}
|
568 |
-
.nc-outline-compass-06:before{content:"\ec2f"}
|
569 |
-
.nc-outline-compass-2:before{content:"\ec30"}
|
570 |
-
.nc-outline-compass-3:before{content:"\ec31"}
|
571 |
-
.nc-outline-compass:before{content:"\ec32"}
|
572 |
-
.nc-outline-components:before{content:"\ec33"}
|
573 |
-
.nc-outline-computer-monitor:before{content:"\ec34"}
|
574 |
-
.nc-outline-computer-old:before{content:"\ec35"}
|
575 |
-
.nc-outline-computer-upload:before{content:"\ec36"}
|
576 |
-
.nc-outline-computer:before{content:"\ec37"}
|
577 |
-
.nc-outline-cone:before{content:"\ec38"}
|
578 |
-
.nc-outline-connect:before{content:"\ec39"}
|
579 |
-
.nc-outline-connection:before{content:"\ec3a"}
|
580 |
-
.nc-outline-contact-86:before{content:"\ec3b"}
|
581 |
-
.nc-outline-contact-87:before{content:"\ec3c"}
|
582 |
-
.nc-outline-contact-88:before{content:"\ec3d"}
|
583 |
-
.nc-outline-contacts-2:before{content:"\ec3e"}
|
584 |
-
.nc-outline-contacts-44:before{content:"\ec3f"}
|
585 |
-
.nc-outline-contacts-45:before{content:"\ec40"}
|
586 |
-
.nc-outline-contacts:before{content:"\ec41"}
|
587 |
-
.nc-outline-contrast-2:before{content:"\ec42"}
|
588 |
-
.nc-outline-contrast:before{content:"\ec43"}
|
589 |
-
.nc-outline-controller-2:before{content:"\ec44"}
|
590 |
-
.nc-outline-controller-3:before{content:"\ec45"}
|
591 |
-
.nc-outline-controller:before{content:"\ec46"}
|
592 |
-
.nc-outline-conversion:before{content:"\ec47"}
|
593 |
-
.nc-outline-cookies:before{content:"\ec48"}
|
594 |
-
.nc-outline-copy-2:before{content:"\ec4a"}
|
595 |
-
.nc-outline-copy:before{content:"\ec49"}
|
596 |
-
.nc-outline-corn:before{content:"\ec4b"}
|
597 |
-
.nc-outline-corner-down-round:before{content:"\ec4c"}
|
598 |
-
.nc-outline-corner-down:before{content:"\ec4d"}
|
599 |
-
.nc-outline-corner-left-down:before{content:"\ec4e"}
|
600 |
-
.nc-outline-corner-left-round:before{content:"\ec50"}
|
601 |
-
.nc-outline-corner-left:before{content:"\ec4f"}
|
602 |
-
.nc-outline-corner-right-down:before{content:"\ec51"}
|
603 |
-
.nc-outline-corner-right-round:before{content:"\ec52"}
|
604 |
-
.nc-outline-corner-right:before{content:"\ec54"}
|
605 |
-
.nc-outline-corner-up-left:before{content:"\ec53"}
|
606 |
-
.nc-outline-corner-up-right:before{content:"\ec55"}
|
607 |
-
.nc-outline-corner-up-round:before{content:"\ec56"}
|
608 |
-
.nc-outline-corner-up:before{content:"\ec57"}
|
609 |
-
.nc-outline-corset:before{content:"\ec58"}
|
610 |
-
.nc-outline-countdown-34:before{content:"\ec59"}
|
611 |
-
.nc-outline-countdown-35:before{content:"\ec5a"}
|
612 |
-
.nc-outline-couple-gay:before{content:"\ec5b"}
|
613 |
-
.nc-outline-couple-lesbian:before{content:"\ec5c"}
|
614 |
-
.nc-outline-coupon:before{content:"\ec5d"}
|
615 |
-
.nc-outline-course:before{content:"\ec5e"}
|
616 |
-
.nc-outline-cow:before{content:"\ec5f"}
|
617 |
-
.nc-outline-crab:before{content:"\ec60"}
|
618 |
-
.nc-outline-cradle:before{content:"\ec62"}
|
619 |
-
.nc-outline-credit-card-in:before{content:"\ec61"}
|
620 |
-
.nc-outline-credit-card:before{content:"\ec64"}
|
621 |
-
.nc-outline-credit-locked:before{content:"\ec63"}
|
622 |
-
.nc-outline-crepe:before{content:"\ec66"}
|
623 |
-
.nc-outline-cricket:before{content:"\ec65"}
|
624 |
-
.nc-outline-croissant:before{content:"\ec67"}
|
625 |
-
.nc-outline-crop:before{content:"\ec68"}
|
626 |
-
.nc-outline-cross-down:before{content:"\ec69"}
|
627 |
-
.nc-outline-cross-horizontal:before{content:"\ec6a"}
|
628 |
-
.nc-outline-cross-left:before{content:"\ec6b"}
|
629 |
-
.nc-outline-cross-right:before{content:"\ec6c"}
|
630 |
-
.nc-outline-cross-up:before{content:"\ec6e"}
|
631 |
-
.nc-outline-cross-vertical:before{content:"\ec6d"}
|
632 |
-
.nc-outline-cross:before{content:"\ec6f"}
|
633 |
-
.nc-outline-crosshair:before{content:"\ec70"}
|
634 |
-
.nc-outline-crown:before{content:"\ec71"}
|
635 |
-
.nc-outline-crumpet:before{content:"\ec72"}
|
636 |
-
.nc-outline-cry-15:before{content:"\ec73"}
|
637 |
-
.nc-outline-cry-57:before{content:"\ec74"}
|
638 |
-
.nc-outline-css3:before{content:"\ec75"}
|
639 |
-
.nc-outline-cupcake:before{content:"\ec76"}
|
640 |
-
.nc-outline-currency-dollar:before{content:"\ec77"}
|
641 |
-
.nc-outline-currency-euro:before{content:"\ec78"}
|
642 |
-
.nc-outline-currency-exchange:before{content:"\ec79"}
|
643 |
-
.nc-outline-currency-pound:before{content:"\ec7a"}
|
644 |
-
.nc-outline-currency-yen:before{content:"\ec7b"}
|
645 |
-
.nc-outline-cursor-48:before{content:"\ec7c"}
|
646 |
-
.nc-outline-cursor-49:before{content:"\ec7e"}
|
647 |
-
.nc-outline-cursor-add:before{content:"\ec7d"}
|
648 |
-
.nc-outline-cursor-grab:before{content:"\ec7f"}
|
649 |
-
.nc-outline-cursor-load:before{content:"\ec80"}
|
650 |
-
.nc-outline-cursor-menu:before{content:"\ec81"}
|
651 |
-
.nc-outline-cursor-not-allowed:before{content:"\ec82"}
|
652 |
-
.nc-outline-cursor-pointer:before{content:"\ec83"}
|
653 |
-
.nc-outline-cursor-text:before{content:"\ec84"}
|
654 |
-
.nc-outline-curtain:before{content:"\ec85"}
|
655 |
-
.nc-outline-curve-circuit:before{content:"\ec86"}
|
656 |
-
.nc-outline-curve-directions:before{content:"\ec88"}
|
657 |
-
.nc-outline-curve-split:before{content:"\ec87"}
|
658 |
-
.nc-outline-curved-next:before{content:"\ec89"}
|
659 |
-
.nc-outline-curved-previous:before{content:"\ec8a"}
|
660 |
-
.nc-outline-customer-support:before{content:"\ec8b"}
|
661 |
-
.nc-outline-cut:before{content:"\ec8c"}
|
662 |
-
.nc-outline-cute:before{content:"\ec8d"}
|
663 |
-
.nc-outline-cutlery-75:before{content:"\ec8e"}
|
664 |
-
.nc-outline-cutlery-76:before{content:"\ec8f"}
|
665 |
-
.nc-outline-cutlery-77:before{content:"\ec90"}
|
666 |
-
.nc-outline-cutlery:before{content:"\ec91"}
|
667 |
-
.nc-outline-cyclist:before{content:"\ec92"}
|
668 |
-
.nc-outline-dart:before{content:"\ec93"}
|
669 |
-
.nc-outline-dashboard-29:before{content:"\ec94"}
|
670 |
-
.nc-outline-dashboard-30:before{content:"\ec95"}
|
671 |
-
.nc-outline-dashboard-half:before{content:"\ec96"}
|
672 |
-
.nc-outline-dashboard-level:before{content:"\ec97"}
|
673 |
-
.nc-outline-database:before{content:"\ec98"}
|
674 |
-
.nc-outline-dead-hand:before{content:"\ec9a"}
|
675 |
-
.nc-outline-decoration:before{content:"\ec99"}
|
676 |
-
.nc-outline-deer:before{content:"\ec9c"}
|
677 |
-
.nc-outline-delete-28:before{content:"\ec9b"}
|
678 |
-
.nc-outline-delete-30:before{content:"\ec9d"}
|
679 |
-
.nc-outline-delete-49:before{content:"\ec9e"}
|
680 |
-
.nc-outline-delete-50:before{content:"\ec9f"}
|
681 |
-
.nc-outline-delivery-2:before{content:"\eca0"}
|
682 |
-
.nc-outline-delivery-3:before{content:"\eca1"}
|
683 |
-
.nc-outline-delivery-fast:before{content:"\eca2"}
|
684 |
-
.nc-outline-delivery-time:before{content:"\eca3"}
|
685 |
-
.nc-outline-delivery-track:before{content:"\eca4"}
|
686 |
-
.nc-outline-delivery:before{content:"\eca5"}
|
687 |
-
.nc-outline-design-system:before{content:"\eca6"}
|
688 |
-
.nc-outline-design:before{content:"\eca7"}
|
689 |
-
.nc-outline-desk-drawer:before{content:"\eca8"}
|
690 |
-
.nc-outline-desk:before{content:"\eca9"}
|
691 |
-
.nc-outline-desktop-screen:before{content:"\ecaa"}
|
692 |
-
.nc-outline-desktop:before{content:"\ecab"}
|
693 |
-
.nc-outline-detox:before{content:"\ecac"}
|
694 |
-
.nc-outline-dev:before{content:"\ecad"}
|
695 |
-
.nc-outline-device-connection:before{content:"\ecae"}
|
696 |
-
.nc-outline-devil:before{content:"\ecaf"}
|
697 |
-
.nc-outline-diag-bottom-left:before{content:"\ecb0"}
|
698 |
-
.nc-outline-diag-bottom-right:before{content:"\ecb1"}
|
699 |
-
.nc-outline-diag-top-left:before{content:"\ecb2"}
|
700 |
-
.nc-outline-diag-top-right:before{content:"\ecb3"}
|
701 |
-
.nc-outline-diamond:before{content:"\ecb4"}
|
702 |
-
.nc-outline-dice:before{content:"\ecb6"}
|
703 |
-
.nc-outline-diet-plan:before{content:"\ecb5"}
|
704 |
-
.nc-outline-diet:before{content:"\ecb7"}
|
705 |
-
.nc-outline-direction-53:before{content:"\ecb8"}
|
706 |
-
.nc-outline-direction-56:before{content:"\ecb9"}
|
707 |
-
.nc-outline-direction:before{content:"\ecba"}
|
708 |
-
.nc-outline-directions:before{content:"\ecbb"}
|
709 |
-
.nc-outline-disabled:before{content:"\ecbc"}
|
710 |
-
.nc-outline-discount-2:before{content:"\ecbd"}
|
711 |
-
.nc-outline-discount:before{content:"\ecbe"}
|
712 |
-
.nc-outline-disgusted:before{content:"\ecc0"}
|
713 |
-
.nc-outline-dish:before{content:"\ecbf"}
|
714 |
-
.nc-outline-dishwasher:before{content:"\ecc1"}
|
715 |
-
.nc-outline-disk-2:before{content:"\ecc2"}
|
716 |
-
.nc-outline-disk-reader:before{content:"\ecc3"}
|
717 |
-
.nc-outline-disk:before{content:"\ecc4"}
|
718 |
-
.nc-outline-disperse:before{content:"\ecc6"}
|
719 |
-
.nc-outline-distribute-horizontal:before{content:"\ecc5"}
|
720 |
-
.nc-outline-distribute-vertical:before{content:"\ecc7"}
|
721 |
-
.nc-outline-divider:before{content:"\ecc8"}
|
722 |
-
.nc-outline-dna-27:before{content:"\ecc9"}
|
723 |
-
.nc-outline-dna-38:before{content:"\ecca"}
|
724 |
-
.nc-outline-dock-bottom:before{content:"\eccb"}
|
725 |
-
.nc-outline-dock-left:before{content:"\eccc"}
|
726 |
-
.nc-outline-dock-right:before{content:"\eccd"}
|
727 |
-
.nc-outline-dock-top:before{content:"\ecce"}
|
728 |
-
.nc-outline-dock:before{content:"\eccf"}
|
729 |
-
.nc-outline-doctor:before{content:"\ecd0"}
|
730 |
-
.nc-outline-dog-house:before{content:"\ecd1"}
|
731 |
-
.nc-outline-dog:before{content:"\ecd2"}
|
732 |
-
.nc-outline-donut:before{content:"\ecd3"}
|
733 |
-
.nc-outline-door:before{content:"\ecd4"}
|
734 |
-
.nc-outline-dots-05:before{content:"\ecd5"}
|
735 |
-
.nc-outline-dots-06:before{content:"\ecd6"}
|
736 |
-
.nc-outline-dots-07:before{content:"\ecd7"}
|
737 |
-
.nc-outline-dots-download:before{content:"\ecd8"}
|
738 |
-
.nc-outline-dots-upload:before{content:"\ecda"}
|
739 |
-
.nc-outline-dots:before{content:"\ecd9"}
|
740 |
-
.nc-outline-double-left:before{content:"\ecdb"}
|
741 |
-
.nc-outline-double-right:before{content:"\ecdc"}
|
742 |
-
.nc-outline-double-tap:before{content:"\ecdd"}
|
743 |
-
.nc-outline-download-2:before{content:"\ecde"}
|
744 |
-
.nc-outline-download-3:before{content:"\ecdf"}
|
745 |
-
.nc-outline-download:before{content:"\ece0"}
|
746 |
-
.nc-outline-drag-21:before{content:"\ece1"}
|
747 |
-
.nc-outline-drag-31:before{content:"\ece2"}
|
748 |
-
.nc-outline-drag-down:before{content:"\ece3"}
|
749 |
-
.nc-outline-drag-left:before{content:"\ece4"}
|
750 |
-
.nc-outline-drag-right:before{content:"\ece5"}
|
751 |
-
.nc-outline-drag-up:before{content:"\ece6"}
|
752 |
-
.nc-outline-drag:before{content:"\ece7"}
|
753 |
-
.nc-outline-drawer-2:before{content:"\ece8"}
|
754 |
-
.nc-outline-drawer:before{content:"\ece9"}
|
755 |
-
.nc-outline-dress-man:before{content:"\ecea"}
|
756 |
-
.nc-outline-dress-woman:before{content:"\eceb"}
|
757 |
-
.nc-outline-drink-2:before{content:"\ecec"}
|
758 |
-
.nc-outline-drink-list:before{content:"\eced"}
|
759 |
-
.nc-outline-drink:before{content:"\ecee"}
|
760 |
-
.nc-outline-drop-15:before{content:"\ecef"}
|
761 |
-
.nc-outline-drop:before{content:"\ecf0"}
|
762 |
-
.nc-outline-drops:before{content:"\ecf1"}
|
763 |
-
.nc-outline-dumbbells:before{content:"\ecf2"}
|
764 |
-
.nc-outline-eclipse:before{content:"\ecf3"}
|
765 |
-
.nc-outline-edit-2:before{content:"\ecf4"}
|
766 |
-
.nc-outline-edit-71:before{content:"\ecf5"}
|
767 |
-
.nc-outline-edit-72:before{content:"\ecf6"}
|
768 |
-
.nc-outline-edit-73:before{content:"\ecf7"}
|
769 |
-
.nc-outline-edit-74:before{content:"\ecf8"}
|
770 |
-
.nc-outline-edit-75:before{content:"\ecf9"}
|
771 |
-
.nc-outline-edit-76:before{content:"\ecfa"}
|
772 |
-
.nc-outline-edit-77:before{content:"\ecfb"}
|
773 |
-
.nc-outline-edit-78:before{content:"\ecfc"}
|
774 |
-
.nc-outline-edit-color:before{content:"\ecfd"}
|
775 |
-
.nc-outline-edit-contrast-42:before{content:"\ecfe"}
|
776 |
-
.nc-outline-edit-contrast-43:before{content:"\ecff"}
|
777 |
-
.nc-outline-edit-saturation:before{content:"\ed00"}
|
778 |
-
.nc-outline-edit:before{content:"\ed01"}
|
779 |
-
.nc-outline-egg-38:before{content:"\ed02"}
|
780 |
-
.nc-outline-egg-39:before{content:"\ed03"}
|
781 |
-
.nc-outline-egg:before{content:"\ed04"}
|
782 |
-
.nc-outline-eject:before{content:"\ed05"}
|
783 |
-
.nc-outline-email-83:before{content:"\ed06"}
|
784 |
-
.nc-outline-email-84:before{content:"\ed07"}
|
785 |
-
.nc-outline-email-85:before{content:"\ed08"}
|
786 |
-
.nc-outline-energy-drink-2:before{content:"\ed0a"}
|
787 |
-
.nc-outline-energy-drink:before{content:"\ed09"}
|
788 |
-
.nc-outline-energy-supplement:before{content:"\ed0b"}
|
789 |
-
.nc-outline-energy:before{content:"\ed0c"}
|
790 |
-
.nc-outline-engine-start:before{content:"\ed0d"}
|
791 |
-
.nc-outline-engine:before{content:"\ed0e"}
|
792 |
-
.nc-outline-enlarge-45:before{content:"\ed0f"}
|
793 |
-
.nc-outline-enlarge-46:before{content:"\ed10"}
|
794 |
-
.nc-outline-enlarge-57:before{content:"\ed12"}
|
795 |
-
.nc-outline-enlarge-58:before{content:"\ed11"}
|
796 |
-
.nc-outline-enlarge-59:before{content:"\ed13"}
|
797 |
-
.nc-outline-enlarge-circle:before{content:"\ed14"}
|
798 |
-
.nc-outline-enlarge-diagonal-43:before{content:"\ed15"}
|
799 |
-
.nc-outline-enlarge-diagonal-44:before{content:"\ed16"}
|
800 |
-
.nc-outline-enlarge-horizontal:before{content:"\ed17"}
|
801 |
-
.nc-outline-enlarge-vertical:before{content:"\ed18"}
|
802 |
-
.nc-outline-eraser-32:before{content:"\ed19"}
|
803 |
-
.nc-outline-eraser-33:before{content:"\ed1a"}
|
804 |
-
.nc-outline-eraser-46:before{content:"\ed1b"}
|
805 |
-
.nc-outline-event-confirm:before{content:"\ed1c"}
|
806 |
-
.nc-outline-event-create:before{content:"\ed1d"}
|
807 |
-
.nc-outline-exchange:before{content:"\ed1e"}
|
808 |
-
.nc-outline-exclamation:before{content:"\ed1f"}
|
809 |
-
.nc-outline-explore-2:before{content:"\ed20"}
|
810 |
-
.nc-outline-explore-user:before{content:"\ed21"}
|
811 |
-
.nc-outline-explore:before{content:"\ed22"}
|
812 |
-
.nc-outline-export:before{content:"\ed23"}
|
813 |
-
.nc-outline-eye-17:before{content:"\ed24"}
|
814 |
-
.nc-outline-eye-19:before{content:"\ed25"}
|
815 |
-
.nc-outline-eye-ban-18:before{content:"\ed26"}
|
816 |
-
.nc-outline-eye-ban-20:before{content:"\ed27"}
|
817 |
-
.nc-outline-factory:before{content:"\ed28"}
|
818 |
-
.nc-outline-fahrenheit:before{content:"\ed2a"}
|
819 |
-
.nc-outline-family:before{content:"\ed29"}
|
820 |
-
.nc-outline-fat-add:before{content:"\ed2b"}
|
821 |
-
.nc-outline-fat-delete:before{content:"\ed2c"}
|
822 |
-
.nc-outline-fat-remove:before{content:"\ed2e"}
|
823 |
-
.nc-outline-fav-remove:before{content:"\ed2d"}
|
824 |
-
.nc-outline-favourite-28:before{content:"\ed2f"}
|
825 |
-
.nc-outline-favourite-31:before{content:"\ed30"}
|
826 |
-
.nc-outline-favourite-add-29:before{content:"\ed31"}
|
827 |
-
.nc-outline-favourite-add-32:before{content:"\ed32"}
|
828 |
-
.nc-outline-favourite-remove-30:before{content:"\ed33"}
|
829 |
-
.nc-outline-favourite-remove-33:before{content:"\ed34"}
|
830 |
-
.nc-outline-fencing:before{content:"\ed36"}
|
831 |
-
.nc-outline-file-add:before{content:"\ed35"}
|
832 |
-
.nc-outline-file-delete:before{content:"\ed37"}
|
833 |
-
.nc-outline-file-download-87:before{content:"\ed38"}
|
834 |
-
.nc-outline-file-download-89:before{content:"\ed39"}
|
835 |
-
.nc-outline-file-download-94:before{content:"\ed3a"}
|
836 |
-
.nc-outline-file-upload-86:before{content:"\ed3b"}
|
837 |
-
.nc-outline-file-upload-88:before{content:"\ed3c"}
|
838 |
-
.nc-outline-file-upload-93:before{content:"\ed3d"}
|
839 |
-
.nc-outline-filter-check:before{content:"\ed3e"}
|
840 |
-
.nc-outline-filter-organization:before{content:"\ed3f"}
|
841 |
-
.nc-outline-filter-remove:before{content:"\ed40"}
|
842 |
-
.nc-outline-filter:before{content:"\ed41"}
|
843 |
-
.nc-outline-fire:before{content:"\ed42"}
|
844 |
-
.nc-outline-firewall:before{content:"\ed43"}
|
845 |
-
.nc-outline-fish:before{content:"\ed44"}
|
846 |
-
.nc-outline-fishbone:before{content:"\ed46"}
|
847 |
-
.nc-outline-fishing:before{content:"\ed45"}
|
848 |
-
.nc-outline-fist:before{content:"\ed47"}
|
849 |
-
.nc-outline-fit-horizontal:before{content:"\ed48"}
|
850 |
-
.nc-outline-fit-vertical:before{content:"\ed49"}
|
851 |
-
.nc-outline-flag-complex:before{content:"\ed4a"}
|
852 |
-
.nc-outline-flag-diagonal-33:before{content:"\ed4b"}
|
853 |
-
.nc-outline-flag-diagonal-34:before{content:"\ed4c"}
|
854 |
-
.nc-outline-flag-finish:before{content:"\ed4d"}
|
855 |
-
.nc-outline-flag-points-31:before{content:"\ed4e"}
|
856 |
-
.nc-outline-flag-points-32:before{content:"\ed50"}
|
857 |
-
.nc-outline-flag-simple:before{content:"\ed4f"}
|
858 |
-
.nc-outline-flag-triangle:before{content:"\ed51"}
|
859 |
-
.nc-outline-flag:before{content:"\ed52"}
|
860 |
-
.nc-outline-flame:before{content:"\ed53"}
|
861 |
-
.nc-outline-flash-21:before{content:"\ed54"}
|
862 |
-
.nc-outline-flash-24:before{content:"\ed55"}
|
863 |
-
.nc-outline-flash-29:before{content:"\ed56"}
|
864 |
-
.nc-outline-flash-auto-22:before{content:"\ed58"}
|
865 |
-
.nc-outline-flash-auto-25:before{content:"\ed57"}
|
866 |
-
.nc-outline-flash-off-23:before{content:"\ed59"}
|
867 |
-
.nc-outline-flash-off-26:before{content:"\ed5a"}
|
868 |
-
.nc-outline-flask-2:before{content:"\ed5b"}
|
869 |
-
.nc-outline-flask:before{content:"\ed5c"}
|
870 |
-
.nc-outline-flick-down:before{content:"\ed5d"}
|
871 |
-
.nc-outline-flick-left:before{content:"\ed5e"}
|
872 |
-
.nc-outline-flick-right:before{content:"\ed5f"}
|
873 |
-
.nc-outline-flick-up:before{content:"\ed60"}
|
874 |
-
.nc-outline-flip-horizontal:before{content:"\ed61"}
|
875 |
-
.nc-outline-flip-vertical:before{content:"\ed62"}
|
876 |
-
.nc-outline-flip:before{content:"\ed63"}
|
877 |
-
.nc-outline-flower-05:before{content:"\ed64"}
|
878 |
-
.nc-outline-flower-06:before{content:"\ed65"}
|
879 |
-
.nc-outline-flower-07:before{content:"\ed66"}
|
880 |
-
.nc-outline-focus-32:before{content:"\ed67"}
|
881 |
-
.nc-outline-focus-38:before{content:"\ed68"}
|
882 |
-
.nc-outline-focus-40:before{content:"\ed69"}
|
883 |
-
.nc-outline-focus-circle:before{content:"\ed6a"}
|
884 |
-
.nc-outline-focus:before{content:"\ed6c"}
|
885 |
-
.nc-outline-fog:before{content:"\ed6b"}
|
886 |
-
.nc-outline-folder-13:before{content:"\ed6d"}
|
887 |
-
.nc-outline-folder-14:before{content:"\ed6e"}
|
888 |
-
.nc-outline-folder-15:before{content:"\ed70"}
|
889 |
-
.nc-outline-folder-16:before{content:"\ed6f"}
|
890 |
-
.nc-outline-folder-17:before{content:"\ed71"}
|
891 |
-
.nc-outline-folder-18:before{content:"\ed72"}
|
892 |
-
.nc-outline-folder-19:before{content:"\ed73"}
|
893 |
-
.nc-outline-folder-add:before{content:"\ed74"}
|
894 |
-
.nc-outline-folder-audio:before{content:"\ed75"}
|
895 |
-
.nc-outline-folder-bookmark:before{content:"\ed76"}
|
896 |
-
.nc-outline-folder-chart-bar:before{content:"\ed78"}
|
897 |
-
.nc-outline-folder-chart-pie:before{content:"\ed77"}
|
898 |
-
.nc-outline-folder-check:before{content:"\ed79"}
|
899 |
-
.nc-outline-folder-cloud:before{content:"\ed7a"}
|
900 |
-
.nc-outline-folder-dev:before{content:"\ed7c"}
|
901 |
-
.nc-outline-folder-download:before{content:"\ed7b"}
|
902 |
-
.nc-outline-folder-edit:before{content:"\ed7d"}
|
903 |
-
.nc-outline-folder-exclamation:before{content:"\ed7e"}
|
904 |
-
.nc-outline-folder-gallery:before{content:"\ed7f"}
|
905 |
-
.nc-outline-folder-heart:before{content:"\ed80"}
|
906 |
-
.nc-outline-folder-image:before{content:"\ed81"}
|
907 |
-
.nc-outline-folder-info:before{content:"\ed82"}
|
908 |
-
.nc-outline-folder-link:before{content:"\ed83"}
|
909 |
-
.nc-outline-folder-locked:before{content:"\ed84"}
|
910 |
-
.nc-outline-folder-money:before{content:"\ed85"}
|
911 |
-
.nc-outline-folder-music:before{content:"\ed86"}
|
912 |
-
.nc-outline-folder-no-access:before{content:"\ed87"}
|
913 |
-
.nc-outline-folder-play:before{content:"\ed88"}
|
914 |
-
.nc-outline-folder-question:before{content:"\ed89"}
|
915 |
-
.nc-outline-folder-refresh:before{content:"\ed8a"}
|
916 |
-
.nc-outline-folder-remove:before{content:"\ed8b"}
|
917 |
-
.nc-outline-folder-search:before{content:"\ed8c"}
|
918 |
-
.nc-outline-folder-settings-81:before{content:"\ed8d"}
|
919 |
-
.nc-outline-folder-settings-97:before{content:"\ed8e"}
|
920 |
-
.nc-outline-folder-shared:before{content:"\ed8f"}
|
921 |
-
.nc-outline-folder-star:before{content:"\ed90"}
|
922 |
-
.nc-outline-folder-time:before{content:"\ed91"}
|
923 |
-
.nc-outline-folder-upload:before{content:"\ed92"}
|
924 |
-
.nc-outline-folder-user:before{content:"\ed93"}
|
925 |
-
.nc-outline-folder-vector:before{content:"\ed94"}
|
926 |
-
.nc-outline-food-dog:before{content:"\ed95"}
|
927 |
-
.nc-outline-food-scale:before{content:"\ed96"}
|
928 |
-
.nc-outline-food:before{content:"\ed97"}
|
929 |
-
.nc-outline-football-headguard:before{content:"\ed98"}
|
930 |
-
.nc-outline-forecast:before{content:"\ed99"}
|
931 |
-
.nc-outline-forest:before{content:"\ed9a"}
|
932 |
-
.nc-outline-fork-round:before{content:"\ed9c"}
|
933 |
-
.nc-outline-fork:before{content:"\ed9b"}
|
934 |
-
.nc-outline-form:before{content:"\ed9e"}
|
935 |
-
.nc-outline-format-left:before{content:"\ed9d"}
|
936 |
-
.nc-outline-format-right:before{content:"\ed9f"}
|
937 |
-
.nc-outline-forward:before{content:"\eda0"}
|
938 |
-
.nc-outline-frame-12:before{content:"\eda1"}
|
939 |
-
.nc-outline-frame-41:before{content:"\eda2"}
|
940 |
-
.nc-outline-frame:before{content:"\eda3"}
|
941 |
-
.nc-outline-frankenstein:before{content:"\eda4"}
|
942 |
-
.nc-outline-fridge:before{content:"\eda6"}
|
943 |
-
.nc-outline-fuel-2:before{content:"\eda5"}
|
944 |
-
.nc-outline-fuel-electric:before{content:"\eda7"}
|
945 |
-
.nc-outline-fuel:before{content:"\eda8"}
|
946 |
-
.nc-outline-full-screen:before{content:"\eda9"}
|
947 |
-
.nc-outline-fullscreen-70:before{content:"\edaa"}
|
948 |
-
.nc-outline-fullscreen-71:before{content:"\edab"}
|
949 |
-
.nc-outline-fullscreen-76:before{content:"\edac"}
|
950 |
-
.nc-outline-fullscreen-77:before{content:"\edae"}
|
951 |
-
.nc-outline-fullscreen-double-74:before{content:"\edad"}
|
952 |
-
.nc-outline-fullscreen-double-75:before{content:"\edaf"}
|
953 |
-
.nc-outline-fullscreen-split-72:before{content:"\edb0"}
|
954 |
-
.nc-outline-fullscreen-split-73:before{content:"\edb1"}
|
955 |
-
.nc-outline-fullsize:before{content:"\edb2"}
|
956 |
-
.nc-outline-funnel-39:before{content:"\edb3"}
|
957 |
-
.nc-outline-funnel-40:before{content:"\edb4"}
|
958 |
-
.nc-outline-funnel-41:before{content:"\edb5"}
|
959 |
-
.nc-outline-gallery:before{content:"\edb6"}
|
960 |
-
.nc-outline-gantt:before{content:"\edb7"}
|
961 |
-
.nc-outline-garlic:before{content:"\edb8"}
|
962 |
-
.nc-outline-ghost-2:before{content:"\edb9"}
|
963 |
-
.nc-outline-ghost:before{content:"\edba"}
|
964 |
-
.nc-outline-gift-2:before{content:"\edbb"}
|
965 |
-
.nc-outline-gift-exchange:before{content:"\edbc"}
|
966 |
-
.nc-outline-gift:before{content:"\edbd"}
|
967 |
-
.nc-outline-git-commit:before{content:"\edbe"}
|
968 |
-
.nc-outline-glass-water:before{content:"\edbf"}
|
969 |
-
.nc-outline-glass:before{content:"\edc0"}
|
970 |
-
.nc-outline-glasses-2:before{content:"\edc2"}
|
971 |
-
.nc-outline-glasses:before{content:"\edc1"}
|
972 |
-
.nc-outline-globe-2:before{content:"\edc3"}
|
973 |
-
.nc-outline-globe:before{content:"\edc4"}
|
974 |
-
.nc-outline-glove:before{content:"\edc5"}
|
975 |
-
.nc-outline-gloves:before{content:"\edc6"}
|
976 |
-
.nc-outline-goal-64:before{content:"\edc7"}
|
977 |
-
.nc-outline-goal-65:before{content:"\edc8"}
|
978 |
-
.nc-outline-gold:before{content:"\edc9"}
|
979 |
-
.nc-outline-golf:before{content:"\edca"}
|
980 |
-
.nc-outline-gps:before{content:"\edcb"}
|
981 |
-
.nc-outline-grab:before{content:"\edcc"}
|
982 |
-
.nc-outline-gradient:before{content:"\edcd"}
|
983 |
-
.nc-outline-grammar-check:before{content:"\edce"}
|
984 |
-
.nc-outline-grape:before{content:"\edcf"}
|
985 |
-
.nc-outline-grave:before{content:"\edd0"}
|
986 |
-
.nc-outline-grid-45:before{content:"\edd1"}
|
987 |
-
.nc-outline-grid-46:before{content:"\edd2"}
|
988 |
-
.nc-outline-grid-48:before{content:"\edd3"}
|
989 |
-
.nc-outline-grid-49:before{content:"\edd4"}
|
990 |
-
.nc-outline-grid-50:before{content:"\edd5"}
|
991 |
-
.nc-outline-grid-square:before{content:"\edd6"}
|
992 |
-
.nc-outline-grid-system:before{content:"\edd8"}
|
993 |
-
.nc-outline-grid:before{content:"\edd7"}
|
994 |
-
.nc-outline-group:before{content:"\edd9"}
|
995 |
-
.nc-outline-guitar:before{content:"\edda"}
|
996 |
-
.nc-outline-hammer:before{content:"\eddb"}
|
997 |
-
.nc-outline-hand-card:before{content:"\eddc"}
|
998 |
-
.nc-outline-handout:before{content:"\edde"}
|
999 |
-
.nc-outline-handshake:before{content:"\eddd"}
|
1000 |
-
.nc-outline-hanger-clothes:before{content:"\eddf"}
|
1001 |
-
.nc-outline-hanger:before{content:"\ede0"}
|
1002 |
-
.nc-outline-hannibal:before{content:"\ede2"}
|
1003 |
-
.nc-outline-happy-sun:before{content:"\ede1"}
|
1004 |
-
.nc-outline-hat-2:before{content:"\ede3"}
|
1005 |
-
.nc-outline-hat-3:before{content:"\ede4"}
|
1006 |
-
.nc-outline-hat-top:before{content:"\ede5"}
|
1007 |
-
.nc-outline-hat:before{content:"\ede6"}
|
1008 |
-
.nc-outline-hazelnut:before{content:"\ede7"}
|
1009 |
-
.nc-outline-hdmi:before{content:"\ede8"}
|
1010 |
-
.nc-outline-headphone:before{content:"\ede9"}
|
1011 |
-
.nc-outline-headphones-2:before{content:"\edea"}
|
1012 |
-
.nc-outline-headphones-mic:before{content:"\edec"}
|
1013 |
-
.nc-outline-headphones:before{content:"\edeb"}
|
1014 |
-
.nc-outline-headset:before{content:"\eded"}
|
1015 |
-
.nc-outline-heart-2:before{content:"\edee"}
|
1016 |
-
.nc-outline-heart-add:before{content:"\edef"}
|
1017 |
-
.nc-outline-heart-remove:before{content:"\edf0"}
|
1018 |
-
.nc-outline-heart:before{content:"\edf2"}
|
1019 |
-
.nc-outline-heartbeat:before{content:"\edf1"}
|
1020 |
-
.nc-outline-heater:before{content:"\edf3"}
|
1021 |
-
.nc-outline-height:before{content:"\edf4"}
|
1022 |
-
.nc-outline-helicopter:before{content:"\edf5"}
|
1023 |
-
.nc-outline-helmet-2:before{content:"\edf6"}
|
1024 |
-
.nc-outline-helmet:before{content:"\edf7"}
|
1025 |
-
.nc-outline-hierarchy-53:before{content:"\edf8"}
|
1026 |
-
.nc-outline-hierarchy-54:before{content:"\edfa"}
|
1027 |
-
.nc-outline-hierarchy-55:before{content:"\edf9"}
|
1028 |
-
.nc-outline-hierarchy-56:before{content:"\edfb"}
|
1029 |
-
.nc-outline-hit-down:before{content:"\edfc"}
|
1030 |
-
.nc-outline-hit-left:before{content:"\edfd"}
|
1031 |
-
.nc-outline-hit-right:before{content:"\edfe"}
|
1032 |
-
.nc-outline-hit-up:before{content:"\edff"}
|
1033 |
-
.nc-outline-hob:before{content:"\ee00"}
|
1034 |
-
.nc-outline-hockey:before{content:"\ee01"}
|
1035 |
-
.nc-outline-hold:before{content:"\ee02"}
|
1036 |
-
.nc-outline-home-2:before{content:"\ee03"}
|
1037 |
-
.nc-outline-home-51:before{content:"\ee04"}
|
1038 |
-
.nc-outline-home-52:before{content:"\ee05"}
|
1039 |
-
.nc-outline-home-minimal:before{content:"\ee06"}
|
1040 |
-
.nc-outline-home-search:before{content:"\ee07"}
|
1041 |
-
.nc-outline-home-simple:before{content:"\ee08"}
|
1042 |
-
.nc-outline-home:before{content:"\ee09"}
|
1043 |
-
.nc-outline-honey:before{content:"\ee0a"}
|
1044 |
-
.nc-outline-hoodie:before{content:"\ee0b"}
|
1045 |
-
.nc-outline-hospital-32:before{content:"\ee0c"}
|
1046 |
-
.nc-outline-hospital-33:before{content:"\ee0d"}
|
1047 |
-
.nc-outline-hospital-34:before{content:"\ee0e"}
|
1048 |
-
.nc-outline-hot-dog:before{content:"\ee0f"}
|
1049 |
-
.nc-outline-hotel-bell:before{content:"\ee10"}
|
1050 |
-
.nc-outline-hotel-symbol:before{content:"\ee11"}
|
1051 |
-
.nc-outline-hotel:before{content:"\ee12"}
|
1052 |
-
.nc-outline-hourglass:before{content:"\ee13"}
|
1053 |
-
.nc-outline-html5:before{content:"\ee14"}
|
1054 |
-
.nc-outline-humidity-26:before{content:"\ee15"}
|
1055 |
-
.nc-outline-humidity-52:before{content:"\ee16"}
|
1056 |
-
.nc-outline-hurricane-44:before{content:"\ee17"}
|
1057 |
-
.nc-outline-hurricane-45:before{content:"\ee18"}
|
1058 |
-
.nc-outline-hut:before{content:"\ee19"}
|
1059 |
-
.nc-outline-hybrid:before{content:"\ee1a"}
|
1060 |
-
.nc-outline-ice-cream-22:before{content:"\ee1b"}
|
1061 |
-
.nc-outline-ice-cream-72:before{content:"\ee1c"}
|
1062 |
-
.nc-outline-ice-cream:before{content:"\ee1d"}
|
1063 |
-
.nc-outline-igloo:before{content:"\ee1e"}
|
1064 |
-
.nc-outline-image-01:before{content:"\ee1f"}
|
1065 |
-
.nc-outline-image-02:before{content:"\ee20"}
|
1066 |
-
.nc-outline-image-05:before{content:"\ee21"}
|
1067 |
-
.nc-outline-image-2:before{content:"\ee22"}
|
1068 |
-
.nc-outline-image-3:before{content:"\ee23"}
|
1069 |
-
.nc-outline-image-add:before{content:"\ee24"}
|
1070 |
-
.nc-outline-image-delete:before{content:"\ee25"}
|
1071 |
-
.nc-outline-image-location:before{content:"\ee26"}
|
1072 |
-
.nc-outline-image:before{content:"\ee27"}
|
1073 |
-
.nc-outline-infinite:before{content:"\ee28"}
|
1074 |
-
.nc-outline-info:before{content:"\ee29"}
|
1075 |
-
.nc-outline-input-12:before{content:"\ee2a"}
|
1076 |
-
.nc-outline-input-21:before{content:"\ee2c"}
|
1077 |
-
.nc-outline-intestine:before{content:"\ee2b"}
|
1078 |
-
.nc-outline-invert:before{content:"\ee2d"}
|
1079 |
-
.nc-outline-iron-2:before{content:"\ee2e"}
|
1080 |
-
.nc-outline-iron-dont:before{content:"\ee2f"}
|
1081 |
-
.nc-outline-iron:before{content:"\ee30"}
|
1082 |
-
.nc-outline-istanbul:before{content:"\ee31"}
|
1083 |
-
.nc-outline-italic:before{content:"\ee32"}
|
1084 |
-
.nc-outline-jam:before{content:"\ee34"}
|
1085 |
-
.nc-outline-jeans-41:before{content:"\ee33"}
|
1086 |
-
.nc-outline-jeans-43:before{content:"\ee35"}
|
1087 |
-
.nc-outline-jeans-pocket:before{content:"\ee36"}
|
1088 |
-
.nc-outline-jelly:before{content:"\ee37"}
|
1089 |
-
.nc-outline-jellyfish:before{content:"\ee38"}
|
1090 |
-
.nc-outline-journey-04:before{content:"\ee39"}
|
1091 |
-
.nc-outline-journey-05:before{content:"\ee3a"}
|
1092 |
-
.nc-outline-journey-06:before{content:"\ee3b"}
|
1093 |
-
.nc-outline-journey-07:before{content:"\ee3c"}
|
1094 |
-
.nc-outline-journey-08:before{content:"\ee3d"}
|
1095 |
-
.nc-outline-juice:before{content:"\ee3e"}
|
1096 |
-
.nc-outline-kettle:before{content:"\ee3f"}
|
1097 |
-
.nc-outline-kettlebell:before{content:"\ee40"}
|
1098 |
-
.nc-outline-key-25:before{content:"\ee41"}
|
1099 |
-
.nc-outline-key-26:before{content:"\ee42"}
|
1100 |
-
.nc-outline-keyboard-hide:before{content:"\ee43"}
|
1101 |
-
.nc-outline-keyboard-mouse:before{content:"\ee44"}
|
1102 |
-
.nc-outline-keyboard-wifi:before{content:"\ee45"}
|
1103 |
-
.nc-outline-keyboard-wireless:before{content:"\ee46"}
|
1104 |
-
.nc-outline-keyboard:before{content:"\ee47"}
|
1105 |
-
.nc-outline-kid-2:before{content:"\ee48"}
|
1106 |
-
.nc-outline-kid:before{content:"\ee49"}
|
1107 |
-
.nc-outline-kiss:before{content:"\ee4a"}
|
1108 |
-
.nc-outline-kitchen-fan:before{content:"\ee4b"}
|
1109 |
-
.nc-outline-kitchen:before{content:"\ee4c"}
|
1110 |
-
.nc-outline-kiwi:before{content:"\ee4d"}
|
1111 |
-
.nc-outline-knife:before{content:"\ee4e"}
|
1112 |
-
.nc-outline-knob:before{content:"\ee4f"}
|
1113 |
-
.nc-outline-l-add:before{content:"\ee50"}
|
1114 |
-
.nc-outline-l-check:before{content:"\ee51"}
|
1115 |
-
.nc-outline-l-circle:before{content:"\ee52"}
|
1116 |
-
.nc-outline-l-circles:before{content:"\ee53"}
|
1117 |
-
.nc-outline-l-location:before{content:"\ee54"}
|
1118 |
-
.nc-outline-l-remove:before{content:"\ee56"}
|
1119 |
-
.nc-outline-l-search:before{content:"\ee55"}
|
1120 |
-
.nc-outline-l-security:before{content:"\ee57"}
|
1121 |
-
.nc-outline-l-settings:before{content:"\ee58"}
|
1122 |
-
.nc-outline-l-sync:before{content:"\ee59"}
|
1123 |
-
.nc-outline-l-system-update:before{content:"\ee5a"}
|
1124 |
-
.nc-outline-lab:before{content:"\ee5b"}
|
1125 |
-
.nc-outline-lamp-2:before{content:"\ee5c"}
|
1126 |
-
.nc-outline-lamp-3:before{content:"\ee5d"}
|
1127 |
-
.nc-outline-lamp-floor:before{content:"\ee5e"}
|
1128 |
-
.nc-outline-lamp:before{content:"\ee60"}
|
1129 |
-
.nc-outline-language:before{content:"\ee5f"}
|
1130 |
-
.nc-outline-laptop-1:before{content:"\ee62"}
|
1131 |
-
.nc-outline-laptop-2:before{content:"\ee61"}
|
1132 |
-
.nc-outline-laptop-71:before{content:"\ee64"}
|
1133 |
-
.nc-outline-laptop-72:before{content:"\ee63"}
|
1134 |
-
.nc-outline-laptop:before{content:"\ee65"}
|
1135 |
-
.nc-outline-laugh-17:before{content:"\ee66"}
|
1136 |
-
.nc-outline-laugh-35:before{content:"\ee68"}
|
1137 |
-
.nc-outline-launch-11:before{content:"\ee67"}
|
1138 |
-
.nc-outline-launch-47:before{content:"\ee69"}
|
1139 |
-
.nc-outline-law:before{content:"\ee6a"}
|
1140 |
-
.nc-outline-layers-2:before{content:"\ee6b"}
|
1141 |
-
.nc-outline-layers-3:before{content:"\ee6c"}
|
1142 |
-
.nc-outline-layers:before{content:"\ee6d"}
|
1143 |
-
.nc-outline-layout-11:before{content:"\ee6e"}
|
1144 |
-
.nc-outline-layout-25:before{content:"\ee6f"}
|
1145 |
-
.nc-outline-leaf-36:before{content:"\ee70"}
|
1146 |
-
.nc-outline-leaf-38:before{content:"\ee71"}
|
1147 |
-
.nc-outline-leaf-80:before{content:"\ee72"}
|
1148 |
-
.nc-outline-leaf-81:before{content:"\ee73"}
|
1149 |
-
.nc-outline-leaf-edit:before{content:"\ee74"}
|
1150 |
-
.nc-outline-lemon-slice:before{content:"\ee76"}
|
1151 |
-
.nc-outline-lemon:before{content:"\ee75"}
|
1152 |
-
.nc-outline-lens-31:before{content:"\ee77"}
|
1153 |
-
.nc-outline-lens-56:before{content:"\ee78"}
|
1154 |
-
.nc-outline-library:before{content:"\ee79"}
|
1155 |
-
.nc-outline-light-2:before{content:"\ee7a"}
|
1156 |
-
.nc-outline-light-3:before{content:"\ee7b"}
|
1157 |
-
.nc-outline-light-traffic:before{content:"\ee7c"}
|
1158 |
-
.nc-outline-light:before{content:"\ee7e"}
|
1159 |
-
.nc-outline-lighter:before{content:"\ee7d"}
|
1160 |
-
.nc-outline-lighthouse:before{content:"\ee7f"}
|
1161 |
-
.nc-outline-like-2:before{content:"\ee80"}
|
1162 |
-
.nc-outline-like-no:before{content:"\ee81"}
|
1163 |
-
.nc-outline-like:before{content:"\ee82"}
|
1164 |
-
.nc-outline-line-height:before{content:"\ee83"}
|
1165 |
-
.nc-outline-lines:before{content:"\ee84"}
|
1166 |
-
.nc-outline-link-2:before{content:"\ee85"}
|
1167 |
-
.nc-outline-link-66:before{content:"\ee86"}
|
1168 |
-
.nc-outline-link-67:before{content:"\ee87"}
|
1169 |
-
.nc-outline-link-68:before{content:"\ee88"}
|
1170 |
-
.nc-outline-link-69:before{content:"\ee89"}
|
1171 |
-
.nc-outline-link-71:before{content:"\ee8a"}
|
1172 |
-
.nc-outline-link-72:before{content:"\ee8b"}
|
1173 |
-
.nc-outline-link-broken-70:before{content:"\ee8c"}
|
1174 |
-
.nc-outline-link-broken-73:before{content:"\ee8d"}
|
1175 |
-
.nc-outline-link:before{content:"\ee8e"}
|
1176 |
-
.nc-outline-list-bullet:before{content:"\ee8f"}
|
1177 |
-
.nc-outline-list-numbers:before{content:"\ee90"}
|
1178 |
-
.nc-outline-list:before{content:"\ee91"}
|
1179 |
-
.nc-outline-lobster:before{content:"\ee92"}
|
1180 |
-
.nc-outline-lock-circle-open:before{content:"\ee93"}
|
1181 |
-
.nc-outline-lock-circle:before{content:"\ee94"}
|
1182 |
-
.nc-outline-lock-landscape:before{content:"\ee95"}
|
1183 |
-
.nc-outline-lock-open:before{content:"\ee96"}
|
1184 |
-
.nc-outline-lock-portrait:before{content:"\ee97"}
|
1185 |
-
.nc-outline-lock:before{content:"\ee98"}
|
1186 |
-
.nc-outline-locked:before{content:"\ee99"}
|
1187 |
-
.nc-outline-log-in:before{content:"\ee9a"}
|
1188 |
-
.nc-outline-log-out-2:before{content:"\ee9b"}
|
1189 |
-
.nc-outline-log-out:before{content:"\ee9c"}
|
1190 |
-
.nc-outline-logout:before{content:"\ee9d"}
|
1191 |
-
.nc-outline-lollipop:before{content:"\ee9e"}
|
1192 |
-
.nc-outline-london:before{content:"\ee9f"}
|
1193 |
-
.nc-outline-long-sleeve:before{content:"\eea0"}
|
1194 |
-
.nc-outline-loop-30:before{content:"\eea1"}
|
1195 |
-
.nc-outline-loop-34:before{content:"\eea2"}
|
1196 |
-
.nc-outline-loop-82:before{content:"\eea3"}
|
1197 |
-
.nc-outline-loop-83:before{content:"\eea4"}
|
1198 |
-
.nc-outline-loop:before{content:"\eea5"}
|
1199 |
-
.nc-outline-luggage:before{content:"\eea6"}
|
1200 |
-
.nc-outline-lungs:before{content:"\eea8"}
|
1201 |
-
.nc-outline-m-add:before{content:"\eea7"}
|
1202 |
-
.nc-outline-m-check:before{content:"\eea9"}
|
1203 |
-
.nc-outline-m-delete:before{content:"\eeaa"}
|
1204 |
-
.nc-outline-m-edit:before{content:"\eeab"}
|
1205 |
-
.nc-outline-m-heart:before{content:"\eeac"}
|
1206 |
-
.nc-outline-m-location:before{content:"\eeae"}
|
1207 |
-
.nc-outline-m-remove:before{content:"\eead"}
|
1208 |
-
.nc-outline-m-search:before{content:"\eeaf"}
|
1209 |
-
.nc-outline-m-security:before{content:"\eeb0"}
|
1210 |
-
.nc-outline-m-settings:before{content:"\eeb2"}
|
1211 |
-
.nc-outline-m-share:before{content:"\eeb1"}
|
1212 |
-
.nc-outline-m-star:before{content:"\eeb3"}
|
1213 |
-
.nc-outline-m-sync:before{content:"\eeb4"}
|
1214 |
-
.nc-outline-m-time:before{content:"\eeb6"}
|
1215 |
-
.nc-outline-m-update:before{content:"\eeb5"}
|
1216 |
-
.nc-outline-macro:before{content:"\eeb7"}
|
1217 |
-
.nc-outline-mad-12:before{content:"\eeb8"}
|
1218 |
-
.nc-outline-mad-58:before{content:"\eeb9"}
|
1219 |
-
.nc-outline-magnet:before{content:"\eeba"}
|
1220 |
-
.nc-outline-makeup:before{content:"\eebb"}
|
1221 |
-
.nc-outline-malicious:before{content:"\eebc"}
|
1222 |
-
.nc-outline-man-20:before{content:"\eebd"}
|
1223 |
-
.nc-outline-man-23:before{content:"\eebe"}
|
1224 |
-
.nc-outline-man-down:before{content:"\eebf"}
|
1225 |
-
.nc-outline-man-glasses:before{content:"\eec0"}
|
1226 |
-
.nc-outline-man-up:before{content:"\eec1"}
|
1227 |
-
.nc-outline-man:before{content:"\eec2"}
|
1228 |
-
.nc-outline-manga-62:before{content:"\eec3"}
|
1229 |
-
.nc-outline-manga-63:before{content:"\eec4"}
|
1230 |
-
.nc-outline-map-big:before{content:"\eec5"}
|
1231 |
-
.nc-outline-map-compass:before{content:"\eec6"}
|
1232 |
-
.nc-outline-map-gps:before{content:"\eec7"}
|
1233 |
-
.nc-outline-map-marker:before{content:"\eec8"}
|
1234 |
-
.nc-outline-map-pin:before{content:"\eec9"}
|
1235 |
-
.nc-outline-map:before{content:"\eeca"}
|
1236 |
-
.nc-outline-margin-left:before{content:"\eecb"}
|
1237 |
-
.nc-outline-margin-right:before{content:"\eecc"}
|
1238 |
-
.nc-outline-marker-2:before{content:"\eecd"}
|
1239 |
-
.nc-outline-marker-3:before{content:"\eece"}
|
1240 |
-
.nc-outline-marker:before{content:"\eecf"}
|
1241 |
-
.nc-outline-market-music:before{content:"\eed0"}
|
1242 |
-
.nc-outline-market-play:before{content:"\eed1"}
|
1243 |
-
.nc-outline-mask-oval:before{content:"\eed2"}
|
1244 |
-
.nc-outline-mask-rect:before{content:"\eed3"}
|
1245 |
-
.nc-outline-matches:before{content:"\eed4"}
|
1246 |
-
.nc-outline-math:before{content:"\eed5"}
|
1247 |
-
.nc-outline-measure-02:before{content:"\eed6"}
|
1248 |
-
.nc-outline-measure-17:before{content:"\eed7"}
|
1249 |
-
.nc-outline-measure-big:before{content:"\eed8"}
|
1250 |
-
.nc-outline-measuring-cup:before{content:"\eed9"}
|
1251 |
-
.nc-outline-meat-spit:before{content:"\eeda"}
|
1252 |
-
.nc-outline-meeting:before{content:"\eedb"}
|
1253 |
-
.nc-outline-menu-34:before{content:"\eedc"}
|
1254 |
-
.nc-outline-menu-35:before{content:"\eedd"}
|
1255 |
-
.nc-outline-menu-bold:before{content:"\eede"}
|
1256 |
-
.nc-outline-menu-dots:before{content:"\eedf"}
|
1257 |
-
.nc-outline-menu-left:before{content:"\eee0"}
|
1258 |
-
.nc-outline-menu-right:before{content:"\eee1"}
|
1259 |
-
.nc-outline-menu-square:before{content:"\eee2"}
|
1260 |
-
.nc-outline-menu:before{content:"\eee3"}
|
1261 |
-
.nc-outline-merge-2:before{content:"\eee4"}
|
1262 |
-
.nc-outline-merge-round:before{content:"\eee5"}
|
1263 |
-
.nc-outline-merge:before{content:"\eee6"}
|
1264 |
-
.nc-outline-message:before{content:"\eee7"}
|
1265 |
-
.nc-outline-metrics:before{content:"\eee8"}
|
1266 |
-
.nc-outline-mic-2:before{content:"\eee9"}
|
1267 |
-
.nc-outline-mic:before{content:"\eeea"}
|
1268 |
-
.nc-outline-mickey-mouse:before{content:"\eeeb"}
|
1269 |
-
.nc-outline-microscope:before{content:"\eeec"}
|
1270 |
-
.nc-outline-microsoft:before{content:"\eeed"}
|
1271 |
-
.nc-outline-microwave:before{content:"\eeee"}
|
1272 |
-
.nc-outline-milk:before{content:"\eeef"}
|
1273 |
-
.nc-outline-minimal-down:before{content:"\eef0"}
|
1274 |
-
.nc-outline-minimal-left:before{content:"\eef1"}
|
1275 |
-
.nc-outline-minimal-right:before{content:"\eef2"}
|
1276 |
-
.nc-outline-minimal-up:before{content:"\eef4"}
|
1277 |
-
.nc-outline-mirror-2:before{content:"\eef3"}
|
1278 |
-
.nc-outline-mirror:before{content:"\eef5"}
|
1279 |
-
.nc-outline-mistletoe:before{content:"\eef6"}
|
1280 |
-
.nc-outline-mixer:before{content:"\eef7"}
|
1281 |
-
.nc-outline-mobile-button:before{content:"\eef8"}
|
1282 |
-
.nc-outline-mobile-camera:before{content:"\eef9"}
|
1283 |
-
.nc-outline-mobile-card:before{content:"\eefa"}
|
1284 |
-
.nc-outline-mobile-contact:before{content:"\eefb"}
|
1285 |
-
.nc-outline-mobile-design:before{content:"\eefc"}
|
1286 |
-
.nc-outline-mobile-dev:before{content:"\eefd"}
|
1287 |
-
.nc-outline-mobile-landscape:before{content:"\eefe"}
|
1288 |
-
.nc-outline-mobile-recharger-08:before{content:"\eeff"}
|
1289 |
-
.nc-outline-mobile-recharger-09:before{content:"\ef00"}
|
1290 |
-
.nc-outline-mobile-toolbar:before{content:"\ef01"}
|
1291 |
-
.nc-outline-mobile:before{content:"\ef02"}
|
1292 |
-
.nc-outline-moka:before{content:"\ef03"}
|
1293 |
-
.nc-outline-molecule-39:before{content:"\ef04"}
|
1294 |
-
.nc-outline-molecule-40:before{content:"\ef05"}
|
1295 |
-
.nc-outline-molecule:before{content:"\ef06"}
|
1296 |
-
.nc-outline-money-11:before{content:"\ef08"}
|
1297 |
-
.nc-outline-money-12:before{content:"\ef07"}
|
1298 |
-
.nc-outline-money-13:before{content:"\ef0a"}
|
1299 |
-
.nc-outline-money-bag:before{content:"\ef09"}
|
1300 |
-
.nc-outline-money-coins:before{content:"\ef0b"}
|
1301 |
-
.nc-outline-money-growth:before{content:"\ef0c"}
|
1302 |
-
.nc-outline-money-time:before{content:"\ef0d"}
|
1303 |
-
.nc-outline-money:before{content:"\ef0e"}
|
1304 |
-
.nc-outline-monster:before{content:"\ef0f"}
|
1305 |
-
.nc-outline-moon-cloud-drop:before{content:"\ef10"}
|
1306 |
-
.nc-outline-moon-cloud-fog:before{content:"\ef11"}
|
1307 |
-
.nc-outline-moon-cloud-hail:before{content:"\ef12"}
|
1308 |
-
.nc-outline-moon-cloud-light:before{content:"\ef13"}
|
1309 |
-
.nc-outline-moon-cloud-rain:before{content:"\ef14"}
|
1310 |
-
.nc-outline-moon-cloud-snow-61:before{content:"\ef15"}
|
1311 |
-
.nc-outline-moon-cloud-snow-62:before{content:"\ef16"}
|
1312 |
-
.nc-outline-moon-fog:before{content:"\ef17"}
|
1313 |
-
.nc-outline-moon-full:before{content:"\ef18"}
|
1314 |
-
.nc-outline-moon-stars:before{content:"\ef19"}
|
1315 |
-
.nc-outline-moon:before{content:"\ef1a"}
|
1316 |
-
.nc-outline-mosque:before{content:"\ef1b"}
|
1317 |
-
.nc-outline-moto:before{content:"\ef1c"}
|
1318 |
-
.nc-outline-mountain:before{content:"\ef1d"}
|
1319 |
-
.nc-outline-mouse-08:before{content:"\ef1e"}
|
1320 |
-
.nc-outline-mouse-09:before{content:"\ef1f"}
|
1321 |
-
.nc-outline-mouse-10:before{content:"\ef20"}
|
1322 |
-
.nc-outline-mouse:before{content:"\ef21"}
|
1323 |
-
.nc-outline-move-05:before{content:"\ef22"}
|
1324 |
-
.nc-outline-move-06:before{content:"\ef23"}
|
1325 |
-
.nc-outline-move-92:before{content:"\ef24"}
|
1326 |
-
.nc-outline-move-down-2:before{content:"\ef26"}
|
1327 |
-
.nc-outline-move-down-right:before{content:"\ef25"}
|
1328 |
-
.nc-outline-move-down:before{content:"\ef27"}
|
1329 |
-
.nc-outline-move-left:before{content:"\ef28"}
|
1330 |
-
.nc-outline-move-right:before{content:"\ef29"}
|
1331 |
-
.nc-outline-move-up-2:before{content:"\ef2a"}
|
1332 |
-
.nc-outline-move-up-left:before{content:"\ef2b"}
|
1333 |
-
.nc-outline-move-up:before{content:"\ef2c"}
|
1334 |
-
.nc-outline-movie-61:before{content:"\ef2d"}
|
1335 |
-
.nc-outline-movie-62:before{content:"\ef2e"}
|
1336 |
-
.nc-outline-muffin:before{content:"\ef2f"}
|
1337 |
-
.nc-outline-mug:before{content:"\ef30"}
|
1338 |
-
.nc-outline-multiple-11:before{content:"\ef31"}
|
1339 |
-
.nc-outline-multiple-19:before{content:"\ef32"}
|
1340 |
-
.nc-outline-multiple:before{content:"\ef33"}
|
1341 |
-
.nc-outline-mushroom:before{content:"\ef34"}
|
1342 |
-
.nc-outline-music-2:before{content:"\ef35"}
|
1343 |
-
.nc-outline-music-album:before{content:"\ef36"}
|
1344 |
-
.nc-outline-music-cloud:before{content:"\ef38"}
|
1345 |
-
.nc-outline-music:before{content:"\ef37"}
|
1346 |
-
.nc-outline-navigation:before{content:"\ef39"}
|
1347 |
-
.nc-outline-needle:before{content:"\ef3a"}
|
1348 |
-
.nc-outline-nerd-22:before{content:"\ef3b"}
|
1349 |
-
.nc-outline-nerd-23:before{content:"\ef3c"}
|
1350 |
-
.nc-outline-net:before{content:"\ef3d"}
|
1351 |
-
.nc-outline-network:before{content:"\ef3e"}
|
1352 |
-
.nc-outline-new:before{content:"\ef3f"}
|
1353 |
-
.nc-outline-newsletter-dev:before{content:"\ef40"}
|
1354 |
-
.nc-outline-newsletter:before{content:"\ef41"}
|
1355 |
-
.nc-outline-night:before{content:"\ef42"}
|
1356 |
-
.nc-outline-ninja:before{content:"\ef43"}
|
1357 |
-
.nc-outline-no-access:before{content:"\ef44"}
|
1358 |
-
.nc-outline-no-words:before{content:"\ef45"}
|
1359 |
-
.nc-outline-node:before{content:"\ef46"}
|
1360 |
-
.nc-outline-note-03:before{content:"\ef47"}
|
1361 |
-
.nc-outline-note-04:before{content:"\ef48"}
|
1362 |
-
.nc-outline-note-code:before{content:"\ef49"}
|
1363 |
-
.nc-outline-notebook-2:before{content:"\ef4a"}
|
1364 |
-
.nc-outline-notebook:before{content:"\ef4b"}
|
1365 |
-
.nc-outline-notepad:before{content:"\ef4c"}
|
1366 |
-
.nc-outline-notes:before{content:"\ef4d"}
|
1367 |
-
.nc-outline-notification-69:before{content:"\ef4e"}
|
1368 |
-
.nc-outline-notification-70:before{content:"\ef4f"}
|
1369 |
-
.nc-outline-nurse:before{content:"\ef50"}
|
1370 |
-
.nc-outline-nutrition:before{content:"\ef51"}
|
1371 |
-
.nc-outline-ny:before{content:"\ef52"}
|
1372 |
-
.nc-outline-octopus:before{content:"\ef53"}
|
1373 |
-
.nc-outline-oil:before{content:"\ef54"}
|
1374 |
-
.nc-outline-onion:before{content:"\ef55"}
|
1375 |
-
.nc-outline-open-in-browser:before{content:"\ef56"}
|
1376 |
-
.nc-outline-opening-times:before{content:"\ef57"}
|
1377 |
-
.nc-outline-orange:before{content:"\ef58"}
|
1378 |
-
.nc-outline-organic-2:before{content:"\ef59"}
|
1379 |
-
.nc-outline-organic:before{content:"\ef5a"}
|
1380 |
-
.nc-outline-oven:before{content:"\ef5b"}
|
1381 |
-
.nc-outline-owl:before{content:"\ef5c"}
|
1382 |
-
.nc-outline-p-add:before{content:"\ef5d"}
|
1383 |
-
.nc-outline-p-check:before{content:"\ef5e"}
|
1384 |
-
.nc-outline-p-edit:before{content:"\ef5f"}
|
1385 |
-
.nc-outline-p-heart:before{content:"\ef60"}
|
1386 |
-
.nc-outline-p-location:before{content:"\ef61"}
|
1387 |
-
.nc-outline-p-remove:before{content:"\ef62"}
|
1388 |
-
.nc-outline-p-search:before{content:"\ef63"}
|
1389 |
-
.nc-outline-p-settings:before{content:"\ef64"}
|
1390 |
-
.nc-outline-p-share:before{content:"\ef65"}
|
1391 |
-
.nc-outline-p-sync:before{content:"\ef66"}
|
1392 |
-
.nc-outline-p-system-update:before{content:"\ef67"}
|
1393 |
-
.nc-outline-p-time:before{content:"\ef68"}
|
1394 |
-
.nc-outline-paint-16:before{content:"\ef69"}
|
1395 |
-
.nc-outline-paint-37:before{content:"\ef6a"}
|
1396 |
-
.nc-outline-paint-38:before{content:"\ef6b"}
|
1397 |
-
.nc-outline-paint-brush:before{content:"\ef6c"}
|
1398 |
-
.nc-outline-paint-bucket-39:before{content:"\ef6d"}
|
1399 |
-
.nc-outline-paint-bucket-40:before{content:"\ef6e"}
|
1400 |
-
.nc-outline-pajamas:before{content:"\ef70"}
|
1401 |
-
.nc-outline-palette:before{content:"\ef6f"}
|
1402 |
-
.nc-outline-pan:before{content:"\ef71"}
|
1403 |
-
.nc-outline-pancake:before{content:"\ef72"}
|
1404 |
-
.nc-outline-panda:before{content:"\ef73"}
|
1405 |
-
.nc-outline-panel:before{content:"\ef74"}
|
1406 |
-
.nc-outline-pantone:before{content:"\ef75"}
|
1407 |
-
.nc-outline-paper-2:before{content:"\ef76"}
|
1408 |
-
.nc-outline-paper-design:before{content:"\ef77"}
|
1409 |
-
.nc-outline-paper-dev:before{content:"\ef78"}
|
1410 |
-
.nc-outline-paper-diploma:before{content:"\ef79"}
|
1411 |
-
.nc-outline-paper:before{content:"\ef7a"}
|
1412 |
-
.nc-outline-paragraph:before{content:"\ef7b"}
|
1413 |
-
.nc-outline-parent:before{content:"\ef7c"}
|
1414 |
-
.nc-outline-paris-tower:before{content:"\ef7e"}
|
1415 |
-
.nc-outline-parking-sensors:before{content:"\ef7d"}
|
1416 |
-
.nc-outline-parking:before{content:"\ef80"}
|
1417 |
-
.nc-outline-parrot:before{content:"\ef7f"}
|
1418 |
-
.nc-outline-passport:before{content:"\ef81"}
|
1419 |
-
.nc-outline-pasta:before{content:"\ef82"}
|
1420 |
-
.nc-outline-patch-19:before{content:"\ef83"}
|
1421 |
-
.nc-outline-patch-34:before{content:"\ef84"}
|
1422 |
-
.nc-outline-patch:before{content:"\ef85"}
|
1423 |
-
.nc-outline-path-exclude:before{content:"\ef86"}
|
1424 |
-
.nc-outline-path-intersect:before{content:"\ef87"}
|
1425 |
-
.nc-outline-path-minus:before{content:"\ef88"}
|
1426 |
-
.nc-outline-path-unite:before{content:"\ef8a"}
|
1427 |
-
.nc-outline-paw:before{content:"\ef89"}
|
1428 |
-
.nc-outline-payment:before{content:"\ef8b"}
|
1429 |
-
.nc-outline-pci-card:before{content:"\ef8c"}
|
1430 |
-
.nc-outline-peanut:before{content:"\ef8d"}
|
1431 |
-
.nc-outline-pear:before{content:"\ef8e"}
|
1432 |
-
.nc-outline-pen-01:before{content:"\ef8f"}
|
1433 |
-
.nc-outline-pen-23:before{content:"\ef90"}
|
1434 |
-
.nc-outline-pen-tool:before{content:"\ef92"}
|
1435 |
-
.nc-outline-pencil-47:before{content:"\ef91"}
|
1436 |
-
.nc-outline-pencil:before{content:"\ef93"}
|
1437 |
-
.nc-outline-penguin:before{content:"\ef94"}
|
1438 |
-
.nc-outline-pepper:before{content:"\ef96"}
|
1439 |
-
.nc-outline-percentage-38:before{content:"\ef95"}
|
1440 |
-
.nc-outline-percentage-39:before{content:"\ef97"}
|
1441 |
-
.nc-outline-phone-2:before{content:"\ef98"}
|
1442 |
-
.nc-outline-phone-3:before{content:"\ef99"}
|
1443 |
-
.nc-outline-phone-call-end:before{content:"\ef9a"}
|
1444 |
-
.nc-outline-phone-call:before{content:"\ef9b"}
|
1445 |
-
.nc-outline-phone:before{content:"\ef9c"}
|
1446 |
-
.nc-outline-photo-editor:before{content:"\ef9d"}
|
1447 |
-
.nc-outline-piano:before{content:"\ef9e"}
|
1448 |
-
.nc-outline-pickaxe:before{content:"\ef9f"}
|
1449 |
-
.nc-outline-pickle:before{content:"\efa0"}
|
1450 |
-
.nc-outline-picnic-basket:before{content:"\efa1"}
|
1451 |
-
.nc-outline-picture:before{content:"\efa2"}
|
1452 |
-
.nc-outline-pig-2:before{content:"\efa3"}
|
1453 |
-
.nc-outline-pig:before{content:"\efa4"}
|
1454 |
-
.nc-outline-pill-42:before{content:"\efa5"}
|
1455 |
-
.nc-outline-pill-43:before{content:"\efa6"}
|
1456 |
-
.nc-outline-pill-container-44:before{content:"\efa7"}
|
1457 |
-
.nc-outline-pill-container-47:before{content:"\efa8"}
|
1458 |
-
.nc-outline-pin-2:before{content:"\efa9"}
|
1459 |
-
.nc-outline-pin-3:before{content:"\efaa"}
|
1460 |
-
.nc-outline-pin-4:before{content:"\efab"}
|
1461 |
-
.nc-outline-pin-add-2:before{content:"\efac"}
|
1462 |
-
.nc-outline-pin-add:before{content:"\efad"}
|
1463 |
-
.nc-outline-pin-check:before{content:"\efae"}
|
1464 |
-
.nc-outline-pin-copy:before{content:"\efaf"}
|
1465 |
-
.nc-outline-pin-delete:before{content:"\efb0"}
|
1466 |
-
.nc-outline-pin-edit:before{content:"\efb2"}
|
1467 |
-
.nc-outline-pin-heart:before{content:"\efb1"}
|
1468 |
-
.nc-outline-pin-remove-2:before{content:"\efb3"}
|
1469 |
-
.nc-outline-pin-remove:before{content:"\efb4"}
|
1470 |
-
.nc-outline-pin-search:before{content:"\efb5"}
|
1471 |
-
.nc-outline-pin-security:before{content:"\efb6"}
|
1472 |
-
.nc-outline-pin-settings:before{content:"\efb7"}
|
1473 |
-
.nc-outline-pin-share:before{content:"\efb8"}
|
1474 |
-
.nc-outline-pin-star:before{content:"\efb9"}
|
1475 |
-
.nc-outline-pin-sync:before{content:"\efba"}
|
1476 |
-
.nc-outline-pin-time:before{content:"\efbb"}
|
1477 |
-
.nc-outline-pin-user:before{content:"\efbc"}
|
1478 |
-
.nc-outline-pin:before{content:"\efbd"}
|
1479 |
-
.nc-outline-pinch:before{content:"\efbe"}
|
1480 |
-
.nc-outline-pineapple:before{content:"\efbf"}
|
1481 |
-
.nc-outline-ping-pong:before{content:"\efc0"}
|
1482 |
-
.nc-outline-pins:before{content:"\efc2"}
|
1483 |
-
.nc-outline-pipe:before{content:"\efc1"}
|
1484 |
-
.nc-outline-pirate:before{content:"\efc3"}
|
1485 |
-
.nc-outline-pizza-slice:before{content:"\efc4"}
|
1486 |
-
.nc-outline-pizza:before{content:"\efc5"}
|
1487 |
-
.nc-outline-plane-17:before{content:"\efc6"}
|
1488 |
-
.nc-outline-plane-18:before{content:"\efc8"}
|
1489 |
-
.nc-outline-planet:before{content:"\efc7"}
|
1490 |
-
.nc-outline-plant-ground:before{content:"\efc9"}
|
1491 |
-
.nc-outline-plant-vase:before{content:"\efca"}
|
1492 |
-
.nc-outline-plate:before{content:"\efcc"}
|
1493 |
-
.nc-outline-play-68:before{content:"\efcb"}
|
1494 |
-
.nc-outline-play-69:before{content:"\efcd"}
|
1495 |
-
.nc-outline-play:before{content:"\efce"}
|
1496 |
-
.nc-outline-player-19:before{content:"\efcf"}
|
1497 |
-
.nc-outline-player-48:before{content:"\efd0"}
|
1498 |
-
.nc-outline-player:before{content:"\efd1"}
|
1499 |
-
.nc-outline-playlist:before{content:"\efd2"}
|
1500 |
-
.nc-outline-plug:before{content:"\efd4"}
|
1501 |
-
.nc-outline-podium-trophy:before{content:"\efd3"}
|
1502 |
-
.nc-outline-podium:before{content:"\efd5"}
|
1503 |
-
.nc-outline-point-a:before{content:"\efd6"}
|
1504 |
-
.nc-outline-point-b:before{content:"\efd7"}
|
1505 |
-
.nc-outline-polaroid-add:before{content:"\efd8"}
|
1506 |
-
.nc-outline-polaroid-delete:before{content:"\efd9"}
|
1507 |
-
.nc-outline-polaroid-multiple:before{content:"\efda"}
|
1508 |
-
.nc-outline-polaroid-user:before{content:"\efdb"}
|
1509 |
-
.nc-outline-polaroid:before{content:"\efdc"}
|
1510 |
-
.nc-outline-police:before{content:"\efdd"}
|
1511 |
-
.nc-outline-pool:before{content:"\efde"}
|
1512 |
-
.nc-outline-poop:before{content:"\efdf"}
|
1513 |
-
.nc-outline-popcorn:before{content:"\efe0"}
|
1514 |
-
.nc-outline-pos:before{content:"\efe1"}
|
1515 |
-
.nc-outline-position-marker:before{content:"\efe2"}
|
1516 |
-
.nc-outline-position-pin:before{content:"\efe3"}
|
1517 |
-
.nc-outline-position-user:before{content:"\efe4"}
|
1518 |
-
.nc-outline-position:before{content:"\efe5"}
|
1519 |
-
.nc-outline-pot:before{content:"\efe6"}
|
1520 |
-
.nc-outline-potato:before{content:"\efe7"}
|
1521 |
-
.nc-outline-power-level:before{content:"\efe8"}
|
1522 |
-
.nc-outline-preferences-circle-rotate:before{content:"\efea"}
|
1523 |
-
.nc-outline-preferences-circle:before{content:"\efe9"}
|
1524 |
-
.nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}
|
1525 |
-
.nc-outline-preferences-container-circle:before{content:"\efec"}
|
1526 |
-
.nc-outline-preferences-container-rotate:before{content:"\efed"}
|
1527 |
-
.nc-outline-preferences-container:before{content:"\efee"}
|
1528 |
-
.nc-outline-preferences-rotate:before{content:"\efef"}
|
1529 |
-
.nc-outline-preferences:before{content:"\eff0"}
|
1530 |
-
.nc-outline-print:before{content:"\eff1"}
|
1531 |
-
.nc-outline-printer:before{content:"\eff2"}
|
1532 |
-
.nc-outline-priority-high:before{content:"\eff4"}
|
1533 |
-
.nc-outline-priority-low:before{content:"\eff3"}
|
1534 |
-
.nc-outline-progress:before{content:"\eff5"}
|
1535 |
-
.nc-outline-prosciutto:before{content:"\eff6"}
|
1536 |
-
.nc-outline-prototype:before{content:"\eff7"}
|
1537 |
-
.nc-outline-pulse-chart:before{content:"\eff8"}
|
1538 |
-
.nc-outline-pulse-phone:before{content:"\eff9"}
|
1539 |
-
.nc-outline-pulse-sleep:before{content:"\effa"}
|
1540 |
-
.nc-outline-pulse-watch:before{content:"\effb"}
|
1541 |
-
.nc-outline-pulse:before{content:"\effc"}
|
1542 |
-
.nc-outline-pumpkin:before{content:"\effd"}
|
1543 |
-
.nc-outline-push-next:before{content:"\effe"}
|
1544 |
-
.nc-outline-push-previous:before{content:"\efff"}
|
1545 |
-
.nc-outline-puzzle-09:before{content:"\f000"}
|
1546 |
-
.nc-outline-puzzle-10:before{content:"\f001"}
|
1547 |
-
.nc-outline-puzzled:before{content:"\f002"}
|
1548 |
-
.nc-outline-pyramid:before{content:"\f003"}
|
1549 |
-
.nc-outline-question:before{content:"\f004"}
|
1550 |
-
.nc-outline-quite-happy:before{content:"\f005"}
|
1551 |
-
.nc-outline-quote:before{content:"\f006"}
|
1552 |
-
.nc-outline-rabbit:before{content:"\f007"}
|
1553 |
-
.nc-outline-rackets:before{content:"\f008"}
|
1554 |
-
.nc-outline-radar:before{content:"\f009"}
|
1555 |
-
.nc-outline-radiation:before{content:"\f00a"}
|
1556 |
-
.nc-outline-radio:before{content:"\f00b"}
|
1557 |
-
.nc-outline-rain-hail:before{content:"\f00c"}
|
1558 |
-
.nc-outline-rain:before{content:"\f00d"}
|
1559 |
-
.nc-outline-rainbow:before{content:"\f00e"}
|
1560 |
-
.nc-outline-ram:before{content:"\f00f"}
|
1561 |
-
.nc-outline-rat:before{content:"\f010"}
|
1562 |
-
.nc-outline-receipt-list-42:before{content:"\f011"}
|
1563 |
-
.nc-outline-receipt-list-43:before{content:"\f012"}
|
1564 |
-
.nc-outline-receipt:before{content:"\f014"}
|
1565 |
-
.nc-outline-recipe-book-46:before{content:"\f013"}
|
1566 |
-
.nc-outline-recipe-book-47:before{content:"\f015"}
|
1567 |
-
.nc-outline-recipe-create:before{content:"\f016"}
|
1568 |
-
.nc-outline-recipe:before{content:"\f018"}
|
1569 |
-
.nc-outline-recycling:before{content:"\f017"}
|
1570 |
-
.nc-outline-redo-10:before{content:"\f019"}
|
1571 |
-
.nc-outline-redo-26:before{content:"\f01a"}
|
1572 |
-
.nc-outline-redo-79:before{content:"\f01b"}
|
1573 |
-
.nc-outline-redo-81:before{content:"\f01c"}
|
1574 |
-
.nc-outline-refresh-01:before{content:"\f01d"}
|
1575 |
-
.nc-outline-refresh-02:before{content:"\f01e"}
|
1576 |
-
.nc-outline-refresh-68:before{content:"\f01f"}
|
1577 |
-
.nc-outline-refresh-69:before{content:"\f020"}
|
1578 |
-
.nc-outline-refresh:before{content:"\f021"}
|
1579 |
-
.nc-outline-reload:before{content:"\f022"}
|
1580 |
-
.nc-outline-remix:before{content:"\f024"}
|
1581 |
-
.nc-outline-remote:before{content:"\f023"}
|
1582 |
-
.nc-outline-remove:before{content:"\f025"}
|
1583 |
-
.nc-outline-replace-folder:before{content:"\f026"}
|
1584 |
-
.nc-outline-replace:before{content:"\f027"}
|
1585 |
-
.nc-outline-replay:before{content:"\f028"}
|
1586 |
-
.nc-outline-reply-all:before{content:"\f02a"}
|
1587 |
-
.nc-outline-reply:before{content:"\f029"}
|
1588 |
-
.nc-outline-reservation:before{content:"\f02b"}
|
1589 |
-
.nc-outline-resize-h:before{content:"\f02c"}
|
1590 |
-
.nc-outline-resize-v:before{content:"\f02d"}
|
1591 |
-
.nc-outline-restaurant-menu:before{content:"\f02e"}
|
1592 |
-
.nc-outline-restore:before{content:"\f030"}
|
1593 |
-
.nc-outline-rice:before{content:"\f02f"}
|
1594 |
-
.nc-outline-rim:before{content:"\f032"}
|
1595 |
-
.nc-outline-ring:before{content:"\f031"}
|
1596 |
-
.nc-outline-rio:before{content:"\f034"}
|
1597 |
-
.nc-outline-ripples:before{content:"\f033"}
|
1598 |
-
.nc-outline-road-2:before{content:"\f035"}
|
1599 |
-
.nc-outline-road-sign-left:before{content:"\f036"}
|
1600 |
-
.nc-outline-road-sign-right:before{content:"\f038"}
|
1601 |
-
.nc-outline-road:before{content:"\f037"}
|
1602 |
-
.nc-outline-roast-chicken:before{content:"\f03a"}
|
1603 |
-
.nc-outline-robot:before{content:"\f039"}
|
1604 |
-
.nc-outline-rock:before{content:"\f03b"}
|
1605 |
-
.nc-outline-roll:before{content:"\f03c"}
|
1606 |
-
.nc-outline-rolling-pin:before{content:"\f03e"}
|
1607 |
-
.nc-outline-rome:before{content:"\f03d"}
|
1608 |
-
.nc-outline-rope:before{content:"\f03f"}
|
1609 |
-
.nc-outline-rotate-22:before{content:"\f040"}
|
1610 |
-
.nc-outline-rotate-23:before{content:"\f041"}
|
1611 |
-
.nc-outline-rotate-left-2:before{content:"\f042"}
|
1612 |
-
.nc-outline-rotate-left:before{content:"\f043"}
|
1613 |
-
.nc-outline-rotate-lock:before{content:"\f044"}
|
1614 |
-
.nc-outline-rotate-right-2:before{content:"\f045"}
|
1615 |
-
.nc-outline-rotate-right:before{content:"\f046"}
|
1616 |
-
.nc-outline-rotate:before{content:"\f047"}
|
1617 |
-
.nc-outline-round-dollar:before{content:"\f048"}
|
1618 |
-
.nc-outline-round-down:before{content:"\f049"}
|
1619 |
-
.nc-outline-round-euro:before{content:"\f04a"}
|
1620 |
-
.nc-outline-round-left-down:before{content:"\f04b"}
|
1621 |
-
.nc-outline-round-left:before{content:"\f04c"}
|
1622 |
-
.nc-outline-round-pound:before{content:"\f04d"}
|
1623 |
-
.nc-outline-round-right-down:before{content:"\f04e"}
|
1624 |
-
.nc-outline-round-right:before{content:"\f04f"}
|
1625 |
-
.nc-outline-round-up-left:before{content:"\f050"}
|
1626 |
-
.nc-outline-round-up-right:before{content:"\f051"}
|
1627 |
-
.nc-outline-round-up:before{content:"\f052"}
|
1628 |
-
.nc-outline-round-yen:before{content:"\f053"}
|
1629 |
-
.nc-outline-route-alert:before{content:"\f054"}
|
1630 |
-
.nc-outline-route-close:before{content:"\f055"}
|
1631 |
-
.nc-outline-route-open:before{content:"\f056"}
|
1632 |
-
.nc-outline-rowing:before{content:"\f057"}
|
1633 |
-
.nc-outline-rugby:before{content:"\f058"}
|
1634 |
-
.nc-outline-ruler-pencil:before{content:"\f059"}
|
1635 |
-
.nc-outline-sad:before{content:"\f05a"}
|
1636 |
-
.nc-outline-safe:before{content:"\f05b"}
|
1637 |
-
.nc-outline-salad:before{content:"\f05c"}
|
1638 |
-
.nc-outline-sale:before{content:"\f05d"}
|
1639 |
-
.nc-outline-salt:before{content:"\f05e"}
|
1640 |
-
.nc-outline-santa-hat:before{content:"\f05f"}
|
1641 |
-
.nc-outline-satisfied:before{content:"\f060"}
|
1642 |
-
.nc-outline-sausage:before{content:"\f061"}
|
1643 |
-
.nc-outline-save-planet:before{content:"\f062"}
|
1644 |
-
.nc-outline-scale-2:before{content:"\f063"}
|
1645 |
-
.nc-outline-scale-3:before{content:"\f064"}
|
1646 |
-
.nc-outline-scale-4:before{content:"\f065"}
|
1647 |
-
.nc-outline-scale-down:before{content:"\f066"}
|
1648 |
-
.nc-outline-scale-horizontal:before{content:"\f067"}
|
1649 |
-
.nc-outline-scale-up:before{content:"\f068"}
|
1650 |
-
.nc-outline-scale-vertical:before{content:"\f069"}
|
1651 |
-
.nc-outline-scale:before{content:"\f06a"}
|
1652 |
-
.nc-outline-scan:before{content:"\f06c"}
|
1653 |
-
.nc-outline-scarf:before{content:"\f06b"}
|
1654 |
-
.nc-outline-school:before{content:"\f06d"}
|
1655 |
-
.nc-outline-scissors-dashed:before{content:"\f06e"}
|
1656 |
-
.nc-outline-scissors:before{content:"\f06f"}
|
1657 |
-
.nc-outline-scotch:before{content:"\f070"}
|
1658 |
-
.nc-outline-scroll-horitontal:before{content:"\f071"}
|
1659 |
-
.nc-outline-scroll-vertical:before{content:"\f072"}
|
1660 |
-
.nc-outline-sd:before{content:"\f074"}
|
1661 |
-
.nc-outline-sea-mask:before{content:"\f073"}
|
1662 |
-
.nc-outline-search-2:before{content:"\f075"}
|
1663 |
-
.nc-outline-search-3:before{content:"\f076"}
|
1664 |
-
.nc-outline-search:before{content:"\f077"}
|
1665 |
-
.nc-outline-seat:before{content:"\f078"}
|
1666 |
-
.nc-outline-seatbelt:before{content:"\f07a"}
|
1667 |
-
.nc-outline-security:before{content:"\f079"}
|
1668 |
-
.nc-outline-segmentation:before{content:"\f07c"}
|
1669 |
-
.nc-outline-select-83:before{content:"\f07b"}
|
1670 |
-
.nc-outline-select-84:before{content:"\f07e"}
|
1671 |
-
.nc-outline-select:before{content:"\f07d"}
|
1672 |
-
.nc-outline-selection:before{content:"\f080"}
|
1673 |
-
.nc-outline-selfie:before{content:"\f07f"}
|
1674 |
-
.nc-outline-send-2:before{content:"\f081"}
|
1675 |
-
.nc-outline-send:before{content:"\f082"}
|
1676 |
-
.nc-outline-sensor:before{content:"\f083"}
|
1677 |
-
.nc-outline-separate-round:before{content:"\f084"}
|
1678 |
-
.nc-outline-separate:before{content:"\f085"}
|
1679 |
-
.nc-outline-settings-46:before{content:"\f086"}
|
1680 |
-
.nc-outline-settings-99:before{content:"\f087"}
|
1681 |
-
.nc-outline-settings-gear-63:before{content:"\f088"}
|
1682 |
-
.nc-outline-settings-gear-64:before{content:"\f089"}
|
1683 |
-
.nc-outline-settings-gear-65:before{content:"\f08a"}
|
1684 |
-
.nc-outline-settings-tool-66:before{content:"\f08c"}
|
1685 |
-
.nc-outline-settings-tool-67:before{content:"\f08b"}
|
1686 |
-
.nc-outline-settings:before{content:"\f08d"}
|
1687 |
-
.nc-outline-sf-bridge:before{content:"\f08e"}
|
1688 |
-
.nc-outline-shake:before{content:"\f08f"}
|
1689 |
-
.nc-outline-shaker:before{content:"\f090"}
|
1690 |
-
.nc-outline-shape-adjust:before{content:"\f091"}
|
1691 |
-
.nc-outline-shape-arrow:before{content:"\f092"}
|
1692 |
-
.nc-outline-shape-circle:before{content:"\f093"}
|
1693 |
-
.nc-outline-shape-custom:before{content:"\f094"}
|
1694 |
-
.nc-outline-shape-line:before{content:"\f095"}
|
1695 |
-
.nc-outline-shape-oval:before{content:"\f096"}
|
1696 |
-
.nc-outline-shape-polygon-2:before{content:"\f097"}
|
1697 |
-
.nc-outline-shape-polygon:before{content:"\f098"}
|
1698 |
-
.nc-outline-shape-rectangle:before{content:"\f099"}
|
1699 |
-
.nc-outline-shape-square:before{content:"\f09a"}
|
1700 |
-
.nc-outline-shape-star:before{content:"\f09b"}
|
1701 |
-
.nc-outline-shape-triangle-2:before{content:"\f09c"}
|
1702 |
-
.nc-outline-shape-triangle:before{content:"\f09e"}
|
1703 |
-
.nc-outline-shapes:before{content:"\f09d"}
|
1704 |
-
.nc-outline-share-2:before{content:"\f09f"}
|
1705 |
-
.nc-outline-share-66:before{content:"\f0a0"}
|
1706 |
-
.nc-outline-share-91:before{content:"\f0a1"}
|
1707 |
-
.nc-outline-share-92:before{content:"\f0a2"}
|
1708 |
-
.nc-outline-share-bold:before{content:"\f0a3"}
|
1709 |
-
.nc-outline-share-left:before{content:"\f0a4"}
|
1710 |
-
.nc-outline-share-right:before{content:"\f0a5"}
|
1711 |
-
.nc-outline-share:before{content:"\f0a6"}
|
1712 |
-
.nc-outline-shared:before{content:"\f0a7"}
|
1713 |
-
.nc-outline-shark-2:before{content:"\f0a8"}
|
1714 |
-
.nc-outline-shark:before{content:"\f0a9"}
|
1715 |
-
.nc-outline-sharpener:before{content:"\f0aa"}
|
1716 |
-
.nc-outline-sheep:before{content:"\f0ab"}
|
1717 |
-
.nc-outline-shirt-business:before{content:"\f0ac"}
|
1718 |
-
.nc-outline-shirt-buttons:before{content:"\f0ad"}
|
1719 |
-
.nc-outline-shirt-neck:before{content:"\f0ae"}
|
1720 |
-
.nc-outline-shirt:before{content:"\f0af"}
|
1721 |
-
.nc-outline-shoe-man:before{content:"\f0b0"}
|
1722 |
-
.nc-outline-shoe-run:before{content:"\f0b1"}
|
1723 |
-
.nc-outline-shoe-sport:before{content:"\f0b2"}
|
1724 |
-
.nc-outline-shoe-woman:before{content:"\f0b3"}
|
1725 |
-
.nc-outline-shop-location:before{content:"\f0b4"}
|
1726 |
-
.nc-outline-shop:before{content:"\f0b5"}
|
1727 |
-
.nc-outline-shovel:before{content:"\f0b6"}
|
1728 |
-
.nc-outline-shower:before{content:"\f0b7"}
|
1729 |
-
.nc-outline-shrimp:before{content:"\f0b8"}
|
1730 |
-
.nc-outline-shuffle-01:before{content:"\f0b9"}
|
1731 |
-
.nc-outline-shuffle-35:before{content:"\f0ba"}
|
1732 |
-
.nc-outline-shuffle-97:before{content:"\f0bb"}
|
1733 |
-
.nc-outline-shuffle-98:before{content:"\f0bc"}
|
1734 |
-
.nc-outline-shy:before{content:"\f0bd"}
|
1735 |
-
.nc-outline-sick:before{content:"\f0be"}
|
1736 |
-
.nc-outline-sickle:before{content:"\f0c0"}
|
1737 |
-
.nc-outline-sidebar:before{content:"\f0bf"}
|
1738 |
-
.nc-outline-sign-board:before{content:"\f0c1"}
|
1739 |
-
.nc-outline-sign:before{content:"\f0c2"}
|
1740 |
-
.nc-outline-signal-2:before{content:"\f0c3"}
|
1741 |
-
.nc-outline-signal:before{content:"\f0c4"}
|
1742 |
-
.nc-outline-signature:before{content:"\f0c6"}
|
1743 |
-
.nc-outline-silly:before{content:"\f0c5"}
|
1744 |
-
.nc-outline-sim-card:before{content:"\f0c8"}
|
1745 |
-
.nc-outline-simple-add:before{content:"\f0c7"}
|
1746 |
-
.nc-outline-simple-delete:before{content:"\f0c9"}
|
1747 |
-
.nc-outline-simple-down:before{content:"\f0ca"}
|
1748 |
-
.nc-outline-simple-left:before{content:"\f0cb"}
|
1749 |
-
.nc-outline-simple-remove:before{content:"\f0cc"}
|
1750 |
-
.nc-outline-simple-right:before{content:"\f0cd"}
|
1751 |
-
.nc-outline-simple-up:before{content:"\f0ce"}
|
1752 |
-
.nc-outline-single-01:before{content:"\f0cf"}
|
1753 |
-
.nc-outline-single-02:before{content:"\f0d0"}
|
1754 |
-
.nc-outline-single-03:before{content:"\f0d1"}
|
1755 |
-
.nc-outline-single-04:before{content:"\f0d2"}
|
1756 |
-
.nc-outline-single-05:before{content:"\f0d3"}
|
1757 |
-
.nc-outline-single-body:before{content:"\f0d4"}
|
1758 |
-
.nc-outline-single-content-02:before{content:"\f0d5"}
|
1759 |
-
.nc-outline-single-content-03:before{content:"\f0d6"}
|
1760 |
-
.nc-outline-single-copies:before{content:"\f0d8"}
|
1761 |
-
.nc-outline-single-copy-04:before{content:"\f0d7"}
|
1762 |
-
.nc-outline-single-copy-06:before{content:"\f0d9"}
|
1763 |
-
.nc-outline-single-folded-content:before{content:"\f0da"}
|
1764 |
-
.nc-outline-single-folded:before{content:"\f0db"}
|
1765 |
-
.nc-outline-single-paragraph:before{content:"\f0dc"}
|
1766 |
-
.nc-outline-single-position:before{content:"\f0dd"}
|
1767 |
-
.nc-outline-single:before{content:"\f0de"}
|
1768 |
-
.nc-outline-sink-wash:before{content:"\f0df"}
|
1769 |
-
.nc-outline-sink:before{content:"\f0e0"}
|
1770 |
-
.nc-outline-size-large:before{content:"\f0e1"}
|
1771 |
-
.nc-outline-size-medium:before{content:"\f0e2"}
|
1772 |
-
.nc-outline-size-small:before{content:"\f0e3"}
|
1773 |
-
.nc-outline-size:before{content:"\f0e4"}
|
1774 |
-
.nc-outline-skateboard-2:before{content:"\f0e5"}
|
1775 |
-
.nc-outline-skateboard:before{content:"\f0e6"}
|
1776 |
-
.nc-outline-skew-down:before{content:"\f0e7"}
|
1777 |
-
.nc-outline-skew-left:before{content:"\f0e8"}
|
1778 |
-
.nc-outline-skew-right:before{content:"\f0e9"}
|
1779 |
-
.nc-outline-skew-up:before{content:"\f0ea"}
|
1780 |
-
.nc-outline-skirt:before{content:"\f0ec"}
|
1781 |
-
.nc-outline-skull-2:before{content:"\f0eb"}
|
1782 |
-
.nc-outline-skull:before{content:"\f0ed"}
|
1783 |
-
.nc-outline-slacks-12:before{content:"\f0ee"}
|
1784 |
-
.nc-outline-slacks-13:before{content:"\f0f0"}
|
1785 |
-
.nc-outline-sleep-2:before{content:"\f0ef"}
|
1786 |
-
.nc-outline-sleep:before{content:"\f0f1"}
|
1787 |
-
.nc-outline-slice:before{content:"\f0f2"}
|
1788 |
-
.nc-outline-slide-left:before{content:"\f0f3"}
|
1789 |
-
.nc-outline-slide-right:before{content:"\f0f4"}
|
1790 |
-
.nc-outline-slider:before{content:"\f0f5"}
|
1791 |
-
.nc-outline-sloth:before{content:"\f0f6"}
|
1792 |
-
.nc-outline-small-add:before{content:"\f0f7"}
|
1793 |
-
.nc-outline-small-delete:before{content:"\f0f8"}
|
1794 |
-
.nc-outline-small-down:before{content:"\f0f9"}
|
1795 |
-
.nc-outline-small-left:before{content:"\f0fa"}
|
1796 |
-
.nc-outline-small-remove:before{content:"\f0fb"}
|
1797 |
-
.nc-outline-small-right:before{content:"\f0fc"}
|
1798 |
-
.nc-outline-small-triangle-down:before{content:"\f0fd"}
|
1799 |
-
.nc-outline-small-triangle-left:before{content:"\f0fe"}
|
1800 |
-
.nc-outline-small-triangle-right:before{content:"\f0ff"}
|
1801 |
-
.nc-outline-small-triangle-up:before{content:"\f100"}
|
1802 |
-
.nc-outline-small-up:before{content:"\f101"}
|
1803 |
-
.nc-outline-smart:before{content:"\f102"}
|
1804 |
-
.nc-outline-smile:before{content:"\f103"}
|
1805 |
-
.nc-outline-smoothie:before{content:"\f104"}
|
1806 |
-
.nc-outline-snack:before{content:"\f105"}
|
1807 |
-
.nc-outline-snake:before{content:"\f106"}
|
1808 |
-
.nc-outline-snow-ball:before{content:"\f107"}
|
1809 |
-
.nc-outline-snow:before{content:"\f108"}
|
1810 |
-
.nc-outline-snowboard:before{content:"\f10a"}
|
1811 |
-
.nc-outline-snowman-head:before{content:"\f109"}
|
1812 |
-
.nc-outline-snowman:before{content:"\f10b"}
|
1813 |
-
.nc-outline-soak:before{content:"\f10c"}
|
1814 |
-
.nc-outline-soccer-field:before{content:"\f10d"}
|
1815 |
-
.nc-outline-sock:before{content:"\f10e"}
|
1816 |
-
.nc-outline-socket-europe-1:before{content:"\f10f"}
|
1817 |
-
.nc-outline-socket-europe-2:before{content:"\f110"}
|
1818 |
-
.nc-outline-socket-uk:before{content:"\f111"}
|
1819 |
-
.nc-outline-socket:before{content:"\f112"}
|
1820 |
-
.nc-outline-sofa:before{content:"\f114"}
|
1821 |
-
.nc-outline-soldier:before{content:"\f113"}
|
1822 |
-
.nc-outline-sound-wave:before{content:"\f115"}
|
1823 |
-
.nc-outline-soup:before{content:"\f116"}
|
1824 |
-
.nc-outline-soy-sauce:before{content:"\f117"}
|
1825 |
-
.nc-outline-spa:before{content:"\f118"}
|
1826 |
-
.nc-outline-spaceship:before{content:"\f119"}
|
1827 |
-
.nc-outline-speaker-01:before{content:"\f11a"}
|
1828 |
-
.nc-outline-speaker-05:before{content:"\f11b"}
|
1829 |
-
.nc-outline-speaker:before{content:"\f11c"}
|
1830 |
-
.nc-outline-speechless:before{content:"\f11d"}
|
1831 |
-
.nc-outline-spider:before{content:"\f11e"}
|
1832 |
-
.nc-outline-spiteful:before{content:"\f11f"}
|
1833 |
-
.nc-outline-split-33:before{content:"\f120"}
|
1834 |
-
.nc-outline-split-37:before{content:"\f121"}
|
1835 |
-
.nc-outline-split-horizontal:before{content:"\f122"}
|
1836 |
-
.nc-outline-split-round:before{content:"\f123"}
|
1837 |
-
.nc-outline-split-vertical:before{content:"\f124"}
|
1838 |
-
.nc-outline-split:before{content:"\f125"}
|
1839 |
-
.nc-outline-sport:before{content:"\f126"}
|
1840 |
-
.nc-outline-spray-2:before{content:"\f127"}
|
1841 |
-
.nc-outline-spray:before{content:"\f128"}
|
1842 |
-
.nc-outline-square-add-08:before{content:"\f12a"}
|
1843 |
-
.nc-outline-square-add-11:before{content:"\f129"}
|
1844 |
-
.nc-outline-square-corner-down-left:before{content:"\f12b"}
|
1845 |
-
.nc-outline-square-corner-down-right:before{content:"\f12c"}
|
1846 |
-
.nc-outline-square-corner-up-left:before{content:"\f12d"}
|
1847 |
-
.nc-outline-square-corner-up-right:before{content:"\f12e"}
|
1848 |
-
.nc-outline-square-delete-10:before{content:"\f12f"}
|
1849 |
-
.nc-outline-square-delete-13:before{content:"\f130"}
|
1850 |
-
.nc-outline-square-down-06:before{content:"\f131"}
|
1851 |
-
.nc-outline-square-down:before{content:"\f132"}
|
1852 |
-
.nc-outline-square-download:before{content:"\f133"}
|
1853 |
-
.nc-outline-square-left-04:before{content:"\f134"}
|
1854 |
-
.nc-outline-square-left:before{content:"\f136"}
|
1855 |
-
.nc-outline-square-marker:before{content:"\f135"}
|
1856 |
-
.nc-outline-square-pin:before{content:"\f137"}
|
1857 |
-
.nc-outline-square-remove-09:before{content:"\f138"}
|
1858 |
-
.nc-outline-square-remove-12:before{content:"\f139"}
|
1859 |
-
.nc-outline-square-right-03:before{content:"\f13a"}
|
1860 |
-
.nc-outline-square-right:before{content:"\f13b"}
|
1861 |
-
.nc-outline-square-simple-down:before{content:"\f13c"}
|
1862 |
-
.nc-outline-square-simple-left:before{content:"\f13d"}
|
1863 |
-
.nc-outline-square-simple-right:before{content:"\f13e"}
|
1864 |
-
.nc-outline-square-simple-up:before{content:"\f13f"}
|
1865 |
-
.nc-outline-square-up-05:before{content:"\f140"}
|
1866 |
-
.nc-outline-square-up:before{content:"\f141"}
|
1867 |
-
.nc-outline-square-upload:before{content:"\f142"}
|
1868 |
-
.nc-outline-squares:before{content:"\f143"}
|
1869 |
-
.nc-outline-stamp:before{content:"\f144"}
|
1870 |
-
.nc-outline-standing-man:before{content:"\f145"}
|
1871 |
-
.nc-outline-standing-woman:before{content:"\f146"}
|
1872 |
-
.nc-outline-star:before{content:"\f148"}
|
1873 |
-
.nc-outline-steak-2:before{content:"\f147"}
|
1874 |
-
.nc-outline-steak:before{content:"\f149"}
|
1875 |
-
.nc-outline-steering-wheel:before{content:"\f14a"}
|
1876 |
-
.nc-outline-steps:before{content:"\f14b"}
|
1877 |
-
.nc-outline-stock-2:before{content:"\f14c"}
|
1878 |
-
.nc-outline-stock:before{content:"\f14d"}
|
1879 |
-
.nc-outline-storage-hanger:before{content:"\f14e"}
|
1880 |
-
.nc-outline-storage:before{content:"\f14f"}
|
1881 |
-
.nc-outline-store:before{content:"\f150"}
|
1882 |
-
.nc-outline-strategy:before{content:"\f151"}
|
1883 |
-
.nc-outline-strawberry:before{content:"\f152"}
|
1884 |
-
.nc-outline-stre-down:before{content:"\f153"}
|
1885 |
-
.nc-outline-stre-left:before{content:"\f154"}
|
1886 |
-
.nc-outline-stre-right:before{content:"\f156"}
|
1887 |
-
.nc-outline-stre-up:before{content:"\f155"}
|
1888 |
-
.nc-outline-stretch:before{content:"\f157"}
|
1889 |
-
.nc-outline-strikethrough:before{content:"\f158"}
|
1890 |
-
.nc-outline-strong-down:before{content:"\f15a"}
|
1891 |
-
.nc-outline-strong-left:before{content:"\f159"}
|
1892 |
-
.nc-outline-strong-right:before{content:"\f15b"}
|
1893 |
-
.nc-outline-strong-up:before{content:"\f15c"}
|
1894 |
-
.nc-outline-subscript:before{content:"\f15d"}
|
1895 |
-
.nc-outline-subtitles:before{content:"\f15f"}
|
1896 |
-
.nc-outline-sugar:before{content:"\f15e"}
|
1897 |
-
.nc-outline-sun-cloud-drop:before{content:"\f160"}
|
1898 |
-
.nc-outline-sun-cloud-fog:before{content:"\f161"}
|
1899 |
-
.nc-outline-sun-cloud-hail:before{content:"\f162"}
|
1900 |
-
.nc-outline-sun-cloud-light:before{content:"\f163"}
|
1901 |
-
.nc-outline-sun-cloud-rain:before{content:"\f164"}
|
1902 |
-
.nc-outline-sun-cloud-snow-54:before{content:"\f165"}
|
1903 |
-
.nc-outline-sun-cloud-snow-55:before{content:"\f166"}
|
1904 |
-
.nc-outline-sun-cloud:before{content:"\f167"}
|
1905 |
-
.nc-outline-sun-fog-29:before{content:"\f168"}
|
1906 |
-
.nc-outline-sun-fog-30:before{content:"\f169"}
|
1907 |
-
.nc-outline-sun-fog-43:before{content:"\f16a"}
|
1908 |
-
.nc-outline-sunglasses-48:before{content:"\f16b"}
|
1909 |
-
.nc-outline-sunglasses-49:before{content:"\f16c"}
|
1910 |
-
.nc-outline-sunglasses:before{content:"\f16d"}
|
1911 |
-
.nc-outline-superscript:before{content:"\f16e"}
|
1912 |
-
.nc-outline-supplement:before{content:"\f16f"}
|
1913 |
-
.nc-outline-support-16:before{content:"\f170"}
|
1914 |
-
.nc-outline-support-17:before{content:"\f171"}
|
1915 |
-
.nc-outline-surf-2:before{content:"\f172"}
|
1916 |
-
.nc-outline-surf:before{content:"\f173"}
|
1917 |
-
.nc-outline-surprise:before{content:"\f174"}
|
1918 |
-
.nc-outline-sushi:before{content:"\f175"}
|
1919 |
-
.nc-outline-swap-horizontal:before{content:"\f176"}
|
1920 |
-
.nc-outline-swap-vertical:before{content:"\f177"}
|
1921 |
-
.nc-outline-swimsuit:before{content:"\f178"}
|
1922 |
-
.nc-outline-swimwear:before{content:"\f179"}
|
1923 |
-
.nc-outline-swipe-bottom:before{content:"\f17a"}
|
1924 |
-
.nc-outline-swipe-left:before{content:"\f17b"}
|
1925 |
-
.nc-outline-swipe-right:before{content:"\f17c"}
|
1926 |
-
.nc-outline-swipe-up:before{content:"\f17d"}
|
1927 |
-
.nc-outline-swiss-knife:before{content:"\f17e"}
|
1928 |
-
.nc-outline-sync:before{content:"\f17f"}
|
1929 |
-
.nc-outline-syringe:before{content:"\f180"}
|
1930 |
-
.nc-outline-system-update:before{content:"\f181"}
|
1931 |
-
.nc-outline-table-left:before{content:"\f182"}
|
1932 |
-
.nc-outline-table-right:before{content:"\f183"}
|
1933 |
-
.nc-outline-table:before{content:"\f184"}
|
1934 |
-
.nc-outline-tablet-2:before{content:"\f185"}
|
1935 |
-
.nc-outline-tablet-button:before{content:"\f186"}
|
1936 |
-
.nc-outline-tablet-mobile:before{content:"\f187"}
|
1937 |
-
.nc-outline-tablet-reader-31:before{content:"\f188"}
|
1938 |
-
.nc-outline-tablet-reader-42:before{content:"\f189"}
|
1939 |
-
.nc-outline-tablet-toolbar:before{content:"\f18a"}
|
1940 |
-
.nc-outline-tablet:before{content:"\f18b"}
|
1941 |
-
.nc-outline-tacos:before{content:"\f18c"}
|
1942 |
-
.nc-outline-tactic:before{content:"\f18d"}
|
1943 |
-
.nc-outline-tag-2:before{content:"\f18f"}
|
1944 |
-
.nc-outline-tag-add:before{content:"\f18e"}
|
1945 |
-
.nc-outline-tag-check:before{content:"\f190"}
|
1946 |
-
.nc-outline-tag-content:before{content:"\f191"}
|
1947 |
-
.nc-outline-tag-cut:before{content:"\f192"}
|
1948 |
-
.nc-outline-tag-line:before{content:"\f193"}
|
1949 |
-
.nc-outline-tag-loyalty:before{content:"\f194"}
|
1950 |
-
.nc-outline-tag-remove:before{content:"\f195"}
|
1951 |
-
.nc-outline-tag-sale:before{content:"\f197"}
|
1952 |
-
.nc-outline-tag:before{content:"\f196"}
|
1953 |
-
.nc-outline-tail-down:before{content:"\f198"}
|
1954 |
-
.nc-outline-tail-left:before{content:"\f199"}
|
1955 |
-
.nc-outline-tail-right:before{content:"\f19a"}
|
1956 |
-
.nc-outline-tail-triangle-down:before{content:"\f19b"}
|
1957 |
-
.nc-outline-tail-triangle-left:before{content:"\f19c"}
|
1958 |
-
.nc-outline-tail-triangle-right:before{content:"\f19d"}
|
1959 |
-
.nc-outline-tail-triangle-up:before{content:"\f19f"}
|
1960 |
-
.nc-outline-tail-up:before{content:"\f19e"}
|
1961 |
-
.nc-outline-tap-01:before{content:"\f1a0"}
|
1962 |
-
.nc-outline-tap-02:before{content:"\f1a1"}
|
1963 |
-
.nc-outline-tape:before{content:"\f1a2"}
|
1964 |
-
.nc-outline-target:before{content:"\f1a3"}
|
1965 |
-
.nc-outline-tea-bag:before{content:"\f1a4"}
|
1966 |
-
.nc-outline-tea:before{content:"\f1a5"}
|
1967 |
-
.nc-outline-temperature-23:before{content:"\f1a6"}
|
1968 |
-
.nc-outline-temperature-24:before{content:"\f1a7"}
|
1969 |
-
.nc-outline-temple-25:before{content:"\f1a8"}
|
1970 |
-
.nc-outline-tennis-ball:before{content:"\f1a9"}
|
1971 |
-
.nc-outline-tennis:before{content:"\f1aa"}
|
1972 |
-
.nc-outline-terrace:before{content:"\f1ab"}
|
1973 |
-
.nc-outline-text-2:before{content:"\f1ac"}
|
1974 |
-
.nc-outline-text:before{content:"\f1ad"}
|
1975 |
-
.nc-outline-texture:before{content:"\f1ae"}
|
1976 |
-
.nc-outline-ticket-75:before{content:"\f1af"}
|
1977 |
-
.nc-outline-ticket-76:before{content:"\f1b0"}
|
1978 |
-
.nc-outline-tie-01:before{content:"\f1b1"}
|
1979 |
-
.nc-outline-tie-02:before{content:"\f1b2"}
|
1980 |
-
.nc-outline-tie-bow:before{content:"\f1b3"}
|
1981 |
-
.nc-outline-tile-55:before{content:"\f1b4"}
|
1982 |
-
.nc-outline-tile-56:before{content:"\f1b5"}
|
1983 |
-
.nc-outline-time-2:before{content:"\f1b6"}
|
1984 |
-
.nc-outline-time-3:before{content:"\f1b7"}
|
1985 |
-
.nc-outline-time-alarm:before{content:"\f1b8"}
|
1986 |
-
.nc-outline-time-clock:before{content:"\f1b9"}
|
1987 |
-
.nc-outline-time-countdown:before{content:"\f1ba"}
|
1988 |
-
.nc-outline-time:before{content:"\f1bb"}
|
1989 |
-
.nc-outline-timeline:before{content:"\f1bc"}
|
1990 |
-
.nc-outline-timer:before{content:"\f1bd"}
|
1991 |
-
.nc-outline-todo:before{content:"\f1be"}
|
1992 |
-
.nc-outline-toilet-paper:before{content:"\f1bf"}
|
1993 |
-
.nc-outline-toilet:before{content:"\f1c0"}
|
1994 |
-
.nc-outline-tomato:before{content:"\f1c1"}
|
1995 |
-
.nc-outline-tool-blur:before{content:"\f1c2"}
|
1996 |
-
.nc-outline-tool-hand:before{content:"\f1c3"}
|
1997 |
-
.nc-outline-tool-select:before{content:"\f1c4"}
|
1998 |
-
.nc-outline-tooth:before{content:"\f1c5"}
|
1999 |
-
.nc-outline-touch:before{content:"\f1c7"}
|
2000 |
-
.nc-outline-track-delivery:before{content:"\f1c6"}
|
2001 |
-
.nc-outline-tracking:before{content:"\f1c8"}
|
2002 |
-
.nc-outline-tractor:before{content:"\f1c9"}
|
2003 |
-
.nc-outline-train-speed:before{content:"\f1ca"}
|
2004 |
-
.nc-outline-train:before{content:"\f1cb"}
|
2005 |
-
.nc-outline-tram:before{content:"\f1cc"}
|
2006 |
-
.nc-outline-transform-2d:before{content:"\f1cd"}
|
2007 |
-
.nc-outline-transform-origin:before{content:"\f1ce"}
|
2008 |
-
.nc-outline-transform:before{content:"\f1cf"}
|
2009 |
-
.nc-outline-transparent:before{content:"\f1d1"}
|
2010 |
-
.nc-outline-trash-round:before{content:"\f1d0"}
|
2011 |
-
.nc-outline-trash-simple:before{content:"\f1d2"}
|
2012 |
-
.nc-outline-trash:before{content:"\f1d3"}
|
2013 |
-
.nc-outline-treasure-map-21:before{content:"\f1d4"}
|
2014 |
-
.nc-outline-treasure-map-40:before{content:"\f1d5"}
|
2015 |
-
.nc-outline-tree-01:before{content:"\f1d6"}
|
2016 |
-
.nc-outline-tree-02:before{content:"\f1d7"}
|
2017 |
-
.nc-outline-tree-03:before{content:"\f1d8"}
|
2018 |
-
.nc-outline-tree-ball:before{content:"\f1d9"}
|
2019 |
-
.nc-outline-tree:before{content:"\f1da"}
|
2020 |
-
.nc-outline-trend-down:before{content:"\f1db"}
|
2021 |
-
.nc-outline-trend-up:before{content:"\f1dc"}
|
2022 |
-
.nc-outline-triangle-down-20:before{content:"\f1dd"}
|
2023 |
-
.nc-outline-triangle-down-65:before{content:"\f1de"}
|
2024 |
-
.nc-outline-triangle-down:before{content:"\f1df"}
|
2025 |
-
.nc-outline-triangle-left-18:before{content:"\f1e0"}
|
2026 |
-
.nc-outline-triangle-left-63:before{content:"\f1e1"}
|
2027 |
-
.nc-outline-triangle-left:before{content:"\f1e2"}
|
2028 |
-
.nc-outline-triangle-right-17:before{content:"\f1e3"}
|
2029 |
-
.nc-outline-triangle-right-62:before{content:"\f1e4"}
|
2030 |
-
.nc-outline-triangle-right:before{content:"\f1e5"}
|
2031 |
-
.nc-outline-triangle-up-19:before{content:"\f1e6"}
|
2032 |
-
.nc-outline-triangle-up-64:before{content:"\f1e7"}
|
2033 |
-
.nc-outline-triangle-up:before{content:"\f1e8"}
|
2034 |
-
.nc-outline-tripod:before{content:"\f1e9"}
|
2035 |
-
.nc-outline-trolley:before{content:"\f1ea"}
|
2036 |
-
.nc-outline-trophy:before{content:"\f1eb"}
|
2037 |
-
.nc-outline-truck-front:before{content:"\f1ec"}
|
2038 |
-
.nc-outline-trunk:before{content:"\f1ed"}
|
2039 |
-
.nc-outline-tshirt-53:before{content:"\f1ee"}
|
2040 |
-
.nc-outline-tshirt-54:before{content:"\f1ef"}
|
2041 |
-
.nc-outline-tshirt-sport:before{content:"\f1f0"}
|
2042 |
-
.nc-outline-turtle:before{content:"\f1f1"}
|
2043 |
-
.nc-outline-tv-2:before{content:"\f1f2"}
|
2044 |
-
.nc-outline-tv-old:before{content:"\f1f3"}
|
2045 |
-
.nc-outline-tv:before{content:"\f1f4"}
|
2046 |
-
.nc-outline-ui-03:before{content:"\f1f5"}
|
2047 |
-
.nc-outline-ui-04:before{content:"\f1f6"}
|
2048 |
-
.nc-outline-umbrella-13:before{content:"\f1f7"}
|
2049 |
-
.nc-outline-umbrella-14:before{content:"\f1f8"}
|
2050 |
-
.nc-outline-underline:before{content:"\f1f9"}
|
2051 |
-
.nc-outline-underwear-man:before{content:"\f1fa"}
|
2052 |
-
.nc-outline-underwear:before{content:"\f1fb"}
|
2053 |
-
.nc-outline-undo-25:before{content:"\f1fc"}
|
2054 |
-
.nc-outline-undo-29:before{content:"\f1fd"}
|
2055 |
-
.nc-outline-ungroup:before{content:"\f1fe"}
|
2056 |
-
.nc-outline-unite-round:before{content:"\f1ff"}
|
2057 |
-
.nc-outline-unite:before{content:"\f200"}
|
2058 |
-
.nc-outline-upload-2:before{content:"\f201"}
|
2059 |
-
.nc-outline-upload:before{content:"\f202"}
|
2060 |
-
.nc-outline-upset-13:before{content:"\f203"}
|
2061 |
-
.nc-outline-upset-14:before{content:"\f204"}
|
2062 |
-
.nc-outline-usb:before{content:"\f205"}
|
2063 |
-
.nc-outline-user-balance:before{content:"\f206"}
|
2064 |
-
.nc-outline-user-climb:before{content:"\f207"}
|
2065 |
-
.nc-outline-user-frame-31:before{content:"\f209"}
|
2066 |
-
.nc-outline-user-frame-32:before{content:"\f208"}
|
2067 |
-
.nc-outline-user-frame-33:before{content:"\f20a"}
|
2068 |
-
.nc-outline-user-meditation:before{content:"\f20b"}
|
2069 |
-
.nc-outline-user-run:before{content:"\f20c"}
|
2070 |
-
.nc-outline-user-snowboard:before{content:"\f20d"}
|
2071 |
-
.nc-outline-user-swim:before{content:"\f20e"}
|
2072 |
-
.nc-outline-user:before{content:"\f20f"}
|
2073 |
-
.nc-outline-vampire:before{content:"\f210"}
|
2074 |
-
.nc-outline-vector-2:before{content:"\f211"}
|
2075 |
-
.nc-outline-vector:before{content:"\f212"}
|
2076 |
-
.nc-outline-vegan:before{content:"\f213"}
|
2077 |
-
.nc-outline-ventilation:before{content:"\f215"}
|
2078 |
-
.nc-outline-vespa-front:before{content:"\f214"}
|
2079 |
-
.nc-outline-vespa:before{content:"\f216"}
|
2080 |
-
.nc-outline-vest-31:before{content:"\f217"}
|
2081 |
-
.nc-outline-vest-sport:before{content:"\f218"}
|
2082 |
-
.nc-outline-vest:before{content:"\f219"}
|
2083 |
-
.nc-outline-video-64:before{content:"\f21a"}
|
2084 |
-
.nc-outline-video-65:before{content:"\f21b"}
|
2085 |
-
.nc-outline-video-66:before{content:"\f21c"}
|
2086 |
-
.nc-outline-video-67:before{content:"\f21d"}
|
2087 |
-
.nc-outline-videocamera-71:before{content:"\f21e"}
|
2088 |
-
.nc-outline-videocamera-72:before{content:"\f21f"}
|
2089 |
-
.nc-outline-virus:before{content:"\f220"}
|
2090 |
-
.nc-outline-voice-record:before{content:"\f221"}
|
2091 |
-
.nc-outline-volleyball:before{content:"\f222"}
|
2092 |
-
.nc-outline-volume-93:before{content:"\f223"}
|
2093 |
-
.nc-outline-volume-97:before{content:"\f224"}
|
2094 |
-
.nc-outline-volume-98:before{content:"\f225"}
|
2095 |
-
.nc-outline-volume-ban:before{content:"\f226"}
|
2096 |
-
.nc-outline-volume-down:before{content:"\f227"}
|
2097 |
-
.nc-outline-volume-off:before{content:"\f228"}
|
2098 |
-
.nc-outline-volume-up:before{content:"\f229"}
|
2099 |
-
.nc-outline-vpn:before{content:"\f22a"}
|
2100 |
-
.nc-outline-waffle:before{content:"\f22b"}
|
2101 |
-
.nc-outline-walk:before{content:"\f22d"}
|
2102 |
-
.nc-outline-wallet-43:before{content:"\f22c"}
|
2103 |
-
.nc-outline-wallet-44:before{content:"\f22e"}
|
2104 |
-
.nc-outline-wallet-90:before{content:"\f22f"}
|
2105 |
-
.nc-outline-wallet:before{content:"\f230"}
|
2106 |
-
.nc-outline-wand-11:before{content:"\f231"}
|
2107 |
-
.nc-outline-wardrobe:before{content:"\f232"}
|
2108 |
-
.nc-outline-wash-2:before{content:"\f233"}
|
2109 |
-
.nc-outline-wash-30:before{content:"\f234"}
|
2110 |
-
.nc-outline-wash-60:before{content:"\f235"}
|
2111 |
-
.nc-outline-wash-90:before{content:"\f236"}
|
2112 |
-
.nc-outline-wash-hand:before{content:"\f237"}
|
2113 |
-
.nc-outline-wash:before{content:"\f238"}
|
2114 |
-
.nc-outline-washing-fluid:before{content:"\f239"}
|
2115 |
-
.nc-outline-waste-danger:before{content:"\f23a"}
|
2116 |
-
.nc-outline-waste-recycling:before{content:"\f23b"}
|
2117 |
-
.nc-outline-waste:before{content:"\f23c"}
|
2118 |
-
.nc-outline-watch-circle:before{content:"\f23d"}
|
2119 |
-
.nc-outline-watch-dev:before{content:"\f23e"}
|
2120 |
-
.nc-outline-watch-time:before{content:"\f23f"}
|
2121 |
-
.nc-outline-watch:before{content:"\f240"}
|
2122 |
-
.nc-outline-water-hand:before{content:"\f241"}
|
2123 |
-
.nc-outline-water-sink:before{content:"\f242"}
|
2124 |
-
.nc-outline-water:before{content:"\f243"}
|
2125 |
-
.nc-outline-watermelon:before{content:"\f244"}
|
2126 |
-
.nc-outline-wc:before{content:"\f245"}
|
2127 |
-
.nc-outline-web-design:before{content:"\f246"}
|
2128 |
-
.nc-outline-webcam-38:before{content:"\f247"}
|
2129 |
-
.nc-outline-webcam-39:before{content:"\f248"}
|
2130 |
-
.nc-outline-webpage-2:before{content:"\f249"}
|
2131 |
-
.nc-outline-webpage:before{content:"\f24a"}
|
2132 |
-
.nc-outline-weed:before{content:"\f24b"}
|
2133 |
-
.nc-outline-weight:before{content:"\f24c"}
|
2134 |
-
.nc-outline-what:before{content:"\f24d"}
|
2135 |
-
.nc-outline-wheel-2:before{content:"\f24e"}
|
2136 |
-
.nc-outline-wheel:before{content:"\f251"}
|
2137 |
-
.nc-outline-wheelchair:before{content:"\f24f"}
|
2138 |
-
.nc-outline-whisk:before{content:"\f250"}
|
2139 |
-
.nc-outline-whiskers:before{content:"\f252"}
|
2140 |
-
.nc-outline-whistle:before{content:"\f253"}
|
2141 |
-
.nc-outline-white-house:before{content:"\f254"}
|
2142 |
-
.nc-outline-widget:before{content:"\f255"}
|
2143 |
-
.nc-outline-wifi-2:before{content:"\f256"}
|
2144 |
-
.nc-outline-wifi-off:before{content:"\f257"}
|
2145 |
-
.nc-outline-wifi-protected:before{content:"\f258"}
|
2146 |
-
.nc-outline-wifi-router:before{content:"\f259"}
|
2147 |
-
.nc-outline-wifi:before{content:"\f25a"}
|
2148 |
-
.nc-outline-wind-2:before{content:"\f25b"}
|
2149 |
-
.nc-outline-wind:before{content:"\f25c"}
|
2150 |
-
.nc-outline-window-add:before{content:"\f25d"}
|
2151 |
-
.nc-outline-window-code:before{content:"\f25e"}
|
2152 |
-
.nc-outline-window-delete:before{content:"\f25f"}
|
2153 |
-
.nc-outline-window-dev:before{content:"\f260"}
|
2154 |
-
.nc-outline-window-paragraph:before{content:"\f261"}
|
2155 |
-
.nc-outline-window-responsive:before{content:"\f262"}
|
2156 |
-
.nc-outline-window-zoom-in:before{content:"\f263"}
|
2157 |
-
.nc-outline-window-zoom-out:before{content:"\f264"}
|
2158 |
-
.nc-outline-wine-list:before{content:"\f265"}
|
2159 |
-
.nc-outline-wink-06:before{content:"\f266"}
|
2160 |
-
.nc-outline-wink-11:before{content:"\f267"}
|
2161 |
-
.nc-outline-wink-69:before{content:"\f268"}
|
2162 |
-
.nc-outline-witch-hat:before{content:"\f269"}
|
2163 |
-
.nc-outline-wolf:before{content:"\f26a"}
|
2164 |
-
.nc-outline-woman-2:before{content:"\f26b"}
|
2165 |
-
.nc-outline-woman-21:before{content:"\f26c"}
|
2166 |
-
.nc-outline-woman-24:before{content:"\f26d"}
|
2167 |
-
.nc-outline-woman-25:before{content:"\f26e"}
|
2168 |
-
.nc-outline-woman-down:before{content:"\f26f"}
|
2169 |
-
.nc-outline-woman-man:before{content:"\f270"}
|
2170 |
-
.nc-outline-woman-up:before{content:"\f271"}
|
2171 |
-
.nc-outline-woman:before{content:"\f272"}
|
2172 |
-
.nc-outline-wood:before{content:"\f273"}
|
2173 |
-
.nc-outline-wool-ball:before{content:"\f274"}
|
2174 |
-
.nc-outline-worl-marker:before{content:"\f275"}
|
2175 |
-
.nc-outline-world-2:before{content:"\f276"}
|
2176 |
-
.nc-outline-world-pin:before{content:"\f277"}
|
2177 |
-
.nc-outline-world:before{content:"\f278"}
|
2178 |
-
.nc-outline-yogurt:before{content:"\f279"}
|
2179 |
-
.nc-outline-zip-54:before{content:"\f27a"}
|
2180 |
-
.nc-outline-zip-55:before{content:"\f27b"}
|
2181 |
-
.nc-outline-zombie:before{content:"\f27c"}
|
2182 |
-
.nc-outline-zoom-100:before{content:"\f27d"}
|
2183 |
-
.nc-outline-zoom-2:before{content:"\f27e"}
|
2184 |
-
.nc-outline-zoom-88:before{content:"\f27f"}
|
2185 |
-
.nc-outline-zoom-99:before{content:"\f281"}
|
2186 |
-
.nc-outline-zoom-bold-in:before{content:"\f280"}
|
2187 |
-
.nc-outline-zoom-bold-out:before{content:"\f282"}
|
2188 |
-
.nc-outline-zoom-bold:before{content:"\f283"}
|
2189 |
-
.nc-outline-zoom-e:before{content:"\f285"}
|
2190 |
-
.nc-outline-zoom-in:before{content:"\f284"}
|
2191 |
-
.nc-outline-zoom-out:before{content:"\f286"}
|
2192 |
-
.nc-outline-zoom-split-in:before{content:"\f287"}
|
2193 |
-
.nc-outline-zoom-split-out:before{content:"\f288"}
|
2194 |
-
.nc-outline-zoom-split:before{content:"\f289"}
|
2195 |
-
.nc-outline-zoom-triangles:before{content:"\f28a"}
|
2196 |
-
.nc-outline-zoom:before{content:"\f28b"}
|
2197 |
-
.nc-glyph-2x-drag-down:before{content:"\ea01"}
|
2198 |
-
.nc-glyph-2x-drag-up:before{content:"\ea02"}
|
2199 |
-
.nc-glyph-2x-swipe-down:before{content:"\ea03"}
|
2200 |
-
.nc-glyph-2x-swipe-left:before{content:"\ea04"}
|
2201 |
-
.nc-glyph-2x-swipe-right:before{content:"\ea05"}
|
2202 |
-
.nc-glyph-2x-swipe-up:before{content:"\ea06"}
|
2203 |
-
.nc-glyph-2x-tap:before{content:"\ea07"}
|
2204 |
-
.nc-glyph-3d-29:before{content:"\ea08"}
|
2205 |
-
.nc-glyph-3d-model:before{content:"\ea09"}
|
2206 |
-
.nc-glyph-3d:before{content:"\ea0a"}
|
2207 |
-
.nc-glyph-3x-swipe-left:before{content:"\ea0b"}
|
2208 |
-
.nc-glyph-3x-swipe-right:before{content:"\ea0c"}
|
2209 |
-
.nc-glyph-3x-swipe-up:before{content:"\ea0d"}
|
2210 |
-
.nc-glyph-3x-tap:before{content:"\ea0e"}
|
2211 |
-
.nc-glyph-4x-swipe-left:before{content:"\ea0f"}
|
2212 |
-
.nc-glyph-4x-swipe-right:before{content:"\ea10"}
|
2213 |
-
.nc-glyph-4x-swipe-up:before{content:"\ea11"}
|
2214 |
-
.nc-glyph-a-add:before{content:"\ea12"}
|
2215 |
-
.nc-glyph-a-check:before{content:"\ea13"}
|
2216 |
-
.nc-glyph-a-delete:before{content:"\ea14"}
|
2217 |
-
.nc-glyph-a-edit:before{content:"\ea15"}
|
2218 |
-
.nc-glyph-a-heart:before{content:"\ea16"}
|
2219 |
-
.nc-glyph-a-location:before{content:"\ea17"}
|
2220 |
-
.nc-glyph-a-remove:before{content:"\ea18"}
|
2221 |
-
.nc-glyph-a-search:before{content:"\ea19"}
|
2222 |
-
.nc-glyph-a-security:before{content:"\ea1a"}
|
2223 |
-
.nc-glyph-a-share:before{content:"\ea1b"}
|
2224 |
-
.nc-glyph-a-star:before{content:"\ea1c"}
|
2225 |
-
.nc-glyph-a-sync:before{content:"\ea1d"}
|
2226 |
-
.nc-glyph-a-time:before{content:"\ea1e"}
|
2227 |
-
.nc-glyph-abc:before{content:"\ea1f"}
|
2228 |
-
.nc-glyph-accessibility:before{content:"\ea20"}
|
2229 |
-
.nc-glyph-action-73:before{content:"\ea21"}
|
2230 |
-
.nc-glyph-action-74:before{content:"\ea22"}
|
2231 |
-
.nc-glyph-active-38:before{content:"\ea23"}
|
2232 |
-
.nc-glyph-active-40:before{content:"\ea24"}
|
2233 |
-
.nc-glyph-add-27:before{content:"\ea25"}
|
2234 |
-
.nc-glyph-add-29:before{content:"\ea26"}
|
2235 |
-
.nc-glyph-add:before{content:"\ea27"}
|
2236 |
-
.nc-glyph-agenda-bookmark:before{content:"\ea28"}
|
2237 |
-
.nc-glyph-agenda:before{content:"\ea29"}
|
2238 |
-
.nc-glyph-air-baloon:before{content:"\ea2a"}
|
2239 |
-
.nc-glyph-air-conditioner:before{content:"\ea2b"}
|
2240 |
-
.nc-glyph-airbag:before{content:"\ea2c"}
|
2241 |
-
.nc-glyph-alarm-add:before{content:"\ea2d"}
|
2242 |
-
.nc-glyph-alarm-delete:before{content:"\ea2e"}
|
2243 |
-
.nc-glyph-album-2:before{content:"\ea2f"}
|
2244 |
-
.nc-glyph-album:before{content:"\ea30"}
|
2245 |
-
.nc-glyph-alcohol:before{content:"\ea31"}
|
2246 |
-
.nc-glyph-alert-circle-exc:before{content:"\ea32"}
|
2247 |
-
.nc-glyph-alert-circle-i:before{content:"\ea33"}
|
2248 |
-
.nc-glyph-alert-circle-que:before{content:"\ea34"}
|
2249 |
-
.nc-glyph-alert-exc:before{content:"\ea35"}
|
2250 |
-
.nc-glyph-alert-i:before{content:"\ea36"}
|
2251 |
-
.nc-glyph-alert-que:before{content:"\ea37"}
|
2252 |
-
.nc-glyph-alert-square-exc:before{content:"\ea38"}
|
2253 |
-
.nc-glyph-alert-square-i:before{content:"\ea39"}
|
2254 |
-
.nc-glyph-alert-square-que:before{content:"\ea3a"}
|
2255 |
-
.nc-glyph-alert:before{content:"\ea3b"}
|
2256 |
-
.nc-glyph-alien-29:before{content:"\ea3c"}
|
2257 |
-
.nc-glyph-alien-33:before{content:"\ea3d"}
|
2258 |
-
.nc-glyph-align-bottom:before{content:"\ea3e"}
|
2259 |
-
.nc-glyph-align-center-horizontal:before{content:"\ea3f"}
|
2260 |
-
.nc-glyph-align-center-vertical:before{content:"\ea40"}
|
2261 |
-
.nc-glyph-align-center:before{content:"\ea41"}
|
2262 |
-
.nc-glyph-align-justify:before{content:"\ea42"}
|
2263 |
-
.nc-glyph-align-left-2:before{content:"\ea43"}
|
2264 |
-
.nc-glyph-align-left:before{content:"\ea44"}
|
2265 |
-
.nc-glyph-align-right-2:before{content:"\ea45"}
|
2266 |
-
.nc-glyph-align-right:before{content:"\ea46"}
|
2267 |
-
.nc-glyph-align-top:before{content:"\ea47"}
|
2268 |
-
.nc-glyph-ambulance:before{content:"\ea48"}
|
2269 |
-
.nc-glyph-analytics-88:before{content:"\ea49"}
|
2270 |
-
.nc-glyph-analytics-89:before{content:"\ea4a"}
|
2271 |
-
.nc-glyph-anchor:before{content:"\ea4b"}
|
2272 |
-
.nc-glyph-android:before{content:"\ea4c"}
|
2273 |
-
.nc-glyph-angle:before{content:"\ea4d"}
|
2274 |
-
.nc-glyph-angry-10:before{content:"\ea4e"}
|
2275 |
-
.nc-glyph-angry-44:before{content:"\ea4f"}
|
2276 |
-
.nc-glyph-animation-14:before{content:"\ea50"}
|
2277 |
-
.nc-glyph-animation-31:before{content:"\ea51"}
|
2278 |
-
.nc-glyph-animation-32:before{content:"\ea52"}
|
2279 |
-
.nc-glyph-app:before{content:"\ea53"}
|
2280 |
-
.nc-glyph-apple-2:before{content:"\ea54"}
|
2281 |
-
.nc-glyph-apple:before{content:"\ea55"}
|
2282 |
-
.nc-glyph-appointment:before{content:"\ea56"}
|
2283 |
-
.nc-glyph-archive-2:before{content:"\ea57"}
|
2284 |
-
.nc-glyph-archive-3d-check:before{content:"\ea58"}
|
2285 |
-
.nc-glyph-archive-3d-content:before{content:"\ea59"}
|
2286 |
-
.nc-glyph-archive-check:before{content:"\ea5a"}
|
2287 |
-
.nc-glyph-archive-content:before{content:"\ea5b"}
|
2288 |
-
.nc-glyph-archive-paper-check:before{content:"\ea5c"}
|
2289 |
-
.nc-glyph-archive-paper:before{content:"\ea5d"}
|
2290 |
-
.nc-glyph-archive:before{content:"\ea5e"}
|
2291 |
-
.nc-glyph-armchair:before{content:"\ea5f"}
|
2292 |
-
.nc-glyph-artboard:before{content:"\ea60"}
|
2293 |
-
.nc-glyph-astronaut:before{content:"\ea61"}
|
2294 |
-
.nc-glyph-at-sign:before{content:"\ea62"}
|
2295 |
-
.nc-glyph-atm:before{content:"\ea63"}
|
2296 |
-
.nc-glyph-atom:before{content:"\ea64"}
|
2297 |
-
.nc-glyph-attach-86:before{content:"\ea65"}
|
2298 |
-
.nc-glyph-attach-87:before{content:"\ea66"}
|
2299 |
-
.nc-glyph-aubergine:before{content:"\ea67"}
|
2300 |
-
.nc-glyph-audio-91:before{content:"\ea68"}
|
2301 |
-
.nc-glyph-audio-92:before{content:"\ea69"}
|
2302 |
-
.nc-glyph-audio:before{content:"\ea6a"}
|
2303 |
-
.nc-glyph-avocado:before{content:"\ea6b"}
|
2304 |
-
.nc-glyph-award-48:before{content:"\ea6c"}
|
2305 |
-
.nc-glyph-award-49:before{content:"\ea6d"}
|
2306 |
-
.nc-glyph-award-55:before{content:"\ea6e"}
|
2307 |
-
.nc-glyph-award-74:before{content:"\ea6f"}
|
2308 |
-
.nc-glyph-award:before{content:"\ea70"}
|
2309 |
-
.nc-glyph-axe:before{content:"\ea71"}
|
2310 |
-
.nc-glyph-b-add:before{content:"\ea72"}
|
2311 |
-
.nc-glyph-b-check:before{content:"\ea73"}
|
2312 |
-
.nc-glyph-b-location:before{content:"\ea74"}
|
2313 |
-
.nc-glyph-b-love:before{content:"\ea75"}
|
2314 |
-
.nc-glyph-b-meeting:before{content:"\ea76"}
|
2315 |
-
.nc-glyph-b-remove:before{content:"\ea77"}
|
2316 |
-
.nc-glyph-b-security:before{content:"\ea78"}
|
2317 |
-
.nc-glyph-baby-2:before{content:"\ea79"}
|
2318 |
-
.nc-glyph-baby-3:before{content:"\ea7a"}
|
2319 |
-
.nc-glyph-baby-bottle:before{content:"\ea7b"}
|
2320 |
-
.nc-glyph-baby:before{content:"\ea7c"}
|
2321 |
-
.nc-glyph-back-78:before{content:"\ea7d"}
|
2322 |
-
.nc-glyph-back-80:before{content:"\ea7e"}
|
2323 |
-
.nc-glyph-background:before{content:"\ea7f"}
|
2324 |
-
.nc-glyph-backpack-2:before{content:"\ea80"}
|
2325 |
-
.nc-glyph-backpack-57:before{content:"\ea81"}
|
2326 |
-
.nc-glyph-backpack-58:before{content:"\ea82"}
|
2327 |
-
.nc-glyph-backpack:before{content:"\ea83"}
|
2328 |
-
.nc-glyph-backward:before{content:"\ea84"}
|
2329 |
-
.nc-glyph-bacon:before{content:"\ea85"}
|
2330 |
-
.nc-glyph-badge-13:before{content:"\ea86"}
|
2331 |
-
.nc-glyph-badge-14:before{content:"\ea87"}
|
2332 |
-
.nc-glyph-badge-15:before{content:"\ea88"}
|
2333 |
-
.nc-glyph-badge:before{content:"\ea89"}
|
2334 |
-
.nc-glyph-badminton:before{content:"\ea8a"}
|
2335 |
-
.nc-glyph-bag-09:before{content:"\ea8b"}
|
2336 |
-
.nc-glyph-bag-16:before{content:"\ea8c"}
|
2337 |
-
.nc-glyph-bag-17:before{content:"\ea8d"}
|
2338 |
-
.nc-glyph-bag-20:before{content:"\ea8e"}
|
2339 |
-
.nc-glyph-bag-21:before{content:"\ea8f"}
|
2340 |
-
.nc-glyph-bag-22:before{content:"\ea90"}
|
2341 |
-
.nc-glyph-bag-49:before{content:"\ea91"}
|
2342 |
-
.nc-glyph-bag-50:before{content:"\ea92"}
|
2343 |
-
.nc-glyph-bag-add-18:before{content:"\ea93"}
|
2344 |
-
.nc-glyph-bag-add-21:before{content:"\ea94"}
|
2345 |
-
.nc-glyph-bag-delivery:before{content:"\ea95"}
|
2346 |
-
.nc-glyph-bag-edit:before{content:"\ea96"}
|
2347 |
-
.nc-glyph-bag-remove-19:before{content:"\ea97"}
|
2348 |
-
.nc-glyph-bag-remove-22:before{content:"\ea98"}
|
2349 |
-
.nc-glyph-bag-time:before{content:"\ea99"}
|
2350 |
-
.nc-glyph-bag:before{content:"\ea9a"}
|
2351 |
-
.nc-glyph-baguette:before{content:"\ea9b"}
|
2352 |
-
.nc-glyph-balance:before{content:"\ea9c"}
|
2353 |
-
.nc-glyph-ball-basket:before{content:"\ea9d"}
|
2354 |
-
.nc-glyph-ball-soccer:before{content:"\ea9e"}
|
2355 |
-
.nc-glyph-baloon:before{content:"\ea9f"}
|
2356 |
-
.nc-glyph-ban-bold:before{content:"\eaa0"}
|
2357 |
-
.nc-glyph-ban:before{content:"\eaa1"}
|
2358 |
-
.nc-glyph-banana:before{content:"\eaa2"}
|
2359 |
-
.nc-glyph-bank:before{content:"\eaa3"}
|
2360 |
-
.nc-glyph-barbecue-15:before{content:"\eaa4"}
|
2361 |
-
.nc-glyph-barbecue-tools:before{content:"\eaa5"}
|
2362 |
-
.nc-glyph-barbecue:before{content:"\eaa6"}
|
2363 |
-
.nc-glyph-barcode-qr:before{content:"\eaa7"}
|
2364 |
-
.nc-glyph-barcode-scan:before{content:"\eaa8"}
|
2365 |
-
.nc-glyph-barcode:before{content:"\eaa9"}
|
2366 |
-
.nc-glyph-bars-2:before{content:"\eaaa"}
|
2367 |
-
.nc-glyph-bars-rotate:before{content:"\eaab"}
|
2368 |
-
.nc-glyph-bars:before{content:"\eaac"}
|
2369 |
-
.nc-glyph-baseball-ball:before{content:"\eaad"}
|
2370 |
-
.nc-glyph-baseball-bat:before{content:"\eaae"}
|
2371 |
-
.nc-glyph-baseball:before{content:"\eaaf"}
|
2372 |
-
.nc-glyph-basket-add:before{content:"\eab0"}
|
2373 |
-
.nc-glyph-basket-edit:before{content:"\eab1"}
|
2374 |
-
.nc-glyph-basket-favorite:before{content:"\eab2"}
|
2375 |
-
.nc-glyph-basket-remove:before{content:"\eab3"}
|
2376 |
-
.nc-glyph-basket-search:before{content:"\eab4"}
|
2377 |
-
.nc-glyph-basket-share:before{content:"\eab5"}
|
2378 |
-
.nc-glyph-basket-simple-add:before{content:"\eab6"}
|
2379 |
-
.nc-glyph-basket-simple-remove:before{content:"\eab7"}
|
2380 |
-
.nc-glyph-basket-simple:before{content:"\eab8"}
|
2381 |
-
.nc-glyph-basket-update:before{content:"\eab9"}
|
2382 |
-
.nc-glyph-basket:before{content:"\eaba"}
|
2383 |
-
.nc-glyph-basketball-12:before{content:"\eabb"}
|
2384 |
-
.nc-glyph-basketball-13:before{content:"\eabc"}
|
2385 |
-
.nc-glyph-bat:before{content:"\eabd"}
|
2386 |
-
.nc-glyph-bath-tub:before{content:"\eabe"}
|
2387 |
-
.nc-glyph-battery-81:before{content:"\eabf"}
|
2388 |
-
.nc-glyph-battery-83:before{content:"\eac0"}
|
2389 |
-
.nc-glyph-battery-half:before{content:"\eac1"}
|
2390 |
-
.nc-glyph-battery-level:before{content:"\eac2"}
|
2391 |
-
.nc-glyph-battery-low:before{content:"\eac3"}
|
2392 |
-
.nc-glyph-battery:before{content:"\eac4"}
|
2393 |
-
.nc-glyph-bear-2:before{content:"\eac5"}
|
2394 |
-
.nc-glyph-bear:before{content:"\eac6"}
|
2395 |
-
.nc-glyph-bed-09:before{content:"\eac7"}
|
2396 |
-
.nc-glyph-bed-23:before{content:"\eac8"}
|
2397 |
-
.nc-glyph-bed-side:before{content:"\eac9"}
|
2398 |
-
.nc-glyph-bee:before{content:"\eaca"}
|
2399 |
-
.nc-glyph-beer-95:before{content:"\eacb"}
|
2400 |
-
.nc-glyph-beer-96:before{content:"\eacc"}
|
2401 |
-
.nc-glyph-bell-53:before{content:"\eacd"}
|
2402 |
-
.nc-glyph-bell-54:before{content:"\eace"}
|
2403 |
-
.nc-glyph-bell-55:before{content:"\eacf"}
|
2404 |
-
.nc-glyph-belt:before{content:"\ead0"}
|
2405 |
-
.nc-glyph-berlin:before{content:"\ead1"}
|
2406 |
-
.nc-glyph-beverage:before{content:"\ead2"}
|
2407 |
-
.nc-glyph-big-eyes:before{content:"\ead3"}
|
2408 |
-
.nc-glyph-big-smile:before{content:"\ead4"}
|
2409 |
-
.nc-glyph-bigmouth:before{content:"\ead5"}
|
2410 |
-
.nc-glyph-bike-2:before{content:"\ead6"}
|
2411 |
-
.nc-glyph-bike:before{content:"\ead7"}
|
2412 |
-
.nc-glyph-bill:before{content:"\ead8"}
|
2413 |
-
.nc-glyph-billiard:before{content:"\ead9"}
|
2414 |
-
.nc-glyph-binocular:before{content:"\eada"}
|
2415 |
-
.nc-glyph-biscuit:before{content:"\eadb"}
|
2416 |
-
.nc-glyph-bitcoin:before{content:"\eadc"}
|
2417 |
-
.nc-glyph-bleah:before{content:"\eadd"}
|
2418 |
-
.nc-glyph-blend:before{content:"\eade"}
|
2419 |
-
.nc-glyph-blind:before{content:"\eadf"}
|
2420 |
-
.nc-glyph-block-bottom-left:before{content:"\eae0"}
|
2421 |
-
.nc-glyph-block-bottom-right:before{content:"\eae1"}
|
2422 |
-
.nc-glyph-block-down:before{content:"\eae2"}
|
2423 |
-
.nc-glyph-block-left:before{content:"\eae3"}
|
2424 |
-
.nc-glyph-block-right:before{content:"\eae4"}
|
2425 |
-
.nc-glyph-block-top-left:before{content:"\eae5"}
|
2426 |
-
.nc-glyph-block-top-right:before{content:"\eae6"}
|
2427 |
-
.nc-glyph-block-up:before{content:"\eae7"}
|
2428 |
-
.nc-glyph-blog:before{content:"\eae8"}
|
2429 |
-
.nc-glyph-blueberries:before{content:"\eae9"}
|
2430 |
-
.nc-glyph-bluetooth:before{content:"\eaea"}
|
2431 |
-
.nc-glyph-board-2:before{content:"\eaeb"}
|
2432 |
-
.nc-glyph-board-27:before{content:"\eaec"}
|
2433 |
-
.nc-glyph-board-28:before{content:"\eaed"}
|
2434 |
-
.nc-glyph-board-29:before{content:"\eaee"}
|
2435 |
-
.nc-glyph-board-30:before{content:"\eaef"}
|
2436 |
-
.nc-glyph-board-51:before{content:"\eaf0"}
|
2437 |
-
.nc-glyph-board:before{content:"\eaf1"}
|
2438 |
-
.nc-glyph-boat-front:before{content:"\eaf2"}
|
2439 |
-
.nc-glyph-boat-small-02:before{content:"\eaf3"}
|
2440 |
-
.nc-glyph-boat-small-03:before{content:"\eaf4"}
|
2441 |
-
.nc-glyph-boat:before{content:"\eaf5"}
|
2442 |
-
.nc-glyph-bold-add:before{content:"\eaf6"}
|
2443 |
-
.nc-glyph-bold-delete:before{content:"\eaf7"}
|
2444 |
-
.nc-glyph-bold-direction:before{content:"\eaf8"}
|
2445 |
-
.nc-glyph-bold-down:before{content:"\eaf9"}
|
2446 |
-
.nc-glyph-bold-left:before{content:"\eafa"}
|
2447 |
-
.nc-glyph-bold-remove:before{content:"\eafb"}
|
2448 |
-
.nc-glyph-bold-right:before{content:"\eafc"}
|
2449 |
-
.nc-glyph-bold-up:before{content:"\eafd"}
|
2450 |
-
.nc-glyph-bold:before{content:"\eafe"}
|
2451 |
-
.nc-glyph-bolt:before{content:"\eaff"}
|
2452 |
-
.nc-glyph-bomb:before{content:"\eb00"}
|
2453 |
-
.nc-glyph-bones:before{content:"\eb01"}
|
2454 |
-
.nc-glyph-book-07:before{content:"\eb02"}
|
2455 |
-
.nc-glyph-book-08:before{content:"\eb03"}
|
2456 |
-
.nc-glyph-book-39:before{content:"\eb04"}
|
2457 |
-
.nc-glyph-book-bookmark-2:before{content:"\eb05"}
|
2458 |
-
.nc-glyph-book-bookmark:before{content:"\eb06"}
|
2459 |
-
.nc-glyph-book-open-2:before{content:"\eb07"}
|
2460 |
-
.nc-glyph-book-open:before{content:"\eb08"}
|
2461 |
-
.nc-glyph-book:before{content:"\eb09"}
|
2462 |
-
.nc-glyph-bookmark-2:before{content:"\eb0a"}
|
2463 |
-
.nc-glyph-bookmark-add-2:before{content:"\eb0b"}
|
2464 |
-
.nc-glyph-bookmark-add:before{content:"\eb0c"}
|
2465 |
-
.nc-glyph-bookmark-remove-2:before{content:"\eb0d"}
|
2466 |
-
.nc-glyph-bookmark-remove:before{content:"\eb0e"}
|
2467 |
-
.nc-glyph-bookmark:before{content:"\eb0f"}
|
2468 |
-
.nc-glyph-books-46:before{content:"\eb10"}
|
2469 |
-
.nc-glyph-books:before{content:"\eb11"}
|
2470 |
-
.nc-glyph-boot-2:before{content:"\eb12"}
|
2471 |
-
.nc-glyph-boot-woman:before{content:"\eb13"}
|
2472 |
-
.nc-glyph-boot:before{content:"\eb14"}
|
2473 |
-
.nc-glyph-border-radius:before{content:"\eb15"}
|
2474 |
-
.nc-glyph-border:before{content:"\eb16"}
|
2475 |
-
.nc-glyph-bored:before{content:"\eb17"}
|
2476 |
-
.nc-glyph-bottle-wine:before{content:"\eb18"}
|
2477 |
-
.nc-glyph-bottle:before{content:"\eb19"}
|
2478 |
-
.nc-glyph-bow:before{content:"\eb1a"}
|
2479 |
-
.nc-glyph-bowl:before{content:"\eb1b"}
|
2480 |
-
.nc-glyph-bowling:before{content:"\eb1c"}
|
2481 |
-
.nc-glyph-box-2:before{content:"\eb1d"}
|
2482 |
-
.nc-glyph-box-3d-50:before{content:"\eb1e"}
|
2483 |
-
.nc-glyph-box-ribbon:before{content:"\eb1f"}
|
2484 |
-
.nc-glyph-box:before{content:"\eb20"}
|
2485 |
-
.nc-glyph-boxing:before{content:"\eb21"}
|
2486 |
-
.nc-glyph-bra:before{content:"\eb22"}
|
2487 |
-
.nc-glyph-brain:before{content:"\eb23"}
|
2488 |
-
.nc-glyph-brakes:before{content:"\eb24"}
|
2489 |
-
.nc-glyph-bread:before{content:"\eb25"}
|
2490 |
-
.nc-glyph-briefcase-24:before{content:"\eb26"}
|
2491 |
-
.nc-glyph-briefcase-25:before{content:"\eb27"}
|
2492 |
-
.nc-glyph-briefcase-26:before{content:"\eb28"}
|
2493 |
-
.nc-glyph-brightness-46:before{content:"\eb29"}
|
2494 |
-
.nc-glyph-brightness-47:before{content:"\eb2a"}
|
2495 |
-
.nc-glyph-brioche:before{content:"\eb2b"}
|
2496 |
-
.nc-glyph-broccoli:before{content:"\eb2c"}
|
2497 |
-
.nc-glyph-broom:before{content:"\eb2d"}
|
2498 |
-
.nc-glyph-browser-chrome:before{content:"\eb2e"}
|
2499 |
-
.nc-glyph-browser-edge:before{content:"\eb2f"}
|
2500 |
-
.nc-glyph-browser-firefox:before{content:"\eb30"}
|
2501 |
-
.nc-glyph-browser-ie:before{content:"\eb31"}
|
2502 |
-
.nc-glyph-browser-opera:before{content:"\eb32"}
|
2503 |
-
.nc-glyph-browser-safari:before{content:"\eb33"}
|
2504 |
-
.nc-glyph-brush:before{content:"\eb34"}
|
2505 |
-
.nc-glyph-bucket:before{content:"\eb35"}
|
2506 |
-
.nc-glyph-bug:before{content:"\eb36"}
|
2507 |
-
.nc-glyph-building:before{content:"\eb37"}
|
2508 |
-
.nc-glyph-bulb-61:before{content:"\eb38"}
|
2509 |
-
.nc-glyph-bulb-62:before{content:"\eb39"}
|
2510 |
-
.nc-glyph-bulb-63:before{content:"\eb3a"}
|
2511 |
-
.nc-glyph-bulb-saver:before{content:"\eb3b"}
|
2512 |
-
.nc-glyph-bulb:before{content:"\eb3c"}
|
2513 |
-
.nc-glyph-bullet-list-67:before{content:"\eb3d"}
|
2514 |
-
.nc-glyph-bullet-list-68:before{content:"\eb3e"}
|
2515 |
-
.nc-glyph-bullet-list-69:before{content:"\eb3f"}
|
2516 |
-
.nc-glyph-bullet-list-70:before{content:"\eb40"}
|
2517 |
-
.nc-glyph-bullet-list:before{content:"\eb41"}
|
2518 |
-
.nc-glyph-bus-front-10:before{content:"\eb42"}
|
2519 |
-
.nc-glyph-bus-front-12:before{content:"\eb43"}
|
2520 |
-
.nc-glyph-bus:before{content:"\eb44"}
|
2521 |
-
.nc-glyph-business-contact-85:before{content:"\eb45"}
|
2522 |
-
.nc-glyph-business-contact-86:before{content:"\eb46"}
|
2523 |
-
.nc-glyph-business-contact-87:before{content:"\eb47"}
|
2524 |
-
.nc-glyph-business-contact-88:before{content:"\eb48"}
|
2525 |
-
.nc-glyph-business-contact-89:before{content:"\eb49"}
|
2526 |
-
.nc-glyph-businessman-03:before{content:"\eb4a"}
|
2527 |
-
.nc-glyph-businessman-04:before{content:"\eb4b"}
|
2528 |
-
.nc-glyph-butterfly:before{content:"\eb4c"}
|
2529 |
-
.nc-glyph-button-2:before{content:"\eb4d"}
|
2530 |
-
.nc-glyph-button-circle-pause:before{content:"\eb4e"}
|
2531 |
-
.nc-glyph-button-circle-play:before{content:"\eb4f"}
|
2532 |
-
.nc-glyph-button-circle-stop:before{content:"\eb50"}
|
2533 |
-
.nc-glyph-button-eject:before{content:"\eb51"}
|
2534 |
-
.nc-glyph-button-next:before{content:"\eb52"}
|
2535 |
-
.nc-glyph-button-pause:before{content:"\eb53"}
|
2536 |
-
.nc-glyph-button-play:before{content:"\eb54"}
|
2537 |
-
.nc-glyph-button-power:before{content:"\eb55"}
|
2538 |
-
.nc-glyph-button-previous:before{content:"\eb56"}
|
2539 |
-
.nc-glyph-button-record:before{content:"\eb57"}
|
2540 |
-
.nc-glyph-button-rewind:before{content:"\eb58"}
|
2541 |
-
.nc-glyph-button-skip:before{content:"\eb5b"}
|
2542 |
-
.nc-glyph-button-stop:before{content:"\eb59"}
|
2543 |
-
.nc-glyph-button:before{content:"\eb5a"}
|
2544 |
-
.nc-glyph-cabinet:before{content:"\eb5c"}
|
2545 |
-
.nc-glyph-cable-49:before{content:"\eb5d"}
|
2546 |
-
.nc-glyph-cable-50:before{content:"\eb5e"}
|
2547 |
-
.nc-glyph-cactus:before{content:"\eb5f"}
|
2548 |
-
.nc-glyph-cake-100:before{content:"\eb60"}
|
2549 |
-
.nc-glyph-cake-13:before{content:"\eb61"}
|
2550 |
-
.nc-glyph-cake-slice:before{content:"\eb62"}
|
2551 |
-
.nc-glyph-cake:before{content:"\eb63"}
|
2552 |
-
.nc-glyph-calculator:before{content:"\eb64"}
|
2553 |
-
.nc-glyph-calendar-57:before{content:"\eb65"}
|
2554 |
-
.nc-glyph-calendar-60:before{content:"\eb66"}
|
2555 |
-
.nc-glyph-calendar-add:before{content:"\eb67"}
|
2556 |
-
.nc-glyph-calendar-check-59:before{content:"\eb68"}
|
2557 |
-
.nc-glyph-calendar-check-62:before{content:"\eb69"}
|
2558 |
-
.nc-glyph-calendar-grid-58:before{content:"\eb6a"}
|
2559 |
-
.nc-glyph-calendar-grid-61:before{content:"\eb6b"}
|
2560 |
-
.nc-glyph-camera-18:before{content:"\eb6c"}
|
2561 |
-
.nc-glyph-camera-19:before{content:"\eb6d"}
|
2562 |
-
.nc-glyph-camera-20:before{content:"\eb6e"}
|
2563 |
-
.nc-glyph-camera-ban-36:before{content:"\eb6f"}
|
2564 |
-
.nc-glyph-camera-ban-37:before{content:"\eb70"}
|
2565 |
-
.nc-glyph-camera-compact:before{content:"\eb71"}
|
2566 |
-
.nc-glyph-camera-screen:before{content:"\eb72"}
|
2567 |
-
.nc-glyph-camera-square-57:before{content:"\eb73"}
|
2568 |
-
.nc-glyph-camera-square-58:before{content:"\eb74"}
|
2569 |
-
.nc-glyph-camera-time:before{content:"\eb75"}
|
2570 |
-
.nc-glyph-camera:before{content:"\eb76"}
|
2571 |
-
.nc-glyph-camper:before{content:"\eb77"}
|
2572 |
-
.nc-glyph-camping:before{content:"\eb78"}
|
2573 |
-
.nc-glyph-candle:before{content:"\eb79"}
|
2574 |
-
.nc-glyph-candy-2:before{content:"\eb7a"}
|
2575 |
-
.nc-glyph-candy:before{content:"\eb7b"}
|
2576 |
-
.nc-glyph-canvas:before{content:"\eb7c"}
|
2577 |
-
.nc-glyph-cap:before{content:"\eb7d"}
|
2578 |
-
.nc-glyph-capitalize:before{content:"\eb7e"}
|
2579 |
-
.nc-glyph-caps-all:before{content:"\eb7f"}
|
2580 |
-
.nc-glyph-caps-small:before{content:"\eb80"}
|
2581 |
-
.nc-glyph-car-2:before{content:"\eb81"}
|
2582 |
-
.nc-glyph-car-accident:before{content:"\eb82"}
|
2583 |
-
.nc-glyph-car-connect:before{content:"\eb83"}
|
2584 |
-
.nc-glyph-car-door:before{content:"\eb84"}
|
2585 |
-
.nc-glyph-car-front:before{content:"\eb85"}
|
2586 |
-
.nc-glyph-car-lights:before{content:"\eb86"}
|
2587 |
-
.nc-glyph-car-parking:before{content:"\eb87"}
|
2588 |
-
.nc-glyph-car-simple:before{content:"\eb88"}
|
2589 |
-
.nc-glyph-car-sport:before{content:"\eb89"}
|
2590 |
-
.nc-glyph-car-taxi:before{content:"\eb8a"}
|
2591 |
-
.nc-glyph-car-ventilation:before{content:"\eb8b"}
|
2592 |
-
.nc-glyph-car-wash:before{content:"\eb8c"}
|
2593 |
-
.nc-glyph-car:before{content:"\eb8d"}
|
2594 |
-
.nc-glyph-card-add-2:before{content:"\eb8e"}
|
2595 |
-
.nc-glyph-card-add:before{content:"\eb8f"}
|
2596 |
-
.nc-glyph-card-alert:before{content:"\eb90"}
|
2597 |
-
.nc-glyph-card-edit:before{content:"\eb91"}
|
2598 |
-
.nc-glyph-card-favorite:before{content:"\eb92"}
|
2599 |
-
.nc-glyph-card-remove:before{content:"\eb93"}
|
2600 |
-
.nc-glyph-card-update:before{content:"\eb94"}
|
2601 |
-
.nc-glyph-cardio:before{content:"\eb95"}
|
2602 |
-
.nc-glyph-cards:before{content:"\eb96"}
|
2603 |
-
.nc-glyph-carrot:before{content:"\eb97"}
|
2604 |
-
.nc-glyph-cart-9:before{content:"\eb98"}
|
2605 |
-
.nc-glyph-cart-add-9:before{content:"\eb99"}
|
2606 |
-
.nc-glyph-cart-add:before{content:"\eb9a"}
|
2607 |
-
.nc-glyph-cart-favorite:before{content:"\eb9b"}
|
2608 |
-
.nc-glyph-cart-full:before{content:"\eb9c"}
|
2609 |
-
.nc-glyph-cart-in-9:before{content:"\eb9d"}
|
2610 |
-
.nc-glyph-cart-refresh:before{content:"\eb9e"}
|
2611 |
-
.nc-glyph-cart-remove-9:before{content:"\eb9f"}
|
2612 |
-
.nc-glyph-cart-remove:before{content:"\eba0"}
|
2613 |
-
.nc-glyph-cart-return:before{content:"\eba1"}
|
2614 |
-
.nc-glyph-cart-simple-add:before{content:"\eba2"}
|
2615 |
-
.nc-glyph-cart-simple-in:before{content:"\eba3"}
|
2616 |
-
.nc-glyph-cart-simple-remove:before{content:"\eba4"}
|
2617 |
-
.nc-glyph-cart-simple:before{content:"\eba5"}
|
2618 |
-
.nc-glyph-cart-speed:before{content:"\eba6"}
|
2619 |
-
.nc-glyph-cart:before{content:"\eba7"}
|
2620 |
-
.nc-glyph-cash-register:before{content:"\eba8"}
|
2621 |
-
.nc-glyph-castle:before{content:"\eba9"}
|
2622 |
-
.nc-glyph-cat:before{content:"\ebaa"}
|
2623 |
-
.nc-glyph-cauldron:before{content:"\ebab"}
|
2624 |
-
.nc-glyph-cctv:before{content:"\ebac"}
|
2625 |
-
.nc-glyph-cd-reader:before{content:"\ebad"}
|
2626 |
-
.nc-glyph-celsius:before{content:"\ebae"}
|
2627 |
-
.nc-glyph-centralize:before{content:"\ebaf"}
|
2628 |
-
.nc-glyph-chair-2:before{content:"\ebb0"}
|
2629 |
-
.nc-glyph-chair:before{content:"\ebb1"}
|
2630 |
-
.nc-glyph-chalkboard:before{content:"\ebb2"}
|
2631 |
-
.nc-glyph-champagne:before{content:"\ebb3"}
|
2632 |
-
.nc-glyph-chart-2:before{content:"\ebb4"}
|
2633 |
-
.nc-glyph-chart-3:before{content:"\ebb5"}
|
2634 |
-
.nc-glyph-chart-bar-32:before{content:"\ebb6"}
|
2635 |
-
.nc-glyph-chart-bar-33:before{content:"\ebb7"}
|
2636 |
-
.nc-glyph-chart-bar-52:before{content:"\ebb8"}
|
2637 |
-
.nc-glyph-chart-bar-53:before{content:"\ebb9"}
|
2638 |
-
.nc-glyph-chart-bar:before{content:"\ebba"}
|
2639 |
-
.nc-glyph-chart-bars:before{content:"\ebbb"}
|
2640 |
-
.nc-glyph-chart-growth:before{content:"\ebbc"}
|
2641 |
-
.nc-glyph-chart-pie-35:before{content:"\ebbd"}
|
2642 |
-
.nc-glyph-chart-pie-36:before{content:"\ebbe"}
|
2643 |
-
.nc-glyph-chart-pie:before{content:"\ebbf"}
|
2644 |
-
.nc-glyph-chart:before{content:"\ebc0"}
|
2645 |
-
.nc-glyph-chat-33:before{content:"\ebc1"}
|
2646 |
-
.nc-glyph-chat-45:before{content:"\ebc2"}
|
2647 |
-
.nc-glyph-chat-46:before{content:"\ebc3"}
|
2648 |
-
.nc-glyph-chat-content:before{content:"\ebc4"}
|
2649 |
-
.nc-glyph-chat-reply:before{content:"\ebc5"}
|
2650 |
-
.nc-glyph-chat-round-content:before{content:"\ebc6"}
|
2651 |
-
.nc-glyph-chat-round:before{content:"\ebc7"}
|
2652 |
-
.nc-glyph-chat:before{content:"\ebc8"}
|
2653 |
-
.nc-glyph-check-2:before{content:"\ebc9"}
|
2654 |
-
.nc-glyph-check-bold:before{content:"\ebca"}
|
2655 |
-
.nc-glyph-check-circle-07:before{content:"\ebcb"}
|
2656 |
-
.nc-glyph-check-circle-08:before{content:"\ebcc"}
|
2657 |
-
.nc-glyph-check-curve:before{content:"\ebcd"}
|
2658 |
-
.nc-glyph-check-in:before{content:"\ebce"}
|
2659 |
-
.nc-glyph-check-out:before{content:"\ebcf"}
|
2660 |
-
.nc-glyph-check-simple:before{content:"\ebd0"}
|
2661 |
-
.nc-glyph-check-small:before{content:"\ebd1"}
|
2662 |
-
.nc-glyph-check-square-09:before{content:"\ebd2"}
|
2663 |
-
.nc-glyph-check-square-11:before{content:"\ebd3"}
|
2664 |
-
.nc-glyph-check:before{content:"\ebd4"}
|
2665 |
-
.nc-glyph-cheese-24:before{content:"\ebd5"}
|
2666 |
-
.nc-glyph-cheese-87:before{content:"\ebd6"}
|
2667 |
-
.nc-glyph-cheeseburger:before{content:"\ebd7"}
|
2668 |
-
.nc-glyph-chef-hat:before{content:"\ebd8"}
|
2669 |
-
.nc-glyph-chef:before{content:"\ebd9"}
|
2670 |
-
.nc-glyph-cheque-2:before{content:"\ebda"}
|
2671 |
-
.nc-glyph-cheque-3:before{content:"\ebdb"}
|
2672 |
-
.nc-glyph-cheque:before{content:"\ebdc"}
|
2673 |
-
.nc-glyph-cherry:before{content:"\ebdd"}
|
2674 |
-
.nc-glyph-chicken-2:before{content:"\ebde"}
|
2675 |
-
.nc-glyph-chicken:before{content:"\ebdf"}
|
2676 |
-
.nc-glyph-child:before{content:"\ebe0"}
|
2677 |
-
.nc-glyph-chili:before{content:"\ebe1"}
|
2678 |
-
.nc-glyph-chimney:before{content:"\ebe2"}
|
2679 |
-
.nc-glyph-china:before{content:"\ebe3"}
|
2680 |
-
.nc-glyph-chinese:before{content:"\ebe4"}
|
2681 |
-
.nc-glyph-chips:before{content:"\ebe5"}
|
2682 |
-
.nc-glyph-choco-cream:before{content:"\ebe7"}
|
2683 |
-
.nc-glyph-chocolate-mousse:before{content:"\ebe6"}
|
2684 |
-
.nc-glyph-chocolate:before{content:"\ebe8"}
|
2685 |
-
.nc-glyph-church:before{content:"\ebe9"}
|
2686 |
-
.nc-glyph-churros:before{content:"\ebea"}
|
2687 |
-
.nc-glyph-circle-02:before{content:"\ebeb"}
|
2688 |
-
.nc-glyph-circle-03:before{content:"\ebec"}
|
2689 |
-
.nc-glyph-circle-04:before{content:"\ebed"}
|
2690 |
-
.nc-glyph-circle-08:before{content:"\ebee"}
|
2691 |
-
.nc-glyph-circle-09:before{content:"\ebef"}
|
2692 |
-
.nc-glyph-circle-10:before{content:"\ebf0"}
|
2693 |
-
.nc-glyph-circle-add:before{content:"\ebf1"}
|
2694 |
-
.nc-glyph-circle-bold-add:before{content:"\ebf2"}
|
2695 |
-
.nc-glyph-circle-bold-delete:before{content:"\ebf3"}
|
2696 |
-
.nc-glyph-circle-bold-remove:before{content:"\ebf4"}
|
2697 |
-
.nc-glyph-circle-delete:before{content:"\ebf5"}
|
2698 |
-
.nc-glyph-circle-down-12:before{content:"\ebf6"}
|
2699 |
-
.nc-glyph-circle-down-40:before{content:"\ebf7"}
|
2700 |
-
.nc-glyph-circle-in:before{content:"\ebf8"}
|
2701 |
-
.nc-glyph-circle-left-10:before{content:"\ebf9"}
|
2702 |
-
.nc-glyph-circle-left-38:before{content:"\ebfa"}
|
2703 |
-
.nc-glyph-circle-out:before{content:"\ebfb"}
|
2704 |
-
.nc-glyph-circle-remove:before{content:"\ebfc"}
|
2705 |
-
.nc-glyph-circle-right-09:before{content:"\ebfd"}
|
2706 |
-
.nc-glyph-circle-right-37:before{content:"\ebfe"}
|
2707 |
-
.nc-glyph-circle-simple-down:before{content:"\ebff"}
|
2708 |
-
.nc-glyph-circle-simple-left:before{content:"\ec00"}
|
2709 |
-
.nc-glyph-circle-simple-right:before{content:"\ec01"}
|
2710 |
-
.nc-glyph-circle-simple-up:before{content:"\ec02"}
|
2711 |
-
.nc-glyph-circle-up-11:before{content:"\ec03"}
|
2712 |
-
.nc-glyph-circle-up-39:before{content:"\ec04"}
|
2713 |
-
.nc-glyph-circle:before{content:"\ec05"}
|
2714 |
-
.nc-glyph-circuit-round:before{content:"\ec06"}
|
2715 |
-
.nc-glyph-circuit:before{content:"\ec07"}
|
2716 |
-
.nc-glyph-clone:before{content:"\ec08"}
|
2717 |
-
.nc-glyph-cloud-25:before{content:"\ec09"}
|
2718 |
-
.nc-glyph-cloud-26:before{content:"\ec0a"}
|
2719 |
-
.nc-glyph-cloud-download-93:before{content:"\ec0b"}
|
2720 |
-
.nc-glyph-cloud-download-95:before{content:"\ec0c"}
|
2721 |
-
.nc-glyph-cloud-drop:before{content:"\ec0d"}
|
2722 |
-
.nc-glyph-cloud-fog-31:before{content:"\ec0e"}
|
2723 |
-
.nc-glyph-cloud-fog-32:before{content:"\ec0f"}
|
2724 |
-
.nc-glyph-cloud-hail:before{content:"\ec10"}
|
2725 |
-
.nc-glyph-cloud-light:before{content:"\ec11"}
|
2726 |
-
.nc-glyph-cloud-moon:before{content:"\ec12"}
|
2727 |
-
.nc-glyph-cloud-rain:before{content:"\ec13"}
|
2728 |
-
.nc-glyph-cloud-rainbow:before{content:"\ec14"}
|
2729 |
-
.nc-glyph-cloud-snow-34:before{content:"\ec15"}
|
2730 |
-
.nc-glyph-cloud-snow-42:before{content:"\ec16"}
|
2731 |
-
.nc-glyph-cloud-sun-17:before{content:"\ec17"}
|
2732 |
-
.nc-glyph-cloud-sun-19:before{content:"\ec18"}
|
2733 |
-
.nc-glyph-cloud-upload-94:before{content:"\ec19"}
|
2734 |
-
.nc-glyph-cloud-upload-96:before{content:"\ec1a"}
|
2735 |
-
.nc-glyph-cloud:before{content:"\ec1b"}
|
2736 |
-
.nc-glyph-clover:before{content:"\ec1c"}
|
2737 |
-
.nc-glyph-coat-hanger:before{content:"\ec1d"}
|
2738 |
-
.nc-glyph-coat:before{content:"\ec1e"}
|
2739 |
-
.nc-glyph-cockade:before{content:"\ec1f"}
|
2740 |
-
.nc-glyph-cocktail:before{content:"\ec20"}
|
2741 |
-
.nc-glyph-code-editor:before{content:"\ec21"}
|
2742 |
-
.nc-glyph-code:before{content:"\ec22"}
|
2743 |
-
.nc-glyph-coffe-long:before{content:"\ec23"}
|
2744 |
-
.nc-glyph-coffee-2:before{content:"\ec24"}
|
2745 |
-
.nc-glyph-coffee-bean:before{content:"\ec25"}
|
2746 |
-
.nc-glyph-coffee-long:before{content:"\ec26"}
|
2747 |
-
.nc-glyph-coffee:before{content:"\ec27"}
|
2748 |
-
.nc-glyph-coffin:before{content:"\ec28"}
|
2749 |
-
.nc-glyph-coins:before{content:"\ec29"}
|
2750 |
-
.nc-glyph-collar:before{content:"\ec2a"}
|
2751 |
-
.nc-glyph-collection:before{content:"\ec2b"}
|
2752 |
-
.nc-glyph-color:before{content:"\ec2c"}
|
2753 |
-
.nc-glyph-command:before{content:"\ec2d"}
|
2754 |
-
.nc-glyph-comment-add:before{content:"\ec2e"}
|
2755 |
-
.nc-glyph-compare:before{content:"\ec2f"}
|
2756 |
-
.nc-glyph-compass-04:before{content:"\ec30"}
|
2757 |
-
.nc-glyph-compass-05:before{content:"\ec31"}
|
2758 |
-
.nc-glyph-compass-06:before{content:"\ec32"}
|
2759 |
-
.nc-glyph-compass-2:before{content:"\ec33"}
|
2760 |
-
.nc-glyph-compass-3:before{content:"\ec34"}
|
2761 |
-
.nc-glyph-compass:before{content:"\ec35"}
|
2762 |
-
.nc-glyph-components:before{content:"\ec36"}
|
2763 |
-
.nc-glyph-computer-monitor:before{content:"\ec37"}
|
2764 |
-
.nc-glyph-computer-old:before{content:"\ec38"}
|
2765 |
-
.nc-glyph-computer-upload:before{content:"\ec39"}
|
2766 |
-
.nc-glyph-computer:before{content:"\ec3a"}
|
2767 |
-
.nc-glyph-cone:before{content:"\ec3b"}
|
2768 |
-
.nc-glyph-connect:before{content:"\ec3c"}
|
2769 |
-
.nc-glyph-connection:before{content:"\ec3d"}
|
2770 |
-
.nc-glyph-contacts-2:before{content:"\ec3e"}
|
2771 |
-
.nc-glyph-contacts-44:before{content:"\ec3f"}
|
2772 |
-
.nc-glyph-contacts-45:before{content:"\ec40"}
|
2773 |
-
.nc-glyph-contacts:before{content:"\ec41"}
|
2774 |
-
.nc-glyph-contrast-2:before{content:"\ec42"}
|
2775 |
-
.nc-glyph-contrast:before{content:"\ec43"}
|
2776 |
-
.nc-glyph-controller-2:before{content:"\ec44"}
|
2777 |
-
.nc-glyph-controller-3:before{content:"\ec45"}
|
2778 |
-
.nc-glyph-controller:before{content:"\ec46"}
|
2779 |
-
.nc-glyph-conversion:before{content:"\ec47"}
|
2780 |
-
.nc-glyph-cookies:before{content:"\ec48"}
|
2781 |
-
.nc-glyph-copy-2:before{content:"\ec49"}
|
2782 |
-
.nc-glyph-copy:before{content:"\ec4a"}
|
2783 |
-
.nc-glyph-corn:before{content:"\ec4b"}
|
2784 |
-
.nc-glyph-corner-down-round:before{content:"\ec4c"}
|
2785 |
-
.nc-glyph-corner-down:before{content:"\ec4d"}
|
2786 |
-
.nc-glyph-corner-left-down:before{content:"\ec4e"}
|
2787 |
-
.nc-glyph-corner-left-round:before{content:"\ec4f"}
|
2788 |
-
.nc-glyph-corner-left:before{content:"\ec50"}
|
2789 |
-
.nc-glyph-corner-right-down:before{content:"\ec51"}
|
2790 |
-
.nc-glyph-corner-right-round:before{content:"\ec52"}
|
2791 |
-
.nc-glyph-corner-right:before{content:"\ec53"}
|
2792 |
-
.nc-glyph-corner-up-left:before{content:"\ec54"}
|
2793 |
-
.nc-glyph-corner-up-right:before{content:"\ec55"}
|
2794 |
-
.nc-glyph-corner-up-round:before{content:"\ec56"}
|
2795 |
-
.nc-glyph-corner-up:before{content:"\ec57"}
|
2796 |
-
.nc-glyph-corset:before{content:"\ec58"}
|
2797 |
-
.nc-glyph-countdown-34:before{content:"\ec59"}
|
2798 |
-
.nc-glyph-countdown-35:before{content:"\ec5a"}
|
2799 |
-
.nc-glyph-couple-gay:before{content:"\ec5b"}
|
2800 |
-
.nc-glyph-couple-lesbian:before{content:"\ec5c"}
|
2801 |
-
.nc-glyph-coupon:before{content:"\ec5d"}
|
2802 |
-
.nc-glyph-course:before{content:"\ec5e"}
|
2803 |
-
.nc-glyph-cow:before{content:"\ec5f"}
|
2804 |
-
.nc-glyph-crab:before{content:"\ec60"}
|
2805 |
-
.nc-glyph-cradle:before{content:"\ec61"}
|
2806 |
-
.nc-glyph-credit-card-in:before{content:"\ec62"}
|
2807 |
-
.nc-glyph-credit-card:before{content:"\ec63"}
|
2808 |
-
.nc-glyph-credit-locked:before{content:"\ec64"}
|
2809 |
-
.nc-glyph-crepe:before{content:"\ec65"}
|
2810 |
-
.nc-glyph-cricket:before{content:"\ec66"}
|
2811 |
-
.nc-glyph-croissant:before{content:"\ec67"}
|
2812 |
-
.nc-glyph-crop:before{content:"\ec68"}
|
2813 |
-
.nc-glyph-cross-down:before{content:"\ec69"}
|
2814 |
-
.nc-glyph-cross-horizontal:before{content:"\ec6a"}
|
2815 |
-
.nc-glyph-cross-left:before{content:"\ec6b"}
|
2816 |
-
.nc-glyph-cross-right:before{content:"\ec6c"}
|
2817 |
-
.nc-glyph-cross-up:before{content:"\ec6d"}
|
2818 |
-
.nc-glyph-cross-vertical:before{content:"\ec6e"}
|
2819 |
-
.nc-glyph-cross:before{content:"\ec6f"}
|
2820 |
-
.nc-glyph-crosshair:before{content:"\ec70"}
|
2821 |
-
.nc-glyph-crown:before{content:"\ec71"}
|
2822 |
-
.nc-glyph-crumpet:before{content:"\ec72"}
|
2823 |
-
.nc-glyph-cry-15:before{content:"\ec73"}
|
2824 |
-
.nc-glyph-cry-57:before{content:"\ec74"}
|
2825 |
-
.nc-glyph-css3:before{content:"\ec75"}
|
2826 |
-
.nc-glyph-cupcake:before{content:"\ec76"}
|
2827 |
-
.nc-glyph-currency-dollar:before{content:"\ec77"}
|
2828 |
-
.nc-glyph-currency-euro:before{content:"\ec78"}
|
2829 |
-
.nc-glyph-currency-exchange:before{content:"\ec79"}
|
2830 |
-
.nc-glyph-currency-pound:before{content:"\ec7a"}
|
2831 |
-
.nc-glyph-currency-yen:before{content:"\ec7b"}
|
2832 |
-
.nc-glyph-cursor-48:before{content:"\ec7c"}
|
2833 |
-
.nc-glyph-cursor-49:before{content:"\ec7d"}
|
2834 |
-
.nc-glyph-cursor-add:before{content:"\ec7e"}
|
2835 |
-
.nc-glyph-cursor-grab:before{content:"\ec7f"}
|
2836 |
-
.nc-glyph-cursor-load:before{content:"\ec80"}
|
2837 |
-
.nc-glyph-cursor-menu:before{content:"\ec81"}
|
2838 |
-
.nc-glyph-cursor-not-allowed:before{content:"\ec82"}
|
2839 |
-
.nc-glyph-cursor-pointer:before{content:"\ec83"}
|
2840 |
-
.nc-glyph-cursor-text:before{content:"\ec84"}
|
2841 |
-
.nc-glyph-curtain:before{content:"\ec85"}
|
2842 |
-
.nc-glyph-curve-circuit:before{content:"\ec86"}
|
2843 |
-
.nc-glyph-curve-directions:before{content:"\ec87"}
|
2844 |
-
.nc-glyph-curve-split:before{content:"\ec88"}
|
2845 |
-
.nc-glyph-curved-next:before{content:"\ec89"}
|
2846 |
-
.nc-glyph-curved-previous:before{content:"\ec8a"}
|
2847 |
-
.nc-glyph-customer-support:before{content:"\ec8b"}
|
2848 |
-
.nc-glyph-cut:before{content:"\ec8c"}
|
2849 |
-
.nc-glyph-cute:before{content:"\ec8d"}
|
2850 |
-
.nc-glyph-cutlery-75:before{content:"\ec8e"}
|
2851 |
-
.nc-glyph-cutlery-76:before{content:"\ec8f"}
|
2852 |
-
.nc-glyph-cutlery-77:before{content:"\ec90"}
|
2853 |
-
.nc-glyph-cutlery:before{content:"\ec91"}
|
2854 |
-
.nc-glyph-cyclist:before{content:"\ec92"}
|
2855 |
-
.nc-glyph-dart:before{content:"\ec93"}
|
2856 |
-
.nc-glyph-dashboard-29:before{content:"\ec94"}
|
2857 |
-
.nc-glyph-dashboard-30:before{content:"\ec95"}
|
2858 |
-
.nc-glyph-dashboard-half:before{content:"\ec96"}
|
2859 |
-
.nc-glyph-dashboard-level:before{content:"\ec97"}
|
2860 |
-
.nc-glyph-database:before{content:"\ec98"}
|
2861 |
-
.nc-glyph-dead-hand:before{content:"\ec99"}
|
2862 |
-
.nc-glyph-decoration:before{content:"\ec9a"}
|
2863 |
-
.nc-glyph-deer:before{content:"\ec9b"}
|
2864 |
-
.nc-glyph-delete-28:before{content:"\ec9c"}
|
2865 |
-
.nc-glyph-delete-30:before{content:"\ec9d"}
|
2866 |
-
.nc-glyph-delete-49:before{content:"\ec9e"}
|
2867 |
-
.nc-glyph-delete-50:before{content:"\ec9f"}
|
2868 |
-
.nc-glyph-delivery-2:before{content:"\eca0"}
|
2869 |
-
.nc-glyph-delivery-3:before{content:"\eca1"}
|
2870 |
-
.nc-glyph-delivery-fast:before{content:"\eca2"}
|
2871 |
-
.nc-glyph-delivery-time:before{content:"\eca3"}
|
2872 |
-
.nc-glyph-delivery-track:before{content:"\eca4"}
|
2873 |
-
.nc-glyph-delivery:before{content:"\eca5"}
|
2874 |
-
.nc-glyph-design-system:before{content:"\eca6"}
|
2875 |
-
.nc-glyph-design:before{content:"\eca7"}
|
2876 |
-
.nc-glyph-desk-drawer:before{content:"\eca8"}
|
2877 |
-
.nc-glyph-desk:before{content:"\eca9"}
|
2878 |
-
.nc-glyph-desktop-screen:before{content:"\ecaa"}
|
2879 |
-
.nc-glyph-desktop:before{content:"\ecab"}
|
2880 |
-
.nc-glyph-detox:before{content:"\ecac"}
|
2881 |
-
.nc-glyph-dev:before{content:"\ecad"}
|
2882 |
-
.nc-glyph-device-connection:before{content:"\ecae"}
|
2883 |
-
.nc-glyph-devil:before{content:"\ecaf"}
|
2884 |
-
.nc-glyph-diag-bottom-left:before{content:"\ecb0"}
|
2885 |
-
.nc-glyph-diag-bottom-right:before{content:"\ecb1"}
|
2886 |
-
.nc-glyph-diag-top-left:before{content:"\ecb2"}
|
2887 |
-
.nc-glyph-diag-top-right:before{content:"\ecb3"}
|
2888 |
-
.nc-glyph-diamond:before{content:"\ecb4"}
|
2889 |
-
.nc-glyph-dice:before{content:"\ecb5"}
|
2890 |
-
.nc-glyph-diet-plan:before{content:"\ecb6"}
|
2891 |
-
.nc-glyph-diet:before{content:"\ecb7"}
|
2892 |
-
.nc-glyph-direction-53:before{content:"\ecb8"}
|
2893 |
-
.nc-glyph-direction-56:before{content:"\ecb9"}
|
2894 |
-
.nc-glyph-direction:before{content:"\ecba"}
|
2895 |
-
.nc-glyph-directions:before{content:"\ecbb"}
|
2896 |
-
.nc-glyph-disabled:before{content:"\ecbc"}
|
2897 |
-
.nc-glyph-discord:before{content:"\ecbd"}
|
2898 |
-
.nc-glyph-discount-2:before{content:"\ecbe"}
|
2899 |
-
.nc-glyph-discount:before{content:"\ecbf"}
|
2900 |
-
.nc-glyph-disgusted:before{content:"\ecc0"}
|
2901 |
-
.nc-glyph-dish:before{content:"\ecc1"}
|
2902 |
-
.nc-glyph-dishwasher:before{content:"\ecc2"}
|
2903 |
-
.nc-glyph-disk-2:before{content:"\ecc3"}
|
2904 |
-
.nc-glyph-disk-reader:before{content:"\ecc4"}
|
2905 |
-
.nc-glyph-disk:before{content:"\ecc5"}
|
2906 |
-
.nc-glyph-disperse:before{content:"\ecc6"}
|
2907 |
-
.nc-glyph-distribute-horizontal:before{content:"\ecc7"}
|
2908 |
-
.nc-glyph-distribute-vertical:before{content:"\ecc8"}
|
2909 |
-
.nc-glyph-divider:before{content:"\ecc9"}
|
2910 |
-
.nc-glyph-dna-27:before{content:"\ecca"}
|
2911 |
-
.nc-glyph-dna-38:before{content:"\eccb"}
|
2912 |
-
.nc-glyph-dock-bottom:before{content:"\eccc"}
|
2913 |
-
.nc-glyph-dock-left:before{content:"\eccd"}
|
2914 |
-
.nc-glyph-dock-right:before{content:"\ecce"}
|
2915 |
-
.nc-glyph-dock-top:before{content:"\eccf"}
|
2916 |
-
.nc-glyph-dock:before{content:"\ecd0"}
|
2917 |
-
.nc-glyph-doctor:before{content:"\ecd1"}
|
2918 |
-
.nc-glyph-dog-house:before{content:"\ecd2"}
|
2919 |
-
.nc-glyph-dog:before{content:"\ecd3"}
|
2920 |
-
.nc-glyph-donut:before{content:"\ecd4"}
|
2921 |
-
.nc-glyph-door:before{content:"\ecd5"}
|
2922 |
-
.nc-glyph-dots-05:before{content:"\ecd6"}
|
2923 |
-
.nc-glyph-dots-06:before{content:"\ecd7"}
|
2924 |
-
.nc-glyph-dots-07:before{content:"\ecd8"}
|
2925 |
-
.nc-glyph-dots-download:before{content:"\ecd9"}
|
2926 |
-
.nc-glyph-dots-upload:before{content:"\ecda"}
|
2927 |
-
.nc-glyph-dots:before{content:"\ecdb"}
|
2928 |
-
.nc-glyph-double-left:before{content:"\ecdc"}
|
2929 |
-
.nc-glyph-double-right:before{content:"\ecdd"}
|
2930 |
-
.nc-glyph-double-tap:before{content:"\ecde"}
|
2931 |
-
.nc-glyph-download-2:before{content:"\ecdf"}
|
2932 |
-
.nc-glyph-download-3:before{content:"\ece0"}
|
2933 |
-
.nc-glyph-download:before{content:"\ece1"}
|
2934 |
-
.nc-glyph-drag-21:before{content:"\ece2"}
|
2935 |
-
.nc-glyph-drag-31:before{content:"\ece3"}
|
2936 |
-
.nc-glyph-drag-down:before{content:"\ece4"}
|
2937 |
-
.nc-glyph-drag-left:before{content:"\ece5"}
|
2938 |
-
.nc-glyph-drag-right:before{content:"\ece6"}
|
2939 |
-
.nc-glyph-drag-up:before{content:"\ece7"}
|
2940 |
-
.nc-glyph-drag:before{content:"\ece8"}
|
2941 |
-
.nc-glyph-drawer-2:before{content:"\ece9"}
|
2942 |
-
.nc-glyph-drawer:before{content:"\ecea"}
|
2943 |
-
.nc-glyph-dress-man:before{content:"\eceb"}
|
2944 |
-
.nc-glyph-dress-woman:before{content:"\ecec"}
|
2945 |
-
.nc-glyph-drink-2:before{content:"\ecee"}
|
2946 |
-
.nc-glyph-drink-list:before{content:"\eced"}
|
2947 |
-
.nc-glyph-drink:before{content:"\ecef"}
|
2948 |
-
.nc-glyph-drop-15:before{content:"\ecf0"}
|
2949 |
-
.nc-glyph-drop:before{content:"\ecf1"}
|
2950 |
-
.nc-glyph-drops:before{content:"\ecf3"}
|
2951 |
-
.nc-glyph-dumbbells:before{content:"\ecf2"}
|
2952 |
-
.nc-glyph-eclipse:before{content:"\ecf4"}
|
2953 |
-
.nc-glyph-edit-2:before{content:"\ecf5"}
|
2954 |
-
.nc-glyph-edit-71:before{content:"\ecf6"}
|
2955 |
-
.nc-glyph-edit-72:before{content:"\ecf7"}
|
2956 |
-
.nc-glyph-edit-73:before{content:"\ecf8"}
|
2957 |
-
.nc-glyph-edit-74:before{content:"\ecf9"}
|
2958 |
-
.nc-glyph-edit-75:before{content:"\ecfa"}
|
2959 |
-
.nc-glyph-edit-76:before{content:"\ecfb"}
|
2960 |
-
.nc-glyph-edit-77:before{content:"\ecfc"}
|
2961 |
-
.nc-glyph-edit-78:before{content:"\ecfd"}
|
2962 |
-
.nc-glyph-edit-color:before{content:"\ecfe"}
|
2963 |
-
.nc-glyph-edit-contrast-42:before{content:"\ecff"}
|
2964 |
-
.nc-glyph-edit-contrast-43:before{content:"\ed00"}
|
2965 |
-
.nc-glyph-edit-saturation:before{content:"\ed01"}
|
2966 |
-
.nc-glyph-edit:before{content:"\ed02"}
|
2967 |
-
.nc-glyph-egg-38:before{content:"\ed03"}
|
2968 |
-
.nc-glyph-egg-39:before{content:"\ed04"}
|
2969 |
-
.nc-glyph-egg:before{content:"\ed05"}
|
2970 |
-
.nc-glyph-eject:before{content:"\ed06"}
|
2971 |
-
.nc-glyph-email-83:before{content:"\ed07"}
|
2972 |
-
.nc-glyph-email-84:before{content:"\ed08"}
|
2973 |
-
.nc-glyph-email-85:before{content:"\ed09"}
|
2974 |
-
.nc-glyph-energy-drink-2:before{content:"\ed0a"}
|
2975 |
-
.nc-glyph-energy-drink:before{content:"\ed0b"}
|
2976 |
-
.nc-glyph-energy-supplement:before{content:"\ed0c"}
|
2977 |
-
.nc-glyph-energy:before{content:"\ed0d"}
|
2978 |
-
.nc-glyph-engine-start:before{content:"\ed0e"}
|
2979 |
-
.nc-glyph-engine:before{content:"\ed0f"}
|
2980 |
-
.nc-glyph-enlarge-45:before{content:"\ed10"}
|
2981 |
-
.nc-glyph-enlarge-46:before{content:"\ed11"}
|
2982 |
-
.nc-glyph-enlarge-57:before{content:"\ed12"}
|
2983 |
-
.nc-glyph-enlarge-58:before{content:"\ed13"}
|
2984 |
-
.nc-glyph-enlarge-59:before{content:"\ed14"}
|
2985 |
-
.nc-glyph-enlarge-circle:before{content:"\ed15"}
|
2986 |
-
.nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}
|
2987 |
-
.nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}
|
2988 |
-
.nc-glyph-enlarge-horizontal:before{content:"\ed18"}
|
2989 |
-
.nc-glyph-enlarge-vertical:before{content:"\ed19"}
|
2990 |
-
.nc-glyph-eraser-32:before{content:"\ed1a"}
|
2991 |
-
.nc-glyph-eraser-33:before{content:"\ed1b"}
|
2992 |
-
.nc-glyph-eraser-46:before{content:"\ed1c"}
|
2993 |
-
.nc-glyph-event-confirm:before{content:"\ed1d"}
|
2994 |
-
.nc-glyph-event-create:before{content:"\ed1e"}
|
2995 |
-
.nc-glyph-exchange:before{content:"\ed1f"}
|
2996 |
-
.nc-glyph-exclamation:before{content:"\ed20"}
|
2997 |
-
.nc-glyph-explore-2:before{content:"\ed21"}
|
2998 |
-
.nc-glyph-explore-user:before{content:"\ed22"}
|
2999 |
-
.nc-glyph-explore:before{content:"\ed23"}
|
3000 |
-
.nc-glyph-export:before{content:"\ed24"}
|
3001 |
-
.nc-glyph-eye-17:before{content:"\ed25"}
|
3002 |
-
.nc-glyph-eye-19:before{content:"\ed26"}
|
3003 |
-
.nc-glyph-eye-ban-18:before{content:"\ed27"}
|
3004 |
-
.nc-glyph-eye-ban-20:before{content:"\ed28"}
|
3005 |
-
.nc-glyph-factory:before{content:"\ed29"}
|
3006 |
-
.nc-glyph-fahrenheit:before{content:"\ed2a"}
|
3007 |
-
.nc-glyph-family:before{content:"\ed2b"}
|
3008 |
-
.nc-glyph-fat-add:before{content:"\ed2c"}
|
3009 |
-
.nc-glyph-fat-delete:before{content:"\ed2d"}
|
3010 |
-
.nc-glyph-fat-remove:before{content:"\ed2e"}
|
3011 |
-
.nc-glyph-fav-remove:before{content:"\ed2f"}
|
3012 |
-
.nc-glyph-favourite-28:before{content:"\ed30"}
|
3013 |
-
.nc-glyph-favourite-31:before{content:"\ed31"}
|
3014 |
-
.nc-glyph-favourite-add-29:before{content:"\ed32"}
|
3015 |
-
.nc-glyph-favourite-add-32:before{content:"\ed33"}
|
3016 |
-
.nc-glyph-favourite-remove-30:before{content:"\ed34"}
|
3017 |
-
.nc-glyph-favourite-remove-33:before{content:"\ed35"}
|
3018 |
-
.nc-glyph-fencing:before{content:"\ed36"}
|
3019 |
-
.nc-glyph-file-add:before{content:"\ed37"}
|
3020 |
-
.nc-glyph-file-delete:before{content:"\ed38"}
|
3021 |
-
.nc-glyph-file-download-87:before{content:"\ed39"}
|
3022 |
-
.nc-glyph-file-download-89:before{content:"\ed3a"}
|
3023 |
-
.nc-glyph-file-download-94:before{content:"\ed3b"}
|
3024 |
-
.nc-glyph-file-upload-86:before{content:"\ed3c"}
|
3025 |
-
.nc-glyph-file-upload-88:before{content:"\ed3d"}
|
3026 |
-
.nc-glyph-file-upload-93:before{content:"\ed3e"}
|
3027 |
-
.nc-glyph-filter-check:before{content:"\ed3f"}
|
3028 |
-
.nc-glyph-filter-organization:before{content:"\ed40"}
|
3029 |
-
.nc-glyph-filter-remove:before{content:"\ed41"}
|
3030 |
-
.nc-glyph-filter:before{content:"\ed42"}
|
3031 |
-
.nc-glyph-fire:before{content:"\ed43"}
|
3032 |
-
.nc-glyph-firewall:before{content:"\ed44"}
|
3033 |
-
.nc-glyph-fish:before{content:"\ed45"}
|
3034 |
-
.nc-glyph-fishbone:before{content:"\ed46"}
|
3035 |
-
.nc-glyph-fishing:before{content:"\ed47"}
|
3036 |
-
.nc-glyph-fist:before{content:"\ed48"}
|
3037 |
-
.nc-glyph-fit-horizontal:before{content:"\ed49"}
|
3038 |
-
.nc-glyph-fit-vertical:before{content:"\ed4a"}
|
3039 |
-
.nc-glyph-flag-complex:before{content:"\ed4b"}
|
3040 |
-
.nc-glyph-flag-diagonal-33:before{content:"\ed4c"}
|
3041 |
-
.nc-glyph-flag-diagonal-34:before{content:"\ed4d"}
|
3042 |
-
.nc-glyph-flag-finish:before{content:"\ed4e"}
|
3043 |
-
.nc-glyph-flag-points-31:before{content:"\ed4f"}
|
3044 |
-
.nc-glyph-flag-points-32:before{content:"\ed50"}
|
3045 |
-
.nc-glyph-flag-simple:before{content:"\ed51"}
|
3046 |
-
.nc-glyph-flag-triangle:before{content:"\ed52"}
|
3047 |
-
.nc-glyph-flag:before{content:"\ed53"}
|
3048 |
-
.nc-glyph-flame:before{content:"\ed54"}
|
3049 |
-
.nc-glyph-flash-21:before{content:"\ed55"}
|
3050 |
-
.nc-glyph-flash-24:before{content:"\ed56"}
|
3051 |
-
.nc-glyph-flash-29:before{content:"\ed57"}
|
3052 |
-
.nc-glyph-flash-auto-22:before{content:"\ed58"}
|
3053 |
-
.nc-glyph-flash-auto-25:before{content:"\ed59"}
|
3054 |
-
.nc-glyph-flash-off-23:before{content:"\ed5a"}
|
3055 |
-
.nc-glyph-flash-off-26:before{content:"\ed5b"}
|
3056 |
-
.nc-glyph-flask-2:before{content:"\ed5c"}
|
3057 |
-
.nc-glyph-flask:before{content:"\ed5d"}
|
3058 |
-
.nc-glyph-flick-down:before{content:"\ed5e"}
|
3059 |
-
.nc-glyph-flick-left:before{content:"\ed5f"}
|
3060 |
-
.nc-glyph-flick-right:before{content:"\ed60"}
|
3061 |
-
.nc-glyph-flick-up:before{content:"\ed61"}
|
3062 |
-
.nc-glyph-flip-horizontal:before{content:"\ed63"}
|
3063 |
-
.nc-glyph-flip-vertical:before{content:"\ed62"}
|
3064 |
-
.nc-glyph-flip:before{content:"\ed64"}
|
3065 |
-
.nc-glyph-flower-05:before{content:"\ed66"}
|
3066 |
-
.nc-glyph-flower-06:before{content:"\ed65"}
|
3067 |
-
.nc-glyph-flower-07:before{content:"\ed67"}
|
3068 |
-
.nc-glyph-focus-32:before{content:"\ed68"}
|
3069 |
-
.nc-glyph-focus-38:before{content:"\ed69"}
|
3070 |
-
.nc-glyph-focus-40:before{content:"\ed6a"}
|
3071 |
-
.nc-glyph-focus-circle:before{content:"\ed6b"}
|
3072 |
-
.nc-glyph-focus:before{content:"\ed6c"}
|
3073 |
-
.nc-glyph-fog:before{content:"\ed6d"}
|
3074 |
-
.nc-glyph-folder-13:before{content:"\ed6e"}
|
3075 |
-
.nc-glyph-folder-14:before{content:"\ed6f"}
|
3076 |
-
.nc-glyph-folder-15:before{content:"\ed70"}
|
3077 |
-
.nc-glyph-folder-16:before{content:"\ed73"}
|
3078 |
-
.nc-glyph-folder-17:before{content:"\ed71"}
|
3079 |
-
.nc-glyph-folder-18:before{content:"\ed72"}
|
3080 |
-
.nc-glyph-folder-19:before{content:"\ed74"}
|
3081 |
-
.nc-glyph-folder-add:before{content:"\ed75"}
|
3082 |
-
.nc-glyph-folder-audio:before{content:"\ed76"}
|
3083 |
-
.nc-glyph-folder-bookmark:before{content:"\ed77"}
|
3084 |
-
.nc-glyph-folder-chart-bar:before{content:"\ed78"}
|
3085 |
-
.nc-glyph-folder-chart-pie:before{content:"\ed79"}
|
3086 |
-
.nc-glyph-folder-check:before{content:"\ed7a"}
|
3087 |
-
.nc-glyph-folder-cloud:before{content:"\ed7b"}
|
3088 |
-
.nc-glyph-folder-dev:before{content:"\ed7c"}
|
3089 |
-
.nc-glyph-folder-download:before{content:"\ed7d"}
|
3090 |
-
.nc-glyph-folder-edit:before{content:"\ed7e"}
|
3091 |
-
.nc-glyph-folder-exclamation:before{content:"\ed7f"}
|
3092 |
-
.nc-glyph-folder-gallery:before{content:"\ed80"}
|
3093 |
-
.nc-glyph-folder-heart:before{content:"\ed81"}
|
3094 |
-
.nc-glyph-folder-image:before{content:"\ed82"}
|
3095 |
-
.nc-glyph-folder-info:before{content:"\ed83"}
|
3096 |
-
.nc-glyph-folder-link:before{content:"\ed84"}
|
3097 |
-
.nc-glyph-folder-locked:before{content:"\ed85"}
|
3098 |
-
.nc-glyph-folder-money:before{content:"\ed86"}
|
3099 |
-
.nc-glyph-folder-music:before{content:"\ed87"}
|
3100 |
-
.nc-glyph-folder-no-access:before{content:"\ed88"}
|
3101 |
-
.nc-glyph-folder-play:before{content:"\ed89"}
|
3102 |
-
.nc-glyph-folder-question:before{content:"\ed8a"}
|
3103 |
-
.nc-glyph-folder-refresh:before{content:"\ed8b"}
|
3104 |
-
.nc-glyph-folder-remove:before{content:"\ed8c"}
|
3105 |
-
.nc-glyph-folder-search:before{content:"\ed8d"}
|
3106 |
-
.nc-glyph-folder-settings-81:before{content:"\ed8e"}
|
3107 |
-
.nc-glyph-folder-settings-97:before{content:"\ed8f"}
|
3108 |
-
.nc-glyph-folder-shared:before{content:"\ed90"}
|
3109 |
-
.nc-glyph-folder-star:before{content:"\ed91"}
|
3110 |
-
.nc-glyph-folder-time:before{content:"\ed92"}
|
3111 |
-
.nc-glyph-folder-upload:before{content:"\ed93"}
|
3112 |
-
.nc-glyph-folder-user:before{content:"\ed94"}
|
3113 |
-
.nc-glyph-folder-vector:before{content:"\ed95"}
|
3114 |
-
.nc-glyph-food-dog:before{content:"\ed96"}
|
3115 |
-
.nc-glyph-food-scale:before{content:"\ed97"}
|
3116 |
-
.nc-glyph-food:before{content:"\ed98"}
|
3117 |
-
.nc-glyph-football-headguard:before{content:"\ed99"}
|
3118 |
-
.nc-glyph-forecast:before{content:"\ed9a"}
|
3119 |
-
.nc-glyph-forest:before{content:"\ed9b"}
|
3120 |
-
.nc-glyph-fork-round:before{content:"\ed9c"}
|
3121 |
-
.nc-glyph-fork:before{content:"\ed9d"}
|
3122 |
-
.nc-glyph-form:before{content:"\ed9e"}
|
3123 |
-
.nc-glyph-format-left:before{content:"\ed9f"}
|
3124 |
-
.nc-glyph-format-right:before{content:"\eda0"}
|
3125 |
-
.nc-glyph-forward:before{content:"\eda1"}
|
3126 |
-
.nc-glyph-frame-12:before{content:"\eda2"}
|
3127 |
-
.nc-glyph-frame-41:before{content:"\eda3"}
|
3128 |
-
.nc-glyph-frame:before{content:"\eda4"}
|
3129 |
-
.nc-glyph-frankenstein:before{content:"\eda5"}
|
3130 |
-
.nc-glyph-fridge:before{content:"\eda6"}
|
3131 |
-
.nc-glyph-fuel-2:before{content:"\eda7"}
|
3132 |
-
.nc-glyph-fuel-electric:before{content:"\eda8"}
|
3133 |
-
.nc-glyph-fuel:before{content:"\eda9"}
|
3134 |
-
.nc-glyph-full-screen:before{content:"\edaa"}
|
3135 |
-
.nc-glyph-fullscreen-70:before{content:"\edab"}
|
3136 |
-
.nc-glyph-fullscreen-71:before{content:"\edac"}
|
3137 |
-
.nc-glyph-fullscreen-76:before{content:"\edad"}
|
3138 |
-
.nc-glyph-fullscreen-77:before{content:"\edae"}
|
3139 |
-
.nc-glyph-fullscreen-double-74:before{content:"\edaf"}
|
3140 |
-
.nc-glyph-fullscreen-double-75:before{content:"\edb0"}
|
3141 |
-
.nc-glyph-fullscreen-split-72:before{content:"\edb1"}
|
3142 |
-
.nc-glyph-fullscreen-split-73:before{content:"\edb2"}
|
3143 |
-
.nc-glyph-fullsize:before{content:"\edb3"}
|
3144 |
-
.nc-glyph-funnel-39:before{content:"\edb4"}
|
3145 |
-
.nc-glyph-funnel-40:before{content:"\edb5"}
|
3146 |
-
.nc-glyph-funnel-41:before{content:"\edb6"}
|
3147 |
-
.nc-glyph-gallery:before{content:"\edb7"}
|
3148 |
-
.nc-glyph-gantt:before{content:"\edb8"}
|
3149 |
-
.nc-glyph-garlic:before{content:"\edb9"}
|
3150 |
-
.nc-glyph-ghost-2:before{content:"\edba"}
|
3151 |
-
.nc-glyph-ghost:before{content:"\edbb"}
|
3152 |
-
.nc-glyph-gift-2:before{content:"\edbc"}
|
3153 |
-
.nc-glyph-gift-exchange:before{content:"\edbd"}
|
3154 |
-
.nc-glyph-gift:before{content:"\edbe"}
|
3155 |
-
.nc-glyph-git-commit:before{content:"\edbf"}
|
3156 |
-
.nc-glyph-glass-water:before{content:"\edc0"}
|
3157 |
-
.nc-glyph-glass:before{content:"\edc1"}
|
3158 |
-
.nc-glyph-glasses-2:before{content:"\edc2"}
|
3159 |
-
.nc-glyph-glasses:before{content:"\edc3"}
|
3160 |
-
.nc-glyph-globe-2:before{content:"\edc4"}
|
3161 |
-
.nc-glyph-globe:before{content:"\edc5"}
|
3162 |
-
.nc-glyph-glove:before{content:"\edc6"}
|
3163 |
-
.nc-glyph-gloves:before{content:"\edc7"}
|
3164 |
-
.nc-glyph-goal-64:before{content:"\edc8"}
|
3165 |
-
.nc-glyph-goal-65:before{content:"\edc9"}
|
3166 |
-
.nc-glyph-gold:before{content:"\edca"}
|
3167 |
-
.nc-glyph-golf:before{content:"\edcb"}
|
3168 |
-
.nc-glyph-gps:before{content:"\edcc"}
|
3169 |
-
.nc-glyph-grab:before{content:"\edcd"}
|
3170 |
-
.nc-glyph-gradient:before{content:"\edce"}
|
3171 |
-
.nc-glyph-grammar-check:before{content:"\edcf"}
|
3172 |
-
.nc-glyph-grape:before{content:"\edd0"}
|
3173 |
-
.nc-glyph-grave:before{content:"\edd1"}
|
3174 |
-
.nc-glyph-grid-45:before{content:"\edd2"}
|
3175 |
-
.nc-glyph-grid-46:before{content:"\edd3"}
|
3176 |
-
.nc-glyph-grid-48:before{content:"\edd4"}
|
3177 |
-
.nc-glyph-grid-49:before{content:"\edd5"}
|
3178 |
-
.nc-glyph-grid-50:before{content:"\edd6"}
|
3179 |
-
.nc-glyph-grid-square:before{content:"\edd7"}
|
3180 |
-
.nc-glyph-grid-system:before{content:"\edd8"}
|
3181 |
-
.nc-glyph-grid:before{content:"\edd9"}
|
3182 |
-
.nc-glyph-group:before{content:"\edda"}
|
3183 |
-
.nc-glyph-guitar:before{content:"\eddb"}
|
3184 |
-
.nc-glyph-hammer:before{content:"\eddc"}
|
3185 |
-
.nc-glyph-hand-card:before{content:"\eddd"}
|
3186 |
-
.nc-glyph-handout:before{content:"\edde"}
|
3187 |
-
.nc-glyph-handshake:before{content:"\eddf"}
|
3188 |
-
.nc-glyph-hanger-clothes:before{content:"\ede0"}
|
3189 |
-
.nc-glyph-hanger:before{content:"\ede1"}
|
3190 |
-
.nc-glyph-hannibal:before{content:"\ede2"}
|
3191 |
-
.nc-glyph-happy-sun:before{content:"\ede3"}
|
3192 |
-
.nc-glyph-hat-2:before{content:"\ede4"}
|
3193 |
-
.nc-glyph-hat-3:before{content:"\ede5"}
|
3194 |
-
.nc-glyph-hat-top:before{content:"\ede6"}
|
3195 |
-
.nc-glyph-hat:before{content:"\ede7"}
|
3196 |
-
.nc-glyph-hazelnut:before{content:"\ede8"}
|
3197 |
-
.nc-glyph-hdmi:before{content:"\ede9"}
|
3198 |
-
.nc-glyph-headphone:before{content:"\edea"}
|
3199 |
-
.nc-glyph-headphones-2:before{content:"\edeb"}
|
3200 |
-
.nc-glyph-headphones-mic:before{content:"\edec"}
|
3201 |
-
.nc-glyph-headphones:before{content:"\eded"}
|
3202 |
-
.nc-glyph-headset:before{content:"\edee"}
|
3203 |
-
.nc-glyph-heart-2:before{content:"\edef"}
|
3204 |
-
.nc-glyph-heart-add:before{content:"\edf0"}
|
3205 |
-
.nc-glyph-heart-remove:before{content:"\edf1"}
|
3206 |
-
.nc-glyph-heart:before{content:"\edf2"}
|
3207 |
-
.nc-glyph-heartbeat:before{content:"\edf3"}
|
3208 |
-
.nc-glyph-heater:before{content:"\edf4"}
|
3209 |
-
.nc-glyph-height:before{content:"\edf5"}
|
3210 |
-
.nc-glyph-helicopter:before{content:"\edf6"}
|
3211 |
-
.nc-glyph-helmet-2:before{content:"\edf7"}
|
3212 |
-
.nc-glyph-helmet:before{content:"\edf8"}
|
3213 |
-
.nc-glyph-hierarchy-53:before{content:"\edf9"}
|
3214 |
-
.nc-glyph-hierarchy-54:before{content:"\edfa"}
|
3215 |
-
.nc-glyph-hierarchy-55:before{content:"\edfb"}
|
3216 |
-
.nc-glyph-hierarchy-56:before{content:"\edfc"}
|
3217 |
-
.nc-glyph-hit-down:before{content:"\edfd"}
|
3218 |
-
.nc-glyph-hit-left:before{content:"\edfe"}
|
3219 |
-
.nc-glyph-hit-right:before{content:"\edff"}
|
3220 |
-
.nc-glyph-hit-up:before{content:"\ee00"}
|
3221 |
-
.nc-glyph-hob:before{content:"\ee01"}
|
3222 |
-
.nc-glyph-hockey:before{content:"\ee02"}
|
3223 |
-
.nc-glyph-hold:before{content:"\ee03"}
|
3224 |
-
.nc-glyph-home-2:before{content:"\ee04"}
|
3225 |
-
.nc-glyph-home-51:before{content:"\ee05"}
|
3226 |
-
.nc-glyph-home-52:before{content:"\ee06"}
|
3227 |
-
.nc-glyph-home-minimal:before{content:"\ee07"}
|
3228 |
-
.nc-glyph-home-search:before{content:"\ee08"}
|
3229 |
-
.nc-glyph-home-simple:before{content:"\ee09"}
|
3230 |
-
.nc-glyph-home:before{content:"\ee0a"}
|
3231 |
-
.nc-glyph-honey:before{content:"\ee0b"}
|
3232 |
-
.nc-glyph-hoodie:before{content:"\ee0c"}
|
3233 |
-
.nc-glyph-hospital-32:before{content:"\ee0d"}
|
3234 |
-
.nc-glyph-hospital-33:before{content:"\ee0e"}
|
3235 |
-
.nc-glyph-hospital-34:before{content:"\ee0f"}
|
3236 |
-
.nc-glyph-hot-dog:before{content:"\ee10"}
|
3237 |
-
.nc-glyph-hotel-bell:before{content:"\ee11"}
|
3238 |
-
.nc-glyph-hotel-symbol:before{content:"\ee12"}
|
3239 |
-
.nc-glyph-hotel:before{content:"\ee13"}
|
3240 |
-
.nc-glyph-hourglass:before{content:"\ee14"}
|
3241 |
-
.nc-glyph-html5:before{content:"\ee15"}
|
3242 |
-
.nc-glyph-humidity-26:before{content:"\ee16"}
|
3243 |
-
.nc-glyph-humidity-52:before{content:"\ee17"}
|
3244 |
-
.nc-glyph-hurricane-44:before{content:"\ee18"}
|
3245 |
-
.nc-glyph-hurricane-45:before{content:"\ee19"}
|
3246 |
-
.nc-glyph-hut:before{content:"\ee1a"}
|
3247 |
-
.nc-glyph-hybrid:before{content:"\ee1b"}
|
3248 |
-
.nc-glyph-ice-cream-22:before{content:"\ee1c"}
|
3249 |
-
.nc-glyph-ice-cream-72:before{content:"\ee1d"}
|
3250 |
-
.nc-glyph-ice-cream:before{content:"\ee1e"}
|
3251 |
-
.nc-glyph-igloo:before{content:"\ee1f"}
|
3252 |
-
.nc-glyph-image-01:before{content:"\ee20"}
|
3253 |
-
.nc-glyph-image-02:before{content:"\ee21"}
|
3254 |
-
.nc-glyph-image-05:before{content:"\ee22"}
|
3255 |
-
.nc-glyph-image-2:before{content:"\ee23"}
|
3256 |
-
.nc-glyph-image-3:before{content:"\ee24"}
|
3257 |
-
.nc-glyph-image-add:before{content:"\ee25"}
|
3258 |
-
.nc-glyph-image-delete:before{content:"\ee26"}
|
3259 |
-
.nc-glyph-image-location:before{content:"\ee27"}
|
3260 |
-
.nc-glyph-image:before{content:"\ee28"}
|
3261 |
-
.nc-glyph-infinite:before{content:"\ee29"}
|
3262 |
-
.nc-glyph-info:before{content:"\ee2a"}
|
3263 |
-
.nc-glyph-input-12:before{content:"\ee2b"}
|
3264 |
-
.nc-glyph-input-21:before{content:"\ee2c"}
|
3265 |
-
.nc-glyph-intestine:before{content:"\ee2d"}
|
3266 |
-
.nc-glyph-invert:before{content:"\ee2e"}
|
3267 |
-
.nc-glyph-iron-2:before{content:"\ee2f"}
|
3268 |
-
.nc-glyph-iron-dont:before{content:"\ee30"}
|
3269 |
-
.nc-glyph-iron:before{content:"\ee31"}
|
3270 |
-
.nc-glyph-istanbul:before{content:"\ee32"}
|
3271 |
-
.nc-glyph-italic:before{content:"\ee33"}
|
3272 |
-
.nc-glyph-jam:before{content:"\ee34"}
|
3273 |
-
.nc-glyph-jeans-41:before{content:"\ee35"}
|
3274 |
-
.nc-glyph-jeans-43:before{content:"\ee36"}
|
3275 |
-
.nc-glyph-jeans-pocket:before{content:"\ee37"}
|
3276 |
-
.nc-glyph-jelly:before{content:"\ee38"}
|
3277 |
-
.nc-glyph-jellyfish:before{content:"\ee39"}
|
3278 |
-
.nc-glyph-journey-04:before{content:"\ee3a"}
|
3279 |
-
.nc-glyph-journey-05:before{content:"\ee3b"}
|
3280 |
-
.nc-glyph-journey-06:before{content:"\ee3c"}
|
3281 |
-
.nc-glyph-journey-07:before{content:"\ee3d"}
|
3282 |
-
.nc-glyph-journey-08:before{content:"\ee3e"}
|
3283 |
-
.nc-glyph-juice:before{content:"\ee3f"}
|
3284 |
-
.nc-glyph-kettle:before{content:"\ee40"}
|
3285 |
-
.nc-glyph-kettlebell:before{content:"\ee41"}
|
3286 |
-
.nc-glyph-key-25:before{content:"\ee42"}
|
3287 |
-
.nc-glyph-key-26:before{content:"\ee43"}
|
3288 |
-
.nc-glyph-keyboard-hide:before{content:"\ee44"}
|
3289 |
-
.nc-glyph-keyboard-mouse:before{content:"\ee45"}
|
3290 |
-
.nc-glyph-keyboard-wifi:before{content:"\ee46"}
|
3291 |
-
.nc-glyph-keyboard-wireless:before{content:"\ee47"}
|
3292 |
-
.nc-glyph-keyboard:before{content:"\ee48"}
|
3293 |
-
.nc-glyph-kid-2:before{content:"\ee49"}
|
3294 |
-
.nc-glyph-kid:before{content:"\ee4a"}
|
3295 |
-
.nc-glyph-kiss:before{content:"\ee4b"}
|
3296 |
-
.nc-glyph-kitchen-fan:before{content:"\ee4c"}
|
3297 |
-
.nc-glyph-kitchen:before{content:"\ee4d"}
|
3298 |
-
.nc-glyph-kiwi:before{content:"\ee4e"}
|
3299 |
-
.nc-glyph-knife:before{content:"\ee4f"}
|
3300 |
-
.nc-glyph-knob:before{content:"\ee50"}
|
3301 |
-
.nc-glyph-l-add:before{content:"\ee51"}
|
3302 |
-
.nc-glyph-l-check:before{content:"\ee52"}
|
3303 |
-
.nc-glyph-l-circle:before{content:"\ee53"}
|
3304 |
-
.nc-glyph-l-circles:before{content:"\ee54"}
|
3305 |
-
.nc-glyph-l-location:before{content:"\ee55"}
|
3306 |
-
.nc-glyph-l-remove:before{content:"\ee56"}
|
3307 |
-
.nc-glyph-l-search:before{content:"\ee57"}
|
3308 |
-
.nc-glyph-l-security:before{content:"\ee58"}
|
3309 |
-
.nc-glyph-l-settings:before{content:"\ee59"}
|
3310 |
-
.nc-glyph-l-sync:before{content:"\ee5a"}
|
3311 |
-
.nc-glyph-l-system-update:before{content:"\ee5b"}
|
3312 |
-
.nc-glyph-lab:before{content:"\ee5c"}
|
3313 |
-
.nc-glyph-lamp-2:before{content:"\ee5d"}
|
3314 |
-
.nc-glyph-lamp-3:before{content:"\ee5e"}
|
3315 |
-
.nc-glyph-lamp-floor:before{content:"\ee5f"}
|
3316 |
-
.nc-glyph-lamp:before{content:"\ee60"}
|
3317 |
-
.nc-glyph-language:before{content:"\ee61"}
|
3318 |
-
.nc-glyph-laptop-1:before{content:"\ee62"}
|
3319 |
-
.nc-glyph-laptop-2:before{content:"\ee63"}
|
3320 |
-
.nc-glyph-laptop-71:before{content:"\ee64"}
|
3321 |
-
.nc-glyph-laptop-72:before{content:"\ee65"}
|
3322 |
-
.nc-glyph-laptop:before{content:"\ee66"}
|
3323 |
-
.nc-glyph-laugh-17:before{content:"\ee67"}
|
3324 |
-
.nc-glyph-laugh-35:before{content:"\ee68"}
|
3325 |
-
.nc-glyph-launch-11:before{content:"\ee69"}
|
3326 |
-
.nc-glyph-launch-47:before{content:"\ee6a"}
|
3327 |
-
.nc-glyph-law:before{content:"\ee6b"}
|
3328 |
-
.nc-glyph-layers-2:before{content:"\ee6c"}
|
3329 |
-
.nc-glyph-layers-3:before{content:"\ee6d"}
|
3330 |
-
.nc-glyph-layers:before{content:"\ee6e"}
|
3331 |
-
.nc-glyph-layout-11:before{content:"\ee6f"}
|
3332 |
-
.nc-glyph-layout-25:before{content:"\ee70"}
|
3333 |
-
.nc-glyph-leaf-36:before{content:"\ee71"}
|
3334 |
-
.nc-glyph-leaf-38:before{content:"\ee72"}
|
3335 |
-
.nc-glyph-leaf-80:before{content:"\ee73"}
|
3336 |
-
.nc-glyph-leaf-81:before{content:"\ee74"}
|
3337 |
-
.nc-glyph-leaf-edit:before{content:"\ee75"}
|
3338 |
-
.nc-glyph-lemon-slice:before{content:"\ee76"}
|
3339 |
-
.nc-glyph-lemon:before{content:"\ee77"}
|
3340 |
-
.nc-glyph-lens-31:before{content:"\ee78"}
|
3341 |
-
.nc-glyph-lens-56:before{content:"\ee79"}
|
3342 |
-
.nc-glyph-library:before{content:"\ee7a"}
|
3343 |
-
.nc-glyph-light-2:before{content:"\ee7b"}
|
3344 |
-
.nc-glyph-light-3:before{content:"\ee7c"}
|
3345 |
-
.nc-glyph-light-traffic:before{content:"\ee7d"}
|
3346 |
-
.nc-glyph-light:before{content:"\ee7e"}
|
3347 |
-
.nc-glyph-lighter:before{content:"\ee7f"}
|
3348 |
-
.nc-glyph-lighthouse:before{content:"\ee80"}
|
3349 |
-
.nc-glyph-like-2:before{content:"\ee81"}
|
3350 |
-
.nc-glyph-like-no:before{content:"\ee82"}
|
3351 |
-
.nc-glyph-like:before{content:"\ee83"}
|
3352 |
-
.nc-glyph-line-height:before{content:"\ee84"}
|
3353 |
-
.nc-glyph-lines:before{content:"\ee85"}
|
3354 |
-
.nc-glyph-link-2:before{content:"\ee86"}
|
3355 |
-
.nc-glyph-link-66:before{content:"\ee87"}
|
3356 |
-
.nc-glyph-link-67:before{content:"\ee88"}
|
3357 |
-
.nc-glyph-link-68:before{content:"\ee89"}
|
3358 |
-
.nc-glyph-link-69:before{content:"\ee8a"}
|
3359 |
-
.nc-glyph-link-71:before{content:"\ee8b"}
|
3360 |
-
.nc-glyph-link-72:before{content:"\ee8c"}
|
3361 |
-
.nc-glyph-link-broken-70:before{content:"\ee8d"}
|
3362 |
-
.nc-glyph-link-broken-73:before{content:"\ee8e"}
|
3363 |
-
.nc-glyph-link:before{content:"\ee8f"}
|
3364 |
-
.nc-glyph-list-bullet:before{content:"\ee90"}
|
3365 |
-
.nc-glyph-list-numbers:before{content:"\ee91"}
|
3366 |
-
.nc-glyph-list:before{content:"\ee92"}
|
3367 |
-
.nc-glyph-lobster:before{content:"\ee93"}
|
3368 |
-
.nc-glyph-lock-circle-open:before{content:"\ee94"}
|
3369 |
-
.nc-glyph-lock-circle:before{content:"\ee95"}
|
3370 |
-
.nc-glyph-lock-landscape:before{content:"\ee96"}
|
3371 |
-
.nc-glyph-lock-open:before{content:"\ee97"}
|
3372 |
-
.nc-glyph-lock-portrait:before{content:"\ee98"}
|
3373 |
-
.nc-glyph-lock:before{content:"\ee99"}
|
3374 |
-
.nc-glyph-locked:before{content:"\ee9a"}
|
3375 |
-
.nc-glyph-log-in:before{content:"\ee9b"}
|
3376 |
-
.nc-glyph-log-out-2:before{content:"\ee9c"}
|
3377 |
-
.nc-glyph-log-out:before{content:"\ee9d"}
|
3378 |
-
.nc-glyph-logo-500px:before{content:"\ee9e"}
|
3379 |
-
.nc-glyph-logo-angellist:before{content:"\ee9f"}
|
3380 |
-
.nc-glyph-logo-behance:before{content:"\eea0"}
|
3381 |
-
.nc-glyph-logo-blogger:before{content:"\eea1"}
|
3382 |
-
.nc-glyph-logo-buffer:before{content:"\eea2"}
|
3383 |
-
.nc-glyph-logo-buysellads:before{content:"\eea3"}
|
3384 |
-
.nc-glyph-logo-codepen:before{content:"\eea4"}
|
3385 |
-
.nc-glyph-logo-creative-market:before{content:"\eea5"}
|
3386 |
-
.nc-glyph-logo-crunchbase:before{content:"\eea6"}
|
3387 |
-
.nc-glyph-logo-deviantart:before{content:"\eea7"}
|
3388 |
-
.nc-glyph-logo-dribbble:before{content:"\eea8"}
|
3389 |
-
.nc-glyph-logo-dropbox:before{content:"\eea9"}
|
3390 |
-
.nc-glyph-logo-envato:before{content:"\eeaa"}
|
3391 |
-
.nc-glyph-logo-evernote:before{content:"\eeab"}
|
3392 |
-
.nc-glyph-logo-facebook:before{content:"\eeac"}
|
3393 |
-
.nc-glyph-logo-fb-simple:before{content:"\eead"}
|
3394 |
-
.nc-glyph-logo-feedly:before{content:"\eeae"}
|
3395 |
-
.nc-glyph-logo-flickr:before{content:"\eeaf"}
|
3396 |
-
.nc-glyph-logo-github:before{content:"\eeb0"}
|
3397 |
-
.nc-glyph-logo-google-plus:before{content:"\eeb1"}
|
3398 |
-
.nc-glyph-logo-instagram:before{content:"\eeb2"}
|
3399 |
-
.nc-glyph-logo-lastfm:before{content:"\eeb3"}
|
3400 |
-
.nc-glyph-logo-linkedin:before{content:"\eeb4"}
|
3401 |
-
.nc-glyph-logo-medium:before{content:"\eeb5"}
|
3402 |
-
.nc-glyph-logo-meetup:before{content:"\eeb6"}
|
3403 |
-
.nc-glyph-logo-messenger:before{content:"\eeb7"}
|
3404 |
-
.nc-glyph-logo-myspace:before{content:"\eeb8"}
|
3405 |
-
.nc-glyph-logo-paypal:before{content:"\eeb9"}
|
3406 |
-
.nc-glyph-logo-pinterest:before{content:"\eeba"}
|
3407 |
-
.nc-glyph-logo-product-hunt:before{content:"\eebb"}
|
3408 |
-
.nc-glyph-logo-qq:before{content:"\eebc"}
|
3409 |
-
.nc-glyph-logo-reddit:before{content:"\eebd"}
|
3410 |
-
.nc-glyph-logo-rss:before{content:"\eebe"}
|
3411 |
-
.nc-glyph-logo-shopify:before{content:"\eebf"}
|
3412 |
-
.nc-glyph-logo-skype:before{content:"\eec0"}
|
3413 |
-
.nc-glyph-logo-slack:before{content:"\eec1"}
|
3414 |
-
.nc-glyph-logo-soundcloud:before{content:"\eec2"}
|
3415 |
-
.nc-glyph-logo-spotify:before{content:"\eec3"}
|
3416 |
-
.nc-glyph-logo-squarespace:before{content:"\eec4"}
|
3417 |
-
.nc-glyph-logo-trello:before{content:"\eec5"}
|
3418 |
-
.nc-glyph-logo-tumblr:before{content:"\eec6"}
|
3419 |
-
.nc-glyph-logo-twitter:before{content:"\eec7"}
|
3420 |
-
.nc-glyph-logo-vimeo:before{content:"\eec8"}
|
3421 |
-
.nc-glyph-logo-vine:before{content:"\eec9"}
|
3422 |
-
.nc-glyph-logo-vk:before{content:"\eeca"}
|
3423 |
-
.nc-glyph-logo-wechat:before{content:"\eecb"}
|
3424 |
-
.nc-glyph-logo-weibo:before{content:"\eecc"}
|
3425 |
-
.nc-glyph-logo-whatsapp:before{content:"\eecd"}
|
3426 |
-
.nc-glyph-logo-wikipedia:before{content:"\eece"}
|
3427 |
-
.nc-glyph-logo-wordpress:before{content:"\eecf"}
|
3428 |
-
.nc-glyph-logo-yelp:before{content:"\eed0"}
|
3429 |
-
.nc-glyph-logo-youtube:before{content:"\eed1"}
|
3430 |
-
.nc-glyph-logout:before{content:"\eed2"}
|
3431 |
-
.nc-glyph-lollipop:before{content:"\eed3"}
|
3432 |
-
.nc-glyph-london:before{content:"\eed4"}
|
3433 |
-
.nc-glyph-long-sleeve:before{content:"\eed5"}
|
3434 |
-
.nc-glyph-loop-30:before{content:"\eed6"}
|
3435 |
-
.nc-glyph-loop-34:before{content:"\eed7"}
|
3436 |
-
.nc-glyph-loop-82:before{content:"\eed8"}
|
3437 |
-
.nc-glyph-loop-83:before{content:"\eed9"}
|
3438 |
-
.nc-glyph-loop:before{content:"\eeda"}
|
3439 |
-
.nc-glyph-luggage:before{content:"\eedb"}
|
3440 |
-
.nc-glyph-lungs:before{content:"\eedc"}
|
3441 |
-
.nc-glyph-m-add:before{content:"\eedd"}
|
3442 |
-
.nc-glyph-m-check:before{content:"\eede"}
|
3443 |
-
.nc-glyph-m-delete:before{content:"\eedf"}
|
3444 |
-
.nc-glyph-m-edit:before{content:"\eee0"}
|
3445 |
-
.nc-glyph-m-heart:before{content:"\eee1"}
|
3446 |
-
.nc-glyph-m-location:before{content:"\eee2"}
|
3447 |
-
.nc-glyph-m-remove:before{content:"\eee3"}
|
3448 |
-
.nc-glyph-m-search:before{content:"\eee4"}
|
3449 |
-
.nc-glyph-m-security:before{content:"\eee5"}
|
3450 |
-
.nc-glyph-m-settings:before{content:"\eee6"}
|
3451 |
-
.nc-glyph-m-share:before{content:"\eee7"}
|
3452 |
-
.nc-glyph-m-star:before{content:"\eee8"}
|
3453 |
-
.nc-glyph-m-sync:before{content:"\eee9"}
|
3454 |
-
.nc-glyph-m-time:before{content:"\eeea"}
|
3455 |
-
.nc-glyph-m-update:before{content:"\eeeb"}
|
3456 |
-
.nc-glyph-macro:before{content:"\eeec"}
|
3457 |
-
.nc-glyph-mad-12:before{content:"\eeed"}
|
3458 |
-
.nc-glyph-mad-58:before{content:"\eeee"}
|
3459 |
-
.nc-glyph-magnet:before{content:"\eeef"}
|
3460 |
-
.nc-glyph-makeup:before{content:"\eef0"}
|
3461 |
-
.nc-glyph-malicious:before{content:"\eef1"}
|
3462 |
-
.nc-glyph-man-20:before{content:"\eef2"}
|
3463 |
-
.nc-glyph-man-23:before{content:"\eef3"}
|
3464 |
-
.nc-glyph-man-down:before{content:"\eef4"}
|
3465 |
-
.nc-glyph-man-glasses:before{content:"\eef5"}
|
3466 |
-
.nc-glyph-man-up:before{content:"\eef6"}
|
3467 |
-
.nc-glyph-man:before{content:"\eef7"}
|
3468 |
-
.nc-glyph-manga-62:before{content:"\eef8"}
|
3469 |
-
.nc-glyph-manga-63:before{content:"\eef9"}
|
3470 |
-
.nc-glyph-map-big:before{content:"\eefa"}
|
3471 |
-
.nc-glyph-map-compass:before{content:"\eefb"}
|
3472 |
-
.nc-glyph-map-gps:before{content:"\eefc"}
|
3473 |
-
.nc-glyph-map-marker:before{content:"\eefd"}
|
3474 |
-
.nc-glyph-map-pin:before{content:"\eefe"}
|
3475 |
-
.nc-glyph-map:before{content:"\eeff"}
|
3476 |
-
.nc-glyph-margin-left:before{content:"\ef00"}
|
3477 |
-
.nc-glyph-margin-right:before{content:"\ef01"}
|
3478 |
-
.nc-glyph-marker-2:before{content:"\ef02"}
|
3479 |
-
.nc-glyph-marker-3:before{content:"\ef03"}
|
3480 |
-
.nc-glyph-marker:before{content:"\ef04"}
|
3481 |
-
.nc-glyph-market-music:before{content:"\ef05"}
|
3482 |
-
.nc-glyph-market-play:before{content:"\ef06"}
|
3483 |
-
.nc-glyph-mask-oval:before{content:"\ef07"}
|
3484 |
-
.nc-glyph-mask-rect:before{content:"\ef08"}
|
3485 |
-
.nc-glyph-matches:before{content:"\ef09"}
|
3486 |
-
.nc-glyph-math:before{content:"\ef0a"}
|
3487 |
-
.nc-glyph-measure-02:before{content:"\ef0b"}
|
3488 |
-
.nc-glyph-measure-17:before{content:"\ef0c"}
|
3489 |
-
.nc-glyph-measure-big:before{content:"\ef0d"}
|
3490 |
-
.nc-glyph-measuring-cup:before{content:"\ef0e"}
|
3491 |
-
.nc-glyph-meat-spit:before{content:"\ef0f"}
|
3492 |
-
.nc-glyph-meeting:before{content:"\ef10"}
|
3493 |
-
.nc-glyph-menu-34:before{content:"\ef11"}
|
3494 |
-
.nc-glyph-menu-35:before{content:"\ef12"}
|
3495 |
-
.nc-glyph-menu-bold:before{content:"\ef13"}
|
3496 |
-
.nc-glyph-menu-dots:before{content:"\ef14"}
|
3497 |
-
.nc-glyph-menu-left:before{content:"\ef15"}
|
3498 |
-
.nc-glyph-menu-right:before{content:"\ef16"}
|
3499 |
-
.nc-glyph-menu-square:before{content:"\ef17"}
|
3500 |
-
.nc-glyph-menu:before{content:"\ef18"}
|
3501 |
-
.nc-glyph-merge-2:before{content:"\ef19"}
|
3502 |
-
.nc-glyph-merge-round:before{content:"\ef1a"}
|
3503 |
-
.nc-glyph-merge:before{content:"\ef1b"}
|
3504 |
-
.nc-glyph-message:before{content:"\ef1c"}
|
3505 |
-
.nc-glyph-metrics:before{content:"\ef1d"}
|
3506 |
-
.nc-glyph-mic-2:before{content:"\ef1e"}
|
3507 |
-
.nc-glyph-mic:before{content:"\ef1f"}
|
3508 |
-
.nc-glyph-mickey-mouse:before{content:"\ef20"}
|
3509 |
-
.nc-glyph-microscope:before{content:"\ef21"}
|
3510 |
-
.nc-glyph-microsoft:before{content:"\ef22"}
|
3511 |
-
.nc-glyph-microwave:before{content:"\ef23"}
|
3512 |
-
.nc-glyph-milk:before{content:"\ef24"}
|
3513 |
-
.nc-glyph-minimal-down:before{content:"\ef25"}
|
3514 |
-
.nc-glyph-minimal-left:before{content:"\ef26"}
|
3515 |
-
.nc-glyph-minimal-right:before{content:"\ef27"}
|
3516 |
-
.nc-glyph-minimal-up:before{content:"\ef28"}
|
3517 |
-
.nc-glyph-mirror-2:before{content:"\ef29"}
|
3518 |
-
.nc-glyph-mirror:before{content:"\ef2a"}
|
3519 |
-
.nc-glyph-mistletoe:before{content:"\ef2b"}
|
3520 |
-
.nc-glyph-mixer:before{content:"\ef2c"}
|
3521 |
-
.nc-glyph-mobile-button:before{content:"\ef2d"}
|
3522 |
-
.nc-glyph-mobile-camera:before{content:"\ef2e"}
|
3523 |
-
.nc-glyph-mobile-card:before{content:"\ef2f"}
|
3524 |
-
.nc-glyph-mobile-contact:before{content:"\ef30"}
|
3525 |
-
.nc-glyph-mobile-design:before{content:"\ef31"}
|
3526 |
-
.nc-glyph-mobile-dev:before{content:"\ef32"}
|
3527 |
-
.nc-glyph-mobile-landscape:before{content:"\ef33"}
|
3528 |
-
.nc-glyph-mobile-recharger-08:before{content:"\ef34"}
|
3529 |
-
.nc-glyph-mobile-recharger-09:before{content:"\ef35"}
|
3530 |
-
.nc-glyph-mobile-toolbar:before{content:"\ef36"}
|
3531 |
-
.nc-glyph-mobile:before{content:"\ef37"}
|
3532 |
-
.nc-glyph-moka:before{content:"\ef38"}
|
3533 |
-
.nc-glyph-molecule-39:before{content:"\ef39"}
|
3534 |
-
.nc-glyph-molecule-40:before{content:"\ef3a"}
|
3535 |
-
.nc-glyph-molecule:before{content:"\ef3b"}
|
3536 |
-
.nc-glyph-money-11:before{content:"\ef3c"}
|
3537 |
-
.nc-glyph-money-12:before{content:"\ef3d"}
|
3538 |
-
.nc-glyph-money-13:before{content:"\ef3e"}
|
3539 |
-
.nc-glyph-money-bag:before{content:"\ef3f"}
|
3540 |
-
.nc-glyph-money-coins:before{content:"\ef40"}
|
3541 |
-
.nc-glyph-money-growth:before{content:"\ef41"}
|
3542 |
-
.nc-glyph-money-time:before{content:"\ef42"}
|
3543 |
-
.nc-glyph-money:before{content:"\ef43"}
|
3544 |
-
.nc-glyph-monster:before{content:"\ef44"}
|
3545 |
-
.nc-glyph-moon-cloud-drop:before{content:"\ef45"}
|
3546 |
-
.nc-glyph-moon-cloud-fog:before{content:"\ef46"}
|
3547 |
-
.nc-glyph-moon-cloud-hail:before{content:"\ef47"}
|
3548 |
-
.nc-glyph-moon-cloud-light:before{content:"\ef48"}
|
3549 |
-
.nc-glyph-moon-cloud-rain:before{content:"\ef49"}
|
3550 |
-
.nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}
|
3551 |
-
.nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}
|
3552 |
-
.nc-glyph-moon-fog:before{content:"\ef4c"}
|
3553 |
-
.nc-glyph-moon-full:before{content:"\ef4d"}
|
3554 |
-
.nc-glyph-moon-stars:before{content:"\ef4e"}
|
3555 |
-
.nc-glyph-moon:before{content:"\ef4f"}
|
3556 |
-
.nc-glyph-mosque:before{content:"\ef50"}
|
3557 |
-
.nc-glyph-moto:before{content:"\ef51"}
|
3558 |
-
.nc-glyph-mountain:before{content:"\ef52"}
|
3559 |
-
.nc-glyph-mouse-08:before{content:"\ef53"}
|
3560 |
-
.nc-glyph-mouse-09:before{content:"\ef54"}
|
3561 |
-
.nc-glyph-mouse-10:before{content:"\ef55"}
|
3562 |
-
.nc-glyph-mouse:before{content:"\ef56"}
|
3563 |
-
.nc-glyph-move-05:before{content:"\ef57"}
|
3564 |
-
.nc-glyph-move-06:before{content:"\ef58"}
|
3565 |
-
.nc-glyph-move-92:before{content:"\ef59"}
|
3566 |
-
.nc-glyph-move-down-2:before{content:"\ef5a"}
|
3567 |
-
.nc-glyph-move-down-right:before{content:"\ef5b"}
|
3568 |
-
.nc-glyph-move-down:before{content:"\ef5c"}
|
3569 |
-
.nc-glyph-move-left:before{content:"\ef5d"}
|
3570 |
-
.nc-glyph-move-right:before{content:"\ef5e"}
|
3571 |
-
.nc-glyph-move-up-2:before{content:"\ef5f"}
|
3572 |
-
.nc-glyph-move-up-left:before{content:"\ef60"}
|
3573 |
-
.nc-glyph-move-up:before{content:"\ef61"}
|
3574 |
-
.nc-glyph-movie-61:before{content:"\ef62"}
|
3575 |
-
.nc-glyph-movie-62:before{content:"\ef63"}
|
3576 |
-
.nc-glyph-muffin:before{content:"\ef64"}
|
3577 |
-
.nc-glyph-mug:before{content:"\ef65"}
|
3578 |
-
.nc-glyph-multiple-11:before{content:"\ef66"}
|
3579 |
-
.nc-glyph-multiple-19:before{content:"\ef67"}
|
3580 |
-
.nc-glyph-multiple:before{content:"\ef68"}
|
3581 |
-
.nc-glyph-mushroom:before{content:"\ef69"}
|
3582 |
-
.nc-glyph-music-2:before{content:"\ef6a"}
|
3583 |
-
.nc-glyph-music-album:before{content:"\ef6b"}
|
3584 |
-
.nc-glyph-music-cloud:before{content:"\ef6c"}
|
3585 |
-
.nc-glyph-music:before{content:"\ef6d"}
|
3586 |
-
.nc-glyph-navigation:before{content:"\ef6e"}
|
3587 |
-
.nc-glyph-needle:before{content:"\ef6f"}
|
3588 |
-
.nc-glyph-nerd-22:before{content:"\ef70"}
|
3589 |
-
.nc-glyph-nerd-23:before{content:"\ef71"}
|
3590 |
-
.nc-glyph-net:before{content:"\ef72"}
|
3591 |
-
.nc-glyph-network:before{content:"\ef73"}
|
3592 |
-
.nc-glyph-new:before{content:"\ef74"}
|
3593 |
-
.nc-glyph-newsletter-dev:before{content:"\ef75"}
|
3594 |
-
.nc-glyph-newsletter:before{content:"\ef76"}
|
3595 |
-
.nc-glyph-night:before{content:"\ef77"}
|
3596 |
-
.nc-glyph-ninja:before{content:"\ef78"}
|
3597 |
-
.nc-glyph-no-access:before{content:"\ef79"}
|
3598 |
-
.nc-glyph-no-words:before{content:"\ef7a"}
|
3599 |
-
.nc-glyph-node:before{content:"\ef7b"}
|
3600 |
-
.nc-glyph-note-03:before{content:"\ef7c"}
|
3601 |
-
.nc-glyph-note-04:before{content:"\ef7d"}
|
3602 |
-
.nc-glyph-note-code:before{content:"\ef7e"}
|
3603 |
-
.nc-glyph-notebook-2:before{content:"\ef7f"}
|
3604 |
-
.nc-glyph-notebook:before{content:"\ef80"}
|
3605 |
-
.nc-glyph-notepad:before{content:"\ef81"}
|
3606 |
-
.nc-glyph-notes:before{content:"\ef82"}
|
3607 |
-
.nc-glyph-notification-69:before{content:"\ef83"}
|
3608 |
-
.nc-glyph-notification-70:before{content:"\ef84"}
|
3609 |
-
.nc-glyph-nurse:before{content:"\ef85"}
|
3610 |
-
.nc-glyph-nutrition:before{content:"\ef86"}
|
3611 |
-
.nc-glyph-ny:before{content:"\ef87"}
|
3612 |
-
.nc-glyph-octopus:before{content:"\ef88"}
|
3613 |
-
.nc-glyph-oil:before{content:"\ef89"}
|
3614 |
-
.nc-glyph-onenote:before{content:"\ef8a"}
|
3615 |
-
.nc-glyph-onion:before{content:"\ef8b"}
|
3616 |
-
.nc-glyph-open-in-browser:before{content:"\ef8c"}
|
3617 |
-
.nc-glyph-opening-times:before{content:"\ef8d"}
|
3618 |
-
.nc-glyph-orange:before{content:"\ef8e"}
|
3619 |
-
.nc-glyph-organic-2:before{content:"\ef8f"}
|
3620 |
-
.nc-glyph-organic:before{content:"\ef90"}
|
3621 |
-
.nc-glyph-oven:before{content:"\ef91"}
|
3622 |
-
.nc-glyph-owl:before{content:"\ef93"}
|
3623 |
-
.nc-glyph-p-add:before{content:"\ef92"}
|
3624 |
-
.nc-glyph-p-check:before{content:"\ef94"}
|
3625 |
-
.nc-glyph-p-edit:before{content:"\ef95"}
|
3626 |
-
.nc-glyph-p-heart:before{content:"\ef96"}
|
3627 |
-
.nc-glyph-p-location:before{content:"\ef97"}
|
3628 |
-
.nc-glyph-p-remove:before{content:"\ef98"}
|
3629 |
-
.nc-glyph-p-search:before{content:"\ef99"}
|
3630 |
-
.nc-glyph-p-settings:before{content:"\ef9a"}
|
3631 |
-
.nc-glyph-p-share:before{content:"\ef9b"}
|
3632 |
-
.nc-glyph-p-sync:before{content:"\ef9c"}
|
3633 |
-
.nc-glyph-p-system-update:before{content:"\ef9d"}
|
3634 |
-
.nc-glyph-p-time:before{content:"\ef9e"}
|
3635 |
-
.nc-glyph-paint-16:before{content:"\ef9f"}
|
3636 |
-
.nc-glyph-paint-37:before{content:"\efa0"}
|
3637 |
-
.nc-glyph-paint-38:before{content:"\efa1"}
|
3638 |
-
.nc-glyph-paint-brush:before{content:"\efa2"}
|
3639 |
-
.nc-glyph-paint-bucket-39:before{content:"\efa3"}
|
3640 |
-
.nc-glyph-paint-bucket-40:before{content:"\efa4"}
|
3641 |
-
.nc-glyph-pajamas:before{content:"\efa5"}
|
3642 |
-
.nc-glyph-palette:before{content:"\efa6"}
|
3643 |
-
.nc-glyph-pan:before{content:"\efa7"}
|
3644 |
-
.nc-glyph-pancake:before{content:"\efa8"}
|
3645 |
-
.nc-glyph-panda:before{content:"\efa9"}
|
3646 |
-
.nc-glyph-panel:before{content:"\efaa"}
|
3647 |
-
.nc-glyph-pantone:before{content:"\efab"}
|
3648 |
-
.nc-glyph-paper-2:before{content:"\efac"}
|
3649 |
-
.nc-glyph-paper-design:before{content:"\efad"}
|
3650 |
-
.nc-glyph-paper-dev:before{content:"\efae"}
|
3651 |
-
.nc-glyph-paper-diploma:before{content:"\efaf"}
|
3652 |
-
.nc-glyph-paper:before{content:"\efb0"}
|
3653 |
-
.nc-glyph-paragraph:before{content:"\efb1"}
|
3654 |
-
.nc-glyph-parent:before{content:"\efb2"}
|
3655 |
-
.nc-glyph-paris-tower:before{content:"\efb3"}
|
3656 |
-
.nc-glyph-parking-sensors:before{content:"\efb4"}
|
3657 |
-
.nc-glyph-parking:before{content:"\efb5"}
|
3658 |
-
.nc-glyph-parrot:before{content:"\efb6"}
|
3659 |
-
.nc-glyph-passport:before{content:"\efb7"}
|
3660 |
-
.nc-glyph-pasta:before{content:"\efb8"}
|
3661 |
-
.nc-glyph-patch-19:before{content:"\efb9"}
|
3662 |
-
.nc-glyph-patch-34:before{content:"\efba"}
|
3663 |
-
.nc-glyph-patch:before{content:"\efbb"}
|
3664 |
-
.nc-glyph-path-exclude:before{content:"\efbc"}
|
3665 |
-
.nc-glyph-path-intersect:before{content:"\efbd"}
|
3666 |
-
.nc-glyph-path-minus:before{content:"\efbe"}
|
3667 |
-
.nc-glyph-path-unite:before{content:"\efbf"}
|
3668 |
-
.nc-glyph-paw:before{content:"\efc0"}
|
3669 |
-
.nc-glyph-payment:before{content:"\efc1"}
|
3670 |
-
.nc-glyph-pci-card:before{content:"\efc2"}
|
3671 |
-
.nc-glyph-peanut:before{content:"\efc3"}
|
3672 |
-
.nc-glyph-pear:before{content:"\efc4"}
|
3673 |
-
.nc-glyph-pen-01:before{content:"\efc5"}
|
3674 |
-
.nc-glyph-pen-23:before{content:"\efc6"}
|
3675 |
-
.nc-glyph-pen-tool:before{content:"\efc7"}
|
3676 |
-
.nc-glyph-pencil-47:before{content:"\efc8"}
|
3677 |
-
.nc-glyph-pencil:before{content:"\efc9"}
|
3678 |
-
.nc-glyph-penguin:before{content:"\efca"}
|
3679 |
-
.nc-glyph-pepper:before{content:"\efcb"}
|
3680 |
-
.nc-glyph-percentage-38:before{content:"\efcc"}
|
3681 |
-
.nc-glyph-percentage-39:before{content:"\efcd"}
|
3682 |
-
.nc-glyph-phone-2:before{content:"\efce"}
|
3683 |
-
.nc-glyph-phone-3:before{content:"\efcf"}
|
3684 |
-
.nc-glyph-phone-call-end:before{content:"\efd0"}
|
3685 |
-
.nc-glyph-phone-call:before{content:"\efd1"}
|
3686 |
-
.nc-glyph-phone:before{content:"\efd2"}
|
3687 |
-
.nc-glyph-photo-editor:before{content:"\efd3"}
|
3688 |
-
.nc-glyph-piano:before{content:"\efd4"}
|
3689 |
-
.nc-glyph-pickaxe:before{content:"\efd5"}
|
3690 |
-
.nc-glyph-pickle:before{content:"\efd6"}
|
3691 |
-
.nc-glyph-picnic-basket:before{content:"\efd7"}
|
3692 |
-
.nc-glyph-picture:before{content:"\efd8"}
|
3693 |
-
.nc-glyph-pig-2:before{content:"\efd9"}
|
3694 |
-
.nc-glyph-pig:before{content:"\efda"}
|
3695 |
-
.nc-glyph-pill-42:before{content:"\efdb"}
|
3696 |
-
.nc-glyph-pill-43:before{content:"\efdc"}
|
3697 |
-
.nc-glyph-pill-container-44:before{content:"\efdd"}
|
3698 |
-
.nc-glyph-pill-container-47:before{content:"\efde"}
|
3699 |
-
.nc-glyph-pin-2:before{content:"\efdf"}
|
3700 |
-
.nc-glyph-pin-3:before{content:"\efe0"}
|
3701 |
-
.nc-glyph-pin-4:before{content:"\efe1"}
|
3702 |
-
.nc-glyph-pin-add-2:before{content:"\efe2"}
|
3703 |
-
.nc-glyph-pin-add:before{content:"\efe3"}
|
3704 |
-
.nc-glyph-pin-check:before{content:"\efe4"}
|
3705 |
-
.nc-glyph-pin-copy:before{content:"\efe5"}
|
3706 |
-
.nc-glyph-pin-delete:before{content:"\efe6"}
|
3707 |
-
.nc-glyph-pin-edit:before{content:"\efe7"}
|
3708 |
-
.nc-glyph-pin-heart:before{content:"\efe8"}
|
3709 |
-
.nc-glyph-pin-remove-2:before{content:"\efe9"}
|
3710 |
-
.nc-glyph-pin-remove:before{content:"\efea"}
|
3711 |
-
.nc-glyph-pin-search:before{content:"\efeb"}
|
3712 |
-
.nc-glyph-pin-security:before{content:"\efec"}
|
3713 |
-
.nc-glyph-pin-settings:before{content:"\efed"}
|
3714 |
-
.nc-glyph-pin-share:before{content:"\efee"}
|
3715 |
-
.nc-glyph-pin-star:before{content:"\efef"}
|
3716 |
-
.nc-glyph-pin-sync:before{content:"\eff0"}
|
3717 |
-
.nc-glyph-pin-time:before{content:"\eff1"}
|
3718 |
-
.nc-glyph-pin-user:before{content:"\eff2"}
|
3719 |
-
.nc-glyph-pin:before{content:"\eff3"}
|
3720 |
-
.nc-glyph-pinch:before{content:"\eff4"}
|
3721 |
-
.nc-glyph-pineapple:before{content:"\eff5"}
|
3722 |
-
.nc-glyph-ping-pong:before{content:"\eff6"}
|
3723 |
-
.nc-glyph-pins:before{content:"\eff7"}
|
3724 |
-
.nc-glyph-pipe:before{content:"\eff8"}
|
3725 |
-
.nc-glyph-pirate:before{content:"\eff9"}
|
3726 |
-
.nc-glyph-pizza-slice:before{content:"\effa"}
|
3727 |
-
.nc-glyph-pizza:before{content:"\effb"}
|
3728 |
-
.nc-glyph-plane-17:before{content:"\effc"}
|
3729 |
-
.nc-glyph-plane-18:before{content:"\effd"}
|
3730 |
-
.nc-glyph-planet:before{content:"\effe"}
|
3731 |
-
.nc-glyph-plant-ground:before{content:"\efff"}
|
3732 |
-
.nc-glyph-plant-vase:before{content:"\f000"}
|
3733 |
-
.nc-glyph-plate:before{content:"\f001"}
|
3734 |
-
.nc-glyph-play-68:before{content:"\f002"}
|
3735 |
-
.nc-glyph-play-69:before{content:"\f003"}
|
3736 |
-
.nc-glyph-play:before{content:"\f004"}
|
3737 |
-
.nc-glyph-player-19:before{content:"\f005"}
|
3738 |
-
.nc-glyph-player-48:before{content:"\f006"}
|
3739 |
-
.nc-glyph-player:before{content:"\f007"}
|
3740 |
-
.nc-glyph-playlist:before{content:"\f008"}
|
3741 |
-
.nc-glyph-plug:before{content:"\f009"}
|
3742 |
-
.nc-glyph-podium-trophy:before{content:"\f00a"}
|
3743 |
-
.nc-glyph-podium:before{content:"\f00b"}
|
3744 |
-
.nc-glyph-point-a:before{content:"\f00c"}
|
3745 |
-
.nc-glyph-point-b:before{content:"\f00d"}
|
3746 |
-
.nc-glyph-polaroid-add:before{content:"\f00e"}
|
3747 |
-
.nc-glyph-polaroid-delete:before{content:"\f00f"}
|
3748 |
-
.nc-glyph-polaroid-multiple:before{content:"\f010"}
|
3749 |
-
.nc-glyph-polaroid-user:before{content:"\f011"}
|
3750 |
-
.nc-glyph-polaroid:before{content:"\f012"}
|
3751 |
-
.nc-glyph-police:before{content:"\f013"}
|
3752 |
-
.nc-glyph-pool:before{content:"\f014"}
|
3753 |
-
.nc-glyph-poop:before{content:"\f015"}
|
3754 |
-
.nc-glyph-popcorn:before{content:"\f016"}
|
3755 |
-
.nc-glyph-pos:before{content:"\f017"}
|
3756 |
-
.nc-glyph-position-marker:before{content:"\f018"}
|
3757 |
-
.nc-glyph-position-pin:before{content:"\f019"}
|
3758 |
-
.nc-glyph-position-user:before{content:"\f01a"}
|
3759 |
-
.nc-glyph-position:before{content:"\f01b"}
|
3760 |
-
.nc-glyph-pot:before{content:"\f01c"}
|
3761 |
-
.nc-glyph-potato:before{content:"\f01d"}
|
3762 |
-
.nc-glyph-power-level:before{content:"\f01e"}
|
3763 |
-
.nc-glyph-preferences-circle-rotate:before{content:"\f01f"}
|
3764 |
-
.nc-glyph-preferences-circle:before{content:"\f020"}
|
3765 |
-
.nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}
|
3766 |
-
.nc-glyph-preferences-container-circle:before{content:"\f022"}
|
3767 |
-
.nc-glyph-preferences-container-rotate:before{content:"\f023"}
|
3768 |
-
.nc-glyph-preferences-container:before{content:"\f024"}
|
3769 |
-
.nc-glyph-preferences-rotate:before{content:"\f025"}
|
3770 |
-
.nc-glyph-preferences:before{content:"\f026"}
|
3771 |
-
.nc-glyph-print:before{content:"\f027"}
|
3772 |
-
.nc-glyph-printer:before{content:"\f028"}
|
3773 |
-
.nc-glyph-priority-high:before{content:"\f029"}
|
3774 |
-
.nc-glyph-priority-low:before{content:"\f02a"}
|
3775 |
-
.nc-glyph-progress:before{content:"\f02b"}
|
3776 |
-
.nc-glyph-prosciutto:before{content:"\f02c"}
|
3777 |
-
.nc-glyph-prototype:before{content:"\f02d"}
|
3778 |
-
.nc-glyph-pulse-chart:before{content:"\f02e"}
|
3779 |
-
.nc-glyph-pulse-phone:before{content:"\f02f"}
|
3780 |
-
.nc-glyph-pulse-sleep:before{content:"\f030"}
|
3781 |
-
.nc-glyph-pulse-watch:before{content:"\f031"}
|
3782 |
-
.nc-glyph-pulse:before{content:"\f032"}
|
3783 |
-
.nc-glyph-pumpkin:before{content:"\f033"}
|
3784 |
-
.nc-glyph-push-next:before{content:"\f034"}
|
3785 |
-
.nc-glyph-push-previous:before{content:"\f035"}
|
3786 |
-
.nc-glyph-puzzle-09:before{content:"\f036"}
|
3787 |
-
.nc-glyph-puzzle-10:before{content:"\f037"}
|
3788 |
-
.nc-glyph-puzzled:before{content:"\f038"}
|
3789 |
-
.nc-glyph-pyramid:before{content:"\f039"}
|
3790 |
-
.nc-glyph-question:before{content:"\f03a"}
|
3791 |
-
.nc-glyph-quite-happy:before{content:"\f03b"}
|
3792 |
-
.nc-glyph-quote:before{content:"\f03c"}
|
3793 |
-
.nc-glyph-rabbit:before{content:"\f03d"}
|
3794 |
-
.nc-glyph-rackets:before{content:"\f03e"}
|
3795 |
-
.nc-glyph-radar:before{content:"\f03f"}
|
3796 |
-
.nc-glyph-radiation:before{content:"\f040"}
|
3797 |
-
.nc-glyph-radio:before{content:"\f041"}
|
3798 |
-
.nc-glyph-rain-hail:before{content:"\f042"}
|
3799 |
-
.nc-glyph-rain:before{content:"\f043"}
|
3800 |
-
.nc-glyph-rainbow:before{content:"\f044"}
|
3801 |
-
.nc-glyph-ram:before{content:"\f045"}
|
3802 |
-
.nc-glyph-rat:before{content:"\f046"}
|
3803 |
-
.nc-glyph-receipt-list-42:before{content:"\f047"}
|
3804 |
-
.nc-glyph-receipt-list-43:before{content:"\f048"}
|
3805 |
-
.nc-glyph-receipt:before{content:"\f049"}
|
3806 |
-
.nc-glyph-recipe-book-46:before{content:"\f04a"}
|
3807 |
-
.nc-glyph-recipe-book-47:before{content:"\f04b"}
|
3808 |
-
.nc-glyph-recipe-create:before{content:"\f04c"}
|
3809 |
-
.nc-glyph-recipe:before{content:"\f04d"}
|
3810 |
-
.nc-glyph-recycling:before{content:"\f04e"}
|
3811 |
-
.nc-glyph-redo-10:before{content:"\f04f"}
|
3812 |
-
.nc-glyph-redo-26:before{content:"\f050"}
|
3813 |
-
.nc-glyph-redo-79:before{content:"\f051"}
|
3814 |
-
.nc-glyph-redo-81:before{content:"\f052"}
|
3815 |
-
.nc-glyph-refresh-01:before{content:"\f053"}
|
3816 |
-
.nc-glyph-refresh-02:before{content:"\f054"}
|
3817 |
-
.nc-glyph-refresh-68:before{content:"\f055"}
|
3818 |
-
.nc-glyph-refresh-69:before{content:"\f056"}
|
3819 |
-
.nc-glyph-refresh:before{content:"\f057"}
|
3820 |
-
.nc-glyph-reload:before{content:"\f058"}
|
3821 |
-
.nc-glyph-remix:before{content:"\f059"}
|
3822 |
-
.nc-glyph-remote:before{content:"\f05a"}
|
3823 |
-
.nc-glyph-remove:before{content:"\f05b"}
|
3824 |
-
.nc-glyph-replace-folder:before{content:"\f05c"}
|
3825 |
-
.nc-glyph-replace:before{content:"\f05d"}
|
3826 |
-
.nc-glyph-replay:before{content:"\f05e"}
|
3827 |
-
.nc-glyph-reply-all:before{content:"\f05f"}
|
3828 |
-
.nc-glyph-reply:before{content:"\f060"}
|
3829 |
-
.nc-glyph-reservation:before{content:"\f061"}
|
3830 |
-
.nc-glyph-resize-h:before{content:"\f062"}
|
3831 |
-
.nc-glyph-resize-v:before{content:"\f063"}
|
3832 |
-
.nc-glyph-restaurant-menu:before{content:"\f064"}
|
3833 |
-
.nc-glyph-restore:before{content:"\f065"}
|
3834 |
-
.nc-glyph-rice:before{content:"\f066"}
|
3835 |
-
.nc-glyph-rim:before{content:"\f067"}
|
3836 |
-
.nc-glyph-ring:before{content:"\f068"}
|
3837 |
-
.nc-glyph-rio:before{content:"\f069"}
|
3838 |
-
.nc-glyph-ripples:before{content:"\f06a"}
|
3839 |
-
.nc-glyph-road-2:before{content:"\f06b"}
|
3840 |
-
.nc-glyph-road-sign-left:before{content:"\f06c"}
|
3841 |
-
.nc-glyph-road-sign-right:before{content:"\f06d"}
|
3842 |
-
.nc-glyph-road:before{content:"\f06e"}
|
3843 |
-
.nc-glyph-roast-chicken:before{content:"\f06f"}
|
3844 |
-
.nc-glyph-robot:before{content:"\f070"}
|
3845 |
-
.nc-glyph-rock:before{content:"\f071"}
|
3846 |
-
.nc-glyph-roll:before{content:"\f072"}
|
3847 |
-
.nc-glyph-rolling-pin:before{content:"\f073"}
|
3848 |
-
.nc-glyph-rome:before{content:"\f074"}
|
3849 |
-
.nc-glyph-rope:before{content:"\f075"}
|
3850 |
-
.nc-glyph-rotate-22:before{content:"\f076"}
|
3851 |
-
.nc-glyph-rotate-23:before{content:"\f077"}
|
3852 |
-
.nc-glyph-rotate-left-2:before{content:"\f078"}
|
3853 |
-
.nc-glyph-rotate-left:before{content:"\f079"}
|
3854 |
-
.nc-glyph-rotate-lock:before{content:"\f07a"}
|
3855 |
-
.nc-glyph-rotate-right-2:before{content:"\f07b"}
|
3856 |
-
.nc-glyph-rotate-right:before{content:"\f07c"}
|
3857 |
-
.nc-glyph-rotate:before{content:"\f07d"}
|
3858 |
-
.nc-glyph-round-dollar:before{content:"\f07e"}
|
3859 |
-
.nc-glyph-round-down:before{content:"\f07f"}
|
3860 |
-
.nc-glyph-round-euro:before{content:"\f080"}
|
3861 |
-
.nc-glyph-round-left-down:before{content:"\f081"}
|
3862 |
-
.nc-glyph-round-left:before{content:"\f082"}
|
3863 |
-
.nc-glyph-round-pound:before{content:"\f083"}
|
3864 |
-
.nc-glyph-round-right-down:before{content:"\f084"}
|
3865 |
-
.nc-glyph-round-right:before{content:"\f085"}
|
3866 |
-
.nc-glyph-round-up-left:before{content:"\f086"}
|
3867 |
-
.nc-glyph-round-up-right:before{content:"\f087"}
|
3868 |
-
.nc-glyph-round-up:before{content:"\f088"}
|
3869 |
-
.nc-glyph-round-yen:before{content:"\f089"}
|
3870 |
-
.nc-glyph-route-alert:before{content:"\f08a"}
|
3871 |
-
.nc-glyph-route-close:before{content:"\f08b"}
|
3872 |
-
.nc-glyph-route-open:before{content:"\f08c"}
|
3873 |
-
.nc-glyph-rowing:before{content:"\f08d"}
|
3874 |
-
.nc-glyph-rugby:before{content:"\f08e"}
|
3875 |
-
.nc-glyph-ruler-pencil:before{content:"\f08f"}
|
3876 |
-
.nc-glyph-sad:before{content:"\f090"}
|
3877 |
-
.nc-glyph-safe:before{content:"\f091"}
|
3878 |
-
.nc-glyph-salad:before{content:"\f092"}
|
3879 |
-
.nc-glyph-sale:before{content:"\f093"}
|
3880 |
-
.nc-glyph-salt:before{content:"\f094"}
|
3881 |
-
.nc-glyph-santa-hat:before{content:"\f095"}
|
3882 |
-
.nc-glyph-satisfied:before{content:"\f096"}
|
3883 |
-
.nc-glyph-sausage:before{content:"\f097"}
|
3884 |
-
.nc-glyph-save-planet:before{content:"\f098"}
|
3885 |
-
.nc-glyph-scale-2:before{content:"\f099"}
|
3886 |
-
.nc-glyph-scale-3:before{content:"\f09a"}
|
3887 |
-
.nc-glyph-scale-4:before{content:"\f09b"}
|
3888 |
-
.nc-glyph-scale-down:before{content:"\f09c"}
|
3889 |
-
.nc-glyph-scale-horizontal:before{content:"\f09d"}
|
3890 |
-
.nc-glyph-scale-up:before{content:"\f09e"}
|
3891 |
-
.nc-glyph-scale-vertical:before{content:"\f09f"}
|
3892 |
-
.nc-glyph-scale:before{content:"\f0a0"}
|
3893 |
-
.nc-glyph-scan:before{content:"\f0a1"}
|
3894 |
-
.nc-glyph-scarf:before{content:"\f0a2"}
|
3895 |
-
.nc-glyph-school:before{content:"\f0a3"}
|
3896 |
-
.nc-glyph-scissors-dashed:before{content:"\f0a4"}
|
3897 |
-
.nc-glyph-scissors:before{content:"\f0a5"}
|
3898 |
-
.nc-glyph-scotch:before{content:"\f0a6"}
|
3899 |
-
.nc-glyph-scroll-horitontal:before{content:"\f0a7"}
|
3900 |
-
.nc-glyph-scroll-vertical:before{content:"\f0a8"}
|
3901 |
-
.nc-glyph-sd:before{content:"\f0a9"}
|
3902 |
-
.nc-glyph-sea-mask:before{content:"\f0aa"}
|
3903 |
-
.nc-glyph-search-2:before{content:"\f0ab"}
|
3904 |
-
.nc-glyph-search-3:before{content:"\f0ac"}
|
3905 |
-
.nc-glyph-search:before{content:"\f0ad"}
|
3906 |
-
.nc-glyph-seat:before{content:"\f0ae"}
|
3907 |
-
.nc-glyph-seatbelt:before{content:"\f0af"}
|
3908 |
-
.nc-glyph-security:before{content:"\f0b0"}
|
3909 |
-
.nc-glyph-segmentation:before{content:"\f0b1"}
|
3910 |
-
.nc-glyph-select-83:before{content:"\f0b2"}
|
3911 |
-
.nc-glyph-select-84:before{content:"\f0b3"}
|
3912 |
-
.nc-glyph-select:before{content:"\f0b4"}
|
3913 |
-
.nc-glyph-selection:before{content:"\f0b5"}
|
3914 |
-
.nc-glyph-selfie:before{content:"\f0b6"}
|
3915 |
-
.nc-glyph-send-2:before{content:"\f0b7"}
|
3916 |
-
.nc-glyph-send:before{content:"\f0b8"}
|
3917 |
-
.nc-glyph-sensor:before{content:"\f0b9"}
|
3918 |
-
.nc-glyph-separate-round:before{content:"\f0ba"}
|
3919 |
-
.nc-glyph-separate:before{content:"\f0bb"}
|
3920 |
-
.nc-glyph-settings-46:before{content:"\f0bc"}
|
3921 |
-
.nc-glyph-settings-99:before{content:"\f0bd"}
|
3922 |
-
.nc-glyph-settings-gear-63:before{content:"\f0be"}
|
3923 |
-
.nc-glyph-settings-gear-64:before{content:"\f0bf"}
|
3924 |
-
.nc-glyph-settings-gear-65:before{content:"\f0c0"}
|
3925 |
-
.nc-glyph-settings-tool-66:before{content:"\f0c1"}
|
3926 |
-
.nc-glyph-settings-tool-67:before{content:"\f0c2"}
|
3927 |
-
.nc-glyph-settings:before{content:"\f0c3"}
|
3928 |
-
.nc-glyph-sf-bridge:before{content:"\f0c4"}
|
3929 |
-
.nc-glyph-shake:before{content:"\f0c5"}
|
3930 |
-
.nc-glyph-shaker:before{content:"\f0c6"}
|
3931 |
-
.nc-glyph-shape-adjust:before{content:"\f0c7"}
|
3932 |
-
.nc-glyph-shape-arrow:before{content:"\f0c8"}
|
3933 |
-
.nc-glyph-shape-circle:before{content:"\f0c9"}
|
3934 |
-
.nc-glyph-shape-custom:before{content:"\f0ca"}
|
3935 |
-
.nc-glyph-shape-line:before{content:"\f0cb"}
|
3936 |
-
.nc-glyph-shape-oval:before{content:"\f0cc"}
|
3937 |
-
.nc-glyph-shape-polygon-2:before{content:"\f0cd"}
|
3938 |
-
.nc-glyph-shape-polygon:before{content:"\f0ce"}
|
3939 |
-
.nc-glyph-shape-rectangle:before{content:"\f0cf"}
|
3940 |
-
.nc-glyph-shape-square:before{content:"\f0d0"}
|
3941 |
-
.nc-glyph-shape-star:before{content:"\f0d1"}
|
3942 |
-
.nc-glyph-shape-triangle-2:before{content:"\f0d2"}
|
3943 |
-
.nc-glyph-shape-triangle:before{content:"\f0d3"}
|
3944 |
-
.nc-glyph-shapes:before{content:"\f0d4"}
|
3945 |
-
.nc-glyph-share-2:before{content:"\f0d5"}
|
3946 |
-
.nc-glyph-share-66:before{content:"\f0d6"}
|
3947 |
-
.nc-glyph-share-91:before{content:"\f0d7"}
|
3948 |
-
.nc-glyph-share-92:before{content:"\f0d8"}
|
3949 |
-
.nc-glyph-share-bold:before{content:"\f0d9"}
|
3950 |
-
.nc-glyph-share-left:before{content:"\f0da"}
|
3951 |
-
.nc-glyph-share-right:before{content:"\f0db"}
|
3952 |
-
.nc-glyph-share:before{content:"\f0dc"}
|
3953 |
-
.nc-glyph-shared:before{content:"\f0dd"}
|
3954 |
-
.nc-glyph-shark-2:before{content:"\f0de"}
|
3955 |
-
.nc-glyph-shark:before{content:"\f0df"}
|
3956 |
-
.nc-glyph-sharpener:before{content:"\f0e0"}
|
3957 |
-
.nc-glyph-sheep:before{content:"\f0e1"}
|
3958 |
-
.nc-glyph-shirt-business:before{content:"\f0e2"}
|
3959 |
-
.nc-glyph-shirt-buttons:before{content:"\f0e3"}
|
3960 |
-
.nc-glyph-shirt-neck:before{content:"\f0e4"}
|
3961 |
-
.nc-glyph-shirt:before{content:"\f0e5"}
|
3962 |
-
.nc-glyph-shoe-man:before{content:"\f0e6"}
|
3963 |
-
.nc-glyph-shoe-run:before{content:"\f0e7"}
|
3964 |
-
.nc-glyph-shoe-sport:before{content:"\f0e8"}
|
3965 |
-
.nc-glyph-shoe-woman:before{content:"\f0e9"}
|
3966 |
-
.nc-glyph-shop-location:before{content:"\f0ea"}
|
3967 |
-
.nc-glyph-shop:before{content:"\f0eb"}
|
3968 |
-
.nc-glyph-shovel:before{content:"\f0ec"}
|
3969 |
-
.nc-glyph-shower:before{content:"\f0ed"}
|
3970 |
-
.nc-glyph-shrimp:before{content:"\f0ee"}
|
3971 |
-
.nc-glyph-shuffle-01:before{content:"\f0ef"}
|
3972 |
-
.nc-glyph-shuffle-35:before{content:"\f0f0"}
|
3973 |
-
.nc-glyph-shuffle-97:before{content:"\f0f1"}
|
3974 |
-
.nc-glyph-shuffle-98:before{content:"\f0f2"}
|
3975 |
-
.nc-glyph-shy:before{content:"\f0f3"}
|
3976 |
-
.nc-glyph-sick:before{content:"\f0f4"}
|
3977 |
-
.nc-glyph-sickle:before{content:"\f0f5"}
|
3978 |
-
.nc-glyph-sidebar:before{content:"\f0f6"}
|
3979 |
-
.nc-glyph-sign-board:before{content:"\f0f7"}
|
3980 |
-
.nc-glyph-sign:before{content:"\f0f8"}
|
3981 |
-
.nc-glyph-signal-2:before{content:"\f0f9"}
|
3982 |
-
.nc-glyph-signal:before{content:"\f0fa"}
|
3983 |
-
.nc-glyph-signature:before{content:"\f0fb"}
|
3984 |
-
.nc-glyph-silly:before{content:"\f0fc"}
|
3985 |
-
.nc-glyph-sim-card:before{content:"\f0fd"}
|
3986 |
-
.nc-glyph-simple-add:before{content:"\f0fe"}
|
3987 |
-
.nc-glyph-simple-delete:before{content:"\f0ff"}
|
3988 |
-
.nc-glyph-simple-down:before{content:"\f100"}
|
3989 |
-
.nc-glyph-simple-left:before{content:"\f101"}
|
3990 |
-
.nc-glyph-simple-remove:before{content:"\f102"}
|
3991 |
-
.nc-glyph-simple-right:before{content:"\f103"}
|
3992 |
-
.nc-glyph-simple-up:before{content:"\f104"}
|
3993 |
-
.nc-glyph-single-01:before{content:"\f105"}
|
3994 |
-
.nc-glyph-single-02:before{content:"\f106"}
|
3995 |
-
.nc-glyph-single-03:before{content:"\f107"}
|
3996 |
-
.nc-glyph-single-04:before{content:"\f108"}
|
3997 |
-
.nc-glyph-single-05:before{content:"\f109"}
|
3998 |
-
.nc-glyph-single-body:before{content:"\f10a"}
|
3999 |
-
.nc-glyph-single-content-02:before{content:"\f10b"}
|
4000 |
-
.nc-glyph-single-content-03:before{content:"\f10c"}
|
4001 |
-
.nc-glyph-single-copies:before{content:"\f10d"}
|
4002 |
-
.nc-glyph-single-copy-04:before{content:"\f10e"}
|
4003 |
-
.nc-glyph-single-copy-06:before{content:"\f10f"}
|
4004 |
-
.nc-glyph-single-folded-content:before{content:"\f110"}
|
4005 |
-
.nc-glyph-single-folded:before{content:"\f111"}
|
4006 |
-
.nc-glyph-single-paragraph:before{content:"\f112"}
|
4007 |
-
.nc-glyph-single-position:before{content:"\f113"}
|
4008 |
-
.nc-glyph-single:before{content:"\f114"}
|
4009 |
-
.nc-glyph-sink-wash:before{content:"\f115"}
|
4010 |
-
.nc-glyph-sink:before{content:"\f116"}
|
4011 |
-
.nc-glyph-size-large:before{content:"\f117"}
|
4012 |
-
.nc-glyph-size-medium:before{content:"\f118"}
|
4013 |
-
.nc-glyph-size-small:before{content:"\f119"}
|
4014 |
-
.nc-glyph-size:before{content:"\f11a"}
|
4015 |
-
.nc-glyph-skateboard-2:before{content:"\f11b"}
|
4016 |
-
.nc-glyph-skateboard:before{content:"\f11c"}
|
4017 |
-
.nc-glyph-skew-down:before{content:"\f11d"}
|
4018 |
-
.nc-glyph-skew-left:before{content:"\f11e"}
|
4019 |
-
.nc-glyph-skew-right:before{content:"\f11f"}
|
4020 |
-
.nc-glyph-skew-up:before{content:"\f120"}
|
4021 |
-
.nc-glyph-skirt:before{content:"\f121"}
|
4022 |
-
.nc-glyph-skull-2:before{content:"\f122"}
|
4023 |
-
.nc-glyph-skull:before{content:"\f123"}
|
4024 |
-
.nc-glyph-slacks-12:before{content:"\f124"}
|
4025 |
-
.nc-glyph-slacks-13:before{content:"\f125"}
|
4026 |
-
.nc-glyph-sleep-2:before{content:"\f126"}
|
4027 |
-
.nc-glyph-sleep:before{content:"\f127"}
|
4028 |
-
.nc-glyph-slice:before{content:"\f128"}
|
4029 |
-
.nc-glyph-slide-left:before{content:"\f129"}
|
4030 |
-
.nc-glyph-slide-right:before{content:"\f12a"}
|
4031 |
-
.nc-glyph-slider:before{content:"\f12b"}
|
4032 |
-
.nc-glyph-sloth:before{content:"\f12c"}
|
4033 |
-
.nc-glyph-small-add:before{content:"\f12d"}
|
4034 |
-
.nc-glyph-small-delete:before{content:"\f12e"}
|
4035 |
-
.nc-glyph-small-down:before{content:"\f12f"}
|
4036 |
-
.nc-glyph-small-left:before{content:"\f130"}
|
4037 |
-
.nc-glyph-small-remove:before{content:"\f131"}
|
4038 |
-
.nc-glyph-small-right:before{content:"\f132"}
|
4039 |
-
.nc-glyph-small-triangle-down:before{content:"\f133"}
|
4040 |
-
.nc-glyph-small-triangle-left:before{content:"\f134"}
|
4041 |
-
.nc-glyph-small-triangle-right:before{content:"\f135"}
|
4042 |
-
.nc-glyph-small-triangle-up:before{content:"\f136"}
|
4043 |
-
.nc-glyph-small-up:before{content:"\f137"}
|
4044 |
-
.nc-glyph-smart:before{content:"\f138"}
|
4045 |
-
.nc-glyph-smile:before{content:"\f139"}
|
4046 |
-
.nc-glyph-smoothie:before{content:"\f13a"}
|
4047 |
-
.nc-glyph-snack:before{content:"\f13b"}
|
4048 |
-
.nc-glyph-snake:before{content:"\f13c"}
|
4049 |
-
.nc-glyph-snow-ball:before{content:"\f13d"}
|
4050 |
-
.nc-glyph-snow:before{content:"\f13e"}
|
4051 |
-
.nc-glyph-snowboard:before{content:"\f13f"}
|
4052 |
-
.nc-glyph-snowman-head:before{content:"\f140"}
|
4053 |
-
.nc-glyph-snowman:before{content:"\f141"}
|
4054 |
-
.nc-glyph-soak:before{content:"\f142"}
|
4055 |
-
.nc-glyph-soccer-field:before{content:"\f143"}
|
4056 |
-
.nc-glyph-sock:before{content:"\f144"}
|
4057 |
-
.nc-glyph-socket-europe-1:before{content:"\f145"}
|
4058 |
-
.nc-glyph-socket-europe-2:before{content:"\f146"}
|
4059 |
-
.nc-glyph-socket-uk:before{content:"\f147"}
|
4060 |
-
.nc-glyph-socket:before{content:"\f148"}
|
4061 |
-
.nc-glyph-sofa:before{content:"\f149"}
|
4062 |
-
.nc-glyph-soldier:before{content:"\f14a"}
|
4063 |
-
.nc-glyph-sound-wave:before{content:"\f14b"}
|
4064 |
-
.nc-glyph-soup:before{content:"\f14c"}
|
4065 |
-
.nc-glyph-soy-sauce:before{content:"\f14d"}
|
4066 |
-
.nc-glyph-spa:before{content:"\f14e"}
|
4067 |
-
.nc-glyph-spaceship:before{content:"\f14f"}
|
4068 |
-
.nc-glyph-speaker-01:before{content:"\f150"}
|
4069 |
-
.nc-glyph-speaker-05:before{content:"\f151"}
|
4070 |
-
.nc-glyph-speaker:before{content:"\f152"}
|
4071 |
-
.nc-glyph-speechless:before{content:"\f153"}
|
4072 |
-
.nc-glyph-spider:before{content:"\f154"}
|
4073 |
-
.nc-glyph-spiteful:before{content:"\f155"}
|
4074 |
-
.nc-glyph-split-33:before{content:"\f156"}
|
4075 |
-
.nc-glyph-split-37:before{content:"\f157"}
|
4076 |
-
.nc-glyph-split-horizontal:before{content:"\f158"}
|
4077 |
-
.nc-glyph-split-round:before{content:"\f159"}
|
4078 |
-
.nc-glyph-split-vertical:before{content:"\f15a"}
|
4079 |
-
.nc-glyph-split:before{content:"\f15b"}
|
4080 |
-
.nc-glyph-sport:before{content:"\f15c"}
|
4081 |
-
.nc-glyph-spray-2:before{content:"\f15d"}
|
4082 |
-
.nc-glyph-spray:before{content:"\f15e"}
|
4083 |
-
.nc-glyph-square-add-08:before{content:"\f15f"}
|
4084 |
-
.nc-glyph-square-add-11:before{content:"\f160"}
|
4085 |
-
.nc-glyph-square-corner-down-left:before{content:"\f161"}
|
4086 |
-
.nc-glyph-square-corner-down-right:before{content:"\f162"}
|
4087 |
-
.nc-glyph-square-corner-up-left:before{content:"\f163"}
|
4088 |
-
.nc-glyph-square-corner-up-right:before{content:"\f164"}
|
4089 |
-
.nc-glyph-square-delete-10:before{content:"\f165"}
|
4090 |
-
.nc-glyph-square-delete-13:before{content:"\f166"}
|
4091 |
-
.nc-glyph-square-down-06:before{content:"\f167"}
|
4092 |
-
.nc-glyph-square-down:before{content:"\f168"}
|
4093 |
-
.nc-glyph-square-download:before{content:"\f169"}
|
4094 |
-
.nc-glyph-square-left-04:before{content:"\f16a"}
|
4095 |
-
.nc-glyph-square-left:before{content:"\f16b"}
|
4096 |
-
.nc-glyph-square-marker:before{content:"\f16c"}
|
4097 |
-
.nc-glyph-square-pin:before{content:"\f16d"}
|
4098 |
-
.nc-glyph-square-remove-09:before{content:"\f16e"}
|
4099 |
-
.nc-glyph-square-remove-12:before{content:"\f16f"}
|
4100 |
-
.nc-glyph-square-right-03:before{content:"\f170"}
|
4101 |
-
.nc-glyph-square-right:before{content:"\f171"}
|
4102 |
-
.nc-glyph-square-simple-down:before{content:"\f172"}
|
4103 |
-
.nc-glyph-square-simple-left:before{content:"\f173"}
|
4104 |
-
.nc-glyph-square-simple-right:before{content:"\f174"}
|
4105 |
-
.nc-glyph-square-simple-up:before{content:"\f175"}
|
4106 |
-
.nc-glyph-square-up-05:before{content:"\f176"}
|
4107 |
-
.nc-glyph-square-up:before{content:"\f177"}
|
4108 |
-
.nc-glyph-square-upload:before{content:"\f178"}
|
4109 |
-
.nc-glyph-squares:before{content:"\f179"}
|
4110 |
-
.nc-glyph-stamp:before{content:"\f17a"}
|
4111 |
-
.nc-glyph-standing-man:before{content:"\f17b"}
|
4112 |
-
.nc-glyph-standing-woman:before{content:"\f17c"}
|
4113 |
-
.nc-glyph-star:before{content:"\f17d"}
|
4114 |
-
.nc-glyph-steak-2:before{content:"\f17e"}
|
4115 |
-
.nc-glyph-steak:before{content:"\f17f"}
|
4116 |
-
.nc-glyph-steering-wheel:before{content:"\f180"}
|
4117 |
-
.nc-glyph-steps:before{content:"\f181"}
|
4118 |
-
.nc-glyph-stock-2:before{content:"\f182"}
|
4119 |
-
.nc-glyph-stock:before{content:"\f183"}
|
4120 |
-
.nc-glyph-storage-hanger:before{content:"\f184"}
|
4121 |
-
.nc-glyph-storage:before{content:"\f185"}
|
4122 |
-
.nc-glyph-store:before{content:"\f186"}
|
4123 |
-
.nc-glyph-strategy:before{content:"\f187"}
|
4124 |
-
.nc-glyph-strawberry:before{content:"\f188"}
|
4125 |
-
.nc-glyph-stre-down:before{content:"\f189"}
|
4126 |
-
.nc-glyph-stre-left:before{content:"\f18a"}
|
4127 |
-
.nc-glyph-stre-right:before{content:"\f18b"}
|
4128 |
-
.nc-glyph-stre-up:before{content:"\f18c"}
|
4129 |
-
.nc-glyph-stretch:before{content:"\f18d"}
|
4130 |
-
.nc-glyph-strikethrough:before{content:"\f18e"}
|
4131 |
-
.nc-glyph-strong-down:before{content:"\f18f"}
|
4132 |
-
.nc-glyph-strong-left:before{content:"\f190"}
|
4133 |
-
.nc-glyph-strong-right:before{content:"\f191"}
|
4134 |
-
.nc-glyph-strong-up:before{content:"\f192"}
|
4135 |
-
.nc-glyph-subscript:before{content:"\f193"}
|
4136 |
-
.nc-glyph-subtitles:before{content:"\f194"}
|
4137 |
-
.nc-glyph-sugar:before{content:"\f195"}
|
4138 |
-
.nc-glyph-sun-cloud-drop:before{content:"\f196"}
|
4139 |
-
.nc-glyph-sun-cloud-fog:before{content:"\f197"}
|
4140 |
-
.nc-glyph-sun-cloud-hail:before{content:"\f198"}
|
4141 |
-
.nc-glyph-sun-cloud-light:before{content:"\f199"}
|
4142 |
-
.nc-glyph-sun-cloud-rain:before{content:"\f19a"}
|
4143 |
-
.nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}
|
4144 |
-
.nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}
|
4145 |
-
.nc-glyph-sun-cloud:before{content:"\f19d"}
|
4146 |
-
.nc-glyph-sun-fog-29:before{content:"\f19e"}
|
4147 |
-
.nc-glyph-sun-fog-30:before{content:"\f19f"}
|
4148 |
-
.nc-glyph-sun-fog-43:before{content:"\f1a0"}
|
4149 |
-
.nc-glyph-sunglasses-48:before{content:"\f1a1"}
|
4150 |
-
.nc-glyph-sunglasses-49:before{content:"\f1a2"}
|
4151 |
-
.nc-glyph-sunglasses:before{content:"\f1a3"}
|
4152 |
-
.nc-glyph-superscript:before{content:"\f1a4"}
|
4153 |
-
.nc-glyph-supplement:before{content:"\f1a5"}
|
4154 |
-
.nc-glyph-support-16:before{content:"\f1a6"}
|
4155 |
-
.nc-glyph-support-17:before{content:"\f1a7"}
|
4156 |
-
.nc-glyph-surf-2:before{content:"\f1a8"}
|
4157 |
-
.nc-glyph-surf:before{content:"\f1a9"}
|
4158 |
-
.nc-glyph-surprise:before{content:"\f1aa"}
|
4159 |
-
.nc-glyph-sushi:before{content:"\f1ab"}
|
4160 |
-
.nc-glyph-swap-horizontal:before{content:"\f1ac"}
|
4161 |
-
.nc-glyph-swap-vertical:before{content:"\f1ad"}
|
4162 |
-
.nc-glyph-swimsuit:before{content:"\f1ae"}
|
4163 |
-
.nc-glyph-swimwear:before{content:"\f1af"}
|
4164 |
-
.nc-glyph-swipe-bottom:before{content:"\f1b0"}
|
4165 |
-
.nc-glyph-swipe-left:before{content:"\f1b1"}
|
4166 |
-
.nc-glyph-swipe-right:before{content:"\f1b2"}
|
4167 |
-
.nc-glyph-swipe-up:before{content:"\f1b3"}
|
4168 |
-
.nc-glyph-swiss-knife:before{content:"\f1b4"}
|
4169 |
-
.nc-glyph-sync:before{content:"\f1b5"}
|
4170 |
-
.nc-glyph-syringe:before{content:"\f1b6"}
|
4171 |
-
.nc-glyph-system-update:before{content:"\f1b7"}
|
4172 |
-
.nc-glyph-table-left:before{content:"\f1b8"}
|
4173 |
-
.nc-glyph-table-right:before{content:"\f1b9"}
|
4174 |
-
.nc-glyph-table:before{content:"\f1ba"}
|
4175 |
-
.nc-glyph-tablet-2:before{content:"\f1bb"}
|
4176 |
-
.nc-glyph-tablet-button:before{content:"\f1bc"}
|
4177 |
-
.nc-glyph-tablet-mobile:before{content:"\f1bd"}
|
4178 |
-
.nc-glyph-tablet-reader-31:before{content:"\f1be"}
|
4179 |
-
.nc-glyph-tablet-reader-42:before{content:"\f1bf"}
|
4180 |
-
.nc-glyph-tablet-toolbar:before{content:"\f1c0"}
|
4181 |
-
.nc-glyph-tablet:before{content:"\f1c1"}
|
4182 |
-
.nc-glyph-tacos:before{content:"\f1c2"}
|
4183 |
-
.nc-glyph-tactic:before{content:"\f1c3"}
|
4184 |
-
.nc-glyph-tag-2:before{content:"\f1c4"}
|
4185 |
-
.nc-glyph-tag-add:before{content:"\f1c5"}
|
4186 |
-
.nc-glyph-tag-check:before{content:"\f1c6"}
|
4187 |
-
.nc-glyph-tag-content:before{content:"\f1c7"}
|
4188 |
-
.nc-glyph-tag-cut:before{content:"\f1c8"}
|
4189 |
-
.nc-glyph-tag-line:before{content:"\f1c9"}
|
4190 |
-
.nc-glyph-tag-loyalty:before{content:"\f1ca"}
|
4191 |
-
.nc-glyph-tag-remove:before{content:"\f1cb"}
|
4192 |
-
.nc-glyph-tag-sale:before{content:"\f1cc"}
|
4193 |
-
.nc-glyph-tag:before{content:"\f1cd"}
|
4194 |
-
.nc-glyph-tail-down:before{content:"\f1ce"}
|
4195 |
-
.nc-glyph-tail-left:before{content:"\f1cf"}
|
4196 |
-
.nc-glyph-tail-right:before{content:"\f1d0"}
|
4197 |
-
.nc-glyph-tail-triangle-down:before{content:"\f1d1"}
|
4198 |
-
.nc-glyph-tail-triangle-left:before{content:"\f1d2"}
|
4199 |
-
.nc-glyph-tail-triangle-right:before{content:"\f1d3"}
|
4200 |
-
.nc-glyph-tail-triangle-up:before{content:"\f1d4"}
|
4201 |
-
.nc-glyph-tail-up:before{content:"\f1d5"}
|
4202 |
-
.nc-glyph-tap-01:before{content:"\f1d6"}
|
4203 |
-
.nc-glyph-tap-02:before{content:"\f1d7"}
|
4204 |
-
.nc-glyph-tape:before{content:"\f1d8"}
|
4205 |
-
.nc-glyph-target:before{content:"\f1d9"}
|
4206 |
-
.nc-glyph-tea-bag:before{content:"\f1da"}
|
4207 |
-
.nc-glyph-tea:before{content:"\f1db"}
|
4208 |
-
.nc-glyph-temperature-23:before{content:"\f1dc"}
|
4209 |
-
.nc-glyph-temperature-24:before{content:"\f1dd"}
|
4210 |
-
.nc-glyph-temple-25:before{content:"\f1de"}
|
4211 |
-
.nc-glyph-tennis-ball:before{content:"\f1df"}
|
4212 |
-
.nc-glyph-tennis:before{content:"\f1e0"}
|
4213 |
-
.nc-glyph-terrace:before{content:"\f1e1"}
|
4214 |
-
.nc-glyph-text-2:before{content:"\f1e2"}
|
4215 |
-
.nc-glyph-text:before{content:"\f1e3"}
|
4216 |
-
.nc-glyph-texture:before{content:"\f1e4"}
|
4217 |
-
.nc-glyph-ticket-75:before{content:"\f1e5"}
|
4218 |
-
.nc-glyph-ticket-76:before{content:"\f1e6"}
|
4219 |
-
.nc-glyph-tie-01:before{content:"\f1e7"}
|
4220 |
-
.nc-glyph-tie-02:before{content:"\f1e8"}
|
4221 |
-
.nc-glyph-tie-bow:before{content:"\f1e9"}
|
4222 |
-
.nc-glyph-tile-55:before{content:"\f1ea"}
|
4223 |
-
.nc-glyph-time-2:before{content:"\f1eb"}
|
4224 |
-
.nc-glyph-time-3:before{content:"\f1ec"}
|
4225 |
-
.nc-glyph-time-alarm:before{content:"\f1ed"}
|
4226 |
-
.nc-glyph-time-clock:before{content:"\f1ee"}
|
4227 |
-
.nc-glyph-time-countdown:before{content:"\f1ef"}
|
4228 |
-
.nc-glyph-time:before{content:"\f1f0"}
|
4229 |
-
.nc-glyph-timeline:before{content:"\f1f1"}
|
4230 |
-
.nc-glyph-timer:before{content:"\f1f2"}
|
4231 |
-
.nc-glyph-todo:before{content:"\f1f3"}
|
4232 |
-
.nc-glyph-toilet-paper:before{content:"\f1f4"}
|
4233 |
-
.nc-glyph-toilet:before{content:"\f1f5"}
|
4234 |
-
.nc-glyph-tomato:before{content:"\f1f6"}
|
4235 |
-
.nc-glyph-tool-blur:before{content:"\f1f7"}
|
4236 |
-
.nc-glyph-tool-hand:before{content:"\f1f8"}
|
4237 |
-
.nc-glyph-tool-select:before{content:"\f1f9"}
|
4238 |
-
.nc-glyph-tooth:before{content:"\f1fa"}
|
4239 |
-
.nc-glyph-touch:before{content:"\f1fb"}
|
4240 |
-
.nc-glyph-track-delivery:before{content:"\f1fc"}
|
4241 |
-
.nc-glyph-tracking:before{content:"\f1fd"}
|
4242 |
-
.nc-glyph-tractor:before{content:"\f1fe"}
|
4243 |
-
.nc-glyph-train-speed:before{content:"\f1ff"}
|
4244 |
-
.nc-glyph-train:before{content:"\f200"}
|
4245 |
-
.nc-glyph-tram:before{content:"\f201"}
|
4246 |
-
.nc-glyph-transform-2d:before{content:"\f202"}
|
4247 |
-
.nc-glyph-transform-origin:before{content:"\f203"}
|
4248 |
-
.nc-glyph-transform:before{content:"\f204"}
|
4249 |
-
.nc-glyph-transparent:before{content:"\f205"}
|
4250 |
-
.nc-glyph-trash-round:before{content:"\f206"}
|
4251 |
-
.nc-glyph-trash-simple:before{content:"\f207"}
|
4252 |
-
.nc-glyph-trash:before{content:"\f208"}
|
4253 |
-
.nc-glyph-treasure-map-21:before{content:"\f209"}
|
4254 |
-
.nc-glyph-treasure-map-40:before{content:"\f20a"}
|
4255 |
-
.nc-glyph-tree-01:before{content:"\f20b"}
|
4256 |
-
.nc-glyph-tree-02:before{content:"\f20c"}
|
4257 |
-
.nc-glyph-tree-03:before{content:"\f20d"}
|
4258 |
-
.nc-glyph-tree-ball:before{content:"\f20e"}
|
4259 |
-
.nc-glyph-tree:before{content:"\f20f"}
|
4260 |
-
.nc-glyph-trend-down:before{content:"\f210"}
|
4261 |
-
.nc-glyph-trend-up:before{content:"\f211"}
|
4262 |
-
.nc-glyph-triangle-down-20:before{content:"\f212"}
|
4263 |
-
.nc-glyph-triangle-down-65:before{content:"\f213"}
|
4264 |
-
.nc-glyph-triangle-down:before{content:"\f214"}
|
4265 |
-
.nc-glyph-triangle-left-18:before{content:"\f215"}
|
4266 |
-
.nc-glyph-triangle-left-63:before{content:"\f216"}
|
4267 |
-
.nc-glyph-triangle-left:before{content:"\f217"}
|
4268 |
-
.nc-glyph-triangle-right-17:before{content:"\f218"}
|
4269 |
-
.nc-glyph-triangle-right-62:before{content:"\f219"}
|
4270 |
-
.nc-glyph-triangle-right:before{content:"\f21a"}
|
4271 |
-
.nc-glyph-triangle-up-19:before{content:"\f21b"}
|
4272 |
-
.nc-glyph-triangle-up-64:before{content:"\f21c"}
|
4273 |
-
.nc-glyph-triangle-up:before{content:"\f21d"}
|
4274 |
-
.nc-glyph-tripod:before{content:"\f21e"}
|
4275 |
-
.nc-glyph-trolley:before{content:"\f21f"}
|
4276 |
-
.nc-glyph-trophy:before{content:"\f220"}
|
4277 |
-
.nc-glyph-truck-front:before{content:"\f221"}
|
4278 |
-
.nc-glyph-trunk:before{content:"\f222"}
|
4279 |
-
.nc-glyph-tshirt-53:before{content:"\f223"}
|
4280 |
-
.nc-glyph-tshirt-54:before{content:"\f224"}
|
4281 |
-
.nc-glyph-tshirt-sport:before{content:"\f225"}
|
4282 |
-
.nc-glyph-turtle:before{content:"\f226"}
|
4283 |
-
.nc-glyph-tv-2:before{content:"\f227"}
|
4284 |
-
.nc-glyph-tv-old:before{content:"\f228"}
|
4285 |
-
.nc-glyph-tv:before{content:"\f229"}
|
4286 |
-
.nc-glyph-twitch:before{content:"\f22a"}
|
4287 |
-
.nc-glyph-ui-03:before{content:"\f22b"}
|
4288 |
-
.nc-glyph-ui-04:before{content:"\f22c"}
|
4289 |
-
.nc-glyph-umbrella-13:before{content:"\f22d"}
|
4290 |
-
.nc-glyph-umbrella-14:before{content:"\f22e"}
|
4291 |
-
.nc-glyph-underline:before{content:"\f22f"}
|
4292 |
-
.nc-glyph-underwear-man:before{content:"\f230"}
|
4293 |
-
.nc-glyph-underwear:before{content:"\f231"}
|
4294 |
-
.nc-glyph-undo-25:before{content:"\f233"}
|
4295 |
-
.nc-glyph-undo-29:before{content:"\f232"}
|
4296 |
-
.nc-glyph-ungroup:before{content:"\f234"}
|
4297 |
-
.nc-glyph-unite-round:before{content:"\f235"}
|
4298 |
-
.nc-glyph-unite:before{content:"\f236"}
|
4299 |
-
.nc-glyph-upload-2:before{content:"\f237"}
|
4300 |
-
.nc-glyph-upload:before{content:"\f238"}
|
4301 |
-
.nc-glyph-upset-13:before{content:"\f239"}
|
4302 |
-
.nc-glyph-upset-14:before{content:"\f23a"}
|
4303 |
-
.nc-glyph-usb:before{content:"\f23b"}
|
4304 |
-
.nc-glyph-user-balance:before{content:"\f23c"}
|
4305 |
-
.nc-glyph-user-climb:before{content:"\f23d"}
|
4306 |
-
.nc-glyph-user-frame-31:before{content:"\f23e"}
|
4307 |
-
.nc-glyph-user-frame-32:before{content:"\f23f"}
|
4308 |
-
.nc-glyph-user-frame-33:before{content:"\f240"}
|
4309 |
-
.nc-glyph-user-meditation:before{content:"\f241"}
|
4310 |
-
.nc-glyph-user-run:before{content:"\f242"}
|
4311 |
-
.nc-glyph-user-snowboard:before{content:"\f243"}
|
4312 |
-
.nc-glyph-user-swim:before{content:"\f244"}
|
4313 |
-
.nc-glyph-user:before{content:"\f245"}
|
4314 |
-
.nc-glyph-vampire:before{content:"\f246"}
|
4315 |
-
.nc-glyph-vector-2:before{content:"\f247"}
|
4316 |
-
.nc-glyph-vector:before{content:"\f248"}
|
4317 |
-
.nc-glyph-vegan:before{content:"\f249"}
|
4318 |
-
.nc-glyph-ventilation:before{content:"\f24a"}
|
4319 |
-
.nc-glyph-vespa-front:before{content:"\f24b"}
|
4320 |
-
.nc-glyph-vespa:before{content:"\f24c"}
|
4321 |
-
.nc-glyph-vest-31:before{content:"\f24d"}
|
4322 |
-
.nc-glyph-vest-sport:before{content:"\f24e"}
|
4323 |
-
.nc-glyph-vest:before{content:"\f24f"}
|
4324 |
-
.nc-glyph-video-64:before{content:"\f250"}
|
4325 |
-
.nc-glyph-video-65:before{content:"\f251"}
|
4326 |
-
.nc-glyph-video-66:before{content:"\f252"}
|
4327 |
-
.nc-glyph-video-67:before{content:"\f253"}
|
4328 |
-
.nc-glyph-videocamera-71:before{content:"\f254"}
|
4329 |
-
.nc-glyph-videocamera-72:before{content:"\f255"}
|
4330 |
-
.nc-glyph-virus:before{content:"\f256"}
|
4331 |
-
.nc-glyph-voice-record:before{content:"\f257"}
|
4332 |
-
.nc-glyph-volleyball:before{content:"\f258"}
|
4333 |
-
.nc-glyph-volume-93:before{content:"\f259"}
|
4334 |
-
.nc-glyph-volume-97:before{content:"\f25a"}
|
4335 |
-
.nc-glyph-volume-98:before{content:"\f25b"}
|
4336 |
-
.nc-glyph-volume-ban:before{content:"\f25c"}
|
4337 |
-
.nc-glyph-volume-down:before{content:"\f25d"}
|
4338 |
-
.nc-glyph-volume-off:before{content:"\f25e"}
|
4339 |
-
.nc-glyph-volume-up:before{content:"\f25f"}
|
4340 |
-
.nc-glyph-vpn:before{content:"\f260"}
|
4341 |
-
.nc-glyph-waffle:before{content:"\f261"}
|
4342 |
-
.nc-glyph-walk:before{content:"\f262"}
|
4343 |
-
.nc-glyph-wallet-43:before{content:"\f263"}
|
4344 |
-
.nc-glyph-wallet-44:before{content:"\f264"}
|
4345 |
-
.nc-glyph-wallet-90:before{content:"\f265"}
|
4346 |
-
.nc-glyph-wallet:before{content:"\f266"}
|
4347 |
-
.nc-glyph-wand-11:before{content:"\f267"}
|
4348 |
-
.nc-glyph-wardrobe:before{content:"\f268"}
|
4349 |
-
.nc-glyph-wash-2:before{content:"\f269"}
|
4350 |
-
.nc-glyph-wash-30:before{content:"\f26a"}
|
4351 |
-
.nc-glyph-wash-60:before{content:"\f26b"}
|
4352 |
-
.nc-glyph-wash-90:before{content:"\f26c"}
|
4353 |
-
.nc-glyph-wash-hand:before{content:"\f26d"}
|
4354 |
-
.nc-glyph-wash:before{content:"\f26e"}
|
4355 |
-
.nc-glyph-washing-fluid:before{content:"\f26f"}
|
4356 |
-
.nc-glyph-waste-danger:before{content:"\f270"}
|
4357 |
-
.nc-glyph-waste-recycling:before{content:"\f272"}
|
4358 |
-
.nc-glyph-waste:before{content:"\f271"}
|
4359 |
-
.nc-glyph-watch-circle:before{content:"\f273"}
|
4360 |
-
.nc-glyph-watch-dev:before{content:"\f274"}
|
4361 |
-
.nc-glyph-watch-time:before{content:"\f275"}
|
4362 |
-
.nc-glyph-watch:before{content:"\f276"}
|
4363 |
-
.nc-glyph-water-hand:before{content:"\f277"}
|
4364 |
-
.nc-glyph-water-sink:before{content:"\f278"}
|
4365 |
-
.nc-glyph-water:before{content:"\f279"}
|
4366 |
-
.nc-glyph-watermelon:before{content:"\f27a"}
|
4367 |
-
.nc-glyph-wc:before{content:"\f27b"}
|
4368 |
-
.nc-glyph-web-design:before{content:"\f27c"}
|
4369 |
-
.nc-glyph-webcam-38:before{content:"\f27d"}
|
4370 |
-
.nc-glyph-webcam-39:before{content:"\f27e"}
|
4371 |
-
.nc-glyph-webpage-2:before{content:"\f27f"}
|
4372 |
-
.nc-glyph-webpage:before{content:"\f280"}
|
4373 |
-
.nc-glyph-weed:before{content:"\f281"}
|
4374 |
-
.nc-glyph-weight:before{content:"\f282"}
|
4375 |
-
.nc-glyph-what:before{content:"\f283"}
|
4376 |
-
.nc-glyph-wheel-2:before{content:"\f284"}
|
4377 |
-
.nc-glyph-wheel:before{content:"\f285"}
|
4378 |
-
.nc-glyph-wheelchair:before{content:"\f286"}
|
4379 |
-
.nc-glyph-whisk:before{content:"\f287"}
|
4380 |
-
.nc-glyph-whiskers:before{content:"\f288"}
|
4381 |
-
.nc-glyph-whistle:before{content:"\f289"}
|
4382 |
-
.nc-glyph-white-house:before{content:"\f28a"}
|
4383 |
-
.nc-glyph-widget:before{content:"\f28b"}
|
4384 |
-
.nc-glyph-wifi-2:before{content:"\f28c"}
|
4385 |
-
.nc-glyph-wifi-off:before{content:"\f28d"}
|
4386 |
-
.nc-glyph-wifi-protected:before{content:"\f28e"}
|
4387 |
-
.nc-glyph-wifi-router:before{content:"\f28f"}
|
4388 |
-
.nc-glyph-wifi:before{content:"\f290"}
|
4389 |
-
.nc-glyph-wind-2:before{content:"\f291"}
|
4390 |
-
.nc-glyph-wind:before{content:"\f292"}
|
4391 |
-
.nc-glyph-window-add:before{content:"\f293"}
|
4392 |
-
.nc-glyph-window-code:before{content:"\f294"}
|
4393 |
-
.nc-glyph-window-delete:before{content:"\f295"}
|
4394 |
-
.nc-glyph-window-dev:before{content:"\f296"}
|
4395 |
-
.nc-glyph-window-paragraph:before{content:"\f297"}
|
4396 |
-
.nc-glyph-window-responsive:before{content:"\f298"}
|
4397 |
-
.nc-glyph-window-zoom-in:before{content:"\f299"}
|
4398 |
-
.nc-glyph-window-zoom-out:before{content:"\f29a"}
|
4399 |
-
.nc-glyph-wine-list:before{content:"\f29b"}
|
4400 |
-
.nc-glyph-wink-06:before{content:"\f29c"}
|
4401 |
-
.nc-glyph-wink-11:before{content:"\f29d"}
|
4402 |
-
.nc-glyph-wink-69:before{content:"\f29e"}
|
4403 |
-
.nc-glyph-witch-hat:before{content:"\f29f"}
|
4404 |
-
.nc-glyph-wolf:before{content:"\f2a0"}
|
4405 |
-
.nc-glyph-woman-2:before{content:"\f2a1"}
|
4406 |
-
.nc-glyph-woman-21:before{content:"\f2a2"}
|
4407 |
-
.nc-glyph-woman-24:before{content:"\f2a3"}
|
4408 |
-
.nc-glyph-woman-25:before{content:"\f2a4"}
|
4409 |
-
.nc-glyph-woman-down:before{content:"\f2a5"}
|
4410 |
-
.nc-glyph-woman-man:before{content:"\f2a6"}
|
4411 |
-
.nc-glyph-woman-up:before{content:"\f2a7"}
|
4412 |
-
.nc-glyph-woman:before{content:"\f2a8"}
|
4413 |
-
.nc-glyph-wood:before{content:"\f2a9"}
|
4414 |
-
.nc-glyph-wool-ball:before{content:"\f2aa"}
|
4415 |
-
.nc-glyph-worl-marker:before{content:"\f2ab"}
|
4416 |
-
.nc-glyph-world-2:before{content:"\f2ac"}
|
4417 |
-
.nc-glyph-world-pin:before{content:"\f2ad"}
|
4418 |
-
.nc-glyph-world:before{content:"\f2ae"}
|
4419 |
-
.nc-glyph-yogurt:before{content:"\f2af"}
|
4420 |
-
.nc-glyph-zip-54:before{content:"\f2b0"}
|
4421 |
-
.nc-glyph-zip-55:before{content:"\f2b1"}
|
4422 |
-
.nc-glyph-zombie:before{content:"\f2b2"}
|
4423 |
-
.nc-glyph-zoom-100:before{content:"\f2b3"}
|
4424 |
-
.nc-glyph-zoom-2:before{content:"\f2b4"}
|
4425 |
-
.nc-glyph-zoom-88:before{content:"\f2b5"}
|
4426 |
-
.nc-glyph-zoom-99:before{content:"\f2b6"}
|
4427 |
-
.nc-glyph-zoom-bold-in:before{content:"\f2b7"}
|
4428 |
-
.nc-glyph-zoom-bold-out:before{content:"\f2b8"}
|
4429 |
-
.nc-glyph-zoom-bold:before{content:"\f2b9"}
|
4430 |
-
.nc-glyph-zoom-e:before{content:"\f2ba"}
|
4431 |
-
.nc-glyph-zoom-in:before{content:"\f2bb"}
|
4432 |
-
.nc-glyph-zoom-out:before{content:"\f2bc"}
|
4433 |
-
.nc-glyph-zoom-split-in:before{content:"\f2bd"}
|
4434 |
-
.nc-glyph-zoom-split-out:before{content:"\f2be"}
|
4435 |
-
.nc-glyph-zoom-split:before{content:"\f2bf"}
|
4436 |
-
.nc-glyph-zoom-triangles:before{content:"\f2c0"}
|
4437 |
-
.nc-glyph-zoom:before{content:"\f2c1"}
|
4438 |
-
.nc-icon{display:inline-block;font-size:24px;line-height:1;font-weight:400;font-style:normal;font-variant:normal;speak:none;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
4439 |
-
.nc-outline{font-family:"Nucleo Outline"}
|
4440 |
-
.nc-glyph{font-family:"Nucleo Glyph"}
|
4441 |
-
.nc-icon.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}
|
4442 |
-
.nc-icon.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
|
4443 |
-
.nc-icon.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
|
4444 |
-
.nc-icon.flip-y{-webkit-transform:scale(-1,1);transform:scale(-1,1)}
|
4445 |
-
.nc-icon.flip-x{-webkit-transform:scale(1,-1);transform:scale(1,-1)}
|
4446 |
.brz-ed-sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:move}
|
4447 |
.brz-ed-sorting *{pointer-events:none}
|
4448 |
.brz-ed-sorting .brz-ed-draggable{display:none}
|
@@ -4892,9 +456,9 @@ body.brz::after,body.brz::before{display:none}
|
|
4892 |
.brz .brz-blockquote{margin:0 0 1rem}
|
4893 |
.brz .brz-dfn{font-style:italic}
|
4894 |
.brz .brz-b,.brz .brz-strong{font-weight:700}
|
4895 |
-
.brz .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
|
4896 |
-
.brz .brz-a[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
|
4897 |
-
.brz .brz-a:active,.brz .brz-a:focus,.brz .brz-a:hover{outline:0}
|
4898 |
.brz .brz-a.brz-btn[href]{text-decoration:none}
|
4899 |
.brz .brz-figure{margin:0;min-width:auto;min-height:auto}
|
4900 |
.brz .brz-img{vertical-align:middle;border-style:none}
|
@@ -4912,6 +476,7 @@ body.brz::after,body.brz::before{display:none}
|
|
4912 |
.brz .brz-button{-webkit-appearance:button}
|
4913 |
.brz .brz-button::-moz-focus-inner{padding:0;border-style:none}
|
4914 |
.brz .brz-input[type=checkbox],.brz .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
|
|
|
4915 |
.brz .brz-input[type=date],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month],.brz .brz-input[type=time]{-webkit-appearance:listbox}
|
4916 |
.brz .brz-textarea{overflow:auto;resize:vertical}
|
4917 |
.brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
|
@@ -5547,14 +1112,20 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5547 |
.brz .brz-section__header--animated-opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;-webkit-transition:opacity .2s linear,-webkit-transform .2s linear;transition:opacity .2s linear,-webkit-transform .2s linear;transition:transform .2s linear,opacity .2s linear;transition:transform .2s linear,opacity .2s linear,-webkit-transform .2s linear}
|
5548 |
.brz .brz-section__header--fixed{position:relative;z-index:1050}
|
5549 |
.brz .brz-section__header--fixed-opened{position:fixed;z-index:1051;top:0;left:0;width:100%}
|
|
|
5550 |
@media (max-width:991px){.brz.brz-ed .brz-section__header--animated{padding-left:15px;padding-right:15px}}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}
|
5551 |
.brz .brz-container__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
5552 |
@media (max-width:991px){.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}.brz .brz-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
5553 |
-
.brz .brz-
|
|
|
|
|
5554 |
.brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
|
|
5555 |
.brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}
|
5556 |
.brz .brz-wrapper-clone__wrap{height:100%}
|
5557 |
.brz .brz-wrapper-clone__wrap>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
|
|
|
|
5558 |
.brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}
|
5559 |
.brz .brz-bg{position:relative}
|
5560 |
.brz .brz-bg-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}
|
@@ -5572,6 +1143,7 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5572 |
.brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}
|
5573 |
.brz .brz-btn:focus{text-decoration:none}
|
5574 |
.brz .brz-btn .brz-span{display:block}
|
|
|
5575 |
.brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
5576 |
.brz .buttons .brz-wrapper-clone__item{padding:10px}
|
5577 |
.brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;max-width:100%;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}
|
@@ -5583,19 +1155,24 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5583 |
.brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}
|
5584 |
.brz .brz-spacer{width:100%}
|
5585 |
.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}
|
5586 |
-
.brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100
|
|
|
5587 |
.brz .brz-icon-text .brz-icon__container{min-width:auto}
|
5588 |
.brz .brz-line{position:relative;line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}
|
5589 |
.brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0;background:0 0}
|
5590 |
.brz .brz-map{position:relative;width:100%;display:inline-block;vertical-align:middle}
|
|
|
|
|
5591 |
.brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
|
5592 |
.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%}
|
5593 |
.brz .brz-image .brz-img{max-width:100%;border-radius:inherit}
|
5594 |
.brz .brz-image .brz-a,.brz .brz-image picture{outline:0;border-radius:inherit}
|
|
|
5595 |
.brz .brz-ed-image__content{position:relative;width:100%}
|
5596 |
.brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}
|
5597 |
.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}
|
5598 |
.brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}
|
|
|
5599 |
.brz .brz-image-fix-1-1{padding-top:100%}
|
5600 |
.brz .brz-image-fix-2-1{padding-top:50%}
|
5601 |
.brz .brz-image-fix-2-3{padding-top:150%}
|
@@ -5609,6 +1186,8 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5609 |
.brz .mfp-wrap{z-index:1101}
|
5610 |
.brz .mfp-figure:after,.brz .mfp-iframe-scaler iframe{-webkit-box-shadow:0 0 40px rgba(0,0,0,.35);box-shadow:0 0 40px rgba(0,0,0,.35)}
|
5611 |
.brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}
|
|
|
|
|
5612 |
.brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
|
5613 |
.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}
|
5614 |
.brz .brz-video .brz-video__cover::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto;background-repeat:no-repeat}
|
@@ -5619,9 +1198,11 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5619 |
.brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
|
5620 |
.brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
|
5621 |
.brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:20px;height:auto;word-break:break-all;word-wrap:break-word}
|
|
|
5622 |
.brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
|
5623 |
.brz .brz-embed-code img{max-width:100%}
|
5624 |
-
.brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;
|
|
|
5625 |
.brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
|
5626 |
.brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none;padding-left:1em}
|
5627 |
.brz .brz-rich-text ol li:before,.brz .brz-rich-text ul li:before{margin-left:-1em}
|
@@ -5630,9 +1211,10 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5630 |
.brz .brz-rich-text ol li{counter-increment:number}
|
5631 |
.brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}
|
5632 |
.brz .brz-rich-text .ql-editor{white-space:pre-wrap}
|
5633 |
-
.brz .brz-rich-text
|
|
|
5634 |
.brz .brz-rich-text h1:before,.brz .brz-rich-text h2:before,.brz .brz-rich-text h3:before,.brz .brz-rich-text h4:before,.brz .brz-rich-text h5:before,.brz .brz-rich-text h6:before{display:none}
|
5635 |
-
.brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;text-
|
5636 |
.brz .brz-rich-text span{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit}
|
5637 |
.brz .brz-rich-text p{display:block}
|
5638 |
.brz .brz-rich-text a,.brz .brz-rich-text em,.brz .brz-rich-text span{display:inline}
|
@@ -5645,12 +1227,17 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5645 |
.brz .brz-rich-text .brz-tp__dc-block:after{content:"";display:table;clear:both}
|
5646 |
.brz .brz-text__editor{min-width:10px}
|
5647 |
.brz .brz-text__editor:empty:before{content:"\00a0\00a0"}
|
|
|
5648 |
.brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}
|
5649 |
.brz .brz-progress-bar__wrapper{overflow:hidden}
|
5650 |
.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}
|
5651 |
.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}
|
5652 |
.brz .brz-shortcode__placeholder .brz-icon-svg{width:calc(16px + (.075 * 100%));height:calc(16px + (.075 * 100%))}
|
5653 |
-
.brz .brz-soundcloud{font-size:0}
|
|
|
|
|
|
|
|
|
5654 |
.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}
|
5655 |
.brz .slick-slider.slick-dotted{margin:0}
|
5656 |
.brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}
|
@@ -5671,7 +1258,7 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5671 |
.brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
|
5672 |
.brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}
|
5673 |
.brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}
|
5674 |
-
.brz .brz-slick-slider .brz-section__items,.brz .brz-slick-slider .slick-slide>div{height:100
|
5675 |
.brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}
|
5676 |
.brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}
|
5677 |
.brz .slick-initialized .slick-slide{display:block}
|
@@ -5727,9 +1314,8 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5727 |
.brz .brz-form .brz-control__select-current{padding:10px 16px}
|
5728 |
.brz .brz-form .brz-control__select-options .brz-control__select-option{padding:10px 16px;font-size:14px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
5729 |
.brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}
|
5730 |
-
.brz .brz-tabs__nav--item{list-style:none}
|
5731 |
.brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}
|
5732 |
-
.brz .brz-tabs__nav--active{position:relative}
|
5733 |
.brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}
|
5734 |
.brz .brz-tabs__nav--active:before{left:-100vw}
|
5735 |
.brz .brz-tabs__nav--active:after{right:-100vw}
|
@@ -5762,6 +1348,14 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5762 |
.brz .brz-popup__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}
|
5763 |
.brz .brz-popup__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
|
5764 |
.brz .brz-popup__preview.brz-popup--opened{z-index:1070;visibility:visible;-webkit-transform:translate(0);transform:translate(0);opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5765 |
.brz .brz-carousel{display:block;width:100%}
|
5766 |
.brz .brz-carousel__slider:not(.slick-initialized){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
5767 |
.brz .brz-carousel>.slick-slider{overflow:hidden}
|
@@ -5847,6 +1441,9 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
5847 |
.brz .mm-wrapper__blocker.mm-slideout{z-index:1099}
|
5848 |
.brz .fb_iframe_widget{min-height:20px}
|
5849 |
.brz .fb-comments,.brz .fb-comments span,.brz .fb-comments span iframe[style],.brz .fb-page,.brz .fb-page span,.brz .fb-page span iframe[style],.brz .fb-post,.brz .fb-video{width:100%!important;min-width:100%!important}
|
|
|
|
|
|
|
5850 |
.brz .screen-reader-text{display:none}
|
5851 |
.brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}
|
5852 |
.brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}
|
@@ -6185,17 +1782,17 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
6185 |
.brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}
|
6186 |
.brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}
|
6187 |
.brz .brz-wp-shortcode__menu .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;list-style:none;margin:0 auto;padding:0}
|
6188 |
-
.brz .brz-wp-shortcode__menu .menu
|
6189 |
-
.brz .brz-wp-shortcode__menu .menu
|
6190 |
.brz .brz-wp-shortcode__menu .menu .sub-menu{position:absolute;left:0;padding-left:0;padding-right:0;text-align:center;text-transform:none;list-style:none;margin:0!important;display:none;width:280px;background-color:#33344b;z-index:110}
|
6191 |
-
.brz .brz-wp-shortcode__menu .menu .sub-menu
|
6192 |
.brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu{display:none;left:100%;top:0}
|
6193 |
.brz .brz-wp-shortcode__menu .menu .sub-menu a{display:block;line-height:1.2em;padding:10px 12%;color:#fcfcfc}
|
6194 |
.brz .brz-wp-shortcode__menu .menu .sub-menu a:hover{background:rgba(36,36,53,.94)}
|
6195 |
-
.brz .brz-wp-shortcode__menu .menu
|
6196 |
-
.brz .brz-wp-shortcode__menu .menu
|
6197 |
-
.brz .brz-wp-shortcode__menu .menu
|
6198 |
-
.brz .brz-wp-shortcode__menu .menu
|
6199 |
.brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}
|
6200 |
.brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}
|
6201 |
.brz .brz-wp-shortcode__menu__toggle .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}
|
@@ -6213,20 +1810,22 @@ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translat
|
|
6213 |
@media (max-width:767px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
|
6214 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
|
6215 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
|
6216 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu
|
6217 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu
|
6218 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
|
6219 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu
|
6220 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu
|
6221 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--
|
|
|
|
|
6222 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
|
6223 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
|
6224 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu
|
6225 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu
|
6226 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
|
6227 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
|
6228 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
|
6229 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--
|
6230 |
.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
|
6231 |
.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
|
6232 |
.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a{padding:5px}
|
@@ -6298,9 +1897,9 @@ body.brz::after,body.brz::before{display:none}
|
|
6298 |
.brz-ed .brz-blockquote{margin:0 0 1rem}
|
6299 |
.brz-ed .brz-dfn{font-style:italic}
|
6300 |
.brz-ed .brz-b,.brz-ed .brz-strong{font-weight:700}
|
6301 |
-
.brz-ed .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
|
6302 |
-
.brz-ed .brz-a[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
|
6303 |
-
.brz-ed .brz-a:active,.brz-ed .brz-a:focus,.brz-ed .brz-a:hover{outline:0}
|
6304 |
.brz-ed .brz-a.brz-btn[href]{text-decoration:none}
|
6305 |
.brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}
|
6306 |
.brz-ed .brz-img{vertical-align:middle;border-style:none}
|
@@ -6318,6 +1917,7 @@ body.brz::after,body.brz::before{display:none}
|
|
6318 |
.brz-ed .brz-button{-webkit-appearance:button}
|
6319 |
.brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}
|
6320 |
.brz-ed .brz-input[type=checkbox],.brz-ed .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
|
|
|
6321 |
.brz-ed .brz-input[type=date],.brz-ed .brz-input[type=datetime-local],.brz-ed .brz-input[type=month],.brz-ed .brz-input[type=time]{-webkit-appearance:listbox}
|
6322 |
.brz-ed .brz-textarea{overflow:auto;resize:vertical}
|
6323 |
.brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
|
@@ -9414,10 +5014,12 @@ body.brz::after,body.brz::before{display:none}
|
|
9414 |
.brz-ed .brz-ed-btn-icon--left .brz-icon-svg{margin-left:0;margin-right:10px}
|
9415 |
.brz-ed .brz-ed-btn--loading{pointer-events:none!important;-webkit-transition:none;transition:none}
|
9416 |
.brz-ed .brz-ed-btn--loading .brz-icon-svg{margin:0;-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}
|
|
|
9417 |
.brz-ed .brz-ed-btn-rounded{border-radius:3px}
|
9418 |
.brz-ed .brz-ed-btn-sm{padding:11px 17px;font-size:14px}
|
9419 |
.brz-ed .brz-ed-btn-sm.brz-ed-btn-icon .brz-icon-svg{font-size:12px}
|
9420 |
.brz-ed .brz-ed-btn-sm.brz-ed-btn--loading{font-size:16px;padding-top:10px;padding-bottom:10px}
|
|
|
9421 |
.brz-ed .brz-ed-btn-full{width:100%}
|
9422 |
.brz-ed .brz-ed-btn-width-1{min-width:130px}
|
9423 |
.brz-ed .brz-ed-btn-width-2{min-width:176px}
|
@@ -9428,7 +5030,7 @@ body.brz::after,body.brz::before{display:none}
|
|
9428 |
.brz-ed .brz-ed-btn-dark:hover{border-color:#283337;background-color:#283337}
|
9429 |
.brz-ed .brz-ed-btn-dark-outline{color:#3b474b;border-color:#3b474b;background-color:#fff}
|
9430 |
.brz-ed .brz-ed-btn-dark-outline:hover{background-color:#3b474b;color:#fff!important}
|
9431 |
-
.brz-ed .brz-ed-btn-teal{border-color:#
|
9432 |
.brz-ed .brz-ed-btn-teal:hover{border-color:#35a9d6;background-color:#35a9d6}
|
9433 |
.brz-ed .brz-ed-btn-teal-outline{color:#34beea;border-color:#34beea;background-color:transparent}
|
9434 |
.brz-ed .brz-ed-btn-teal-outline:focus,.brz-ed .brz-ed-btn-teal-outline:hover{background-color:#34beea;color:#fff!important}
|
@@ -9440,10 +5042,14 @@ body.brz::after,body.brz::before{display:none}
|
|
9440 |
.brz-ed .brz-ed-btn-gray:focus,.brz-ed .brz-ed-btn-gray:hover{border-color:transparent;background-color:rgba(41,46,55,.5)}
|
9441 |
.brz-ed .brz-ed-btn-gray-outline{color:rgba(41,46,55,.5);border-color:rgba(41,46,55,.5);background-color:transparent}
|
9442 |
.brz-ed .brz-ed-btn-gray-outline:hover{background-color:rgba(41,46,55,.5);color:#fff!important}
|
9443 |
-
.brz-ed .brz-ed-btn-red{border-color
|
9444 |
.brz-ed .brz-ed-btn-red:focus,.brz-ed .brz-ed-btn-red:hover{border-color:transparent;background-color:#df3c3c}
|
9445 |
.brz-ed .brz-ed-btn-red-outline{color:#df3c3c;border-color:#df3c3c;background-color:transparent}
|
9446 |
.brz-ed .brz-ed-btn-red-outline:hover{background-color:#df3c3c;color:#fff!important}
|
|
|
|
|
|
|
|
|
9447 |
.brz-ed .brz-ed-alert{font:600 14px/18px pn,"Open Sans",Arial,sans-serif;background-color:#f2f2f2;padding:12px 15px;margin:0 0 20px}
|
9448 |
.brz-ed .brz-ed-alert-error{border-left:4px solid #df3c3c;color:#df3c3c;background-color:rgba(223,60,60,.1)}
|
9449 |
.brz-ed .brz-ed-alert-error .brz-span{color:#df3c3c!important}
|
@@ -9453,8 +5059,4449 @@ body.brz::after,body.brz::before{display:none}
|
|
9453 |
.brz-ed .brz-ed-alert-info .popup-icon-info{float:left;margin:0 15px 5px 0;color:#47a9c8;border-color:#47a9c8}
|
9454 |
.brz-ed .brz-ed-alert-info .brz-span{color:#47a9c8!important}
|
9455 |
.brz-ed .popup-icon-info{font-family:pn,"Open Sans",Arial,sans-serif;display:inline-block;border:2px solid #ccc;color:#ccc;width:32px;height:32px;text-align:center;line-height:32px;font-size:18px;border-radius:50%;margin-bottom:10px}
|
|
|
9456 |
.brz-ed .brz-ed-rotate--180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}
|
9457 |
.brz-ed .brz-ed-rotate--90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9458 |
.brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;position:relative;fill:currentColor;color:currentColor}
|
9459 |
.brz-ed .brz-icon-svg use{fill:inherit}
|
9460 |
.brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}
|
@@ -9514,6 +9561,7 @@ body.brz::after,body.brz::before{display:none}
|
|
9514 |
.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}
|
9515 |
.brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}
|
9516 |
.brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}
|
|
|
9517 |
.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}
|
9518 |
.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current{color:#3dbfe8}
|
9519 |
.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}
|
@@ -9556,6 +9604,9 @@ body.brz::after,body.brz::before{display:none}
|
|
9556 |
.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}
|
9557 |
.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}
|
9558 |
.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}
|
|
|
|
|
|
|
9559 |
.brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}
|
9560 |
.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}
|
9561 |
.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}
|
@@ -9663,16 +9714,25 @@ body.brz::after,body.brz::before{display:none}
|
|
9663 |
.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}
|
9664 |
.brz-ed .brz-ed-control__radio-group--active{color:#3dbfe8}
|
9665 |
.brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}
|
9666 |
-
.brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:
|
9667 |
.brz-ed .brz-ed-tooltip--auto{width:auto}
|
|
|
9668 |
.brz-ed .brz-ed-tooltip--medium{width:255px}
|
9669 |
.brz-ed .brz-ed-tooltip--big{width:305px}
|
9670 |
.brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}
|
9671 |
-
.brz-ed .brz-ed-tooltip__static{position:relative}
|
|
|
|
|
9672 |
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{left:auto;right:-15px}
|
9673 |
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left{left:-15px}
|
9674 |
-
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{bottom:calc(100% + 9px)
|
9675 |
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right{top:calc(100% + 9px)}
|
|
|
|
|
|
|
|
|
|
|
|
|
9676 |
.brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}
|
9677 |
.brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}
|
9678 |
.brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}
|
@@ -9739,6 +9799,40 @@ body.brz::after,body.brz::before{display:none}
|
|
9739 |
.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}
|
9740 |
.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}
|
9741 |
.brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9742 |
.brz-ed .brz-ed-listbox{position:absolute;background-color:#383e48;z-index:1070;border-radius:4px;-webkit-box-shadow:0 2px 13px 0 rgba(0,0,0,.1);box-shadow:0 2px 13px 0 rgba(0,0,0,.1);color:#fff}
|
9743 |
.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}
|
9744 |
.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb:after{content:"";display:block;position:absolute;left:3px;top:0;bottom:0;width:3px;min-height:3px;background-color:#7b7b7b;border-radius:2px}
|
@@ -9748,6 +9842,18 @@ body.brz::after,body.brz::before{display:none}
|
|
9748 |
.brz-ed .brz-ed-listbox__item:last-child{border-bottom-color:transparent!important}
|
9749 |
.brz-ed .brz-ed-listbox__item--active{color:#3dbfe8;-webkit-transition:color .15s linear;transition:color .15s linear}
|
9750 |
.brz-ed .brz-ed-listbox__item--disable{cursor:default}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9751 |
.brz-ed .brz-ed-grid,.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option,.brz-ed .brz-ed-sidebar__right__option{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;line-height:normal;min-height:51px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:-1px}
|
9752 |
.brz-ed .brz-ed-grid:last-child,.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child,.brz-ed .brz-ed-sidebar__right__option:last-child{border-bottom-color:transparent}
|
9753 |
.brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}
|
@@ -9805,6 +9911,7 @@ body.brz::after,body.brz::before{display:none}
|
|
9805 |
.brz-ed .brz-ed-tabs__option--inline{position:relative}
|
9806 |
.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}
|
9807 |
.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tab .brz-span{font-weight:600}
|
|
|
9808 |
.brz-ed .brz-ed-grid__option__gradient{height:22px}
|
9809 |
.brz-ed .brz-ed-grid__option__gradient .brz-ed-control__range{padding:6px 14px 0}
|
9810 |
.brz-ed .brz-ed-option__range{padding:0!important;height:22px!important;min-height:22px!important;border-bottom:0;margin-bottom:0;max-width:112px}
|
@@ -9840,8 +9947,8 @@ body.brz::after,body.brz::before{display:none}
|
|
9840 |
.brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__input:after{content:"";width:100%;height:1px;background-color:rgba(255,255,255,.1);position:absolute;bottom:-3px;left:0}
|
9841 |
.brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__helper{cursor:pointer;margin-left:5px}
|
9842 |
.brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-control__text-box--resizer{position:relative}
|
9843 |
-
.brz-ed .brz-ed-control__text-box--resizer{background-color:transparent;color:#828b92;font-weight:400;border:none;outline:0;padding:0;line-height:1;-moz-appearance:textfield;position:absolute;top:0;left:0;width:105%;height:100
|
9844 |
-
.brz-ed .brz-ed-control__text-box--resizer:active,.brz-ed .brz-ed-control__text-box--resizer:focus{background-color:transparent;color:#
|
9845 |
.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}
|
9846 |
.brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}
|
9847 |
.brz-ed .brz-ed-option__select__after{margin-left:8px;margin-bottom:0;font-size:16px;color:#828b92;line-height:1;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear}
|
@@ -9904,7 +10011,9 @@ body.brz::after,body.brz::before{display:none}
|
|
9904 |
.brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(130,139,146,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
9905 |
.brz-ed .brz-ed-option__helper:hover{color:rgba(130,139,146,.6)}
|
9906 |
.brz-ed .brz-ed-option__helper svg{overflow:visible}
|
9907 |
-
.brz-ed .brz-ed-option__helper__content{font-size:13px;
|
|
|
|
|
9908 |
.brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}
|
9909 |
.brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
|
9910 |
.brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}
|
@@ -9920,6 +10029,12 @@ body.brz::after,body.brz::before{display:none}
|
|
9920 |
.brz-ed .brz-ed-option__colorPicker{padding-top:0;border-bottom:0}
|
9921 |
.brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}
|
9922 |
.brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}
|
|
|
|
|
|
|
|
|
|
|
|
|
9923 |
.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%}
|
9924 |
.brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
|
9925 |
.brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}
|
@@ -9931,6 +10046,17 @@ body.brz::after,body.brz::before{display:none}
|
|
9931 |
.brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}
|
9932 |
.brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}
|
9933 |
.brz-ed .brz-ed-sidebar-option__color-palette-editor{margin-bottom:32px!important}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9934 |
.brz-ed .brz-ed-grid__color-fileds{padding-top:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
9935 |
.brz-ed .brz-ed-grid__color-fileds:last-child{min-height:21px}
|
9936 |
.brz-ed .brz-ed-grid__color-fileds .brz-ed-grid__option{padding:0;min-height:21px}
|
@@ -9946,7 +10072,7 @@ body.brz::after,body.brz::before{display:none}
|
|
9946 |
.brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}
|
9947 |
.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}
|
9948 |
.brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}
|
9949 |
-
.brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% -
|
9950 |
.brz-ed .brz-ed-option__font-styles--add{font-size:0;margin-bottom:0;padding-top:33px;padding-bottom:30px;color:#828b92;text-align:center;cursor:pointer;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear;position:absolute;bottom:-20px;left:30px;right:30px;-webkit-transform:translateY(100%);transform:translateY(100%)}
|
9951 |
.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}
|
9952 |
.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}
|
@@ -10002,17 +10128,31 @@ body.brz::after,body.brz::before{display:none}
|
|
10002 |
.brz-ed .brz-ed-option__input-container .brz-icon-svg{cursor:pointer;position:absolute;right:10px;font-size:16px;top:50%;-webkit-transform:translateY(-.5em);transform:translateY(-.5em);color:#fff;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10003 |
.brz-ed .brz-ed-option__input-container .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10004 |
.brz-ed .brz-ed-option__input__population{width:136px;line-height:30px;padding-right:30px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
|
10005 |
-
.brz-ed .brz-ed-option__color-picker__hex .brz-input,.brz-ed .brz-ed-option__input-number-wrap .brz-input,.brz-ed .brz-ed-option__input-outline .brz-input{background-color:transparent;border:none;outline:0;color:#828b92;border-bottom:1px solid rgba(255,255,255,.1);text-align:left;text-transform:uppercase;padding:2px 0}
|
10006 |
-
.brz-ed .brz-ed-option__color-picker__hex .brz-input:hover,.brz-ed .brz-ed-option__input-number-wrap .brz-input:hover,.brz-ed .brz-ed-option__input-outline .brz-input:hover{border-bottom:1px solid #828b92}
|
10007 |
-
.brz-ed .brz-ed-option__color-picker__hex .brz-input:active,.brz-ed .brz-ed-option__color-picker__hex .brz-input:focus,.brz-ed .brz-ed-option__input-number-wrap .brz-input:active,.brz-ed .brz-ed-option__input-number-wrap .brz-input:focus,.brz-ed .brz-ed-option__input-outline .brz-input:active,.brz-ed .brz-ed-option__input-outline .brz-input:focus{border-bottom:1px solid #
|
10008 |
.brz-ed .brz-ed-option__multi-input .brz-input{width:17px;outline:0;margin-right:8px}
|
10009 |
.brz-ed .brz-ed-option__multi-input .brz-input::-webkit-inner-spin-button,.brz-ed .brz-ed-option__multi-input .brz-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
|
10010 |
-
.brz-ed .brz-ed-option__multi-input .brz-icon{color:#828b92;margin-right:11px;
|
10011 |
.brz-ed .brz-ed-option__multi-input .brz-input:last-child{margin-right:0}
|
10012 |
.brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container{padding:0 4px}
|
10013 |
.brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
|
10014 |
.brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
|
10015 |
.brz-ed .brz-ed-option__multi-input:focus-within>.brz-icon{color:#33beea}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10016 |
.brz-ed .brz-ed-option__input-number{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
|
10017 |
.brz-ed .brz-ed-option__input-number .brz-ed-option__input-number__label{margin-right:10px}
|
10018 |
.brz-ed .brz-ed-option__input-number .brz-input{outline:0;line-height:1;-moz-appearance:textfield}
|
@@ -10068,8 +10208,8 @@ body.brz::after,body.brz::before{display:none}
|
|
10068 |
.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}
|
10069 |
.brz-ed .brz-ed-floating__button--grey{background-color:#879294}
|
10070 |
.brz-ed .brz-ed-floating__button--grey:after{border-color:#879294}
|
10071 |
-
.brz-ed .brz-ed-floating__button--blue{background-color:#
|
10072 |
-
.brz-ed .brz-ed-floating__button--blue:after{border-color:#
|
10073 |
.brz-ed .brz-ed-floating__button--red{background-color:#ed2164}
|
10074 |
.brz-ed .brz-ed-floating__button--red:after{border-color:#ed2164}
|
10075 |
.brz-ed .brz-ed-popup-icons__grid{height:540px}
|
@@ -10148,9 +10288,9 @@ body.brz::after,body.brz::before{display:none}
|
|
10148 |
.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-title{width:20%;font-size:14px}
|
10149 |
.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-label{width:80%}
|
10150 |
.brz-ed .brz-ed-popup-two-btn-close{position:absolute;width:50px;height:60px;top:0;right:0;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}
|
10151 |
-
.brz-ed .brz-ed-popup-two-btn-close
|
10152 |
-
.brz-ed .brz-ed-popup-two-btn-close
|
10153 |
-
.brz-ed .brz-ed-popup-two-btn-close
|
10154 |
.brz-ed .brz-ed-popup-two-btn-close:hover:after,.brz-ed .brz-ed-popup-two-btn-close:hover:before{border-color:#2a2e37}
|
10155 |
.brz-ed .brz-ed-popup-two-header{height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
10156 |
.brz-ed .brz-ed-popup-two-header__search{position:relative;width:256px;height:100%}
|
@@ -10162,15 +10302,17 @@ body.brz::after,body.brz::before{display:none}
|
|
10162 |
.brz-ed .brz-ed-popup-two-header__search .brz-icon-svg{position:absolute;top:0;bottom:0;left:40px;margin:auto;color:#ebeced}
|
10163 |
.brz-ed .brz-ed-popup-two-header__search--hidden{background-color:#fff}
|
10164 |
.brz-ed .brz-ed-popup-two-header__search--hidden *{opacity:0;visibility:hidden}
|
|
|
10165 |
.brz-ed .brz-ed-popup-two-header__tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fff}
|
10166 |
.brz-ed .brz-ed-popup-two-header__tabs-fullWidth{width:100%}
|
10167 |
-
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#818a91;font-size:14px;font-weight:600;font-family:pn,"Open Sans",Arial,sans-serif;
|
10168 |
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-item:hover{color:#151920}
|
10169 |
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-item-active{background:#ececec;color:#151920}
|
10170 |
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-icon{position:relative;margin-right:10px;top:1px}
|
10171 |
.brz-ed .brz-ed-popup-two-body{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:calc(100% - 60px)}
|
10172 |
.brz-ed .brz-ed-popup-two-body__sidebar{-ms-flex-preferred-size:256px;flex-basis:256px;max-width:256px;background-color:#2a2e37;height:100%;padding-bottom:10px}
|
10173 |
.brz-ed .brz-ed-popup-two-body__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;background-color:#ececec;height:100%}
|
|
|
10174 |
.brz-ed .brz-ed-popup-two-sidebar{margin-bottom:42px}
|
10175 |
.brz-ed .brz-ed-popup-two-sidebar:last-child{margin-bottom:0}
|
10176 |
.brz-ed .brz-ed-popup-two-sidebar-body{padding:40px 40px 0}
|
@@ -10186,10 +10328,8 @@ body.brz::after,body.brz::before{display:none}
|
|
10186 |
.brz-ed .brz-ed-popup-two-sidebar-list__span-quantity{margin-left:auto;font-size:13px;padding-top:1px}
|
10187 |
.brz-ed .brz-ed-popup-two-sidebar li:last-of-type{padding-bottom:0}
|
10188 |
.brz-ed .brz-ed-popup-two-sidebar-title{color:rgba(255,255,255,.9);font-size:12px;font-weight:600;letter-spacing:1px;line-height:14px;font-family:pn,"Open Sans",Arial,sans-serif;text-transform:uppercase;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:23px}
|
10189 |
-
.brz-ed .brz-ed-popup-two-sidebar-title
|
10190 |
-
.brz-ed .brz-ed-popup-two-blocks{position:absolute;width:85.9375%;height:89.537037%;max-width:1650px;max-height:967px;top:0;right:0;bottom:0;left:0;margin:auto;border-radius:5px;overflow:hidden}
|
10191 |
-
.brz-ed .brz-ed-popup-two-blocks-body-layouts .brz-ed-popup-two-block{height:300px;overflow:hidden}
|
10192 |
-
.brz-ed .brz-ed-popup-two-blocks-body-layouts .brz-ed-popup-two-block-item::after,.brz-ed .brz-ed-popup-two-blocks-body-layouts .brz-ed-popup-two-block-item::before{height:300px}
|
10193 |
.brz-ed .brz-ed-popup-two-blocks__grid{padding:40px 22.5px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}
|
10194 |
.brz-ed .brz-ed-popup-two-blocks__grid__column{width:100%}
|
10195 |
.brz-ed .brz-ed-popup-two-blocks__grid-clear{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}
|
@@ -10198,42 +10338,46 @@ body.brz::after,body.brz::before{display:none}
|
|
10198 |
.brz-ed .brz-ed-popup-two-blocks__grid-clear-image-global{width:524px;height:207px;margin-top:-28px;pointer-events:none}
|
10199 |
.brz-ed .brz-ed-popup-two-block{position:relative;margin:0 17.5px 35px;cursor:pointer;outline:3px solid transparent;-webkit-transition:outline .3s ease-in-out;transition:outline .3s ease-in-out;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.1);box-shadow:0 1px 5px 0 rgba(0,0,0,.1);border-radius:3px}
|
10200 |
.brz-ed .brz-ed-popup-two-block:last-child{margin-bottom:0}
|
|
|
|
|
|
|
10201 |
.brz-ed .brz-ed-popup-two-block__span-pro{height:16px;width:28px;border-radius:4px;background-color:#d62c64;display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;top:10px;right:10px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;font-family:pn,"Open Sans",Arial,sans-serif;font-size:9px;text-transform:uppercase;padding-top:1px;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}
|
10202 |
-
.brz-ed .brz-ed-popup-two-block__span-lock{
|
10203 |
-
.brz-ed .brz-ed-popup-two-block--pro .brz-ed-
|
10204 |
-
.brz-ed .brz-ed-popup-two-block--pro:hover .brz-ed-popup-two-block__span-lock{opacity:1}
|
10205 |
-
.brz-ed .brz-ed-popup-two-block--pro:hover .brz-ed-popup-two-block-item:before{border:
|
10206 |
-
.brz-ed .brz-ed-popup-two-block
|
10207 |
-
.brz-ed .brz-ed-popup-two-block
|
10208 |
-
.brz-ed .brz-ed-popup-two-block-item
|
10209 |
-
.brz-ed .brz-ed-popup-two-block-item
|
10210 |
-
.brz-ed .brz-ed-popup-two-block-item:
|
10211 |
-
.brz-ed .brz-ed-popup-two-block-item:
|
|
|
|
|
10212 |
.brz-ed .brz-ed-popup-two-block__blank-first{height:163px;background:#fff;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}
|
10213 |
.brz-ed .brz-ed-popup-two-block__blank-first .brz-p{color:rgba(3,8,15,.92);font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;font-weight:600;line-height:18px;padding-left:20px}
|
10214 |
.brz-ed .brz-ed-popup-two-block__blank-first .brz-ed-container-trigger--small{position:relative;display:block;top:auto;right:auto;bottom:auto;left:auto;margin:0}
|
10215 |
-
.brz-ed .brz-ed-popup-two-block__blank-first .brz-ed-container-trigger--small
|
10216 |
-
.brz-ed .brz-ed-popup-two-block__blank-first
|
10217 |
-
.brz-ed .brz-ed-popup-two-block__blank-first
|
10218 |
.brz-ed .brz-ed-popup-two-block__blank-first:hover:after{border-radius:3px;border-color:#3dbfe8;opacity:1}
|
10219 |
.brz-ed .brz-ed-popup-two-block__blank-first:hover:before{opacity:0}
|
10220 |
-
.brz-ed .brz-ed-popup-two-block
|
10221 |
-
.brz-ed .brz-ed-popup-two-block
|
10222 |
-
.brz-ed .brz-ed-popup-two-block-remove{height:42px;width:42px;background:#fff;position:absolute;top:-14px;right:-14px;border-radius:50%;z-index:4;opacity:0;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-transform:scale(.7);transform:scale(.7);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.25);box-shadow:0 0 2px 0 rgba(0,0,0,.25)}
|
10223 |
-
.brz-ed .brz-ed-popup-two-block-remove:hover{color:#ed2164}
|
10224 |
-
.brz-ed .brz-ed-popup-two-block:hover .brz-ed-popup-two-block-remove{opacity:1;-webkit-transform:scale(1);transform:scale(1)}
|
10225 |
-
.brz-ed .brz-ed-popup-two-block-info{width:calc(100% - 35px);height:300px;position:relative;margin:13px 17.5px 48px;z-index:1}
|
10226 |
.brz-ed .brz-ed-popup-two-block-info .brz-ed-option__block-thumbnail-loading{height:300px}
|
10227 |
.brz-ed .brz-ed-popup-two-block-info:last-child{margin-bottom:0}
|
10228 |
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block{width:100%;height:100%;position:absolute;top:0;left:0;margin:0}
|
10229 |
-
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block
|
10230 |
-
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block
|
10231 |
-
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block
|
10232 |
-
.brz-ed .brz-ed-popup-two-block-info
|
|
|
10233 |
.brz-ed .brz-ed-popup-two-block-info:hover .brz-ed-popup-two-block-info-downline{opacity:1}
|
10234 |
.brz-ed .brz-ed-popup-two-block-info-title{color:rgba(3,8,15,.92);font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;font-weight:600}
|
10235 |
.brz-ed .brz-ed-popup-two-block-info-color{height:7px;position:absolute;top:-7px;left:15px;right:15px;z-index:0;pointer-events:none;border-radius:3px 3px 0 0;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.3);box-shadow:0 1px 5px 0 rgba(0,0,0,.3)}
|
10236 |
.brz-ed .brz-ed-popup-two-block-info-color-opacity{height:7px;opacity:.35;position:absolute;top:-6px;right:15px;left:15px;border-radius:3px 3px 0 0}
|
|
|
|
|
10237 |
.brz-ed .brz-ed-popup-two-details{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-top:43px;padding-bottom:60px}
|
10238 |
.brz-ed .brz-ed-popup-two-details-left{width:600px;margin:0 37px 0 17px}
|
10239 |
.brz-ed .brz-ed-popup-two-details-back{height:32px;line-height:20px;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;font-weight:600;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;margin-bottom:20px;-webkit-transition:color .3s ease;transition:color .3s ease}
|
@@ -10250,12 +10394,12 @@ body.brz::after,body.brz::before{display:none}
|
|
10250 |
.brz-ed .brz-ed-popup-two-details-page{height:84.71%}
|
10251 |
.brz-ed .brz-ed-popup-two-details-page-select{width:150px;height:150px;overflow:hidden;margin:0 10px 20px;border-radius:3px;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.1);box-shadow:0 1px 5px 0 rgba(0,0,0,.1);position:relative;display:inline-block;cursor:pointer}
|
10252 |
.brz-ed .brz-ed-popup-two-details-page-select .brz-ed-animated--spin{position:absolute;top:0;right:0;bottom:0;left:0;color:rgba(94,100,111,.6);font-size:24px;margin:auto}
|
10253 |
-
.brz-ed .brz-ed-popup-two-details-page-select
|
10254 |
-
.brz-ed .brz-ed-popup-two-details-page-select
|
10255 |
-
.brz-ed .brz-ed-popup-two-details-page-select
|
10256 |
.brz-ed .brz-ed-popup-two-details-page-select:hover:after,.brz-ed .brz-ed-popup-two-details-page-select:hover:before{opacity:1}
|
10257 |
.brz-ed .brz-ed-popup-two-details-page-select-active{width:100%;height:30px;background:#3dbfe8;position:absolute;bottom:0;left:0;color:rgba(3,8,15,.92);font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:30px;padding-left:10px;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}
|
10258 |
-
.brz-ed .brz-ed-popup-two-details-page-select-active-block
|
10259 |
.brz-ed .brz-ed-popup-two-details-page-select-active-block .brz-ed-popup-two-details-page-select-active{opacity:1}
|
10260 |
.brz-ed .brz-ed-popup-two-details-page img{width:100%}
|
10261 |
.brz-ed .brz-ed-popup-two-details-footer{width:100%;height:60px;background:#fff;position:absolute;bottom:0;left:0;z-index:2}
|
@@ -10266,14 +10410,19 @@ body.brz::after,body.brz::before{display:none}
|
|
10266 |
.brz-ed .brz-ed-popup-two-details-footer-demo{border-radius:3px;background-color:#818a91;color:#fff;font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;font-weight:600;line-height:18px;padding:9px 40px;cursor:pointer}
|
10267 |
.brz-ed .brz-ed-popup-two-details-footer-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
10268 |
.brz-ed .brz-ed-popup-two-details-footer-radio-button{margin-right:25px;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:16px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
|
|
10269 |
.brz-ed .brz-ed-popup-two-details-footer-radio-icon{margin-right:8px;font-size:14px}
|
10270 |
@media only screen and (max-width:1460px){.brz-ed .brz-ed-popup-two-blocks{width:100%;height:100vh;border-radius:0;margin:0}
|
10271 |
-
.brz-ed .brz-ed-popup-two-details-page-select{width:29%}}.brz-ed .brz-ed-popup-integrations{font-family:pn,"Open Sans",Arial,sans-serif
|
|
|
|
|
10272 |
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:560px;overflow:hidden}
|
10273 |
.brz-ed .brz-ed-popup-integrations .brz-ed-alert{margin-bottom:26px}
|
10274 |
.brz-ed .brz-ed-popup-integrations__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track{right:0;width:5px}
|
10275 |
.brz-ed .brz-ed-popup-integrations__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track>.brz-ed-tall-thumb{left:0;bottom:0;border-radius:2px;background-color:#cbcdcf}
|
|
|
10276 |
.brz-ed .brz-ed-popup-integrations__apps{margin:22px 18px 0 24px}
|
|
|
10277 |
.brz-ed .brz-ed-popup-integrations-apps__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track{top:15px!important;right:7px;bottom:15px!important;width:5px;height:auto!important}
|
10278 |
.brz-ed .brz-ed-popup-integrations-apps__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track>.brz-ed-tall-thumb{left:0;bottom:0;border-radius:2px;background-color:#cbcdcf}
|
10279 |
.brz-ed .brz-ed-popup-integrations__app{max-width:114px;-webkit-box-flex:1;-ms-flex:1 1 114px;flex:1 1 114px;margin:18px 12px;text-align:center;cursor:pointer}
|
@@ -10283,12 +10432,17 @@ body.brz::after,body.brz::before{display:none}
|
|
10283 |
.brz-ed .brz-ed-popup-integrations__app--connected .brz-ed-popup-integrations__app-logo:after,.brz-ed .brz-ed-popup-integrations__app--connected .brz-ed-popup-integrations__app-logo:hover:after{border-color:#48be24}
|
10284 |
.brz-ed .brz-ed-popup-integrations__app--loading{cursor:progress;pointer-events:none}
|
10285 |
.brz-ed .brz-ed-popup-integrations__app--loading .brz-ed-popup-integrations__app-logo:after,.brz-ed .brz-ed-popup-integrations__app--loading .brz-ed-popup-integrations__app-logo:hover:after{border-color:#3dbfe8}
|
|
|
|
|
|
|
|
|
10286 |
.brz-ed .brz-ed-popup-integrations__app-logo{position:relative;margin-bottom:12px;background-color:#fff}
|
10287 |
-
.brz-ed .brz-ed-popup-integrations__app-logo:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border:3px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
|
10288 |
.brz-ed .brz-ed-popup-integrations__app-logo:hover:after{border-color:#3dbfe8;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
|
10289 |
.brz-ed .brz-ed-popup-integrations__app-logo .brz-img{max-width:100%}
|
10290 |
.brz-ed .brz-ed-popup-integrations__app-icon{position:absolute;width:24px;height:24px;font-size:24px;top:-8px;right:-8px;border-radius:50%;background-color:#3dbfe8;color:#fff;text-align:center;z-index:2}
|
10291 |
.brz-ed .brz-ed-popup-integrations__app-icon i{font-size:12px;line-height:16px}
|
|
|
10292 |
.brz-ed .brz-ed-popup-integrations__app-title{font-family:inherit;font-size:13px;color:#626b70}
|
10293 |
.brz-ed .brz-ed-popup-integrations__connect{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-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;text-align:center}
|
10294 |
.brz-ed .brz-ed-popup-integrations__connect-head .brz-img{max-width:114px;margin-bottom:34px}
|
@@ -10300,7 +10454,7 @@ body.brz::after,body.brz::before{display:none}
|
|
10300 |
.brz-ed .brz-ed-popup-integrations__connect-body .brz-input:focus~.brz-p{opacity:0;z-index:-1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10301 |
.brz-ed .brz-ed-popup-integrations__connect-body .brz-ed-btn-default{min-width:79px;margin-left:8px}
|
10302 |
.brz-ed .brz-ed-popup-integrations__connect-auth .brz-ed-btn{display:block;margin:0 auto 9px}
|
10303 |
-
.brz-ed .brz-ed-popup-integrations__connect-label{position:relative;display:block;width:283px;margin
|
10304 |
.brz-ed .brz-ed-popup-integrations__connect-label:last-of-type{margin-bottom:37px}
|
10305 |
.brz-ed .brz-ed-popup-integrations__connect-label .brz-p{position:absolute;top:50%;left:20px;cursor:text;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10306 |
.brz-ed .brz-ed-popup-integrations__progress{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:28px}
|
@@ -10321,11 +10475,8 @@ body.brz::after,body.brz::before{display:none}
|
|
10321 |
.brz-ed .brz-ed-popup-integrations-step__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:35px}
|
10322 |
.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(1){margin-right:auto}
|
10323 |
.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(1):last-child,.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(2){margin-left:auto;margin-right:0}
|
10324 |
-
.brz-ed .brz-ed-popup-integrations-account--delete{cursor:pointer;margin-left:auto;color:#626b70;-webkit-transition:.2s linear color;transition:.2s linear color;font-size:0;line-height:1}
|
10325 |
-
.brz-ed .brz-ed-popup-integrations-account--delete:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10326 |
-
.brz-ed .brz-ed-popup-integrations-account--delete .brz-icon-svg{font-size:16px}
|
10327 |
.brz-ed .brz-ed-popup-integrations-option__radio{color:#626b70}
|
10328 |
-
.brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-option{font-size:15px;font-weight:500;border-bottom:1px solid rgba(0,0,0,.1);padding:17px
|
10329 |
.brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-option--active{color:#3dbfe8}
|
10330 |
.brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-check{margin-right:10px;vertical-align:middle}
|
10331 |
.brz-ed .brz-ed-popup-integrations-new__option{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:15px;line-height:1;color:#626b70;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 0 17px 4px;-webkit-transition:.2s linear color;transition:.2s linear color}
|
@@ -10335,22 +10486,54 @@ body.brz::after,body.brz::before{display:none}
|
|
10335 |
.brz-ed .brz-ed-popup-integrations-step__lists-create{padding-top:0}
|
10336 |
.brz-ed .brz-ed-popup-integrations__confirmation .brz-control__select{width:224px}
|
10337 |
.brz-ed .brz-ed-popup-integrations__confirmation .brz-p{color:#626b70;font-size:15px}
|
|
|
|
|
|
|
10338 |
.brz-ed .brz-ed-popup-integrations-step__fields .brz-ed-popup-integrations-step__head{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}
|
10339 |
.brz-ed .brz-ed-popup-integrations-step__fields .brz-ed-popup-integrations-step__head .brz-p:last-child{max-width:223px;width:100%}
|
10340 |
-
.brz-ed .brz-ed-popup-integrations-
|
10341 |
-
.brz-ed .brz-ed-popup-integrations-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10342 |
.brz-ed .brz-ed-popup-integrations-step__fields-select{max-width:223px;width:100%}
|
10343 |
.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select{width:100%}
|
10344 |
.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-current,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-current:hover,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-options{background-color:#fff}
|
10345 |
.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-option .brz-strong{color:#ff0e0e;padding-left:5px}
|
10346 |
.brz-ed .brz-ed-popup-integrations-step__fields-input,.brz-ed .brz-ed-popup-integrations-step__fields-select{max-width:223px;width:100%}
|
10347 |
-
.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-input,.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea{width:100%;height:30px;font-size:13px;padding:0 10px;border-radius:5px;background-color:#fff;color:#383e48;border-color:transparent;outline:0}
|
10348 |
-
.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea{height:auto;min-height:70px;resize:none;padding:10px}
|
|
|
|
|
|
|
10349 |
.brz-ed .brz-ed-popup-integrations-step__done{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;margin:0;text-align:center;padding-top:0}
|
10350 |
.brz-ed .brz-ed-popup-integrations-step__done-icon{margin-bottom:30px;font-size:0;line-height:1;color:#48be24}
|
10351 |
.brz-ed .brz-ed-popup-integrations-step__done-icon .brz-icon-svg{font-size:47px}
|
10352 |
.brz-ed .brz-ed-popup-integrations-step__done-content{font-size:14px;color:#626b70;line-height:21px;max-width:234px;margin-bottom:42px}
|
10353 |
-
.brz-ed .brz-ed-popup-integration{height:100
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10354 |
@media screen and (max-height:899px){.brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:465px}
|
10355 |
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__account .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:155px!important}
|
10356 |
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:153px!important}
|
@@ -10385,10 +10568,28 @@ body.brz::after,body.brz::before{display:none}
|
|
10385 |
.brz-ed .brz-ed-hotkeys-combination-container-column-label::before{content:"";position:absolute;width:28px;height:1px;background-color:#818a91;right:15px;top:0;bottom:0;margin:auto;display:block}
|
10386 |
.brz-ed .brz-ed-hotkeys-combination-container-column-label-2{color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:12px;font-weight:500;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;height:21px}
|
10387 |
.brz-ed .brz-ed-hotkeys-combination-container-column-label-2 .divider{margin-left:6px}
|
10388 |
-
.brz-ed .brz-ed-hotkeys-icons{width:11px;height:11px;margin-left:4px}}.brz-ed .brz-ed-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10389 |
.brz-ed .brz-ed-draggable-active{opacity:1;-webkit-transition-delay:.5s;transition-delay:.5s}
|
10390 |
.brz-ed .brz-ed-draggable__column{position:absolute;top:0;z-index:1030;width:20px;height:100%;cursor:col-resize}
|
10391 |
-
.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:#
|
10392 |
.brz-ed .brz-ed-draggable__column--left{left:-10px}
|
10393 |
.brz-ed .brz-ed-draggable__column--right{right:-10px}
|
10394 |
.brz-ed .brz-ed-draggable__column--red .brz-ed-draggable__column--item{background-color:#ed2164}
|
@@ -10421,6 +10622,27 @@ body.brz::after,body.brz::before{display:none}
|
|
10421 |
.brz-ed .brz-ed-box__resizer--bottom-center{cursor:ns-resize;left:50%;margin-left:-5px;bottom:-6px;top:auto}
|
10422 |
.brz-ed .brz-ed-box__resizer--bottom-right{cursor:nwse-resize;bottom:-5px;right:-5px;top:auto}
|
10423 |
.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}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10424 |
.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}
|
10425 |
.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)}
|
10426 |
.brz-ed .brz-ed-sidebar__control__item--active,.brz-ed .brz-ed-sidebar__control__item:hover{color:#3dbfe8}
|
@@ -10460,13 +10682,18 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10460 |
.brz-ed .brz-ed-sidebar__btn{height:48px;color:#fff;-ms-flex-preferred-size:50%;flex-basis:50%;font-size:12px;font-family:pn,"Open Sans",Arial,sans-serif;letter-spacing:.5px;font-weight:600;text-transform:uppercase;text-align:center;line-height:48px}
|
10461 |
.brz-ed .brz-ed-sidebar__btn--active{background-color:#91a652}
|
10462 |
.brz-ed .brz-ed-sidebar__btn:hover{color:#fff}
|
10463 |
-
.brz-ed .brz-ed-sidebar-
|
|
|
|
|
|
|
|
|
|
|
10464 |
.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}
|
10465 |
.brz-ed .brz-ed-sidebar-block-item:first-child{margin-top:12px}
|
10466 |
.brz-ed .brz-ed-sidebar-block-item:hover{border-top-color:#286b85;border-bottom-color:#286b85}
|
10467 |
.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-remove{display:block}
|
10468 |
.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-layout{opacity:1}
|
10469 |
-
.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-helper{z-index:99999999999}
|
10470 |
.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}
|
10471 |
.brz-ed .brz-ed-sidebar-block-image-loading{position:absolute;top:0;left:0;width:100%;height:100%;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;background-color:#474c55;color:#fff}
|
10472 |
.brz-ed .brz-ed-sidebar-block-image>.brz-img{position:absolute;top:0;left:0;display:block;max-width:100%}
|
@@ -10490,8 +10717,8 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10490 |
.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-control__focal-point{display:inline-block}
|
10491 |
.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-control__focal-point__delete .brz-icon-svg{margin:0}
|
10492 |
.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-option__label{margin-bottom:6px}
|
10493 |
-
.brz-ed .brz-ed-sidebar__add-elements{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;
|
10494 |
-
.brz-ed .brz-ed-sidebar__add-elements--base{padding-
|
10495 |
.brz-ed .brz-ed-sidebar__add-elements__item{position:relative;padding:7px 11px 14px;text-align:center;line-height:1;font-size:0}
|
10496 |
.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}
|
10497 |
.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}
|
@@ -10501,6 +10728,7 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10501 |
.brz-ed .brz-ed-sidebar__add-elements__text{font-size:12px;font-family:pn,"Open Sans",Arial,sans-serif;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}
|
10502 |
.brz-ed .brz-ed-sidebar__add-elements--separator{margin:8px 49px 18px;border:0;border-top:1px solid #3c424d}
|
10503 |
.brz-ed .brz-ed-sidebar__add-elements__tooltip{margin-bottom:-7px;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}
|
|
|
10504 |
.brz-ed .brz-ed-sidebar__right{right:0;left:auto;width:auto}
|
10505 |
.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content{left:auto;right:0}
|
10506 |
.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content.active{-webkit-animation-name:shadow-animation;animation-name:shadow-animation}
|
@@ -10592,7 +10820,11 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10592 |
.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}
|
10593 |
.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}
|
10594 |
.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}
|
10595 |
-
.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
|
|
|
|
|
|
|
|
|
10596 |
.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}
|
10597 |
.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}
|
10598 |
.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}
|
@@ -10650,9 +10882,9 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10650 |
.brz-ed .brz-ed-border--grey:after,.brz-ed .brz-ed-border--grey:before{border-color:#879294}
|
10651 |
.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)}
|
10652 |
.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)}
|
10653 |
-
.brz-ed .brz-ed-border--blue:after,.brz-ed .brz-ed-border--blue:before{border-color:#
|
10654 |
-
.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#
|
10655 |
-
.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#
|
10656 |
.brz-ed .brz-ed-border--red:after,.brz-ed .brz-ed-border--red:before{border-color:#ed2164}
|
10657 |
.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)}
|
10658 |
.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)}
|
@@ -10662,7 +10894,7 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10662 |
.brz-ed .brz-ed-border--solid:after,.brz-ed .brz-ed-border--solid:before{border-style:solid}
|
10663 |
.brz-ed .brz-ed-border--dotted:after,.brz-ed .brz-ed-border--dotted:before{border-style:dotted}
|
10664 |
.brz-ed .brz-ed-border--active-dotted:after,.brz-ed .brz-ed-border--active-dotted:before{border-style:dotted!important}
|
10665 |
-
.brz-ed .brz-ed-border--active-solid:after,.brz-ed .brz-ed-border--active-solid:before{background:#
|
10666 |
.brz-ed .brz-ed-border--active-dashed:after,.brz-ed .brz-ed-border--active-dashed:before{border-style:dashed!important}
|
10667 |
.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:after{left:0;right:0;top:0}
|
10668 |
.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:before{top:0;bottom:0;left:0}
|
@@ -10722,7 +10954,7 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10722 |
.brz-ed .brz-ed-content-editable-wrap *{cursor:default}
|
10723 |
.brz-ed .brz-ed-content-editable-wrap .ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}
|
10724 |
.brz-ed .brz-ed-content-editable-wrap.brz-ed-content-editable-focus *{cursor:auto}
|
10725 |
-
.brz-ed .brz-ed-content-editable-wrap span[data-population]{text-decoration:underline;-webkit-text-decoration-style:dashed;text-decoration-style:dashed}
|
10726 |
.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}
|
10727 |
.brz-ed #brz-ed-iframe.brz-ed-iframe--desktop{width:calc(100% - 48px)!important}
|
10728 |
.brz-ed .brz-ed-iframe--desktop{min-width:1170px;margin-left:48px!important;max-width:100%;-webkit-box-shadow:none;box-shadow:none}
|
@@ -10790,6 +11022,7 @@ to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0
|
|
10790 |
.brz-ed .brz-columns>.brz-ed-border>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
10791 |
.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{left:-2px}
|
10792 |
.brz-ed .brz-columns .brz-ed-border__column--empty{min-height:125px}
|
|
|
10793 |
.brz-ed.brz-ed--tablet .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed.brz-ed--tablet .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed.brz-ed--tablet .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-2:after{left:0}
|
10794 |
.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}
|
10795 |
.brz-ed .brz-ed-border__wrapper{height:auto}
|
7 |
@font-face{font-family:pn;src:url(../fonts/pn-regular-webfont.eot);src:url(../fonts/pn-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-regular-webfont.woff2) format("woff2"),url(../fonts/pn-regular-webfont.woff) format("woff"),url(../fonts/pn-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}
|
8 |
@font-face{font-family:pn;src:url(../fonts/pn-medium-webfont.eot);src:url(../fonts/pn-medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-medium-webfont.woff2) format("woff2"),url(../fonts/pn-medium-webfont.woff) format("woff"),url(../fonts/pn-medium-webfont.svg) format("svg");font-weight:600;font-style:normal}
|
9 |
@font-face{font-family:pn;src:url(../fonts/pn-bold-webfont.eot);src:url(../fonts/pn-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-bold-webfont.woff2) format("woff2"),url(../fonts/pn-bold-webfont.woff) format("woff"),url(../fonts/pn-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.brz-ed-sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:move}
|
11 |
.brz-ed-sorting *{pointer-events:none}
|
12 |
.brz-ed-sorting .brz-ed-draggable{display:none}
|
456 |
.brz .brz-blockquote{margin:0 0 1rem}
|
457 |
.brz .brz-dfn{font-style:italic}
|
458 |
.brz .brz-b,.brz .brz-strong{font-weight:700}
|
459 |
+
.brz .brz-a:not(.brz-btn){color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
|
460 |
+
.brz .brz-a:not(.brz-btn)[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
|
461 |
+
.brz .brz-a:not(.brz-btn):active,.brz .brz-a:not(.brz-btn):focus,.brz .brz-a:not(.brz-btn):hover{outline:0}
|
462 |
.brz .brz-a.brz-btn[href]{text-decoration:none}
|
463 |
.brz .brz-figure{margin:0;min-width:auto;min-height:auto}
|
464 |
.brz .brz-img{vertical-align:middle;border-style:none}
|
476 |
.brz .brz-button{-webkit-appearance:button}
|
477 |
.brz .brz-button::-moz-focus-inner{padding:0;border-style:none}
|
478 |
.brz .brz-input[type=checkbox],.brz .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
|
479 |
+
.brz .brz-input[type=number]{-moz-appearance:textfield}
|
480 |
.brz .brz-input[type=date],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month],.brz .brz-input[type=time]{-webkit-appearance:listbox}
|
481 |
.brz .brz-textarea{overflow:auto;resize:vertical}
|
482 |
.brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
|
1112 |
.brz .brz-section__header--animated-opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;-webkit-transition:opacity .2s linear,-webkit-transform .2s linear;transition:opacity .2s linear,-webkit-transform .2s linear;transition:transform .2s linear,opacity .2s linear;transition:transform .2s linear,opacity .2s linear,-webkit-transform .2s linear}
|
1113 |
.brz .brz-section__header--fixed{position:relative;z-index:1050}
|
1114 |
.brz .brz-section__header--fixed-opened{position:fixed;z-index:1051;top:0;left:0;width:100%}
|
1115 |
+
.brz .brz-popup__inner{height:100%}
|
1116 |
@media (max-width:991px){.brz.brz-ed .brz-section__header--animated{padding-left:15px;padding-right:15px}}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}
|
1117 |
.brz .brz-container__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
1118 |
@media (max-width:991px){.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}.brz .brz-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
1119 |
+
.brz .brz-row__container{position:relative}
|
1120 |
+
.brz .brz-row__container .brz-link-container{position:absolute;height:100%;width:100%;top:0;left:0}
|
1121 |
+
.brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:1px;-ms-flex-preferred-size:100%;flex-basis:100%;will-change:flex,max-width}
|
1122 |
.brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
1123 |
+
.brz .brz-columns .brz-container-link{position:absolute;height:100%;width:100%;top:0;left:0}
|
1124 |
.brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}
|
1125 |
.brz .brz-wrapper-clone__wrap{height:100%}
|
1126 |
.brz .brz-wrapper-clone__wrap>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
1127 |
+
.brz .brz-wrapper-clone__wrap:after{content:"";display:table}
|
1128 |
+
.brz .brz-wrapper-clone__wrap .brz-flex-xs-wrap{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
1129 |
.brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}
|
1130 |
.brz .brz-bg{position:relative}
|
1131 |
.brz .brz-bg-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}
|
1143 |
.brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}
|
1144 |
.brz .brz-btn:focus{text-decoration:none}
|
1145 |
.brz .brz-btn .brz-span{display:block}
|
1146 |
+
.brz .brz-btn .brz-icon-svg{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}
|
1147 |
.brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
1148 |
.brz .buttons .brz-wrapper-clone__item{padding:10px}
|
1149 |
.brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;max-width:100%;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}
|
1155 |
.brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}
|
1156 |
.brz .brz-spacer{width:100%}
|
1157 |
.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}
|
1158 |
+
.brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%;white-space:pre-wrap}
|
1159 |
+
.brz .brz-icon-text .brz-wrapper-clone{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
|
1160 |
.brz .brz-icon-text .brz-icon__container{min-width:auto}
|
1161 |
.brz .brz-line{position:relative;line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}
|
1162 |
.brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0;background:0 0}
|
1163 |
.brz .brz-map{position:relative;width:100%;display:inline-block;vertical-align:middle}
|
1164 |
+
.brz .brz-map::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
|
1165 |
+
.brz .brz-map .brz-map-content{overflow:hidden;position:relative;height:100%;width:100%}
|
1166 |
.brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
|
1167 |
.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%}
|
1168 |
.brz .brz-image .brz-img{max-width:100%;border-radius:inherit}
|
1169 |
.brz .brz-image .brz-a,.brz .brz-image picture{outline:0;border-radius:inherit}
|
1170 |
+
.brz .brz-image::before{content:"";width:100%;height:100%;position:absolute;pointer-events:none;top:0;left:0;z-index:1}
|
1171 |
.brz .brz-ed-image__content{position:relative;width:100%}
|
1172 |
.brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}
|
1173 |
.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}
|
1174 |
.brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}
|
1175 |
+
.brz .brz-ed-image__wrapper::before{content:"";width:100%;height:100%;position:absolute;pointer-events:none;top:0;left:0;z-index:1}
|
1176 |
.brz .brz-image-fix-1-1{padding-top:100%}
|
1177 |
.brz .brz-image-fix-2-1{padding-top:50%}
|
1178 |
.brz .brz-image-fix-2-3{padding-top:150%}
|
1186 |
.brz .mfp-wrap{z-index:1101}
|
1187 |
.brz .mfp-figure:after,.brz .mfp-iframe-scaler iframe{-webkit-box-shadow:0 0 40px rgba(0,0,0,.35);box-shadow:0 0 40px rgba(0,0,0,.35)}
|
1188 |
.brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}
|
1189 |
+
.brz .brz-video::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
|
1190 |
+
.brz .brz-video .brz-video-content{overflow:hidden;position:relative;width:100%;height:100%}
|
1191 |
.brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
|
1192 |
.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}
|
1193 |
.brz .brz-video .brz-video__cover::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto;background-repeat:no-repeat}
|
1198 |
.brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
|
1199 |
.brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
|
1200 |
.brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:20px;height:auto;word-break:break-all;word-wrap:break-word}
|
1201 |
+
.brz .brz-embed-code::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none;overflow:hidden}
|
1202 |
.brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
|
1203 |
.brz .brz-embed-code img{max-width:100%}
|
1204 |
+
.brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
|
1205 |
+
.brz .brz-rich-text>*{white-space:pre-wrap}
|
1206 |
.brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
|
1207 |
.brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none;padding-left:1em}
|
1208 |
.brz .brz-rich-text ol li:before,.brz .brz-rich-text ul li:before{margin-left:-1em}
|
1211 |
.brz .brz-rich-text ol li{counter-increment:number}
|
1212 |
.brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}
|
1213 |
.brz .brz-rich-text .ql-editor{white-space:pre-wrap}
|
1214 |
+
.brz .brz-rich-text .brz-image-gradient,.brz .brz-rich-text .brz-text-mask{color:transparent!important;-webkit-background-clip:text;background-clip:text}
|
1215 |
+
.brz .brz-rich-text h1,.brz .brz-rich-text h2,.brz .brz-rich-text h3,.brz .brz-rich-text h4,.brz .brz-rich-text h5,.brz .brz-rich-text h6{margin-top:0;margin-bottom:0;padding:0;text-transform:initial;text-decoration:initial}
|
1216 |
.brz .brz-rich-text h1:before,.brz .brz-rich-text h2:before,.brz .brz-rich-text h3:before,.brz .brz-rich-text h4:before,.brz .brz-rich-text h5:before,.brz .brz-rich-text h6:before{display:none}
|
1217 |
+
.brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;text-transform:initial;text-decoration:initial}
|
1218 |
.brz .brz-rich-text span{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit}
|
1219 |
.brz .brz-rich-text p{display:block}
|
1220 |
.brz .brz-rich-text a,.brz .brz-rich-text em,.brz .brz-rich-text span{display:inline}
|
1227 |
.brz .brz-rich-text .brz-tp__dc-block:after{content:"";display:table;clear:both}
|
1228 |
.brz .brz-text__editor{min-width:10px}
|
1229 |
.brz .brz-text__editor:empty:before{content:"\00a0\00a0"}
|
1230 |
+
.brz:not(.brz-ed) .brz-population-mask{background-clip:text;color:transparent!important;-webkit-background-clip:text;background-clip:text}
|
1231 |
.brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}
|
1232 |
.brz .brz-progress-bar__wrapper{overflow:hidden}
|
1233 |
.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}
|
1234 |
.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}
|
1235 |
.brz .brz-shortcode__placeholder .brz-icon-svg{width:calc(16px + (.075 * 100%));height:calc(16px + (.075 * 100%))}
|
1236 |
+
.brz .brz-soundcloud{position:relative;font-size:0}
|
1237 |
+
.brz .brz-soundcloud::before{content:" ";position:absolute;width:100%;height:100%;z-index:3;pointer-events:none}
|
1238 |
+
.brz .brz-soundcloud .brz-soundCloud-content{overflow:hidden;position:relative;height:100%;width:100%}
|
1239 |
+
.brz .brz-soundcloud .brz-soundCloud-content iframe{width:100%}
|
1240 |
+
.brz .brz-soundcloud .brz-soundCloud-content::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
|
1241 |
.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}
|
1242 |
.brz .slick-slider.slick-dotted{margin:0}
|
1243 |
.brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}
|
1258 |
.brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
|
1259 |
.brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}
|
1260 |
.brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}
|
1261 |
+
.brz .brz-slick-slider .brz-section__items,.brz .brz-slick-slider .slick-slide>div{height:100%;outline:0}
|
1262 |
.brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}
|
1263 |
.brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}
|
1264 |
.brz .slick-initialized .slick-slide{display:block}
|
1314 |
.brz .brz-form .brz-control__select-current{padding:10px 16px}
|
1315 |
.brz .brz-form .brz-control__select-options .brz-control__select-option{padding:10px 16px;font-size:14px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
1316 |
.brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}
|
1317 |
+
.brz .brz-tabs__nav--item{position:relative;list-style:none;z-index:var(--zIndex)}
|
1318 |
.brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}
|
|
|
1319 |
.brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}
|
1320 |
.brz .brz-tabs__nav--active:before{left:-100vw}
|
1321 |
.brz .brz-tabs__nav--active:after{right:-100vw}
|
1348 |
.brz .brz-popup__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}
|
1349 |
.brz .brz-popup__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
|
1350 |
.brz .brz-popup__preview.brz-popup--opened{z-index:1070;visibility:visible;-webkit-transform:translate(0);transform:translate(0);opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
|
1351 |
+
.brz .brz-popup2{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1070}
|
1352 |
+
.brz .brz-popup2__close{position:absolute;z-index:2;top:36px;left:50px;color:#fff;font-size:0;cursor:pointer}
|
1353 |
+
.brz .brz-popup2__close .brz-icon-svg{font-size:26px}
|
1354 |
+
.brz .brz-popup2>.brz-ed-border{height:100%}
|
1355 |
+
.brz .brz-popup2__inner{height:100%}
|
1356 |
+
.brz .brz-popup2__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}
|
1357 |
+
.brz .brz-popup2__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
|
1358 |
+
.brz .brz-popup2__preview.brz-popup2--opened{z-index:1070;visibility:visible;-webkit-transform:translate(0);transform:translate(0);opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}
|
1359 |
.brz .brz-carousel{display:block;width:100%}
|
1360 |
.brz .brz-carousel__slider:not(.slick-initialized){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
1361 |
.brz .brz-carousel>.slick-slider{overflow:hidden}
|
1441 |
.brz .mm-wrapper__blocker.mm-slideout{z-index:1099}
|
1442 |
.brz .fb_iframe_widget{min-height:20px}
|
1443 |
.brz .fb-comments,.brz .fb-comments span,.brz .fb-comments span iframe[style],.brz .fb-page,.brz .fb-page span,.brz .fb-page span iframe[style],.brz .fb-post,.brz .fb-video{width:100%!important;min-width:100%!important}
|
1444 |
+
.brz .brz-fb-embed,.brz .brz-fb-group,.brz .brz-fb-page{position:relative}
|
1445 |
+
.brz .brz-fb-embed::before,.brz .brz-fb-group::before,.brz .brz-fb-page::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
|
1446 |
+
.brz .brz-fb-comments{width:100%}
|
1447 |
.brz .screen-reader-text{display:none}
|
1448 |
.brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}
|
1449 |
.brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}
|
1782 |
.brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}
|
1783 |
.brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}
|
1784 |
.brz .brz-wp-shortcode__menu .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;list-style:none;margin:0 auto;padding:0}
|
1785 |
+
.brz .brz-wp-shortcode__menu .menu li[class*=menu-item]{position:relative;text-align:left;list-style:none}
|
1786 |
+
.brz .brz-wp-shortcode__menu .menu li[class*=menu-item] a span{display:block}
|
1787 |
.brz .brz-wp-shortcode__menu .menu .sub-menu{position:absolute;left:0;padding-left:0;padding-right:0;text-align:center;text-transform:none;list-style:none;margin:0!important;display:none;width:280px;background-color:#33344b;z-index:110}
|
1788 |
+
.brz .brz-wp-shortcode__menu .menu .sub-menu li[class*=menu-item]{display:block;margin:0;padding:0}
|
1789 |
.brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu{display:none;left:100%;top:0}
|
1790 |
.brz .brz-wp-shortcode__menu .menu .sub-menu a{display:block;line-height:1.2em;padding:10px 12%;color:#fcfcfc}
|
1791 |
.brz .brz-wp-shortcode__menu .menu .sub-menu a:hover{background:rgba(36,36,53,.94)}
|
1792 |
+
.brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]{display:inline-block;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;padding-top:5px;padding-bottom:5px}
|
1793 |
+
.brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]>.sub-menu{top:100%;padding-top:15px;padding-bottom:15px}
|
1794 |
+
.brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]:hover>.sub-menu{display:block}
|
1795 |
+
.brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]>.sub-menu>li[class*=menu-item]:hover>.sub-menu{display:block}
|
1796 |
.brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}
|
1797 |
.brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}
|
1798 |
.brz .brz-wp-shortcode__menu__toggle .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}
|
1810 |
@media (max-width:767px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
|
1811 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
|
1812 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
|
1813 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*=menu-item] a{padding:5px}
|
1814 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*=menu-item] a:hover{background-color:transparent}
|
1815 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
|
1816 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>li[class*=menu-item]{padding:0}
|
1817 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>li[class*=menu-item]>.sub-menu{top:100%;padding:5px 0}
|
1818 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile__icon{display:inline-block}
|
1819 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile>div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu li[class*=menu-item] a{color:#fcfcfc}
|
1820 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile>div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu li[class*=menu-item] a:hover{color:#fff;background:rgba(36,36,53,.94)}}@media (min-width:768px) and (max-width:991px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
|
1821 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
|
1822 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
|
1823 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*=menu-item] a{padding:5px}
|
1824 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*=menu-item] a:hover{background-color:transparent}
|
1825 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
|
1826 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
|
1827 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
|
1828 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet__icon{display:inline-block}}.brz.brz-ed--mobile .brz-wp-shortcode__menu{width:auto;text-align:center}
|
1829 |
.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
|
1830 |
.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
|
1831 |
.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a{padding:5px}
|
1897 |
.brz-ed .brz-blockquote{margin:0 0 1rem}
|
1898 |
.brz-ed .brz-dfn{font-style:italic}
|
1899 |
.brz-ed .brz-b,.brz-ed .brz-strong{font-weight:700}
|
1900 |
+
.brz-ed .brz-a:not(.brz-btn){color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
|
1901 |
+
.brz-ed .brz-a:not(.brz-btn)[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
|
1902 |
+
.brz-ed .brz-a:not(.brz-btn):active,.brz-ed .brz-a:not(.brz-btn):focus,.brz-ed .brz-a:not(.brz-btn):hover{outline:0}
|
1903 |
.brz-ed .brz-a.brz-btn[href]{text-decoration:none}
|
1904 |
.brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}
|
1905 |
.brz-ed .brz-img{vertical-align:middle;border-style:none}
|
1917 |
.brz-ed .brz-button{-webkit-appearance:button}
|
1918 |
.brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}
|
1919 |
.brz-ed .brz-input[type=checkbox],.brz-ed .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
|
1920 |
+
.brz-ed .brz-input[type=number]{-moz-appearance:textfield}
|
1921 |
.brz-ed .brz-input[type=date],.brz-ed .brz-input[type=datetime-local],.brz-ed .brz-input[type=month],.brz-ed .brz-input[type=time]{-webkit-appearance:listbox}
|
1922 |
.brz-ed .brz-textarea{overflow:auto;resize:vertical}
|
1923 |
.brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
|
5014 |
.brz-ed .brz-ed-btn-icon--left .brz-icon-svg{margin-left:0;margin-right:10px}
|
5015 |
.brz-ed .brz-ed-btn--loading{pointer-events:none!important;-webkit-transition:none;transition:none}
|
5016 |
.brz-ed .brz-ed-btn--loading .brz-icon-svg{margin:0;-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}
|
5017 |
+
.brz-ed .brz-ed-btn--disabled{pointer-events:none!important;color:#fff!important;background-color:rgba(41,46,55,.5)!important;border-color:transparent!important}
|
5018 |
.brz-ed .brz-ed-btn-rounded{border-radius:3px}
|
5019 |
.brz-ed .brz-ed-btn-sm{padding:11px 17px;font-size:14px}
|
5020 |
.brz-ed .brz-ed-btn-sm.brz-ed-btn-icon .brz-icon-svg{font-size:12px}
|
5021 |
.brz-ed .brz-ed-btn-sm.brz-ed-btn--loading{font-size:16px;padding-top:10px;padding-bottom:10px}
|
5022 |
+
.brz-ed .brz-ed-btn-xs{font-size:10px;padding:9px 18px}
|
5023 |
.brz-ed .brz-ed-btn-full{width:100%}
|
5024 |
.brz-ed .brz-ed-btn-width-1{min-width:130px}
|
5025 |
.brz-ed .brz-ed-btn-width-2{min-width:176px}
|
5030 |
.brz-ed .brz-ed-btn-dark:hover{border-color:#283337;background-color:#283337}
|
5031 |
.brz-ed .brz-ed-btn-dark-outline{color:#3b474b;border-color:#3b474b;background-color:#fff}
|
5032 |
.brz-ed .brz-ed-btn-dark-outline:hover{background-color:#3b474b;color:#fff!important}
|
5033 |
+
.brz-ed .brz-ed-btn-teal{border-color:#3dbfe8;background-color:#3dbfe8;color:#fff!important}
|
5034 |
.brz-ed .brz-ed-btn-teal:hover{border-color:#35a9d6;background-color:#35a9d6}
|
5035 |
.brz-ed .brz-ed-btn-teal-outline{color:#34beea;border-color:#34beea;background-color:transparent}
|
5036 |
.brz-ed .brz-ed-btn-teal-outline:focus,.brz-ed .brz-ed-btn-teal-outline:hover{background-color:#34beea;color:#fff!important}
|
5042 |
.brz-ed .brz-ed-btn-gray:focus,.brz-ed .brz-ed-btn-gray:hover{border-color:transparent;background-color:rgba(41,46,55,.5)}
|
5043 |
.brz-ed .brz-ed-btn-gray-outline{color:rgba(41,46,55,.5);border-color:rgba(41,46,55,.5);background-color:transparent}
|
5044 |
.brz-ed .brz-ed-btn-gray-outline:hover{background-color:rgba(41,46,55,.5);color:#fff!important}
|
5045 |
+
.brz-ed .brz-ed-btn-red{border-color:#ed2164;background-color:#ed2164;color:#fff!important}
|
5046 |
.brz-ed .brz-ed-btn-red:focus,.brz-ed .brz-ed-btn-red:hover{border-color:transparent;background-color:#df3c3c}
|
5047 |
.brz-ed .brz-ed-btn-red-outline{color:#df3c3c;border-color:#df3c3c;background-color:transparent}
|
5048 |
.brz-ed .brz-ed-btn-red-outline:hover{background-color:#df3c3c;color:#fff!important}
|
5049 |
+
.brz-ed .brz-ed-btn-pro{border-color:transparent;background-color:#d62c64;color:#fff;font-size:14px;font-weight:600}
|
5050 |
+
.brz-ed .brz-ed-btn-pro:focus,.brz-ed .brz-ed-btn-pro:hover{border-color:transparent;background-color:rgba(214,44,100,.8)}
|
5051 |
+
.brz-ed .brz-ed-btn-teal--hover:hover{border-color:#3dbfe8!important;background-color:#3dbfe8!important}
|
5052 |
+
.brz-ed .brz-ed-btn-red--hover:hover{border-color:#ed2164!important;background-color:#ed2164!important}
|
5053 |
.brz-ed .brz-ed-alert{font:600 14px/18px pn,"Open Sans",Arial,sans-serif;background-color:#f2f2f2;padding:12px 15px;margin:0 0 20px}
|
5054 |
.brz-ed .brz-ed-alert-error{border-left:4px solid #df3c3c;color:#df3c3c;background-color:rgba(223,60,60,.1)}
|
5055 |
.brz-ed .brz-ed-alert-error .brz-span{color:#df3c3c!important}
|
5059 |
.brz-ed .brz-ed-alert-info .popup-icon-info{float:left;margin:0 15px 5px 0;color:#47a9c8;border-color:#47a9c8}
|
5060 |
.brz-ed .brz-ed-alert-info .brz-span{color:#47a9c8!important}
|
5061 |
.brz-ed .popup-icon-info{font-family:pn,"Open Sans",Arial,sans-serif;display:inline-block;border:2px solid #ccc;color:#ccc;width:32px;height:32px;text-align:center;line-height:32px;font-size:18px;border-radius:50%;margin-bottom:10px}
|
5062 |
+
.brz-ed .brz-ed-alert-pro{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:#d62c64;background-color:#e0e1e2;padding:21px 36px}
|
5063 |
.brz-ed .brz-ed-rotate--180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}
|
5064 |
.brz-ed .brz-ed-rotate--90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
|
5065 |
+
.brz-ed .brz-ed-badge{font-family:pn,"Open Sans",Arial,sans-serif;font-size:9px;font-weight:600;color:#fff;background-color:#3dbfe8;border-radius:4px;text-transform:uppercase;display:inline-block;line-height:1;padding:4px 5px}
|
5066 |
+
.brz-ed .brz-ed-badge--pro{background-color:#d62c64}
|
5067 |
+
.brz-ed .brz-ed-badge__delete{width:28px;height:28px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:12px;border-radius:28px;background-color:#fff;color:#03080f;-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.25);box-shadow:0 0 2px 0 rgba(0,0,0,.25);cursor:pointer;-webkit-transition:.2s linear opacity,.2s linear color;transition:.2s linear opacity,.2s linear color}
|
5068 |
+
.brz-ed .brz-ed-badge__delete:hover{color:#ed2164;-webkit-transition:.2s linear color;transition:.2s linear color}
|
5069 |
+
.brz-ed .nc-outline-2x-drag-down:before{content:"\ea01"}
|
5070 |
+
.brz-ed .nc-outline-2x-drag-up:before{content:"\ea02"}
|
5071 |
+
.brz-ed .nc-outline-2x-swipe-down:before{content:"\ea03"}
|
5072 |
+
.brz-ed .nc-outline-2x-swipe-left:before{content:"\ea04"}
|
5073 |
+
.brz-ed .nc-outline-2x-swipe-right:before{content:"\ea05"}
|
5074 |
+
.brz-ed .nc-outline-2x-swipe-up:before{content:"\ea06"}
|
5075 |
+
.brz-ed .nc-outline-2x-tap:before{content:"\ea07"}
|
5076 |
+
.brz-ed .nc-outline-3d-29:before{content:"\ea08"}
|
5077 |
+
.brz-ed .nc-outline-3d-model:before{content:"\ea09"}
|
5078 |
+
.brz-ed .nc-outline-3d:before{content:"\ea0a"}
|
5079 |
+
.brz-ed .nc-outline-3x-swipe-left:before{content:"\ea0b"}
|
5080 |
+
.brz-ed .nc-outline-3x-swipe-right:before{content:"\ea0c"}
|
5081 |
+
.brz-ed .nc-outline-3x-swipe-up:before{content:"\ea0e"}
|
5082 |
+
.brz-ed .nc-outline-3x-tap:before{content:"\ea0d"}
|
5083 |
+
.brz-ed .nc-outline-4x-swipe-left:before{content:"\ea0f"}
|
5084 |
+
.brz-ed .nc-outline-4x-swipe-right:before{content:"\ea10"}
|
5085 |
+
.brz-ed .nc-outline-4x-swipe-up:before{content:"\ea11"}
|
5086 |
+
.brz-ed .nc-outline-a-add:before{content:"\ea12"}
|
5087 |
+
.brz-ed .nc-outline-a-check:before{content:"\ea13"}
|
5088 |
+
.brz-ed .nc-outline-a-delete:before{content:"\ea14"}
|
5089 |
+
.brz-ed .nc-outline-a-edit:before{content:"\ea15"}
|
5090 |
+
.brz-ed .nc-outline-a-heart:before{content:"\ea16"}
|
5091 |
+
.brz-ed .nc-outline-a-location:before{content:"\ea17"}
|
5092 |
+
.brz-ed .nc-outline-a-remove:before{content:"\ea18"}
|
5093 |
+
.brz-ed .nc-outline-a-search:before{content:"\ea19"}
|
5094 |
+
.brz-ed .nc-outline-a-security:before{content:"\ea1a"}
|
5095 |
+
.brz-ed .nc-outline-a-share:before{content:"\ea1b"}
|
5096 |
+
.brz-ed .nc-outline-a-star:before{content:"\ea1c"}
|
5097 |
+
.brz-ed .nc-outline-a-sync:before{content:"\ea1d"}
|
5098 |
+
.brz-ed .nc-outline-a-time:before{content:"\ea1e"}
|
5099 |
+
.brz-ed .nc-outline-abc:before{content:"\ea1f"}
|
5100 |
+
.brz-ed .nc-outline-accessibility:before{content:"\ea20"}
|
5101 |
+
.brz-ed .nc-outline-action-73:before{content:"\ea22"}
|
5102 |
+
.brz-ed .nc-outline-action-74:before{content:"\ea21"}
|
5103 |
+
.brz-ed .nc-outline-active-38:before{content:"\ea23"}
|
5104 |
+
.brz-ed .nc-outline-active-40:before{content:"\ea24"}
|
5105 |
+
.brz-ed .nc-outline-add-27:before{content:"\ea26"}
|
5106 |
+
.brz-ed .nc-outline-add-29:before{content:"\ea25"}
|
5107 |
+
.brz-ed .nc-outline-add:before{content:"\ea28"}
|
5108 |
+
.brz-ed .nc-outline-agenda-bookmark:before{content:"\ea27"}
|
5109 |
+
.brz-ed .nc-outline-agenda:before{content:"\ea29"}
|
5110 |
+
.brz-ed .nc-outline-air-baloon:before{content:"\ea2a"}
|
5111 |
+
.brz-ed .nc-outline-air-conditioner:before{content:"\ea2b"}
|
5112 |
+
.brz-ed .nc-outline-airbag:before{content:"\ea2c"}
|
5113 |
+
.brz-ed .nc-outline-alarm-add:before{content:"\ea2d"}
|
5114 |
+
.brz-ed .nc-outline-alarm-delete:before{content:"\ea2e"}
|
5115 |
+
.brz-ed .nc-outline-album-2:before{content:"\ea2f"}
|
5116 |
+
.brz-ed .nc-outline-album:before{content:"\ea30"}
|
5117 |
+
.brz-ed .nc-outline-alcohol:before{content:"\ea31"}
|
5118 |
+
.brz-ed .nc-outline-alert-circle-exc:before{content:"\ea32"}
|
5119 |
+
.brz-ed .nc-outline-alert-circle-i:before{content:"\ea33"}
|
5120 |
+
.brz-ed .nc-outline-alert-circle-que:before{content:"\ea34"}
|
5121 |
+
.brz-ed .nc-outline-alert-exc:before{content:"\ea35"}
|
5122 |
+
.brz-ed .nc-outline-alert-i:before{content:"\ea36"}
|
5123 |
+
.brz-ed .nc-outline-alert-que:before{content:"\ea37"}
|
5124 |
+
.brz-ed .nc-outline-alert-square-exc:before{content:"\ea38"}
|
5125 |
+
.brz-ed .nc-outline-alert-square-i:before{content:"\ea39"}
|
5126 |
+
.brz-ed .nc-outline-alert-square-que:before{content:"\ea3a"}
|
5127 |
+
.brz-ed .nc-outline-alert:before{content:"\ea3b"}
|
5128 |
+
.brz-ed .nc-outline-alien-29:before{content:"\ea3c"}
|
5129 |
+
.brz-ed .nc-outline-alien-33:before{content:"\ea3d"}
|
5130 |
+
.brz-ed .nc-outline-align-bottom:before{content:"\ea3e"}
|
5131 |
+
.brz-ed .nc-outline-align-center-horizontal:before{content:"\ea3f"}
|
5132 |
+
.brz-ed .nc-outline-align-center-vertical:before{content:"\ea40"}
|
5133 |
+
.brz-ed .nc-outline-align-center:before{content:"\ea41"}
|
5134 |
+
.brz-ed .nc-outline-align-justify:before{content:"\ea42"}
|
5135 |
+
.brz-ed .nc-outline-align-left-2:before{content:"\ea43"}
|
5136 |
+
.brz-ed .nc-outline-align-left:before{content:"\ea44"}
|
5137 |
+
.brz-ed .nc-outline-align-right-2:before{content:"\ea45"}
|
5138 |
+
.brz-ed .nc-outline-align-right:before{content:"\ea46"}
|
5139 |
+
.brz-ed .nc-outline-align-top:before{content:"\ea47"}
|
5140 |
+
.brz-ed .nc-outline-ambulance:before{content:"\ea48"}
|
5141 |
+
.brz-ed .nc-outline-analytics-88:before{content:"\ea49"}
|
5142 |
+
.brz-ed .nc-outline-analytics-89:before{content:"\ea4a"}
|
5143 |
+
.brz-ed .nc-outline-anchor:before{content:"\ea4c"}
|
5144 |
+
.brz-ed .nc-outline-android:before{content:"\ea4b"}
|
5145 |
+
.brz-ed .nc-outline-angle:before{content:"\ea4d"}
|
5146 |
+
.brz-ed .nc-outline-angry-10:before{content:"\ea4e"}
|
5147 |
+
.brz-ed .nc-outline-angry-44:before{content:"\ea50"}
|
5148 |
+
.brz-ed .nc-outline-animation-14:before{content:"\ea4f"}
|
5149 |
+
.brz-ed .nc-outline-animation-31:before{content:"\ea51"}
|
5150 |
+
.brz-ed .nc-outline-animation-32:before{content:"\ea52"}
|
5151 |
+
.brz-ed .nc-outline-app:before{content:"\ea53"}
|
5152 |
+
.brz-ed .nc-outline-apple-2:before{content:"\ea54"}
|
5153 |
+
.brz-ed .nc-outline-apple:before{content:"\ea55"}
|
5154 |
+
.brz-ed .nc-outline-appointment:before{content:"\ea56"}
|
5155 |
+
.brz-ed .nc-outline-archive-2:before{content:"\ea57"}
|
5156 |
+
.brz-ed .nc-outline-archive-3d-check:before{content:"\ea58"}
|
5157 |
+
.brz-ed .nc-outline-archive-3d-content:before{content:"\ea59"}
|
5158 |
+
.brz-ed .nc-outline-archive-check:before{content:"\ea5a"}
|
5159 |
+
.brz-ed .nc-outline-archive-content:before{content:"\ea5b"}
|
5160 |
+
.brz-ed .nc-outline-archive-paper-check:before{content:"\ea5c"}
|
5161 |
+
.brz-ed .nc-outline-archive-paper:before{content:"\ea5d"}
|
5162 |
+
.brz-ed .nc-outline-archive:before{content:"\ea5e"}
|
5163 |
+
.brz-ed .nc-outline-armchair:before{content:"\ea5f"}
|
5164 |
+
.brz-ed .nc-outline-artboard:before{content:"\ea60"}
|
5165 |
+
.brz-ed .nc-outline-astronaut:before{content:"\ea62"}
|
5166 |
+
.brz-ed .nc-outline-at-sign:before{content:"\ea61"}
|
5167 |
+
.brz-ed .nc-outline-atm:before{content:"\ea63"}
|
5168 |
+
.brz-ed .nc-outline-atom:before{content:"\ea64"}
|
5169 |
+
.brz-ed .nc-outline-attach-86:before{content:"\ea65"}
|
5170 |
+
.brz-ed .nc-outline-attach-87:before{content:"\ea66"}
|
5171 |
+
.brz-ed .nc-outline-aubergine:before{content:"\ea67"}
|
5172 |
+
.brz-ed .nc-outline-audio-91:before{content:"\ea68"}
|
5173 |
+
.brz-ed .nc-outline-audio-92:before{content:"\ea69"}
|
5174 |
+
.brz-ed .nc-outline-audio:before{content:"\ea6a"}
|
5175 |
+
.brz-ed .nc-outline-avocado:before{content:"\ea6c"}
|
5176 |
+
.brz-ed .nc-outline-award-48:before{content:"\ea6b"}
|
5177 |
+
.brz-ed .nc-outline-award-49:before{content:"\ea6d"}
|
5178 |
+
.brz-ed .nc-outline-award-55:before{content:"\ea6e"}
|
5179 |
+
.brz-ed .nc-outline-award-74:before{content:"\ea6f"}
|
5180 |
+
.brz-ed .nc-outline-award:before{content:"\ea70"}
|
5181 |
+
.brz-ed .nc-outline-axe:before{content:"\ea71"}
|
5182 |
+
.brz-ed .nc-outline-b-add:before{content:"\ea72"}
|
5183 |
+
.brz-ed .nc-outline-b-check:before{content:"\ea74"}
|
5184 |
+
.brz-ed .nc-outline-b-location:before{content:"\ea73"}
|
5185 |
+
.brz-ed .nc-outline-b-love:before{content:"\ea75"}
|
5186 |
+
.brz-ed .nc-outline-b-meeting:before{content:"\ea76"}
|
5187 |
+
.brz-ed .nc-outline-b-remove:before{content:"\ea78"}
|
5188 |
+
.brz-ed .nc-outline-b-security:before{content:"\ea77"}
|
5189 |
+
.brz-ed .nc-outline-baby-2:before{content:"\ea79"}
|
5190 |
+
.brz-ed .nc-outline-baby-3:before{content:"\ea7a"}
|
5191 |
+
.brz-ed .nc-outline-baby-bottle:before{content:"\ea7b"}
|
5192 |
+
.brz-ed .nc-outline-baby:before{content:"\ea7c"}
|
5193 |
+
.brz-ed .nc-outline-back-78:before{content:"\ea7d"}
|
5194 |
+
.brz-ed .nc-outline-back-80:before{content:"\ea7e"}
|
5195 |
+
.brz-ed .nc-outline-background:before{content:"\ea7f"}
|
5196 |
+
.brz-ed .nc-outline-backpack-2:before{content:"\ea80"}
|
5197 |
+
.brz-ed .nc-outline-backpack-57:before{content:"\ea81"}
|
5198 |
+
.brz-ed .nc-outline-backpack-58:before{content:"\ea82"}
|
5199 |
+
.brz-ed .nc-outline-backpack:before{content:"\ea83"}
|
5200 |
+
.brz-ed .nc-outline-backward:before{content:"\ea84"}
|
5201 |
+
.brz-ed .nc-outline-bacon:before{content:"\ea85"}
|
5202 |
+
.brz-ed .nc-outline-badge-13:before{content:"\ea86"}
|
5203 |
+
.brz-ed .nc-outline-badge-14:before{content:"\ea87"}
|
5204 |
+
.brz-ed .nc-outline-badge-15:before{content:"\ea88"}
|
5205 |
+
.brz-ed .nc-outline-badge:before{content:"\ea89"}
|
5206 |
+
.brz-ed .nc-outline-badminton:before{content:"\ea8a"}
|
5207 |
+
.brz-ed .nc-outline-bag-09:before{content:"\ea8b"}
|
5208 |
+
.brz-ed .nc-outline-bag-16:before{content:"\ea8c"}
|
5209 |
+
.brz-ed .nc-outline-bag-17:before{content:"\ea8d"}
|
5210 |
+
.brz-ed .nc-outline-bag-20:before{content:"\ea8e"}
|
5211 |
+
.brz-ed .nc-outline-bag-21:before{content:"\ea8f"}
|
5212 |
+
.brz-ed .nc-outline-bag-22:before{content:"\ea90"}
|
5213 |
+
.brz-ed .nc-outline-bag-49:before{content:"\ea91"}
|
5214 |
+
.brz-ed .nc-outline-bag-50:before{content:"\ea92"}
|
5215 |
+
.brz-ed .nc-outline-bag-add-18:before{content:"\ea93"}
|
5216 |
+
.brz-ed .nc-outline-bag-add-21:before{content:"\ea94"}
|
5217 |
+
.brz-ed .nc-outline-bag-delivery:before{content:"\ea95"}
|
5218 |
+
.brz-ed .nc-outline-bag-edit:before{content:"\ea96"}
|
5219 |
+
.brz-ed .nc-outline-bag-remove-19:before{content:"\ea97"}
|
5220 |
+
.brz-ed .nc-outline-bag-remove-22:before{content:"\ea98"}
|
5221 |
+
.brz-ed .nc-outline-bag-time:before{content:"\ea99"}
|
5222 |
+
.brz-ed .nc-outline-bag:before{content:"\ea9a"}
|
5223 |
+
.brz-ed .nc-outline-baguette:before{content:"\ea9b"}
|
5224 |
+
.brz-ed .nc-outline-balance:before{content:"\ea9c"}
|
5225 |
+
.brz-ed .nc-outline-ball-basket:before{content:"\ea9d"}
|
5226 |
+
.brz-ed .nc-outline-ball-soccer:before{content:"\ea9e"}
|
5227 |
+
.brz-ed .nc-outline-baloon:before{content:"\eaa0"}
|
5228 |
+
.brz-ed .nc-outline-ban-bold:before{content:"\ea9f"}
|
5229 |
+
.brz-ed .nc-outline-ban:before{content:"\eaa1"}
|
5230 |
+
.brz-ed .nc-outline-banana:before{content:"\eaa2"}
|
5231 |
+
.brz-ed .nc-outline-bank:before{content:"\eaa3"}
|
5232 |
+
.brz-ed .nc-outline-barbecue-15:before{content:"\eaa4"}
|
5233 |
+
.brz-ed .nc-outline-barbecue-tools:before{content:"\eaa5"}
|
5234 |
+
.brz-ed .nc-outline-barbecue:before{content:"\eaa6"}
|
5235 |
+
.brz-ed .nc-outline-barcode-qr:before{content:"\eaa7"}
|
5236 |
+
.brz-ed .nc-outline-barcode-scan:before{content:"\eaa8"}
|
5237 |
+
.brz-ed .nc-outline-barcode:before{content:"\eaa9"}
|
5238 |
+
.brz-ed .nc-outline-bars-2:before{content:"\eaaa"}
|
5239 |
+
.brz-ed .nc-outline-bars-rotate:before{content:"\eaac"}
|
5240 |
+
.brz-ed .nc-outline-bars:before{content:"\eaab"}
|
5241 |
+
.brz-ed .nc-outline-baseball-ball:before{content:"\eaad"}
|
5242 |
+
.brz-ed .nc-outline-baseball-bat:before{content:"\eaae"}
|
5243 |
+
.brz-ed .nc-outline-baseball:before{content:"\eaaf"}
|
5244 |
+
.brz-ed .nc-outline-basket-add:before{content:"\eab0"}
|
5245 |
+
.brz-ed .nc-outline-basket-edit:before{content:"\eab1"}
|
5246 |
+
.brz-ed .nc-outline-basket-favorite:before{content:"\eab2"}
|
5247 |
+
.brz-ed .nc-outline-basket-remove:before{content:"\eab3"}
|
5248 |
+
.brz-ed .nc-outline-basket-search:before{content:"\eab4"}
|
5249 |
+
.brz-ed .nc-outline-basket-share:before{content:"\eab5"}
|
5250 |
+
.brz-ed .nc-outline-basket-simple-add:before{content:"\eab6"}
|
5251 |
+
.brz-ed .nc-outline-basket-simple-remove:before{content:"\eab7"}
|
5252 |
+
.brz-ed .nc-outline-basket-simple:before{content:"\eab8"}
|
5253 |
+
.brz-ed .nc-outline-basket-update:before{content:"\eab9"}
|
5254 |
+
.brz-ed .nc-outline-basket:before{content:"\eaba"}
|
5255 |
+
.brz-ed .nc-outline-basketball-12:before{content:"\eabb"}
|
5256 |
+
.brz-ed .nc-outline-basketball-13:before{content:"\eabc"}
|
5257 |
+
.brz-ed .nc-outline-bat:before{content:"\eabd"}
|
5258 |
+
.brz-ed .nc-outline-bath-tub:before{content:"\eabe"}
|
5259 |
+
.brz-ed .nc-outline-battery-81:before{content:"\eabf"}
|
5260 |
+
.brz-ed .nc-outline-battery-83:before{content:"\eac0"}
|
5261 |
+
.brz-ed .nc-outline-battery-half:before{content:"\eac1"}
|
5262 |
+
.brz-ed .nc-outline-battery-level:before{content:"\eac2"}
|
5263 |
+
.brz-ed .nc-outline-battery-low:before{content:"\eac3"}
|
5264 |
+
.brz-ed .nc-outline-battery:before{content:"\eac4"}
|
5265 |
+
.brz-ed .nc-outline-bear-2:before{content:"\eac5"}
|
5266 |
+
.brz-ed .nc-outline-bear:before{content:"\eac6"}
|
5267 |
+
.brz-ed .nc-outline-bed-09:before{content:"\eac8"}
|
5268 |
+
.brz-ed .nc-outline-bed-23:before{content:"\eac9"}
|
5269 |
+
.brz-ed .nc-outline-bed-side:before{content:"\eac7"}
|
5270 |
+
.brz-ed .nc-outline-bee:before{content:"\eaca"}
|
5271 |
+
.brz-ed .nc-outline-beer-95:before{content:"\eacb"}
|
5272 |
+
.brz-ed .nc-outline-beer-96:before{content:"\eacc"}
|
5273 |
+
.brz-ed .nc-outline-bell-53:before{content:"\eacd"}
|
5274 |
+
.brz-ed .nc-outline-bell-54:before{content:"\eace"}
|
5275 |
+
.brz-ed .nc-outline-bell-55:before{content:"\eacf"}
|
5276 |
+
.brz-ed .nc-outline-belt:before{content:"\ead0"}
|
5277 |
+
.brz-ed .nc-outline-berlin:before{content:"\ead1"}
|
5278 |
+
.brz-ed .nc-outline-beverage:before{content:"\ead2"}
|
5279 |
+
.brz-ed .nc-outline-big-eyes:before{content:"\ead4"}
|
5280 |
+
.brz-ed .nc-outline-big-smile:before{content:"\ead3"}
|
5281 |
+
.brz-ed .nc-outline-bigmouth:before{content:"\ead5"}
|
5282 |
+
.brz-ed .nc-outline-bike-2:before{content:"\ead6"}
|
5283 |
+
.brz-ed .nc-outline-bike:before{content:"\ead7"}
|
5284 |
+
.brz-ed .nc-outline-bill:before{content:"\ead9"}
|
5285 |
+
.brz-ed .nc-outline-billiard:before{content:"\ead8"}
|
5286 |
+
.brz-ed .nc-outline-binocular:before{content:"\eada"}
|
5287 |
+
.brz-ed .nc-outline-biscuit:before{content:"\eadb"}
|
5288 |
+
.brz-ed .nc-outline-bitcoin:before{content:"\eadc"}
|
5289 |
+
.brz-ed .nc-outline-bleah:before{content:"\eadd"}
|
5290 |
+
.brz-ed .nc-outline-blend:before{content:"\eade"}
|
5291 |
+
.brz-ed .nc-outline-blind:before{content:"\eae0"}
|
5292 |
+
.brz-ed .nc-outline-block-bottom-left:before{content:"\eadf"}
|
5293 |
+
.brz-ed .nc-outline-block-bottom-right:before{content:"\eae1"}
|
5294 |
+
.brz-ed .nc-outline-block-down:before{content:"\eae2"}
|
5295 |
+
.brz-ed .nc-outline-block-left:before{content:"\eae3"}
|
5296 |
+
.brz-ed .nc-outline-block-right:before{content:"\eae4"}
|
5297 |
+
.brz-ed .nc-outline-block-top-left:before{content:"\eae5"}
|
5298 |
+
.brz-ed .nc-outline-block-top-right:before{content:"\eae6"}
|
5299 |
+
.brz-ed .nc-outline-block-up:before{content:"\eae8"}
|
5300 |
+
.brz-ed .nc-outline-blog:before{content:"\eae7"}
|
5301 |
+
.brz-ed .nc-outline-blueberries:before{content:"\eae9"}
|
5302 |
+
.brz-ed .nc-outline-bluetooth:before{content:"\eaea"}
|
5303 |
+
.brz-ed .nc-outline-board-2:before{content:"\eaeb"}
|
5304 |
+
.brz-ed .nc-outline-board-27:before{content:"\eaec"}
|
5305 |
+
.brz-ed .nc-outline-board-28:before{content:"\eaed"}
|
5306 |
+
.brz-ed .nc-outline-board-29:before{content:"\eaee"}
|
5307 |
+
.brz-ed .nc-outline-board-30:before{content:"\eaef"}
|
5308 |
+
.brz-ed .nc-outline-board-51:before{content:"\eaf0"}
|
5309 |
+
.brz-ed .nc-outline-board:before{content:"\eaf1"}
|
5310 |
+
.brz-ed .nc-outline-boat-front:before{content:"\eaf2"}
|
5311 |
+
.brz-ed .nc-outline-boat-small-02:before{content:"\eaf3"}
|
5312 |
+
.brz-ed .nc-outline-boat-small-03:before{content:"\eaf4"}
|
5313 |
+
.brz-ed .nc-outline-boat:before{content:"\eaf5"}
|
5314 |
+
.brz-ed .nc-outline-bold-add:before{content:"\eaf6"}
|
5315 |
+
.brz-ed .nc-outline-bold-delete:before{content:"\eaf7"}
|
5316 |
+
.brz-ed .nc-outline-bold-direction:before{content:"\eaf8"}
|
5317 |
+
.brz-ed .nc-outline-bold-down:before{content:"\eaf9"}
|
5318 |
+
.brz-ed .nc-outline-bold-left:before{content:"\eafa"}
|
5319 |
+
.brz-ed .nc-outline-bold-remove:before{content:"\eafc"}
|
5320 |
+
.brz-ed .nc-outline-bold-right:before{content:"\eafb"}
|
5321 |
+
.brz-ed .nc-outline-bold-up:before{content:"\eafd"}
|
5322 |
+
.brz-ed .nc-outline-bold:before{content:"\eafe"}
|
5323 |
+
.brz-ed .nc-outline-bolt:before{content:"\eaff"}
|
5324 |
+
.brz-ed .nc-outline-bomb:before{content:"\eb00"}
|
5325 |
+
.brz-ed .nc-outline-bones:before{content:"\eb01"}
|
5326 |
+
.brz-ed .nc-outline-book-07:before{content:"\eb02"}
|
5327 |
+
.brz-ed .nc-outline-book-08:before{content:"\eb03"}
|
5328 |
+
.brz-ed .nc-outline-book-39:before{content:"\eb04"}
|
5329 |
+
.brz-ed .nc-outline-book-bookmark-2:before{content:"\eb05"}
|
5330 |
+
.brz-ed .nc-outline-book-bookmark:before{content:"\eb06"}
|
5331 |
+
.brz-ed .nc-outline-book-open-2:before{content:"\eb07"}
|
5332 |
+
.brz-ed .nc-outline-book-open:before{content:"\eb08"}
|
5333 |
+
.brz-ed .nc-outline-book:before{content:"\eb09"}
|
5334 |
+
.brz-ed .nc-outline-bookmark-2:before{content:"\eb0a"}
|
5335 |
+
.brz-ed .nc-outline-bookmark-add-2:before{content:"\eb0b"}
|
5336 |
+
.brz-ed .nc-outline-bookmark-add:before{content:"\eb0c"}
|
5337 |
+
.brz-ed .nc-outline-bookmark-remove-2:before{content:"\eb0d"}
|
5338 |
+
.brz-ed .nc-outline-bookmark-remove:before{content:"\eb0e"}
|
5339 |
+
.brz-ed .nc-outline-bookmark:before{content:"\eb0f"}
|
5340 |
+
.brz-ed .nc-outline-books-46:before{content:"\eb10"}
|
5341 |
+
.brz-ed .nc-outline-books:before{content:"\eb11"}
|
5342 |
+
.brz-ed .nc-outline-boot-2:before{content:"\eb12"}
|
5343 |
+
.brz-ed .nc-outline-boot-woman:before{content:"\eb14"}
|
5344 |
+
.brz-ed .nc-outline-boot:before{content:"\eb15"}
|
5345 |
+
.brz-ed .nc-outline-border-radius:before{content:"\eb13"}
|
5346 |
+
.brz-ed .nc-outline-border:before{content:"\eb16"}
|
5347 |
+
.brz-ed .nc-outline-bored:before{content:"\eb17"}
|
5348 |
+
.brz-ed .nc-outline-bottle-wine:before{content:"\eb18"}
|
5349 |
+
.brz-ed .nc-outline-bottle:before{content:"\eb19"}
|
5350 |
+
.brz-ed .nc-outline-bow:before{content:"\eb1a"}
|
5351 |
+
.brz-ed .nc-outline-bowl:before{content:"\eb1b"}
|
5352 |
+
.brz-ed .nc-outline-bowling:before{content:"\eb1d"}
|
5353 |
+
.brz-ed .nc-outline-box-2:before{content:"\eb1c"}
|
5354 |
+
.brz-ed .nc-outline-box-3d-50:before{content:"\eb1e"}
|
5355 |
+
.brz-ed .nc-outline-box-ribbon:before{content:"\eb1f"}
|
5356 |
+
.brz-ed .nc-outline-box:before{content:"\eb20"}
|
5357 |
+
.brz-ed .nc-outline-boxing:before{content:"\eb21"}
|
5358 |
+
.brz-ed .nc-outline-bra:before{content:"\eb22"}
|
5359 |
+
.brz-ed .nc-outline-brain:before{content:"\eb23"}
|
5360 |
+
.brz-ed .nc-outline-brakes:before{content:"\eb24"}
|
5361 |
+
.brz-ed .nc-outline-bread:before{content:"\eb25"}
|
5362 |
+
.brz-ed .nc-outline-briefcase-24:before{content:"\eb26"}
|
5363 |
+
.brz-ed .nc-outline-briefcase-25:before{content:"\eb28"}
|
5364 |
+
.brz-ed .nc-outline-briefcase-26:before{content:"\eb27"}
|
5365 |
+
.brz-ed .nc-outline-brightness-46:before{content:"\eb29"}
|
5366 |
+
.brz-ed .nc-outline-brightness-47:before{content:"\eb2a"}
|
5367 |
+
.brz-ed .nc-outline-brioche:before{content:"\eb2d"}
|
5368 |
+
.brz-ed .nc-outline-broccoli:before{content:"\eb2b"}
|
5369 |
+
.brz-ed .nc-outline-broom:before{content:"\eb2c"}
|
5370 |
+
.brz-ed .nc-outline-browser-chrome:before{content:"\eb2e"}
|
5371 |
+
.brz-ed .nc-outline-browser-edge:before{content:"\eb2f"}
|
5372 |
+
.brz-ed .nc-outline-browser-firefox:before{content:"\eb30"}
|
5373 |
+
.brz-ed .nc-outline-browser-ie:before{content:"\eb31"}
|
5374 |
+
.brz-ed .nc-outline-browser-opera:before{content:"\eb32"}
|
5375 |
+
.brz-ed .nc-outline-browser-safari:before{content:"\eb35"}
|
5376 |
+
.brz-ed .nc-outline-brush:before{content:"\eb34"}
|
5377 |
+
.brz-ed .nc-outline-bucket:before{content:"\eb33"}
|
5378 |
+
.brz-ed .nc-outline-bug:before{content:"\eb36"}
|
5379 |
+
.brz-ed .nc-outline-building:before{content:"\eb37"}
|
5380 |
+
.brz-ed .nc-outline-bulb-61:before{content:"\eb39"}
|
5381 |
+
.brz-ed .nc-outline-bulb-62:before{content:"\eb38"}
|
5382 |
+
.brz-ed .nc-outline-bulb-63:before{content:"\eb3a"}
|
5383 |
+
.brz-ed .nc-outline-bulb-saver:before{content:"\eb3b"}
|
5384 |
+
.brz-ed .nc-outline-bulb:before{content:"\eb3d"}
|
5385 |
+
.brz-ed .nc-outline-bullet-list-67:before{content:"\eb3c"}
|
5386 |
+
.brz-ed .nc-outline-bullet-list-68:before{content:"\eb3e"}
|
5387 |
+
.brz-ed .nc-outline-bullet-list-69:before{content:"\eb41"}
|
5388 |
+
.brz-ed .nc-outline-bullet-list-70:before{content:"\eb3f"}
|
5389 |
+
.brz-ed .nc-outline-bullet-list:before{content:"\eb40"}
|
5390 |
+
.brz-ed .nc-outline-bus-front-10:before{content:"\eb42"}
|
5391 |
+
.brz-ed .nc-outline-bus-front-12:before{content:"\eb44"}
|
5392 |
+
.brz-ed .nc-outline-bus:before{content:"\eb45"}
|
5393 |
+
.brz-ed .nc-outline-business-contact-85:before{content:"\eb43"}
|
5394 |
+
.brz-ed .nc-outline-business-contact-89:before{content:"\eb46"}
|
5395 |
+
.brz-ed .nc-outline-businessman-03:before{content:"\eb47"}
|
5396 |
+
.brz-ed .nc-outline-businessman-04:before{content:"\eb48"}
|
5397 |
+
.brz-ed .nc-outline-butterfly:before{content:"\eb49"}
|
5398 |
+
.brz-ed .nc-outline-button-2:before{content:"\eb4a"}
|
5399 |
+
.brz-ed .nc-outline-button-circle-pause:before{content:"\eb4c"}
|
5400 |
+
.brz-ed .nc-outline-button-circle-play:before{content:"\eb4b"}
|
5401 |
+
.brz-ed .nc-outline-button-circle-stop:before{content:"\eb4d"}
|
5402 |
+
.brz-ed .nc-outline-button-eject:before{content:"\eb4e"}
|
5403 |
+
.brz-ed .nc-outline-button-next:before{content:"\eb50"}
|
5404 |
+
.brz-ed .nc-outline-button-pause:before{content:"\eb4f"}
|
5405 |
+
.brz-ed .nc-outline-button-play:before{content:"\eb51"}
|
5406 |
+
.brz-ed .nc-outline-button-power:before{content:"\eb52"}
|
5407 |
+
.brz-ed .nc-outline-button-previous:before{content:"\eb54"}
|
5408 |
+
.brz-ed .nc-outline-button-record:before{content:"\eb53"}
|
5409 |
+
.brz-ed .nc-outline-button-rewind:before{content:"\eb55"}
|
5410 |
+
.brz-ed .nc-outline-button-skip:before{content:"\eb56"}
|
5411 |
+
.brz-ed .nc-outline-button-stop:before{content:"\eb57"}
|
5412 |
+
.brz-ed .nc-outline-button:before{content:"\eb58"}
|
5413 |
+
.brz-ed .nc-outline-cabinet:before{content:"\eb59"}
|
5414 |
+
.brz-ed .nc-outline-cable-49:before{content:"\eb5a"}
|
5415 |
+
.brz-ed .nc-outline-cable-50:before{content:"\eb5b"}
|
5416 |
+
.brz-ed .nc-outline-cactus:before{content:"\eb5c"}
|
5417 |
+
.brz-ed .nc-outline-cake-100:before{content:"\eb5d"}
|
5418 |
+
.brz-ed .nc-outline-cake-13:before{content:"\eb5e"}
|
5419 |
+
.brz-ed .nc-outline-cake-slice:before{content:"\eb5f"}
|
5420 |
+
.brz-ed .nc-outline-cake:before{content:"\eb60"}
|
5421 |
+
.brz-ed .nc-outline-calculator:before{content:"\eb61"}
|
5422 |
+
.brz-ed .nc-outline-calendar-57:before{content:"\eb62"}
|
5423 |
+
.brz-ed .nc-outline-calendar-60:before{content:"\eb64"}
|
5424 |
+
.brz-ed .nc-outline-calendar-add:before{content:"\eb65"}
|
5425 |
+
.brz-ed .nc-outline-calendar-check-59:before{content:"\eb63"}
|
5426 |
+
.brz-ed .nc-outline-calendar-check-62:before{content:"\eb66"}
|
5427 |
+
.brz-ed .nc-outline-calendar-grid-58:before{content:"\eb67"}
|
5428 |
+
.brz-ed .nc-outline-calendar-grid-61:before{content:"\eb68"}
|
5429 |
+
.brz-ed .nc-outline-camera-18:before{content:"\eb69"}
|
5430 |
+
.brz-ed .nc-outline-camera-19:before{content:"\eb6a"}
|
5431 |
+
.brz-ed .nc-outline-camera-20:before{content:"\eb6b"}
|
5432 |
+
.brz-ed .nc-outline-camera-ban-36:before{content:"\eb6c"}
|
5433 |
+
.brz-ed .nc-outline-camera-ban-37:before{content:"\eb6d"}
|
5434 |
+
.brz-ed .nc-outline-camera-compact:before{content:"\eb6e"}
|
5435 |
+
.brz-ed .nc-outline-camera-screen:before{content:"\eb6f"}
|
5436 |
+
.brz-ed .nc-outline-camera-square-57:before{content:"\eb70"}
|
5437 |
+
.brz-ed .nc-outline-camera-square-58:before{content:"\eb71"}
|
5438 |
+
.brz-ed .nc-outline-camera-time:before{content:"\eb72"}
|
5439 |
+
.brz-ed .nc-outline-camera:before{content:"\eb73"}
|
5440 |
+
.brz-ed .nc-outline-camper:before{content:"\eb75"}
|
5441 |
+
.brz-ed .nc-outline-camping:before{content:"\eb74"}
|
5442 |
+
.brz-ed .nc-outline-candle:before{content:"\eb76"}
|
5443 |
+
.brz-ed .nc-outline-candy-2:before{content:"\eb77"}
|
5444 |
+
.brz-ed .nc-outline-candy:before{content:"\eb78"}
|
5445 |
+
.brz-ed .nc-outline-canvas:before{content:"\eb79"}
|
5446 |
+
.brz-ed .nc-outline-cap:before{content:"\eb7a"}
|
5447 |
+
.brz-ed .nc-outline-capitalize:before{content:"\eb7b"}
|
5448 |
+
.brz-ed .nc-outline-caps-all:before{content:"\eb7c"}
|
5449 |
+
.brz-ed .nc-outline-caps-small:before{content:"\eb7d"}
|
5450 |
+
.brz-ed .nc-outline-car-2:before{content:"\eb7e"}
|
5451 |
+
.brz-ed .nc-outline-car-accident:before{content:"\eb7f"}
|
5452 |
+
.brz-ed .nc-outline-car-connect:before{content:"\eb80"}
|
5453 |
+
.brz-ed .nc-outline-car-door:before{content:"\eb81"}
|
5454 |
+
.brz-ed .nc-outline-car-front:before{content:"\eb82"}
|
5455 |
+
.brz-ed .nc-outline-car-lights:before{content:"\eb83"}
|
5456 |
+
.brz-ed .nc-outline-car-parking:before{content:"\eb84"}
|
5457 |
+
.brz-ed .nc-outline-car-simple:before{content:"\eb85"}
|
5458 |
+
.brz-ed .nc-outline-car-sport:before{content:"\eb86"}
|
5459 |
+
.brz-ed .nc-outline-car-taxi:before{content:"\eb87"}
|
5460 |
+
.brz-ed .nc-outline-car-ventilation:before{content:"\eb88"}
|
5461 |
+
.brz-ed .nc-outline-car-wash:before{content:"\eb89"}
|
5462 |
+
.brz-ed .nc-outline-car:before{content:"\eb8a"}
|
5463 |
+
.brz-ed .nc-outline-card-add-2:before{content:"\eb8b"}
|
5464 |
+
.brz-ed .nc-outline-card-add:before{content:"\eb8c"}
|
5465 |
+
.brz-ed .nc-outline-card-alert:before{content:"\eb8d"}
|
5466 |
+
.brz-ed .nc-outline-card-edit:before{content:"\eb8e"}
|
5467 |
+
.brz-ed .nc-outline-card-favorite:before{content:"\eb8f"}
|
5468 |
+
.brz-ed .nc-outline-card-remove:before{content:"\eb90"}
|
5469 |
+
.brz-ed .nc-outline-card-update:before{content:"\eb91"}
|
5470 |
+
.brz-ed .nc-outline-cardio:before{content:"\eb92"}
|
5471 |
+
.brz-ed .nc-outline-cards:before{content:"\eb94"}
|
5472 |
+
.brz-ed .nc-outline-carrot:before{content:"\eb95"}
|
5473 |
+
.brz-ed .nc-outline-cart-9:before{content:"\eb93"}
|
5474 |
+
.brz-ed .nc-outline-cart-add-9:before{content:"\eb96"}
|
5475 |
+
.brz-ed .nc-outline-cart-add:before{content:"\eb97"}
|
5476 |
+
.brz-ed .nc-outline-cart-favorite:before{content:"\eb98"}
|
5477 |
+
.brz-ed .nc-outline-cart-full:before{content:"\eb99"}
|
5478 |
+
.brz-ed .nc-outline-cart-in-9:before{content:"\eb9a"}
|
5479 |
+
.brz-ed .nc-outline-cart-refresh:before{content:"\eb9c"}
|
5480 |
+
.brz-ed .nc-outline-cart-remove-9:before{content:"\eb9b"}
|
5481 |
+
.brz-ed .nc-outline-cart-remove:before{content:"\eb9d"}
|
5482 |
+
.brz-ed .nc-outline-cart-return:before{content:"\eb9e"}
|
5483 |
+
.brz-ed .nc-outline-cart-simple-add:before{content:"\eb9f"}
|
5484 |
+
.brz-ed .nc-outline-cart-simple-in:before{content:"\eba1"}
|
5485 |
+
.brz-ed .nc-outline-cart-simple-remove:before{content:"\eba0"}
|
5486 |
+
.brz-ed .nc-outline-cart-simple:before{content:"\eba2"}
|
5487 |
+
.brz-ed .nc-outline-cart-speed:before{content:"\eba3"}
|
5488 |
+
.brz-ed .nc-outline-cart:before{content:"\eba4"}
|
5489 |
+
.brz-ed .nc-outline-cash-register:before{content:"\eba5"}
|
5490 |
+
.brz-ed .nc-outline-castle:before{content:"\eba6"}
|
5491 |
+
.brz-ed .nc-outline-cat:before{content:"\eba7"}
|
5492 |
+
.brz-ed .nc-outline-cauldron:before{content:"\eba8"}
|
5493 |
+
.brz-ed .nc-outline-cctv:before{content:"\eba9"}
|
5494 |
+
.brz-ed .nc-outline-cd-reader:before{content:"\ebaa"}
|
5495 |
+
.brz-ed .nc-outline-celsius:before{content:"\ebab"}
|
5496 |
+
.brz-ed .nc-outline-centralize:before{content:"\ebac"}
|
5497 |
+
.brz-ed .nc-outline-chair-2:before{content:"\ebad"}
|
5498 |
+
.brz-ed .nc-outline-chair:before{content:"\ebae"}
|
5499 |
+
.brz-ed .nc-outline-chalkboard:before{content:"\ebaf"}
|
5500 |
+
.brz-ed .nc-outline-champagne:before{content:"\ebb0"}
|
5501 |
+
.brz-ed .nc-outline-chart-2:before{content:"\ebb1"}
|
5502 |
+
.brz-ed .nc-outline-chart-3:before{content:"\ebb2"}
|
5503 |
+
.brz-ed .nc-outline-chart-bar-32:before{content:"\ebb3"}
|
5504 |
+
.brz-ed .nc-outline-chart-bar-33:before{content:"\ebb4"}
|
5505 |
+
.brz-ed .nc-outline-chart-bar-52:before{content:"\ebb5"}
|
5506 |
+
.brz-ed .nc-outline-chart-bar-53:before{content:"\ebb6"}
|
5507 |
+
.brz-ed .nc-outline-chart-bar:before{content:"\ebb7"}
|
5508 |
+
.brz-ed .nc-outline-chart-bars:before{content:"\ebb8"}
|
5509 |
+
.brz-ed .nc-outline-chart-growth:before{content:"\ebb9"}
|
5510 |
+
.brz-ed .nc-outline-chart-pie-35:before{content:"\ebba"}
|
5511 |
+
.brz-ed .nc-outline-chart-pie-36:before{content:"\ebbb"}
|
5512 |
+
.brz-ed .nc-outline-chart-pie:before{content:"\ebbc"}
|
5513 |
+
.brz-ed .nc-outline-chart:before{content:"\ebbd"}
|
5514 |
+
.brz-ed .nc-outline-chat-33:before{content:"\ebbe"}
|
5515 |
+
.brz-ed .nc-outline-chat-45:before{content:"\ebbf"}
|
5516 |
+
.brz-ed .nc-outline-chat-46:before{content:"\ebc0"}
|
5517 |
+
.brz-ed .nc-outline-chat-content:before{content:"\ebc1"}
|
5518 |
+
.brz-ed .nc-outline-chat-reply:before{content:"\ebc2"}
|
5519 |
+
.brz-ed .nc-outline-chat-round-content:before{content:"\ebc3"}
|
5520 |
+
.brz-ed .nc-outline-chat-round:before{content:"\ebc4"}
|
5521 |
+
.brz-ed .nc-outline-chat:before{content:"\ebc5"}
|
5522 |
+
.brz-ed .nc-outline-check-2:before{content:"\ebc6"}
|
5523 |
+
.brz-ed .nc-outline-check-bold:before{content:"\ebc7"}
|
5524 |
+
.brz-ed .nc-outline-check-circle-07:before{content:"\ebc8"}
|
5525 |
+
.brz-ed .nc-outline-check-circle-08:before{content:"\ebc9"}
|
5526 |
+
.brz-ed .nc-outline-check-curve:before{content:"\ebca"}
|
5527 |
+
.brz-ed .nc-outline-check-in:before{content:"\ebcb"}
|
5528 |
+
.brz-ed .nc-outline-check-out:before{content:"\ebcc"}
|
5529 |
+
.brz-ed .nc-outline-check-simple:before{content:"\ebcd"}
|
5530 |
+
.brz-ed .nc-outline-check-small:before{content:"\ebce"}
|
5531 |
+
.brz-ed .nc-outline-check-square-09:before{content:"\ebcf"}
|
5532 |
+
.brz-ed .nc-outline-check-square-11:before{content:"\ebd0"}
|
5533 |
+
.brz-ed .nc-outline-check:before{content:"\ebd1"}
|
5534 |
+
.brz-ed .nc-outline-cheese-24:before{content:"\ebd2"}
|
5535 |
+
.brz-ed .nc-outline-cheese-87:before{content:"\ebd3"}
|
5536 |
+
.brz-ed .nc-outline-cheeseburger:before{content:"\ebd4"}
|
5537 |
+
.brz-ed .nc-outline-chef-hat:before{content:"\ebd6"}
|
5538 |
+
.brz-ed .nc-outline-chef:before{content:"\ebd5"}
|
5539 |
+
.brz-ed .nc-outline-cheque-2:before{content:"\ebd7"}
|
5540 |
+
.brz-ed .nc-outline-cheque-3:before{content:"\ebd8"}
|
5541 |
+
.brz-ed .nc-outline-cheque:before{content:"\ebda"}
|
5542 |
+
.brz-ed .nc-outline-cherry:before{content:"\ebd9"}
|
5543 |
+
.brz-ed .nc-outline-chicken-2:before{content:"\ebdb"}
|
5544 |
+
.brz-ed .nc-outline-chicken:before{content:"\ebdc"}
|
5545 |
+
.brz-ed .nc-outline-child:before{content:"\ebdd"}
|
5546 |
+
.brz-ed .nc-outline-chili:before{content:"\ebde"}
|
5547 |
+
.brz-ed .nc-outline-chimney:before{content:"\ebdf"}
|
5548 |
+
.brz-ed .nc-outline-china:before{content:"\ebe0"}
|
5549 |
+
.brz-ed .nc-outline-chinese:before{content:"\ebe1"}
|
5550 |
+
.brz-ed .nc-outline-chips:before{content:"\ebe2"}
|
5551 |
+
.brz-ed .nc-outline-choco-cream:before{content:"\ebe3"}
|
5552 |
+
.brz-ed .nc-outline-chocolate-mousse:before{content:"\ebe4"}
|
5553 |
+
.brz-ed .nc-outline-chocolate:before{content:"\ebe5"}
|
5554 |
+
.brz-ed .nc-outline-church:before{content:"\ebe6"}
|
5555 |
+
.brz-ed .nc-outline-churros:before{content:"\ebe7"}
|
5556 |
+
.brz-ed .nc-outline-circle-02:before{content:"\ebe8"}
|
5557 |
+
.brz-ed .nc-outline-circle-03:before{content:"\ebe9"}
|
5558 |
+
.brz-ed .nc-outline-circle-04:before{content:"\ebea"}
|
5559 |
+
.brz-ed .nc-outline-circle-08:before{content:"\ebec"}
|
5560 |
+
.brz-ed .nc-outline-circle-09:before{content:"\ebeb"}
|
5561 |
+
.brz-ed .nc-outline-circle-10:before{content:"\ebed"}
|
5562 |
+
.brz-ed .nc-outline-circle-add:before{content:"\ebee"}
|
5563 |
+
.brz-ed .nc-outline-circle-bold-add:before{content:"\ebef"}
|
5564 |
+
.brz-ed .nc-outline-circle-bold-delete:before{content:"\ebf0"}
|
5565 |
+
.brz-ed .nc-outline-circle-bold-remove:before{content:"\ebf1"}
|
5566 |
+
.brz-ed .nc-outline-circle-delete:before{content:"\ebf2"}
|
5567 |
+
.brz-ed .nc-outline-circle-down-12:before{content:"\ebf3"}
|
5568 |
+
.brz-ed .nc-outline-circle-down-40:before{content:"\ebf4"}
|
5569 |
+
.brz-ed .nc-outline-circle-in:before{content:"\ebf5"}
|
5570 |
+
.brz-ed .nc-outline-circle-left-10:before{content:"\ebf6"}
|
5571 |
+
.brz-ed .nc-outline-circle-left-38:before{content:"\ebf7"}
|
5572 |
+
.brz-ed .nc-outline-circle-out:before{content:"\ebf8"}
|
5573 |
+
.brz-ed .nc-outline-circle-remove:before{content:"\ebf9"}
|
5574 |
+
.brz-ed .nc-outline-circle-right-09:before{content:"\ebfa"}
|
5575 |
+
.brz-ed .nc-outline-circle-right-37:before{content:"\ebfc"}
|
5576 |
+
.brz-ed .nc-outline-circle-simple-down:before{content:"\ebfb"}
|
5577 |
+
.brz-ed .nc-outline-circle-simple-left:before{content:"\ebfe"}
|
5578 |
+
.brz-ed .nc-outline-circle-simple-right:before{content:"\ebfd"}
|
5579 |
+
.brz-ed .nc-outline-circle-simple-up:before{content:"\ebff"}
|
5580 |
+
.brz-ed .nc-outline-circle-up-11:before{content:"\ec00"}
|
5581 |
+
.brz-ed .nc-outline-circle-up-39:before{content:"\ec02"}
|
5582 |
+
.brz-ed .nc-outline-circle:before{content:"\ec01"}
|
5583 |
+
.brz-ed .nc-outline-circuit-round:before{content:"\ec03"}
|
5584 |
+
.brz-ed .nc-outline-circuit:before{content:"\ec04"}
|
5585 |
+
.brz-ed .nc-outline-clone:before{content:"\ec05"}
|
5586 |
+
.brz-ed .nc-outline-cloud-25:before{content:"\ec06"}
|
5587 |
+
.brz-ed .nc-outline-cloud-26:before{content:"\ec08"}
|
5588 |
+
.brz-ed .nc-outline-cloud-download-93:before{content:"\ec07"}
|
5589 |
+
.brz-ed .nc-outline-cloud-download-95:before{content:"\ec09"}
|
5590 |
+
.brz-ed .nc-outline-cloud-drop:before{content:"\ec0a"}
|
5591 |
+
.brz-ed .nc-outline-cloud-fog-31:before{content:"\ec0c"}
|
5592 |
+
.brz-ed .nc-outline-cloud-fog-32:before{content:"\ec0b"}
|
5593 |
+
.brz-ed .nc-outline-cloud-hail:before{content:"\ec0d"}
|
5594 |
+
.brz-ed .nc-outline-cloud-light:before{content:"\ec0e"}
|
5595 |
+
.brz-ed .nc-outline-cloud-moon:before{content:"\ec10"}
|
5596 |
+
.brz-ed .nc-outline-cloud-rain:before{content:"\ec0f"}
|
5597 |
+
.brz-ed .nc-outline-cloud-rainbow:before{content:"\ec11"}
|
5598 |
+
.brz-ed .nc-outline-cloud-snow-34:before{content:"\ec12"}
|
5599 |
+
.brz-ed .nc-outline-cloud-snow-42:before{content:"\ec14"}
|
5600 |
+
.brz-ed .nc-outline-cloud-sun-17:before{content:"\ec13"}
|
5601 |
+
.brz-ed .nc-outline-cloud-sun-19:before{content:"\ec15"}
|
5602 |
+
.brz-ed .nc-outline-cloud-upload-94:before{content:"\ec16"}
|
5603 |
+
.brz-ed .nc-outline-cloud-upload-96:before{content:"\ec17"}
|
5604 |
+
.brz-ed .nc-outline-cloud:before{content:"\ec18"}
|
5605 |
+
.brz-ed .nc-outline-clover:before{content:"\ec19"}
|
5606 |
+
.brz-ed .nc-outline-coat-hanger:before{content:"\ec1a"}
|
5607 |
+
.brz-ed .nc-outline-coat:before{content:"\ec1c"}
|
5608 |
+
.brz-ed .nc-outline-cockade:before{content:"\ec1b"}
|
5609 |
+
.brz-ed .nc-outline-cocktail:before{content:"\ec1d"}
|
5610 |
+
.brz-ed .nc-outline-code-editor:before{content:"\ec1e"}
|
5611 |
+
.brz-ed .nc-outline-code:before{content:"\ec1f"}
|
5612 |
+
.brz-ed .nc-outline-coffe-long:before{content:"\ec20"}
|
5613 |
+
.brz-ed .nc-outline-coffee-2:before{content:"\ec21"}
|
5614 |
+
.brz-ed .nc-outline-coffee-bean:before{content:"\ec22"}
|
5615 |
+
.brz-ed .nc-outline-coffee-long:before{content:"\ec23"}
|
5616 |
+
.brz-ed .nc-outline-coffee:before{content:"\ec24"}
|
5617 |
+
.brz-ed .nc-outline-coffin:before{content:"\ec26"}
|
5618 |
+
.brz-ed .nc-outline-coins:before{content:"\ec25"}
|
5619 |
+
.brz-ed .nc-outline-collar:before{content:"\ec28"}
|
5620 |
+
.brz-ed .nc-outline-collection:before{content:"\ec27"}
|
5621 |
+
.brz-ed .nc-outline-color:before{content:"\ec2a"}
|
5622 |
+
.brz-ed .nc-outline-command:before{content:"\ec29"}
|
5623 |
+
.brz-ed .nc-outline-comment-add:before{content:"\ec2b"}
|
5624 |
+
.brz-ed .nc-outline-compare:before{content:"\ec2c"}
|
5625 |
+
.brz-ed .nc-outline-compass-04:before{content:"\ec2e"}
|
5626 |
+
.brz-ed .nc-outline-compass-05:before{content:"\ec2d"}
|
5627 |
+
.brz-ed .nc-outline-compass-06:before{content:"\ec2f"}
|
5628 |
+
.brz-ed .nc-outline-compass-2:before{content:"\ec30"}
|
5629 |
+
.brz-ed .nc-outline-compass-3:before{content:"\ec31"}
|
5630 |
+
.brz-ed .nc-outline-compass:before{content:"\ec32"}
|
5631 |
+
.brz-ed .nc-outline-components:before{content:"\ec33"}
|
5632 |
+
.brz-ed .nc-outline-computer-monitor:before{content:"\ec34"}
|
5633 |
+
.brz-ed .nc-outline-computer-old:before{content:"\ec35"}
|
5634 |
+
.brz-ed .nc-outline-computer-upload:before{content:"\ec36"}
|
5635 |
+
.brz-ed .nc-outline-computer:before{content:"\ec37"}
|
5636 |
+
.brz-ed .nc-outline-cone:before{content:"\ec38"}
|
5637 |
+
.brz-ed .nc-outline-connect:before{content:"\ec39"}
|
5638 |
+
.brz-ed .nc-outline-connection:before{content:"\ec3a"}
|
5639 |
+
.brz-ed .nc-outline-contact-86:before{content:"\ec3b"}
|
5640 |
+
.brz-ed .nc-outline-contact-87:before{content:"\ec3c"}
|
5641 |
+
.brz-ed .nc-outline-contact-88:before{content:"\ec3d"}
|
5642 |
+
.brz-ed .nc-outline-contacts-2:before{content:"\ec3e"}
|
5643 |
+
.brz-ed .nc-outline-contacts-44:before{content:"\ec3f"}
|
5644 |
+
.brz-ed .nc-outline-contacts-45:before{content:"\ec40"}
|
5645 |
+
.brz-ed .nc-outline-contacts:before{content:"\ec41"}
|
5646 |
+
.brz-ed .nc-outline-contrast-2:before{content:"\ec42"}
|
5647 |
+
.brz-ed .nc-outline-contrast:before{content:"\ec43"}
|
5648 |
+
.brz-ed .nc-outline-controller-2:before{content:"\ec44"}
|
5649 |
+
.brz-ed .nc-outline-controller-3:before{content:"\ec45"}
|
5650 |
+
.brz-ed .nc-outline-controller:before{content:"\ec46"}
|
5651 |
+
.brz-ed .nc-outline-conversion:before{content:"\ec47"}
|
5652 |
+
.brz-ed .nc-outline-cookies:before{content:"\ec48"}
|
5653 |
+
.brz-ed .nc-outline-copy-2:before{content:"\ec4a"}
|
5654 |
+
.brz-ed .nc-outline-copy:before{content:"\ec49"}
|
5655 |
+
.brz-ed .nc-outline-corn:before{content:"\ec4b"}
|
5656 |
+
.brz-ed .nc-outline-corner-down-round:before{content:"\ec4c"}
|
5657 |
+
.brz-ed .nc-outline-corner-down:before{content:"\ec4d"}
|
5658 |
+
.brz-ed .nc-outline-corner-left-down:before{content:"\ec4e"}
|
5659 |
+
.brz-ed .nc-outline-corner-left-round:before{content:"\ec50"}
|
5660 |
+
.brz-ed .nc-outline-corner-left:before{content:"\ec4f"}
|
5661 |
+
.brz-ed .nc-outline-corner-right-down:before{content:"\ec51"}
|
5662 |
+
.brz-ed .nc-outline-corner-right-round:before{content:"\ec52"}
|
5663 |
+
.brz-ed .nc-outline-corner-right:before{content:"\ec54"}
|
5664 |
+
.brz-ed .nc-outline-corner-up-left:before{content:"\ec53"}
|
5665 |
+
.brz-ed .nc-outline-corner-up-right:before{content:"\ec55"}
|
5666 |
+
.brz-ed .nc-outline-corner-up-round:before{content:"\ec56"}
|
5667 |
+
.brz-ed .nc-outline-corner-up:before{content:"\ec57"}
|
5668 |
+
.brz-ed .nc-outline-corset:before{content:"\ec58"}
|
5669 |
+
.brz-ed .nc-outline-countdown-34:before{content:"\ec59"}
|
5670 |
+
.brz-ed .nc-outline-countdown-35:before{content:"\ec5a"}
|
5671 |
+
.brz-ed .nc-outline-couple-gay:before{content:"\ec5b"}
|
5672 |
+
.brz-ed .nc-outline-couple-lesbian:before{content:"\ec5c"}
|
5673 |
+
.brz-ed .nc-outline-coupon:before{content:"\ec5d"}
|
5674 |
+
.brz-ed .nc-outline-course:before{content:"\ec5e"}
|
5675 |
+
.brz-ed .nc-outline-cow:before{content:"\ec5f"}
|
5676 |
+
.brz-ed .nc-outline-crab:before{content:"\ec60"}
|
5677 |
+
.brz-ed .nc-outline-cradle:before{content:"\ec62"}
|
5678 |
+
.brz-ed .nc-outline-credit-card-in:before{content:"\ec61"}
|
5679 |
+
.brz-ed .nc-outline-credit-card:before{content:"\ec64"}
|
5680 |
+
.brz-ed .nc-outline-credit-locked:before{content:"\ec63"}
|
5681 |
+
.brz-ed .nc-outline-crepe:before{content:"\ec66"}
|
5682 |
+
.brz-ed .nc-outline-cricket:before{content:"\ec65"}
|
5683 |
+
.brz-ed .nc-outline-croissant:before{content:"\ec67"}
|
5684 |
+
.brz-ed .nc-outline-crop:before{content:"\ec68"}
|
5685 |
+
.brz-ed .nc-outline-cross-down:before{content:"\ec69"}
|
5686 |
+
.brz-ed .nc-outline-cross-horizontal:before{content:"\ec6a"}
|
5687 |
+
.brz-ed .nc-outline-cross-left:before{content:"\ec6b"}
|
5688 |
+
.brz-ed .nc-outline-cross-right:before{content:"\ec6c"}
|
5689 |
+
.brz-ed .nc-outline-cross-up:before{content:"\ec6e"}
|
5690 |
+
.brz-ed .nc-outline-cross-vertical:before{content:"\ec6d"}
|
5691 |
+
.brz-ed .nc-outline-cross:before{content:"\ec6f"}
|
5692 |
+
.brz-ed .nc-outline-crosshair:before{content:"\ec70"}
|
5693 |
+
.brz-ed .nc-outline-crown:before{content:"\ec71"}
|
5694 |
+
.brz-ed .nc-outline-crumpet:before{content:"\ec72"}
|
5695 |
+
.brz-ed .nc-outline-cry-15:before{content:"\ec73"}
|
5696 |
+
.brz-ed .nc-outline-cry-57:before{content:"\ec74"}
|
5697 |
+
.brz-ed .nc-outline-css3:before{content:"\ec75"}
|
5698 |
+
.brz-ed .nc-outline-cupcake:before{content:"\ec76"}
|
5699 |
+
.brz-ed .nc-outline-currency-dollar:before{content:"\ec77"}
|
5700 |
+
.brz-ed .nc-outline-currency-euro:before{content:"\ec78"}
|
5701 |
+
.brz-ed .nc-outline-currency-exchange:before{content:"\ec79"}
|
5702 |
+
.brz-ed .nc-outline-currency-pound:before{content:"\ec7a"}
|
5703 |
+
.brz-ed .nc-outline-currency-yen:before{content:"\ec7b"}
|
5704 |
+
.brz-ed .nc-outline-cursor-48:before{content:"\ec7c"}
|
5705 |
+
.brz-ed .nc-outline-cursor-49:before{content:"\ec7e"}
|
5706 |
+
.brz-ed .nc-outline-cursor-add:before{content:"\ec7d"}
|
5707 |
+
.brz-ed .nc-outline-cursor-grab:before{content:"\ec7f"}
|
5708 |
+
.brz-ed .nc-outline-cursor-load:before{content:"\ec80"}
|
5709 |
+
.brz-ed .nc-outline-cursor-menu:before{content:"\ec81"}
|
5710 |
+
.brz-ed .nc-outline-cursor-not-allowed:before{content:"\ec82"}
|
5711 |
+
.brz-ed .nc-outline-cursor-pointer:before{content:"\ec83"}
|
5712 |
+
.brz-ed .nc-outline-cursor-text:before{content:"\ec84"}
|
5713 |
+
.brz-ed .nc-outline-curtain:before{content:"\ec85"}
|
5714 |
+
.brz-ed .nc-outline-curve-circuit:before{content:"\ec86"}
|
5715 |
+
.brz-ed .nc-outline-curve-directions:before{content:"\ec88"}
|
5716 |
+
.brz-ed .nc-outline-curve-split:before{content:"\ec87"}
|
5717 |
+
.brz-ed .nc-outline-curved-next:before{content:"\ec89"}
|
5718 |
+
.brz-ed .nc-outline-curved-previous:before{content:"\ec8a"}
|
5719 |
+
.brz-ed .nc-outline-customer-support:before{content:"\ec8b"}
|
5720 |
+
.brz-ed .nc-outline-cut:before{content:"\ec8c"}
|
5721 |
+
.brz-ed .nc-outline-cute:before{content:"\ec8d"}
|
5722 |
+
.brz-ed .nc-outline-cutlery-75:before{content:"\ec8e"}
|
5723 |
+
.brz-ed .nc-outline-cutlery-76:before{content:"\ec8f"}
|
5724 |
+
.brz-ed .nc-outline-cutlery-77:before{content:"\ec90"}
|
5725 |
+
.brz-ed .nc-outline-cutlery:before{content:"\ec91"}
|
5726 |
+
.brz-ed .nc-outline-cyclist:before{content:"\ec92"}
|
5727 |
+
.brz-ed .nc-outline-dart:before{content:"\ec93"}
|
5728 |
+
.brz-ed .nc-outline-dashboard-29:before{content:"\ec94"}
|
5729 |
+
.brz-ed .nc-outline-dashboard-30:before{content:"\ec95"}
|
5730 |
+
.brz-ed .nc-outline-dashboard-half:before{content:"\ec96"}
|
5731 |
+
.brz-ed .nc-outline-dashboard-level:before{content:"\ec97"}
|
5732 |
+
.brz-ed .nc-outline-database:before{content:"\ec98"}
|
5733 |
+
.brz-ed .nc-outline-dead-hand:before{content:"\ec9a"}
|
5734 |
+
.brz-ed .nc-outline-decoration:before{content:"\ec99"}
|
5735 |
+
.brz-ed .nc-outline-deer:before{content:"\ec9c"}
|
5736 |
+
.brz-ed .nc-outline-delete-28:before{content:"\ec9b"}
|
5737 |
+
.brz-ed .nc-outline-delete-30:before{content:"\ec9d"}
|
5738 |
+
.brz-ed .nc-outline-delete-49:before{content:"\ec9e"}
|
5739 |
+
.brz-ed .nc-outline-delete-50:before{content:"\ec9f"}
|
5740 |
+
.brz-ed .nc-outline-delivery-2:before{content:"\eca0"}
|
5741 |
+
.brz-ed .nc-outline-delivery-3:before{content:"\eca1"}
|
5742 |
+
.brz-ed .nc-outline-delivery-fast:before{content:"\eca2"}
|
5743 |
+
.brz-ed .nc-outline-delivery-time:before{content:"\eca3"}
|
5744 |
+
.brz-ed .nc-outline-delivery-track:before{content:"\eca4"}
|
5745 |
+
.brz-ed .nc-outline-delivery:before{content:"\eca5"}
|
5746 |
+
.brz-ed .nc-outline-design-system:before{content:"\eca6"}
|
5747 |
+
.brz-ed .nc-outline-design:before{content:"\eca7"}
|
5748 |
+
.brz-ed .nc-outline-desk-drawer:before{content:"\eca8"}
|
5749 |
+
.brz-ed .nc-outline-desk:before{content:"\eca9"}
|
5750 |
+
.brz-ed .nc-outline-desktop-screen:before{content:"\ecaa"}
|
5751 |
+
.brz-ed .nc-outline-desktop:before{content:"\ecab"}
|
5752 |
+
.brz-ed .nc-outline-detox:before{content:"\ecac"}
|
5753 |
+
.brz-ed .nc-outline-dev:before{content:"\ecad"}
|
5754 |
+
.brz-ed .nc-outline-device-connection:before{content:"\ecae"}
|
5755 |
+
.brz-ed .nc-outline-devil:before{content:"\ecaf"}
|
5756 |
+
.brz-ed .nc-outline-diag-bottom-left:before{content:"\ecb0"}
|
5757 |
+
.brz-ed .nc-outline-diag-bottom-right:before{content:"\ecb1"}
|
5758 |
+
.brz-ed .nc-outline-diag-top-left:before{content:"\ecb2"}
|
5759 |
+
.brz-ed .nc-outline-diag-top-right:before{content:"\ecb3"}
|
5760 |
+
.brz-ed .nc-outline-diamond:before{content:"\ecb4"}
|
5761 |
+
.brz-ed .nc-outline-dice:before{content:"\ecb6"}
|
5762 |
+
.brz-ed .nc-outline-diet-plan:before{content:"\ecb5"}
|
5763 |
+
.brz-ed .nc-outline-diet:before{content:"\ecb7"}
|
5764 |
+
.brz-ed .nc-outline-direction-53:before{content:"\ecb8"}
|
5765 |
+
.brz-ed .nc-outline-direction-56:before{content:"\ecb9"}
|
5766 |
+
.brz-ed .nc-outline-direction:before{content:"\ecba"}
|
5767 |
+
.brz-ed .nc-outline-directions:before{content:"\ecbb"}
|
5768 |
+
.brz-ed .nc-outline-disabled:before{content:"\ecbc"}
|
5769 |
+
.brz-ed .nc-outline-discount-2:before{content:"\ecbd"}
|
5770 |
+
.brz-ed .nc-outline-discount:before{content:"\ecbe"}
|
5771 |
+
.brz-ed .nc-outline-disgusted:before{content:"\ecc0"}
|
5772 |
+
.brz-ed .nc-outline-dish:before{content:"\ecbf"}
|
5773 |
+
.brz-ed .nc-outline-dishwasher:before{content:"\ecc1"}
|
5774 |
+
.brz-ed .nc-outline-disk-2:before{content:"\ecc2"}
|
5775 |
+
.brz-ed .nc-outline-disk-reader:before{content:"\ecc3"}
|
5776 |
+
.brz-ed .nc-outline-disk:before{content:"\ecc4"}
|
5777 |
+
.brz-ed .nc-outline-disperse:before{content:"\ecc6"}
|
5778 |
+
.brz-ed .nc-outline-distribute-horizontal:before{content:"\ecc5"}
|
5779 |
+
.brz-ed .nc-outline-distribute-vertical:before{content:"\ecc7"}
|
5780 |
+
.brz-ed .nc-outline-divider:before{content:"\ecc8"}
|
5781 |
+
.brz-ed .nc-outline-dna-27:before{content:"\ecc9"}
|
5782 |
+
.brz-ed .nc-outline-dna-38:before{content:"\ecca"}
|
5783 |
+
.brz-ed .nc-outline-dock-bottom:before{content:"\eccb"}
|
5784 |
+
.brz-ed .nc-outline-dock-left:before{content:"\eccc"}
|
5785 |
+
.brz-ed .nc-outline-dock-right:before{content:"\eccd"}
|
5786 |
+
.brz-ed .nc-outline-dock-top:before{content:"\ecce"}
|
5787 |
+
.brz-ed .nc-outline-dock:before{content:"\eccf"}
|
5788 |
+
.brz-ed .nc-outline-doctor:before{content:"\ecd0"}
|
5789 |
+
.brz-ed .nc-outline-dog-house:before{content:"\ecd1"}
|
5790 |
+
.brz-ed .nc-outline-dog:before{content:"\ecd2"}
|
5791 |
+
.brz-ed .nc-outline-donut:before{content:"\ecd3"}
|
5792 |
+
.brz-ed .nc-outline-door:before{content:"\ecd4"}
|
5793 |
+
.brz-ed .nc-outline-dots-05:before{content:"\ecd5"}
|
5794 |
+
.brz-ed .nc-outline-dots-06:before{content:"\ecd6"}
|
5795 |
+
.brz-ed .nc-outline-dots-07:before{content:"\ecd7"}
|
5796 |
+
.brz-ed .nc-outline-dots-download:before{content:"\ecd8"}
|
5797 |
+
.brz-ed .nc-outline-dots-upload:before{content:"\ecda"}
|
5798 |
+
.brz-ed .nc-outline-dots:before{content:"\ecd9"}
|
5799 |
+
.brz-ed .nc-outline-double-left:before{content:"\ecdb"}
|
5800 |
+
.brz-ed .nc-outline-double-right:before{content:"\ecdc"}
|
5801 |
+
.brz-ed .nc-outline-double-tap:before{content:"\ecdd"}
|
5802 |
+
.brz-ed .nc-outline-download-2:before{content:"\ecde"}
|
5803 |
+
.brz-ed .nc-outline-download-3:before{content:"\ecdf"}
|
5804 |
+
.brz-ed .nc-outline-download:before{content:"\ece0"}
|
5805 |
+
.brz-ed .nc-outline-drag-21:before{content:"\ece1"}
|
5806 |
+
.brz-ed .nc-outline-drag-31:before{content:"\ece2"}
|
5807 |
+
.brz-ed .nc-outline-drag-down:before{content:"\ece3"}
|
5808 |
+
.brz-ed .nc-outline-drag-left:before{content:"\ece4"}
|
5809 |
+
.brz-ed .nc-outline-drag-right:before{content:"\ece5"}
|
5810 |
+
.brz-ed .nc-outline-drag-up:before{content:"\ece6"}
|
5811 |
+
.brz-ed .nc-outline-drag:before{content:"\ece7"}
|
5812 |
+
.brz-ed .nc-outline-drawer-2:before{content:"\ece8"}
|
5813 |
+
.brz-ed .nc-outline-drawer:before{content:"\ece9"}
|
5814 |
+
.brz-ed .nc-outline-dress-man:before{content:"\ecea"}
|
5815 |
+
.brz-ed .nc-outline-dress-woman:before{content:"\eceb"}
|
5816 |
+
.brz-ed .nc-outline-drink-2:before{content:"\ecec"}
|
5817 |
+
.brz-ed .nc-outline-drink-list:before{content:"\eced"}
|
5818 |
+
.brz-ed .nc-outline-drink:before{content:"\ecee"}
|
5819 |
+
.brz-ed .nc-outline-drop-15:before{content:"\ecef"}
|
5820 |
+
.brz-ed .nc-outline-drop:before{content:"\ecf0"}
|
5821 |
+
.brz-ed .nc-outline-drops:before{content:"\ecf1"}
|
5822 |
+
.brz-ed .nc-outline-dumbbells:before{content:"\ecf2"}
|
5823 |
+
.brz-ed .nc-outline-eclipse:before{content:"\ecf3"}
|
5824 |
+
.brz-ed .nc-outline-edit-2:before{content:"\ecf4"}
|
5825 |
+
.brz-ed .nc-outline-edit-71:before{content:"\ecf5"}
|
5826 |
+
.brz-ed .nc-outline-edit-72:before{content:"\ecf6"}
|
5827 |
+
.brz-ed .nc-outline-edit-73:before{content:"\ecf7"}
|
5828 |
+
.brz-ed .nc-outline-edit-74:before{content:"\ecf8"}
|
5829 |
+
.brz-ed .nc-outline-edit-75:before{content:"\ecf9"}
|
5830 |
+
.brz-ed .nc-outline-edit-76:before{content:"\ecfa"}
|
5831 |
+
.brz-ed .nc-outline-edit-77:before{content:"\ecfb"}
|
5832 |
+
.brz-ed .nc-outline-edit-78:before{content:"\ecfc"}
|
5833 |
+
.brz-ed .nc-outline-edit-color:before{content:"\ecfd"}
|
5834 |
+
.brz-ed .nc-outline-edit-contrast-42:before{content:"\ecfe"}
|
5835 |
+
.brz-ed .nc-outline-edit-contrast-43:before{content:"\ecff"}
|
5836 |
+
.brz-ed .nc-outline-edit-saturation:before{content:"\ed00"}
|
5837 |
+
.brz-ed .nc-outline-edit:before{content:"\ed01"}
|
5838 |
+
.brz-ed .nc-outline-egg-38:before{content:"\ed02"}
|
5839 |
+
.brz-ed .nc-outline-egg-39:before{content:"\ed03"}
|
5840 |
+
.brz-ed .nc-outline-egg:before{content:"\ed04"}
|
5841 |
+
.brz-ed .nc-outline-eject:before{content:"\ed05"}
|
5842 |
+
.brz-ed .nc-outline-email-83:before{content:"\ed06"}
|
5843 |
+
.brz-ed .nc-outline-email-84:before{content:"\ed07"}
|
5844 |
+
.brz-ed .nc-outline-email-85:before{content:"\ed08"}
|
5845 |
+
.brz-ed .nc-outline-energy-drink-2:before{content:"\ed0a"}
|
5846 |
+
.brz-ed .nc-outline-energy-drink:before{content:"\ed09"}
|
5847 |
+
.brz-ed .nc-outline-energy-supplement:before{content:"\ed0b"}
|
5848 |
+
.brz-ed .nc-outline-energy:before{content:"\ed0c"}
|
5849 |
+
.brz-ed .nc-outline-engine-start:before{content:"\ed0d"}
|
5850 |
+
.brz-ed .nc-outline-engine:before{content:"\ed0e"}
|
5851 |
+
.brz-ed .nc-outline-enlarge-45:before{content:"\ed0f"}
|
5852 |
+
.brz-ed .nc-outline-enlarge-46:before{content:"\ed10"}
|
5853 |
+
.brz-ed .nc-outline-enlarge-57:before{content:"\ed12"}
|
5854 |
+
.brz-ed .nc-outline-enlarge-58:before{content:"\ed11"}
|
5855 |
+
.brz-ed .nc-outline-enlarge-59:before{content:"\ed13"}
|
5856 |
+
.brz-ed .nc-outline-enlarge-circle:before{content:"\ed14"}
|
5857 |
+
.brz-ed .nc-outline-enlarge-diagonal-43:before{content:"\ed15"}
|
5858 |
+
.brz-ed .nc-outline-enlarge-diagonal-44:before{content:"\ed16"}
|
5859 |
+
.brz-ed .nc-outline-enlarge-horizontal:before{content:"\ed17"}
|
5860 |
+
.brz-ed .nc-outline-enlarge-vertical:before{content:"\ed18"}
|
5861 |
+
.brz-ed .nc-outline-eraser-32:before{content:"\ed19"}
|
5862 |
+
.brz-ed .nc-outline-eraser-33:before{content:"\ed1a"}
|
5863 |
+
.brz-ed .nc-outline-eraser-46:before{content:"\ed1b"}
|
5864 |
+
.brz-ed .nc-outline-event-confirm:before{content:"\ed1c"}
|
5865 |
+
.brz-ed .nc-outline-event-create:before{content:"\ed1d"}
|
5866 |
+
.brz-ed .nc-outline-exchange:before{content:"\ed1e"}
|
5867 |
+
.brz-ed .nc-outline-exclamation:before{content:"\ed1f"}
|
5868 |
+
.brz-ed .nc-outline-explore-2:before{content:"\ed20"}
|
5869 |
+
.brz-ed .nc-outline-explore-user:before{content:"\ed21"}
|
5870 |
+
.brz-ed .nc-outline-explore:before{content:"\ed22"}
|
5871 |
+
.brz-ed .nc-outline-export:before{content:"\ed23"}
|
5872 |
+
.brz-ed .nc-outline-eye-17:before{content:"\ed24"}
|
5873 |
+
.brz-ed .nc-outline-eye-19:before{content:"\ed25"}
|
5874 |
+
.brz-ed .nc-outline-eye-ban-18:before{content:"\ed26"}
|
5875 |
+
.brz-ed .nc-outline-eye-ban-20:before{content:"\ed27"}
|
5876 |
+
.brz-ed .nc-outline-factory:before{content:"\ed28"}
|
5877 |
+
.brz-ed .nc-outline-fahrenheit:before{content:"\ed2a"}
|
5878 |
+
.brz-ed .nc-outline-family:before{content:"\ed29"}
|
5879 |
+
.brz-ed .nc-outline-fat-add:before{content:"\ed2b"}
|
5880 |
+
.brz-ed .nc-outline-fat-delete:before{content:"\ed2c"}
|
5881 |
+
.brz-ed .nc-outline-fat-remove:before{content:"\ed2e"}
|
5882 |
+
.brz-ed .nc-outline-fav-remove:before{content:"\ed2d"}
|
5883 |
+
.brz-ed .nc-outline-favourite-28:before{content:"\ed2f"}
|
5884 |
+
.brz-ed .nc-outline-favourite-31:before{content:"\ed30"}
|
5885 |
+
.brz-ed .nc-outline-favourite-add-29:before{content:"\ed31"}
|
5886 |
+
.brz-ed .nc-outline-favourite-add-32:before{content:"\ed32"}
|
5887 |
+
.brz-ed .nc-outline-favourite-remove-30:before{content:"\ed33"}
|
5888 |
+
.brz-ed .nc-outline-favourite-remove-33:before{content:"\ed34"}
|
5889 |
+
.brz-ed .nc-outline-fencing:before{content:"\ed36"}
|
5890 |
+
.brz-ed .nc-outline-file-add:before{content:"\ed35"}
|
5891 |
+
.brz-ed .nc-outline-file-delete:before{content:"\ed37"}
|
5892 |
+
.brz-ed .nc-outline-file-download-87:before{content:"\ed38"}
|
5893 |
+
.brz-ed .nc-outline-file-download-89:before{content:"\ed39"}
|
5894 |
+
.brz-ed .nc-outline-file-download-94:before{content:"\ed3a"}
|
5895 |
+
.brz-ed .nc-outline-file-upload-86:before{content:"\ed3b"}
|
5896 |
+
.brz-ed .nc-outline-file-upload-88:before{content:"\ed3c"}
|
5897 |
+
.brz-ed .nc-outline-file-upload-93:before{content:"\ed3d"}
|
5898 |
+
.brz-ed .nc-outline-filter-check:before{content:"\ed3e"}
|
5899 |
+
.brz-ed .nc-outline-filter-organization:before{content:"\ed3f"}
|
5900 |
+
.brz-ed .nc-outline-filter-remove:before{content:"\ed40"}
|
5901 |
+
.brz-ed .nc-outline-filter:before{content:"\ed41"}
|
5902 |
+
.brz-ed .nc-outline-fire:before{content:"\ed42"}
|
5903 |
+
.brz-ed .nc-outline-firewall:before{content:"\ed43"}
|
5904 |
+
.brz-ed .nc-outline-fish:before{content:"\ed44"}
|
5905 |
+
.brz-ed .nc-outline-fishbone:before{content:"\ed46"}
|
5906 |
+
.brz-ed .nc-outline-fishing:before{content:"\ed45"}
|
5907 |
+
.brz-ed .nc-outline-fist:before{content:"\ed47"}
|
5908 |
+
.brz-ed .nc-outline-fit-horizontal:before{content:"\ed48"}
|
5909 |
+
.brz-ed .nc-outline-fit-vertical:before{content:"\ed49"}
|
5910 |
+
.brz-ed .nc-outline-flag-complex:before{content:"\ed4a"}
|
5911 |
+
.brz-ed .nc-outline-flag-diagonal-33:before{content:"\ed4b"}
|
5912 |
+
.brz-ed .nc-outline-flag-diagonal-34:before{content:"\ed4c"}
|
5913 |
+
.brz-ed .nc-outline-flag-finish:before{content:"\ed4d"}
|
5914 |
+
.brz-ed .nc-outline-flag-points-31:before{content:"\ed4e"}
|
5915 |
+
.brz-ed .nc-outline-flag-points-32:before{content:"\ed50"}
|
5916 |
+
.brz-ed .nc-outline-flag-simple:before{content:"\ed4f"}
|
5917 |
+
.brz-ed .nc-outline-flag-triangle:before{content:"\ed51"}
|
5918 |
+
.brz-ed .nc-outline-flag:before{content:"\ed52"}
|
5919 |
+
.brz-ed .nc-outline-flame:before{content:"\ed53"}
|
5920 |
+
.brz-ed .nc-outline-flash-21:before{content:"\ed54"}
|
5921 |
+
.brz-ed .nc-outline-flash-24:before{content:"\ed55"}
|
5922 |
+
.brz-ed .nc-outline-flash-29:before{content:"\ed56"}
|
5923 |
+
.brz-ed .nc-outline-flash-auto-22:before{content:"\ed58"}
|
5924 |
+
.brz-ed .nc-outline-flash-auto-25:before{content:"\ed57"}
|
5925 |
+
.brz-ed .nc-outline-flash-off-23:before{content:"\ed59"}
|
5926 |
+
.brz-ed .nc-outline-flash-off-26:before{content:"\ed5a"}
|
5927 |
+
.brz-ed .nc-outline-flask-2:before{content:"\ed5b"}
|
5928 |
+
.brz-ed .nc-outline-flask:before{content:"\ed5c"}
|
5929 |
+
.brz-ed .nc-outline-flick-down:before{content:"\ed5d"}
|
5930 |
+
.brz-ed .nc-outline-flick-left:before{content:"\ed5e"}
|
5931 |
+
.brz-ed .nc-outline-flick-right:before{content:"\ed5f"}
|
5932 |
+
.brz-ed .nc-outline-flick-up:before{content:"\ed60"}
|
5933 |
+
.brz-ed .nc-outline-flip-horizontal:before{content:"\ed61"}
|
5934 |
+
.brz-ed .nc-outline-flip-vertical:before{content:"\ed62"}
|
5935 |
+
.brz-ed .nc-outline-flip:before{content:"\ed63"}
|
5936 |
+
.brz-ed .nc-outline-flower-05:before{content:"\ed64"}
|
5937 |
+
.brz-ed .nc-outline-flower-06:before{content:"\ed65"}
|
5938 |
+
.brz-ed .nc-outline-flower-07:before{content:"\ed66"}
|
5939 |
+
.brz-ed .nc-outline-focus-32:before{content:"\ed67"}
|
5940 |
+
.brz-ed .nc-outline-focus-38:before{content:"\ed68"}
|
5941 |
+
.brz-ed .nc-outline-focus-40:before{content:"\ed69"}
|
5942 |
+
.brz-ed .nc-outline-focus-circle:before{content:"\ed6a"}
|
5943 |
+
.brz-ed .nc-outline-focus:before{content:"\ed6c"}
|
5944 |
+
.brz-ed .nc-outline-fog:before{content:"\ed6b"}
|
5945 |
+
.brz-ed .nc-outline-folder-13:before{content:"\ed6d"}
|
5946 |
+
.brz-ed .nc-outline-folder-14:before{content:"\ed6e"}
|
5947 |
+
.brz-ed .nc-outline-folder-15:before{content:"\ed70"}
|
5948 |
+
.brz-ed .nc-outline-folder-16:before{content:"\ed6f"}
|
5949 |
+
.brz-ed .nc-outline-folder-17:before{content:"\ed71"}
|
5950 |
+
.brz-ed .nc-outline-folder-18:before{content:"\ed72"}
|
5951 |
+
.brz-ed .nc-outline-folder-19:before{content:"\ed73"}
|
5952 |
+
.brz-ed .nc-outline-folder-add:before{content:"\ed74"}
|
5953 |
+
.brz-ed .nc-outline-folder-audio:before{content:"\ed75"}
|
5954 |
+
.brz-ed .nc-outline-folder-bookmark:before{content:"\ed76"}
|
5955 |
+
.brz-ed .nc-outline-folder-chart-bar:before{content:"\ed78"}
|
5956 |
+
.brz-ed .nc-outline-folder-chart-pie:before{content:"\ed77"}
|
5957 |
+
.brz-ed .nc-outline-folder-check:before{content:"\ed79"}
|
5958 |
+
.brz-ed .nc-outline-folder-cloud:before{content:"\ed7a"}
|
5959 |
+
.brz-ed .nc-outline-folder-dev:before{content:"\ed7c"}
|
5960 |
+
.brz-ed .nc-outline-folder-download:before{content:"\ed7b"}
|
5961 |
+
.brz-ed .nc-outline-folder-edit:before{content:"\ed7d"}
|
5962 |
+
.brz-ed .nc-outline-folder-exclamation:before{content:"\ed7e"}
|
5963 |
+
.brz-ed .nc-outline-folder-gallery:before{content:"\ed7f"}
|
5964 |
+
.brz-ed .nc-outline-folder-heart:before{content:"\ed80"}
|
5965 |
+
.brz-ed .nc-outline-folder-image:before{content:"\ed81"}
|
5966 |
+
.brz-ed .nc-outline-folder-info:before{content:"\ed82"}
|
5967 |
+
.brz-ed .nc-outline-folder-link:before{content:"\ed83"}
|
5968 |
+
.brz-ed .nc-outline-folder-locked:before{content:"\ed84"}
|
5969 |
+
.brz-ed .nc-outline-folder-money:before{content:"\ed85"}
|
5970 |
+
.brz-ed .nc-outline-folder-music:before{content:"\ed86"}
|
5971 |
+
.brz-ed .nc-outline-folder-no-access:before{content:"\ed87"}
|
5972 |
+
.brz-ed .nc-outline-folder-play:before{content:"\ed88"}
|
5973 |
+
.brz-ed .nc-outline-folder-question:before{content:"\ed89"}
|
5974 |
+
.brz-ed .nc-outline-folder-refresh:before{content:"\ed8a"}
|
5975 |
+
.brz-ed .nc-outline-folder-remove:before{content:"\ed8b"}
|
5976 |
+
.brz-ed .nc-outline-folder-search:before{content:"\ed8c"}
|
5977 |
+
.brz-ed .nc-outline-folder-settings-81:before{content:"\ed8d"}
|
5978 |
+
.brz-ed .nc-outline-folder-settings-97:before{content:"\ed8e"}
|
5979 |
+
.brz-ed .nc-outline-folder-shared:before{content:"\ed8f"}
|
5980 |
+
.brz-ed .nc-outline-folder-star:before{content:"\ed90"}
|
5981 |
+
.brz-ed .nc-outline-folder-time:before{content:"\ed91"}
|
5982 |
+
.brz-ed .nc-outline-folder-upload:before{content:"\ed92"}
|
5983 |
+
.brz-ed .nc-outline-folder-user:before{content:"\ed93"}
|
5984 |
+
.brz-ed .nc-outline-folder-vector:before{content:"\ed94"}
|
5985 |
+
.brz-ed .nc-outline-food-dog:before{content:"\ed95"}
|
5986 |
+
.brz-ed .nc-outline-food-scale:before{content:"\ed96"}
|
5987 |
+
.brz-ed .nc-outline-food:before{content:"\ed97"}
|
5988 |
+
.brz-ed .nc-outline-football-headguard:before{content:"\ed98"}
|
5989 |
+
.brz-ed .nc-outline-forecast:before{content:"\ed99"}
|
5990 |
+
.brz-ed .nc-outline-forest:before{content:"\ed9a"}
|
5991 |
+
.brz-ed .nc-outline-fork-round:before{content:"\ed9c"}
|
5992 |
+
.brz-ed .nc-outline-fork:before{content:"\ed9b"}
|
5993 |
+
.brz-ed .nc-outline-form:before{content:"\ed9e"}
|
5994 |
+
.brz-ed .nc-outline-format-left:before{content:"\ed9d"}
|
5995 |
+
.brz-ed .nc-outline-format-right:before{content:"\ed9f"}
|
5996 |
+
.brz-ed .nc-outline-forward:before{content:"\eda0"}
|
5997 |
+
.brz-ed .nc-outline-frame-12:before{content:"\eda1"}
|
5998 |
+
.brz-ed .nc-outline-frame-41:before{content:"\eda2"}
|
5999 |
+
.brz-ed .nc-outline-frame:before{content:"\eda3"}
|
6000 |
+
.brz-ed .nc-outline-frankenstein:before{content:"\eda4"}
|
6001 |
+
.brz-ed .nc-outline-fridge:before{content:"\eda6"}
|
6002 |
+
.brz-ed .nc-outline-fuel-2:before{content:"\eda5"}
|
6003 |
+
.brz-ed .nc-outline-fuel-electric:before{content:"\eda7"}
|
6004 |
+
.brz-ed .nc-outline-fuel:before{content:"\eda8"}
|
6005 |
+
.brz-ed .nc-outline-full-screen:before{content:"\eda9"}
|
6006 |
+
.brz-ed .nc-outline-fullscreen-70:before{content:"\edaa"}
|
6007 |
+
.brz-ed .nc-outline-fullscreen-71:before{content:"\edab"}
|
6008 |
+
.brz-ed .nc-outline-fullscreen-76:before{content:"\edac"}
|
6009 |
+
.brz-ed .nc-outline-fullscreen-77:before{content:"\edae"}
|
6010 |
+
.brz-ed .nc-outline-fullscreen-double-74:before{content:"\edad"}
|
6011 |
+
.brz-ed .nc-outline-fullscreen-double-75:before{content:"\edaf"}
|
6012 |
+
.brz-ed .nc-outline-fullscreen-split-72:before{content:"\edb0"}
|
6013 |
+
.brz-ed .nc-outline-fullscreen-split-73:before{content:"\edb1"}
|
6014 |
+
.brz-ed .nc-outline-fullsize:before{content:"\edb2"}
|
6015 |
+
.brz-ed .nc-outline-funnel-39:before{content:"\edb3"}
|
6016 |
+
.brz-ed .nc-outline-funnel-40:before{content:"\edb4"}
|
6017 |
+
.brz-ed .nc-outline-funnel-41:before{content:"\edb5"}
|
6018 |
+
.brz-ed .nc-outline-gallery:before{content:"\edb6"}
|
6019 |
+
.brz-ed .nc-outline-gantt:before{content:"\edb7"}
|
6020 |
+
.brz-ed .nc-outline-garlic:before{content:"\edb8"}
|
6021 |
+
.brz-ed .nc-outline-ghost-2:before{content:"\edb9"}
|
6022 |
+
.brz-ed .nc-outline-ghost:before{content:"\edba"}
|
6023 |
+
.brz-ed .nc-outline-gift-2:before{content:"\edbb"}
|
6024 |
+
.brz-ed .nc-outline-gift-exchange:before{content:"\edbc"}
|
6025 |
+
.brz-ed .nc-outline-gift:before{content:"\edbd"}
|
6026 |
+
.brz-ed .nc-outline-git-commit:before{content:"\edbe"}
|
6027 |
+
.brz-ed .nc-outline-glass-water:before{content:"\edbf"}
|
6028 |
+
.brz-ed .nc-outline-glass:before{content:"\edc0"}
|
6029 |
+
.brz-ed .nc-outline-glasses-2:before{content:"\edc2"}
|
6030 |
+
.brz-ed .nc-outline-glasses:before{content:"\edc1"}
|
6031 |
+
.brz-ed .nc-outline-globe-2:before{content:"\edc3"}
|
6032 |
+
.brz-ed .nc-outline-globe:before{content:"\edc4"}
|
6033 |
+
.brz-ed .nc-outline-glove:before{content:"\edc5"}
|
6034 |
+
.brz-ed .nc-outline-gloves:before{content:"\edc6"}
|
6035 |
+
.brz-ed .nc-outline-goal-64:before{content:"\edc7"}
|
6036 |
+
.brz-ed .nc-outline-goal-65:before{content:"\edc8"}
|
6037 |
+
.brz-ed .nc-outline-gold:before{content:"\edc9"}
|
6038 |
+
.brz-ed .nc-outline-golf:before{content:"\edca"}
|
6039 |
+
.brz-ed .nc-outline-gps:before{content:"\edcb"}
|
6040 |
+
.brz-ed .nc-outline-grab:before{content:"\edcc"}
|
6041 |
+
.brz-ed .nc-outline-gradient:before{content:"\edcd"}
|
6042 |
+
.brz-ed .nc-outline-grammar-check:before{content:"\edce"}
|
6043 |
+
.brz-ed .nc-outline-grape:before{content:"\edcf"}
|
6044 |
+
.brz-ed .nc-outline-grave:before{content:"\edd0"}
|
6045 |
+
.brz-ed .nc-outline-grid-45:before{content:"\edd1"}
|
6046 |
+
.brz-ed .nc-outline-grid-46:before{content:"\edd2"}
|
6047 |
+
.brz-ed .nc-outline-grid-48:before{content:"\edd3"}
|
6048 |
+
.brz-ed .nc-outline-grid-49:before{content:"\edd4"}
|
6049 |
+
.brz-ed .nc-outline-grid-50:before{content:"\edd5"}
|
6050 |
+
.brz-ed .nc-outline-grid-square:before{content:"\edd6"}
|
6051 |
+
.brz-ed .nc-outline-grid-system:before{content:"\edd8"}
|
6052 |
+
.brz-ed .nc-outline-grid:before{content:"\edd7"}
|
6053 |
+
.brz-ed .nc-outline-group:before{content:"\edd9"}
|
6054 |
+
.brz-ed .nc-outline-guitar:before{content:"\edda"}
|
6055 |
+
.brz-ed .nc-outline-hammer:before{content:"\eddb"}
|
6056 |
+
.brz-ed .nc-outline-hand-card:before{content:"\eddc"}
|
6057 |
+
.brz-ed .nc-outline-handout:before{content:"\edde"}
|
6058 |
+
.brz-ed .nc-outline-handshake:before{content:"\eddd"}
|
6059 |
+
.brz-ed .nc-outline-hanger-clothes:before{content:"\eddf"}
|
6060 |
+
.brz-ed .nc-outline-hanger:before{content:"\ede0"}
|
6061 |
+
.brz-ed .nc-outline-hannibal:before{content:"\ede2"}
|
6062 |
+
.brz-ed .nc-outline-happy-sun:before{content:"\ede1"}
|
6063 |
+
.brz-ed .nc-outline-hat-2:before{content:"\ede3"}
|
6064 |
+
.brz-ed .nc-outline-hat-3:before{content:"\ede4"}
|
6065 |
+
.brz-ed .nc-outline-hat-top:before{content:"\ede5"}
|
6066 |
+
.brz-ed .nc-outline-hat:before{content:"\ede6"}
|
6067 |
+
.brz-ed .nc-outline-hazelnut:before{content:"\ede7"}
|
6068 |
+
.brz-ed .nc-outline-hdmi:before{content:"\ede8"}
|
6069 |
+
.brz-ed .nc-outline-headphone:before{content:"\ede9"}
|
6070 |
+
.brz-ed .nc-outline-headphones-2:before{content:"\edea"}
|
6071 |
+
.brz-ed .nc-outline-headphones-mic:before{content:"\edec"}
|
6072 |
+
.brz-ed .nc-outline-headphones:before{content:"\edeb"}
|
6073 |
+
.brz-ed .nc-outline-headset:before{content:"\eded"}
|
6074 |
+
.brz-ed .nc-outline-heart-2:before{content:"\edee"}
|
6075 |
+
.brz-ed .nc-outline-heart-add:before{content:"\edef"}
|
6076 |
+
.brz-ed .nc-outline-heart-remove:before{content:"\edf0"}
|
6077 |
+
.brz-ed .nc-outline-heart:before{content:"\edf2"}
|
6078 |
+
.brz-ed .nc-outline-heartbeat:before{content:"\edf1"}
|
6079 |
+
.brz-ed .nc-outline-heater:before{content:"\edf3"}
|
6080 |
+
.brz-ed .nc-outline-height:before{content:"\edf4"}
|
6081 |
+
.brz-ed .nc-outline-helicopter:before{content:"\edf5"}
|
6082 |
+
.brz-ed .nc-outline-helmet-2:before{content:"\edf6"}
|
6083 |
+
.brz-ed .nc-outline-helmet:before{content:"\edf7"}
|
6084 |
+
.brz-ed .nc-outline-hierarchy-53:before{content:"\edf8"}
|
6085 |
+
.brz-ed .nc-outline-hierarchy-54:before{content:"\edfa"}
|
6086 |
+
.brz-ed .nc-outline-hierarchy-55:before{content:"\edf9"}
|
6087 |
+
.brz-ed .nc-outline-hierarchy-56:before{content:"\edfb"}
|
6088 |
+
.brz-ed .nc-outline-hit-down:before{content:"\edfc"}
|
6089 |
+
.brz-ed .nc-outline-hit-left:before{content:"\edfd"}
|
6090 |
+
.brz-ed .nc-outline-hit-right:before{content:"\edfe"}
|
6091 |
+
.brz-ed .nc-outline-hit-up:before{content:"\edff"}
|
6092 |
+
.brz-ed .nc-outline-hob:before{content:"\ee00"}
|
6093 |
+
.brz-ed .nc-outline-hockey:before{content:"\ee01"}
|
6094 |
+
.brz-ed .nc-outline-hold:before{content:"\ee02"}
|
6095 |
+
.brz-ed .nc-outline-home-2:before{content:"\ee03"}
|
6096 |
+
.brz-ed .nc-outline-home-51:before{content:"\ee04"}
|
6097 |
+
.brz-ed .nc-outline-home-52:before{content:"\ee05"}
|
6098 |
+
.brz-ed .nc-outline-home-minimal:before{content:"\ee06"}
|
6099 |
+
.brz-ed .nc-outline-home-search:before{content:"\ee07"}
|
6100 |
+
.brz-ed .nc-outline-home-simple:before{content:"\ee08"}
|
6101 |
+
.brz-ed .nc-outline-home:before{content:"\ee09"}
|
6102 |
+
.brz-ed .nc-outline-honey:before{content:"\ee0a"}
|
6103 |
+
.brz-ed .nc-outline-hoodie:before{content:"\ee0b"}
|
6104 |
+
.brz-ed .nc-outline-hospital-32:before{content:"\ee0c"}
|
6105 |
+
.brz-ed .nc-outline-hospital-33:before{content:"\ee0d"}
|
6106 |
+
.brz-ed .nc-outline-hospital-34:before{content:"\ee0e"}
|
6107 |
+
.brz-ed .nc-outline-hot-dog:before{content:"\ee0f"}
|
6108 |
+
.brz-ed .nc-outline-hotel-bell:before{content:"\ee10"}
|
6109 |
+
.brz-ed .nc-outline-hotel-symbol:before{content:"\ee11"}
|
6110 |
+
.brz-ed .nc-outline-hotel:before{content:"\ee12"}
|
6111 |
+
.brz-ed .nc-outline-hourglass:before{content:"\ee13"}
|
6112 |
+
.brz-ed .nc-outline-html5:before{content:"\ee14"}
|
6113 |
+
.brz-ed .nc-outline-humidity-26:before{content:"\ee15"}
|
6114 |
+
.brz-ed .nc-outline-humidity-52:before{content:"\ee16"}
|
6115 |
+
.brz-ed .nc-outline-hurricane-44:before{content:"\ee17"}
|
6116 |
+
.brz-ed .nc-outline-hurricane-45:before{content:"\ee18"}
|
6117 |
+
.brz-ed .nc-outline-hut:before{content:"\ee19"}
|
6118 |
+
.brz-ed .nc-outline-hybrid:before{content:"\ee1a"}
|
6119 |
+
.brz-ed .nc-outline-ice-cream-22:before{content:"\ee1b"}
|
6120 |
+
.brz-ed .nc-outline-ice-cream-72:before{content:"\ee1c"}
|
6121 |
+
.brz-ed .nc-outline-ice-cream:before{content:"\ee1d"}
|
6122 |
+
.brz-ed .nc-outline-igloo:before{content:"\ee1e"}
|
6123 |
+
.brz-ed .nc-outline-image-01:before{content:"\ee1f"}
|
6124 |
+
.brz-ed .nc-outline-image-02:before{content:"\ee20"}
|
6125 |
+
.brz-ed .nc-outline-image-05:before{content:"\ee21"}
|
6126 |
+
.brz-ed .nc-outline-image-2:before{content:"\ee22"}
|
6127 |
+
.brz-ed .nc-outline-image-3:before{content:"\ee23"}
|
6128 |
+
.brz-ed .nc-outline-image-add:before{content:"\ee24"}
|
6129 |
+
.brz-ed .nc-outline-image-delete:before{content:"\ee25"}
|
6130 |
+
.brz-ed .nc-outline-image-location:before{content:"\ee26"}
|
6131 |
+
.brz-ed .nc-outline-image:before{content:"\ee27"}
|
6132 |
+
.brz-ed .nc-outline-infinite:before{content:"\ee28"}
|
6133 |
+
.brz-ed .nc-outline-info:before{content:"\ee29"}
|
6134 |
+
.brz-ed .nc-outline-input-12:before{content:"\ee2a"}
|
6135 |
+
.brz-ed .nc-outline-input-21:before{content:"\ee2c"}
|
6136 |
+
.brz-ed .nc-outline-intestine:before{content:"\ee2b"}
|
6137 |
+
.brz-ed .nc-outline-invert:before{content:"\ee2d"}
|
6138 |
+
.brz-ed .nc-outline-iron-2:before{content:"\ee2e"}
|
6139 |
+
.brz-ed .nc-outline-iron-dont:before{content:"\ee2f"}
|
6140 |
+
.brz-ed .nc-outline-iron:before{content:"\ee30"}
|
6141 |
+
.brz-ed .nc-outline-istanbul:before{content:"\ee31"}
|
6142 |
+
.brz-ed .nc-outline-italic:before{content:"\ee32"}
|
6143 |
+
.brz-ed .nc-outline-jam:before{content:"\ee34"}
|
6144 |
+
.brz-ed .nc-outline-jeans-41:before{content:"\ee33"}
|
6145 |
+
.brz-ed .nc-outline-jeans-43:before{content:"\ee35"}
|
6146 |
+
.brz-ed .nc-outline-jeans-pocket:before{content:"\ee36"}
|
6147 |
+
.brz-ed .nc-outline-jelly:before{content:"\ee37"}
|
6148 |
+
.brz-ed .nc-outline-jellyfish:before{content:"\ee38"}
|
6149 |
+
.brz-ed .nc-outline-journey-04:before{content:"\ee39"}
|
6150 |
+
.brz-ed .nc-outline-journey-05:before{content:"\ee3a"}
|
6151 |
+
.brz-ed .nc-outline-journey-06:before{content:"\ee3b"}
|
6152 |
+
.brz-ed .nc-outline-journey-07:before{content:"\ee3c"}
|
6153 |
+
.brz-ed .nc-outline-journey-08:before{content:"\ee3d"}
|
6154 |
+
.brz-ed .nc-outline-juice:before{content:"\ee3e"}
|
6155 |
+
.brz-ed .nc-outline-kettle:before{content:"\ee3f"}
|
6156 |
+
.brz-ed .nc-outline-kettlebell:before{content:"\ee40"}
|
6157 |
+
.brz-ed .nc-outline-key-25:before{content:"\ee41"}
|
6158 |
+
.brz-ed .nc-outline-key-26:before{content:"\ee42"}
|
6159 |
+
.brz-ed .nc-outline-keyboard-hide:before{content:"\ee43"}
|
6160 |
+
.brz-ed .nc-outline-keyboard-mouse:before{content:"\ee44"}
|
6161 |
+
.brz-ed .nc-outline-keyboard-wifi:before{content:"\ee45"}
|
6162 |
+
.brz-ed .nc-outline-keyboard-wireless:before{content:"\ee46"}
|
6163 |
+
.brz-ed .nc-outline-keyboard:before{content:"\ee47"}
|
6164 |
+
.brz-ed .nc-outline-kid-2:before{content:"\ee48"}
|
6165 |
+
.brz-ed .nc-outline-kid:before{content:"\ee49"}
|
6166 |
+
.brz-ed .nc-outline-kiss:before{content:"\ee4a"}
|
6167 |
+
.brz-ed .nc-outline-kitchen-fan:before{content:"\ee4b"}
|
6168 |
+
.brz-ed .nc-outline-kitchen:before{content:"\ee4c"}
|
6169 |
+
.brz-ed .nc-outline-kiwi:before{content:"\ee4d"}
|
6170 |
+
.brz-ed .nc-outline-knife:before{content:"\ee4e"}
|
6171 |
+
.brz-ed .nc-outline-knob:before{content:"\ee4f"}
|
6172 |
+
.brz-ed .nc-outline-l-add:before{content:"\ee50"}
|
6173 |
+
.brz-ed .nc-outline-l-check:before{content:"\ee51"}
|
6174 |
+
.brz-ed .nc-outline-l-circle:before{content:"\ee52"}
|
6175 |
+
.brz-ed .nc-outline-l-circles:before{content:"\ee53"}
|
6176 |
+
.brz-ed .nc-outline-l-location:before{content:"\ee54"}
|
6177 |
+
.brz-ed .nc-outline-l-remove:before{content:"\ee56"}
|
6178 |
+
.brz-ed .nc-outline-l-search:before{content:"\ee55"}
|
6179 |
+
.brz-ed .nc-outline-l-security:before{content:"\ee57"}
|
6180 |
+
.brz-ed .nc-outline-l-settings:before{content:"\ee58"}
|
6181 |
+
.brz-ed .nc-outline-l-sync:before{content:"\ee59"}
|
6182 |
+
.brz-ed .nc-outline-l-system-update:before{content:"\ee5a"}
|
6183 |
+
.brz-ed .nc-outline-lab:before{content:"\ee5b"}
|
6184 |
+
.brz-ed .nc-outline-lamp-2:before{content:"\ee5c"}
|
6185 |
+
.brz-ed .nc-outline-lamp-3:before{content:"\ee5d"}
|
6186 |
+
.brz-ed .nc-outline-lamp-floor:before{content:"\ee5e"}
|
6187 |
+
.brz-ed .nc-outline-lamp:before{content:"\ee60"}
|
6188 |
+
.brz-ed .nc-outline-language:before{content:"\ee5f"}
|
6189 |
+
.brz-ed .nc-outline-laptop-1:before{content:"\ee62"}
|
6190 |
+
.brz-ed .nc-outline-laptop-2:before{content:"\ee61"}
|
6191 |
+
.brz-ed .nc-outline-laptop-71:before{content:"\ee64"}
|
6192 |
+
.brz-ed .nc-outline-laptop-72:before{content:"\ee63"}
|
6193 |
+
.brz-ed .nc-outline-laptop:before{content:"\ee65"}
|
6194 |
+
.brz-ed .nc-outline-laugh-17:before{content:"\ee66"}
|
6195 |
+
.brz-ed .nc-outline-laugh-35:before{content:"\ee68"}
|
6196 |
+
.brz-ed .nc-outline-launch-11:before{content:"\ee67"}
|
6197 |
+
.brz-ed .nc-outline-launch-47:before{content:"\ee69"}
|
6198 |
+
.brz-ed .nc-outline-law:before{content:"\ee6a"}
|
6199 |
+
.brz-ed .nc-outline-layers-2:before{content:"\ee6b"}
|
6200 |
+
.brz-ed .nc-outline-layers-3:before{content:"\ee6c"}
|
6201 |
+
.brz-ed .nc-outline-layers:before{content:"\ee6d"}
|
6202 |
+
.brz-ed .nc-outline-layout-11:before{content:"\ee6e"}
|
6203 |
+
.brz-ed .nc-outline-layout-25:before{content:"\ee6f"}
|
6204 |
+
.brz-ed .nc-outline-leaf-36:before{content:"\ee70"}
|
6205 |
+
.brz-ed .nc-outline-leaf-38:before{content:"\ee71"}
|
6206 |
+
.brz-ed .nc-outline-leaf-80:before{content:"\ee72"}
|
6207 |
+
.brz-ed .nc-outline-leaf-81:before{content:"\ee73"}
|
6208 |
+
.brz-ed .nc-outline-leaf-edit:before{content:"\ee74"}
|
6209 |
+
.brz-ed .nc-outline-lemon-slice:before{content:"\ee76"}
|
6210 |
+
.brz-ed .nc-outline-lemon:before{content:"\ee75"}
|
6211 |
+
.brz-ed .nc-outline-lens-31:before{content:"\ee77"}
|
6212 |
+
.brz-ed .nc-outline-lens-56:before{content:"\ee78"}
|
6213 |
+
.brz-ed .nc-outline-library:before{content:"\ee79"}
|
6214 |
+
.brz-ed .nc-outline-light-2:before{content:"\ee7a"}
|
6215 |
+
.brz-ed .nc-outline-light-3:before{content:"\ee7b"}
|
6216 |
+
.brz-ed .nc-outline-light-traffic:before{content:"\ee7c"}
|
6217 |
+
.brz-ed .nc-outline-light:before{content:"\ee7e"}
|
6218 |
+
.brz-ed .nc-outline-lighter:before{content:"\ee7d"}
|
6219 |
+
.brz-ed .nc-outline-lighthouse:before{content:"\ee7f"}
|
6220 |
+
.brz-ed .nc-outline-like-2:before{content:"\ee80"}
|
6221 |
+
.brz-ed .nc-outline-like-no:before{content:"\ee81"}
|
6222 |
+
.brz-ed .nc-outline-like:before{content:"\ee82"}
|
6223 |
+
.brz-ed .nc-outline-line-height:before{content:"\ee83"}
|
6224 |
+
.brz-ed .nc-outline-lines:before{content:"\ee84"}
|
6225 |
+
.brz-ed .nc-outline-link-2:before{content:"\ee85"}
|
6226 |
+
.brz-ed .nc-outline-link-66:before{content:"\ee86"}
|
6227 |
+
.brz-ed .nc-outline-link-67:before{content:"\ee87"}
|
6228 |
+
.brz-ed .nc-outline-link-68:before{content:"\ee88"}
|
6229 |
+
.brz-ed .nc-outline-link-69:before{content:"\ee89"}
|
6230 |
+
.brz-ed .nc-outline-link-71:before{content:"\ee8a"}
|
6231 |
+
.brz-ed .nc-outline-link-72:before{content:"\ee8b"}
|
6232 |
+
.brz-ed .nc-outline-link-broken-70:before{content:"\ee8c"}
|
6233 |
+
.brz-ed .nc-outline-link-broken-73:before{content:"\ee8d"}
|
6234 |
+
.brz-ed .nc-outline-link:before{content:"\ee8e"}
|
6235 |
+
.brz-ed .nc-outline-list-bullet:before{content:"\ee8f"}
|
6236 |
+
.brz-ed .nc-outline-list-numbers:before{content:"\ee90"}
|
6237 |
+
.brz-ed .nc-outline-list:before{content:"\ee91"}
|
6238 |
+
.brz-ed .nc-outline-lobster:before{content:"\ee92"}
|
6239 |
+
.brz-ed .nc-outline-lock-circle-open:before{content:"\ee93"}
|
6240 |
+
.brz-ed .nc-outline-lock-circle:before{content:"\ee94"}
|
6241 |
+
.brz-ed .nc-outline-lock-landscape:before{content:"\ee95"}
|
6242 |
+
.brz-ed .nc-outline-lock-open:before{content:"\ee96"}
|
6243 |
+
.brz-ed .nc-outline-lock-portrait:before{content:"\ee97"}
|
6244 |
+
.brz-ed .nc-outline-lock:before{content:"\ee98"}
|
6245 |
+
.brz-ed .nc-outline-locked:before{content:"\ee99"}
|
6246 |
+
.brz-ed .nc-outline-log-in:before{content:"\ee9a"}
|
6247 |
+
.brz-ed .nc-outline-log-out-2:before{content:"\ee9b"}
|
6248 |
+
.brz-ed .nc-outline-log-out:before{content:"\ee9c"}
|
6249 |
+
.brz-ed .nc-outline-logout:before{content:"\ee9d"}
|
6250 |
+
.brz-ed .nc-outline-lollipop:before{content:"\ee9e"}
|
6251 |
+
.brz-ed .nc-outline-london:before{content:"\ee9f"}
|
6252 |
+
.brz-ed .nc-outline-long-sleeve:before{content:"\eea0"}
|
6253 |
+
.brz-ed .nc-outline-loop-30:before{content:"\eea1"}
|
6254 |
+
.brz-ed .nc-outline-loop-34:before{content:"\eea2"}
|
6255 |
+
.brz-ed .nc-outline-loop-82:before{content:"\eea3"}
|
6256 |
+
.brz-ed .nc-outline-loop-83:before{content:"\eea4"}
|
6257 |
+
.brz-ed .nc-outline-loop:before{content:"\eea5"}
|
6258 |
+
.brz-ed .nc-outline-luggage:before{content:"\eea6"}
|
6259 |
+
.brz-ed .nc-outline-lungs:before{content:"\eea8"}
|
6260 |
+
.brz-ed .nc-outline-m-add:before{content:"\eea7"}
|
6261 |
+
.brz-ed .nc-outline-m-check:before{content:"\eea9"}
|
6262 |
+
.brz-ed .nc-outline-m-delete:before{content:"\eeaa"}
|
6263 |
+
.brz-ed .nc-outline-m-edit:before{content:"\eeab"}
|
6264 |
+
.brz-ed .nc-outline-m-heart:before{content:"\eeac"}
|
6265 |
+
.brz-ed .nc-outline-m-location:before{content:"\eeae"}
|
6266 |
+
.brz-ed .nc-outline-m-remove:before{content:"\eead"}
|
6267 |
+
.brz-ed .nc-outline-m-search:before{content:"\eeaf"}
|
6268 |
+
.brz-ed .nc-outline-m-security:before{content:"\eeb0"}
|
6269 |
+
.brz-ed .nc-outline-m-settings:before{content:"\eeb2"}
|
6270 |
+
.brz-ed .nc-outline-m-share:before{content:"\eeb1"}
|
6271 |
+
.brz-ed .nc-outline-m-star:before{content:"\eeb3"}
|
6272 |
+
.brz-ed .nc-outline-m-sync:before{content:"\eeb4"}
|
6273 |
+
.brz-ed .nc-outline-m-time:before{content:"\eeb6"}
|
6274 |
+
.brz-ed .nc-outline-m-update:before{content:"\eeb5"}
|
6275 |
+
.brz-ed .nc-outline-macro:before{content:"\eeb7"}
|
6276 |
+
.brz-ed .nc-outline-mad-12:before{content:"\eeb8"}
|
6277 |
+
.brz-ed .nc-outline-mad-58:before{content:"\eeb9"}
|
6278 |
+
.brz-ed .nc-outline-magnet:before{content:"\eeba"}
|
6279 |
+
.brz-ed .nc-outline-makeup:before{content:"\eebb"}
|
6280 |
+
.brz-ed .nc-outline-malicious:before{content:"\eebc"}
|
6281 |
+
.brz-ed .nc-outline-man-20:before{content:"\eebd"}
|
6282 |
+
.brz-ed .nc-outline-man-23:before{content:"\eebe"}
|
6283 |
+
.brz-ed .nc-outline-man-down:before{content:"\eebf"}
|
6284 |
+
.brz-ed .nc-outline-man-glasses:before{content:"\eec0"}
|
6285 |
+
.brz-ed .nc-outline-man-up:before{content:"\eec1"}
|
6286 |
+
.brz-ed .nc-outline-man:before{content:"\eec2"}
|
6287 |
+
.brz-ed .nc-outline-manga-62:before{content:"\eec3"}
|
6288 |
+
.brz-ed .nc-outline-manga-63:before{content:"\eec4"}
|
6289 |
+
.brz-ed .nc-outline-map-big:before{content:"\eec5"}
|
6290 |
+
.brz-ed .nc-outline-map-compass:before{content:"\eec6"}
|
6291 |
+
.brz-ed .nc-outline-map-gps:before{content:"\eec7"}
|
6292 |
+
.brz-ed .nc-outline-map-marker:before{content:"\eec8"}
|
6293 |
+
.brz-ed .nc-outline-map-pin:before{content:"\eec9"}
|
6294 |
+
.brz-ed .nc-outline-map:before{content:"\eeca"}
|
6295 |
+
.brz-ed .nc-outline-margin-left:before{content:"\eecb"}
|
6296 |
+
.brz-ed .nc-outline-margin-right:before{content:"\eecc"}
|
6297 |
+
.brz-ed .nc-outline-marker-2:before{content:"\eecd"}
|
6298 |
+
.brz-ed .nc-outline-marker-3:before{content:"\eece"}
|
6299 |
+
.brz-ed .nc-outline-marker:before{content:"\eecf"}
|
6300 |
+
.brz-ed .nc-outline-market-music:before{content:"\eed0"}
|
6301 |
+
.brz-ed .nc-outline-market-play:before{content:"\eed1"}
|
6302 |
+
.brz-ed .nc-outline-mask-oval:before{content:"\eed2"}
|
6303 |
+
.brz-ed .nc-outline-mask-rect:before{content:"\eed3"}
|
6304 |
+
.brz-ed .nc-outline-matches:before{content:"\eed4"}
|
6305 |
+
.brz-ed .nc-outline-math:before{content:"\eed5"}
|
6306 |
+
.brz-ed .nc-outline-measure-02:before{content:"\eed6"}
|
6307 |
+
.brz-ed .nc-outline-measure-17:before{content:"\eed7"}
|
6308 |
+
.brz-ed .nc-outline-measure-big:before{content:"\eed8"}
|
6309 |
+
.brz-ed .nc-outline-measuring-cup:before{content:"\eed9"}
|
6310 |
+
.brz-ed .nc-outline-meat-spit:before{content:"\eeda"}
|
6311 |
+
.brz-ed .nc-outline-meeting:before{content:"\eedb"}
|
6312 |
+
.brz-ed .nc-outline-menu-34:before{content:"\eedc"}
|
6313 |
+
.brz-ed .nc-outline-menu-35:before{content:"\eedd"}
|
6314 |
+
.brz-ed .nc-outline-menu-bold:before{content:"\eede"}
|
6315 |
+
.brz-ed .nc-outline-menu-dots:before{content:"\eedf"}
|
6316 |
+
.brz-ed .nc-outline-menu-left:before{content:"\eee0"}
|
6317 |
+
.brz-ed .nc-outline-menu-right:before{content:"\eee1"}
|
6318 |
+
.brz-ed .nc-outline-menu-square:before{content:"\eee2"}
|
6319 |
+
.brz-ed .nc-outline-menu:before{content:"\eee3"}
|
6320 |
+
.brz-ed .nc-outline-merge-2:before{content:"\eee4"}
|
6321 |
+
.brz-ed .nc-outline-merge-round:before{content:"\eee5"}
|
6322 |
+
.brz-ed .nc-outline-merge:before{content:"\eee6"}
|
6323 |
+
.brz-ed .nc-outline-message:before{content:"\eee7"}
|
6324 |
+
.brz-ed .nc-outline-metrics:before{content:"\eee8"}
|
6325 |
+
.brz-ed .nc-outline-mic-2:before{content:"\eee9"}
|
6326 |
+
.brz-ed .nc-outline-mic:before{content:"\eeea"}
|
6327 |
+
.brz-ed .nc-outline-mickey-mouse:before{content:"\eeeb"}
|
6328 |
+
.brz-ed .nc-outline-microscope:before{content:"\eeec"}
|
6329 |
+
.brz-ed .nc-outline-microsoft:before{content:"\eeed"}
|
6330 |
+
.brz-ed .nc-outline-microwave:before{content:"\eeee"}
|
6331 |
+
.brz-ed .nc-outline-milk:before{content:"\eeef"}
|
6332 |
+
.brz-ed .nc-outline-minimal-down:before{content:"\eef0"}
|
6333 |
+
.brz-ed .nc-outline-minimal-left:before{content:"\eef1"}
|
6334 |
+
.brz-ed .nc-outline-minimal-right:before{content:"\eef2"}
|
6335 |
+
.brz-ed .nc-outline-minimal-up:before{content:"\eef4"}
|
6336 |
+
.brz-ed .nc-outline-mirror-2:before{content:"\eef3"}
|
6337 |
+
.brz-ed .nc-outline-mirror:before{content:"\eef5"}
|
6338 |
+
.brz-ed .nc-outline-mistletoe:before{content:"\eef6"}
|
6339 |
+
.brz-ed .nc-outline-mixer:before{content:"\eef7"}
|
6340 |
+
.brz-ed .nc-outline-mobile-button:before{content:"\eef8"}
|
6341 |
+
.brz-ed .nc-outline-mobile-camera:before{content:"\eef9"}
|
6342 |
+
.brz-ed .nc-outline-mobile-card:before{content:"\eefa"}
|
6343 |
+
.brz-ed .nc-outline-mobile-contact:before{content:"\eefb"}
|
6344 |
+
.brz-ed .nc-outline-mobile-design:before{content:"\eefc"}
|
6345 |
+
.brz-ed .nc-outline-mobile-dev:before{content:"\eefd"}
|
6346 |
+
.brz-ed .nc-outline-mobile-landscape:before{content:"\eefe"}
|
6347 |
+
.brz-ed .nc-outline-mobile-recharger-08:before{content:"\eeff"}
|
6348 |
+
.brz-ed .nc-outline-mobile-recharger-09:before{content:"\ef00"}
|
6349 |
+
.brz-ed .nc-outline-mobile-toolbar:before{content:"\ef01"}
|
6350 |
+
.brz-ed .nc-outline-mobile:before{content:"\ef02"}
|
6351 |
+
.brz-ed .nc-outline-moka:before{content:"\ef03"}
|
6352 |
+
.brz-ed .nc-outline-molecule-39:before{content:"\ef04"}
|
6353 |
+
.brz-ed .nc-outline-molecule-40:before{content:"\ef05"}
|
6354 |
+
.brz-ed .nc-outline-molecule:before{content:"\ef06"}
|
6355 |
+
.brz-ed .nc-outline-money-11:before{content:"\ef08"}
|
6356 |
+
.brz-ed .nc-outline-money-12:before{content:"\ef07"}
|
6357 |
+
.brz-ed .nc-outline-money-13:before{content:"\ef0a"}
|
6358 |
+
.brz-ed .nc-outline-money-bag:before{content:"\ef09"}
|
6359 |
+
.brz-ed .nc-outline-money-coins:before{content:"\ef0b"}
|
6360 |
+
.brz-ed .nc-outline-money-growth:before{content:"\ef0c"}
|
6361 |
+
.brz-ed .nc-outline-money-time:before{content:"\ef0d"}
|
6362 |
+
.brz-ed .nc-outline-money:before{content:"\ef0e"}
|
6363 |
+
.brz-ed .nc-outline-monster:before{content:"\ef0f"}
|
6364 |
+
.brz-ed .nc-outline-moon-cloud-drop:before{content:"\ef10"}
|
6365 |
+
.brz-ed .nc-outline-moon-cloud-fog:before{content:"\ef11"}
|
6366 |
+
.brz-ed .nc-outline-moon-cloud-hail:before{content:"\ef12"}
|
6367 |
+
.brz-ed .nc-outline-moon-cloud-light:before{content:"\ef13"}
|
6368 |
+
.brz-ed .nc-outline-moon-cloud-rain:before{content:"\ef14"}
|
6369 |
+
.brz-ed .nc-outline-moon-cloud-snow-61:before{content:"\ef15"}
|
6370 |
+
.brz-ed .nc-outline-moon-cloud-snow-62:before{content:"\ef16"}
|
6371 |
+
.brz-ed .nc-outline-moon-fog:before{content:"\ef17"}
|
6372 |
+
.brz-ed .nc-outline-moon-full:before{content:"\ef18"}
|
6373 |
+
.brz-ed .nc-outline-moon-stars:before{content:"\ef19"}
|
6374 |
+
.brz-ed .nc-outline-moon:before{content:"\ef1a"}
|
6375 |
+
.brz-ed .nc-outline-mosque:before{content:"\ef1b"}
|
6376 |
+
.brz-ed .nc-outline-moto:before{content:"\ef1c"}
|
6377 |
+
.brz-ed .nc-outline-mountain:before{content:"\ef1d"}
|
6378 |
+
.brz-ed .nc-outline-mouse-08:before{content:"\ef1e"}
|
6379 |
+
.brz-ed .nc-outline-mouse-09:before{content:"\ef1f"}
|
6380 |
+
.brz-ed .nc-outline-mouse-10:before{content:"\ef20"}
|
6381 |
+
.brz-ed .nc-outline-mouse:before{content:"\ef21"}
|
6382 |
+
.brz-ed .nc-outline-move-05:before{content:"\ef22"}
|
6383 |
+
.brz-ed .nc-outline-move-06:before{content:"\ef23"}
|
6384 |
+
.brz-ed .nc-outline-move-92:before{content:"\ef24"}
|
6385 |
+
.brz-ed .nc-outline-move-down-2:before{content:"\ef26"}
|
6386 |
+
.brz-ed .nc-outline-move-down-right:before{content:"\ef25"}
|
6387 |
+
.brz-ed .nc-outline-move-down:before{content:"\ef27"}
|
6388 |
+
.brz-ed .nc-outline-move-left:before{content:"\ef28"}
|
6389 |
+
.brz-ed .nc-outline-move-right:before{content:"\ef29"}
|
6390 |
+
.brz-ed .nc-outline-move-up-2:before{content:"\ef2a"}
|
6391 |
+
.brz-ed .nc-outline-move-up-left:before{content:"\ef2b"}
|
6392 |
+
.brz-ed .nc-outline-move-up:before{content:"\ef2c"}
|
6393 |
+
.brz-ed .nc-outline-movie-61:before{content:"\ef2d"}
|
6394 |
+
.brz-ed .nc-outline-movie-62:before{content:"\ef2e"}
|
6395 |
+
.brz-ed .nc-outline-muffin:before{content:"\ef2f"}
|
6396 |
+
.brz-ed .nc-outline-mug:before{content:"\ef30"}
|
6397 |
+
.brz-ed .nc-outline-multiple-11:before{content:"\ef31"}
|
6398 |
+
.brz-ed .nc-outline-multiple-19:before{content:"\ef32"}
|
6399 |
+
.brz-ed .nc-outline-multiple:before{content:"\ef33"}
|
6400 |
+
.brz-ed .nc-outline-mushroom:before{content:"\ef34"}
|
6401 |
+
.brz-ed .nc-outline-music-2:before{content:"\ef35"}
|
6402 |
+
.brz-ed .nc-outline-music-album:before{content:"\ef36"}
|
6403 |
+
.brz-ed .nc-outline-music-cloud:before{content:"\ef38"}
|
6404 |
+
.brz-ed .nc-outline-music:before{content:"\ef37"}
|
6405 |
+
.brz-ed .nc-outline-navigation:before{content:"\ef39"}
|
6406 |
+
.brz-ed .nc-outline-needle:before{content:"\ef3a"}
|
6407 |
+
.brz-ed .nc-outline-nerd-22:before{content:"\ef3b"}
|
6408 |
+
.brz-ed .nc-outline-nerd-23:before{content:"\ef3c"}
|
6409 |
+
.brz-ed .nc-outline-net:before{content:"\ef3d"}
|
6410 |
+
.brz-ed .nc-outline-network:before{content:"\ef3e"}
|
6411 |
+
.brz-ed .nc-outline-new:before{content:"\ef3f"}
|
6412 |
+
.brz-ed .nc-outline-newsletter-dev:before{content:"\ef40"}
|
6413 |
+
.brz-ed .nc-outline-newsletter:before{content:"\ef41"}
|
6414 |
+
.brz-ed .nc-outline-night:before{content:"\ef42"}
|
6415 |
+
.brz-ed .nc-outline-ninja:before{content:"\ef43"}
|
6416 |
+
.brz-ed .nc-outline-no-access:before{content:"\ef44"}
|
6417 |
+
.brz-ed .nc-outline-no-words:before{content:"\ef45"}
|
6418 |
+
.brz-ed .nc-outline-node:before{content:"\ef46"}
|
6419 |
+
.brz-ed .nc-outline-note-03:before{content:"\ef47"}
|
6420 |
+
.brz-ed .nc-outline-note-04:before{content:"\ef48"}
|
6421 |
+
.brz-ed .nc-outline-note-code:before{content:"\ef49"}
|
6422 |
+
.brz-ed .nc-outline-notebook-2:before{content:"\ef4a"}
|
6423 |
+
.brz-ed .nc-outline-notebook:before{content:"\ef4b"}
|
6424 |
+
.brz-ed .nc-outline-notepad:before{content:"\ef4c"}
|
6425 |
+
.brz-ed .nc-outline-notes:before{content:"\ef4d"}
|
6426 |
+
.brz-ed .nc-outline-notification-69:before{content:"\ef4e"}
|
6427 |
+
.brz-ed .nc-outline-notification-70:before{content:"\ef4f"}
|
6428 |
+
.brz-ed .nc-outline-nurse:before{content:"\ef50"}
|
6429 |
+
.brz-ed .nc-outline-nutrition:before{content:"\ef51"}
|
6430 |
+
.brz-ed .nc-outline-ny:before{content:"\ef52"}
|
6431 |
+
.brz-ed .nc-outline-octopus:before{content:"\ef53"}
|
6432 |
+
.brz-ed .nc-outline-oil:before{content:"\ef54"}
|
6433 |
+
.brz-ed .nc-outline-onion:before{content:"\ef55"}
|
6434 |
+
.brz-ed .nc-outline-open-in-browser:before{content:"\ef56"}
|
6435 |
+
.brz-ed .nc-outline-opening-times:before{content:"\ef57"}
|
6436 |
+
.brz-ed .nc-outline-orange:before{content:"\ef58"}
|
6437 |
+
.brz-ed .nc-outline-organic-2:before{content:"\ef59"}
|
6438 |
+
.brz-ed .nc-outline-organic:before{content:"\ef5a"}
|
6439 |
+
.brz-ed .nc-outline-oven:before{content:"\ef5b"}
|
6440 |
+
.brz-ed .nc-outline-owl:before{content:"\ef5c"}
|
6441 |
+
.brz-ed .nc-outline-p-add:before{content:"\ef5d"}
|
6442 |
+
.brz-ed .nc-outline-p-check:before{content:"\ef5e"}
|
6443 |
+
.brz-ed .nc-outline-p-edit:before{content:"\ef5f"}
|
6444 |
+
.brz-ed .nc-outline-p-heart:before{content:"\ef60"}
|
6445 |
+
.brz-ed .nc-outline-p-location:before{content:"\ef61"}
|
6446 |
+
.brz-ed .nc-outline-p-remove:before{content:"\ef62"}
|
6447 |
+
.brz-ed .nc-outline-p-search:before{content:"\ef63"}
|
6448 |
+
.brz-ed .nc-outline-p-settings:before{content:"\ef64"}
|
6449 |
+
.brz-ed .nc-outline-p-share:before{content:"\ef65"}
|
6450 |
+
.brz-ed .nc-outline-p-sync:before{content:"\ef66"}
|
6451 |
+
.brz-ed .nc-outline-p-system-update:before{content:"\ef67"}
|
6452 |
+
.brz-ed .nc-outline-p-time:before{content:"\ef68"}
|
6453 |
+
.brz-ed .nc-outline-paint-16:before{content:"\ef69"}
|
6454 |
+
.brz-ed .nc-outline-paint-37:before{content:"\ef6a"}
|
6455 |
+
.brz-ed .nc-outline-paint-38:before{content:"\ef6b"}
|
6456 |
+
.brz-ed .nc-outline-paint-brush:before{content:"\ef6c"}
|
6457 |
+
.brz-ed .nc-outline-paint-bucket-39:before{content:"\ef6d"}
|
6458 |
+
.brz-ed .nc-outline-paint-bucket-40:before{content:"\ef6e"}
|
6459 |
+
.brz-ed .nc-outline-pajamas:before{content:"\ef70"}
|
6460 |
+
.brz-ed .nc-outline-palette:before{content:"\ef6f"}
|
6461 |
+
.brz-ed .nc-outline-pan:before{content:"\ef71"}
|
6462 |
+
.brz-ed .nc-outline-pancake:before{content:"\ef72"}
|
6463 |
+
.brz-ed .nc-outline-panda:before{content:"\ef73"}
|
6464 |
+
.brz-ed .nc-outline-panel:before{content:"\ef74"}
|
6465 |
+
.brz-ed .nc-outline-pantone:before{content:"\ef75"}
|
6466 |
+
.brz-ed .nc-outline-paper-2:before{content:"\ef76"}
|
6467 |
+
.brz-ed .nc-outline-paper-design:before{content:"\ef77"}
|
6468 |
+
.brz-ed .nc-outline-paper-dev:before{content:"\ef78"}
|
6469 |
+
.brz-ed .nc-outline-paper-diploma:before{content:"\ef79"}
|
6470 |
+
.brz-ed .nc-outline-paper:before{content:"\ef7a"}
|
6471 |
+
.brz-ed .nc-outline-paragraph:before{content:"\ef7b"}
|
6472 |
+
.brz-ed .nc-outline-parent:before{content:"\ef7c"}
|
6473 |
+
.brz-ed .nc-outline-paris-tower:before{content:"\ef7e"}
|
6474 |
+
.brz-ed .nc-outline-parking-sensors:before{content:"\ef7d"}
|
6475 |
+
.brz-ed .nc-outline-parking:before{content:"\ef80"}
|
6476 |
+
.brz-ed .nc-outline-parrot:before{content:"\ef7f"}
|
6477 |
+
.brz-ed .nc-outline-passport:before{content:"\ef81"}
|
6478 |
+
.brz-ed .nc-outline-pasta:before{content:"\ef82"}
|
6479 |
+
.brz-ed .nc-outline-patch-19:before{content:"\ef83"}
|
6480 |
+
.brz-ed .nc-outline-patch-34:before{content:"\ef84"}
|
6481 |
+
.brz-ed .nc-outline-patch:before{content:"\ef85"}
|
6482 |
+
.brz-ed .nc-outline-path-exclude:before{content:"\ef86"}
|
6483 |
+
.brz-ed .nc-outline-path-intersect:before{content:"\ef87"}
|
6484 |
+
.brz-ed .nc-outline-path-minus:before{content:"\ef88"}
|
6485 |
+
.brz-ed .nc-outline-path-unite:before{content:"\ef8a"}
|
6486 |
+
.brz-ed .nc-outline-paw:before{content:"\ef89"}
|
6487 |
+
.brz-ed .nc-outline-payment:before{content:"\ef8b"}
|
6488 |
+
.brz-ed .nc-outline-pci-card:before{content:"\ef8c"}
|
6489 |
+
.brz-ed .nc-outline-peanut:before{content:"\ef8d"}
|
6490 |
+
.brz-ed .nc-outline-pear:before{content:"\ef8e"}
|
6491 |
+
.brz-ed .nc-outline-pen-01:before{content:"\ef8f"}
|
6492 |
+
.brz-ed .nc-outline-pen-23:before{content:"\ef90"}
|
6493 |
+
.brz-ed .nc-outline-pen-tool:before{content:"\ef92"}
|
6494 |
+
.brz-ed .nc-outline-pencil-47:before{content:"\ef91"}
|
6495 |
+
.brz-ed .nc-outline-pencil:before{content:"\ef93"}
|
6496 |
+
.brz-ed .nc-outline-penguin:before{content:"\ef94"}
|
6497 |
+
.brz-ed .nc-outline-pepper:before{content:"\ef96"}
|
6498 |
+
.brz-ed .nc-outline-percentage-38:before{content:"\ef95"}
|
6499 |
+
.brz-ed .nc-outline-percentage-39:before{content:"\ef97"}
|
6500 |
+
.brz-ed .nc-outline-phone-2:before{content:"\ef98"}
|
6501 |
+
.brz-ed .nc-outline-phone-3:before{content:"\ef99"}
|
6502 |
+
.brz-ed .nc-outline-phone-call-end:before{content:"\ef9a"}
|
6503 |
+
.brz-ed .nc-outline-phone-call:before{content:"\ef9b"}
|
6504 |
+
.brz-ed .nc-outline-phone:before{content:"\ef9c"}
|
6505 |
+
.brz-ed .nc-outline-photo-editor:before{content:"\ef9d"}
|
6506 |
+
.brz-ed .nc-outline-piano:before{content:"\ef9e"}
|
6507 |
+
.brz-ed .nc-outline-pickaxe:before{content:"\ef9f"}
|
6508 |
+
.brz-ed .nc-outline-pickle:before{content:"\efa0"}
|
6509 |
+
.brz-ed .nc-outline-picnic-basket:before{content:"\efa1"}
|
6510 |
+
.brz-ed .nc-outline-picture:before{content:"\efa2"}
|
6511 |
+
.brz-ed .nc-outline-pig-2:before{content:"\efa3"}
|
6512 |
+
.brz-ed .nc-outline-pig:before{content:"\efa4"}
|
6513 |
+
.brz-ed .nc-outline-pill-42:before{content:"\efa5"}
|
6514 |
+
.brz-ed .nc-outline-pill-43:before{content:"\efa6"}
|
6515 |
+
.brz-ed .nc-outline-pill-container-44:before{content:"\efa7"}
|
6516 |
+
.brz-ed .nc-outline-pill-container-47:before{content:"\efa8"}
|
6517 |
+
.brz-ed .nc-outline-pin-2:before{content:"\efa9"}
|
6518 |
+
.brz-ed .nc-outline-pin-3:before{content:"\efaa"}
|
6519 |
+
.brz-ed .nc-outline-pin-4:before{content:"\efab"}
|
6520 |
+
.brz-ed .nc-outline-pin-add-2:before{content:"\efac"}
|
6521 |
+
.brz-ed .nc-outline-pin-add:before{content:"\efad"}
|
6522 |
+
.brz-ed .nc-outline-pin-check:before{content:"\efae"}
|
6523 |
+
.brz-ed .nc-outline-pin-copy:before{content:"\efaf"}
|
6524 |
+
.brz-ed .nc-outline-pin-delete:before{content:"\efb0"}
|
6525 |
+
.brz-ed .nc-outline-pin-edit:before{content:"\efb2"}
|
6526 |
+
.brz-ed .nc-outline-pin-heart:before{content:"\efb1"}
|
6527 |
+
.brz-ed .nc-outline-pin-remove-2:before{content:"\efb3"}
|
6528 |
+
.brz-ed .nc-outline-pin-remove:before{content:"\efb4"}
|
6529 |
+
.brz-ed .nc-outline-pin-search:before{content:"\efb5"}
|
6530 |
+
.brz-ed .nc-outline-pin-security:before{content:"\efb6"}
|
6531 |
+
.brz-ed .nc-outline-pin-settings:before{content:"\efb7"}
|
6532 |
+
.brz-ed .nc-outline-pin-share:before{content:"\efb8"}
|
6533 |
+
.brz-ed .nc-outline-pin-star:before{content:"\efb9"}
|
6534 |
+
.brz-ed .nc-outline-pin-sync:before{content:"\efba"}
|
6535 |
+
.brz-ed .nc-outline-pin-time:before{content:"\efbb"}
|
6536 |
+
.brz-ed .nc-outline-pin-user:before{content:"\efbc"}
|
6537 |
+
.brz-ed .nc-outline-pin:before{content:"\efbd"}
|
6538 |
+
.brz-ed .nc-outline-pinch:before{content:"\efbe"}
|
6539 |
+
.brz-ed .nc-outline-pineapple:before{content:"\efbf"}
|
6540 |
+
.brz-ed .nc-outline-ping-pong:before{content:"\efc0"}
|
6541 |
+
.brz-ed .nc-outline-pins:before{content:"\efc2"}
|
6542 |
+
.brz-ed .nc-outline-pipe:before{content:"\efc1"}
|
6543 |
+
.brz-ed .nc-outline-pirate:before{content:"\efc3"}
|
6544 |
+
.brz-ed .nc-outline-pizza-slice:before{content:"\efc4"}
|
6545 |
+
.brz-ed .nc-outline-pizza:before{content:"\efc5"}
|
6546 |
+
.brz-ed .nc-outline-plane-17:before{content:"\efc6"}
|
6547 |
+
.brz-ed .nc-outline-plane-18:before{content:"\efc8"}
|
6548 |
+
.brz-ed .nc-outline-planet:before{content:"\efc7"}
|
6549 |
+
.brz-ed .nc-outline-plant-ground:before{content:"\efc9"}
|
6550 |
+
.brz-ed .nc-outline-plant-vase:before{content:"\efca"}
|
6551 |
+
.brz-ed .nc-outline-plate:before{content:"\efcc"}
|
6552 |
+
.brz-ed .nc-outline-play-68:before{content:"\efcb"}
|
6553 |
+
.brz-ed .nc-outline-play-69:before{content:"\efcd"}
|
6554 |
+
.brz-ed .nc-outline-play:before{content:"\efce"}
|
6555 |
+
.brz-ed .nc-outline-player-19:before{content:"\efcf"}
|
6556 |
+
.brz-ed .nc-outline-player-48:before{content:"\efd0"}
|
6557 |
+
.brz-ed .nc-outline-player:before{content:"\efd1"}
|
6558 |
+
.brz-ed .nc-outline-playlist:before{content:"\efd2"}
|
6559 |
+
.brz-ed .nc-outline-plug:before{content:"\efd4"}
|
6560 |
+
.brz-ed .nc-outline-podium-trophy:before{content:"\efd3"}
|
6561 |
+
.brz-ed .nc-outline-podium:before{content:"\efd5"}
|
6562 |
+
.brz-ed .nc-outline-point-a:before{content:"\efd6"}
|
6563 |
+
.brz-ed .nc-outline-point-b:before{content:"\efd7"}
|
6564 |
+
.brz-ed .nc-outline-polaroid-add:before{content:"\efd8"}
|
6565 |
+
.brz-ed .nc-outline-polaroid-delete:before{content:"\efd9"}
|
6566 |
+
.brz-ed .nc-outline-polaroid-multiple:before{content:"\efda"}
|
6567 |
+
.brz-ed .nc-outline-polaroid-user:before{content:"\efdb"}
|
6568 |
+
.brz-ed .nc-outline-polaroid:before{content:"\efdc"}
|
6569 |
+
.brz-ed .nc-outline-police:before{content:"\efdd"}
|
6570 |
+
.brz-ed .nc-outline-pool:before{content:"\efde"}
|
6571 |
+
.brz-ed .nc-outline-poop:before{content:"\efdf"}
|
6572 |
+
.brz-ed .nc-outline-popcorn:before{content:"\efe0"}
|
6573 |
+
.brz-ed .nc-outline-pos:before{content:"\efe1"}
|
6574 |
+
.brz-ed .nc-outline-position-marker:before{content:"\efe2"}
|
6575 |
+
.brz-ed .nc-outline-position-pin:before{content:"\efe3"}
|
6576 |
+
.brz-ed .nc-outline-position-user:before{content:"\efe4"}
|
6577 |
+
.brz-ed .nc-outline-position:before{content:"\efe5"}
|
6578 |
+
.brz-ed .nc-outline-pot:before{content:"\efe6"}
|
6579 |
+
.brz-ed .nc-outline-potato:before{content:"\efe7"}
|
6580 |
+
.brz-ed .nc-outline-power-level:before{content:"\efe8"}
|
6581 |
+
.brz-ed .nc-outline-preferences-circle-rotate:before{content:"\efea"}
|
6582 |
+
.brz-ed .nc-outline-preferences-circle:before{content:"\efe9"}
|
6583 |
+
.brz-ed .nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}
|
6584 |
+
.brz-ed .nc-outline-preferences-container-circle:before{content:"\efec"}
|
6585 |
+
.brz-ed .nc-outline-preferences-container-rotate:before{content:"\efed"}
|
6586 |
+
.brz-ed .nc-outline-preferences-container:before{content:"\efee"}
|
6587 |
+
.brz-ed .nc-outline-preferences-rotate:before{content:"\efef"}
|
6588 |
+
.brz-ed .nc-outline-preferences:before{content:"\eff0"}
|
6589 |
+
.brz-ed .nc-outline-print:before{content:"\eff1"}
|
6590 |
+
.brz-ed .nc-outline-printer:before{content:"\eff2"}
|
6591 |
+
.brz-ed .nc-outline-priority-high:before{content:"\eff4"}
|
6592 |
+
.brz-ed .nc-outline-priority-low:before{content:"\eff3"}
|
6593 |
+
.brz-ed .nc-outline-progress:before{content:"\eff5"}
|
6594 |
+
.brz-ed .nc-outline-prosciutto:before{content:"\eff6"}
|
6595 |
+
.brz-ed .nc-outline-prototype:before{content:"\eff7"}
|
6596 |
+
.brz-ed .nc-outline-pulse-chart:before{content:"\eff8"}
|
6597 |
+
.brz-ed .nc-outline-pulse-phone:before{content:"\eff9"}
|
6598 |
+
.brz-ed .nc-outline-pulse-sleep:before{content:"\effa"}
|
6599 |
+
.brz-ed .nc-outline-pulse-watch:before{content:"\effb"}
|
6600 |
+
.brz-ed .nc-outline-pulse:before{content:"\effc"}
|
6601 |
+
.brz-ed .nc-outline-pumpkin:before{content:"\effd"}
|
6602 |
+
.brz-ed .nc-outline-push-next:before{content:"\effe"}
|
6603 |
+
.brz-ed .nc-outline-push-previous:before{content:"\efff"}
|
6604 |
+
.brz-ed .nc-outline-puzzle-09:before{content:"\f000"}
|
6605 |
+
.brz-ed .nc-outline-puzzle-10:before{content:"\f001"}
|
6606 |
+
.brz-ed .nc-outline-puzzled:before{content:"\f002"}
|
6607 |
+
.brz-ed .nc-outline-pyramid:before{content:"\f003"}
|
6608 |
+
.brz-ed .nc-outline-question:before{content:"\f004"}
|
6609 |
+
.brz-ed .nc-outline-quite-happy:before{content:"\f005"}
|
6610 |
+
.brz-ed .nc-outline-quote:before{content:"\f006"}
|
6611 |
+
.brz-ed .nc-outline-rabbit:before{content:"\f007"}
|
6612 |
+
.brz-ed .nc-outline-rackets:before{content:"\f008"}
|
6613 |
+
.brz-ed .nc-outline-radar:before{content:"\f009"}
|
6614 |
+
.brz-ed .nc-outline-radiation:before{content:"\f00a"}
|
6615 |
+
.brz-ed .nc-outline-radio:before{content:"\f00b"}
|
6616 |
+
.brz-ed .nc-outline-rain-hail:before{content:"\f00c"}
|
6617 |
+
.brz-ed .nc-outline-rain:before{content:"\f00d"}
|
6618 |
+
.brz-ed .nc-outline-rainbow:before{content:"\f00e"}
|
6619 |
+
.brz-ed .nc-outline-ram:before{content:"\f00f"}
|
6620 |
+
.brz-ed .nc-outline-rat:before{content:"\f010"}
|
6621 |
+
.brz-ed .nc-outline-receipt-list-42:before{content:"\f011"}
|
6622 |
+
.brz-ed .nc-outline-receipt-list-43:before{content:"\f012"}
|
6623 |
+
.brz-ed .nc-outline-receipt:before{content:"\f014"}
|
6624 |
+
.brz-ed .nc-outline-recipe-book-46:before{content:"\f013"}
|
6625 |
+
.brz-ed .nc-outline-recipe-book-47:before{content:"\f015"}
|
6626 |
+
.brz-ed .nc-outline-recipe-create:before{content:"\f016"}
|
6627 |
+
.brz-ed .nc-outline-recipe:before{content:"\f018"}
|
6628 |
+
.brz-ed .nc-outline-recycling:before{content:"\f017"}
|
6629 |
+
.brz-ed .nc-outline-redo-10:before{content:"\f019"}
|
6630 |
+
.brz-ed .nc-outline-redo-26:before{content:"\f01a"}
|
6631 |
+
.brz-ed .nc-outline-redo-79:before{content:"\f01b"}
|
6632 |
+
.brz-ed .nc-outline-redo-81:before{content:"\f01c"}
|
6633 |
+
.brz-ed .nc-outline-refresh-01:before{content:"\f01d"}
|
6634 |
+
.brz-ed .nc-outline-refresh-02:before{content:"\f01e"}
|
6635 |
+
.brz-ed .nc-outline-refresh-68:before{content:"\f01f"}
|
6636 |
+
.brz-ed .nc-outline-refresh-69:before{content:"\f020"}
|
6637 |
+
.brz-ed .nc-outline-refresh:before{content:"\f021"}
|
6638 |
+
.brz-ed .nc-outline-reload:before{content:"\f022"}
|
6639 |
+
.brz-ed .nc-outline-remix:before{content:"\f024"}
|
6640 |
+
.brz-ed .nc-outline-remote:before{content:"\f023"}
|
6641 |
+
.brz-ed .nc-outline-remove:before{content:"\f025"}
|
6642 |
+
.brz-ed .nc-outline-replace-folder:before{content:"\f026"}
|
6643 |
+
.brz-ed .nc-outline-replace:before{content:"\f027"}
|
6644 |
+
.brz-ed .nc-outline-replay:before{content:"\f028"}
|
6645 |
+
.brz-ed .nc-outline-reply-all:before{content:"\f02a"}
|
6646 |
+
.brz-ed .nc-outline-reply:before{content:"\f029"}
|
6647 |
+
.brz-ed .nc-outline-reservation:before{content:"\f02b"}
|
6648 |
+
.brz-ed .nc-outline-resize-h:before{content:"\f02c"}
|
6649 |
+
.brz-ed .nc-outline-resize-v:before{content:"\f02d"}
|
6650 |
+
.brz-ed .nc-outline-restaurant-menu:before{content:"\f02e"}
|
6651 |
+
.brz-ed .nc-outline-restore:before{content:"\f030"}
|
6652 |
+
.brz-ed .nc-outline-rice:before{content:"\f02f"}
|
6653 |
+
.brz-ed .nc-outline-rim:before{content:"\f032"}
|
6654 |
+
.brz-ed .nc-outline-ring:before{content:"\f031"}
|
6655 |
+
.brz-ed .nc-outline-rio:before{content:"\f034"}
|
6656 |
+
.brz-ed .nc-outline-ripples:before{content:"\f033"}
|
6657 |
+
.brz-ed .nc-outline-road-2:before{content:"\f035"}
|
6658 |
+
.brz-ed .nc-outline-road-sign-left:before{content:"\f036"}
|
6659 |
+
.brz-ed .nc-outline-road-sign-right:before{content:"\f038"}
|
6660 |
+
.brz-ed .nc-outline-road:before{content:"\f037"}
|
6661 |
+
.brz-ed .nc-outline-roast-chicken:before{content:"\f03a"}
|
6662 |
+
.brz-ed .nc-outline-robot:before{content:"\f039"}
|
6663 |
+
.brz-ed .nc-outline-rock:before{content:"\f03b"}
|
6664 |
+
.brz-ed .nc-outline-roll:before{content:"\f03c"}
|
6665 |
+
.brz-ed .nc-outline-rolling-pin:before{content:"\f03e"}
|
6666 |
+
.brz-ed .nc-outline-rome:before{content:"\f03d"}
|
6667 |
+
.brz-ed .nc-outline-rope:before{content:"\f03f"}
|
6668 |
+
.brz-ed .nc-outline-rotate-22:before{content:"\f040"}
|
6669 |
+
.brz-ed .nc-outline-rotate-23:before{content:"\f041"}
|
6670 |
+
.brz-ed .nc-outline-rotate-left-2:before{content:"\f042"}
|
6671 |
+
.brz-ed .nc-outline-rotate-left:before{content:"\f043"}
|
6672 |
+
.brz-ed .nc-outline-rotate-lock:before{content:"\f044"}
|
6673 |
+
.brz-ed .nc-outline-rotate-right-2:before{content:"\f045"}
|
6674 |
+
.brz-ed .nc-outline-rotate-right:before{content:"\f046"}
|
6675 |
+
.brz-ed .nc-outline-rotate:before{content:"\f047"}
|
6676 |
+
.brz-ed .nc-outline-round-dollar:before{content:"\f048"}
|
6677 |
+
.brz-ed .nc-outline-round-down:before{content:"\f049"}
|
6678 |
+
.brz-ed .nc-outline-round-euro:before{content:"\f04a"}
|
6679 |
+
.brz-ed .nc-outline-round-left-down:before{content:"\f04b"}
|
6680 |
+
.brz-ed .nc-outline-round-left:before{content:"\f04c"}
|
6681 |
+
.brz-ed .nc-outline-round-pound:before{content:"\f04d"}
|
6682 |
+
.brz-ed .nc-outline-round-right-down:before{content:"\f04e"}
|
6683 |
+
.brz-ed .nc-outline-round-right:before{content:"\f04f"}
|
6684 |
+
.brz-ed .nc-outline-round-up-left:before{content:"\f050"}
|
6685 |
+
.brz-ed .nc-outline-round-up-right:before{content:"\f051"}
|
6686 |
+
.brz-ed .nc-outline-round-up:before{content:"\f052"}
|
6687 |
+
.brz-ed .nc-outline-round-yen:before{content:"\f053"}
|
6688 |
+
.brz-ed .nc-outline-route-alert:before{content:"\f054"}
|
6689 |
+
.brz-ed .nc-outline-route-close:before{content:"\f055"}
|
6690 |
+
.brz-ed .nc-outline-route-open:before{content:"\f056"}
|
6691 |
+
.brz-ed .nc-outline-rowing:before{content:"\f057"}
|
6692 |
+
.brz-ed .nc-outline-rugby:before{content:"\f058"}
|
6693 |
+
.brz-ed .nc-outline-ruler-pencil:before{content:"\f059"}
|
6694 |
+
.brz-ed .nc-outline-sad:before{content:"\f05a"}
|
6695 |
+
.brz-ed .nc-outline-safe:before{content:"\f05b"}
|
6696 |
+
.brz-ed .nc-outline-salad:before{content:"\f05c"}
|
6697 |
+
.brz-ed .nc-outline-sale:before{content:"\f05d"}
|
6698 |
+
.brz-ed .nc-outline-salt:before{content:"\f05e"}
|
6699 |
+
.brz-ed .nc-outline-santa-hat:before{content:"\f05f"}
|
6700 |
+
.brz-ed .nc-outline-satisfied:before{content:"\f060"}
|
6701 |
+
.brz-ed .nc-outline-sausage:before{content:"\f061"}
|
6702 |
+
.brz-ed .nc-outline-save-planet:before{content:"\f062"}
|
6703 |
+
.brz-ed .nc-outline-scale-2:before{content:"\f063"}
|
6704 |
+
.brz-ed .nc-outline-scale-3:before{content:"\f064"}
|
6705 |
+
.brz-ed .nc-outline-scale-4:before{content:"\f065"}
|
6706 |
+
.brz-ed .nc-outline-scale-down:before{content:"\f066"}
|
6707 |
+
.brz-ed .nc-outline-scale-horizontal:before{content:"\f067"}
|
6708 |
+
.brz-ed .nc-outline-scale-up:before{content:"\f068"}
|
6709 |
+
.brz-ed .nc-outline-scale-vertical:before{content:"\f069"}
|
6710 |
+
.brz-ed .nc-outline-scale:before{content:"\f06a"}
|
6711 |
+
.brz-ed .nc-outline-scan:before{content:"\f06c"}
|
6712 |
+
.brz-ed .nc-outline-scarf:before{content:"\f06b"}
|
6713 |
+
.brz-ed .nc-outline-school:before{content:"\f06d"}
|
6714 |
+
.brz-ed .nc-outline-scissors-dashed:before{content:"\f06e"}
|
6715 |
+
.brz-ed .nc-outline-scissors:before{content:"\f06f"}
|
6716 |
+
.brz-ed .nc-outline-scotch:before{content:"\f070"}
|
6717 |
+
.brz-ed .nc-outline-scroll-horitontal:before{content:"\f071"}
|
6718 |
+
.brz-ed .nc-outline-scroll-vertical:before{content:"\f072"}
|
6719 |
+
.brz-ed .nc-outline-sd:before{content:"\f074"}
|
6720 |
+
.brz-ed .nc-outline-sea-mask:before{content:"\f073"}
|
6721 |
+
.brz-ed .nc-outline-search-2:before{content:"\f075"}
|
6722 |
+
.brz-ed .nc-outline-search-3:before{content:"\f076"}
|
6723 |
+
.brz-ed .nc-outline-search:before{content:"\f077"}
|
6724 |
+
.brz-ed .nc-outline-seat:before{content:"\f078"}
|
6725 |
+
.brz-ed .nc-outline-seatbelt:before{content:"\f07a"}
|
6726 |
+
.brz-ed .nc-outline-security:before{content:"\f079"}
|
6727 |
+
.brz-ed .nc-outline-segmentation:before{content:"\f07c"}
|
6728 |
+
.brz-ed .nc-outline-select-83:before{content:"\f07b"}
|
6729 |
+
.brz-ed .nc-outline-select-84:before{content:"\f07e"}
|
6730 |
+
.brz-ed .nc-outline-select:before{content:"\f07d"}
|
6731 |
+
.brz-ed .nc-outline-selection:before{content:"\f080"}
|
6732 |
+
.brz-ed .nc-outline-selfie:before{content:"\f07f"}
|
6733 |
+
.brz-ed .nc-outline-send-2:before{content:"\f081"}
|
6734 |
+
.brz-ed .nc-outline-send:before{content:"\f082"}
|
6735 |
+
.brz-ed .nc-outline-sensor:before{content:"\f083"}
|
6736 |
+
.brz-ed .nc-outline-separate-round:before{content:"\f084"}
|
6737 |
+
.brz-ed .nc-outline-separate:before{content:"\f085"}
|
6738 |
+
.brz-ed .nc-outline-settings-46:before{content:"\f086"}
|
6739 |
+
.brz-ed .nc-outline-settings-99:before{content:"\f087"}
|
6740 |
+
.brz-ed .nc-outline-settings-gear-63:before{content:"\f088"}
|
6741 |
+
.brz-ed .nc-outline-settings-gear-64:before{content:"\f089"}
|
6742 |
+
.brz-ed .nc-outline-settings-gear-65:before{content:"\f08a"}
|
6743 |
+
.brz-ed .nc-outline-settings-tool-66:before{content:"\f08c"}
|
6744 |
+
.brz-ed .nc-outline-settings-tool-67:before{content:"\f08b"}
|
6745 |
+
.brz-ed .nc-outline-settings:before{content:"\f08d"}
|
6746 |
+
.brz-ed .nc-outline-sf-bridge:before{content:"\f08e"}
|
6747 |
+
.brz-ed .nc-outline-shake:before{content:"\f08f"}
|
6748 |
+
.brz-ed .nc-outline-shaker:before{content:"\f090"}
|
6749 |
+
.brz-ed .nc-outline-shape-adjust:before{content:"\f091"}
|
6750 |
+
.brz-ed .nc-outline-shape-arrow:before{content:"\f092"}
|
6751 |
+
.brz-ed .nc-outline-shape-circle:before{content:"\f093"}
|
6752 |
+
.brz-ed .nc-outline-shape-custom:before{content:"\f094"}
|
6753 |
+
.brz-ed .nc-outline-shape-line:before{content:"\f095"}
|
6754 |
+
.brz-ed .nc-outline-shape-oval:before{content:"\f096"}
|
6755 |
+
.brz-ed .nc-outline-shape-polygon-2:before{content:"\f097"}
|
6756 |
+
.brz-ed .nc-outline-shape-polygon:before{content:"\f098"}
|
6757 |
+
.brz-ed .nc-outline-shape-rectangle:before{content:"\f099"}
|
6758 |
+
.brz-ed .nc-outline-shape-square:before{content:"\f09a"}
|
6759 |
+
.brz-ed .nc-outline-shape-star:before{content:"\f09b"}
|
6760 |
+
.brz-ed .nc-outline-shape-triangle-2:before{content:"\f09c"}
|
6761 |
+
.brz-ed .nc-outline-shape-triangle:before{content:"\f09e"}
|
6762 |
+
.brz-ed .nc-outline-shapes:before{content:"\f09d"}
|
6763 |
+
.brz-ed .nc-outline-share-2:before{content:"\f09f"}
|
6764 |
+
.brz-ed .nc-outline-share-66:before{content:"\f0a0"}
|
6765 |
+
.brz-ed .nc-outline-share-91:before{content:"\f0a1"}
|
6766 |
+
.brz-ed .nc-outline-share-92:before{content:"\f0a2"}
|
6767 |
+
.brz-ed .nc-outline-share-bold:before{content:"\f0a3"}
|
6768 |
+
.brz-ed .nc-outline-share-left:before{content:"\f0a4"}
|
6769 |
+
.brz-ed .nc-outline-share-right:before{content:"\f0a5"}
|
6770 |
+
.brz-ed .nc-outline-share:before{content:"\f0a6"}
|
6771 |
+
.brz-ed .nc-outline-shared:before{content:"\f0a7"}
|
6772 |
+
.brz-ed .nc-outline-shark-2:before{content:"\f0a8"}
|
6773 |
+
.brz-ed .nc-outline-shark:before{content:"\f0a9"}
|
6774 |
+
.brz-ed .nc-outline-sharpener:before{content:"\f0aa"}
|
6775 |
+
.brz-ed .nc-outline-sheep:before{content:"\f0ab"}
|
6776 |
+
.brz-ed .nc-outline-shirt-business:before{content:"\f0ac"}
|
6777 |
+
.brz-ed .nc-outline-shirt-buttons:before{content:"\f0ad"}
|
6778 |
+
.brz-ed .nc-outline-shirt-neck:before{content:"\f0ae"}
|
6779 |
+
.brz-ed .nc-outline-shirt:before{content:"\f0af"}
|
6780 |
+
.brz-ed .nc-outline-shoe-man:before{content:"\f0b0"}
|
6781 |
+
.brz-ed .nc-outline-shoe-run:before{content:"\f0b1"}
|
6782 |
+
.brz-ed .nc-outline-shoe-sport:before{content:"\f0b2"}
|
6783 |
+
.brz-ed .nc-outline-shoe-woman:before{content:"\f0b3"}
|
6784 |
+
.brz-ed .nc-outline-shop-location:before{content:"\f0b4"}
|
6785 |
+
.brz-ed .nc-outline-shop:before{content:"\f0b5"}
|
6786 |
+
.brz-ed .nc-outline-shovel:before{content:"\f0b6"}
|
6787 |
+
.brz-ed .nc-outline-shower:before{content:"\f0b7"}
|
6788 |
+
.brz-ed .nc-outline-shrimp:before{content:"\f0b8"}
|
6789 |
+
.brz-ed .nc-outline-shuffle-01:before{content:"\f0b9"}
|
6790 |
+
.brz-ed .nc-outline-shuffle-35:before{content:"\f0ba"}
|
6791 |
+
.brz-ed .nc-outline-shuffle-97:before{content:"\f0bb"}
|
6792 |
+
.brz-ed .nc-outline-shuffle-98:before{content:"\f0bc"}
|
6793 |
+
.brz-ed .nc-outline-shy:before{content:"\f0bd"}
|
6794 |
+
.brz-ed .nc-outline-sick:before{content:"\f0be"}
|
6795 |
+
.brz-ed .nc-outline-sickle:before{content:"\f0c0"}
|
6796 |
+
.brz-ed .nc-outline-sidebar:before{content:"\f0bf"}
|
6797 |
+
.brz-ed .nc-outline-sign-board:before{content:"\f0c1"}
|
6798 |
+
.brz-ed .nc-outline-sign:before{content:"\f0c2"}
|
6799 |
+
.brz-ed .nc-outline-signal-2:before{content:"\f0c3"}
|
6800 |
+
.brz-ed .nc-outline-signal:before{content:"\f0c4"}
|
6801 |
+
.brz-ed .nc-outline-signature:before{content:"\f0c6"}
|
6802 |
+
.brz-ed .nc-outline-silly:before{content:"\f0c5"}
|
6803 |
+
.brz-ed .nc-outline-sim-card:before{content:"\f0c8"}
|
6804 |
+
.brz-ed .nc-outline-simple-add:before{content:"\f0c7"}
|
6805 |
+
.brz-ed .nc-outline-simple-delete:before{content:"\f0c9"}
|
6806 |
+
.brz-ed .nc-outline-simple-down:before{content:"\f0ca"}
|
6807 |
+
.brz-ed .nc-outline-simple-left:before{content:"\f0cb"}
|
6808 |
+
.brz-ed .nc-outline-simple-remove:before{content:"\f0cc"}
|
6809 |
+
.brz-ed .nc-outline-simple-right:before{content:"\f0cd"}
|
6810 |
+
.brz-ed .nc-outline-simple-up:before{content:"\f0ce"}
|
6811 |
+
.brz-ed .nc-outline-single-01:before{content:"\f0cf"}
|
6812 |
+
.brz-ed .nc-outline-single-02:before{content:"\f0d0"}
|
6813 |
+
.brz-ed .nc-outline-single-03:before{content:"\f0d1"}
|
6814 |
+
.brz-ed .nc-outline-single-04:before{content:"\f0d2"}
|
6815 |
+
.brz-ed .nc-outline-single-05:before{content:"\f0d3"}
|
6816 |
+
.brz-ed .nc-outline-single-body:before{content:"\f0d4"}
|
6817 |
+
.brz-ed .nc-outline-single-content-02:before{content:"\f0d5"}
|
6818 |
+
.brz-ed .nc-outline-single-content-03:before{content:"\f0d6"}
|
6819 |
+
.brz-ed .nc-outline-single-copies:before{content:"\f0d8"}
|
6820 |
+
.brz-ed .nc-outline-single-copy-04:before{content:"\f0d7"}
|
6821 |
+
.brz-ed .nc-outline-single-copy-06:before{content:"\f0d9"}
|
6822 |
+
.brz-ed .nc-outline-single-folded-content:before{content:"\f0da"}
|
6823 |
+
.brz-ed .nc-outline-single-folded:before{content:"\f0db"}
|
6824 |
+
.brz-ed .nc-outline-single-paragraph:before{content:"\f0dc"}
|
6825 |
+
.brz-ed .nc-outline-single-position:before{content:"\f0dd"}
|
6826 |
+
.brz-ed .nc-outline-single:before{content:"\f0de"}
|
6827 |
+
.brz-ed .nc-outline-sink-wash:before{content:"\f0df"}
|
6828 |
+
.brz-ed .nc-outline-sink:before{content:"\f0e0"}
|
6829 |
+
.brz-ed .nc-outline-size-large:before{content:"\f0e1"}
|
6830 |
+
.brz-ed .nc-outline-size-medium:before{content:"\f0e2"}
|
6831 |
+
.brz-ed .nc-outline-size-small:before{content:"\f0e3"}
|
6832 |
+
.brz-ed .nc-outline-size:before{content:"\f0e4"}
|
6833 |
+
.brz-ed .nc-outline-skateboard-2:before{content:"\f0e5"}
|
6834 |
+
.brz-ed .nc-outline-skateboard:before{content:"\f0e6"}
|
6835 |
+
.brz-ed .nc-outline-skew-down:before{content:"\f0e7"}
|
6836 |
+
.brz-ed .nc-outline-skew-left:before{content:"\f0e8"}
|
6837 |
+
.brz-ed .nc-outline-skew-right:before{content:"\f0e9"}
|
6838 |
+
.brz-ed .nc-outline-skew-up:before{content:"\f0ea"}
|
6839 |
+
.brz-ed .nc-outline-skirt:before{content:"\f0ec"}
|
6840 |
+
.brz-ed .nc-outline-skull-2:before{content:"\f0eb"}
|
6841 |
+
.brz-ed .nc-outline-skull:before{content:"\f0ed"}
|
6842 |
+
.brz-ed .nc-outline-slacks-12:before{content:"\f0ee"}
|
6843 |
+
.brz-ed .nc-outline-slacks-13:before{content:"\f0f0"}
|
6844 |
+
.brz-ed .nc-outline-sleep-2:before{content:"\f0ef"}
|
6845 |
+
.brz-ed .nc-outline-sleep:before{content:"\f0f1"}
|
6846 |
+
.brz-ed .nc-outline-slice:before{content:"\f0f2"}
|
6847 |
+
.brz-ed .nc-outline-slide-left:before{content:"\f0f3"}
|
6848 |
+
.brz-ed .nc-outline-slide-right:before{content:"\f0f4"}
|
6849 |
+
.brz-ed .nc-outline-slider:before{content:"\f0f5"}
|
6850 |
+
.brz-ed .nc-outline-sloth:before{content:"\f0f6"}
|
6851 |
+
.brz-ed .nc-outline-small-add:before{content:"\f0f7"}
|
6852 |
+
.brz-ed .nc-outline-small-delete:before{content:"\f0f8"}
|
6853 |
+
.brz-ed .nc-outline-small-down:before{content:"\f0f9"}
|
6854 |
+
.brz-ed .nc-outline-small-left:before{content:"\f0fa"}
|
6855 |
+
.brz-ed .nc-outline-small-remove:before{content:"\f0fb"}
|
6856 |
+
.brz-ed .nc-outline-small-right:before{content:"\f0fc"}
|
6857 |
+
.brz-ed .nc-outline-small-triangle-down:before{content:"\f0fd"}
|
6858 |
+
.brz-ed .nc-outline-small-triangle-left:before{content:"\f0fe"}
|
6859 |
+
.brz-ed .nc-outline-small-triangle-right:before{content:"\f0ff"}
|
6860 |
+
.brz-ed .nc-outline-small-triangle-up:before{content:"\f100"}
|
6861 |
+
.brz-ed .nc-outline-small-up:before{content:"\f101"}
|
6862 |
+
.brz-ed .nc-outline-smart:before{content:"\f102"}
|
6863 |
+
.brz-ed .nc-outline-smile:before{content:"\f103"}
|
6864 |
+
.brz-ed .nc-outline-smoothie:before{content:"\f104"}
|
6865 |
+
.brz-ed .nc-outline-snack:before{content:"\f105"}
|
6866 |
+
.brz-ed .nc-outline-snake:before{content:"\f106"}
|
6867 |
+
.brz-ed .nc-outline-snow-ball:before{content:"\f107"}
|
6868 |
+
.brz-ed .nc-outline-snow:before{content:"\f108"}
|
6869 |
+
.brz-ed .nc-outline-snowboard:before{content:"\f10a"}
|
6870 |
+
.brz-ed .nc-outline-snowman-head:before{content:"\f109"}
|
6871 |
+
.brz-ed .nc-outline-snowman:before{content:"\f10b"}
|
6872 |
+
.brz-ed .nc-outline-soak:before{content:"\f10c"}
|
6873 |
+
.brz-ed .nc-outline-soccer-field:before{content:"\f10d"}
|
6874 |
+
.brz-ed .nc-outline-sock:before{content:"\f10e"}
|
6875 |
+
.brz-ed .nc-outline-socket-europe-1:before{content:"\f10f"}
|
6876 |
+
.brz-ed .nc-outline-socket-europe-2:before{content:"\f110"}
|
6877 |
+
.brz-ed .nc-outline-socket-uk:before{content:"\f111"}
|
6878 |
+
.brz-ed .nc-outline-socket:before{content:"\f112"}
|
6879 |
+
.brz-ed .nc-outline-sofa:before{content:"\f114"}
|
6880 |
+
.brz-ed .nc-outline-soldier:before{content:"\f113"}
|
6881 |
+
.brz-ed .nc-outline-sound-wave:before{content:"\f115"}
|
6882 |
+
.brz-ed .nc-outline-soup:before{content:"\f116"}
|
6883 |
+
.brz-ed .nc-outline-soy-sauce:before{content:"\f117"}
|
6884 |
+
.brz-ed .nc-outline-spa:before{content:"\f118"}
|
6885 |
+
.brz-ed .nc-outline-spaceship:before{content:"\f119"}
|
6886 |
+
.brz-ed .nc-outline-speaker-01:before{content:"\f11a"}
|
6887 |
+
.brz-ed .nc-outline-speaker-05:before{content:"\f11b"}
|
6888 |
+
.brz-ed .nc-outline-speaker:before{content:"\f11c"}
|
6889 |
+
.brz-ed .nc-outline-speechless:before{content:"\f11d"}
|
6890 |
+
.brz-ed .nc-outline-spider:before{content:"\f11e"}
|
6891 |
+
.brz-ed .nc-outline-spiteful:before{content:"\f11f"}
|
6892 |
+
.brz-ed .nc-outline-split-33:before{content:"\f120"}
|
6893 |
+
.brz-ed .nc-outline-split-37:before{content:"\f121"}
|
6894 |
+
.brz-ed .nc-outline-split-horizontal:before{content:"\f122"}
|
6895 |
+
.brz-ed .nc-outline-split-round:before{content:"\f123"}
|
6896 |
+
.brz-ed .nc-outline-split-vertical:before{content:"\f124"}
|
6897 |
+
.brz-ed .nc-outline-split:before{content:"\f125"}
|
6898 |
+
.brz-ed .nc-outline-sport:before{content:"\f126"}
|
6899 |
+
.brz-ed .nc-outline-spray-2:before{content:"\f127"}
|
6900 |
+
.brz-ed .nc-outline-spray:before{content:"\f128"}
|
6901 |
+
.brz-ed .nc-outline-square-add-08:before{content:"\f12a"}
|
6902 |
+
.brz-ed .nc-outline-square-add-11:before{content:"\f129"}
|
6903 |
+
.brz-ed .nc-outline-square-corner-down-left:before{content:"\f12b"}
|
6904 |
+
.brz-ed .nc-outline-square-corner-down-right:before{content:"\f12c"}
|
6905 |
+
.brz-ed .nc-outline-square-corner-up-left:before{content:"\f12d"}
|
6906 |
+
.brz-ed .nc-outline-square-corner-up-right:before{content:"\f12e"}
|
6907 |
+
.brz-ed .nc-outline-square-delete-10:before{content:"\f12f"}
|
6908 |
+
.brz-ed .nc-outline-square-delete-13:before{content:"\f130"}
|
6909 |
+
.brz-ed .nc-outline-square-down-06:before{content:"\f131"}
|
6910 |
+
.brz-ed .nc-outline-square-down:before{content:"\f132"}
|
6911 |
+
.brz-ed .nc-outline-square-download:before{content:"\f133"}
|
6912 |
+
.brz-ed .nc-outline-square-left-04:before{content:"\f134"}
|
6913 |
+
.brz-ed .nc-outline-square-left:before{content:"\f136"}
|
6914 |
+
.brz-ed .nc-outline-square-marker:before{content:"\f135"}
|
6915 |
+
.brz-ed .nc-outline-square-pin:before{content:"\f137"}
|
6916 |
+
.brz-ed .nc-outline-square-remove-09:before{content:"\f138"}
|
6917 |
+
.brz-ed .nc-outline-square-remove-12:before{content:"\f139"}
|
6918 |
+
.brz-ed .nc-outline-square-right-03:before{content:"\f13a"}
|
6919 |
+
.brz-ed .nc-outline-square-right:before{content:"\f13b"}
|
6920 |
+
.brz-ed .nc-outline-square-simple-down:before{content:"\f13c"}
|
6921 |
+
.brz-ed .nc-outline-square-simple-left:before{content:"\f13d"}
|
6922 |
+
.brz-ed .nc-outline-square-simple-right:before{content:"\f13e"}
|
6923 |
+
.brz-ed .nc-outline-square-simple-up:before{content:"\f13f"}
|
6924 |
+
.brz-ed .nc-outline-square-up-05:before{content:"\f140"}
|
6925 |
+
.brz-ed .nc-outline-square-up:before{content:"\f141"}
|
6926 |
+
.brz-ed .nc-outline-square-upload:before{content:"\f142"}
|
6927 |
+
.brz-ed .nc-outline-squares:before{content:"\f143"}
|
6928 |
+
.brz-ed .nc-outline-stamp:before{content:"\f144"}
|
6929 |
+
.brz-ed .nc-outline-standing-man:before{content:"\f145"}
|
6930 |
+
.brz-ed .nc-outline-standing-woman:before{content:"\f146"}
|
6931 |
+
.brz-ed .nc-outline-star:before{content:"\f148"}
|
6932 |
+
.brz-ed .nc-outline-steak-2:before{content:"\f147"}
|
6933 |
+
.brz-ed .nc-outline-steak:before{content:"\f149"}
|
6934 |
+
.brz-ed .nc-outline-steering-wheel:before{content:"\f14a"}
|
6935 |
+
.brz-ed .nc-outline-steps:before{content:"\f14b"}
|
6936 |
+
.brz-ed .nc-outline-stock-2:before{content:"\f14c"}
|
6937 |
+
.brz-ed .nc-outline-stock:before{content:"\f14d"}
|
6938 |
+
.brz-ed .nc-outline-storage-hanger:before{content:"\f14e"}
|
6939 |
+
.brz-ed .nc-outline-storage:before{content:"\f14f"}
|
6940 |
+
.brz-ed .nc-outline-store:before{content:"\f150"}
|
6941 |
+
.brz-ed .nc-outline-strategy:before{content:"\f151"}
|
6942 |
+
.brz-ed .nc-outline-strawberry:before{content:"\f152"}
|
6943 |
+
.brz-ed .nc-outline-stre-down:before{content:"\f153"}
|
6944 |
+
.brz-ed .nc-outline-stre-left:before{content:"\f154"}
|
6945 |
+
.brz-ed .nc-outline-stre-right:before{content:"\f156"}
|
6946 |
+
.brz-ed .nc-outline-stre-up:before{content:"\f155"}
|
6947 |
+
.brz-ed .nc-outline-stretch:before{content:"\f157"}
|
6948 |
+
.brz-ed .nc-outline-strikethrough:before{content:"\f158"}
|
6949 |
+
.brz-ed .nc-outline-strong-down:before{content:"\f15a"}
|
6950 |
+
.brz-ed .nc-outline-strong-left:before{content:"\f159"}
|
6951 |
+
.brz-ed .nc-outline-strong-right:before{content:"\f15b"}
|
6952 |
+
.brz-ed .nc-outline-strong-up:before{content:"\f15c"}
|
6953 |
+
.brz-ed .nc-outline-subscript:before{content:"\f15d"}
|
6954 |
+
.brz-ed .nc-outline-subtitles:before{content:"\f15f"}
|
6955 |
+
.brz-ed .nc-outline-sugar:before{content:"\f15e"}
|
6956 |
+
.brz-ed .nc-outline-sun-cloud-drop:before{content:"\f160"}
|
6957 |
+
.brz-ed .nc-outline-sun-cloud-fog:before{content:"\f161"}
|
6958 |
+
.brz-ed .nc-outline-sun-cloud-hail:before{content:"\f162"}
|
6959 |
+
.brz-ed .nc-outline-sun-cloud-light:before{content:"\f163"}
|
6960 |
+
.brz-ed .nc-outline-sun-cloud-rain:before{content:"\f164"}
|
6961 |
+
.brz-ed .nc-outline-sun-cloud-snow-54:before{content:"\f165"}
|
6962 |
+
.brz-ed .nc-outline-sun-cloud-snow-55:before{content:"\f166"}
|
6963 |
+
.brz-ed .nc-outline-sun-cloud:before{content:"\f167"}
|
6964 |
+
.brz-ed .nc-outline-sun-fog-29:before{content:"\f168"}
|
6965 |
+
.brz-ed .nc-outline-sun-fog-30:before{content:"\f169"}
|
6966 |
+
.brz-ed .nc-outline-sun-fog-43:before{content:"\f16a"}
|
6967 |
+
.brz-ed .nc-outline-sunglasses-48:before{content:"\f16b"}
|
6968 |
+
.brz-ed .nc-outline-sunglasses-49:before{content:"\f16c"}
|
6969 |
+
.brz-ed .nc-outline-sunglasses:before{content:"\f16d"}
|
6970 |
+
.brz-ed .nc-outline-superscript:before{content:"\f16e"}
|
6971 |
+
.brz-ed .nc-outline-supplement:before{content:"\f16f"}
|
6972 |
+
.brz-ed .nc-outline-support-16:before{content:"\f170"}
|
6973 |
+
.brz-ed .nc-outline-support-17:before{content:"\f171"}
|
6974 |
+
.brz-ed .nc-outline-surf-2:before{content:"\f172"}
|
6975 |
+
.brz-ed .nc-outline-surf:before{content:"\f173"}
|
6976 |
+
.brz-ed .nc-outline-surprise:before{content:"\f174"}
|
6977 |
+
.brz-ed .nc-outline-sushi:before{content:"\f175"}
|
6978 |
+
.brz-ed .nc-outline-swap-horizontal:before{content:"\f176"}
|
6979 |
+
.brz-ed .nc-outline-swap-vertical:before{content:"\f177"}
|
6980 |
+
.brz-ed .nc-outline-swimsuit:before{content:"\f178"}
|
6981 |
+
.brz-ed .nc-outline-swimwear:before{content:"\f179"}
|
6982 |
+
.brz-ed .nc-outline-swipe-bottom:before{content:"\f17a"}
|
6983 |
+
.brz-ed .nc-outline-swipe-left:before{content:"\f17b"}
|
6984 |
+
.brz-ed .nc-outline-swipe-right:before{content:"\f17c"}
|
6985 |
+
.brz-ed .nc-outline-swipe-up:before{content:"\f17d"}
|
6986 |
+
.brz-ed .nc-outline-swiss-knife:before{content:"\f17e"}
|
6987 |
+
.brz-ed .nc-outline-sync:before{content:"\f17f"}
|
6988 |
+
.brz-ed .nc-outline-syringe:before{content:"\f180"}
|
6989 |
+
.brz-ed .nc-outline-system-update:before{content:"\f181"}
|
6990 |
+
.brz-ed .nc-outline-table-left:before{content:"\f182"}
|
6991 |
+
.brz-ed .nc-outline-table-right:before{content:"\f183"}
|
6992 |
+
.brz-ed .nc-outline-table:before{content:"\f184"}
|
6993 |
+
.brz-ed .nc-outline-tablet-2:before{content:"\f185"}
|
6994 |
+
.brz-ed .nc-outline-tablet-button:before{content:"\f186"}
|
6995 |
+
.brz-ed .nc-outline-tablet-mobile:before{content:"\f187"}
|
6996 |
+
.brz-ed .nc-outline-tablet-reader-31:before{content:"\f188"}
|
6997 |
+
.brz-ed .nc-outline-tablet-reader-42:before{content:"\f189"}
|
6998 |
+
.brz-ed .nc-outline-tablet-toolbar:before{content:"\f18a"}
|
6999 |
+
.brz-ed .nc-outline-tablet:before{content:"\f18b"}
|
7000 |
+
.brz-ed .nc-outline-tacos:before{content:"\f18c"}
|
7001 |
+
.brz-ed .nc-outline-tactic:before{content:"\f18d"}
|
7002 |
+
.brz-ed .nc-outline-tag-2:before{content:"\f18f"}
|
7003 |
+
.brz-ed .nc-outline-tag-add:before{content:"\f18e"}
|
7004 |
+
.brz-ed .nc-outline-tag-check:before{content:"\f190"}
|
7005 |
+
.brz-ed .nc-outline-tag-content:before{content:"\f191"}
|
7006 |
+
.brz-ed .nc-outline-tag-cut:before{content:"\f192"}
|
7007 |
+
.brz-ed .nc-outline-tag-line:before{content:"\f193"}
|
7008 |
+
.brz-ed .nc-outline-tag-loyalty:before{content:"\f194"}
|
7009 |
+
.brz-ed .nc-outline-tag-remove:before{content:"\f195"}
|
7010 |
+
.brz-ed .nc-outline-tag-sale:before{content:"\f197"}
|
7011 |
+
.brz-ed .nc-outline-tag:before{content:"\f196"}
|
7012 |
+
.brz-ed .nc-outline-tail-down:before{content:"\f198"}
|
7013 |
+
.brz-ed .nc-outline-tail-left:before{content:"\f199"}
|
7014 |
+
.brz-ed .nc-outline-tail-right:before{content:"\f19a"}
|
7015 |
+
.brz-ed .nc-outline-tail-triangle-down:before{content:"\f19b"}
|
7016 |
+
.brz-ed .nc-outline-tail-triangle-left:before{content:"\f19c"}
|
7017 |
+
.brz-ed .nc-outline-tail-triangle-right:before{content:"\f19d"}
|
7018 |
+
.brz-ed .nc-outline-tail-triangle-up:before{content:"\f19f"}
|
7019 |
+
.brz-ed .nc-outline-tail-up:before{content:"\f19e"}
|
7020 |
+
.brz-ed .nc-outline-tap-01:before{content:"\f1a0"}
|
7021 |
+
.brz-ed .nc-outline-tap-02:before{content:"\f1a1"}
|
7022 |
+
.brz-ed .nc-outline-tape:before{content:"\f1a2"}
|
7023 |
+
.brz-ed .nc-outline-target:before{content:"\f1a3"}
|
7024 |
+
.brz-ed .nc-outline-tea-bag:before{content:"\f1a4"}
|
7025 |
+
.brz-ed .nc-outline-tea:before{content:"\f1a5"}
|
7026 |
+
.brz-ed .nc-outline-temperature-23:before{content:"\f1a6"}
|
7027 |
+
.brz-ed .nc-outline-temperature-24:before{content:"\f1a7"}
|
7028 |
+
.brz-ed .nc-outline-temple-25:before{content:"\f1a8"}
|
7029 |
+
.brz-ed .nc-outline-tennis-ball:before{content:"\f1a9"}
|
7030 |
+
.brz-ed .nc-outline-tennis:before{content:"\f1aa"}
|
7031 |
+
.brz-ed .nc-outline-terrace:before{content:"\f1ab"}
|
7032 |
+
.brz-ed .nc-outline-text-2:before{content:"\f1ac"}
|
7033 |
+
.brz-ed .nc-outline-text:before{content:"\f1ad"}
|
7034 |
+
.brz-ed .nc-outline-texture:before{content:"\f1ae"}
|
7035 |
+
.brz-ed .nc-outline-ticket-75:before{content:"\f1af"}
|
7036 |
+
.brz-ed .nc-outline-ticket-76:before{content:"\f1b0"}
|
7037 |
+
.brz-ed .nc-outline-tie-01:before{content:"\f1b1"}
|
7038 |
+
.brz-ed .nc-outline-tie-02:before{content:"\f1b2"}
|
7039 |
+
.brz-ed .nc-outline-tie-bow:before{content:"\f1b3"}
|
7040 |
+
.brz-ed .nc-outline-tile-55:before{content:"\f1b4"}
|
7041 |
+
.brz-ed .nc-outline-tile-56:before{content:"\f1b5"}
|
7042 |
+
.brz-ed .nc-outline-time-2:before{content:"\f1b6"}
|
7043 |
+
.brz-ed .nc-outline-time-3:before{content:"\f1b7"}
|
7044 |
+
.brz-ed .nc-outline-time-alarm:before{content:"\f1b8"}
|
7045 |
+
.brz-ed .nc-outline-time-clock:before{content:"\f1b9"}
|
7046 |
+
.brz-ed .nc-outline-time-countdown:before{content:"\f1ba"}
|
7047 |
+
.brz-ed .nc-outline-time:before{content:"\f1bb"}
|
7048 |
+
.brz-ed .nc-outline-timeline:before{content:"\f1bc"}
|
7049 |
+
.brz-ed .nc-outline-timer:before{content:"\f1bd"}
|
7050 |
+
.brz-ed .nc-outline-todo:before{content:"\f1be"}
|
7051 |
+
.brz-ed .nc-outline-toilet-paper:before{content:"\f1bf"}
|
7052 |
+
.brz-ed .nc-outline-toilet:before{content:"\f1c0"}
|
7053 |
+
.brz-ed .nc-outline-tomato:before{content:"\f1c1"}
|
7054 |
+
.brz-ed .nc-outline-tool-blur:before{content:"\f1c2"}
|
7055 |
+
.brz-ed .nc-outline-tool-hand:before{content:"\f1c3"}
|
7056 |
+
.brz-ed .nc-outline-tool-select:before{content:"\f1c4"}
|
7057 |
+
.brz-ed .nc-outline-tooth:before{content:"\f1c5"}
|
7058 |
+
.brz-ed .nc-outline-touch:before{content:"\f1c7"}
|
7059 |
+
.brz-ed .nc-outline-track-delivery:before{content:"\f1c6"}
|
7060 |
+
.brz-ed .nc-outline-tracking:before{content:"\f1c8"}
|
7061 |
+
.brz-ed .nc-outline-tractor:before{content:"\f1c9"}
|
7062 |
+
.brz-ed .nc-outline-train-speed:before{content:"\f1ca"}
|
7063 |
+
.brz-ed .nc-outline-train:before{content:"\f1cb"}
|
7064 |
+
.brz-ed .nc-outline-tram:before{content:"\f1cc"}
|
7065 |
+
.brz-ed .nc-outline-transform-2d:before{content:"\f1cd"}
|
7066 |
+
.brz-ed .nc-outline-transform-origin:before{content:"\f1ce"}
|
7067 |
+
.brz-ed .nc-outline-transform:before{content:"\f1cf"}
|
7068 |
+
.brz-ed .nc-outline-transparent:before{content:"\f1d1"}
|
7069 |
+
.brz-ed .nc-outline-trash-round:before{content:"\f1d0"}
|
7070 |
+
.brz-ed .nc-outline-trash-simple:before{content:"\f1d2"}
|
7071 |
+
.brz-ed .nc-outline-trash:before{content:"\f1d3"}
|
7072 |
+
.brz-ed .nc-outline-treasure-map-21:before{content:"\f1d4"}
|
7073 |
+
.brz-ed .nc-outline-treasure-map-40:before{content:"\f1d5"}
|
7074 |
+
.brz-ed .nc-outline-tree-01:before{content:"\f1d6"}
|
7075 |
+
.brz-ed .nc-outline-tree-02:before{content:"\f1d7"}
|
7076 |
+
.brz-ed .nc-outline-tree-03:before{content:"\f1d8"}
|
7077 |
+
.brz-ed .nc-outline-tree-ball:before{content:"\f1d9"}
|
7078 |
+
.brz-ed .nc-outline-tree:before{content:"\f1da"}
|
7079 |
+
.brz-ed .nc-outline-trend-down:before{content:"\f1db"}
|
7080 |
+
.brz-ed .nc-outline-trend-up:before{content:"\f1dc"}
|
7081 |
+
.brz-ed .nc-outline-triangle-down-20:before{content:"\f1dd"}
|
7082 |
+
.brz-ed .nc-outline-triangle-down-65:before{content:"\f1de"}
|
7083 |
+
.brz-ed .nc-outline-triangle-down:before{content:"\f1df"}
|
7084 |
+
.brz-ed .nc-outline-triangle-left-18:before{content:"\f1e0"}
|
7085 |
+
.brz-ed .nc-outline-triangle-left-63:before{content:"\f1e1"}
|
7086 |
+
.brz-ed .nc-outline-triangle-left:before{content:"\f1e2"}
|
7087 |
+
.brz-ed .nc-outline-triangle-right-17:before{content:"\f1e3"}
|
7088 |
+
.brz-ed .nc-outline-triangle-right-62:before{content:"\f1e4"}
|
7089 |
+
.brz-ed .nc-outline-triangle-right:before{content:"\f1e5"}
|
7090 |
+
.brz-ed .nc-outline-triangle-up-19:before{content:"\f1e6"}
|
7091 |
+
.brz-ed .nc-outline-triangle-up-64:before{content:"\f1e7"}
|
7092 |
+
.brz-ed .nc-outline-triangle-up:before{content:"\f1e8"}
|
7093 |
+
.brz-ed .nc-outline-tripod:before{content:"\f1e9"}
|
7094 |
+
.brz-ed .nc-outline-trolley:before{content:"\f1ea"}
|
7095 |
+
.brz-ed .nc-outline-trophy:before{content:"\f1eb"}
|
7096 |
+
.brz-ed .nc-outline-truck-front:before{content:"\f1ec"}
|
7097 |
+
.brz-ed .nc-outline-trunk:before{content:"\f1ed"}
|
7098 |
+
.brz-ed .nc-outline-tshirt-53:before{content:"\f1ee"}
|
7099 |
+
.brz-ed .nc-outline-tshirt-54:before{content:"\f1ef"}
|
7100 |
+
.brz-ed .nc-outline-tshirt-sport:before{content:"\f1f0"}
|
7101 |
+
.brz-ed .nc-outline-turtle:before{content:"\f1f1"}
|
7102 |
+
.brz-ed .nc-outline-tv-2:before{content:"\f1f2"}
|
7103 |
+
.brz-ed .nc-outline-tv-old:before{content:"\f1f3"}
|
7104 |
+
.brz-ed .nc-outline-tv:before{content:"\f1f4"}
|
7105 |
+
.brz-ed .nc-outline-ui-03:before{content:"\f1f5"}
|
7106 |
+
.brz-ed .nc-outline-ui-04:before{content:"\f1f6"}
|
7107 |
+
.brz-ed .nc-outline-umbrella-13:before{content:"\f1f7"}
|
7108 |
+
.brz-ed .nc-outline-umbrella-14:before{content:"\f1f8"}
|
7109 |
+
.brz-ed .nc-outline-underline:before{content:"\f1f9"}
|
7110 |
+
.brz-ed .nc-outline-underwear-man:before{content:"\f1fa"}
|
7111 |
+
.brz-ed .nc-outline-underwear:before{content:"\f1fb"}
|
7112 |
+
.brz-ed .nc-outline-undo-25:before{content:"\f1fc"}
|
7113 |
+
.brz-ed .nc-outline-undo-29:before{content:"\f1fd"}
|
7114 |
+
.brz-ed .nc-outline-ungroup:before{content:"\f1fe"}
|
7115 |
+
.brz-ed .nc-outline-unite-round:before{content:"\f1ff"}
|
7116 |
+
.brz-ed .nc-outline-unite:before{content:"\f200"}
|
7117 |
+
.brz-ed .nc-outline-upload-2:before{content:"\f201"}
|
7118 |
+
.brz-ed .nc-outline-upload:before{content:"\f202"}
|
7119 |
+
.brz-ed .nc-outline-upset-13:before{content:"\f203"}
|
7120 |
+
.brz-ed .nc-outline-upset-14:before{content:"\f204"}
|
7121 |
+
.brz-ed .nc-outline-usb:before{content:"\f205"}
|
7122 |
+
.brz-ed .nc-outline-user-balance:before{content:"\f206"}
|
7123 |
+
.brz-ed .nc-outline-user-climb:before{content:"\f207"}
|
7124 |
+
.brz-ed .nc-outline-user-frame-31:before{content:"\f209"}
|
7125 |
+
.brz-ed .nc-outline-user-frame-32:before{content:"\f208"}
|
7126 |
+
.brz-ed .nc-outline-user-frame-33:before{content:"\f20a"}
|
7127 |
+
.brz-ed .nc-outline-user-meditation:before{content:"\f20b"}
|
7128 |
+
.brz-ed .nc-outline-user-run:before{content:"\f20c"}
|
7129 |
+
.brz-ed .nc-outline-user-snowboard:before{content:"\f20d"}
|
7130 |
+
.brz-ed .nc-outline-user-swim:before{content:"\f20e"}
|
7131 |
+
.brz-ed .nc-outline-user:before{content:"\f20f"}
|
7132 |
+
.brz-ed .nc-outline-vampire:before{content:"\f210"}
|
7133 |
+
.brz-ed .nc-outline-vector-2:before{content:"\f211"}
|
7134 |
+
.brz-ed .nc-outline-vector:before{content:"\f212"}
|
7135 |
+
.brz-ed .nc-outline-vegan:before{content:"\f213"}
|
7136 |
+
.brz-ed .nc-outline-ventilation:before{content:"\f215"}
|
7137 |
+
.brz-ed .nc-outline-vespa-front:before{content:"\f214"}
|
7138 |
+
.brz-ed .nc-outline-vespa:before{content:"\f216"}
|
7139 |
+
.brz-ed .nc-outline-vest-31:before{content:"\f217"}
|
7140 |
+
.brz-ed .nc-outline-vest-sport:before{content:"\f218"}
|
7141 |
+
.brz-ed .nc-outline-vest:before{content:"\f219"}
|
7142 |
+
.brz-ed .nc-outline-video-64:before{content:"\f21a"}
|
7143 |
+
.brz-ed .nc-outline-video-65:before{content:"\f21b"}
|
7144 |
+
.brz-ed .nc-outline-video-66:before{content:"\f21c"}
|
7145 |
+
.brz-ed .nc-outline-video-67:before{content:"\f21d"}
|
7146 |
+
.brz-ed .nc-outline-videocamera-71:before{content:"\f21e"}
|
7147 |
+
.brz-ed .nc-outline-videocamera-72:before{content:"\f21f"}
|
7148 |
+
.brz-ed .nc-outline-virus:before{content:"\f220"}
|
7149 |
+
.brz-ed .nc-outline-voice-record:before{content:"\f221"}
|
7150 |
+
.brz-ed .nc-outline-volleyball:before{content:"\f222"}
|
7151 |
+
.brz-ed .nc-outline-volume-93:before{content:"\f223"}
|
7152 |
+
.brz-ed .nc-outline-volume-97:before{content:"\f224"}
|
7153 |
+
.brz-ed .nc-outline-volume-98:before{content:"\f225"}
|
7154 |
+
.brz-ed .nc-outline-volume-ban:before{content:"\f226"}
|
7155 |
+
.brz-ed .nc-outline-volume-down:before{content:"\f227"}
|
7156 |
+
.brz-ed .nc-outline-volume-off:before{content:"\f228"}
|
7157 |
+
.brz-ed .nc-outline-volume-up:before{content:"\f229"}
|
7158 |
+
.brz-ed .nc-outline-vpn:before{content:"\f22a"}
|
7159 |
+
.brz-ed .nc-outline-waffle:before{content:"\f22b"}
|
7160 |
+
.brz-ed .nc-outline-walk:before{content:"\f22d"}
|
7161 |
+
.brz-ed .nc-outline-wallet-43:before{content:"\f22c"}
|
7162 |
+
.brz-ed .nc-outline-wallet-44:before{content:"\f22e"}
|
7163 |
+
.brz-ed .nc-outline-wallet-90:before{content:"\f22f"}
|
7164 |
+
.brz-ed .nc-outline-wallet:before{content:"\f230"}
|
7165 |
+
.brz-ed .nc-outline-wand-11:before{content:"\f231"}
|
7166 |
+
.brz-ed .nc-outline-wardrobe:before{content:"\f232"}
|
7167 |
+
.brz-ed .nc-outline-wash-2:before{content:"\f233"}
|
7168 |
+
.brz-ed .nc-outline-wash-30:before{content:"\f234"}
|
7169 |
+
.brz-ed .nc-outline-wash-60:before{content:"\f235"}
|
7170 |
+
.brz-ed .nc-outline-wash-90:before{content:"\f236"}
|
7171 |
+
.brz-ed .nc-outline-wash-hand:before{content:"\f237"}
|
7172 |
+
.brz-ed .nc-outline-wash:before{content:"\f238"}
|
7173 |
+
.brz-ed .nc-outline-washing-fluid:before{content:"\f239"}
|
7174 |
+
.brz-ed .nc-outline-waste-danger:before{content:"\f23a"}
|
7175 |
+
.brz-ed .nc-outline-waste-recycling:before{content:"\f23b"}
|
7176 |
+
.brz-ed .nc-outline-waste:before{content:"\f23c"}
|
7177 |
+
.brz-ed .nc-outline-watch-circle:before{content:"\f23d"}
|
7178 |
+
.brz-ed .nc-outline-watch-dev:before{content:"\f23e"}
|
7179 |
+
.brz-ed .nc-outline-watch-time:before{content:"\f23f"}
|
7180 |
+
.brz-ed .nc-outline-watch:before{content:"\f240"}
|
7181 |
+
.brz-ed .nc-outline-water-hand:before{content:"\f241"}
|
7182 |
+
.brz-ed .nc-outline-water-sink:before{content:"\f242"}
|
7183 |
+
.brz-ed .nc-outline-water:before{content:"\f243"}
|
7184 |
+
.brz-ed .nc-outline-watermelon:before{content:"\f244"}
|
7185 |
+
.brz-ed .nc-outline-wc:before{content:"\f245"}
|
7186 |
+
.brz-ed .nc-outline-web-design:before{content:"\f246"}
|
7187 |
+
.brz-ed .nc-outline-webcam-38:before{content:"\f247"}
|
7188 |
+
.brz-ed .nc-outline-webcam-39:before{content:"\f248"}
|
7189 |
+
.brz-ed .nc-outline-webpage-2:before{content:"\f249"}
|
7190 |
+
.brz-ed .nc-outline-webpage:before{content:"\f24a"}
|
7191 |
+
.brz-ed .nc-outline-weed:before{content:"\f24b"}
|
7192 |
+
.brz-ed .nc-outline-weight:before{content:"\f24c"}
|
7193 |
+
.brz-ed .nc-outline-what:before{content:"\f24d"}
|
7194 |
+
.brz-ed .nc-outline-wheel-2:before{content:"\f24e"}
|
7195 |
+
.brz-ed .nc-outline-wheel:before{content:"\f251"}
|
7196 |
+
.brz-ed .nc-outline-wheelchair:before{content:"\f24f"}
|
7197 |
+
.brz-ed .nc-outline-whisk:before{content:"\f250"}
|
7198 |
+
.brz-ed .nc-outline-whiskers:before{content:"\f252"}
|
7199 |
+
.brz-ed .nc-outline-whistle:before{content:"\f253"}
|
7200 |
+
.brz-ed .nc-outline-white-house:before{content:"\f254"}
|
7201 |
+
.brz-ed .nc-outline-widget:before{content:"\f255"}
|
7202 |
+
.brz-ed .nc-outline-wifi-2:before{content:"\f256"}
|
7203 |
+
.brz-ed .nc-outline-wifi-off:before{content:"\f257"}
|
7204 |
+
.brz-ed .nc-outline-wifi-protected:before{content:"\f258"}
|
7205 |
+
.brz-ed .nc-outline-wifi-router:before{content:"\f259"}
|
7206 |
+
.brz-ed .nc-outline-wifi:before{content:"\f25a"}
|
7207 |
+
.brz-ed .nc-outline-wind-2:before{content:"\f25b"}
|
7208 |
+
.brz-ed .nc-outline-wind:before{content:"\f25c"}
|
7209 |
+
.brz-ed .nc-outline-window-add:before{content:"\f25d"}
|
7210 |
+
.brz-ed .nc-outline-window-code:before{content:"\f25e"}
|
7211 |
+
.brz-ed .nc-outline-window-delete:before{content:"\f25f"}
|
7212 |
+
.brz-ed .nc-outline-window-dev:before{content:"\f260"}
|
7213 |
+
.brz-ed .nc-outline-window-paragraph:before{content:"\f261"}
|
7214 |
+
.brz-ed .nc-outline-window-responsive:before{content:"\f262"}
|
7215 |
+
.brz-ed .nc-outline-window-zoom-in:before{content:"\f263"}
|
7216 |
+
.brz-ed .nc-outline-window-zoom-out:before{content:"\f264"}
|
7217 |
+
.brz-ed .nc-outline-wine-list:before{content:"\f265"}
|
7218 |
+
.brz-ed .nc-outline-wink-06:before{content:"\f266"}
|
7219 |
+
.brz-ed .nc-outline-wink-11:before{content:"\f267"}
|
7220 |
+
.brz-ed .nc-outline-wink-69:before{content:"\f268"}
|
7221 |
+
.brz-ed .nc-outline-witch-hat:before{content:"\f269"}
|
7222 |
+
.brz-ed .nc-outline-wolf:before{content:"\f26a"}
|
7223 |
+
.brz-ed .nc-outline-woman-2:before{content:"\f26b"}
|
7224 |
+
.brz-ed .nc-outline-woman-21:before{content:"\f26c"}
|
7225 |
+
.brz-ed .nc-outline-woman-24:before{content:"\f26d"}
|
7226 |
+
.brz-ed .nc-outline-woman-25:before{content:"\f26e"}
|
7227 |
+
.brz-ed .nc-outline-woman-down:before{content:"\f26f"}
|
7228 |
+
.brz-ed .nc-outline-woman-man:before{content:"\f270"}
|
7229 |
+
.brz-ed .nc-outline-woman-up:before{content:"\f271"}
|
7230 |
+
.brz-ed .nc-outline-woman:before{content:"\f272"}
|
7231 |
+
.brz-ed .nc-outline-wood:before{content:"\f273"}
|
7232 |
+
.brz-ed .nc-outline-wool-ball:before{content:"\f274"}
|
7233 |
+
.brz-ed .nc-outline-worl-marker:before{content:"\f275"}
|
7234 |
+
.brz-ed .nc-outline-world-2:before{content:"\f276"}
|
7235 |
+
.brz-ed .nc-outline-world-pin:before{content:"\f277"}
|
7236 |
+
.brz-ed .nc-outline-world:before{content:"\f278"}
|
7237 |
+
.brz-ed .nc-outline-yogurt:before{content:"\f279"}
|
7238 |
+
.brz-ed .nc-outline-zip-54:before{content:"\f27a"}
|
7239 |
+
.brz-ed .nc-outline-zip-55:before{content:"\f27b"}
|
7240 |
+
.brz-ed .nc-outline-zombie:before{content:"\f27c"}
|
7241 |
+
.brz-ed .nc-outline-zoom-100:before{content:"\f27d"}
|
7242 |
+
.brz-ed .nc-outline-zoom-2:before{content:"\f27e"}
|
7243 |
+
.brz-ed .nc-outline-zoom-88:before{content:"\f27f"}
|
7244 |
+
.brz-ed .nc-outline-zoom-99:before{content:"\f281"}
|
7245 |
+
.brz-ed .nc-outline-zoom-bold-in:before{content:"\f280"}
|
7246 |
+
.brz-ed .nc-outline-zoom-bold-out:before{content:"\f282"}
|
7247 |
+
.brz-ed .nc-outline-zoom-bold:before{content:"\f283"}
|
7248 |
+
.brz-ed .nc-outline-zoom-e:before{content:"\f285"}
|
7249 |
+
.brz-ed .nc-outline-zoom-in:before{content:"\f284"}
|
7250 |
+
.brz-ed .nc-outline-zoom-out:before{content:"\f286"}
|
7251 |
+
.brz-ed .nc-outline-zoom-split-in:before{content:"\f287"}
|
7252 |
+
.brz-ed .nc-outline-zoom-split-out:before{content:"\f288"}
|
7253 |
+
.brz-ed .nc-outline-zoom-split:before{content:"\f289"}
|
7254 |
+
.brz-ed .nc-outline-zoom-triangles:before{content:"\f28a"}
|
7255 |
+
.brz-ed .nc-outline-zoom:before{content:"\f28b"}
|
7256 |
+
.brz-ed .nc-glyph-2x-drag-down:before{content:"\ea01"}
|
7257 |
+
.brz-ed .nc-glyph-2x-drag-up:before{content:"\ea02"}
|
7258 |
+
.brz-ed .nc-glyph-2x-swipe-down:before{content:"\ea03"}
|
7259 |
+
.brz-ed .nc-glyph-2x-swipe-left:before{content:"\ea04"}
|
7260 |
+
.brz-ed .nc-glyph-2x-swipe-right:before{content:"\ea05"}
|
7261 |
+
.brz-ed .nc-glyph-2x-swipe-up:before{content:"\ea06"}
|
7262 |
+
.brz-ed .nc-glyph-2x-tap:before{content:"\ea07"}
|
7263 |
+
.brz-ed .nc-glyph-3d-29:before{content:"\ea08"}
|
7264 |
+
.brz-ed .nc-glyph-3d-model:before{content:"\ea09"}
|
7265 |
+
.brz-ed .nc-glyph-3d:before{content:"\ea0a"}
|
7266 |
+
.brz-ed .nc-glyph-3x-swipe-left:before{content:"\ea0b"}
|
7267 |
+
.brz-ed .nc-glyph-3x-swipe-right:before{content:"\ea0c"}
|
7268 |
+
.brz-ed .nc-glyph-3x-swipe-up:before{content:"\ea0d"}
|
7269 |
+
.brz-ed .nc-glyph-3x-tap:before{content:"\ea0e"}
|
7270 |
+
.brz-ed .nc-glyph-4x-swipe-left:before{content:"\ea0f"}
|
7271 |
+
.brz-ed .nc-glyph-4x-swipe-right:before{content:"\ea10"}
|
7272 |
+
.brz-ed .nc-glyph-4x-swipe-up:before{content:"\ea11"}
|
7273 |
+
.brz-ed .nc-glyph-a-add:before{content:"\ea12"}
|
7274 |
+
.brz-ed .nc-glyph-a-check:before{content:"\ea13"}
|
7275 |
+
.brz-ed .nc-glyph-a-delete:before{content:"\ea14"}
|
7276 |
+
.brz-ed .nc-glyph-a-edit:before{content:"\ea15"}
|
7277 |
+
.brz-ed .nc-glyph-a-heart:before{content:"\ea16"}
|
7278 |
+
.brz-ed .nc-glyph-a-location:before{content:"\ea17"}
|
7279 |
+
.brz-ed .nc-glyph-a-remove:before{content:"\ea18"}
|
7280 |
+
.brz-ed .nc-glyph-a-search:before{content:"\ea19"}
|
7281 |
+
.brz-ed .nc-glyph-a-security:before{content:"\ea1a"}
|
7282 |
+
.brz-ed .nc-glyph-a-share:before{content:"\ea1b"}
|
7283 |
+
.brz-ed .nc-glyph-a-star:before{content:"\ea1c"}
|
7284 |
+
.brz-ed .nc-glyph-a-sync:before{content:"\ea1d"}
|
7285 |
+
.brz-ed .nc-glyph-a-time:before{content:"\ea1e"}
|
7286 |
+
.brz-ed .nc-glyph-abc:before{content:"\ea1f"}
|
7287 |
+
.brz-ed .nc-glyph-accessibility:before{content:"\ea20"}
|
7288 |
+
.brz-ed .nc-glyph-action-73:before{content:"\ea21"}
|
7289 |
+
.brz-ed .nc-glyph-action-74:before{content:"\ea22"}
|
7290 |
+
.brz-ed .nc-glyph-active-38:before{content:"\ea23"}
|
7291 |
+
.brz-ed .nc-glyph-active-40:before{content:"\ea24"}
|
7292 |
+
.brz-ed .nc-glyph-add-27:before{content:"\ea25"}
|
7293 |
+
.brz-ed .nc-glyph-add-29:before{content:"\ea26"}
|
7294 |
+
.brz-ed .nc-glyph-add:before{content:"\ea27"}
|
7295 |
+
.brz-ed .nc-glyph-agenda-bookmark:before{content:"\ea28"}
|
7296 |
+
.brz-ed .nc-glyph-agenda:before{content:"\ea29"}
|
7297 |
+
.brz-ed .nc-glyph-air-baloon:before{content:"\ea2a"}
|
7298 |
+
.brz-ed .nc-glyph-air-conditioner:before{content:"\ea2b"}
|
7299 |
+
.brz-ed .nc-glyph-airbag:before{content:"\ea2c"}
|
7300 |
+
.brz-ed .nc-glyph-alarm-add:before{content:"\ea2d"}
|
7301 |
+
.brz-ed .nc-glyph-alarm-delete:before{content:"\ea2e"}
|
7302 |
+
.brz-ed .nc-glyph-album-2:before{content:"\ea2f"}
|
7303 |
+
.brz-ed .nc-glyph-album:before{content:"\ea30"}
|
7304 |
+
.brz-ed .nc-glyph-alcohol:before{content:"\ea31"}
|
7305 |
+
.brz-ed .nc-glyph-alert-circle-exc:before{content:"\ea32"}
|
7306 |
+
.brz-ed .nc-glyph-alert-circle-i:before{content:"\ea33"}
|
7307 |
+
.brz-ed .nc-glyph-alert-circle-que:before{content:"\ea34"}
|
7308 |
+
.brz-ed .nc-glyph-alert-exc:before{content:"\ea35"}
|
7309 |
+
.brz-ed .nc-glyph-alert-i:before{content:"\ea36"}
|
7310 |
+
.brz-ed .nc-glyph-alert-que:before{content:"\ea37"}
|
7311 |
+
.brz-ed .nc-glyph-alert-square-exc:before{content:"\ea38"}
|
7312 |
+
.brz-ed .nc-glyph-alert-square-i:before{content:"\ea39"}
|
7313 |
+
.brz-ed .nc-glyph-alert-square-que:before{content:"\ea3a"}
|
7314 |
+
.brz-ed .nc-glyph-alert:before{content:"\ea3b"}
|
7315 |
+
.brz-ed .nc-glyph-alien-29:before{content:"\ea3c"}
|
7316 |
+
.brz-ed .nc-glyph-alien-33:before{content:"\ea3d"}
|
7317 |
+
.brz-ed .nc-glyph-align-bottom:before{content:"\ea3e"}
|
7318 |
+
.brz-ed .nc-glyph-align-center-horizontal:before{content:"\ea3f"}
|
7319 |
+
.brz-ed .nc-glyph-align-center-vertical:before{content:"\ea40"}
|
7320 |
+
.brz-ed .nc-glyph-align-center:before{content:"\ea41"}
|
7321 |
+
.brz-ed .nc-glyph-align-justify:before{content:"\ea42"}
|
7322 |
+
.brz-ed .nc-glyph-align-left-2:before{content:"\ea43"}
|
7323 |
+
.brz-ed .nc-glyph-align-left:before{content:"\ea44"}
|
7324 |
+
.brz-ed .nc-glyph-align-right-2:before{content:"\ea45"}
|
7325 |
+
.brz-ed .nc-glyph-align-right:before{content:"\ea46"}
|
7326 |
+
.brz-ed .nc-glyph-align-top:before{content:"\ea47"}
|
7327 |
+
.brz-ed .nc-glyph-ambulance:before{content:"\ea48"}
|
7328 |
+
.brz-ed .nc-glyph-analytics-88:before{content:"\ea49"}
|
7329 |
+
.brz-ed .nc-glyph-analytics-89:before{content:"\ea4a"}
|
7330 |
+
.brz-ed .nc-glyph-anchor:before{content:"\ea4b"}
|
7331 |
+
.brz-ed .nc-glyph-android:before{content:"\ea4c"}
|
7332 |
+
.brz-ed .nc-glyph-angle:before{content:"\ea4d"}
|
7333 |
+
.brz-ed .nc-glyph-angry-10:before{content:"\ea4e"}
|
7334 |
+
.brz-ed .nc-glyph-angry-44:before{content:"\ea4f"}
|
7335 |
+
.brz-ed .nc-glyph-animation-14:before{content:"\ea50"}
|
7336 |
+
.brz-ed .nc-glyph-animation-31:before{content:"\ea51"}
|
7337 |
+
.brz-ed .nc-glyph-animation-32:before{content:"\ea52"}
|
7338 |
+
.brz-ed .nc-glyph-app:before{content:"\ea53"}
|
7339 |
+
.brz-ed .nc-glyph-apple-2:before{content:"\ea54"}
|
7340 |
+
.brz-ed .nc-glyph-apple:before{content:"\ea55"}
|
7341 |
+
.brz-ed .nc-glyph-appointment:before{content:"\ea56"}
|
7342 |
+
.brz-ed .nc-glyph-archive-2:before{content:"\ea57"}
|
7343 |
+
.brz-ed .nc-glyph-archive-3d-check:before{content:"\ea58"}
|
7344 |
+
.brz-ed .nc-glyph-archive-3d-content:before{content:"\ea59"}
|
7345 |
+
.brz-ed .nc-glyph-archive-check:before{content:"\ea5a"}
|
7346 |
+
.brz-ed .nc-glyph-archive-content:before{content:"\ea5b"}
|
7347 |
+
.brz-ed .nc-glyph-archive-paper-check:before{content:"\ea5c"}
|
7348 |
+
.brz-ed .nc-glyph-archive-paper:before{content:"\ea5d"}
|
7349 |
+
.brz-ed .nc-glyph-archive:before{content:"\ea5e"}
|
7350 |
+
.brz-ed .nc-glyph-armchair:before{content:"\ea5f"}
|
7351 |
+
.brz-ed .nc-glyph-artboard:before{content:"\ea60"}
|
7352 |
+
.brz-ed .nc-glyph-astronaut:before{content:"\ea61"}
|
7353 |
+
.brz-ed .nc-glyph-at-sign:before{content:"\ea62"}
|
7354 |
+
.brz-ed .nc-glyph-atm:before{content:"\ea63"}
|
7355 |
+
.brz-ed .nc-glyph-atom:before{content:"\ea64"}
|
7356 |
+
.brz-ed .nc-glyph-attach-86:before{content:"\ea65"}
|
7357 |
+
.brz-ed .nc-glyph-attach-87:before{content:"\ea66"}
|
7358 |
+
.brz-ed .nc-glyph-aubergine:before{content:"\ea67"}
|
7359 |
+
.brz-ed .nc-glyph-audio-91:before{content:"\ea68"}
|
7360 |
+
.brz-ed .nc-glyph-audio-92:before{content:"\ea69"}
|
7361 |
+
.brz-ed .nc-glyph-audio:before{content:"\ea6a"}
|
7362 |
+
.brz-ed .nc-glyph-avocado:before{content:"\ea6b"}
|
7363 |
+
.brz-ed .nc-glyph-award-48:before{content:"\ea6c"}
|
7364 |
+
.brz-ed .nc-glyph-award-49:before{content:"\ea6d"}
|
7365 |
+
.brz-ed .nc-glyph-award-55:before{content:"\ea6e"}
|
7366 |
+
.brz-ed .nc-glyph-award-74:before{content:"\ea6f"}
|
7367 |
+
.brz-ed .nc-glyph-award:before{content:"\ea70"}
|
7368 |
+
.brz-ed .nc-glyph-axe:before{content:"\ea71"}
|
7369 |
+
.brz-ed .nc-glyph-b-add:before{content:"\ea72"}
|
7370 |
+
.brz-ed .nc-glyph-b-check:before{content:"\ea73"}
|
7371 |
+
.brz-ed .nc-glyph-b-location:before{content:"\ea74"}
|
7372 |
+
.brz-ed .nc-glyph-b-love:before{content:"\ea75"}
|
7373 |
+
.brz-ed .nc-glyph-b-meeting:before{content:"\ea76"}
|
7374 |
+
.brz-ed .nc-glyph-b-remove:before{content:"\ea77"}
|
7375 |
+
.brz-ed .nc-glyph-b-security:before{content:"\ea78"}
|
7376 |
+
.brz-ed .nc-glyph-baby-2:before{content:"\ea79"}
|
7377 |
+
.brz-ed .nc-glyph-baby-3:before{content:"\ea7a"}
|
7378 |
+
.brz-ed .nc-glyph-baby-bottle:before{content:"\ea7b"}
|
7379 |
+
.brz-ed .nc-glyph-baby:before{content:"\ea7c"}
|
7380 |
+
.brz-ed .nc-glyph-back-78:before{content:"\ea7d"}
|
7381 |
+
.brz-ed .nc-glyph-back-80:before{content:"\ea7e"}
|
7382 |
+
.brz-ed .nc-glyph-background:before{content:"\ea7f"}
|
7383 |
+
.brz-ed .nc-glyph-backpack-2:before{content:"\ea80"}
|
7384 |
+
.brz-ed .nc-glyph-backpack-57:before{content:"\ea81"}
|
7385 |
+
.brz-ed .nc-glyph-backpack-58:before{content:"\ea82"}
|
7386 |
+
.brz-ed .nc-glyph-backpack:before{content:"\ea83"}
|
7387 |
+
.brz-ed .nc-glyph-backward:before{content:"\ea84"}
|
7388 |
+
.brz-ed .nc-glyph-bacon:before{content:"\ea85"}
|
7389 |
+
.brz-ed .nc-glyph-badge-13:before{content:"\ea86"}
|
7390 |
+
.brz-ed .nc-glyph-badge-14:before{content:"\ea87"}
|
7391 |
+
.brz-ed .nc-glyph-badge-15:before{content:"\ea88"}
|
7392 |
+
.brz-ed .nc-glyph-badge:before{content:"\ea89"}
|
7393 |
+
.brz-ed .nc-glyph-badminton:before{content:"\ea8a"}
|
7394 |
+
.brz-ed .nc-glyph-bag-09:before{content:"\ea8b"}
|
7395 |
+
.brz-ed .nc-glyph-bag-16:before{content:"\ea8c"}
|
7396 |
+
.brz-ed .nc-glyph-bag-17:before{content:"\ea8d"}
|
7397 |
+
.brz-ed .nc-glyph-bag-20:before{content:"\ea8e"}
|
7398 |
+
.brz-ed .nc-glyph-bag-21:before{content:"\ea8f"}
|
7399 |
+
.brz-ed .nc-glyph-bag-22:before{content:"\ea90"}
|
7400 |
+
.brz-ed .nc-glyph-bag-49:before{content:"\ea91"}
|
7401 |
+
.brz-ed .nc-glyph-bag-50:before{content:"\ea92"}
|
7402 |
+
.brz-ed .nc-glyph-bag-add-18:before{content:"\ea93"}
|
7403 |
+
.brz-ed .nc-glyph-bag-add-21:before{content:"\ea94"}
|
7404 |
+
.brz-ed .nc-glyph-bag-delivery:before{content:"\ea95"}
|
7405 |
+
.brz-ed .nc-glyph-bag-edit:before{content:"\ea96"}
|
7406 |
+
.brz-ed .nc-glyph-bag-remove-19:before{content:"\ea97"}
|
7407 |
+
.brz-ed .nc-glyph-bag-remove-22:before{content:"\ea98"}
|
7408 |
+
.brz-ed .nc-glyph-bag-time:before{content:"\ea99"}
|
7409 |
+
.brz-ed .nc-glyph-bag:before{content:"\ea9a"}
|
7410 |
+
.brz-ed .nc-glyph-baguette:before{content:"\ea9b"}
|
7411 |
+
.brz-ed .nc-glyph-balance:before{content:"\ea9c"}
|
7412 |
+
.brz-ed .nc-glyph-ball-basket:before{content:"\ea9d"}
|
7413 |
+
.brz-ed .nc-glyph-ball-soccer:before{content:"\ea9e"}
|
7414 |
+
.brz-ed .nc-glyph-baloon:before{content:"\ea9f"}
|
7415 |
+
.brz-ed .nc-glyph-ban-bold:before{content:"\eaa0"}
|
7416 |
+
.brz-ed .nc-glyph-ban:before{content:"\eaa1"}
|
7417 |
+
.brz-ed .nc-glyph-banana:before{content:"\eaa2"}
|
7418 |
+
.brz-ed .nc-glyph-bank:before{content:"\eaa3"}
|
7419 |
+
.brz-ed .nc-glyph-barbecue-15:before{content:"\eaa4"}
|
7420 |
+
.brz-ed .nc-glyph-barbecue-tools:before{content:"\eaa5"}
|
7421 |
+
.brz-ed .nc-glyph-barbecue:before{content:"\eaa6"}
|
7422 |
+
.brz-ed .nc-glyph-barcode-qr:before{content:"\eaa7"}
|
7423 |
+
.brz-ed .nc-glyph-barcode-scan:before{content:"\eaa8"}
|
7424 |
+
.brz-ed .nc-glyph-barcode:before{content:"\eaa9"}
|
7425 |
+
.brz-ed .nc-glyph-bars-2:before{content:"\eaaa"}
|
7426 |
+
.brz-ed .nc-glyph-bars-rotate:before{content:"\eaab"}
|
7427 |
+
.brz-ed .nc-glyph-bars:before{content:"\eaac"}
|
7428 |
+
.brz-ed .nc-glyph-baseball-ball:before{content:"\eaad"}
|
7429 |
+
.brz-ed .nc-glyph-baseball-bat:before{content:"\eaae"}
|
7430 |
+
.brz-ed .nc-glyph-baseball:before{content:"\eaaf"}
|
7431 |
+
.brz-ed .nc-glyph-basket-add:before{content:"\eab0"}
|
7432 |
+
.brz-ed .nc-glyph-basket-edit:before{content:"\eab1"}
|
7433 |
+
.brz-ed .nc-glyph-basket-favorite:before{content:"\eab2"}
|
7434 |
+
.brz-ed .nc-glyph-basket-remove:before{content:"\eab3"}
|
7435 |
+
.brz-ed .nc-glyph-basket-search:before{content:"\eab4"}
|
7436 |
+
.brz-ed .nc-glyph-basket-share:before{content:"\eab5"}
|
7437 |
+
.brz-ed .nc-glyph-basket-simple-add:before{content:"\eab6"}
|
7438 |
+
.brz-ed .nc-glyph-basket-simple-remove:before{content:"\eab7"}
|
7439 |
+
.brz-ed .nc-glyph-basket-simple:before{content:"\eab8"}
|
7440 |
+
.brz-ed .nc-glyph-basket-update:before{content:"\eab9"}
|
7441 |
+
.brz-ed .nc-glyph-basket:before{content:"\eaba"}
|
7442 |
+
.brz-ed .nc-glyph-basketball-12:before{content:"\eabb"}
|
7443 |
+
.brz-ed .nc-glyph-basketball-13:before{content:"\eabc"}
|
7444 |
+
.brz-ed .nc-glyph-bat:before{content:"\eabd"}
|
7445 |
+
.brz-ed .nc-glyph-bath-tub:before{content:"\eabe"}
|
7446 |
+
.brz-ed .nc-glyph-battery-81:before{content:"\eabf"}
|
7447 |
+
.brz-ed .nc-glyph-battery-83:before{content:"\eac0"}
|
7448 |
+
.brz-ed .nc-glyph-battery-half:before{content:"\eac1"}
|
7449 |
+
.brz-ed .nc-glyph-battery-level:before{content:"\eac2"}
|
7450 |
+
.brz-ed .nc-glyph-battery-low:before{content:"\eac3"}
|
7451 |
+
.brz-ed .nc-glyph-battery:before{content:"\eac4"}
|
7452 |
+
.brz-ed .nc-glyph-bear-2:before{content:"\eac5"}
|
7453 |
+
.brz-ed .nc-glyph-bear:before{content:"\eac6"}
|
7454 |
+
.brz-ed .nc-glyph-bed-09:before{content:"\eac7"}
|
7455 |
+
.brz-ed .nc-glyph-bed-23:before{content:"\eac8"}
|
7456 |
+
.brz-ed .nc-glyph-bed-side:before{content:"\eac9"}
|
7457 |
+
.brz-ed .nc-glyph-bee:before{content:"\eaca"}
|
7458 |
+
.brz-ed .nc-glyph-beer-95:before{content:"\eacb"}
|
7459 |
+
.brz-ed .nc-glyph-beer-96:before{content:"\eacc"}
|
7460 |
+
.brz-ed .nc-glyph-bell-53:before{content:"\eacd"}
|
7461 |
+
.brz-ed .nc-glyph-bell-54:before{content:"\eace"}
|
7462 |
+
.brz-ed .nc-glyph-bell-55:before{content:"\eacf"}
|
7463 |
+
.brz-ed .nc-glyph-belt:before{content:"\ead0"}
|
7464 |
+
.brz-ed .nc-glyph-berlin:before{content:"\ead1"}
|
7465 |
+
.brz-ed .nc-glyph-beverage:before{content:"\ead2"}
|
7466 |
+
.brz-ed .nc-glyph-big-eyes:before{content:"\ead3"}
|
7467 |
+
.brz-ed .nc-glyph-big-smile:before{content:"\ead4"}
|
7468 |
+
.brz-ed .nc-glyph-bigmouth:before{content:"\ead5"}
|
7469 |
+
.brz-ed .nc-glyph-bike-2:before{content:"\ead6"}
|
7470 |
+
.brz-ed .nc-glyph-bike:before{content:"\ead7"}
|
7471 |
+
.brz-ed .nc-glyph-bill:before{content:"\ead8"}
|
7472 |
+
.brz-ed .nc-glyph-billiard:before{content:"\ead9"}
|
7473 |
+
.brz-ed .nc-glyph-binocular:before{content:"\eada"}
|
7474 |
+
.brz-ed .nc-glyph-biscuit:before{content:"\eadb"}
|
7475 |
+
.brz-ed .nc-glyph-bitcoin:before{content:"\eadc"}
|
7476 |
+
.brz-ed .nc-glyph-bleah:before{content:"\eadd"}
|
7477 |
+
.brz-ed .nc-glyph-blend:before{content:"\eade"}
|
7478 |
+
.brz-ed .nc-glyph-blind:before{content:"\eadf"}
|
7479 |
+
.brz-ed .nc-glyph-block-bottom-left:before{content:"\eae0"}
|
7480 |
+
.brz-ed .nc-glyph-block-bottom-right:before{content:"\eae1"}
|
7481 |
+
.brz-ed .nc-glyph-block-down:before{content:"\eae2"}
|
7482 |
+
.brz-ed .nc-glyph-block-left:before{content:"\eae3"}
|
7483 |
+
.brz-ed .nc-glyph-block-right:before{content:"\eae4"}
|
7484 |
+
.brz-ed .nc-glyph-block-top-left:before{content:"\eae5"}
|
7485 |
+
.brz-ed .nc-glyph-block-top-right:before{content:"\eae6"}
|
7486 |
+
.brz-ed .nc-glyph-block-up:before{content:"\eae7"}
|
7487 |
+
.brz-ed .nc-glyph-blog:before{content:"\eae8"}
|
7488 |
+
.brz-ed .nc-glyph-blueberries:before{content:"\eae9"}
|
7489 |
+
.brz-ed .nc-glyph-bluetooth:before{content:"\eaea"}
|
7490 |
+
.brz-ed .nc-glyph-board-2:before{content:"\eaeb"}
|
7491 |
+
.brz-ed .nc-glyph-board-27:before{content:"\eaec"}
|
7492 |
+
.brz-ed .nc-glyph-board-28:before{content:"\eaed"}
|
7493 |
+
.brz-ed .nc-glyph-board-29:before{content:"\eaee"}
|
7494 |
+
.brz-ed .nc-glyph-board-30:before{content:"\eaef"}
|
7495 |
+
.brz-ed .nc-glyph-board-51:before{content:"\eaf0"}
|
7496 |
+
.brz-ed .nc-glyph-board:before{content:"\eaf1"}
|
7497 |
+
.brz-ed .nc-glyph-boat-front:before{content:"\eaf2"}
|
7498 |
+
.brz-ed .nc-glyph-boat-small-02:before{content:"\eaf3"}
|
7499 |
+
.brz-ed .nc-glyph-boat-small-03:before{content:"\eaf4"}
|
7500 |
+
.brz-ed .nc-glyph-boat:before{content:"\eaf5"}
|
7501 |
+
.brz-ed .nc-glyph-bold-add:before{content:"\eaf6"}
|
7502 |
+
.brz-ed .nc-glyph-bold-delete:before{content:"\eaf7"}
|
7503 |
+
.brz-ed .nc-glyph-bold-direction:before{content:"\eaf8"}
|
7504 |
+
.brz-ed .nc-glyph-bold-down:before{content:"\eaf9"}
|
7505 |
+
.brz-ed .nc-glyph-bold-left:before{content:"\eafa"}
|
7506 |
+
.brz-ed .nc-glyph-bold-remove:before{content:"\eafb"}
|
7507 |
+
.brz-ed .nc-glyph-bold-right:before{content:"\eafc"}
|
7508 |
+
.brz-ed .nc-glyph-bold-up:before{content:"\eafd"}
|
7509 |
+
.brz-ed .nc-glyph-bold:before{content:"\eafe"}
|
7510 |
+
.brz-ed .nc-glyph-bolt:before{content:"\eaff"}
|
7511 |
+
.brz-ed .nc-glyph-bomb:before{content:"\eb00"}
|
7512 |
+
.brz-ed .nc-glyph-bones:before{content:"\eb01"}
|
7513 |
+
.brz-ed .nc-glyph-book-07:before{content:"\eb02"}
|
7514 |
+
.brz-ed .nc-glyph-book-08:before{content:"\eb03"}
|
7515 |
+
.brz-ed .nc-glyph-book-39:before{content:"\eb04"}
|
7516 |
+
.brz-ed .nc-glyph-book-bookmark-2:before{content:"\eb05"}
|
7517 |
+
.brz-ed .nc-glyph-book-bookmark:before{content:"\eb06"}
|
7518 |
+
.brz-ed .nc-glyph-book-open-2:before{content:"\eb07"}
|
7519 |
+
.brz-ed .nc-glyph-book-open:before{content:"\eb08"}
|
7520 |
+
.brz-ed .nc-glyph-book:before{content:"\eb09"}
|
7521 |
+
.brz-ed .nc-glyph-bookmark-2:before{content:"\eb0a"}
|
7522 |
+
.brz-ed .nc-glyph-bookmark-add-2:before{content:"\eb0b"}
|
7523 |
+
.brz-ed .nc-glyph-bookmark-add:before{content:"\eb0c"}
|
7524 |
+
.brz-ed .nc-glyph-bookmark-remove-2:before{content:"\eb0d"}
|
7525 |
+
.brz-ed .nc-glyph-bookmark-remove:before{content:"\eb0e"}
|
7526 |
+
.brz-ed .nc-glyph-bookmark:before{content:"\eb0f"}
|
7527 |
+
.brz-ed .nc-glyph-books-46:before{content:"\eb10"}
|
7528 |
+
.brz-ed .nc-glyph-books:before{content:"\eb11"}
|
7529 |
+
.brz-ed .nc-glyph-boot-2:before{content:"\eb12"}
|
7530 |
+
.brz-ed .nc-glyph-boot-woman:before{content:"\eb13"}
|
7531 |
+
.brz-ed .nc-glyph-boot:before{content:"\eb14"}
|
7532 |
+
.brz-ed .nc-glyph-border-radius:before{content:"\eb15"}
|
7533 |
+
.brz-ed .nc-glyph-border:before{content:"\eb16"}
|
7534 |
+
.brz-ed .nc-glyph-bored:before{content:"\eb17"}
|
7535 |
+
.brz-ed .nc-glyph-bottle-wine:before{content:"\eb18"}
|
7536 |
+
.brz-ed .nc-glyph-bottle:before{content:"\eb19"}
|
7537 |
+
.brz-ed .nc-glyph-bow:before{content:"\eb1a"}
|
7538 |
+
.brz-ed .nc-glyph-bowl:before{content:"\eb1b"}
|
7539 |
+
.brz-ed .nc-glyph-bowling:before{content:"\eb1c"}
|
7540 |
+
.brz-ed .nc-glyph-box-2:before{content:"\eb1d"}
|
7541 |
+
.brz-ed .nc-glyph-box-3d-50:before{content:"\eb1e"}
|
7542 |
+
.brz-ed .nc-glyph-box-ribbon:before{content:"\eb1f"}
|
7543 |
+
.brz-ed .nc-glyph-box:before{content:"\eb20"}
|
7544 |
+
.brz-ed .nc-glyph-boxing:before{content:"\eb21"}
|
7545 |
+
.brz-ed .nc-glyph-bra:before{content:"\eb22"}
|
7546 |
+
.brz-ed .nc-glyph-brain:before{content:"\eb23"}
|
7547 |
+
.brz-ed .nc-glyph-brakes:before{content:"\eb24"}
|
7548 |
+
.brz-ed .nc-glyph-bread:before{content:"\eb25"}
|
7549 |
+
.brz-ed .nc-glyph-briefcase-24:before{content:"\eb26"}
|
7550 |
+
.brz-ed .nc-glyph-briefcase-25:before{content:"\eb27"}
|
7551 |
+
.brz-ed .nc-glyph-briefcase-26:before{content:"\eb28"}
|
7552 |
+
.brz-ed .nc-glyph-brightness-46:before{content:"\eb29"}
|
7553 |
+
.brz-ed .nc-glyph-brightness-47:before{content:"\eb2a"}
|
7554 |
+
.brz-ed .nc-glyph-brioche:before{content:"\eb2b"}
|
7555 |
+
.brz-ed .nc-glyph-broccoli:before{content:"\eb2c"}
|
7556 |
+
.brz-ed .nc-glyph-broom:before{content:"\eb2d"}
|
7557 |
+
.brz-ed .nc-glyph-browser-chrome:before{content:"\eb2e"}
|
7558 |
+
.brz-ed .nc-glyph-browser-edge:before{content:"\eb2f"}
|
7559 |
+
.brz-ed .nc-glyph-browser-firefox:before{content:"\eb30"}
|
7560 |
+
.brz-ed .nc-glyph-browser-ie:before{content:"\eb31"}
|
7561 |
+
.brz-ed .nc-glyph-browser-opera:before{content:"\eb32"}
|
7562 |
+
.brz-ed .nc-glyph-browser-safari:before{content:"\eb33"}
|
7563 |
+
.brz-ed .nc-glyph-brush:before{content:"\eb34"}
|
7564 |
+
.brz-ed .nc-glyph-bucket:before{content:"\eb35"}
|
7565 |
+
.brz-ed .nc-glyph-bug:before{content:"\eb36"}
|
7566 |
+
.brz-ed .nc-glyph-building:before{content:"\eb37"}
|
7567 |
+
.brz-ed .nc-glyph-bulb-61:before{content:"\eb38"}
|
7568 |
+
.brz-ed .nc-glyph-bulb-62:before{content:"\eb39"}
|
7569 |
+
.brz-ed .nc-glyph-bulb-63:before{content:"\eb3a"}
|
7570 |
+
.brz-ed .nc-glyph-bulb-saver:before{content:"\eb3b"}
|
7571 |
+
.brz-ed .nc-glyph-bulb:before{content:"\eb3c"}
|
7572 |
+
.brz-ed .nc-glyph-bullet-list-67:before{content:"\eb3d"}
|
7573 |
+
.brz-ed .nc-glyph-bullet-list-68:before{content:"\eb3e"}
|
7574 |
+
.brz-ed .nc-glyph-bullet-list-69:before{content:"\eb3f"}
|
7575 |
+
.brz-ed .nc-glyph-bullet-list-70:before{content:"\eb40"}
|
7576 |
+
.brz-ed .nc-glyph-bullet-list:before{content:"\eb41"}
|
7577 |
+
.brz-ed .nc-glyph-bus-front-10:before{content:"\eb42"}
|
7578 |
+
.brz-ed .nc-glyph-bus-front-12:before{content:"\eb43"}
|
7579 |
+
.brz-ed .nc-glyph-bus:before{content:"\eb44"}
|
7580 |
+
.brz-ed .nc-glyph-business-contact-85:before{content:"\eb45"}
|
7581 |
+
.brz-ed .nc-glyph-business-contact-86:before{content:"\eb46"}
|
7582 |
+
.brz-ed .nc-glyph-business-contact-87:before{content:"\eb47"}
|
7583 |
+
.brz-ed .nc-glyph-business-contact-88:before{content:"\eb48"}
|
7584 |
+
.brz-ed .nc-glyph-business-contact-89:before{content:"\eb49"}
|
7585 |
+
.brz-ed .nc-glyph-businessman-03:before{content:"\eb4a"}
|
7586 |
+
.brz-ed .nc-glyph-businessman-04:before{content:"\eb4b"}
|
7587 |
+
.brz-ed .nc-glyph-butterfly:before{content:"\eb4c"}
|
7588 |
+
.brz-ed .nc-glyph-button-2:before{content:"\eb4d"}
|
7589 |
+
.brz-ed .nc-glyph-button-circle-pause:before{content:"\eb4e"}
|
7590 |
+
.brz-ed .nc-glyph-button-circle-play:before{content:"\eb4f"}
|
7591 |
+
.brz-ed .nc-glyph-button-circle-stop:before{content:"\eb50"}
|
7592 |
+
.brz-ed .nc-glyph-button-eject:before{content:"\eb51"}
|
7593 |
+
.brz-ed .nc-glyph-button-next:before{content:"\eb52"}
|
7594 |
+
.brz-ed .nc-glyph-button-pause:before{content:"\eb53"}
|
7595 |
+
.brz-ed .nc-glyph-button-play:before{content:"\eb54"}
|
7596 |
+
.brz-ed .nc-glyph-button-power:before{content:"\eb55"}
|
7597 |
+
.brz-ed .nc-glyph-button-previous:before{content:"\eb56"}
|
7598 |
+
.brz-ed .nc-glyph-button-record:before{content:"\eb57"}
|
7599 |
+
.brz-ed .nc-glyph-button-rewind:before{content:"\eb58"}
|
7600 |
+
.brz-ed .nc-glyph-button-skip:before{content:"\eb5b"}
|
7601 |
+
.brz-ed .nc-glyph-button-stop:before{content:"\eb59"}
|
7602 |
+
.brz-ed .nc-glyph-button:before{content:"\eb5a"}
|
7603 |
+
.brz-ed .nc-glyph-cabinet:before{content:"\eb5c"}
|
7604 |
+
.brz-ed .nc-glyph-cable-49:before{content:"\eb5d"}
|
7605 |
+
.brz-ed .nc-glyph-cable-50:before{content:"\eb5e"}
|
7606 |
+
.brz-ed .nc-glyph-cactus:before{content:"\eb5f"}
|
7607 |
+
.brz-ed .nc-glyph-cake-100:before{content:"\eb60"}
|
7608 |
+
.brz-ed .nc-glyph-cake-13:before{content:"\eb61"}
|
7609 |
+
.brz-ed .nc-glyph-cake-slice:before{content:"\eb62"}
|
7610 |
+
.brz-ed .nc-glyph-cake:before{content:"\eb63"}
|
7611 |
+
.brz-ed .nc-glyph-calculator:before{content:"\eb64"}
|
7612 |
+
.brz-ed .nc-glyph-calendar-57:before{content:"\eb65"}
|
7613 |
+
.brz-ed .nc-glyph-calendar-60:before{content:"\eb66"}
|
7614 |
+
.brz-ed .nc-glyph-calendar-add:before{content:"\eb67"}
|
7615 |
+
.brz-ed .nc-glyph-calendar-check-59:before{content:"\eb68"}
|
7616 |
+
.brz-ed .nc-glyph-calendar-check-62:before{content:"\eb69"}
|
7617 |
+
.brz-ed .nc-glyph-calendar-grid-58:before{content:"\eb6a"}
|
7618 |
+
.brz-ed .nc-glyph-calendar-grid-61:before{content:"\eb6b"}
|
7619 |
+
.brz-ed .nc-glyph-camera-18:before{content:"\eb6c"}
|
7620 |
+
.brz-ed .nc-glyph-camera-19:before{content:"\eb6d"}
|
7621 |
+
.brz-ed .nc-glyph-camera-20:before{content:"\eb6e"}
|
7622 |
+
.brz-ed .nc-glyph-camera-ban-36:before{content:"\eb6f"}
|
7623 |
+
.brz-ed .nc-glyph-camera-ban-37:before{content:"\eb70"}
|
7624 |
+
.brz-ed .nc-glyph-camera-compact:before{content:"\eb71"}
|
7625 |
+
.brz-ed .nc-glyph-camera-screen:before{content:"\eb72"}
|
7626 |
+
.brz-ed .nc-glyph-camera-square-57:before{content:"\eb73"}
|
7627 |
+
.brz-ed .nc-glyph-camera-square-58:before{content:"\eb74"}
|
7628 |
+
.brz-ed .nc-glyph-camera-time:before{content:"\eb75"}
|
7629 |
+
.brz-ed .nc-glyph-camera:before{content:"\eb76"}
|
7630 |
+
.brz-ed .nc-glyph-camper:before{content:"\eb77"}
|
7631 |
+
.brz-ed .nc-glyph-camping:before{content:"\eb78"}
|
7632 |
+
.brz-ed .nc-glyph-candle:before{content:"\eb79"}
|
7633 |
+
.brz-ed .nc-glyph-candy-2:before{content:"\eb7a"}
|
7634 |
+
.brz-ed .nc-glyph-candy:before{content:"\eb7b"}
|
7635 |
+
.brz-ed .nc-glyph-canvas:before{content:"\eb7c"}
|
7636 |
+
.brz-ed .nc-glyph-cap:before{content:"\eb7d"}
|
7637 |
+
.brz-ed .nc-glyph-capitalize:before{content:"\eb7e"}
|
7638 |
+
.brz-ed .nc-glyph-caps-all:before{content:"\eb7f"}
|
7639 |
+
.brz-ed .nc-glyph-caps-small:before{content:"\eb80"}
|
7640 |
+
.brz-ed .nc-glyph-car-2:before{content:"\eb81"}
|
7641 |
+
.brz-ed .nc-glyph-car-accident:before{content:"\eb82"}
|
7642 |
+
.brz-ed .nc-glyph-car-connect:before{content:"\eb83"}
|
7643 |
+
.brz-ed .nc-glyph-car-door:before{content:"\eb84"}
|
7644 |
+
.brz-ed .nc-glyph-car-front:before{content:"\eb85"}
|
7645 |
+
.brz-ed .nc-glyph-car-lights:before{content:"\eb86"}
|
7646 |
+
.brz-ed .nc-glyph-car-parking:before{content:"\eb87"}
|
7647 |
+
.brz-ed .nc-glyph-car-simple:before{content:"\eb88"}
|
7648 |
+
.brz-ed .nc-glyph-car-sport:before{content:"\eb89"}
|
7649 |
+
.brz-ed .nc-glyph-car-taxi:before{content:"\eb8a"}
|
7650 |
+
.brz-ed .nc-glyph-car-ventilation:before{content:"\eb8b"}
|
7651 |
+
.brz-ed .nc-glyph-car-wash:before{content:"\eb8c"}
|
7652 |
+
.brz-ed .nc-glyph-car:before{content:"\eb8d"}
|
7653 |
+
.brz-ed .nc-glyph-card-add-2:before{content:"\eb8e"}
|
7654 |
+
.brz-ed .nc-glyph-card-add:before{content:"\eb8f"}
|
7655 |
+
.brz-ed .nc-glyph-card-alert:before{content:"\eb90"}
|
7656 |
+
.brz-ed .nc-glyph-card-edit:before{content:"\eb91"}
|
7657 |
+
.brz-ed .nc-glyph-card-favorite:before{content:"\eb92"}
|
7658 |
+
.brz-ed .nc-glyph-card-remove:before{content:"\eb93"}
|
7659 |
+
.brz-ed .nc-glyph-card-update:before{content:"\eb94"}
|
7660 |
+
.brz-ed .nc-glyph-cardio:before{content:"\eb95"}
|
7661 |
+
.brz-ed .nc-glyph-cards:before{content:"\eb96"}
|
7662 |
+
.brz-ed .nc-glyph-carrot:before{content:"\eb97"}
|
7663 |
+
.brz-ed .nc-glyph-cart-9:before{content:"\eb98"}
|
7664 |
+
.brz-ed .nc-glyph-cart-add-9:before{content:"\eb99"}
|
7665 |
+
.brz-ed .nc-glyph-cart-add:before{content:"\eb9a"}
|
7666 |
+
.brz-ed .nc-glyph-cart-favorite:before{content:"\eb9b"}
|
7667 |
+
.brz-ed .nc-glyph-cart-full:before{content:"\eb9c"}
|
7668 |
+
.brz-ed .nc-glyph-cart-in-9:before{content:"\eb9d"}
|
7669 |
+
.brz-ed .nc-glyph-cart-refresh:before{content:"\eb9e"}
|
7670 |
+
.brz-ed .nc-glyph-cart-remove-9:before{content:"\eb9f"}
|
7671 |
+
.brz-ed .nc-glyph-cart-remove:before{content:"\eba0"}
|
7672 |
+
.brz-ed .nc-glyph-cart-return:before{content:"\eba1"}
|
7673 |
+
.brz-ed .nc-glyph-cart-simple-add:before{content:"\eba2"}
|
7674 |
+
.brz-ed .nc-glyph-cart-simple-in:before{content:"\eba3"}
|
7675 |
+
.brz-ed .nc-glyph-cart-simple-remove:before{content:"\eba4"}
|
7676 |
+
.brz-ed .nc-glyph-cart-simple:before{content:"\eba5"}
|
7677 |
+
.brz-ed .nc-glyph-cart-speed:before{content:"\eba6"}
|
7678 |
+
.brz-ed .nc-glyph-cart:before{content:"\eba7"}
|
7679 |
+
.brz-ed .nc-glyph-cash-register:before{content:"\eba8"}
|
7680 |
+
.brz-ed .nc-glyph-castle:before{content:"\eba9"}
|
7681 |
+
.brz-ed .nc-glyph-cat:before{content:"\ebaa"}
|
7682 |
+
.brz-ed .nc-glyph-cauldron:before{content:"\ebab"}
|
7683 |
+
.brz-ed .nc-glyph-cctv:before{content:"\ebac"}
|
7684 |
+
.brz-ed .nc-glyph-cd-reader:before{content:"\ebad"}
|
7685 |
+
.brz-ed .nc-glyph-celsius:before{content:"\ebae"}
|
7686 |
+
.brz-ed .nc-glyph-centralize:before{content:"\ebaf"}
|
7687 |
+
.brz-ed .nc-glyph-chair-2:before{content:"\ebb0"}
|
7688 |
+
.brz-ed .nc-glyph-chair:before{content:"\ebb1"}
|
7689 |
+
.brz-ed .nc-glyph-chalkboard:before{content:"\ebb2"}
|
7690 |
+
.brz-ed .nc-glyph-champagne:before{content:"\ebb3"}
|
7691 |
+
.brz-ed .nc-glyph-chart-2:before{content:"\ebb4"}
|
7692 |
+
.brz-ed .nc-glyph-chart-3:before{content:"\ebb5"}
|
7693 |
+
.brz-ed .nc-glyph-chart-bar-32:before{content:"\ebb6"}
|
7694 |
+
.brz-ed .nc-glyph-chart-bar-33:before{content:"\ebb7"}
|
7695 |
+
.brz-ed .nc-glyph-chart-bar-52:before{content:"\ebb8"}
|
7696 |
+
.brz-ed .nc-glyph-chart-bar-53:before{content:"\ebb9"}
|
7697 |
+
.brz-ed .nc-glyph-chart-bar:before{content:"\ebba"}
|
7698 |
+
.brz-ed .nc-glyph-chart-bars:before{content:"\ebbb"}
|
7699 |
+
.brz-ed .nc-glyph-chart-growth:before{content:"\ebbc"}
|
7700 |
+
.brz-ed .nc-glyph-chart-pie-35:before{content:"\ebbd"}
|
7701 |
+
.brz-ed .nc-glyph-chart-pie-36:before{content:"\ebbe"}
|
7702 |
+
.brz-ed .nc-glyph-chart-pie:before{content:"\ebbf"}
|
7703 |
+
.brz-ed .nc-glyph-chart:before{content:"\ebc0"}
|
7704 |
+
.brz-ed .nc-glyph-chat-33:before{content:"\ebc1"}
|
7705 |
+
.brz-ed .nc-glyph-chat-45:before{content:"\ebc2"}
|
7706 |
+
.brz-ed .nc-glyph-chat-46:before{content:"\ebc3"}
|
7707 |
+
.brz-ed .nc-glyph-chat-content:before{content:"\ebc4"}
|
7708 |
+
.brz-ed .nc-glyph-chat-reply:before{content:"\ebc5"}
|
7709 |
+
.brz-ed .nc-glyph-chat-round-content:before{content:"\ebc6"}
|
7710 |
+
.brz-ed .nc-glyph-chat-round:before{content:"\ebc7"}
|
7711 |
+
.brz-ed .nc-glyph-chat:before{content:"\ebc8"}
|
7712 |
+
.brz-ed .nc-glyph-check-2:before{content:"\ebc9"}
|
7713 |
+
.brz-ed .nc-glyph-check-bold:before{content:"\ebca"}
|
7714 |
+
.brz-ed .nc-glyph-check-circle-07:before{content:"\ebcb"}
|
7715 |
+
.brz-ed .nc-glyph-check-circle-08:before{content:"\ebcc"}
|
7716 |
+
.brz-ed .nc-glyph-check-curve:before{content:"\ebcd"}
|
7717 |
+
.brz-ed .nc-glyph-check-in:before{content:"\ebce"}
|
7718 |
+
.brz-ed .nc-glyph-check-out:before{content:"\ebcf"}
|
7719 |
+
.brz-ed .nc-glyph-check-simple:before{content:"\ebd0"}
|
7720 |
+
.brz-ed .nc-glyph-check-small:before{content:"\ebd1"}
|
7721 |
+
.brz-ed .nc-glyph-check-square-09:before{content:"\ebd2"}
|
7722 |
+
.brz-ed .nc-glyph-check-square-11:before{content:"\ebd3"}
|
7723 |
+
.brz-ed .nc-glyph-check:before{content:"\ebd4"}
|
7724 |
+
.brz-ed .nc-glyph-cheese-24:before{content:"\ebd5"}
|
7725 |
+
.brz-ed .nc-glyph-cheese-87:before{content:"\ebd6"}
|
7726 |
+
.brz-ed .nc-glyph-cheeseburger:before{content:"\ebd7"}
|
7727 |
+
.brz-ed .nc-glyph-chef-hat:before{content:"\ebd8"}
|
7728 |
+
.brz-ed .nc-glyph-chef:before{content:"\ebd9"}
|
7729 |
+
.brz-ed .nc-glyph-cheque-2:before{content:"\ebda"}
|
7730 |
+
.brz-ed .nc-glyph-cheque-3:before{content:"\ebdb"}
|
7731 |
+
.brz-ed .nc-glyph-cheque:before{content:"\ebdc"}
|
7732 |
+
.brz-ed .nc-glyph-cherry:before{content:"\ebdd"}
|
7733 |
+
.brz-ed .nc-glyph-chicken-2:before{content:"\ebde"}
|
7734 |
+
.brz-ed .nc-glyph-chicken:before{content:"\ebdf"}
|
7735 |
+
.brz-ed .nc-glyph-child:before{content:"\ebe0"}
|
7736 |
+
.brz-ed .nc-glyph-chili:before{content:"\ebe1"}
|
7737 |
+
.brz-ed .nc-glyph-chimney:before{content:"\ebe2"}
|
7738 |
+
.brz-ed .nc-glyph-china:before{content:"\ebe3"}
|
7739 |
+
.brz-ed .nc-glyph-chinese:before{content:"\ebe4"}
|
7740 |
+
.brz-ed .nc-glyph-chips:before{content:"\ebe5"}
|
7741 |
+
.brz-ed .nc-glyph-choco-cream:before{content:"\ebe7"}
|
7742 |
+
.brz-ed .nc-glyph-chocolate-mousse:before{content:"\ebe6"}
|
7743 |
+
.brz-ed .nc-glyph-chocolate:before{content:"\ebe8"}
|
7744 |
+
.brz-ed .nc-glyph-church:before{content:"\ebe9"}
|
7745 |
+
.brz-ed .nc-glyph-churros:before{content:"\ebea"}
|
7746 |
+
.brz-ed .nc-glyph-circle-02:before{content:"\ebeb"}
|
7747 |
+
.brz-ed .nc-glyph-circle-03:before{content:"\ebec"}
|
7748 |
+
.brz-ed .nc-glyph-circle-04:before{content:"\ebed"}
|
7749 |
+
.brz-ed .nc-glyph-circle-08:before{content:"\ebee"}
|
7750 |
+
.brz-ed .nc-glyph-circle-09:before{content:"\ebef"}
|
7751 |
+
.brz-ed .nc-glyph-circle-10:before{content:"\ebf0"}
|
7752 |
+
.brz-ed .nc-glyph-circle-add:before{content:"\ebf1"}
|
7753 |
+
.brz-ed .nc-glyph-circle-bold-add:before{content:"\ebf2"}
|
7754 |
+
.brz-ed .nc-glyph-circle-bold-delete:before{content:"\ebf3"}
|
7755 |
+
.brz-ed .nc-glyph-circle-bold-remove:before{content:"\ebf4"}
|
7756 |
+
.brz-ed .nc-glyph-circle-delete:before{content:"\ebf5"}
|
7757 |
+
.brz-ed .nc-glyph-circle-down-12:before{content:"\ebf6"}
|
7758 |
+
.brz-ed .nc-glyph-circle-down-40:before{content:"\ebf7"}
|
7759 |
+
.brz-ed .nc-glyph-circle-in:before{content:"\ebf8"}
|
7760 |
+
.brz-ed .nc-glyph-circle-left-10:before{content:"\ebf9"}
|
7761 |
+
.brz-ed .nc-glyph-circle-left-38:before{content:"\ebfa"}
|
7762 |
+
.brz-ed .nc-glyph-circle-out:before{content:"\ebfb"}
|
7763 |
+
.brz-ed .nc-glyph-circle-remove:before{content:"\ebfc"}
|
7764 |
+
.brz-ed .nc-glyph-circle-right-09:before{content:"\ebfd"}
|
7765 |
+
.brz-ed .nc-glyph-circle-right-37:before{content:"\ebfe"}
|
7766 |
+
.brz-ed .nc-glyph-circle-simple-down:before{content:"\ebff"}
|
7767 |
+
.brz-ed .nc-glyph-circle-simple-left:before{content:"\ec00"}
|
7768 |
+
.brz-ed .nc-glyph-circle-simple-right:before{content:"\ec01"}
|
7769 |
+
.brz-ed .nc-glyph-circle-simple-up:before{content:"\ec02"}
|
7770 |
+
.brz-ed .nc-glyph-circle-up-11:before{content:"\ec03"}
|
7771 |
+
.brz-ed .nc-glyph-circle-up-39:before{content:"\ec04"}
|
7772 |
+
.brz-ed .nc-glyph-circle:before{content:"\ec05"}
|
7773 |
+
.brz-ed .nc-glyph-circuit-round:before{content:"\ec06"}
|
7774 |
+
.brz-ed .nc-glyph-circuit:before{content:"\ec07"}
|
7775 |
+
.brz-ed .nc-glyph-clone:before{content:"\ec08"}
|
7776 |
+
.brz-ed .nc-glyph-cloud-25:before{content:"\ec09"}
|
7777 |
+
.brz-ed .nc-glyph-cloud-26:before{content:"\ec0a"}
|
7778 |
+
.brz-ed .nc-glyph-cloud-download-93:before{content:"\ec0b"}
|
7779 |
+
.brz-ed .nc-glyph-cloud-download-95:before{content:"\ec0c"}
|
7780 |
+
.brz-ed .nc-glyph-cloud-drop:before{content:"\ec0d"}
|
7781 |
+
.brz-ed .nc-glyph-cloud-fog-31:before{content:"\ec0e"}
|
7782 |
+
.brz-ed .nc-glyph-cloud-fog-32:before{content:"\ec0f"}
|
7783 |
+
.brz-ed .nc-glyph-cloud-hail:before{content:"\ec10"}
|
7784 |
+
.brz-ed .nc-glyph-cloud-light:before{content:"\ec11"}
|
7785 |
+
.brz-ed .nc-glyph-cloud-moon:before{content:"\ec12"}
|
7786 |
+
.brz-ed .nc-glyph-cloud-rain:before{content:"\ec13"}
|
7787 |
+
.brz-ed .nc-glyph-cloud-rainbow:before{content:"\ec14"}
|
7788 |
+
.brz-ed .nc-glyph-cloud-snow-34:before{content:"\ec15"}
|
7789 |
+
.brz-ed .nc-glyph-cloud-snow-42:before{content:"\ec16"}
|
7790 |
+
.brz-ed .nc-glyph-cloud-sun-17:before{content:"\ec17"}
|
7791 |
+
.brz-ed .nc-glyph-cloud-sun-19:before{content:"\ec18"}
|
7792 |
+
.brz-ed .nc-glyph-cloud-upload-94:before{content:"\ec19"}
|
7793 |
+
.brz-ed .nc-glyph-cloud-upload-96:before{content:"\ec1a"}
|
7794 |
+
.brz-ed .nc-glyph-cloud:before{content:"\ec1b"}
|
7795 |
+
.brz-ed .nc-glyph-clover:before{content:"\ec1c"}
|
7796 |
+
.brz-ed .nc-glyph-coat-hanger:before{content:"\ec1d"}
|
7797 |
+
.brz-ed .nc-glyph-coat:before{content:"\ec1e"}
|
7798 |
+
.brz-ed .nc-glyph-cockade:before{content:"\ec1f"}
|
7799 |
+
.brz-ed .nc-glyph-cocktail:before{content:"\ec20"}
|
7800 |
+
.brz-ed .nc-glyph-code-editor:before{content:"\ec21"}
|
7801 |
+
.brz-ed .nc-glyph-code:before{content:"\ec22"}
|
7802 |
+
.brz-ed .nc-glyph-coffe-long:before{content:"\ec23"}
|
7803 |
+
.brz-ed .nc-glyph-coffee-2:before{content:"\ec24"}
|
7804 |
+
.brz-ed .nc-glyph-coffee-bean:before{content:"\ec25"}
|
7805 |
+
.brz-ed .nc-glyph-coffee-long:before{content:"\ec26"}
|
7806 |
+
.brz-ed .nc-glyph-coffee:before{content:"\ec27"}
|
7807 |
+
.brz-ed .nc-glyph-coffin:before{content:"\ec28"}
|
7808 |
+
.brz-ed .nc-glyph-coins:before{content:"\ec29"}
|
7809 |
+
.brz-ed .nc-glyph-collar:before{content:"\ec2a"}
|
7810 |
+
.brz-ed .nc-glyph-collection:before{content:"\ec2b"}
|
7811 |
+
.brz-ed .nc-glyph-color:before{content:"\ec2c"}
|
7812 |
+
.brz-ed .nc-glyph-command:before{content:"\ec2d"}
|
7813 |
+
.brz-ed .nc-glyph-comment-add:before{content:"\ec2e"}
|
7814 |
+
.brz-ed .nc-glyph-compare:before{content:"\ec2f"}
|
7815 |
+
.brz-ed .nc-glyph-compass-04:before{content:"\ec30"}
|
7816 |
+
.brz-ed .nc-glyph-compass-05:before{content:"\ec31"}
|
7817 |
+
.brz-ed .nc-glyph-compass-06:before{content:"\ec32"}
|
7818 |
+
.brz-ed .nc-glyph-compass-2:before{content:"\ec33"}
|
7819 |
+
.brz-ed .nc-glyph-compass-3:before{content:"\ec34"}
|
7820 |
+
.brz-ed .nc-glyph-compass:before{content:"\ec35"}
|
7821 |
+
.brz-ed .nc-glyph-components:before{content:"\ec36"}
|
7822 |
+
.brz-ed .nc-glyph-computer-monitor:before{content:"\ec37"}
|
7823 |
+
.brz-ed .nc-glyph-computer-old:before{content:"\ec38"}
|
7824 |
+
.brz-ed .nc-glyph-computer-upload:before{content:"\ec39"}
|
7825 |
+
.brz-ed .nc-glyph-computer:before{content:"\ec3a"}
|
7826 |
+
.brz-ed .nc-glyph-cone:before{content:"\ec3b"}
|
7827 |
+
.brz-ed .nc-glyph-connect:before{content:"\ec3c"}
|
7828 |
+
.brz-ed .nc-glyph-connection:before{content:"\ec3d"}
|
7829 |
+
.brz-ed .nc-glyph-contacts-2:before{content:"\ec3e"}
|
7830 |
+
.brz-ed .nc-glyph-contacts-44:before{content:"\ec3f"}
|
7831 |
+
.brz-ed .nc-glyph-contacts-45:before{content:"\ec40"}
|
7832 |
+
.brz-ed .nc-glyph-contacts:before{content:"\ec41"}
|
7833 |
+
.brz-ed .nc-glyph-contrast-2:before{content:"\ec42"}
|
7834 |
+
.brz-ed .nc-glyph-contrast:before{content:"\ec43"}
|
7835 |
+
.brz-ed .nc-glyph-controller-2:before{content:"\ec44"}
|
7836 |
+
.brz-ed .nc-glyph-controller-3:before{content:"\ec45"}
|
7837 |
+
.brz-ed .nc-glyph-controller:before{content:"\ec46"}
|
7838 |
+
.brz-ed .nc-glyph-conversion:before{content:"\ec47"}
|
7839 |
+
.brz-ed .nc-glyph-cookies:before{content:"\ec48"}
|
7840 |
+
.brz-ed .nc-glyph-copy-2:before{content:"\ec49"}
|
7841 |
+
.brz-ed .nc-glyph-copy:before{content:"\ec4a"}
|
7842 |
+
.brz-ed .nc-glyph-corn:before{content:"\ec4b"}
|
7843 |
+
.brz-ed .nc-glyph-corner-down-round:before{content:"\ec4c"}
|
7844 |
+
.brz-ed .nc-glyph-corner-down:before{content:"\ec4d"}
|
7845 |
+
.brz-ed .nc-glyph-corner-left-down:before{content:"\ec4e"}
|
7846 |
+
.brz-ed .nc-glyph-corner-left-round:before{content:"\ec4f"}
|
7847 |
+
.brz-ed .nc-glyph-corner-left:before{content:"\ec50"}
|
7848 |
+
.brz-ed .nc-glyph-corner-right-down:before{content:"\ec51"}
|
7849 |
+
.brz-ed .nc-glyph-corner-right-round:before{content:"\ec52"}
|
7850 |
+
.brz-ed .nc-glyph-corner-right:before{content:"\ec53"}
|
7851 |
+
.brz-ed .nc-glyph-corner-up-left:before{content:"\ec54"}
|
7852 |
+
.brz-ed .nc-glyph-corner-up-right:before{content:"\ec55"}
|
7853 |
+
.brz-ed .nc-glyph-corner-up-round:before{content:"\ec56"}
|
7854 |
+
.brz-ed .nc-glyph-corner-up:before{content:"\ec57"}
|
7855 |
+
.brz-ed .nc-glyph-corset:before{content:"\ec58"}
|
7856 |
+
.brz-ed .nc-glyph-countdown-34:before{content:"\ec59"}
|
7857 |
+
.brz-ed .nc-glyph-countdown-35:before{content:"\ec5a"}
|
7858 |
+
.brz-ed .nc-glyph-couple-gay:before{content:"\ec5b"}
|
7859 |
+
.brz-ed .nc-glyph-couple-lesbian:before{content:"\ec5c"}
|
7860 |
+
.brz-ed .nc-glyph-coupon:before{content:"\ec5d"}
|
7861 |
+
.brz-ed .nc-glyph-course:before{content:"\ec5e"}
|
7862 |
+
.brz-ed .nc-glyph-cow:before{content:"\ec5f"}
|
7863 |
+
.brz-ed .nc-glyph-crab:before{content:"\ec60"}
|
7864 |
+
.brz-ed .nc-glyph-cradle:before{content:"\ec61"}
|
7865 |
+
.brz-ed .nc-glyph-credit-card-in:before{content:"\ec62"}
|
7866 |
+
.brz-ed .nc-glyph-credit-card:before{content:"\ec63"}
|
7867 |
+
.brz-ed .nc-glyph-credit-locked:before{content:"\ec64"}
|
7868 |
+
.brz-ed .nc-glyph-crepe:before{content:"\ec65"}
|
7869 |
+
.brz-ed .nc-glyph-cricket:before{content:"\ec66"}
|
7870 |
+
.brz-ed .nc-glyph-croissant:before{content:"\ec67"}
|
7871 |
+
.brz-ed .nc-glyph-crop:before{content:"\ec68"}
|
7872 |
+
.brz-ed .nc-glyph-cross-down:before{content:"\ec69"}
|
7873 |
+
.brz-ed .nc-glyph-cross-horizontal:before{content:"\ec6a"}
|
7874 |
+
.brz-ed .nc-glyph-cross-left:before{content:"\ec6b"}
|
7875 |
+
.brz-ed .nc-glyph-cross-right:before{content:"\ec6c"}
|
7876 |
+
.brz-ed .nc-glyph-cross-up:before{content:"\ec6d"}
|
7877 |
+
.brz-ed .nc-glyph-cross-vertical:before{content:"\ec6e"}
|
7878 |
+
.brz-ed .nc-glyph-cross:before{content:"\ec6f"}
|
7879 |
+
.brz-ed .nc-glyph-crosshair:before{content:"\ec70"}
|
7880 |
+
.brz-ed .nc-glyph-crown:before{content:"\ec71"}
|
7881 |
+
.brz-ed .nc-glyph-crumpet:before{content:"\ec72"}
|
7882 |
+
.brz-ed .nc-glyph-cry-15:before{content:"\ec73"}
|
7883 |
+
.brz-ed .nc-glyph-cry-57:before{content:"\ec74"}
|
7884 |
+
.brz-ed .nc-glyph-css3:before{content:"\ec75"}
|
7885 |
+
.brz-ed .nc-glyph-cupcake:before{content:"\ec76"}
|
7886 |
+
.brz-ed .nc-glyph-currency-dollar:before{content:"\ec77"}
|
7887 |
+
.brz-ed .nc-glyph-currency-euro:before{content:"\ec78"}
|
7888 |
+
.brz-ed .nc-glyph-currency-exchange:before{content:"\ec79"}
|
7889 |
+
.brz-ed .nc-glyph-currency-pound:before{content:"\ec7a"}
|
7890 |
+
.brz-ed .nc-glyph-currency-yen:before{content:"\ec7b"}
|
7891 |
+
.brz-ed .nc-glyph-cursor-48:before{content:"\ec7c"}
|
7892 |
+
.brz-ed .nc-glyph-cursor-49:before{content:"\ec7d"}
|
7893 |
+
.brz-ed .nc-glyph-cursor-add:before{content:"\ec7e"}
|
7894 |
+
.brz-ed .nc-glyph-cursor-grab:before{content:"\ec7f"}
|
7895 |
+
.brz-ed .nc-glyph-cursor-load:before{content:"\ec80"}
|
7896 |
+
.brz-ed .nc-glyph-cursor-menu:before{content:"\ec81"}
|
7897 |
+
.brz-ed .nc-glyph-cursor-not-allowed:before{content:"\ec82"}
|
7898 |
+
.brz-ed .nc-glyph-cursor-pointer:before{content:"\ec83"}
|
7899 |
+
.brz-ed .nc-glyph-cursor-text:before{content:"\ec84"}
|
7900 |
+
.brz-ed .nc-glyph-curtain:before{content:"\ec85"}
|
7901 |
+
.brz-ed .nc-glyph-curve-circuit:before{content:"\ec86"}
|
7902 |
+
.brz-ed .nc-glyph-curve-directions:before{content:"\ec87"}
|
7903 |
+
.brz-ed .nc-glyph-curve-split:before{content:"\ec88"}
|
7904 |
+
.brz-ed .nc-glyph-curved-next:before{content:"\ec89"}
|
7905 |
+
.brz-ed .nc-glyph-curved-previous:before{content:"\ec8a"}
|
7906 |
+
.brz-ed .nc-glyph-customer-support:before{content:"\ec8b"}
|
7907 |
+
.brz-ed .nc-glyph-cut:before{content:"\ec8c"}
|
7908 |
+
.brz-ed .nc-glyph-cute:before{content:"\ec8d"}
|
7909 |
+
.brz-ed .nc-glyph-cutlery-75:before{content:"\ec8e"}
|
7910 |
+
.brz-ed .nc-glyph-cutlery-76:before{content:"\ec8f"}
|
7911 |
+
.brz-ed .nc-glyph-cutlery-77:before{content:"\ec90"}
|
7912 |
+
.brz-ed .nc-glyph-cutlery:before{content:"\ec91"}
|
7913 |
+
.brz-ed .nc-glyph-cyclist:before{content:"\ec92"}
|
7914 |
+
.brz-ed .nc-glyph-dart:before{content:"\ec93"}
|
7915 |
+
.brz-ed .nc-glyph-dashboard-29:before{content:"\ec94"}
|
7916 |
+
.brz-ed .nc-glyph-dashboard-30:before{content:"\ec95"}
|
7917 |
+
.brz-ed .nc-glyph-dashboard-half:before{content:"\ec96"}
|
7918 |
+
.brz-ed .nc-glyph-dashboard-level:before{content:"\ec97"}
|
7919 |
+
.brz-ed .nc-glyph-database:before{content:"\ec98"}
|
7920 |
+
.brz-ed .nc-glyph-dead-hand:before{content:"\ec99"}
|
7921 |
+
.brz-ed .nc-glyph-decoration:before{content:"\ec9a"}
|
7922 |
+
.brz-ed .nc-glyph-deer:before{content:"\ec9b"}
|
7923 |
+
.brz-ed .nc-glyph-delete-28:before{content:"\ec9c"}
|
7924 |
+
.brz-ed .nc-glyph-delete-30:before{content:"\ec9d"}
|
7925 |
+
.brz-ed .nc-glyph-delete-49:before{content:"\ec9e"}
|
7926 |
+
.brz-ed .nc-glyph-delete-50:before{content:"\ec9f"}
|
7927 |
+
.brz-ed .nc-glyph-delivery-2:before{content:"\eca0"}
|
7928 |
+
.brz-ed .nc-glyph-delivery-3:before{content:"\eca1"}
|
7929 |
+
.brz-ed .nc-glyph-delivery-fast:before{content:"\eca2"}
|
7930 |
+
.brz-ed .nc-glyph-delivery-time:before{content:"\eca3"}
|
7931 |
+
.brz-ed .nc-glyph-delivery-track:before{content:"\eca4"}
|
7932 |
+
.brz-ed .nc-glyph-delivery:before{content:"\eca5"}
|
7933 |
+
.brz-ed .nc-glyph-design-system:before{content:"\eca6"}
|
7934 |
+
.brz-ed .nc-glyph-design:before{content:"\eca7"}
|
7935 |
+
.brz-ed .nc-glyph-desk-drawer:before{content:"\eca8"}
|
7936 |
+
.brz-ed .nc-glyph-desk:before{content:"\eca9"}
|
7937 |
+
.brz-ed .nc-glyph-desktop-screen:before{content:"\ecaa"}
|
7938 |
+
.brz-ed .nc-glyph-desktop:before{content:"\ecab"}
|
7939 |
+
.brz-ed .nc-glyph-detox:before{content:"\ecac"}
|
7940 |
+
.brz-ed .nc-glyph-dev:before{content:"\ecad"}
|
7941 |
+
.brz-ed .nc-glyph-device-connection:before{content:"\ecae"}
|
7942 |
+
.brz-ed .nc-glyph-devil:before{content:"\ecaf"}
|
7943 |
+
.brz-ed .nc-glyph-diag-bottom-left:before{content:"\ecb0"}
|
7944 |
+
.brz-ed .nc-glyph-diag-bottom-right:before{content:"\ecb1"}
|
7945 |
+
.brz-ed .nc-glyph-diag-top-left:before{content:"\ecb2"}
|
7946 |
+
.brz-ed .nc-glyph-diag-top-right:before{content:"\ecb3"}
|
7947 |
+
.brz-ed .nc-glyph-diamond:before{content:"\ecb4"}
|
7948 |
+
.brz-ed .nc-glyph-dice:before{content:"\ecb5"}
|
7949 |
+
.brz-ed .nc-glyph-diet-plan:before{content:"\ecb6"}
|
7950 |
+
.brz-ed .nc-glyph-diet:before{content:"\ecb7"}
|
7951 |
+
.brz-ed .nc-glyph-direction-53:before{content:"\ecb8"}
|
7952 |
+
.brz-ed .nc-glyph-direction-56:before{content:"\ecb9"}
|
7953 |
+
.brz-ed .nc-glyph-direction:before{content:"\ecba"}
|
7954 |
+
.brz-ed .nc-glyph-directions:before{content:"\ecbb"}
|
7955 |
+
.brz-ed .nc-glyph-disabled:before{content:"\ecbc"}
|
7956 |
+
.brz-ed .nc-glyph-discord:before{content:"\ecbd"}
|
7957 |
+
.brz-ed .nc-glyph-discount-2:before{content:"\ecbe"}
|
7958 |
+
.brz-ed .nc-glyph-discount:before{content:"\ecbf"}
|
7959 |
+
.brz-ed .nc-glyph-disgusted:before{content:"\ecc0"}
|
7960 |
+
.brz-ed .nc-glyph-dish:before{content:"\ecc1"}
|
7961 |
+
.brz-ed .nc-glyph-dishwasher:before{content:"\ecc2"}
|
7962 |
+
.brz-ed .nc-glyph-disk-2:before{content:"\ecc3"}
|
7963 |
+
.brz-ed .nc-glyph-disk-reader:before{content:"\ecc4"}
|
7964 |
+
.brz-ed .nc-glyph-disk:before{content:"\ecc5"}
|
7965 |
+
.brz-ed .nc-glyph-disperse:before{content:"\ecc6"}
|
7966 |
+
.brz-ed .nc-glyph-distribute-horizontal:before{content:"\ecc7"}
|
7967 |
+
.brz-ed .nc-glyph-distribute-vertical:before{content:"\ecc8"}
|
7968 |
+
.brz-ed .nc-glyph-divider:before{content:"\ecc9"}
|
7969 |
+
.brz-ed .nc-glyph-dna-27:before{content:"\ecca"}
|
7970 |
+
.brz-ed .nc-glyph-dna-38:before{content:"\eccb"}
|
7971 |
+
.brz-ed .nc-glyph-dock-bottom:before{content:"\eccc"}
|
7972 |
+
.brz-ed .nc-glyph-dock-left:before{content:"\eccd"}
|
7973 |
+
.brz-ed .nc-glyph-dock-right:before{content:"\ecce"}
|
7974 |
+
.brz-ed .nc-glyph-dock-top:before{content:"\eccf"}
|
7975 |
+
.brz-ed .nc-glyph-dock:before{content:"\ecd0"}
|
7976 |
+
.brz-ed .nc-glyph-doctor:before{content:"\ecd1"}
|
7977 |
+
.brz-ed .nc-glyph-dog-house:before{content:"\ecd2"}
|
7978 |
+
.brz-ed .nc-glyph-dog:before{content:"\ecd3"}
|
7979 |
+
.brz-ed .nc-glyph-donut:before{content:"\ecd4"}
|
7980 |
+
.brz-ed .nc-glyph-door:before{content:"\ecd5"}
|
7981 |
+
.brz-ed .nc-glyph-dots-05:before{content:"\ecd6"}
|
7982 |
+
.brz-ed .nc-glyph-dots-06:before{content:"\ecd7"}
|
7983 |
+
.brz-ed .nc-glyph-dots-07:before{content:"\ecd8"}
|
7984 |
+
.brz-ed .nc-glyph-dots-download:before{content:"\ecd9"}
|
7985 |
+
.brz-ed .nc-glyph-dots-upload:before{content:"\ecda"}
|
7986 |
+
.brz-ed .nc-glyph-dots:before{content:"\ecdb"}
|
7987 |
+
.brz-ed .nc-glyph-double-left:before{content:"\ecdc"}
|
7988 |
+
.brz-ed .nc-glyph-double-right:before{content:"\ecdd"}
|
7989 |
+
.brz-ed .nc-glyph-double-tap:before{content:"\ecde"}
|
7990 |
+
.brz-ed .nc-glyph-download-2:before{content:"\ecdf"}
|
7991 |
+
.brz-ed .nc-glyph-download-3:before{content:"\ece0"}
|
7992 |
+
.brz-ed .nc-glyph-download:before{content:"\ece1"}
|
7993 |
+
.brz-ed .nc-glyph-drag-21:before{content:"\ece2"}
|
7994 |
+
.brz-ed .nc-glyph-drag-31:before{content:"\ece3"}
|
7995 |
+
.brz-ed .nc-glyph-drag-down:before{content:"\ece4"}
|
7996 |
+
.brz-ed .nc-glyph-drag-left:before{content:"\ece5"}
|
7997 |
+
.brz-ed .nc-glyph-drag-right:before{content:"\ece6"}
|
7998 |
+
.brz-ed .nc-glyph-drag-up:before{content:"\ece7"}
|
7999 |
+
.brz-ed .nc-glyph-drag:before{content:"\ece8"}
|
8000 |
+
.brz-ed .nc-glyph-drawer-2:before{content:"\ece9"}
|
8001 |
+
.brz-ed .nc-glyph-drawer:before{content:"\ecea"}
|
8002 |
+
.brz-ed .nc-glyph-dress-man:before{content:"\eceb"}
|
8003 |
+
.brz-ed .nc-glyph-dress-woman:before{content:"\ecec"}
|
8004 |
+
.brz-ed .nc-glyph-drink-2:before{content:"\ecee"}
|
8005 |
+
.brz-ed .nc-glyph-drink-list:before{content:"\eced"}
|
8006 |
+
.brz-ed .nc-glyph-drink:before{content:"\ecef"}
|
8007 |
+
.brz-ed .nc-glyph-drop-15:before{content:"\ecf0"}
|
8008 |
+
.brz-ed .nc-glyph-drop:before{content:"\ecf1"}
|
8009 |
+
.brz-ed .nc-glyph-drops:before{content:"\ecf3"}
|
8010 |
+
.brz-ed .nc-glyph-dumbbells:before{content:"\ecf2"}
|
8011 |
+
.brz-ed .nc-glyph-eclipse:before{content:"\ecf4"}
|
8012 |
+
.brz-ed .nc-glyph-edit-2:before{content:"\ecf5"}
|
8013 |
+
.brz-ed .nc-glyph-edit-71:before{content:"\ecf6"}
|
8014 |
+
.brz-ed .nc-glyph-edit-72:before{content:"\ecf7"}
|
8015 |
+
.brz-ed .nc-glyph-edit-73:before{content:"\ecf8"}
|
8016 |
+
.brz-ed .nc-glyph-edit-74:before{content:"\ecf9"}
|
8017 |
+
.brz-ed .nc-glyph-edit-75:before{content:"\ecfa"}
|
8018 |
+
.brz-ed .nc-glyph-edit-76:before{content:"\ecfb"}
|
8019 |
+
.brz-ed .nc-glyph-edit-77:before{content:"\ecfc"}
|
8020 |
+
.brz-ed .nc-glyph-edit-78:before{content:"\ecfd"}
|
8021 |
+
.brz-ed .nc-glyph-edit-color:before{content:"\ecfe"}
|
8022 |
+
.brz-ed .nc-glyph-edit-contrast-42:before{content:"\ecff"}
|
8023 |
+
.brz-ed .nc-glyph-edit-contrast-43:before{content:"\ed00"}
|
8024 |
+
.brz-ed .nc-glyph-edit-saturation:before{content:"\ed01"}
|
8025 |
+
.brz-ed .nc-glyph-edit:before{content:"\ed02"}
|
8026 |
+
.brz-ed .nc-glyph-egg-38:before{content:"\ed03"}
|
8027 |
+
.brz-ed .nc-glyph-egg-39:before{content:"\ed04"}
|
8028 |
+
.brz-ed .nc-glyph-egg:before{content:"\ed05"}
|
8029 |
+
.brz-ed .nc-glyph-eject:before{content:"\ed06"}
|
8030 |
+
.brz-ed .nc-glyph-email-83:before{content:"\ed07"}
|
8031 |
+
.brz-ed .nc-glyph-email-84:before{content:"\ed08"}
|
8032 |
+
.brz-ed .nc-glyph-email-85:before{content:"\ed09"}
|
8033 |
+
.brz-ed .nc-glyph-energy-drink-2:before{content:"\ed0a"}
|
8034 |
+
.brz-ed .nc-glyph-energy-drink:before{content:"\ed0b"}
|
8035 |
+
.brz-ed .nc-glyph-energy-supplement:before{content:"\ed0c"}
|
8036 |
+
.brz-ed .nc-glyph-energy:before{content:"\ed0d"}
|
8037 |
+
.brz-ed .nc-glyph-engine-start:before{content:"\ed0e"}
|
8038 |
+
.brz-ed .nc-glyph-engine:before{content:"\ed0f"}
|
8039 |
+
.brz-ed .nc-glyph-enlarge-45:before{content:"\ed10"}
|
8040 |
+
.brz-ed .nc-glyph-enlarge-46:before{content:"\ed11"}
|
8041 |
+
.brz-ed .nc-glyph-enlarge-57:before{content:"\ed12"}
|
8042 |
+
.brz-ed .nc-glyph-enlarge-58:before{content:"\ed13"}
|
8043 |
+
.brz-ed .nc-glyph-enlarge-59:before{content:"\ed14"}
|
8044 |
+
.brz-ed .nc-glyph-enlarge-circle:before{content:"\ed15"}
|
8045 |
+
.brz-ed .nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}
|
8046 |
+
.brz-ed .nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}
|
8047 |
+
.brz-ed .nc-glyph-enlarge-horizontal:before{content:"\ed18"}
|
8048 |
+
.brz-ed .nc-glyph-enlarge-vertical:before{content:"\ed19"}
|
8049 |
+
.brz-ed .nc-glyph-eraser-32:before{content:"\ed1a"}
|
8050 |
+
.brz-ed .nc-glyph-eraser-33:before{content:"\ed1b"}
|
8051 |
+
.brz-ed .nc-glyph-eraser-46:before{content:"\ed1c"}
|
8052 |
+
.brz-ed .nc-glyph-event-confirm:before{content:"\ed1d"}
|
8053 |
+
.brz-ed .nc-glyph-event-create:before{content:"\ed1e"}
|
8054 |
+
.brz-ed .nc-glyph-exchange:before{content:"\ed1f"}
|
8055 |
+
.brz-ed .nc-glyph-exclamation:before{content:"\ed20"}
|
8056 |
+
.brz-ed .nc-glyph-explore-2:before{content:"\ed21"}
|
8057 |
+
.brz-ed .nc-glyph-explore-user:before{content:"\ed22"}
|
8058 |
+
.brz-ed .nc-glyph-explore:before{content:"\ed23"}
|
8059 |
+
.brz-ed .nc-glyph-export:before{content:"\ed24"}
|
8060 |
+
.brz-ed .nc-glyph-eye-17:before{content:"\ed25"}
|
8061 |
+
.brz-ed .nc-glyph-eye-19:before{content:"\ed26"}
|
8062 |
+
.brz-ed .nc-glyph-eye-ban-18:before{content:"\ed27"}
|
8063 |
+
.brz-ed .nc-glyph-eye-ban-20:before{content:"\ed28"}
|
8064 |
+
.brz-ed .nc-glyph-factory:before{content:"\ed29"}
|
8065 |
+
.brz-ed .nc-glyph-fahrenheit:before{content:"\ed2a"}
|
8066 |
+
.brz-ed .nc-glyph-family:before{content:"\ed2b"}
|
8067 |
+
.brz-ed .nc-glyph-fat-add:before{content:"\ed2c"}
|
8068 |
+
.brz-ed .nc-glyph-fat-delete:before{content:"\ed2d"}
|
8069 |
+
.brz-ed .nc-glyph-fat-remove:before{content:"\ed2e"}
|
8070 |
+
.brz-ed .nc-glyph-fav-remove:before{content:"\ed2f"}
|
8071 |
+
.brz-ed .nc-glyph-favourite-28:before{content:"\ed30"}
|
8072 |
+
.brz-ed .nc-glyph-favourite-31:before{content:"\ed31"}
|
8073 |
+
.brz-ed .nc-glyph-favourite-add-29:before{content:"\ed32"}
|
8074 |
+
.brz-ed .nc-glyph-favourite-add-32:before{content:"\ed33"}
|
8075 |
+
.brz-ed .nc-glyph-favourite-remove-30:before{content:"\ed34"}
|
8076 |
+
.brz-ed .nc-glyph-favourite-remove-33:before{content:"\ed35"}
|
8077 |
+
.brz-ed .nc-glyph-fencing:before{content:"\ed36"}
|
8078 |
+
.brz-ed .nc-glyph-file-add:before{content:"\ed37"}
|
8079 |
+
.brz-ed .nc-glyph-file-delete:before{content:"\ed38"}
|
8080 |
+
.brz-ed .nc-glyph-file-download-87:before{content:"\ed39"}
|
8081 |
+
.brz-ed .nc-glyph-file-download-89:before{content:"\ed3a"}
|
8082 |
+
.brz-ed .nc-glyph-file-download-94:before{content:"\ed3b"}
|
8083 |
+
.brz-ed .nc-glyph-file-upload-86:before{content:"\ed3c"}
|
8084 |
+
.brz-ed .nc-glyph-file-upload-88:before{content:"\ed3d"}
|
8085 |
+
.brz-ed .nc-glyph-file-upload-93:before{content:"\ed3e"}
|
8086 |
+
.brz-ed .nc-glyph-filter-check:before{content:"\ed3f"}
|
8087 |
+
.brz-ed .nc-glyph-filter-organization:before{content:"\ed40"}
|
8088 |
+
.brz-ed .nc-glyph-filter-remove:before{content:"\ed41"}
|
8089 |
+
.brz-ed .nc-glyph-filter:before{content:"\ed42"}
|
8090 |
+
.brz-ed .nc-glyph-fire:before{content:"\ed43"}
|
8091 |
+
.brz-ed .nc-glyph-firewall:before{content:"\ed44"}
|
8092 |
+
.brz-ed .nc-glyph-fish:before{content:"\ed45"}
|
8093 |
+
.brz-ed .nc-glyph-fishbone:before{content:"\ed46"}
|
8094 |
+
.brz-ed .nc-glyph-fishing:before{content:"\ed47"}
|
8095 |
+
.brz-ed .nc-glyph-fist:before{content:"\ed48"}
|
8096 |
+
.brz-ed .nc-glyph-fit-horizontal:before{content:"\ed49"}
|
8097 |
+
.brz-ed .nc-glyph-fit-vertical:before{content:"\ed4a"}
|
8098 |
+
.brz-ed .nc-glyph-flag-complex:before{content:"\ed4b"}
|
8099 |
+
.brz-ed .nc-glyph-flag-diagonal-33:before{content:"\ed4c"}
|
8100 |
+
.brz-ed .nc-glyph-flag-diagonal-34:before{content:"\ed4d"}
|
8101 |
+
.brz-ed .nc-glyph-flag-finish:before{content:"\ed4e"}
|
8102 |
+
.brz-ed .nc-glyph-flag-points-31:before{content:"\ed4f"}
|
8103 |
+
.brz-ed .nc-glyph-flag-points-32:before{content:"\ed50"}
|
8104 |
+
.brz-ed .nc-glyph-flag-simple:before{content:"\ed51"}
|
8105 |
+
.brz-ed .nc-glyph-flag-triangle:before{content:"\ed52"}
|
8106 |
+
.brz-ed .nc-glyph-flag:before{content:"\ed53"}
|
8107 |
+
.brz-ed .nc-glyph-flame:before{content:"\ed54"}
|
8108 |
+
.brz-ed .nc-glyph-flash-21:before{content:"\ed55"}
|
8109 |
+
.brz-ed .nc-glyph-flash-24:before{content:"\ed56"}
|
8110 |
+
.brz-ed .nc-glyph-flash-29:before{content:"\ed57"}
|
8111 |
+
.brz-ed .nc-glyph-flash-auto-22:before{content:"\ed58"}
|
8112 |
+
.brz-ed .nc-glyph-flash-auto-25:before{content:"\ed59"}
|
8113 |
+
.brz-ed .nc-glyph-flash-off-23:before{content:"\ed5a"}
|
8114 |
+
.brz-ed .nc-glyph-flash-off-26:before{content:"\ed5b"}
|
8115 |
+
.brz-ed .nc-glyph-flask-2:before{content:"\ed5c"}
|
8116 |
+
.brz-ed .nc-glyph-flask:before{content:"\ed5d"}
|
8117 |
+
.brz-ed .nc-glyph-flick-down:before{content:"\ed5e"}
|
8118 |
+
.brz-ed .nc-glyph-flick-left:before{content:"\ed5f"}
|
8119 |
+
.brz-ed .nc-glyph-flick-right:before{content:"\ed60"}
|
8120 |
+
.brz-ed .nc-glyph-flick-up:before{content:"\ed61"}
|
8121 |
+
.brz-ed .nc-glyph-flip-horizontal:before{content:"\ed63"}
|
8122 |
+
.brz-ed .nc-glyph-flip-vertical:before{content:"\ed62"}
|
8123 |
+
.brz-ed .nc-glyph-flip:before{content:"\ed64"}
|
8124 |
+
.brz-ed .nc-glyph-flower-05:before{content:"\ed66"}
|
8125 |
+
.brz-ed .nc-glyph-flower-06:before{content:"\ed65"}
|
8126 |
+
.brz-ed .nc-glyph-flower-07:before{content:"\ed67"}
|
8127 |
+
.brz-ed .nc-glyph-focus-32:before{content:"\ed68"}
|
8128 |
+
.brz-ed .nc-glyph-focus-38:before{content:"\ed69"}
|
8129 |
+
.brz-ed .nc-glyph-focus-40:before{content:"\ed6a"}
|
8130 |
+
.brz-ed .nc-glyph-focus-circle:before{content:"\ed6b"}
|
8131 |
+
.brz-ed .nc-glyph-focus:before{content:"\ed6c"}
|
8132 |
+
.brz-ed .nc-glyph-fog:before{content:"\ed6d"}
|
8133 |
+
.brz-ed .nc-glyph-folder-13:before{content:"\ed6e"}
|
8134 |
+
.brz-ed .nc-glyph-folder-14:before{content:"\ed6f"}
|
8135 |
+
.brz-ed .nc-glyph-folder-15:before{content:"\ed70"}
|
8136 |
+
.brz-ed .nc-glyph-folder-16:before{content:"\ed73"}
|
8137 |
+
.brz-ed .nc-glyph-folder-17:before{content:"\ed71"}
|
8138 |
+
.brz-ed .nc-glyph-folder-18:before{content:"\ed72"}
|
8139 |
+
.brz-ed .nc-glyph-folder-19:before{content:"\ed74"}
|
8140 |
+
.brz-ed .nc-glyph-folder-add:before{content:"\ed75"}
|
8141 |
+
.brz-ed .nc-glyph-folder-audio:before{content:"\ed76"}
|
8142 |
+
.brz-ed .nc-glyph-folder-bookmark:before{content:"\ed77"}
|
8143 |
+
.brz-ed .nc-glyph-folder-chart-bar:before{content:"\ed78"}
|
8144 |
+
.brz-ed .nc-glyph-folder-chart-pie:before{content:"\ed79"}
|
8145 |
+
.brz-ed .nc-glyph-folder-check:before{content:"\ed7a"}
|
8146 |
+
.brz-ed .nc-glyph-folder-cloud:before{content:"\ed7b"}
|
8147 |
+
.brz-ed .nc-glyph-folder-dev:before{content:"\ed7c"}
|
8148 |
+
.brz-ed .nc-glyph-folder-download:before{content:"\ed7d"}
|
8149 |
+
.brz-ed .nc-glyph-folder-edit:before{content:"\ed7e"}
|
8150 |
+
.brz-ed .nc-glyph-folder-exclamation:before{content:"\ed7f"}
|
8151 |
+
.brz-ed .nc-glyph-folder-gallery:before{content:"\ed80"}
|
8152 |
+
.brz-ed .nc-glyph-folder-heart:before{content:"\ed81"}
|
8153 |
+
.brz-ed .nc-glyph-folder-image:before{content:"\ed82"}
|
8154 |
+
.brz-ed .nc-glyph-folder-info:before{content:"\ed83"}
|
8155 |
+
.brz-ed .nc-glyph-folder-link:before{content:"\ed84"}
|
8156 |
+
.brz-ed .nc-glyph-folder-locked:before{content:"\ed85"}
|
8157 |
+
.brz-ed .nc-glyph-folder-money:before{content:"\ed86"}
|
8158 |
+
.brz-ed .nc-glyph-folder-music:before{content:"\ed87"}
|
8159 |
+
.brz-ed .nc-glyph-folder-no-access:before{content:"\ed88"}
|
8160 |
+
.brz-ed .nc-glyph-folder-play:before{content:"\ed89"}
|
8161 |
+
.brz-ed .nc-glyph-folder-question:before{content:"\ed8a"}
|
8162 |
+
.brz-ed .nc-glyph-folder-refresh:before{content:"\ed8b"}
|
8163 |
+
.brz-ed .nc-glyph-folder-remove:before{content:"\ed8c"}
|
8164 |
+
.brz-ed .nc-glyph-folder-search:before{content:"\ed8d"}
|
8165 |
+
.brz-ed .nc-glyph-folder-settings-81:before{content:"\ed8e"}
|
8166 |
+
.brz-ed .nc-glyph-folder-settings-97:before{content:"\ed8f"}
|
8167 |
+
.brz-ed .nc-glyph-folder-shared:before{content:"\ed90"}
|
8168 |
+
.brz-ed .nc-glyph-folder-star:before{content:"\ed91"}
|
8169 |
+
.brz-ed .nc-glyph-folder-time:before{content:"\ed92"}
|
8170 |
+
.brz-ed .nc-glyph-folder-upload:before{content:"\ed93"}
|
8171 |
+
.brz-ed .nc-glyph-folder-user:before{content:"\ed94"}
|
8172 |
+
.brz-ed .nc-glyph-folder-vector:before{content:"\ed95"}
|
8173 |
+
.brz-ed .nc-glyph-food-dog:before{content:"\ed96"}
|
8174 |
+
.brz-ed .nc-glyph-food-scale:before{content:"\ed97"}
|
8175 |
+
.brz-ed .nc-glyph-food:before{content:"\ed98"}
|
8176 |
+
.brz-ed .nc-glyph-football-headguard:before{content:"\ed99"}
|
8177 |
+
.brz-ed .nc-glyph-forecast:before{content:"\ed9a"}
|
8178 |
+
.brz-ed .nc-glyph-forest:before{content:"\ed9b"}
|
8179 |
+
.brz-ed .nc-glyph-fork-round:before{content:"\ed9c"}
|
8180 |
+
.brz-ed .nc-glyph-fork:before{content:"\ed9d"}
|
8181 |
+
.brz-ed .nc-glyph-form:before{content:"\ed9e"}
|
8182 |
+
.brz-ed .nc-glyph-format-left:before{content:"\ed9f"}
|
8183 |
+
.brz-ed .nc-glyph-format-right:before{content:"\eda0"}
|
8184 |
+
.brz-ed .nc-glyph-forward:before{content:"\eda1"}
|
8185 |
+
.brz-ed .nc-glyph-frame-12:before{content:"\eda2"}
|
8186 |
+
.brz-ed .nc-glyph-frame-41:before{content:"\eda3"}
|
8187 |
+
.brz-ed .nc-glyph-frame:before{content:"\eda4"}
|
8188 |
+
.brz-ed .nc-glyph-frankenstein:before{content:"\eda5"}
|
8189 |
+
.brz-ed .nc-glyph-fridge:before{content:"\eda6"}
|
8190 |
+
.brz-ed .nc-glyph-fuel-2:before{content:"\eda7"}
|
8191 |
+
.brz-ed .nc-glyph-fuel-electric:before{content:"\eda8"}
|
8192 |
+
.brz-ed .nc-glyph-fuel:before{content:"\eda9"}
|
8193 |
+
.brz-ed .nc-glyph-full-screen:before{content:"\edaa"}
|
8194 |
+
.brz-ed .nc-glyph-fullscreen-70:before{content:"\edab"}
|
8195 |
+
.brz-ed .nc-glyph-fullscreen-71:before{content:"\edac"}
|
8196 |
+
.brz-ed .nc-glyph-fullscreen-76:before{content:"\edad"}
|
8197 |
+
.brz-ed .nc-glyph-fullscreen-77:before{content:"\edae"}
|
8198 |
+
.brz-ed .nc-glyph-fullscreen-double-74:before{content:"\edaf"}
|
8199 |
+
.brz-ed .nc-glyph-fullscreen-double-75:before{content:"\edb0"}
|
8200 |
+
.brz-ed .nc-glyph-fullscreen-split-72:before{content:"\edb1"}
|
8201 |
+
.brz-ed .nc-glyph-fullscreen-split-73:before{content:"\edb2"}
|
8202 |
+
.brz-ed .nc-glyph-fullsize:before{content:"\edb3"}
|
8203 |
+
.brz-ed .nc-glyph-funnel-39:before{content:"\edb4"}
|
8204 |
+
.brz-ed .nc-glyph-funnel-40:before{content:"\edb5"}
|
8205 |
+
.brz-ed .nc-glyph-funnel-41:before{content:"\edb6"}
|
8206 |
+
.brz-ed .nc-glyph-gallery:before{content:"\edb7"}
|
8207 |
+
.brz-ed .nc-glyph-gantt:before{content:"\edb8"}
|
8208 |
+
.brz-ed .nc-glyph-garlic:before{content:"\edb9"}
|
8209 |
+
.brz-ed .nc-glyph-ghost-2:before{content:"\edba"}
|
8210 |
+
.brz-ed .nc-glyph-ghost:before{content:"\edbb"}
|
8211 |
+
.brz-ed .nc-glyph-gift-2:before{content:"\edbc"}
|
8212 |
+
.brz-ed .nc-glyph-gift-exchange:before{content:"\edbd"}
|
8213 |
+
.brz-ed .nc-glyph-gift:before{content:"\edbe"}
|
8214 |
+
.brz-ed .nc-glyph-git-commit:before{content:"\edbf"}
|
8215 |
+
.brz-ed .nc-glyph-glass-water:before{content:"\edc0"}
|
8216 |
+
.brz-ed .nc-glyph-glass:before{content:"\edc1"}
|
8217 |
+
.brz-ed .nc-glyph-glasses-2:before{content:"\edc2"}
|
8218 |
+
.brz-ed .nc-glyph-glasses:before{content:"\edc3"}
|
8219 |
+
.brz-ed .nc-glyph-globe-2:before{content:"\edc4"}
|
8220 |
+
.brz-ed .nc-glyph-globe:before{content:"\edc5"}
|
8221 |
+
.brz-ed .nc-glyph-glove:before{content:"\edc6"}
|
8222 |
+
.brz-ed .nc-glyph-gloves:before{content:"\edc7"}
|
8223 |
+
.brz-ed .nc-glyph-goal-64:before{content:"\edc8"}
|
8224 |
+
.brz-ed .nc-glyph-goal-65:before{content:"\edc9"}
|
8225 |
+
.brz-ed .nc-glyph-gold:before{content:"\edca"}
|
8226 |
+
.brz-ed .nc-glyph-golf:before{content:"\edcb"}
|
8227 |
+
.brz-ed .nc-glyph-gps:before{content:"\edcc"}
|
8228 |
+
.brz-ed .nc-glyph-grab:before{content:"\edcd"}
|
8229 |
+
.brz-ed .nc-glyph-gradient:before{content:"\edce"}
|
8230 |
+
.brz-ed .nc-glyph-grammar-check:before{content:"\edcf"}
|
8231 |
+
.brz-ed .nc-glyph-grape:before{content:"\edd0"}
|
8232 |
+
.brz-ed .nc-glyph-grave:before{content:"\edd1"}
|
8233 |
+
.brz-ed .nc-glyph-grid-45:before{content:"\edd2"}
|
8234 |
+
.brz-ed .nc-glyph-grid-46:before{content:"\edd3"}
|
8235 |
+
.brz-ed .nc-glyph-grid-48:before{content:"\edd4"}
|
8236 |
+
.brz-ed .nc-glyph-grid-49:before{content:"\edd5"}
|
8237 |
+
.brz-ed .nc-glyph-grid-50:before{content:"\edd6"}
|
8238 |
+
.brz-ed .nc-glyph-grid-square:before{content:"\edd7"}
|
8239 |
+
.brz-ed .nc-glyph-grid-system:before{content:"\edd8"}
|
8240 |
+
.brz-ed .nc-glyph-grid:before{content:"\edd9"}
|
8241 |
+
.brz-ed .nc-glyph-group:before{content:"\edda"}
|
8242 |
+
.brz-ed .nc-glyph-guitar:before{content:"\eddb"}
|
8243 |
+
.brz-ed .nc-glyph-hammer:before{content:"\eddc"}
|
8244 |
+
.brz-ed .nc-glyph-hand-card:before{content:"\eddd"}
|
8245 |
+
.brz-ed .nc-glyph-handout:before{content:"\edde"}
|
8246 |
+
.brz-ed .nc-glyph-handshake:before{content:"\eddf"}
|
8247 |
+
.brz-ed .nc-glyph-hanger-clothes:before{content:"\ede0"}
|
8248 |
+
.brz-ed .nc-glyph-hanger:before{content:"\ede1"}
|
8249 |
+
.brz-ed .nc-glyph-hannibal:before{content:"\ede2"}
|
8250 |
+
.brz-ed .nc-glyph-happy-sun:before{content:"\ede3"}
|
8251 |
+
.brz-ed .nc-glyph-hat-2:before{content:"\ede4"}
|
8252 |
+
.brz-ed .nc-glyph-hat-3:before{content:"\ede5"}
|
8253 |
+
.brz-ed .nc-glyph-hat-top:before{content:"\ede6"}
|
8254 |
+
.brz-ed .nc-glyph-hat:before{content:"\ede7"}
|
8255 |
+
.brz-ed .nc-glyph-hazelnut:before{content:"\ede8"}
|
8256 |
+
.brz-ed .nc-glyph-hdmi:before{content:"\ede9"}
|
8257 |
+
.brz-ed .nc-glyph-headphone:before{content:"\edea"}
|
8258 |
+
.brz-ed .nc-glyph-headphones-2:before{content:"\edeb"}
|
8259 |
+
.brz-ed .nc-glyph-headphones-mic:before{content:"\edec"}
|
8260 |
+
.brz-ed .nc-glyph-headphones:before{content:"\eded"}
|
8261 |
+
.brz-ed .nc-glyph-headset:before{content:"\edee"}
|
8262 |
+
.brz-ed .nc-glyph-heart-2:before{content:"\edef"}
|
8263 |
+
.brz-ed .nc-glyph-heart-add:before{content:"\edf0"}
|
8264 |
+
.brz-ed .nc-glyph-heart-remove:before{content:"\edf1"}
|
8265 |
+
.brz-ed .nc-glyph-heart:before{content:"\edf2"}
|
8266 |
+
.brz-ed .nc-glyph-heartbeat:before{content:"\edf3"}
|
8267 |
+
.brz-ed .nc-glyph-heater:before{content:"\edf4"}
|
8268 |
+
.brz-ed .nc-glyph-height:before{content:"\edf5"}
|
8269 |
+
.brz-ed .nc-glyph-helicopter:before{content:"\edf6"}
|
8270 |
+
.brz-ed .nc-glyph-helmet-2:before{content:"\edf7"}
|
8271 |
+
.brz-ed .nc-glyph-helmet:before{content:"\edf8"}
|
8272 |
+
.brz-ed .nc-glyph-hierarchy-53:before{content:"\edf9"}
|
8273 |
+
.brz-ed .nc-glyph-hierarchy-54:before{content:"\edfa"}
|
8274 |
+
.brz-ed .nc-glyph-hierarchy-55:before{content:"\edfb"}
|
8275 |
+
.brz-ed .nc-glyph-hierarchy-56:before{content:"\edfc"}
|
8276 |
+
.brz-ed .nc-glyph-hit-down:before{content:"\edfd"}
|
8277 |
+
.brz-ed .nc-glyph-hit-left:before{content:"\edfe"}
|
8278 |
+
.brz-ed .nc-glyph-hit-right:before{content:"\edff"}
|
8279 |
+
.brz-ed .nc-glyph-hit-up:before{content:"\ee00"}
|
8280 |
+
.brz-ed .nc-glyph-hob:before{content:"\ee01"}
|
8281 |
+
.brz-ed .nc-glyph-hockey:before{content:"\ee02"}
|
8282 |
+
.brz-ed .nc-glyph-hold:before{content:"\ee03"}
|
8283 |
+
.brz-ed .nc-glyph-home-2:before{content:"\ee04"}
|
8284 |
+
.brz-ed .nc-glyph-home-51:before{content:"\ee05"}
|
8285 |
+
.brz-ed .nc-glyph-home-52:before{content:"\ee06"}
|
8286 |
+
.brz-ed .nc-glyph-home-minimal:before{content:"\ee07"}
|
8287 |
+
.brz-ed .nc-glyph-home-search:before{content:"\ee08"}
|
8288 |
+
.brz-ed .nc-glyph-home-simple:before{content:"\ee09"}
|
8289 |
+
.brz-ed .nc-glyph-home:before{content:"\ee0a"}
|
8290 |
+
.brz-ed .nc-glyph-honey:before{content:"\ee0b"}
|
8291 |
+
.brz-ed .nc-glyph-hoodie:before{content:"\ee0c"}
|
8292 |
+
.brz-ed .nc-glyph-hospital-32:before{content:"\ee0d"}
|
8293 |
+
.brz-ed .nc-glyph-hospital-33:before{content:"\ee0e"}
|
8294 |
+
.brz-ed .nc-glyph-hospital-34:before{content:"\ee0f"}
|
8295 |
+
.brz-ed .nc-glyph-hot-dog:before{content:"\ee10"}
|
8296 |
+
.brz-ed .nc-glyph-hotel-bell:before{content:"\ee11"}
|
8297 |
+
.brz-ed .nc-glyph-hotel-symbol:before{content:"\ee12"}
|
8298 |
+
.brz-ed .nc-glyph-hotel:before{content:"\ee13"}
|
8299 |
+
.brz-ed .nc-glyph-hourglass:before{content:"\ee14"}
|
8300 |
+
.brz-ed .nc-glyph-html5:before{content:"\ee15"}
|
8301 |
+
.brz-ed .nc-glyph-humidity-26:before{content:"\ee16"}
|
8302 |
+
.brz-ed .nc-glyph-humidity-52:before{content:"\ee17"}
|
8303 |
+
.brz-ed .nc-glyph-hurricane-44:before{content:"\ee18"}
|
8304 |
+
.brz-ed .nc-glyph-hurricane-45:before{content:"\ee19"}
|
8305 |
+
.brz-ed .nc-glyph-hut:before{content:"\ee1a"}
|
8306 |
+
.brz-ed .nc-glyph-hybrid:before{content:"\ee1b"}
|
8307 |
+
.brz-ed .nc-glyph-ice-cream-22:before{content:"\ee1c"}
|
8308 |
+
.brz-ed .nc-glyph-ice-cream-72:before{content:"\ee1d"}
|
8309 |
+
.brz-ed .nc-glyph-ice-cream:before{content:"\ee1e"}
|
8310 |
+
.brz-ed .nc-glyph-igloo:before{content:"\ee1f"}
|
8311 |
+
.brz-ed .nc-glyph-image-01:before{content:"\ee20"}
|
8312 |
+
.brz-ed .nc-glyph-image-02:before{content:"\ee21"}
|
8313 |
+
.brz-ed .nc-glyph-image-05:before{content:"\ee22"}
|
8314 |
+
.brz-ed .nc-glyph-image-2:before{content:"\ee23"}
|
8315 |
+
.brz-ed .nc-glyph-image-3:before{content:"\ee24"}
|
8316 |
+
.brz-ed .nc-glyph-image-add:before{content:"\ee25"}
|
8317 |
+
.brz-ed .nc-glyph-image-delete:before{content:"\ee26"}
|
8318 |
+
.brz-ed .nc-glyph-image-location:before{content:"\ee27"}
|
8319 |
+
.brz-ed .nc-glyph-image:before{content:"\ee28"}
|
8320 |
+
.brz-ed .nc-glyph-infinite:before{content:"\ee29"}
|
8321 |
+
.brz-ed .nc-glyph-info:before{content:"\ee2a"}
|
8322 |
+
.brz-ed .nc-glyph-input-12:before{content:"\ee2b"}
|
8323 |
+
.brz-ed .nc-glyph-input-21:before{content:"\ee2c"}
|
8324 |
+
.brz-ed .nc-glyph-intestine:before{content:"\ee2d"}
|
8325 |
+
.brz-ed .nc-glyph-invert:before{content:"\ee2e"}
|
8326 |
+
.brz-ed .nc-glyph-iron-2:before{content:"\ee2f"}
|
8327 |
+
.brz-ed .nc-glyph-iron-dont:before{content:"\ee30"}
|
8328 |
+
.brz-ed .nc-glyph-iron:before{content:"\ee31"}
|
8329 |
+
.brz-ed .nc-glyph-istanbul:before{content:"\ee32"}
|
8330 |
+
.brz-ed .nc-glyph-italic:before{content:"\ee33"}
|
8331 |
+
.brz-ed .nc-glyph-jam:before{content:"\ee34"}
|
8332 |
+
.brz-ed .nc-glyph-jeans-41:before{content:"\ee35"}
|
8333 |
+
.brz-ed .nc-glyph-jeans-43:before{content:"\ee36"}
|
8334 |
+
.brz-ed .nc-glyph-jeans-pocket:before{content:"\ee37"}
|
8335 |
+
.brz-ed .nc-glyph-jelly:before{content:"\ee38"}
|
8336 |
+
.brz-ed .nc-glyph-jellyfish:before{content:"\ee39"}
|
8337 |
+
.brz-ed .nc-glyph-journey-04:before{content:"\ee3a"}
|
8338 |
+
.brz-ed .nc-glyph-journey-05:before{content:"\ee3b"}
|
8339 |
+
.brz-ed .nc-glyph-journey-06:before{content:"\ee3c"}
|
8340 |
+
.brz-ed .nc-glyph-journey-07:before{content:"\ee3d"}
|
8341 |
+
.brz-ed .nc-glyph-journey-08:before{content:"\ee3e"}
|
8342 |
+
.brz-ed .nc-glyph-juice:before{content:"\ee3f"}
|
8343 |
+
.brz-ed .nc-glyph-kettle:before{content:"\ee40"}
|
8344 |
+
.brz-ed .nc-glyph-kettlebell:before{content:"\ee41"}
|
8345 |
+
.brz-ed .nc-glyph-key-25:before{content:"\ee42"}
|
8346 |
+
.brz-ed .nc-glyph-key-26:before{content:"\ee43"}
|
8347 |
+
.brz-ed .nc-glyph-keyboard-hide:before{content:"\ee44"}
|
8348 |
+
.brz-ed .nc-glyph-keyboard-mouse:before{content:"\ee45"}
|
8349 |
+
.brz-ed .nc-glyph-keyboard-wifi:before{content:"\ee46"}
|
8350 |
+
.brz-ed .nc-glyph-keyboard-wireless:before{content:"\ee47"}
|
8351 |
+
.brz-ed .nc-glyph-keyboard:before{content:"\ee48"}
|
8352 |
+
.brz-ed .nc-glyph-kid-2:before{content:"\ee49"}
|
8353 |
+
.brz-ed .nc-glyph-kid:before{content:"\ee4a"}
|
8354 |
+
.brz-ed .nc-glyph-kiss:before{content:"\ee4b"}
|
8355 |
+
.brz-ed .nc-glyph-kitchen-fan:before{content:"\ee4c"}
|
8356 |
+
.brz-ed .nc-glyph-kitchen:before{content:"\ee4d"}
|
8357 |
+
.brz-ed .nc-glyph-kiwi:before{content:"\ee4e"}
|
8358 |
+
.brz-ed .nc-glyph-knife:before{content:"\ee4f"}
|
8359 |
+
.brz-ed .nc-glyph-knob:before{content:"\ee50"}
|
8360 |
+
.brz-ed .nc-glyph-l-add:before{content:"\ee51"}
|
8361 |
+
.brz-ed .nc-glyph-l-check:before{content:"\ee52"}
|
8362 |
+
.brz-ed .nc-glyph-l-circle:before{content:"\ee53"}
|
8363 |
+
.brz-ed .nc-glyph-l-circles:before{content:"\ee54"}
|
8364 |
+
.brz-ed .nc-glyph-l-location:before{content:"\ee55"}
|
8365 |
+
.brz-ed .nc-glyph-l-remove:before{content:"\ee56"}
|
8366 |
+
.brz-ed .nc-glyph-l-search:before{content:"\ee57"}
|
8367 |
+
.brz-ed .nc-glyph-l-security:before{content:"\ee58"}
|
8368 |
+
.brz-ed .nc-glyph-l-settings:before{content:"\ee59"}
|
8369 |
+
.brz-ed .nc-glyph-l-sync:before{content:"\ee5a"}
|
8370 |
+
.brz-ed .nc-glyph-l-system-update:before{content:"\ee5b"}
|
8371 |
+
.brz-ed .nc-glyph-lab:before{content:"\ee5c"}
|
8372 |
+
.brz-ed .nc-glyph-lamp-2:before{content:"\ee5d"}
|
8373 |
+
.brz-ed .nc-glyph-lamp-3:before{content:"\ee5e"}
|
8374 |
+
.brz-ed .nc-glyph-lamp-floor:before{content:"\ee5f"}
|
8375 |
+
.brz-ed .nc-glyph-lamp:before{content:"\ee60"}
|
8376 |
+
.brz-ed .nc-glyph-language:before{content:"\ee61"}
|
8377 |
+
.brz-ed .nc-glyph-laptop-1:before{content:"\ee62"}
|
8378 |
+
.brz-ed .nc-glyph-laptop-2:before{content:"\ee63"}
|
8379 |
+
.brz-ed .nc-glyph-laptop-71:before{content:"\ee64"}
|
8380 |
+
.brz-ed .nc-glyph-laptop-72:before{content:"\ee65"}
|
8381 |
+
.brz-ed .nc-glyph-laptop:before{content:"\ee66"}
|
8382 |
+
.brz-ed .nc-glyph-laugh-17:before{content:"\ee67"}
|
8383 |
+
.brz-ed .nc-glyph-laugh-35:before{content:"\ee68"}
|
8384 |
+
.brz-ed .nc-glyph-launch-11:before{content:"\ee69"}
|
8385 |
+
.brz-ed .nc-glyph-launch-47:before{content:"\ee6a"}
|
8386 |
+
.brz-ed .nc-glyph-law:before{content:"\ee6b"}
|
8387 |
+
.brz-ed .nc-glyph-layers-2:before{content:"\ee6c"}
|
8388 |
+
.brz-ed .nc-glyph-layers-3:before{content:"\ee6d"}
|
8389 |
+
.brz-ed .nc-glyph-layers:before{content:"\ee6e"}
|
8390 |
+
.brz-ed .nc-glyph-layout-11:before{content:"\ee6f"}
|
8391 |
+
.brz-ed .nc-glyph-layout-25:before{content:"\ee70"}
|
8392 |
+
.brz-ed .nc-glyph-leaf-36:before{content:"\ee71"}
|
8393 |
+
.brz-ed .nc-glyph-leaf-38:before{content:"\ee72"}
|
8394 |
+
.brz-ed .nc-glyph-leaf-80:before{content:"\ee73"}
|
8395 |
+
.brz-ed .nc-glyph-leaf-81:before{content:"\ee74"}
|
8396 |
+
.brz-ed .nc-glyph-leaf-edit:before{content:"\ee75"}
|
8397 |
+
.brz-ed .nc-glyph-lemon-slice:before{content:"\ee76"}
|
8398 |
+
.brz-ed .nc-glyph-lemon:before{content:"\ee77"}
|
8399 |
+
.brz-ed .nc-glyph-lens-31:before{content:"\ee78"}
|
8400 |
+
.brz-ed .nc-glyph-lens-56:before{content:"\ee79"}
|
8401 |
+
.brz-ed .nc-glyph-library:before{content:"\ee7a"}
|
8402 |
+
.brz-ed .nc-glyph-light-2:before{content:"\ee7b"}
|
8403 |
+
.brz-ed .nc-glyph-light-3:before{content:"\ee7c"}
|
8404 |
+
.brz-ed .nc-glyph-light-traffic:before{content:"\ee7d"}
|
8405 |
+
.brz-ed .nc-glyph-light:before{content:"\ee7e"}
|
8406 |
+
.brz-ed .nc-glyph-lighter:before{content:"\ee7f"}
|
8407 |
+
.brz-ed .nc-glyph-lighthouse:before{content:"\ee80"}
|
8408 |
+
.brz-ed .nc-glyph-like-2:before{content:"\ee81"}
|
8409 |
+
.brz-ed .nc-glyph-like-no:before{content:"\ee82"}
|
8410 |
+
.brz-ed .nc-glyph-like:before{content:"\ee83"}
|
8411 |
+
.brz-ed .nc-glyph-line-height:before{content:"\ee84"}
|
8412 |
+
.brz-ed .nc-glyph-lines:before{content:"\ee85"}
|
8413 |
+
.brz-ed .nc-glyph-link-2:before{content:"\ee86"}
|
8414 |
+
.brz-ed .nc-glyph-link-66:before{content:"\ee87"}
|
8415 |
+
.brz-ed .nc-glyph-link-67:before{content:"\ee88"}
|
8416 |
+
.brz-ed .nc-glyph-link-68:before{content:"\ee89"}
|
8417 |
+
.brz-ed .nc-glyph-link-69:before{content:"\ee8a"}
|
8418 |
+
.brz-ed .nc-glyph-link-71:before{content:"\ee8b"}
|
8419 |
+
.brz-ed .nc-glyph-link-72:before{content:"\ee8c"}
|
8420 |
+
.brz-ed .nc-glyph-link-broken-70:before{content:"\ee8d"}
|
8421 |
+
.brz-ed .nc-glyph-link-broken-73:before{content:"\ee8e"}
|
8422 |
+
.brz-ed .nc-glyph-link:before{content:"\ee8f"}
|
8423 |
+
.brz-ed .nc-glyph-list-bullet:before{content:"\ee90"}
|
8424 |
+
.brz-ed .nc-glyph-list-numbers:before{content:"\ee91"}
|
8425 |
+
.brz-ed .nc-glyph-list:before{content:"\ee92"}
|
8426 |
+
.brz-ed .nc-glyph-lobster:before{content:"\ee93"}
|
8427 |
+
.brz-ed .nc-glyph-lock-circle-open:before{content:"\ee94"}
|
8428 |
+
.brz-ed .nc-glyph-lock-circle:before{content:"\ee95"}
|
8429 |
+
.brz-ed .nc-glyph-lock-landscape:before{content:"\ee96"}
|
8430 |
+
.brz-ed .nc-glyph-lock-open:before{content:"\ee97"}
|
8431 |
+
.brz-ed .nc-glyph-lock-portrait:before{content:"\ee98"}
|
8432 |
+
.brz-ed .nc-glyph-lock:before{content:"\ee99"}
|
8433 |
+
.brz-ed .nc-glyph-locked:before{content:"\ee9a"}
|
8434 |
+
.brz-ed .nc-glyph-log-in:before{content:"\ee9b"}
|
8435 |
+
.brz-ed .nc-glyph-log-out-2:before{content:"\ee9c"}
|
8436 |
+
.brz-ed .nc-glyph-log-out:before{content:"\ee9d"}
|
8437 |
+
.brz-ed .nc-glyph-logo-500px:before{content:"\ee9e"}
|
8438 |
+
.brz-ed .nc-glyph-logo-angellist:before{content:"\ee9f"}
|
8439 |
+
.brz-ed .nc-glyph-logo-behance:before{content:"\eea0"}
|
8440 |
+
.brz-ed .nc-glyph-logo-blogger:before{content:"\eea1"}
|
8441 |
+
.brz-ed .nc-glyph-logo-buffer:before{content:"\eea2"}
|
8442 |
+
.brz-ed .nc-glyph-logo-buysellads:before{content:"\eea3"}
|
8443 |
+
.brz-ed .nc-glyph-logo-codepen:before{content:"\eea4"}
|
8444 |
+
.brz-ed .nc-glyph-logo-creative-market:before{content:"\eea5"}
|
8445 |
+
.brz-ed .nc-glyph-logo-crunchbase:before{content:"\eea6"}
|
8446 |
+
.brz-ed .nc-glyph-logo-deviantart:before{content:"\eea7"}
|
8447 |
+
.brz-ed .nc-glyph-logo-dribbble:before{content:"\eea8"}
|
8448 |
+
.brz-ed .nc-glyph-logo-dropbox:before{content:"\eea9"}
|
8449 |
+
.brz-ed .nc-glyph-logo-envato:before{content:"\eeaa"}
|
8450 |
+
.brz-ed .nc-glyph-logo-evernote:before{content:"\eeab"}
|
8451 |
+
.brz-ed .nc-glyph-logo-facebook:before{content:"\eeac"}
|
8452 |
+
.brz-ed .nc-glyph-logo-fb-simple:before{content:"\eead"}
|
8453 |
+
.brz-ed .nc-glyph-logo-feedly:before{content:"\eeae"}
|
8454 |
+
.brz-ed .nc-glyph-logo-flickr:before{content:"\eeaf"}
|
8455 |
+
.brz-ed .nc-glyph-logo-github:before{content:"\eeb0"}
|
8456 |
+
.brz-ed .nc-glyph-logo-google-plus:before{content:"\eeb1"}
|
8457 |
+
.brz-ed .nc-glyph-logo-instagram:before{content:"\eeb2"}
|
8458 |
+
.brz-ed .nc-glyph-logo-lastfm:before{content:"\eeb3"}
|
8459 |
+
.brz-ed .nc-glyph-logo-linkedin:before{content:"\eeb4"}
|
8460 |
+
.brz-ed .nc-glyph-logo-medium:before{content:"\eeb5"}
|
8461 |
+
.brz-ed .nc-glyph-logo-meetup:before{content:"\eeb6"}
|
8462 |
+
.brz-ed .nc-glyph-logo-messenger:before{content:"\eeb7"}
|
8463 |
+
.brz-ed .nc-glyph-logo-myspace:before{content:"\eeb8"}
|
8464 |
+
.brz-ed .nc-glyph-logo-paypal:before{content:"\eeb9"}
|
8465 |
+
.brz-ed .nc-glyph-logo-pinterest:before{content:"\eeba"}
|
8466 |
+
.brz-ed .nc-glyph-logo-product-hunt:before{content:"\eebb"}
|
8467 |
+
.brz-ed .nc-glyph-logo-qq:before{content:"\eebc"}
|
8468 |
+
.brz-ed .nc-glyph-logo-reddit:before{content:"\eebd"}
|
8469 |
+
.brz-ed .nc-glyph-logo-rss:before{content:"\eebe"}
|
8470 |
+
.brz-ed .nc-glyph-logo-shopify:before{content:"\eebf"}
|
8471 |
+
.brz-ed .nc-glyph-logo-skype:before{content:"\eec0"}
|
8472 |
+
.brz-ed .nc-glyph-logo-slack:before{content:"\eec1"}
|
8473 |
+
.brz-ed .nc-glyph-logo-soundcloud:before{content:"\eec2"}
|
8474 |
+
.brz-ed .nc-glyph-logo-spotify:before{content:"\eec3"}
|
8475 |
+
.brz-ed .nc-glyph-logo-squarespace:before{content:"\eec4"}
|
8476 |
+
.brz-ed .nc-glyph-logo-trello:before{content:"\eec5"}
|
8477 |
+
.brz-ed .nc-glyph-logo-tumblr:before{content:"\eec6"}
|
8478 |
+
.brz-ed .nc-glyph-logo-twitter:before{content:"\eec7"}
|
8479 |
+
.brz-ed .nc-glyph-logo-vimeo:before{content:"\eec8"}
|
8480 |
+
.brz-ed .nc-glyph-logo-vine:before{content:"\eec9"}
|
8481 |
+
.brz-ed .nc-glyph-logo-vk:before{content:"\eeca"}
|
8482 |
+
.brz-ed .nc-glyph-logo-wechat:before{content:"\eecb"}
|
8483 |
+
.brz-ed .nc-glyph-logo-weibo:before{content:"\eecc"}
|
8484 |
+
.brz-ed .nc-glyph-logo-whatsapp:before{content:"\eecd"}
|
8485 |
+
.brz-ed .nc-glyph-logo-wikipedia:before{content:"\eece"}
|
8486 |
+
.brz-ed .nc-glyph-logo-wordpress:before{content:"\eecf"}
|
8487 |
+
.brz-ed .nc-glyph-logo-yelp:before{content:"\eed0"}
|
8488 |
+
.brz-ed .nc-glyph-logo-youtube:before{content:"\eed1"}
|
8489 |
+
.brz-ed .nc-glyph-logout:before{content:"\eed2"}
|
8490 |
+
.brz-ed .nc-glyph-lollipop:before{content:"\eed3"}
|
8491 |
+
.brz-ed .nc-glyph-london:before{content:"\eed4"}
|
8492 |
+
.brz-ed .nc-glyph-long-sleeve:before{content:"\eed5"}
|
8493 |
+
.brz-ed .nc-glyph-loop-30:before{content:"\eed6"}
|
8494 |
+
.brz-ed .nc-glyph-loop-34:before{content:"\eed7"}
|
8495 |
+
.brz-ed .nc-glyph-loop-82:before{content:"\eed8"}
|
8496 |
+
.brz-ed .nc-glyph-loop-83:before{content:"\eed9"}
|
8497 |
+
.brz-ed .nc-glyph-loop:before{content:"\eeda"}
|
8498 |
+
.brz-ed .nc-glyph-luggage:before{content:"\eedb"}
|
8499 |
+
.brz-ed .nc-glyph-lungs:before{content:"\eedc"}
|
8500 |
+
.brz-ed .nc-glyph-m-add:before{content:"\eedd"}
|
8501 |
+
.brz-ed .nc-glyph-m-check:before{content:"\eede"}
|
8502 |
+
.brz-ed .nc-glyph-m-delete:before{content:"\eedf"}
|
8503 |
+
.brz-ed .nc-glyph-m-edit:before{content:"\eee0"}
|
8504 |
+
.brz-ed .nc-glyph-m-heart:before{content:"\eee1"}
|
8505 |
+
.brz-ed .nc-glyph-m-location:before{content:"\eee2"}
|
8506 |
+
.brz-ed .nc-glyph-m-remove:before{content:"\eee3"}
|
8507 |
+
.brz-ed .nc-glyph-m-search:before{content:"\eee4"}
|
8508 |
+
.brz-ed .nc-glyph-m-security:before{content:"\eee5"}
|
8509 |
+
.brz-ed .nc-glyph-m-settings:before{content:"\eee6"}
|
8510 |
+
.brz-ed .nc-glyph-m-share:before{content:"\eee7"}
|
8511 |
+
.brz-ed .nc-glyph-m-star:before{content:"\eee8"}
|
8512 |
+
.brz-ed .nc-glyph-m-sync:before{content:"\eee9"}
|
8513 |
+
.brz-ed .nc-glyph-m-time:before{content:"\eeea"}
|
8514 |
+
.brz-ed .nc-glyph-m-update:before{content:"\eeeb"}
|
8515 |
+
.brz-ed .nc-glyph-macro:before{content:"\eeec"}
|
8516 |
+
.brz-ed .nc-glyph-mad-12:before{content:"\eeed"}
|
8517 |
+
.brz-ed .nc-glyph-mad-58:before{content:"\eeee"}
|
8518 |
+
.brz-ed .nc-glyph-magnet:before{content:"\eeef"}
|
8519 |
+
.brz-ed .nc-glyph-makeup:before{content:"\eef0"}
|
8520 |
+
.brz-ed .nc-glyph-malicious:before{content:"\eef1"}
|
8521 |
+
.brz-ed .nc-glyph-man-20:before{content:"\eef2"}
|
8522 |
+
.brz-ed .nc-glyph-man-23:before{content:"\eef3"}
|
8523 |
+
.brz-ed .nc-glyph-man-down:before{content:"\eef4"}
|
8524 |
+
.brz-ed .nc-glyph-man-glasses:before{content:"\eef5"}
|
8525 |
+
.brz-ed .nc-glyph-man-up:before{content:"\eef6"}
|
8526 |
+
.brz-ed .nc-glyph-man:before{content:"\eef7"}
|
8527 |
+
.brz-ed .nc-glyph-manga-62:before{content:"\eef8"}
|
8528 |
+
.brz-ed .nc-glyph-manga-63:before{content:"\eef9"}
|
8529 |
+
.brz-ed .nc-glyph-map-big:before{content:"\eefa"}
|
8530 |
+
.brz-ed .nc-glyph-map-compass:before{content:"\eefb"}
|
8531 |
+
.brz-ed .nc-glyph-map-gps:before{content:"\eefc"}
|
8532 |
+
.brz-ed .nc-glyph-map-marker:before{content:"\eefd"}
|
8533 |
+
.brz-ed .nc-glyph-map-pin:before{content:"\eefe"}
|
8534 |
+
.brz-ed .nc-glyph-map:before{content:"\eeff"}
|
8535 |
+
.brz-ed .nc-glyph-margin-left:before{content:"\ef00"}
|
8536 |
+
.brz-ed .nc-glyph-margin-right:before{content:"\ef01"}
|
8537 |
+
.brz-ed .nc-glyph-marker-2:before{content:"\ef02"}
|
8538 |
+
.brz-ed .nc-glyph-marker-3:before{content:"\ef03"}
|
8539 |
+
.brz-ed .nc-glyph-marker:before{content:"\ef04"}
|
8540 |
+
.brz-ed .nc-glyph-market-music:before{content:"\ef05"}
|
8541 |
+
.brz-ed .nc-glyph-market-play:before{content:"\ef06"}
|
8542 |
+
.brz-ed .nc-glyph-mask-oval:before{content:"\ef07"}
|
8543 |
+
.brz-ed .nc-glyph-mask-rect:before{content:"\ef08"}
|
8544 |
+
.brz-ed .nc-glyph-matches:before{content:"\ef09"}
|
8545 |
+
.brz-ed .nc-glyph-math:before{content:"\ef0a"}
|
8546 |
+
.brz-ed .nc-glyph-measure-02:before{content:"\ef0b"}
|
8547 |
+
.brz-ed .nc-glyph-measure-17:before{content:"\ef0c"}
|
8548 |
+
.brz-ed .nc-glyph-measure-big:before{content:"\ef0d"}
|
8549 |
+
.brz-ed .nc-glyph-measuring-cup:before{content:"\ef0e"}
|
8550 |
+
.brz-ed .nc-glyph-meat-spit:before{content:"\ef0f"}
|
8551 |
+
.brz-ed .nc-glyph-meeting:before{content:"\ef10"}
|
8552 |
+
.brz-ed .nc-glyph-menu-34:before{content:"\ef11"}
|
8553 |
+
.brz-ed .nc-glyph-menu-35:before{content:"\ef12"}
|
8554 |
+
.brz-ed .nc-glyph-menu-bold:before{content:"\ef13"}
|
8555 |
+
.brz-ed .nc-glyph-menu-dots:before{content:"\ef14"}
|
8556 |
+
.brz-ed .nc-glyph-menu-left:before{content:"\ef15"}
|
8557 |
+
.brz-ed .nc-glyph-menu-right:before{content:"\ef16"}
|
8558 |
+
.brz-ed .nc-glyph-menu-square:before{content:"\ef17"}
|
8559 |
+
.brz-ed .nc-glyph-menu:before{content:"\ef18"}
|
8560 |
+
.brz-ed .nc-glyph-merge-2:before{content:"\ef19"}
|
8561 |
+
.brz-ed .nc-glyph-merge-round:before{content:"\ef1a"}
|
8562 |
+
.brz-ed .nc-glyph-merge:before{content:"\ef1b"}
|
8563 |
+
.brz-ed .nc-glyph-message:before{content:"\ef1c"}
|
8564 |
+
.brz-ed .nc-glyph-metrics:before{content:"\ef1d"}
|
8565 |
+
.brz-ed .nc-glyph-mic-2:before{content:"\ef1e"}
|
8566 |
+
.brz-ed .nc-glyph-mic:before{content:"\ef1f"}
|
8567 |
+
.brz-ed .nc-glyph-mickey-mouse:before{content:"\ef20"}
|
8568 |
+
.brz-ed .nc-glyph-microscope:before{content:"\ef21"}
|
8569 |
+
.brz-ed .nc-glyph-microsoft:before{content:"\ef22"}
|
8570 |
+
.brz-ed .nc-glyph-microwave:before{content:"\ef23"}
|
8571 |
+
.brz-ed .nc-glyph-milk:before{content:"\ef24"}
|
8572 |
+
.brz-ed .nc-glyph-minimal-down:before{content:"\ef25"}
|
8573 |
+
.brz-ed .nc-glyph-minimal-left:before{content:"\ef26"}
|
8574 |
+
.brz-ed .nc-glyph-minimal-right:before{content:"\ef27"}
|
8575 |
+
.brz-ed .nc-glyph-minimal-up:before{content:"\ef28"}
|
8576 |
+
.brz-ed .nc-glyph-mirror-2:before{content:"\ef29"}
|
8577 |
+
.brz-ed .nc-glyph-mirror:before{content:"\ef2a"}
|
8578 |
+
.brz-ed .nc-glyph-mistletoe:before{content:"\ef2b"}
|
8579 |
+
.brz-ed .nc-glyph-mixer:before{content:"\ef2c"}
|
8580 |
+
.brz-ed .nc-glyph-mobile-button:before{content:"\ef2d"}
|
8581 |
+
.brz-ed .nc-glyph-mobile-camera:before{content:"\ef2e"}
|
8582 |
+
.brz-ed .nc-glyph-mobile-card:before{content:"\ef2f"}
|
8583 |
+
.brz-ed .nc-glyph-mobile-contact:before{content:"\ef30"}
|
8584 |
+
.brz-ed .nc-glyph-mobile-design:before{content:"\ef31"}
|
8585 |
+
.brz-ed .nc-glyph-mobile-dev:before{content:"\ef32"}
|
8586 |
+
.brz-ed .nc-glyph-mobile-landscape:before{content:"\ef33"}
|
8587 |
+
.brz-ed .nc-glyph-mobile-recharger-08:before{content:"\ef34"}
|
8588 |
+
.brz-ed .nc-glyph-mobile-recharger-09:before{content:"\ef35"}
|
8589 |
+
.brz-ed .nc-glyph-mobile-toolbar:before{content:"\ef36"}
|
8590 |
+
.brz-ed .nc-glyph-mobile:before{content:"\ef37"}
|
8591 |
+
.brz-ed .nc-glyph-moka:before{content:"\ef38"}
|
8592 |
+
.brz-ed .nc-glyph-molecule-39:before{content:"\ef39"}
|
8593 |
+
.brz-ed .nc-glyph-molecule-40:before{content:"\ef3a"}
|
8594 |
+
.brz-ed .nc-glyph-molecule:before{content:"\ef3b"}
|
8595 |
+
.brz-ed .nc-glyph-money-11:before{content:"\ef3c"}
|
8596 |
+
.brz-ed .nc-glyph-money-12:before{content:"\ef3d"}
|
8597 |
+
.brz-ed .nc-glyph-money-13:before{content:"\ef3e"}
|
8598 |
+
.brz-ed .nc-glyph-money-bag:before{content:"\ef3f"}
|
8599 |
+
.brz-ed .nc-glyph-money-coins:before{content:"\ef40"}
|
8600 |
+
.brz-ed .nc-glyph-money-growth:before{content:"\ef41"}
|
8601 |
+
.brz-ed .nc-glyph-money-time:before{content:"\ef42"}
|
8602 |
+
.brz-ed .nc-glyph-money:before{content:"\ef43"}
|
8603 |
+
.brz-ed .nc-glyph-monster:before{content:"\ef44"}
|
8604 |
+
.brz-ed .nc-glyph-moon-cloud-drop:before{content:"\ef45"}
|
8605 |
+
.brz-ed .nc-glyph-moon-cloud-fog:before{content:"\ef46"}
|
8606 |
+
.brz-ed .nc-glyph-moon-cloud-hail:before{content:"\ef47"}
|
8607 |
+
.brz-ed .nc-glyph-moon-cloud-light:before{content:"\ef48"}
|
8608 |
+
.brz-ed .nc-glyph-moon-cloud-rain:before{content:"\ef49"}
|
8609 |
+
.brz-ed .nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}
|
8610 |
+
.brz-ed .nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}
|
8611 |
+
.brz-ed .nc-glyph-moon-fog:before{content:"\ef4c"}
|
8612 |
+
.brz-ed .nc-glyph-moon-full:before{content:"\ef4d"}
|
8613 |
+
.brz-ed .nc-glyph-moon-stars:before{content:"\ef4e"}
|
8614 |
+
.brz-ed .nc-glyph-moon:before{content:"\ef4f"}
|
8615 |
+
.brz-ed .nc-glyph-mosque:before{content:"\ef50"}
|
8616 |
+
.brz-ed .nc-glyph-moto:before{content:"\ef51"}
|
8617 |
+
.brz-ed .nc-glyph-mountain:before{content:"\ef52"}
|
8618 |
+
.brz-ed .nc-glyph-mouse-08:before{content:"\ef53"}
|
8619 |
+
.brz-ed .nc-glyph-mouse-09:before{content:"\ef54"}
|
8620 |
+
.brz-ed .nc-glyph-mouse-10:before{content:"\ef55"}
|
8621 |
+
.brz-ed .nc-glyph-mouse:before{content:"\ef56"}
|
8622 |
+
.brz-ed .nc-glyph-move-05:before{content:"\ef57"}
|
8623 |
+
.brz-ed .nc-glyph-move-06:before{content:"\ef58"}
|
8624 |
+
.brz-ed .nc-glyph-move-92:before{content:"\ef59"}
|
8625 |
+
.brz-ed .nc-glyph-move-down-2:before{content:"\ef5a"}
|
8626 |
+
.brz-ed .nc-glyph-move-down-right:before{content:"\ef5b"}
|
8627 |
+
.brz-ed .nc-glyph-move-down:before{content:"\ef5c"}
|
8628 |
+
.brz-ed .nc-glyph-move-left:before{content:"\ef5d"}
|
8629 |
+
.brz-ed .nc-glyph-move-right:before{content:"\ef5e"}
|
8630 |
+
.brz-ed .nc-glyph-move-up-2:before{content:"\ef5f"}
|
8631 |
+
.brz-ed .nc-glyph-move-up-left:before{content:"\ef60"}
|
8632 |
+
.brz-ed .nc-glyph-move-up:before{content:"\ef61"}
|
8633 |
+
.brz-ed .nc-glyph-movie-61:before{content:"\ef62"}
|
8634 |
+
.brz-ed .nc-glyph-movie-62:before{content:"\ef63"}
|
8635 |
+
.brz-ed .nc-glyph-muffin:before{content:"\ef64"}
|
8636 |
+
.brz-ed .nc-glyph-mug:before{content:"\ef65"}
|
8637 |
+
.brz-ed .nc-glyph-multiple-11:before{content:"\ef66"}
|
8638 |
+
.brz-ed .nc-glyph-multiple-19:before{content:"\ef67"}
|
8639 |
+
.brz-ed .nc-glyph-multiple:before{content:"\ef68"}
|
8640 |
+
.brz-ed .nc-glyph-mushroom:before{content:"\ef69"}
|
8641 |
+
.brz-ed .nc-glyph-music-2:before{content:"\ef6a"}
|
8642 |
+
.brz-ed .nc-glyph-music-album:before{content:"\ef6b"}
|
8643 |
+
.brz-ed .nc-glyph-music-cloud:before{content:"\ef6c"}
|
8644 |
+
.brz-ed .nc-glyph-music:before{content:"\ef6d"}
|
8645 |
+
.brz-ed .nc-glyph-navigation:before{content:"\ef6e"}
|
8646 |
+
.brz-ed .nc-glyph-needle:before{content:"\ef6f"}
|
8647 |
+
.brz-ed .nc-glyph-nerd-22:before{content:"\ef70"}
|
8648 |
+
.brz-ed .nc-glyph-nerd-23:before{content:"\ef71"}
|
8649 |
+
.brz-ed .nc-glyph-net:before{content:"\ef72"}
|
8650 |
+
.brz-ed .nc-glyph-network:before{content:"\ef73"}
|
8651 |
+
.brz-ed .nc-glyph-new:before{content:"\ef74"}
|
8652 |
+
.brz-ed .nc-glyph-newsletter-dev:before{content:"\ef75"}
|
8653 |
+
.brz-ed .nc-glyph-newsletter:before{content:"\ef76"}
|
8654 |
+
.brz-ed .nc-glyph-night:before{content:"\ef77"}
|
8655 |
+
.brz-ed .nc-glyph-ninja:before{content:"\ef78"}
|
8656 |
+
.brz-ed .nc-glyph-no-access:before{content:"\ef79"}
|
8657 |
+
.brz-ed .nc-glyph-no-words:before{content:"\ef7a"}
|
8658 |
+
.brz-ed .nc-glyph-node:before{content:"\ef7b"}
|
8659 |
+
.brz-ed .nc-glyph-note-03:before{content:"\ef7c"}
|
8660 |
+
.brz-ed .nc-glyph-note-04:before{content:"\ef7d"}
|
8661 |
+
.brz-ed .nc-glyph-note-code:before{content:"\ef7e"}
|
8662 |
+
.brz-ed .nc-glyph-notebook-2:before{content:"\ef7f"}
|
8663 |
+
.brz-ed .nc-glyph-notebook:before{content:"\ef80"}
|
8664 |
+
.brz-ed .nc-glyph-notepad:before{content:"\ef81"}
|
8665 |
+
.brz-ed .nc-glyph-notes:before{content:"\ef82"}
|
8666 |
+
.brz-ed .nc-glyph-notification-69:before{content:"\ef83"}
|
8667 |
+
.brz-ed .nc-glyph-notification-70:before{content:"\ef84"}
|
8668 |
+
.brz-ed .nc-glyph-nurse:before{content:"\ef85"}
|
8669 |
+
.brz-ed .nc-glyph-nutrition:before{content:"\ef86"}
|
8670 |
+
.brz-ed .nc-glyph-ny:before{content:"\ef87"}
|
8671 |
+
.brz-ed .nc-glyph-octopus:before{content:"\ef88"}
|
8672 |
+
.brz-ed .nc-glyph-oil:before{content:"\ef89"}
|
8673 |
+
.brz-ed .nc-glyph-onenote:before{content:"\ef8a"}
|
8674 |
+
.brz-ed .nc-glyph-onion:before{content:"\ef8b"}
|
8675 |
+
.brz-ed .nc-glyph-open-in-browser:before{content:"\ef8c"}
|
8676 |
+
.brz-ed .nc-glyph-opening-times:before{content:"\ef8d"}
|
8677 |
+
.brz-ed .nc-glyph-orange:before{content:"\ef8e"}
|
8678 |
+
.brz-ed .nc-glyph-organic-2:before{content:"\ef8f"}
|
8679 |
+
.brz-ed .nc-glyph-organic:before{content:"\ef90"}
|
8680 |
+
.brz-ed .nc-glyph-oven:before{content:"\ef91"}
|
8681 |
+
.brz-ed .nc-glyph-owl:before{content:"\ef93"}
|
8682 |
+
.brz-ed .nc-glyph-p-add:before{content:"\ef92"}
|
8683 |
+
.brz-ed .nc-glyph-p-check:before{content:"\ef94"}
|
8684 |
+
.brz-ed .nc-glyph-p-edit:before{content:"\ef95"}
|
8685 |
+
.brz-ed .nc-glyph-p-heart:before{content:"\ef96"}
|
8686 |
+
.brz-ed .nc-glyph-p-location:before{content:"\ef97"}
|
8687 |
+
.brz-ed .nc-glyph-p-remove:before{content:"\ef98"}
|
8688 |
+
.brz-ed .nc-glyph-p-search:before{content:"\ef99"}
|
8689 |
+
.brz-ed .nc-glyph-p-settings:before{content:"\ef9a"}
|
8690 |
+
.brz-ed .nc-glyph-p-share:before{content:"\ef9b"}
|
8691 |
+
.brz-ed .nc-glyph-p-sync:before{content:"\ef9c"}
|
8692 |
+
.brz-ed .nc-glyph-p-system-update:before{content:"\ef9d"}
|
8693 |
+
.brz-ed .nc-glyph-p-time:before{content:"\ef9e"}
|
8694 |
+
.brz-ed .nc-glyph-paint-16:before{content:"\ef9f"}
|
8695 |
+
.brz-ed .nc-glyph-paint-37:before{content:"\efa0"}
|
8696 |
+
.brz-ed .nc-glyph-paint-38:before{content:"\efa1"}
|
8697 |
+
.brz-ed .nc-glyph-paint-brush:before{content:"\efa2"}
|
8698 |
+
.brz-ed .nc-glyph-paint-bucket-39:before{content:"\efa3"}
|
8699 |
+
.brz-ed .nc-glyph-paint-bucket-40:before{content:"\efa4"}
|
8700 |
+
.brz-ed .nc-glyph-pajamas:before{content:"\efa5"}
|
8701 |
+
.brz-ed .nc-glyph-palette:before{content:"\efa6"}
|
8702 |
+
.brz-ed .nc-glyph-pan:before{content:"\efa7"}
|
8703 |
+
.brz-ed .nc-glyph-pancake:before{content:"\efa8"}
|
8704 |
+
.brz-ed .nc-glyph-panda:before{content:"\efa9"}
|
8705 |
+
.brz-ed .nc-glyph-panel:before{content:"\efaa"}
|
8706 |
+
.brz-ed .nc-glyph-pantone:before{content:"\efab"}
|
8707 |
+
.brz-ed .nc-glyph-paper-2:before{content:"\efac"}
|
8708 |
+
.brz-ed .nc-glyph-paper-design:before{content:"\efad"}
|
8709 |
+
.brz-ed .nc-glyph-paper-dev:before{content:"\efae"}
|
8710 |
+
.brz-ed .nc-glyph-paper-diploma:before{content:"\efaf"}
|
8711 |
+
.brz-ed .nc-glyph-paper:before{content:"\efb0"}
|
8712 |
+
.brz-ed .nc-glyph-paragraph:before{content:"\efb1"}
|
8713 |
+
.brz-ed .nc-glyph-parent:before{content:"\efb2"}
|
8714 |
+
.brz-ed .nc-glyph-paris-tower:before{content:"\efb3"}
|
8715 |
+
.brz-ed .nc-glyph-parking-sensors:before{content:"\efb4"}
|
8716 |
+
.brz-ed .nc-glyph-parking:before{content:"\efb5"}
|
8717 |
+
.brz-ed .nc-glyph-parrot:before{content:"\efb6"}
|
8718 |
+
.brz-ed .nc-glyph-passport:before{content:"\efb7"}
|
8719 |
+
.brz-ed .nc-glyph-pasta:before{content:"\efb8"}
|
8720 |
+
.brz-ed .nc-glyph-patch-19:before{content:"\efb9"}
|
8721 |
+
.brz-ed .nc-glyph-patch-34:before{content:"\efba"}
|
8722 |
+
.brz-ed .nc-glyph-patch:before{content:"\efbb"}
|
8723 |
+
.brz-ed .nc-glyph-path-exclude:before{content:"\efbc"}
|
8724 |
+
.brz-ed .nc-glyph-path-intersect:before{content:"\efbd"}
|
8725 |
+
.brz-ed .nc-glyph-path-minus:before{content:"\efbe"}
|
8726 |
+
.brz-ed .nc-glyph-path-unite:before{content:"\efbf"}
|
8727 |
+
.brz-ed .nc-glyph-paw:before{content:"\efc0"}
|
8728 |
+
.brz-ed .nc-glyph-payment:before{content:"\efc1"}
|
8729 |
+
.brz-ed .nc-glyph-pci-card:before{content:"\efc2"}
|
8730 |
+
.brz-ed .nc-glyph-peanut:before{content:"\efc3"}
|
8731 |
+
.brz-ed .nc-glyph-pear:before{content:"\efc4"}
|
8732 |
+
.brz-ed .nc-glyph-pen-01:before{content:"\efc5"}
|
8733 |
+
.brz-ed .nc-glyph-pen-23:before{content:"\efc6"}
|
8734 |
+
.brz-ed .nc-glyph-pen-tool:before{content:"\efc7"}
|
8735 |
+
.brz-ed .nc-glyph-pencil-47:before{content:"\efc8"}
|
8736 |
+
.brz-ed .nc-glyph-pencil:before{content:"\efc9"}
|
8737 |
+
.brz-ed .nc-glyph-penguin:before{content:"\efca"}
|
8738 |
+
.brz-ed .nc-glyph-pepper:before{content:"\efcb"}
|
8739 |
+
.brz-ed .nc-glyph-percentage-38:before{content:"\efcc"}
|
8740 |
+
.brz-ed .nc-glyph-percentage-39:before{content:"\efcd"}
|
8741 |
+
.brz-ed .nc-glyph-phone-2:before{content:"\efce"}
|
8742 |
+
.brz-ed .nc-glyph-phone-3:before{content:"\efcf"}
|
8743 |
+
.brz-ed .nc-glyph-phone-call-end:before{content:"\efd0"}
|
8744 |
+
.brz-ed .nc-glyph-phone-call:before{content:"\efd1"}
|
8745 |
+
.brz-ed .nc-glyph-phone:before{content:"\efd2"}
|
8746 |
+
.brz-ed .nc-glyph-photo-editor:before{content:"\efd3"}
|
8747 |
+
.brz-ed .nc-glyph-piano:before{content:"\efd4"}
|
8748 |
+
.brz-ed .nc-glyph-pickaxe:before{content:"\efd5"}
|
8749 |
+
.brz-ed .nc-glyph-pickle:before{content:"\efd6"}
|
8750 |
+
.brz-ed .nc-glyph-picnic-basket:before{content:"\efd7"}
|
8751 |
+
.brz-ed .nc-glyph-picture:before{content:"\efd8"}
|
8752 |
+
.brz-ed .nc-glyph-pig-2:before{content:"\efd9"}
|
8753 |
+
.brz-ed .nc-glyph-pig:before{content:"\efda"}
|
8754 |
+
.brz-ed .nc-glyph-pill-42:before{content:"\efdb"}
|
8755 |
+
.brz-ed .nc-glyph-pill-43:before{content:"\efdc"}
|
8756 |
+
.brz-ed .nc-glyph-pill-container-44:before{content:"\efdd"}
|
8757 |
+
.brz-ed .nc-glyph-pill-container-47:before{content:"\efde"}
|
8758 |
+
.brz-ed .nc-glyph-pin-2:before{content:"\efdf"}
|
8759 |
+
.brz-ed .nc-glyph-pin-3:before{content:"\efe0"}
|
8760 |
+
.brz-ed .nc-glyph-pin-4:before{content:"\efe1"}
|
8761 |
+
.brz-ed .nc-glyph-pin-add-2:before{content:"\efe2"}
|
8762 |
+
.brz-ed .nc-glyph-pin-add:before{content:"\efe3"}
|
8763 |
+
.brz-ed .nc-glyph-pin-check:before{content:"\efe4"}
|
8764 |
+
.brz-ed .nc-glyph-pin-copy:before{content:"\efe5"}
|
8765 |
+
.brz-ed .nc-glyph-pin-delete:before{content:"\efe6"}
|
8766 |
+
.brz-ed .nc-glyph-pin-edit:before{content:"\efe7"}
|
8767 |
+
.brz-ed .nc-glyph-pin-heart:before{content:"\efe8"}
|
8768 |
+
.brz-ed .nc-glyph-pin-remove-2:before{content:"\efe9"}
|
8769 |
+
.brz-ed .nc-glyph-pin-remove:before{content:"\efea"}
|
8770 |
+
.brz-ed .nc-glyph-pin-search:before{content:"\efeb"}
|
8771 |
+
.brz-ed .nc-glyph-pin-security:before{content:"\efec"}
|
8772 |
+
.brz-ed .nc-glyph-pin-settings:before{content:"\efed"}
|
8773 |
+
.brz-ed .nc-glyph-pin-share:before{content:"\efee"}
|
8774 |
+
.brz-ed .nc-glyph-pin-star:before{content:"\efef"}
|
8775 |
+
.brz-ed .nc-glyph-pin-sync:before{content:"\eff0"}
|
8776 |
+
.brz-ed .nc-glyph-pin-time:before{content:"\eff1"}
|
8777 |
+
.brz-ed .nc-glyph-pin-user:before{content:"\eff2"}
|
8778 |
+
.brz-ed .nc-glyph-pin:before{content:"\eff3"}
|
8779 |
+
.brz-ed .nc-glyph-pinch:before{content:"\eff4"}
|
8780 |
+
.brz-ed .nc-glyph-pineapple:before{content:"\eff5"}
|
8781 |
+
.brz-ed .nc-glyph-ping-pong:before{content:"\eff6"}
|
8782 |
+
.brz-ed .nc-glyph-pins:before{content:"\eff7"}
|
8783 |
+
.brz-ed .nc-glyph-pipe:before{content:"\eff8"}
|
8784 |
+
.brz-ed .nc-glyph-pirate:before{content:"\eff9"}
|
8785 |
+
.brz-ed .nc-glyph-pizza-slice:before{content:"\effa"}
|
8786 |
+
.brz-ed .nc-glyph-pizza:before{content:"\effb"}
|
8787 |
+
.brz-ed .nc-glyph-plane-17:before{content:"\effc"}
|
8788 |
+
.brz-ed .nc-glyph-plane-18:before{content:"\effd"}
|
8789 |
+
.brz-ed .nc-glyph-planet:before{content:"\effe"}
|
8790 |
+
.brz-ed .nc-glyph-plant-ground:before{content:"\efff"}
|
8791 |
+
.brz-ed .nc-glyph-plant-vase:before{content:"\f000"}
|
8792 |
+
.brz-ed .nc-glyph-plate:before{content:"\f001"}
|
8793 |
+
.brz-ed .nc-glyph-play-68:before{content:"\f002"}
|
8794 |
+
.brz-ed .nc-glyph-play-69:before{content:"\f003"}
|
8795 |
+
.brz-ed .nc-glyph-play:before{content:"\f004"}
|
8796 |
+
.brz-ed .nc-glyph-player-19:before{content:"\f005"}
|
8797 |
+
.brz-ed .nc-glyph-player-48:before{content:"\f006"}
|
8798 |
+
.brz-ed .nc-glyph-player:before{content:"\f007"}
|
8799 |
+
.brz-ed .nc-glyph-playlist:before{content:"\f008"}
|
8800 |
+
.brz-ed .nc-glyph-plug:before{content:"\f009"}
|
8801 |
+
.brz-ed .nc-glyph-podium-trophy:before{content:"\f00a"}
|
8802 |
+
.brz-ed .nc-glyph-podium:before{content:"\f00b"}
|
8803 |
+
.brz-ed .nc-glyph-point-a:before{content:"\f00c"}
|
8804 |
+
.brz-ed .nc-glyph-point-b:before{content:"\f00d"}
|
8805 |
+
.brz-ed .nc-glyph-polaroid-add:before{content:"\f00e"}
|
8806 |
+
.brz-ed .nc-glyph-polaroid-delete:before{content:"\f00f"}
|
8807 |
+
.brz-ed .nc-glyph-polaroid-multiple:before{content:"\f010"}
|
8808 |
+
.brz-ed .nc-glyph-polaroid-user:before{content:"\f011"}
|
8809 |
+
.brz-ed .nc-glyph-polaroid:before{content:"\f012"}
|
8810 |
+
.brz-ed .nc-glyph-police:before{content:"\f013"}
|
8811 |
+
.brz-ed .nc-glyph-pool:before{content:"\f014"}
|
8812 |
+
.brz-ed .nc-glyph-poop:before{content:"\f015"}
|
8813 |
+
.brz-ed .nc-glyph-popcorn:before{content:"\f016"}
|
8814 |
+
.brz-ed .nc-glyph-pos:before{content:"\f017"}
|
8815 |
+
.brz-ed .nc-glyph-position-marker:before{content:"\f018"}
|
8816 |
+
.brz-ed .nc-glyph-position-pin:before{content:"\f019"}
|
8817 |
+
.brz-ed .nc-glyph-position-user:before{content:"\f01a"}
|
8818 |
+
.brz-ed .nc-glyph-position:before{content:"\f01b"}
|
8819 |
+
.brz-ed .nc-glyph-pot:before{content:"\f01c"}
|
8820 |
+
.brz-ed .nc-glyph-potato:before{content:"\f01d"}
|
8821 |
+
.brz-ed .nc-glyph-power-level:before{content:"\f01e"}
|
8822 |
+
.brz-ed .nc-glyph-preferences-circle-rotate:before{content:"\f01f"}
|
8823 |
+
.brz-ed .nc-glyph-preferences-circle:before{content:"\f020"}
|
8824 |
+
.brz-ed .nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}
|
8825 |
+
.brz-ed .nc-glyph-preferences-container-circle:before{content:"\f022"}
|
8826 |
+
.brz-ed .nc-glyph-preferences-container-rotate:before{content:"\f023"}
|
8827 |
+
.brz-ed .nc-glyph-preferences-container:before{content:"\f024"}
|
8828 |
+
.brz-ed .nc-glyph-preferences-rotate:before{content:"\f025"}
|
8829 |
+
.brz-ed .nc-glyph-preferences:before{content:"\f026"}
|
8830 |
+
.brz-ed .nc-glyph-print:before{content:"\f027"}
|
8831 |
+
.brz-ed .nc-glyph-printer:before{content:"\f028"}
|
8832 |
+
.brz-ed .nc-glyph-priority-high:before{content:"\f029"}
|
8833 |
+
.brz-ed .nc-glyph-priority-low:before{content:"\f02a"}
|
8834 |
+
.brz-ed .nc-glyph-progress:before{content:"\f02b"}
|
8835 |
+
.brz-ed .nc-glyph-prosciutto:before{content:"\f02c"}
|
8836 |
+
.brz-ed .nc-glyph-prototype:before{content:"\f02d"}
|
8837 |
+
.brz-ed .nc-glyph-pulse-chart:before{content:"\f02e"}
|
8838 |
+
.brz-ed .nc-glyph-pulse-phone:before{content:"\f02f"}
|
8839 |
+
.brz-ed .nc-glyph-pulse-sleep:before{content:"\f030"}
|
8840 |
+
.brz-ed .nc-glyph-pulse-watch:before{content:"\f031"}
|
8841 |
+
.brz-ed .nc-glyph-pulse:before{content:"\f032"}
|
8842 |
+
.brz-ed .nc-glyph-pumpkin:before{content:"\f033"}
|
8843 |
+
.brz-ed .nc-glyph-push-next:before{content:"\f034"}
|
8844 |
+
.brz-ed .nc-glyph-push-previous:before{content:"\f035"}
|
8845 |
+
.brz-ed .nc-glyph-puzzle-09:before{content:"\f036"}
|
8846 |
+
.brz-ed .nc-glyph-puzzle-10:before{content:"\f037"}
|
8847 |
+
.brz-ed .nc-glyph-puzzled:before{content:"\f038"}
|
8848 |
+
.brz-ed .nc-glyph-pyramid:before{content:"\f039"}
|
8849 |
+
.brz-ed .nc-glyph-question:before{content:"\f03a"}
|
8850 |
+
.brz-ed .nc-glyph-quite-happy:before{content:"\f03b"}
|
8851 |
+
.brz-ed .nc-glyph-quote:before{content:"\f03c"}
|
8852 |
+
.brz-ed .nc-glyph-rabbit:before{content:"\f03d"}
|
8853 |
+
.brz-ed .nc-glyph-rackets:before{content:"\f03e"}
|
8854 |
+
.brz-ed .nc-glyph-radar:before{content:"\f03f"}
|
8855 |
+
.brz-ed .nc-glyph-radiation:before{content:"\f040"}
|
8856 |
+
.brz-ed .nc-glyph-radio:before{content:"\f041"}
|
8857 |
+
.brz-ed .nc-glyph-rain-hail:before{content:"\f042"}
|
8858 |
+
.brz-ed .nc-glyph-rain:before{content:"\f043"}
|
8859 |
+
.brz-ed .nc-glyph-rainbow:before{content:"\f044"}
|
8860 |
+
.brz-ed .nc-glyph-ram:before{content:"\f045"}
|
8861 |
+
.brz-ed .nc-glyph-rat:before{content:"\f046"}
|
8862 |
+
.brz-ed .nc-glyph-receipt-list-42:before{content:"\f047"}
|
8863 |
+
.brz-ed .nc-glyph-receipt-list-43:before{content:"\f048"}
|
8864 |
+
.brz-ed .nc-glyph-receipt:before{content:"\f049"}
|
8865 |
+
.brz-ed .nc-glyph-recipe-book-46:before{content:"\f04a"}
|
8866 |
+
.brz-ed .nc-glyph-recipe-book-47:before{content:"\f04b"}
|
8867 |
+
.brz-ed .nc-glyph-recipe-create:before{content:"\f04c"}
|
8868 |
+
.brz-ed .nc-glyph-recipe:before{content:"\f04d"}
|
8869 |
+
.brz-ed .nc-glyph-recycling:before{content:"\f04e"}
|
8870 |
+
.brz-ed .nc-glyph-redo-10:before{content:"\f04f"}
|
8871 |
+
.brz-ed .nc-glyph-redo-26:before{content:"\f050"}
|
8872 |
+
.brz-ed .nc-glyph-redo-79:before{content:"\f051"}
|
8873 |
+
.brz-ed .nc-glyph-redo-81:before{content:"\f052"}
|
8874 |
+
.brz-ed .nc-glyph-refresh-01:before{content:"\f053"}
|
8875 |
+
.brz-ed .nc-glyph-refresh-02:before{content:"\f054"}
|
8876 |
+
.brz-ed .nc-glyph-refresh-68:before{content:"\f055"}
|
8877 |
+
.brz-ed .nc-glyph-refresh-69:before{content:"\f056"}
|
8878 |
+
.brz-ed .nc-glyph-refresh:before{content:"\f057"}
|
8879 |
+
.brz-ed .nc-glyph-reload:before{content:"\f058"}
|
8880 |
+
.brz-ed .nc-glyph-remix:before{content:"\f059"}
|
8881 |
+
.brz-ed .nc-glyph-remote:before{content:"\f05a"}
|
8882 |
+
.brz-ed .nc-glyph-remove:before{content:"\f05b"}
|
8883 |
+
.brz-ed .nc-glyph-replace-folder:before{content:"\f05c"}
|
8884 |
+
.brz-ed .nc-glyph-replace:before{content:"\f05d"}
|
8885 |
+
.brz-ed .nc-glyph-replay:before{content:"\f05e"}
|
8886 |
+
.brz-ed .nc-glyph-reply-all:before{content:"\f05f"}
|
8887 |
+
.brz-ed .nc-glyph-reply:before{content:"\f060"}
|
8888 |
+
.brz-ed .nc-glyph-reservation:before{content:"\f061"}
|
8889 |
+
.brz-ed .nc-glyph-resize-h:before{content:"\f062"}
|
8890 |
+
.brz-ed .nc-glyph-resize-v:before{content:"\f063"}
|
8891 |
+
.brz-ed .nc-glyph-restaurant-menu:before{content:"\f064"}
|
8892 |
+
.brz-ed .nc-glyph-restore:before{content:"\f065"}
|
8893 |
+
.brz-ed .nc-glyph-rice:before{content:"\f066"}
|
8894 |
+
.brz-ed .nc-glyph-rim:before{content:"\f067"}
|
8895 |
+
.brz-ed .nc-glyph-ring:before{content:"\f068"}
|
8896 |
+
.brz-ed .nc-glyph-rio:before{content:"\f069"}
|
8897 |
+
.brz-ed .nc-glyph-ripples:before{content:"\f06a"}
|
8898 |
+
.brz-ed .nc-glyph-road-2:before{content:"\f06b"}
|
8899 |
+
.brz-ed .nc-glyph-road-sign-left:before{content:"\f06c"}
|
8900 |
+
.brz-ed .nc-glyph-road-sign-right:before{content:"\f06d"}
|
8901 |
+
.brz-ed .nc-glyph-road:before{content:"\f06e"}
|
8902 |
+
.brz-ed .nc-glyph-roast-chicken:before{content:"\f06f"}
|
8903 |
+
.brz-ed .nc-glyph-robot:before{content:"\f070"}
|
8904 |
+
.brz-ed .nc-glyph-rock:before{content:"\f071"}
|
8905 |
+
.brz-ed .nc-glyph-roll:before{content:"\f072"}
|
8906 |
+
.brz-ed .nc-glyph-rolling-pin:before{content:"\f073"}
|
8907 |
+
.brz-ed .nc-glyph-rome:before{content:"\f074"}
|
8908 |
+
.brz-ed .nc-glyph-rope:before{content:"\f075"}
|
8909 |
+
.brz-ed .nc-glyph-rotate-22:before{content:"\f076"}
|
8910 |
+
.brz-ed .nc-glyph-rotate-23:before{content:"\f077"}
|
8911 |
+
.brz-ed .nc-glyph-rotate-left-2:before{content:"\f078"}
|
8912 |
+
.brz-ed .nc-glyph-rotate-left:before{content:"\f079"}
|
8913 |
+
.brz-ed .nc-glyph-rotate-lock:before{content:"\f07a"}
|
8914 |
+
.brz-ed .nc-glyph-rotate-right-2:before{content:"\f07b"}
|
8915 |
+
.brz-ed .nc-glyph-rotate-right:before{content:"\f07c"}
|
8916 |
+
.brz-ed .nc-glyph-rotate:before{content:"\f07d"}
|
8917 |
+
.brz-ed .nc-glyph-round-dollar:before{content:"\f07e"}
|
8918 |
+
.brz-ed .nc-glyph-round-down:before{content:"\f07f"}
|
8919 |
+
.brz-ed .nc-glyph-round-euro:before{content:"\f080"}
|
8920 |
+
.brz-ed .nc-glyph-round-left-down:before{content:"\f081"}
|
8921 |
+
.brz-ed .nc-glyph-round-left:before{content:"\f082"}
|
8922 |
+
.brz-ed .nc-glyph-round-pound:before{content:"\f083"}
|
8923 |
+
.brz-ed .nc-glyph-round-right-down:before{content:"\f084"}
|
8924 |
+
.brz-ed .nc-glyph-round-right:before{content:"\f085"}
|
8925 |
+
.brz-ed .nc-glyph-round-up-left:before{content:"\f086"}
|
8926 |
+
.brz-ed .nc-glyph-round-up-right:before{content:"\f087"}
|
8927 |
+
.brz-ed .nc-glyph-round-up:before{content:"\f088"}
|
8928 |
+
.brz-ed .nc-glyph-round-yen:before{content:"\f089"}
|
8929 |
+
.brz-ed .nc-glyph-route-alert:before{content:"\f08a"}
|
8930 |
+
.brz-ed .nc-glyph-route-close:before{content:"\f08b"}
|
8931 |
+
.brz-ed .nc-glyph-route-open:before{content:"\f08c"}
|
8932 |
+
.brz-ed .nc-glyph-rowing:before{content:"\f08d"}
|
8933 |
+
.brz-ed .nc-glyph-rugby:before{content:"\f08e"}
|
8934 |
+
.brz-ed .nc-glyph-ruler-pencil:before{content:"\f08f"}
|
8935 |
+
.brz-ed .nc-glyph-sad:before{content:"\f090"}
|
8936 |
+
.brz-ed .nc-glyph-safe:before{content:"\f091"}
|
8937 |
+
.brz-ed .nc-glyph-salad:before{content:"\f092"}
|
8938 |
+
.brz-ed .nc-glyph-sale:before{content:"\f093"}
|
8939 |
+
.brz-ed .nc-glyph-salt:before{content:"\f094"}
|
8940 |
+
.brz-ed .nc-glyph-santa-hat:before{content:"\f095"}
|
8941 |
+
.brz-ed .nc-glyph-satisfied:before{content:"\f096"}
|
8942 |
+
.brz-ed .nc-glyph-sausage:before{content:"\f097"}
|
8943 |
+
.brz-ed .nc-glyph-save-planet:before{content:"\f098"}
|
8944 |
+
.brz-ed .nc-glyph-scale-2:before{content:"\f099"}
|
8945 |
+
.brz-ed .nc-glyph-scale-3:before{content:"\f09a"}
|
8946 |
+
.brz-ed .nc-glyph-scale-4:before{content:"\f09b"}
|
8947 |
+
.brz-ed .nc-glyph-scale-down:before{content:"\f09c"}
|
8948 |
+
.brz-ed .nc-glyph-scale-horizontal:before{content:"\f09d"}
|
8949 |
+
.brz-ed .nc-glyph-scale-up:before{content:"\f09e"}
|
8950 |
+
.brz-ed .nc-glyph-scale-vertical:before{content:"\f09f"}
|
8951 |
+
.brz-ed .nc-glyph-scale:before{content:"\f0a0"}
|
8952 |
+
.brz-ed .nc-glyph-scan:before{content:"\f0a1"}
|
8953 |
+
.brz-ed .nc-glyph-scarf:before{content:"\f0a2"}
|
8954 |
+
.brz-ed .nc-glyph-school:before{content:"\f0a3"}
|
8955 |
+
.brz-ed .nc-glyph-scissors-dashed:before{content:"\f0a4"}
|
8956 |
+
.brz-ed .nc-glyph-scissors:before{content:"\f0a5"}
|
8957 |
+
.brz-ed .nc-glyph-scotch:before{content:"\f0a6"}
|
8958 |
+
.brz-ed .nc-glyph-scroll-horitontal:before{content:"\f0a7"}
|
8959 |
+
.brz-ed .nc-glyph-scroll-vertical:before{content:"\f0a8"}
|
8960 |
+
.brz-ed .nc-glyph-sd:before{content:"\f0a9"}
|
8961 |
+
.brz-ed .nc-glyph-sea-mask:before{content:"\f0aa"}
|
8962 |
+
.brz-ed .nc-glyph-search-2:before{content:"\f0ab"}
|
8963 |
+
.brz-ed .nc-glyph-search-3:before{content:"\f0ac"}
|
8964 |
+
.brz-ed .nc-glyph-search:before{content:"\f0ad"}
|
8965 |
+
.brz-ed .nc-glyph-seat:before{content:"\f0ae"}
|
8966 |
+
.brz-ed .nc-glyph-seatbelt:before{content:"\f0af"}
|
8967 |
+
.brz-ed .nc-glyph-security:before{content:"\f0b0"}
|
8968 |
+
.brz-ed .nc-glyph-segmentation:before{content:"\f0b1"}
|
8969 |
+
.brz-ed .nc-glyph-select-83:before{content:"\f0b2"}
|
8970 |
+
.brz-ed .nc-glyph-select-84:before{content:"\f0b3"}
|
8971 |
+
.brz-ed .nc-glyph-select:before{content:"\f0b4"}
|
8972 |
+
.brz-ed .nc-glyph-selection:before{content:"\f0b5"}
|
8973 |
+
.brz-ed .nc-glyph-selfie:before{content:"\f0b6"}
|
8974 |
+
.brz-ed .nc-glyph-send-2:before{content:"\f0b7"}
|
8975 |
+
.brz-ed .nc-glyph-send:before{content:"\f0b8"}
|
8976 |
+
.brz-ed .nc-glyph-sensor:before{content:"\f0b9"}
|
8977 |
+
.brz-ed .nc-glyph-separate-round:before{content:"\f0ba"}
|
8978 |
+
.brz-ed .nc-glyph-separate:before{content:"\f0bb"}
|
8979 |
+
.brz-ed .nc-glyph-settings-46:before{content:"\f0bc"}
|
8980 |
+
.brz-ed .nc-glyph-settings-99:before{content:"\f0bd"}
|
8981 |
+
.brz-ed .nc-glyph-settings-gear-63:before{content:"\f0be"}
|
8982 |
+
.brz-ed .nc-glyph-settings-gear-64:before{content:"\f0bf"}
|
8983 |
+
.brz-ed .nc-glyph-settings-gear-65:before{content:"\f0c0"}
|
8984 |
+
.brz-ed .nc-glyph-settings-tool-66:before{content:"\f0c1"}
|
8985 |
+
.brz-ed .nc-glyph-settings-tool-67:before{content:"\f0c2"}
|
8986 |
+
.brz-ed .nc-glyph-settings:before{content:"\f0c3"}
|
8987 |
+
.brz-ed .nc-glyph-sf-bridge:before{content:"\f0c4"}
|
8988 |
+
.brz-ed .nc-glyph-shake:before{content:"\f0c5"}
|
8989 |
+
.brz-ed .nc-glyph-shaker:before{content:"\f0c6"}
|
8990 |
+
.brz-ed .nc-glyph-shape-adjust:before{content:"\f0c7"}
|
8991 |
+
.brz-ed .nc-glyph-shape-arrow:before{content:"\f0c8"}
|
8992 |
+
.brz-ed .nc-glyph-shape-circle:before{content:"\f0c9"}
|
8993 |
+
.brz-ed .nc-glyph-shape-custom:before{content:"\f0ca"}
|
8994 |
+
.brz-ed .nc-glyph-shape-line:before{content:"\f0cb"}
|
8995 |
+
.brz-ed .nc-glyph-shape-oval:before{content:"\f0cc"}
|
8996 |
+
.brz-ed .nc-glyph-shape-polygon-2:before{content:"\f0cd"}
|
8997 |
+
.brz-ed .nc-glyph-shape-polygon:before{content:"\f0ce"}
|
8998 |
+
.brz-ed .nc-glyph-shape-rectangle:before{content:"\f0cf"}
|
8999 |
+
.brz-ed .nc-glyph-shape-square:before{content:"\f0d0"}
|
9000 |
+
.brz-ed .nc-glyph-shape-star:before{content:"\f0d1"}
|
9001 |
+
.brz-ed .nc-glyph-shape-triangle-2:before{content:"\f0d2"}
|
9002 |
+
.brz-ed .nc-glyph-shape-triangle:before{content:"\f0d3"}
|
9003 |
+
.brz-ed .nc-glyph-shapes:before{content:"\f0d4"}
|
9004 |
+
.brz-ed .nc-glyph-share-2:before{content:"\f0d5"}
|
9005 |
+
.brz-ed .nc-glyph-share-66:before{content:"\f0d6"}
|
9006 |
+
.brz-ed .nc-glyph-share-91:before{content:"\f0d7"}
|
9007 |
+
.brz-ed .nc-glyph-share-92:before{content:"\f0d8"}
|
9008 |
+
.brz-ed .nc-glyph-share-bold:before{content:"\f0d9"}
|
9009 |
+
.brz-ed .nc-glyph-share-left:before{content:"\f0da"}
|
9010 |
+
.brz-ed .nc-glyph-share-right:before{content:"\f0db"}
|
9011 |
+
.brz-ed .nc-glyph-share:before{content:"\f0dc"}
|
9012 |
+
.brz-ed .nc-glyph-shared:before{content:"\f0dd"}
|
9013 |
+
.brz-ed .nc-glyph-shark-2:before{content:"\f0de"}
|
9014 |
+
.brz-ed .nc-glyph-shark:before{content:"\f0df"}
|
9015 |
+
.brz-ed .nc-glyph-sharpener:before{content:"\f0e0"}
|
9016 |
+
.brz-ed .nc-glyph-sheep:before{content:"\f0e1"}
|
9017 |
+
.brz-ed .nc-glyph-shirt-business:before{content:"\f0e2"}
|
9018 |
+
.brz-ed .nc-glyph-shirt-buttons:before{content:"\f0e3"}
|
9019 |
+
.brz-ed .nc-glyph-shirt-neck:before{content:"\f0e4"}
|
9020 |
+
.brz-ed .nc-glyph-shirt:before{content:"\f0e5"}
|
9021 |
+
.brz-ed .nc-glyph-shoe-man:before{content:"\f0e6"}
|
9022 |
+
.brz-ed .nc-glyph-shoe-run:before{content:"\f0e7"}
|
9023 |
+
.brz-ed .nc-glyph-shoe-sport:before{content:"\f0e8"}
|
9024 |
+
.brz-ed .nc-glyph-shoe-woman:before{content:"\f0e9"}
|
9025 |
+
.brz-ed .nc-glyph-shop-location:before{content:"\f0ea"}
|
9026 |
+
.brz-ed .nc-glyph-shop:before{content:"\f0eb"}
|
9027 |
+
.brz-ed .nc-glyph-shovel:before{content:"\f0ec"}
|
9028 |
+
.brz-ed .nc-glyph-shower:before{content:"\f0ed"}
|
9029 |
+
.brz-ed .nc-glyph-shrimp:before{content:"\f0ee"}
|
9030 |
+
.brz-ed .nc-glyph-shuffle-01:before{content:"\f0ef"}
|
9031 |
+
.brz-ed .nc-glyph-shuffle-35:before{content:"\f0f0"}
|
9032 |
+
.brz-ed .nc-glyph-shuffle-97:before{content:"\f0f1"}
|
9033 |
+
.brz-ed .nc-glyph-shuffle-98:before{content:"\f0f2"}
|
9034 |
+
.brz-ed .nc-glyph-shy:before{content:"\f0f3"}
|
9035 |
+
.brz-ed .nc-glyph-sick:before{content:"\f0f4"}
|
9036 |
+
.brz-ed .nc-glyph-sickle:before{content:"\f0f5"}
|
9037 |
+
.brz-ed .nc-glyph-sidebar:before{content:"\f0f6"}
|
9038 |
+
.brz-ed .nc-glyph-sign-board:before{content:"\f0f7"}
|
9039 |
+
.brz-ed .nc-glyph-sign:before{content:"\f0f8"}
|
9040 |
+
.brz-ed .nc-glyph-signal-2:before{content:"\f0f9"}
|
9041 |
+
.brz-ed .nc-glyph-signal:before{content:"\f0fa"}
|
9042 |
+
.brz-ed .nc-glyph-signature:before{content:"\f0fb"}
|
9043 |
+
.brz-ed .nc-glyph-silly:before{content:"\f0fc"}
|
9044 |
+
.brz-ed .nc-glyph-sim-card:before{content:"\f0fd"}
|
9045 |
+
.brz-ed .nc-glyph-simple-add:before{content:"\f0fe"}
|
9046 |
+
.brz-ed .nc-glyph-simple-delete:before{content:"\f0ff"}
|
9047 |
+
.brz-ed .nc-glyph-simple-down:before{content:"\f100"}
|
9048 |
+
.brz-ed .nc-glyph-simple-left:before{content:"\f101"}
|
9049 |
+
.brz-ed .nc-glyph-simple-remove:before{content:"\f102"}
|
9050 |
+
.brz-ed .nc-glyph-simple-right:before{content:"\f103"}
|
9051 |
+
.brz-ed .nc-glyph-simple-up:before{content:"\f104"}
|
9052 |
+
.brz-ed .nc-glyph-single-01:before{content:"\f105"}
|
9053 |
+
.brz-ed .nc-glyph-single-02:before{content:"\f106"}
|
9054 |
+
.brz-ed .nc-glyph-single-03:before{content:"\f107"}
|
9055 |
+
.brz-ed .nc-glyph-single-04:before{content:"\f108"}
|
9056 |
+
.brz-ed .nc-glyph-single-05:before{content:"\f109"}
|
9057 |
+
.brz-ed .nc-glyph-single-body:before{content:"\f10a"}
|
9058 |
+
.brz-ed .nc-glyph-single-content-02:before{content:"\f10b"}
|
9059 |
+
.brz-ed .nc-glyph-single-content-03:before{content:"\f10c"}
|
9060 |
+
.brz-ed .nc-glyph-single-copies:before{content:"\f10d"}
|
9061 |
+
.brz-ed .nc-glyph-single-copy-04:before{content:"\f10e"}
|
9062 |
+
.brz-ed .nc-glyph-single-copy-06:before{content:"\f10f"}
|
9063 |
+
.brz-ed .nc-glyph-single-folded-content:before{content:"\f110"}
|
9064 |
+
.brz-ed .nc-glyph-single-folded:before{content:"\f111"}
|
9065 |
+
.brz-ed .nc-glyph-single-paragraph:before{content:"\f112"}
|
9066 |
+
.brz-ed .nc-glyph-single-position:before{content:"\f113"}
|
9067 |
+
.brz-ed .nc-glyph-single:before{content:"\f114"}
|
9068 |
+
.brz-ed .nc-glyph-sink-wash:before{content:"\f115"}
|
9069 |
+
.brz-ed .nc-glyph-sink:before{content:"\f116"}
|
9070 |
+
.brz-ed .nc-glyph-size-large:before{content:"\f117"}
|
9071 |
+
.brz-ed .nc-glyph-size-medium:before{content:"\f118"}
|
9072 |
+
.brz-ed .nc-glyph-size-small:before{content:"\f119"}
|
9073 |
+
.brz-ed .nc-glyph-size:before{content:"\f11a"}
|
9074 |
+
.brz-ed .nc-glyph-skateboard-2:before{content:"\f11b"}
|
9075 |
+
.brz-ed .nc-glyph-skateboard:before{content:"\f11c"}
|
9076 |
+
.brz-ed .nc-glyph-skew-down:before{content:"\f11d"}
|
9077 |
+
.brz-ed .nc-glyph-skew-left:before{content:"\f11e"}
|
9078 |
+
.brz-ed .nc-glyph-skew-right:before{content:"\f11f"}
|
9079 |
+
.brz-ed .nc-glyph-skew-up:before{content:"\f120"}
|
9080 |
+
.brz-ed .nc-glyph-skirt:before{content:"\f121"}
|
9081 |
+
.brz-ed .nc-glyph-skull-2:before{content:"\f122"}
|
9082 |
+
.brz-ed .nc-glyph-skull:before{content:"\f123"}
|
9083 |
+
.brz-ed .nc-glyph-slacks-12:before{content:"\f124"}
|
9084 |
+
.brz-ed .nc-glyph-slacks-13:before{content:"\f125"}
|
9085 |
+
.brz-ed .nc-glyph-sleep-2:before{content:"\f126"}
|
9086 |
+
.brz-ed .nc-glyph-sleep:before{content:"\f127"}
|
9087 |
+
.brz-ed .nc-glyph-slice:before{content:"\f128"}
|
9088 |
+
.brz-ed .nc-glyph-slide-left:before{content:"\f129"}
|
9089 |
+
.brz-ed .nc-glyph-slide-right:before{content:"\f12a"}
|
9090 |
+
.brz-ed .nc-glyph-slider:before{content:"\f12b"}
|
9091 |
+
.brz-ed .nc-glyph-sloth:before{content:"\f12c"}
|
9092 |
+
.brz-ed .nc-glyph-small-add:before{content:"\f12d"}
|
9093 |
+
.brz-ed .nc-glyph-small-delete:before{content:"\f12e"}
|
9094 |
+
.brz-ed .nc-glyph-small-down:before{content:"\f12f"}
|
9095 |
+
.brz-ed .nc-glyph-small-left:before{content:"\f130"}
|
9096 |
+
.brz-ed .nc-glyph-small-remove:before{content:"\f131"}
|
9097 |
+
.brz-ed .nc-glyph-small-right:before{content:"\f132"}
|
9098 |
+
.brz-ed .nc-glyph-small-triangle-down:before{content:"\f133"}
|
9099 |
+
.brz-ed .nc-glyph-small-triangle-left:before{content:"\f134"}
|
9100 |
+
.brz-ed .nc-glyph-small-triangle-right:before{content:"\f135"}
|
9101 |
+
.brz-ed .nc-glyph-small-triangle-up:before{content:"\f136"}
|
9102 |
+
.brz-ed .nc-glyph-small-up:before{content:"\f137"}
|
9103 |
+
.brz-ed .nc-glyph-smart:before{content:"\f138"}
|
9104 |
+
.brz-ed .nc-glyph-smile:before{content:"\f139"}
|
9105 |
+
.brz-ed .nc-glyph-smoothie:before{content:"\f13a"}
|
9106 |
+
.brz-ed .nc-glyph-snack:before{content:"\f13b"}
|
9107 |
+
.brz-ed .nc-glyph-snake:before{content:"\f13c"}
|
9108 |
+
.brz-ed .nc-glyph-snow-ball:before{content:"\f13d"}
|
9109 |
+
.brz-ed .nc-glyph-snow:before{content:"\f13e"}
|
9110 |
+
.brz-ed .nc-glyph-snowboard:before{content:"\f13f"}
|
9111 |
+
.brz-ed .nc-glyph-snowman-head:before{content:"\f140"}
|
9112 |
+
.brz-ed .nc-glyph-snowman:before{content:"\f141"}
|
9113 |
+
.brz-ed .nc-glyph-soak:before{content:"\f142"}
|
9114 |
+
.brz-ed .nc-glyph-soccer-field:before{content:"\f143"}
|
9115 |
+
.brz-ed .nc-glyph-sock:before{content:"\f144"}
|
9116 |
+
.brz-ed .nc-glyph-socket-europe-1:before{content:"\f145"}
|
9117 |
+
.brz-ed .nc-glyph-socket-europe-2:before{content:"\f146"}
|
9118 |
+
.brz-ed .nc-glyph-socket-uk:before{content:"\f147"}
|
9119 |
+
.brz-ed .nc-glyph-socket:before{content:"\f148"}
|
9120 |
+
.brz-ed .nc-glyph-sofa:before{content:"\f149"}
|
9121 |
+
.brz-ed .nc-glyph-soldier:before{content:"\f14a"}
|
9122 |
+
.brz-ed .nc-glyph-sound-wave:before{content:"\f14b"}
|
9123 |
+
.brz-ed .nc-glyph-soup:before{content:"\f14c"}
|
9124 |
+
.brz-ed .nc-glyph-soy-sauce:before{content:"\f14d"}
|
9125 |
+
.brz-ed .nc-glyph-spa:before{content:"\f14e"}
|
9126 |
+
.brz-ed .nc-glyph-spaceship:before{content:"\f14f"}
|
9127 |
+
.brz-ed .nc-glyph-speaker-01:before{content:"\f150"}
|
9128 |
+
.brz-ed .nc-glyph-speaker-05:before{content:"\f151"}
|
9129 |
+
.brz-ed .nc-glyph-speaker:before{content:"\f152"}
|
9130 |
+
.brz-ed .nc-glyph-speechless:before{content:"\f153"}
|
9131 |
+
.brz-ed .nc-glyph-spider:before{content:"\f154"}
|
9132 |
+
.brz-ed .nc-glyph-spiteful:before{content:"\f155"}
|
9133 |
+
.brz-ed .nc-glyph-split-33:before{content:"\f156"}
|
9134 |
+
.brz-ed .nc-glyph-split-37:before{content:"\f157"}
|
9135 |
+
.brz-ed .nc-glyph-split-horizontal:before{content:"\f158"}
|
9136 |
+
.brz-ed .nc-glyph-split-round:before{content:"\f159"}
|
9137 |
+
.brz-ed .nc-glyph-split-vertical:before{content:"\f15a"}
|
9138 |
+
.brz-ed .nc-glyph-split:before{content:"\f15b"}
|
9139 |
+
.brz-ed .nc-glyph-sport:before{content:"\f15c"}
|
9140 |
+
.brz-ed .nc-glyph-spray-2:before{content:"\f15d"}
|
9141 |
+
.brz-ed .nc-glyph-spray:before{content:"\f15e"}
|
9142 |
+
.brz-ed .nc-glyph-square-add-08:before{content:"\f15f"}
|
9143 |
+
.brz-ed .nc-glyph-square-add-11:before{content:"\f160"}
|
9144 |
+
.brz-ed .nc-glyph-square-corner-down-left:before{content:"\f161"}
|
9145 |
+
.brz-ed .nc-glyph-square-corner-down-right:before{content:"\f162"}
|
9146 |
+
.brz-ed .nc-glyph-square-corner-up-left:before{content:"\f163"}
|
9147 |
+
.brz-ed .nc-glyph-square-corner-up-right:before{content:"\f164"}
|
9148 |
+
.brz-ed .nc-glyph-square-delete-10:before{content:"\f165"}
|
9149 |
+
.brz-ed .nc-glyph-square-delete-13:before{content:"\f166"}
|
9150 |
+
.brz-ed .nc-glyph-square-down-06:before{content:"\f167"}
|
9151 |
+
.brz-ed .nc-glyph-square-down:before{content:"\f168"}
|
9152 |
+
.brz-ed .nc-glyph-square-download:before{content:"\f169"}
|
9153 |
+
.brz-ed .nc-glyph-square-left-04:before{content:"\f16a"}
|
9154 |
+
.brz-ed .nc-glyph-square-left:before{content:"\f16b"}
|
9155 |
+
.brz-ed .nc-glyph-square-marker:before{content:"\f16c"}
|
9156 |
+
.brz-ed .nc-glyph-square-pin:before{content:"\f16d"}
|
9157 |
+
.brz-ed .nc-glyph-square-remove-09:before{content:"\f16e"}
|
9158 |
+
.brz-ed .nc-glyph-square-remove-12:before{content:"\f16f"}
|
9159 |
+
.brz-ed .nc-glyph-square-right-03:before{content:"\f170"}
|
9160 |
+
.brz-ed .nc-glyph-square-right:before{content:"\f171"}
|
9161 |
+
.brz-ed .nc-glyph-square-simple-down:before{content:"\f172"}
|
9162 |
+
.brz-ed .nc-glyph-square-simple-left:before{content:"\f173"}
|
9163 |
+
.brz-ed .nc-glyph-square-simple-right:before{content:"\f174"}
|
9164 |
+
.brz-ed .nc-glyph-square-simple-up:before{content:"\f175"}
|
9165 |
+
.brz-ed .nc-glyph-square-up-05:before{content:"\f176"}
|
9166 |
+
.brz-ed .nc-glyph-square-up:before{content:"\f177"}
|
9167 |
+
.brz-ed .nc-glyph-square-upload:before{content:"\f178"}
|
9168 |
+
.brz-ed .nc-glyph-squares:before{content:"\f179"}
|
9169 |
+
.brz-ed .nc-glyph-stamp:before{content:"\f17a"}
|
9170 |
+
.brz-ed .nc-glyph-standing-man:before{content:"\f17b"}
|
9171 |
+
.brz-ed .nc-glyph-standing-woman:before{content:"\f17c"}
|
9172 |
+
.brz-ed .nc-glyph-star:before{content:"\f17d"}
|
9173 |
+
.brz-ed .nc-glyph-steak-2:before{content:"\f17e"}
|
9174 |
+
.brz-ed .nc-glyph-steak:before{content:"\f17f"}
|
9175 |
+
.brz-ed .nc-glyph-steering-wheel:before{content:"\f180"}
|
9176 |
+
.brz-ed .nc-glyph-steps:before{content:"\f181"}
|
9177 |
+
.brz-ed .nc-glyph-stock-2:before{content:"\f182"}
|
9178 |
+
.brz-ed .nc-glyph-stock:before{content:"\f183"}
|
9179 |
+
.brz-ed .nc-glyph-storage-hanger:before{content:"\f184"}
|
9180 |
+
.brz-ed .nc-glyph-storage:before{content:"\f185"}
|
9181 |
+
.brz-ed .nc-glyph-store:before{content:"\f186"}
|
9182 |
+
.brz-ed .nc-glyph-strategy:before{content:"\f187"}
|
9183 |
+
.brz-ed .nc-glyph-strawberry:before{content:"\f188"}
|
9184 |
+
.brz-ed .nc-glyph-stre-down:before{content:"\f189"}
|
9185 |
+
.brz-ed .nc-glyph-stre-left:before{content:"\f18a"}
|
9186 |
+
.brz-ed .nc-glyph-stre-right:before{content:"\f18b"}
|
9187 |
+
.brz-ed .nc-glyph-stre-up:before{content:"\f18c"}
|
9188 |
+
.brz-ed .nc-glyph-stretch:before{content:"\f18d"}
|
9189 |
+
.brz-ed .nc-glyph-strikethrough:before{content:"\f18e"}
|
9190 |
+
.brz-ed .nc-glyph-strong-down:before{content:"\f18f"}
|
9191 |
+
.brz-ed .nc-glyph-strong-left:before{content:"\f190"}
|
9192 |
+
.brz-ed .nc-glyph-strong-right:before{content:"\f191"}
|
9193 |
+
.brz-ed .nc-glyph-strong-up:before{content:"\f192"}
|
9194 |
+
.brz-ed .nc-glyph-subscript:before{content:"\f193"}
|
9195 |
+
.brz-ed .nc-glyph-subtitles:before{content:"\f194"}
|
9196 |
+
.brz-ed .nc-glyph-sugar:before{content:"\f195"}
|
9197 |
+
.brz-ed .nc-glyph-sun-cloud-drop:before{content:"\f196"}
|
9198 |
+
.brz-ed .nc-glyph-sun-cloud-fog:before{content:"\f197"}
|
9199 |
+
.brz-ed .nc-glyph-sun-cloud-hail:before{content:"\f198"}
|
9200 |
+
.brz-ed .nc-glyph-sun-cloud-light:before{content:"\f199"}
|
9201 |
+
.brz-ed .nc-glyph-sun-cloud-rain:before{content:"\f19a"}
|
9202 |
+
.brz-ed .nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}
|
9203 |
+
.brz-ed .nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}
|
9204 |
+
.brz-ed .nc-glyph-sun-cloud:before{content:"\f19d"}
|
9205 |
+
.brz-ed .nc-glyph-sun-fog-29:before{content:"\f19e"}
|
9206 |
+
.brz-ed .nc-glyph-sun-fog-30:before{content:"\f19f"}
|
9207 |
+
.brz-ed .nc-glyph-sun-fog-43:before{content:"\f1a0"}
|
9208 |
+
.brz-ed .nc-glyph-sunglasses-48:before{content:"\f1a1"}
|
9209 |
+
.brz-ed .nc-glyph-sunglasses-49:before{content:"\f1a2"}
|
9210 |
+
.brz-ed .nc-glyph-sunglasses:before{content:"\f1a3"}
|
9211 |
+
.brz-ed .nc-glyph-superscript:before{content:"\f1a4"}
|
9212 |
+
.brz-ed .nc-glyph-supplement:before{content:"\f1a5"}
|
9213 |
+
.brz-ed .nc-glyph-support-16:before{content:"\f1a6"}
|
9214 |
+
.brz-ed .nc-glyph-support-17:before{content:"\f1a7"}
|
9215 |
+
.brz-ed .nc-glyph-surf-2:before{content:"\f1a8"}
|
9216 |
+
.brz-ed .nc-glyph-surf:before{content:"\f1a9"}
|
9217 |
+
.brz-ed .nc-glyph-surprise:before{content:"\f1aa"}
|
9218 |
+
.brz-ed .nc-glyph-sushi:before{content:"\f1ab"}
|
9219 |
+
.brz-ed .nc-glyph-swap-horizontal:before{content:"\f1ac"}
|
9220 |
+
.brz-ed .nc-glyph-swap-vertical:before{content:"\f1ad"}
|
9221 |
+
.brz-ed .nc-glyph-swimsuit:before{content:"\f1ae"}
|
9222 |
+
.brz-ed .nc-glyph-swimwear:before{content:"\f1af"}
|
9223 |
+
.brz-ed .nc-glyph-swipe-bottom:before{content:"\f1b0"}
|
9224 |
+
.brz-ed .nc-glyph-swipe-left:before{content:"\f1b1"}
|
9225 |
+
.brz-ed .nc-glyph-swipe-right:before{content:"\f1b2"}
|
9226 |
+
.brz-ed .nc-glyph-swipe-up:before{content:"\f1b3"}
|
9227 |
+
.brz-ed .nc-glyph-swiss-knife:before{content:"\f1b4"}
|
9228 |
+
.brz-ed .nc-glyph-sync:before{content:"\f1b5"}
|
9229 |
+
.brz-ed .nc-glyph-syringe:before{content:"\f1b6"}
|
9230 |
+
.brz-ed .nc-glyph-system-update:before{content:"\f1b7"}
|
9231 |
+
.brz-ed .nc-glyph-table-left:before{content:"\f1b8"}
|
9232 |
+
.brz-ed .nc-glyph-table-right:before{content:"\f1b9"}
|
9233 |
+
.brz-ed .nc-glyph-table:before{content:"\f1ba"}
|
9234 |
+
.brz-ed .nc-glyph-tablet-2:before{content:"\f1bb"}
|
9235 |
+
.brz-ed .nc-glyph-tablet-button:before{content:"\f1bc"}
|
9236 |
+
.brz-ed .nc-glyph-tablet-mobile:before{content:"\f1bd"}
|
9237 |
+
.brz-ed .nc-glyph-tablet-reader-31:before{content:"\f1be"}
|
9238 |
+
.brz-ed .nc-glyph-tablet-reader-42:before{content:"\f1bf"}
|
9239 |
+
.brz-ed .nc-glyph-tablet-toolbar:before{content:"\f1c0"}
|
9240 |
+
.brz-ed .nc-glyph-tablet:before{content:"\f1c1"}
|
9241 |
+
.brz-ed .nc-glyph-tacos:before{content:"\f1c2"}
|
9242 |
+
.brz-ed .nc-glyph-tactic:before{content:"\f1c3"}
|
9243 |
+
.brz-ed .nc-glyph-tag-2:before{content:"\f1c4"}
|
9244 |
+
.brz-ed .nc-glyph-tag-add:before{content:"\f1c5"}
|
9245 |
+
.brz-ed .nc-glyph-tag-check:before{content:"\f1c6"}
|
9246 |
+
.brz-ed .nc-glyph-tag-content:before{content:"\f1c7"}
|
9247 |
+
.brz-ed .nc-glyph-tag-cut:before{content:"\f1c8"}
|
9248 |
+
.brz-ed .nc-glyph-tag-line:before{content:"\f1c9"}
|
9249 |
+
.brz-ed .nc-glyph-tag-loyalty:before{content:"\f1ca"}
|
9250 |
+
.brz-ed .nc-glyph-tag-remove:before{content:"\f1cb"}
|
9251 |
+
.brz-ed .nc-glyph-tag-sale:before{content:"\f1cc"}
|
9252 |
+
.brz-ed .nc-glyph-tag:before{content:"\f1cd"}
|
9253 |
+
.brz-ed .nc-glyph-tail-down:before{content:"\f1ce"}
|
9254 |
+
.brz-ed .nc-glyph-tail-left:before{content:"\f1cf"}
|
9255 |
+
.brz-ed .nc-glyph-tail-right:before{content:"\f1d0"}
|
9256 |
+
.brz-ed .nc-glyph-tail-triangle-down:before{content:"\f1d1"}
|
9257 |
+
.brz-ed .nc-glyph-tail-triangle-left:before{content:"\f1d2"}
|
9258 |
+
.brz-ed .nc-glyph-tail-triangle-right:before{content:"\f1d3"}
|
9259 |
+
.brz-ed .nc-glyph-tail-triangle-up:before{content:"\f1d4"}
|
9260 |
+
.brz-ed .nc-glyph-tail-up:before{content:"\f1d5"}
|
9261 |
+
.brz-ed .nc-glyph-tap-01:before{content:"\f1d6"}
|
9262 |
+
.brz-ed .nc-glyph-tap-02:before{content:"\f1d7"}
|
9263 |
+
.brz-ed .nc-glyph-tape:before{content:"\f1d8"}
|
9264 |
+
.brz-ed .nc-glyph-target:before{content:"\f1d9"}
|
9265 |
+
.brz-ed .nc-glyph-tea-bag:before{content:"\f1da"}
|
9266 |
+
.brz-ed .nc-glyph-tea:before{content:"\f1db"}
|
9267 |
+
.brz-ed .nc-glyph-temperature-23:before{content:"\f1dc"}
|
9268 |
+
.brz-ed .nc-glyph-temperature-24:before{content:"\f1dd"}
|
9269 |
+
.brz-ed .nc-glyph-temple-25:before{content:"\f1de"}
|
9270 |
+
.brz-ed .nc-glyph-tennis-ball:before{content:"\f1df"}
|
9271 |
+
.brz-ed .nc-glyph-tennis:before{content:"\f1e0"}
|
9272 |
+
.brz-ed .nc-glyph-terrace:before{content:"\f1e1"}
|
9273 |
+
.brz-ed .nc-glyph-text-2:before{content:"\f1e2"}
|
9274 |
+
.brz-ed .nc-glyph-text:before{content:"\f1e3"}
|
9275 |
+
.brz-ed .nc-glyph-texture:before{content:"\f1e4"}
|
9276 |
+
.brz-ed .nc-glyph-ticket-75:before{content:"\f1e5"}
|
9277 |
+
.brz-ed .nc-glyph-ticket-76:before{content:"\f1e6"}
|
9278 |
+
.brz-ed .nc-glyph-tie-01:before{content:"\f1e7"}
|
9279 |
+
.brz-ed .nc-glyph-tie-02:before{content:"\f1e8"}
|
9280 |
+
.brz-ed .nc-glyph-tie-bow:before{content:"\f1e9"}
|
9281 |
+
.brz-ed .nc-glyph-tile-55:before{content:"\f1ea"}
|
9282 |
+
.brz-ed .nc-glyph-time-2:before{content:"\f1eb"}
|
9283 |
+
.brz-ed .nc-glyph-time-3:before{content:"\f1ec"}
|
9284 |
+
.brz-ed .nc-glyph-time-alarm:before{content:"\f1ed"}
|
9285 |
+
.brz-ed .nc-glyph-time-clock:before{content:"\f1ee"}
|
9286 |
+
.brz-ed .nc-glyph-time-countdown:before{content:"\f1ef"}
|
9287 |
+
.brz-ed .nc-glyph-time:before{content:"\f1f0"}
|
9288 |
+
.brz-ed .nc-glyph-timeline:before{content:"\f1f1"}
|
9289 |
+
.brz-ed .nc-glyph-timer:before{content:"\f1f2"}
|
9290 |
+
.brz-ed .nc-glyph-todo:before{content:"\f1f3"}
|
9291 |
+
.brz-ed .nc-glyph-toilet-paper:before{content:"\f1f4"}
|
9292 |
+
.brz-ed .nc-glyph-toilet:before{content:"\f1f5"}
|
9293 |
+
.brz-ed .nc-glyph-tomato:before{content:"\f1f6"}
|
9294 |
+
.brz-ed .nc-glyph-tool-blur:before{content:"\f1f7"}
|
9295 |
+
.brz-ed .nc-glyph-tool-hand:before{content:"\f1f8"}
|
9296 |
+
.brz-ed .nc-glyph-tool-select:before{content:"\f1f9"}
|
9297 |
+
.brz-ed .nc-glyph-tooth:before{content:"\f1fa"}
|
9298 |
+
.brz-ed .nc-glyph-touch:before{content:"\f1fb"}
|
9299 |
+
.brz-ed .nc-glyph-track-delivery:before{content:"\f1fc"}
|
9300 |
+
.brz-ed .nc-glyph-tracking:before{content:"\f1fd"}
|
9301 |
+
.brz-ed .nc-glyph-tractor:before{content:"\f1fe"}
|
9302 |
+
.brz-ed .nc-glyph-train-speed:before{content:"\f1ff"}
|
9303 |
+
.brz-ed .nc-glyph-train:before{content:"\f200"}
|
9304 |
+
.brz-ed .nc-glyph-tram:before{content:"\f201"}
|
9305 |
+
.brz-ed .nc-glyph-transform-2d:before{content:"\f202"}
|
9306 |
+
.brz-ed .nc-glyph-transform-origin:before{content:"\f203"}
|
9307 |
+
.brz-ed .nc-glyph-transform:before{content:"\f204"}
|
9308 |
+
.brz-ed .nc-glyph-transparent:before{content:"\f205"}
|
9309 |
+
.brz-ed .nc-glyph-trash-round:before{content:"\f206"}
|
9310 |
+
.brz-ed .nc-glyph-trash-simple:before{content:"\f207"}
|
9311 |
+
.brz-ed .nc-glyph-trash:before{content:"\f208"}
|
9312 |
+
.brz-ed .nc-glyph-treasure-map-21:before{content:"\f209"}
|
9313 |
+
.brz-ed .nc-glyph-treasure-map-40:before{content:"\f20a"}
|
9314 |
+
.brz-ed .nc-glyph-tree-01:before{content:"\f20b"}
|
9315 |
+
.brz-ed .nc-glyph-tree-02:before{content:"\f20c"}
|
9316 |
+
.brz-ed .nc-glyph-tree-03:before{content:"\f20d"}
|
9317 |
+
.brz-ed .nc-glyph-tree-ball:before{content:"\f20e"}
|
9318 |
+
.brz-ed .nc-glyph-tree:before{content:"\f20f"}
|
9319 |
+
.brz-ed .nc-glyph-trend-down:before{content:"\f210"}
|
9320 |
+
.brz-ed .nc-glyph-trend-up:before{content:"\f211"}
|
9321 |
+
.brz-ed .nc-glyph-triangle-down-20:before{content:"\f212"}
|
9322 |
+
.brz-ed .nc-glyph-triangle-down-65:before{content:"\f213"}
|
9323 |
+
.brz-ed .nc-glyph-triangle-down:before{content:"\f214"}
|
9324 |
+
.brz-ed .nc-glyph-triangle-left-18:before{content:"\f215"}
|
9325 |
+
.brz-ed .nc-glyph-triangle-left-63:before{content:"\f216"}
|
9326 |
+
.brz-ed .nc-glyph-triangle-left:before{content:"\f217"}
|
9327 |
+
.brz-ed .nc-glyph-triangle-right-17:before{content:"\f218"}
|
9328 |
+
.brz-ed .nc-glyph-triangle-right-62:before{content:"\f219"}
|
9329 |
+
.brz-ed .nc-glyph-triangle-right:before{content:"\f21a"}
|
9330 |
+
.brz-ed .nc-glyph-triangle-up-19:before{content:"\f21b"}
|
9331 |
+
.brz-ed .nc-glyph-triangle-up-64:before{content:"\f21c"}
|
9332 |
+
.brz-ed .nc-glyph-triangle-up:before{content:"\f21d"}
|
9333 |
+
.brz-ed .nc-glyph-tripod:before{content:"\f21e"}
|
9334 |
+
.brz-ed .nc-glyph-trolley:before{content:"\f21f"}
|
9335 |
+
.brz-ed .nc-glyph-trophy:before{content:"\f220"}
|
9336 |
+
.brz-ed .nc-glyph-truck-front:before{content:"\f221"}
|
9337 |
+
.brz-ed .nc-glyph-trunk:before{content:"\f222"}
|
9338 |
+
.brz-ed .nc-glyph-tshirt-53:before{content:"\f223"}
|
9339 |
+
.brz-ed .nc-glyph-tshirt-54:before{content:"\f224"}
|
9340 |
+
.brz-ed .nc-glyph-tshirt-sport:before{content:"\f225"}
|
9341 |
+
.brz-ed .nc-glyph-turtle:before{content:"\f226"}
|
9342 |
+
.brz-ed .nc-glyph-tv-2:before{content:"\f227"}
|
9343 |
+
.brz-ed .nc-glyph-tv-old:before{content:"\f228"}
|
9344 |
+
.brz-ed .nc-glyph-tv:before{content:"\f229"}
|
9345 |
+
.brz-ed .nc-glyph-twitch:before{content:"\f22a"}
|
9346 |
+
.brz-ed .nc-glyph-ui-03:before{content:"\f22b"}
|
9347 |
+
.brz-ed .nc-glyph-ui-04:before{content:"\f22c"}
|
9348 |
+
.brz-ed .nc-glyph-umbrella-13:before{content:"\f22d"}
|
9349 |
+
.brz-ed .nc-glyph-umbrella-14:before{content:"\f22e"}
|
9350 |
+
.brz-ed .nc-glyph-underline:before{content:"\f22f"}
|
9351 |
+
.brz-ed .nc-glyph-underwear-man:before{content:"\f230"}
|
9352 |
+
.brz-ed .nc-glyph-underwear:before{content:"\f231"}
|
9353 |
+
.brz-ed .nc-glyph-undo-25:before{content:"\f233"}
|
9354 |
+
.brz-ed .nc-glyph-undo-29:before{content:"\f232"}
|
9355 |
+
.brz-ed .nc-glyph-ungroup:before{content:"\f234"}
|
9356 |
+
.brz-ed .nc-glyph-unite-round:before{content:"\f235"}
|
9357 |
+
.brz-ed .nc-glyph-unite:before{content:"\f236"}
|
9358 |
+
.brz-ed .nc-glyph-upload-2:before{content:"\f237"}
|
9359 |
+
.brz-ed .nc-glyph-upload:before{content:"\f238"}
|
9360 |
+
.brz-ed .nc-glyph-upset-13:before{content:"\f239"}
|
9361 |
+
.brz-ed .nc-glyph-upset-14:before{content:"\f23a"}
|
9362 |
+
.brz-ed .nc-glyph-usb:before{content:"\f23b"}
|
9363 |
+
.brz-ed .nc-glyph-user-balance:before{content:"\f23c"}
|
9364 |
+
.brz-ed .nc-glyph-user-climb:before{content:"\f23d"}
|
9365 |
+
.brz-ed .nc-glyph-user-frame-31:before{content:"\f23e"}
|
9366 |
+
.brz-ed .nc-glyph-user-frame-32:before{content:"\f23f"}
|
9367 |
+
.brz-ed .nc-glyph-user-frame-33:before{content:"\f240"}
|
9368 |
+
.brz-ed .nc-glyph-user-meditation:before{content:"\f241"}
|
9369 |
+
.brz-ed .nc-glyph-user-run:before{content:"\f242"}
|
9370 |
+
.brz-ed .nc-glyph-user-snowboard:before{content:"\f243"}
|
9371 |
+
.brz-ed .nc-glyph-user-swim:before{content:"\f244"}
|
9372 |
+
.brz-ed .nc-glyph-user:before{content:"\f245"}
|
9373 |
+
.brz-ed .nc-glyph-vampire:before{content:"\f246"}
|
9374 |
+
.brz-ed .nc-glyph-vector-2:before{content:"\f247"}
|
9375 |
+
.brz-ed .nc-glyph-vector:before{content:"\f248"}
|
9376 |
+
.brz-ed .nc-glyph-vegan:before{content:"\f249"}
|
9377 |
+
.brz-ed .nc-glyph-ventilation:before{content:"\f24a"}
|
9378 |
+
.brz-ed .nc-glyph-vespa-front:before{content:"\f24b"}
|
9379 |
+
.brz-ed .nc-glyph-vespa:before{content:"\f24c"}
|
9380 |
+
.brz-ed .nc-glyph-vest-31:before{content:"\f24d"}
|
9381 |
+
.brz-ed .nc-glyph-vest-sport:before{content:"\f24e"}
|
9382 |
+
.brz-ed .nc-glyph-vest:before{content:"\f24f"}
|
9383 |
+
.brz-ed .nc-glyph-video-64:before{content:"\f250"}
|
9384 |
+
.brz-ed .nc-glyph-video-65:before{content:"\f251"}
|
9385 |
+
.brz-ed .nc-glyph-video-66:before{content:"\f252"}
|
9386 |
+
.brz-ed .nc-glyph-video-67:before{content:"\f253"}
|
9387 |
+
.brz-ed .nc-glyph-videocamera-71:before{content:"\f254"}
|
9388 |
+
.brz-ed .nc-glyph-videocamera-72:before{content:"\f255"}
|
9389 |
+
.brz-ed .nc-glyph-virus:before{content:"\f256"}
|
9390 |
+
.brz-ed .nc-glyph-voice-record:before{content:"\f257"}
|
9391 |
+
.brz-ed .nc-glyph-volleyball:before{content:"\f258"}
|
9392 |
+
.brz-ed .nc-glyph-volume-93:before{content:"\f259"}
|
9393 |
+
.brz-ed .nc-glyph-volume-97:before{content:"\f25a"}
|
9394 |
+
.brz-ed .nc-glyph-volume-98:before{content:"\f25b"}
|
9395 |
+
.brz-ed .nc-glyph-volume-ban:before{content:"\f25c"}
|
9396 |
+
.brz-ed .nc-glyph-volume-down:before{content:"\f25d"}
|
9397 |
+
.brz-ed .nc-glyph-volume-off:before{content:"\f25e"}
|
9398 |
+
.brz-ed .nc-glyph-volume-up:before{content:"\f25f"}
|
9399 |
+
.brz-ed .nc-glyph-vpn:before{content:"\f260"}
|
9400 |
+
.brz-ed .nc-glyph-waffle:before{content:"\f261"}
|
9401 |
+
.brz-ed .nc-glyph-walk:before{content:"\f262"}
|
9402 |
+
.brz-ed .nc-glyph-wallet-43:before{content:"\f263"}
|
9403 |
+
.brz-ed .nc-glyph-wallet-44:before{content:"\f264"}
|
9404 |
+
.brz-ed .nc-glyph-wallet-90:before{content:"\f265"}
|
9405 |
+
.brz-ed .nc-glyph-wallet:before{content:"\f266"}
|
9406 |
+
.brz-ed .nc-glyph-wand-11:before{content:"\f267"}
|
9407 |
+
.brz-ed .nc-glyph-wardrobe:before{content:"\f268"}
|
9408 |
+
.brz-ed .nc-glyph-wash-2:before{content:"\f269"}
|
9409 |
+
.brz-ed .nc-glyph-wash-30:before{content:"\f26a"}
|
9410 |
+
.brz-ed .nc-glyph-wash-60:before{content:"\f26b"}
|
9411 |
+
.brz-ed .nc-glyph-wash-90:before{content:"\f26c"}
|
9412 |
+
.brz-ed .nc-glyph-wash-hand:before{content:"\f26d"}
|
9413 |
+
.brz-ed .nc-glyph-wash:before{content:"\f26e"}
|
9414 |
+
.brz-ed .nc-glyph-washing-fluid:before{content:"\f26f"}
|
9415 |
+
.brz-ed .nc-glyph-waste-danger:before{content:"\f270"}
|
9416 |
+
.brz-ed .nc-glyph-waste-recycling:before{content:"\f272"}
|
9417 |
+
.brz-ed .nc-glyph-waste:before{content:"\f271"}
|
9418 |
+
.brz-ed .nc-glyph-watch-circle:before{content:"\f273"}
|
9419 |
+
.brz-ed .nc-glyph-watch-dev:before{content:"\f274"}
|
9420 |
+
.brz-ed .nc-glyph-watch-time:before{content:"\f275"}
|
9421 |
+
.brz-ed .nc-glyph-watch:before{content:"\f276"}
|
9422 |
+
.brz-ed .nc-glyph-water-hand:before{content:"\f277"}
|
9423 |
+
.brz-ed .nc-glyph-water-sink:before{content:"\f278"}
|
9424 |
+
.brz-ed .nc-glyph-water:before{content:"\f279"}
|
9425 |
+
.brz-ed .nc-glyph-watermelon:before{content:"\f27a"}
|
9426 |
+
.brz-ed .nc-glyph-wc:before{content:"\f27b"}
|
9427 |
+
.brz-ed .nc-glyph-web-design:before{content:"\f27c"}
|
9428 |
+
.brz-ed .nc-glyph-webcam-38:before{content:"\f27d"}
|
9429 |
+
.brz-ed .nc-glyph-webcam-39:before{content:"\f27e"}
|
9430 |
+
.brz-ed .nc-glyph-webpage-2:before{content:"\f27f"}
|
9431 |
+
.brz-ed .nc-glyph-webpage:before{content:"\f280"}
|
9432 |
+
.brz-ed .nc-glyph-weed:before{content:"\f281"}
|
9433 |
+
.brz-ed .nc-glyph-weight:before{content:"\f282"}
|
9434 |
+
.brz-ed .nc-glyph-what:before{content:"\f283"}
|
9435 |
+
.brz-ed .nc-glyph-wheel-2:before{content:"\f284"}
|
9436 |
+
.brz-ed .nc-glyph-wheel:before{content:"\f285"}
|
9437 |
+
.brz-ed .nc-glyph-wheelchair:before{content:"\f286"}
|
9438 |
+
.brz-ed .nc-glyph-whisk:before{content:"\f287"}
|
9439 |
+
.brz-ed .nc-glyph-whiskers:before{content:"\f288"}
|
9440 |
+
.brz-ed .nc-glyph-whistle:before{content:"\f289"}
|
9441 |
+
.brz-ed .nc-glyph-white-house:before{content:"\f28a"}
|
9442 |
+
.brz-ed .nc-glyph-widget:before{content:"\f28b"}
|
9443 |
+
.brz-ed .nc-glyph-wifi-2:before{content:"\f28c"}
|
9444 |
+
.brz-ed .nc-glyph-wifi-off:before{content:"\f28d"}
|
9445 |
+
.brz-ed .nc-glyph-wifi-protected:before{content:"\f28e"}
|
9446 |
+
.brz-ed .nc-glyph-wifi-router:before{content:"\f28f"}
|
9447 |
+
.brz-ed .nc-glyph-wifi:before{content:"\f290"}
|
9448 |
+
.brz-ed .nc-glyph-wind-2:before{content:"\f291"}
|
9449 |
+
.brz-ed .nc-glyph-wind:before{content:"\f292"}
|
9450 |
+
.brz-ed .nc-glyph-window-add:before{content:"\f293"}
|
9451 |
+
.brz-ed .nc-glyph-window-code:before{content:"\f294"}
|
9452 |
+
.brz-ed .nc-glyph-window-delete:before{content:"\f295"}
|
9453 |
+
.brz-ed .nc-glyph-window-dev:before{content:"\f296"}
|
9454 |
+
.brz-ed .nc-glyph-window-paragraph:before{content:"\f297"}
|
9455 |
+
.brz-ed .nc-glyph-window-responsive:before{content:"\f298"}
|
9456 |
+
.brz-ed .nc-glyph-window-zoom-in:before{content:"\f299"}
|
9457 |
+
.brz-ed .nc-glyph-window-zoom-out:before{content:"\f29a"}
|
9458 |
+
.brz-ed .nc-glyph-wine-list:before{content:"\f29b"}
|
9459 |
+
.brz-ed .nc-glyph-wink-06:before{content:"\f29c"}
|
9460 |
+
.brz-ed .nc-glyph-wink-11:before{content:"\f29d"}
|
9461 |
+
.brz-ed .nc-glyph-wink-69:before{content:"\f29e"}
|
9462 |
+
.brz-ed .nc-glyph-witch-hat:before{content:"\f29f"}
|
9463 |
+
.brz-ed .nc-glyph-wolf:before{content:"\f2a0"}
|
9464 |
+
.brz-ed .nc-glyph-woman-2:before{content:"\f2a1"}
|
9465 |
+
.brz-ed .nc-glyph-woman-21:before{content:"\f2a2"}
|
9466 |
+
.brz-ed .nc-glyph-woman-24:before{content:"\f2a3"}
|
9467 |
+
.brz-ed .nc-glyph-woman-25:before{content:"\f2a4"}
|
9468 |
+
.brz-ed .nc-glyph-woman-down:before{content:"\f2a5"}
|
9469 |
+
.brz-ed .nc-glyph-woman-man:before{content:"\f2a6"}
|
9470 |
+
.brz-ed .nc-glyph-woman-up:before{content:"\f2a7"}
|
9471 |
+
.brz-ed .nc-glyph-woman:before{content:"\f2a8"}
|
9472 |
+
.brz-ed .nc-glyph-wood:before{content:"\f2a9"}
|
9473 |
+
.brz-ed .nc-glyph-wool-ball:before{content:"\f2aa"}
|
9474 |
+
.brz-ed .nc-glyph-worl-marker:before{content:"\f2ab"}
|
9475 |
+
.brz-ed .nc-glyph-world-2:before{content:"\f2ac"}
|
9476 |
+
.brz-ed .nc-glyph-world-pin:before{content:"\f2ad"}
|
9477 |
+
.brz-ed .nc-glyph-world:before{content:"\f2ae"}
|
9478 |
+
.brz-ed .nc-glyph-yogurt:before{content:"\f2af"}
|
9479 |
+
.brz-ed .nc-glyph-zip-54:before{content:"\f2b0"}
|
9480 |
+
.brz-ed .nc-glyph-zip-55:before{content:"\f2b1"}
|
9481 |
+
.brz-ed .nc-glyph-zombie:before{content:"\f2b2"}
|
9482 |
+
.brz-ed .nc-glyph-zoom-100:before{content:"\f2b3"}
|
9483 |
+
.brz-ed .nc-glyph-zoom-2:before{content:"\f2b4"}
|
9484 |
+
.brz-ed .nc-glyph-zoom-88:before{content:"\f2b5"}
|
9485 |
+
.brz-ed .nc-glyph-zoom-99:before{content:"\f2b6"}
|
9486 |
+
.brz-ed .nc-glyph-zoom-bold-in:before{content:"\f2b7"}
|
9487 |
+
.brz-ed .nc-glyph-zoom-bold-out:before{content:"\f2b8"}
|
9488 |
+
.brz-ed .nc-glyph-zoom-bold:before{content:"\f2b9"}
|
9489 |
+
.brz-ed .nc-glyph-zoom-e:before{content:"\f2ba"}
|
9490 |
+
.brz-ed .nc-glyph-zoom-in:before{content:"\f2bb"}
|
9491 |
+
.brz-ed .nc-glyph-zoom-out:before{content:"\f2bc"}
|
9492 |
+
.brz-ed .nc-glyph-zoom-split-in:before{content:"\f2bd"}
|
9493 |
+
.brz-ed .nc-glyph-zoom-split-out:before{content:"\f2be"}
|
9494 |
+
.brz-ed .nc-glyph-zoom-split:before{content:"\f2bf"}
|
9495 |
+
.brz-ed .nc-glyph-zoom-triangles:before{content:"\f2c0"}
|
9496 |
+
.brz-ed .nc-glyph-zoom:before{content:"\f2c1"}
|
9497 |
+
.brz-ed .nc-icon{display:inline-block;font-size:24px;line-height:1;font-weight:400;font-style:normal;font-variant:normal;speak:none;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
9498 |
+
.brz-ed .nc-outline{font-family:"Nucleo Outline"}
|
9499 |
+
.brz-ed .nc-glyph{font-family:"Nucleo Glyph"}
|
9500 |
+
.brz-ed .nc-icon.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}
|
9501 |
+
.brz-ed .nc-icon.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
|
9502 |
+
.brz-ed .nc-icon.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
|
9503 |
+
.brz-ed .nc-icon.flip-y{-webkit-transform:scale(-1,1);transform:scale(-1,1)}
|
9504 |
+
.brz-ed .nc-icon.flip-x{-webkit-transform:scale(1,-1);transform:scale(1,-1)}
|
9505 |
.brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;position:relative;fill:currentColor;color:currentColor}
|
9506 |
.brz-ed .brz-icon-svg use{fill:inherit}
|
9507 |
.brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}
|
9561 |
.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}
|
9562 |
.brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}
|
9563 |
.brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}
|
9564 |
+
.brz-ed .brz-control__select--full-width{width:100%}
|
9565 |
.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}
|
9566 |
.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current{color:#3dbfe8}
|
9567 |
.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}
|
9604 |
.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}
|
9605 |
.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}
|
9606 |
.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}
|
9607 |
+
.brz-ed .brz-ed-control__switch--light .brz-ed-control__switch-arrows{background:#c7c9cd}
|
9608 |
+
.brz-ed .brz-ed-control__switch--light .brz-ed-control__switch--handle:after{border-top-color:#bfbfbf;border-bottom-color:#bfbfbf}
|
9609 |
+
.brz-ed .brz-ed-control__switch--light .brz-ed-control__switch--handle:before{border-top-color:#bfbfbf}
|
9610 |
.brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}
|
9611 |
.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}
|
9612 |
.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}
|
9714 |
.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}
|
9715 |
.brz-ed .brz-ed-control__radio-group--active{color:#3dbfe8}
|
9716 |
.brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}
|
9717 |
+
.brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:1100}
|
9718 |
.brz-ed .brz-ed-tooltip--auto{width:auto}
|
9719 |
+
.brz-ed .brz-ed-tooltip--small{width:171px}
|
9720 |
.brz-ed .brz-ed-tooltip--medium{width:255px}
|
9721 |
.brz-ed .brz-ed-tooltip--big{width:305px}
|
9722 |
.brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}
|
9723 |
+
.brz-ed .brz-ed-tooltip__static{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
|
9724 |
+
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-center{top:auto;bottom:calc(100% + 9px);left:auto}
|
9725 |
+
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-center{top:calc(100% + 9px);left:auto}
|
9726 |
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{left:auto;right:-15px}
|
9727 |
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left{left:-15px}
|
9728 |
+
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{top:auto;bottom:calc(100% + 9px)}
|
9729 |
.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right{top:calc(100% + 9px)}
|
9730 |
+
.brz-ed .brz-ed-tooltip--delay-1{-webkit-animation-delay:.6s;animation-delay:.6s}
|
9731 |
+
.brz-ed .brz-ed-tooltip--delay-2{-webkit-animation-delay:1s;animation-delay:1s}
|
9732 |
+
.brz-ed .brz-ed-tooltip-content__pro{font-family:pn,"Open Sans",Arial,sans-serif;font-weight:600;color:rgba(255,255,255,.8);padding:18px 18px 18px 22px;font-size:13px;line-height:18px;text-align:left}
|
9733 |
+
.brz-ed .brz-ed-tooltip-content__pro-title{margin-bottom:17px}
|
9734 |
+
.brz-ed .brz-ed-tooltip-content__pro-body .brz-icon-svg{font-size:10px;margin-right:8px}
|
9735 |
+
.brz-ed .brz-ed-tooltip-content__pro .brz-p{font-size:inherit;font-weight:600}
|
9736 |
.brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}
|
9737 |
.brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}
|
9738 |
.brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}
|
9799 |
.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}
|
9800 |
.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}
|
9801 |
.brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}
|
9802 |
+
.brz-ed .brz-ed-control__colorPicker2{position:relative}
|
9803 |
+
.brz-ed .color-picker2-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}
|
9804 |
+
.brz-ed .color-picker2-body .color-picker2-saturation{width:153px;height:153px;position:relative;cursor:move}
|
9805 |
+
.brz-ed .color-picker2-body .color-picker2-saturation>div{border-radius:3px 3px 4px 4px}
|
9806 |
+
.brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}
|
9807 |
+
.brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .saturation-black{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:3px;background:-webkit-gradient(linear,left bottom,left top,from(#000),to(rgba(0,0,0,0)));background:linear-gradient(to top,#000,rgba(0,0,0,0))}
|
9808 |
+
.brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .saturation-white{position:absolute;top:0;right:0;bottom:0;left:0;border-bottom-left-radius:4px;border-top-left-radius:3px;background:-webkit-gradient(linear,left top,right top,from(#fff),to(rgba(255,255,255,0)));background:linear-gradient(to right,#fff,rgba(255,255,255,0))}
|
9809 |
+
.brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .color-picker2-pointer{width:16px;height:16px;-webkit-transform:translate(-8px,-8px);transform:translate(-8px,-8px);cursor:move}
|
9810 |
+
.brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .saturation-pointer{position:absolute;cursor:move}
|
9811 |
+
.brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .saturation-circle{width:4px;height:4px;-webkit-box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;cursor:move;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}
|
9812 |
+
.brz-ed .color-picker2-body .color-picker2-alpha,.brz-ed .color-picker2-body .color-picker2-hue{position:relative;height:153px;width:12px;margin-left:10px;cursor:ns-resize}
|
9813 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .hue-vertical,.brz-ed .color-picker2-body .color-picker2-hue .hue-vertical{border-radius:3px}
|
9814 |
+
.brz-ed .color-picker2-body .color-picker2-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}
|
9815 |
+
.brz-ed .color-picker2-body .color-picker2-hue .hue-container{padding:0 2px;position:relative;height:100%}
|
9816 |
+
.brz-ed .color-picker2-body .color-picker2-hue .hue-pointer{position:absolute}
|
9817 |
+
.brz-ed .color-picker2-body .color-picker2-hue .color-picker2-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}
|
9818 |
+
.brz-ed .color-picker2-body .color-picker2-hue .hue-slider{margin-top:1px;width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;-webkit-transform:translateX(-2px);transform:translateX(-2px)}
|
9819 |
+
.brz-ed .color-picker2-body .color-picker2-hue .hue-horizontal{background:-webkit-gradient(linear,left top,right top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}
|
9820 |
+
.brz-ed .color-picker2-body .color-picker2-hue .hue-vertical{background:-webkit-gradient(linear,left bottom,left top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}
|
9821 |
+
.brz-ed .color-picker2-body .color-picker2-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}
|
9822 |
+
.brz-ed .color-picker2-body .color-picker2-alpha div:not(.color-picker2-pointer){border-radius:3px}
|
9823 |
+
.brz-ed .color-picker2-body .color-picker2-alpha div>div>div:not(.color-picker2-pointer){background-size:8px!important}
|
9824 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}
|
9825 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer .color-picker2-pointer-tooltip{position:absolute;left:18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:42px;height:27px;font-size:12px;line-height:2.2;border-radius:2px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);text-align:center;font-family:pn,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}
|
9826 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer .color-picker2-pointer-tooltip:before{content:"";position:absolute;top:50%;left:-6px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:6px solid rgba(3,8,15,.92)}
|
9827 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body{position:absolute;top:0;left:0;bottom:0;right:0}
|
9828 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-checkboard{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden}
|
9829 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-gradient{position:absolute;top:0;left:0;bottom:0;right:0}
|
9830 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container{position:relative;height:100%;margin:0 3px}
|
9831 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container .color-picker2-alpha-pointer{position:absolute}
|
9832 |
+
.brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container .color-picker2-alpha-pointer .color-picker2-alpha-slider{width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;margin-top:1px;-webkit-transform:translateX(-2px);transform:translateX(-2px)}
|
9833 |
+
.brz-ed .color-picker2-body .color-picker2-pointer{width:14px;height:14px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);-webkit-transform:translate(-7px,-7px);transform:translate(-7px,-7px);border-radius:50%;background:0 0;border:3px solid #fff;cursor:ns-resize}
|
9834 |
+
.brz-ed .color-picker2-preset-colors{margin:0 -10px;padding:10px 0 0 10px;border-top:1px solid #eee;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}
|
9835 |
+
.brz-ed .color-picker2-preset-colors .color-picker2-swatch-wrap{width:20px;height:20px;margin-left:2px}
|
9836 |
.brz-ed .brz-ed-listbox{position:absolute;background-color:#383e48;z-index:1070;border-radius:4px;-webkit-box-shadow:0 2px 13px 0 rgba(0,0,0,.1);box-shadow:0 2px 13px 0 rgba(0,0,0,.1);color:#fff}
|
9837 |
.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}
|
9838 |
.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb:after{content:"";display:block;position:absolute;left:3px;top:0;bottom:0;width:3px;min-height:3px;background-color:#7b7b7b;border-radius:2px}
|
9842 |
.brz-ed .brz-ed-listbox__item:last-child{border-bottom-color:transparent!important}
|
9843 |
.brz-ed .brz-ed-listbox__item--active{color:#3dbfe8;-webkit-transition:color .15s linear;transition:color .15s linear}
|
9844 |
.brz-ed .brz-ed-listbox__item--disable{cursor:default}
|
9845 |
+
.brz-ed .brz-control__select2{font-family:pn,"Open Sans",Arial,sans-serif}
|
9846 |
+
.brz-ed .brz-control__select2-value-container{line-height:30px;height:30px;border-radius:4px;font-size:13px;letter-spacing:.25px}
|
9847 |
+
.brz-ed .brz-control__select2-value{font:inherit;letter-spacing:inherit;width:100%;height:100%;outline:0;border:none;background:0 0;padding-left:10px;padding-right:10px}
|
9848 |
+
.brz-ed .brz-control__select2-menu{font-family:pn,"Open Sans",Arial,sans-serif;z-index:1110;width:200px;-webkit-box-shadow:0 1px 10px 0 rgba(18,34,35,.1);box-shadow:0 1px 10px 0 rgba(18,34,35,.1);margin-top:3px;border-radius:4px}
|
9849 |
+
.brz-ed .brz-control__select2-option{cursor:pointer;padding-left:10px;padding-right:10px;font-size:13px;letter-spacing:.25px;line-height:30px;height:30px;-webkit-transition:color .15s linear;transition:color .15s linear;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
|
9850 |
+
.brz-ed .brz-control__select2-option:last-child{border-bottom-color:transparent}
|
9851 |
+
.brz-ed .brz-control__select2-option.active,.brz-ed .brz-control__select2-option:hover{-webkit-transition:color .15s linear;transition:color .15s linear;color:#3dbfe8}
|
9852 |
+
.brz-ed .brz-control__select2-scroll-pane .brz-ed-scroll-inner{height:120px;overflow:hidden}
|
9853 |
+
.brz-ed .brz-control__select2--light .brz-control__select2-value-container{background-color:#fff;color:#383e48}
|
9854 |
+
.brz-ed .brz-control__select2--light .brz-control__select2-menu{background-color:#fff}
|
9855 |
+
.brz-ed .brz-control__select2--light .brz-control__select2-option{border-bottom:1px solid #e6e6e6}
|
9856 |
+
.brz-ed .brz-control__select2--light .brz-control__select2-scroll-pane .brz-ed-tall-thumb,.brz-ed .brz-control__select2--light .brz-control__select2-scroll-pane .brz-ed-wide-thumb{background-color:#7b7b7b;border-radius:2px}
|
9857 |
.brz-ed .brz-ed-grid,.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option,.brz-ed .brz-ed-sidebar__right__option{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;line-height:normal;min-height:51px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:-1px}
|
9858 |
.brz-ed .brz-ed-grid:last-child,.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child,.brz-ed .brz-ed-sidebar__right__option:last-child{border-bottom-color:transparent}
|
9859 |
.brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}
|
9911 |
.brz-ed .brz-ed-tabs__option--inline{position:relative}
|
9912 |
.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}
|
9913 |
.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tab .brz-span{font-weight:600}
|
9914 |
+
.brz-ed .brz-ed-grid__typography--sidebar .brz-ed-control__tabs{margin-bottom:5px}
|
9915 |
.brz-ed .brz-ed-grid__option__gradient{height:22px}
|
9916 |
.brz-ed .brz-ed-grid__option__gradient .brz-ed-control__range{padding:6px 14px 0}
|
9917 |
.brz-ed .brz-ed-option__range{padding:0!important;height:22px!important;min-height:22px!important;border-bottom:0;margin-bottom:0;max-width:112px}
|
9947 |
.brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__input:after{content:"";width:100%;height:1px;background-color:rgba(255,255,255,.1);position:absolute;bottom:-3px;left:0}
|
9948 |
.brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__helper{cursor:pointer;margin-left:5px}
|
9949 |
.brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-control__text-box--resizer{position:relative}
|
9950 |
+
.brz-ed .brz-ed-control__text-box--resizer{background-color:transparent;color:#828b92;font-weight:400;border:none;outline:0;padding:0;line-height:1;-moz-appearance:textfield;position:absolute;top:0;left:0;width:105%;height:100%;-webkit-transition:.2s linear color;transition:.2s linear color}
|
9951 |
+
.brz-ed .brz-ed-control__text-box--resizer:active,.brz-ed .brz-ed-control__text-box--resizer:focus{background-color:transparent;color:#fff;-webkit-transition:.2s linear color;transition:.2s linear color;-webkit-box-shadow:none;box-shadow:none;border:none;outline:0}
|
9952 |
.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}
|
9953 |
.brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}
|
9954 |
.brz-ed .brz-ed-option__select__after{margin-left:8px;margin-bottom:0;font-size:16px;color:#828b92;line-height:1;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear}
|
10011 |
.brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(130,139,146,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
10012 |
.brz-ed .brz-ed-option__helper:hover{color:rgba(130,139,146,.6)}
|
10013 |
.brz-ed .brz-ed-option__helper svg{overflow:visible}
|
10014 |
+
.brz-ed .brz-ed-option__helper__content{font-size:13px;font-family:pn,"Open Sans",Arial,sans-serif;line-height:1.5;width:240px;background-color:#03080f;color:rgba(255,255,255,.8);text-align:left;padding:18px 20px;border-radius:10px}
|
10015 |
+
.brz-ed .brz-ed-option__helper__content .brz-p{font-weight:inherit;font-size:inherit}
|
10016 |
+
.brz-ed .brz-ed-option__helper__content .brz-p:first-child{margin-bottom:13px}
|
10017 |
.brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}
|
10018 |
.brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
|
10019 |
.brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}
|
10029 |
.brz-ed .brz-ed-option__colorPicker{padding-top:0;border-bottom:0}
|
10030 |
.brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}
|
10031 |
.brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}
|
10032 |
+
.brz-ed .brz-ed-option__colorPicker2{position:relative;padding-top:0;border-bottom:0}
|
10033 |
+
.brz-ed .brz-ed-option__colorPicker2 .brz-control__select{position:absolute;z-index:2;font-size:12px;margin-top:6px;margin-left:4px}
|
10034 |
+
.brz-ed .brz-ed-option__colorPicker2 .brz-control__select-current,.brz-ed .brz-ed-option__colorPicker2 .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px;height:24px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:normal}
|
10035 |
+
.brz-ed .brz-ed-option__colorPicker2 .brz-control__select-option{padding-right:30px}
|
10036 |
+
.brz-ed .brz-ed-option__colorPicker2 .brz-ed-option__range{max-width:100%;margin-bottom:5px}
|
10037 |
+
.brz-ed .brz-ed-option__colorPicker2 .brz-ed-option__color-palette2{margin-top:10px}
|
10038 |
.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%}
|
10039 |
.brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
|
10040 |
.brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}
|
10046 |
.brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}
|
10047 |
.brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}
|
10048 |
.brz-ed .brz-ed-sidebar-option__color-palette-editor{margin-bottom:32px!important}
|
10049 |
+
.brz-ed .brz-ed-option__color-palette2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:0;border-bottom:0}
|
10050 |
+
.brz-ed .brz-ed-option__color-palette2__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
|
10051 |
+
.brz-ed .brz-ed-option__color-palette2__item:first-child{margin-left:0}
|
10052 |
+
.brz-ed .brz-ed-option__color-palette2__item.active{border:2px solid #fff}
|
10053 |
+
.brz-ed .brz-ed-option__color-palette2__icon{cursor:pointer;font-size:14px;margin-left:5px;display:-webkit-box;display:-ms-flexbox;display:flex;color:#828b92;-webkit-transition:color .2s linear;transition:color .2s linear}
|
10054 |
+
.brz-ed .brz-ed-option__color-palette2__icon:hover{color:#3dbfe8}
|
10055 |
+
.brz-ed .brz-ed-option__color-palette2-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
10056 |
+
.brz-ed .brz-ed-option__color-palette2-editor__item{width:23px;height:23px;border:1px solid #1e232a;border-radius:2px;margin-left:3px;cursor:pointer;-webkit-transition:border .2s linear;transition:border .2s linear}
|
10057 |
+
.brz-ed .brz-ed-option__color-palette2-editor__item.active,.brz-ed .brz-ed-option__color-palette2-editor__item:hover{border:2px solid #3dbfe8}
|
10058 |
+
.brz-ed .brz-ed-option__color-palette2-editor__item:first-child{margin-left:0}
|
10059 |
+
.brz-ed .brz-ed-sidebar-option__color-palette2-editor{margin-bottom:32px!important}
|
10060 |
.brz-ed .brz-ed-grid__color-fileds{padding-top:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
10061 |
.brz-ed .brz-ed-grid__color-fileds:last-child{min-height:21px}
|
10062 |
.brz-ed .brz-ed-grid__color-fileds .brz-ed-grid__option{padding:0;min-height:21px}
|
10072 |
.brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}
|
10073 |
.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}
|
10074 |
.brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}
|
10075 |
+
.brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% - 270px);margin-right:-30px;margin-left:-30px}
|
10076 |
.brz-ed .brz-ed-option__font-styles--add{font-size:0;margin-bottom:0;padding-top:33px;padding-bottom:30px;color:#828b92;text-align:center;cursor:pointer;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear;position:absolute;bottom:-20px;left:30px;right:30px;-webkit-transform:translateY(100%);transform:translateY(100%)}
|
10077 |
.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}
|
10078 |
.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}
|
10128 |
.brz-ed .brz-ed-option__input-container .brz-icon-svg{cursor:pointer;position:absolute;right:10px;font-size:16px;top:50%;-webkit-transform:translateY(-.5em);transform:translateY(-.5em);color:#fff;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10129 |
.brz-ed .brz-ed-option__input-container .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10130 |
.brz-ed .brz-ed-option__input__population{width:136px;line-height:30px;padding-right:30px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
|
10131 |
+
.brz-ed .brz-ed-option__color-picker__hex .brz-input,.brz-ed .brz-ed-option__input-number-wrap .brz-input,.brz-ed .brz-ed-option__input-outline .brz-input{background-color:transparent;border:none;outline:0;color:#828b92;border-bottom:1px solid rgba(255,255,255,.1);text-align:left;text-transform:uppercase;padding:2px 0;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear}
|
10132 |
+
.brz-ed .brz-ed-option__color-picker__hex .brz-input:hover,.brz-ed .brz-ed-option__input-number-wrap .brz-input:hover,.brz-ed .brz-ed-option__input-outline .brz-input:hover{border-bottom:1px solid #828b92;-webkit-transition:.2s border-color linear;transition:.2s border-color linear}
|
10133 |
+
.brz-ed .brz-ed-option__color-picker__hex .brz-input:active,.brz-ed .brz-ed-option__color-picker__hex .brz-input:focus,.brz-ed .brz-ed-option__input-number-wrap .brz-input:active,.brz-ed .brz-ed-option__input-number-wrap .brz-input:focus,.brz-ed .brz-ed-option__input-outline .brz-input:active,.brz-ed .brz-ed-option__input-outline .brz-input:focus{border-bottom:1px solid #3dbfe8;color:#fff;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear}
|
10134 |
.brz-ed .brz-ed-option__multi-input .brz-input{width:17px;outline:0;margin-right:8px}
|
10135 |
.brz-ed .brz-ed-option__multi-input .brz-input::-webkit-inner-spin-button,.brz-ed .brz-ed-option__multi-input .brz-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
|
10136 |
+
.brz-ed .brz-ed-option__multi-input .brz-icon{color:#828b92;margin-right:11px;font-size:13px}
|
10137 |
.brz-ed .brz-ed-option__multi-input .brz-input:last-child{margin-right:0}
|
10138 |
.brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container{padding:0 4px}
|
10139 |
.brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
|
10140 |
.brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
|
10141 |
.brz-ed .brz-ed-option__multi-input:focus-within>.brz-icon{color:#33beea}
|
10142 |
+
.brz-ed .brz-ed-option__multi-border{position:relative;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
|
10143 |
+
.brz-ed .brz-ed-option__multi-border .brz-input{color:#818a91;width:17px;background:0 0;outline:0;border:none;border-bottom:1px solid rgba(255,255,255,.1);margin-right:6px}
|
10144 |
+
.brz-ed .brz-ed-option__multi-border .brz-input:hover{border-bottom:1px solid #828b92;-webkit-transition:.2s border-color linear;transition:.2s border-color linear}
|
10145 |
+
.brz-ed .brz-ed-option__multi-border .brz-input:active,.brz-ed .brz-ed-option__multi-border .brz-input:focus{border-bottom:1px solid #3dbfe8;color:#fff;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear}
|
10146 |
+
.brz-ed .brz-ed-option__multi-border .brz-input:last-of-type{margin-right:3px}
|
10147 |
+
.brz-ed .brz-ed-option__multi-border .brz-input::-webkit-inner-spin-button,.brz-ed .brz-ed-option__multi-border .brz-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
|
10148 |
+
.brz-ed .brz-ed-option__multi-border .brz-icon{position:absolute;color:#818a91;font-size:10px;margin-left:5px;top:5px}
|
10149 |
+
.brz-ed .brz-ed-option__multi-border .brz-input:last-child{margin-right:0}
|
10150 |
+
.brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container{padding:0 4px}
|
10151 |
+
.brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
|
10152 |
+
.brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
|
10153 |
+
.brz-ed .brz-ed-option__multi-border .brz-label{height:16px;width:25px;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:16px;margin-right:12px}
|
10154 |
+
.brz-ed .brz-ed-option__multi-border .brz-button{background:0 0;border:none;outline:0;cursor:pointer}
|
10155 |
+
.brz-ed .brz-ed-option__multi-border--active .brz-icon{color:#33beea}
|
10156 |
.brz-ed .brz-ed-option__input-number{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
|
10157 |
.brz-ed .brz-ed-option__input-number .brz-ed-option__input-number__label{margin-right:10px}
|
10158 |
.brz-ed .brz-ed-option__input-number .brz-input{outline:0;line-height:1;-moz-appearance:textfield}
|
10208 |
.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}
|
10209 |
.brz-ed .brz-ed-floating__button--grey{background-color:#879294}
|
10210 |
.brz-ed .brz-ed-floating__button--grey:after{border-color:#879294}
|
10211 |
+
.brz-ed .brz-ed-floating__button--blue{background-color:#3dbfe8}
|
10212 |
+
.brz-ed .brz-ed-floating__button--blue:after{border-color:#3dbfe8}
|
10213 |
.brz-ed .brz-ed-floating__button--red{background-color:#ed2164}
|
10214 |
.brz-ed .brz-ed-floating__button--red:after{border-color:#ed2164}
|
10215 |
.brz-ed .brz-ed-popup-icons__grid{height:540px}
|
10288 |
.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-title{width:20%;font-size:14px}
|
10289 |
.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-label{width:80%}
|
10290 |
.brz-ed .brz-ed-popup-two-btn-close{position:absolute;width:50px;height:60px;top:0;right:0;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}
|
10291 |
+
.brz-ed .brz-ed-popup-two-btn-close:after,.brz-ed .brz-ed-popup-two-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}
|
10292 |
+
.brz-ed .brz-ed-popup-two-btn-close:before{-webkit-transform:rotateZ(45deg);transform:rotateZ(45deg)}
|
10293 |
+
.brz-ed .brz-ed-popup-two-btn-close:after{-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg)}
|
10294 |
.brz-ed .brz-ed-popup-two-btn-close:hover:after,.brz-ed .brz-ed-popup-two-btn-close:hover:before{border-color:#2a2e37}
|
10295 |
.brz-ed .brz-ed-popup-two-header{height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
|
10296 |
.brz-ed .brz-ed-popup-two-header__search{position:relative;width:256px;height:100%}
|
10302 |
.brz-ed .brz-ed-popup-two-header__search .brz-icon-svg{position:absolute;top:0;bottom:0;left:40px;margin:auto;color:#ebeced}
|
10303 |
.brz-ed .brz-ed-popup-two-header__search--hidden{background-color:#fff}
|
10304 |
.brz-ed .brz-ed-popup-two-header__search--hidden *{opacity:0;visibility:hidden}
|
10305 |
+
.brz-ed .brz-ed-popup-two-header__import-kit{background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:60px;height:100%;cursor:pointer}
|
10306 |
.brz-ed .brz-ed-popup-two-header__tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#fff}
|
10307 |
.brz-ed .brz-ed-popup-two-header__tabs-fullWidth{width:100%}
|
10308 |
+
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#818a91;font-size:14px;font-weight:600;font-family:pn,"Open Sans",Arial,sans-serif;padding:0 25px;cursor:pointer;-webkit-transition:color .3s ease;transition:color .3s ease}
|
10309 |
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-item:hover{color:#151920}
|
10310 |
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-item-active{background:#ececec;color:#151920}
|
10311 |
.brz-ed .brz-ed-popup-two-header__tabs .brz-ed-popup-two-tab-icon{position:relative;margin-right:10px;top:1px}
|
10312 |
.brz-ed .brz-ed-popup-two-body{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:calc(100% - 60px)}
|
10313 |
.brz-ed .brz-ed-popup-two-body__sidebar{-ms-flex-preferred-size:256px;flex-basis:256px;max-width:256px;background-color:#2a2e37;height:100%;padding-bottom:10px}
|
10314 |
.brz-ed .brz-ed-popup-two-body__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;background-color:#ececec;height:100%}
|
10315 |
+
.brz-ed .brz-ed-popup-two-body__content--loading{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;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#828b92;font-size:35px}
|
10316 |
.brz-ed .brz-ed-popup-two-sidebar{margin-bottom:42px}
|
10317 |
.brz-ed .brz-ed-popup-two-sidebar:last-child{margin-bottom:0}
|
10318 |
.brz-ed .brz-ed-popup-two-sidebar-body{padding:40px 40px 0}
|
10328 |
.brz-ed .brz-ed-popup-two-sidebar-list__span-quantity{margin-left:auto;font-size:13px;padding-top:1px}
|
10329 |
.brz-ed .brz-ed-popup-two-sidebar li:last-of-type{padding-bottom:0}
|
10330 |
.brz-ed .brz-ed-popup-two-sidebar-title{color:rgba(255,255,255,.9);font-size:12px;font-weight:600;letter-spacing:1px;line-height:14px;font-family:pn,"Open Sans",Arial,sans-serif;text-transform:uppercase;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:23px}
|
10331 |
+
.brz-ed .brz-ed-popup-two-sidebar-title:after{content:"";width:100%;height:1px;background-color:#424951;margin-left:20px;display:block}
|
10332 |
+
.brz-ed .brz-ed-popup-two-blocks{position:absolute;width:85.9375%;height:89.537037%;max-width:1650px;max-height:967px;top:0;right:0;bottom:0;left:0;margin:auto;border-radius:5px;overflow:hidden;-webkit-box-shadow:0 0 45px 10px rgba(3,8,15,.2);box-shadow:0 0 45px 10px rgba(3,8,15,.2)}
|
|
|
|
|
10333 |
.brz-ed .brz-ed-popup-two-blocks__grid{padding:40px 22.5px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}
|
10334 |
.brz-ed .brz-ed-popup-two-blocks__grid__column{width:100%}
|
10335 |
.brz-ed .brz-ed-popup-two-blocks__grid-clear{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}
|
10338 |
.brz-ed .brz-ed-popup-two-blocks__grid-clear-image-global{width:524px;height:207px;margin-top:-28px;pointer-events:none}
|
10339 |
.brz-ed .brz-ed-popup-two-block{position:relative;margin:0 17.5px 35px;cursor:pointer;outline:3px solid transparent;-webkit-transition:outline .3s ease-in-out;transition:outline .3s ease-in-out;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.1);box-shadow:0 1px 5px 0 rgba(0,0,0,.1);border-radius:3px}
|
10340 |
.brz-ed .brz-ed-popup-two-block:last-child{margin-bottom:0}
|
10341 |
+
.brz-ed .brz-ed-popup-two-block:hover .brz-ed-popup-two-block-remove{opacity:1;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}
|
10342 |
+
.brz-ed .brz-ed-popup-two-block:hover .brz-ed-popup-two-block-item:before{border-color:#3dbfe8}
|
10343 |
+
.brz-ed .brz-ed-popup-two-block:hover .brz-ed-popup-two-block-item:after{border-color:#ececec}
|
10344 |
.brz-ed .brz-ed-popup-two-block__span-pro{height:16px;width:28px;border-radius:4px;background-color:#d62c64;display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;top:10px;right:10px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;font-family:pn,"Open Sans",Arial,sans-serif;font-size:9px;text-transform:uppercase;padding-top:1px;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}
|
10345 |
+
.brz-ed .brz-ed-popup-two-block__span-lock{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#d62c64;opacity:0;z-index:4;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;width:30px;height:30px;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}
|
10346 |
+
.brz-ed .brz-ed-popup-two-block--pro .brz-ed-tooltip__content{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}
|
10347 |
+
.brz-ed .brz-ed-popup-two-block--pro .brz-ed-popup-two-block__span-pro,.brz-ed .brz-ed-popup-two-block--pro:hover .brz-ed-popup-two-block__span-lock{opacity:1}
|
10348 |
+
.brz-ed .brz-ed-popup-two-block--pro:hover .brz-ed-popup-two-block-item:before{border-color:#d62c64;background-color:rgba(255,255,255,.9)}
|
10349 |
+
.brz-ed .brz-ed-popup-two-block--layout{overflow:hidden}
|
10350 |
+
.brz-ed .brz-ed-popup-two-block--layout .brz-ed-popup-two-block-item:before,.brz-ed .brz-ed-popup-two-block--layout .brz-ed-popup-two-block-item:hover:before{background-color:transparent}
|
10351 |
+
.brz-ed .brz-ed-popup-two-block-item:after,.brz-ed .brz-ed-popup-two-block-item:before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;pointer-events:none;border:3px solid transparent;-webkit-transition:border-color .3s ease-in-out,background-color .3s ease-in-out;transition:border-color .3s ease-in-out,background-color .3s ease-in-out}
|
10352 |
+
.brz-ed .brz-ed-popup-two-block-item:before{z-index:3;border-radius:3px;background-color:transparent}
|
10353 |
+
.brz-ed .brz-ed-popup-two-block-item:after{z-index:2}
|
10354 |
+
.brz-ed .brz-ed-popup-two-block-item .brz-ed-badge{position:absolute;top:7px;right:7px;z-index:3}
|
10355 |
+
.brz-ed .brz-ed-popup-two-block-item--active .brz-ed-popup-two-block__span-lock{opacity:1}
|
10356 |
+
.brz-ed .brz-ed-popup-two-block-item--active:before{border-color:#d62c64;background-color:rgba(255,255,255,.9)}
|
10357 |
.brz-ed .brz-ed-popup-two-block__blank-first{height:163px;background:#fff;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}
|
10358 |
.brz-ed .brz-ed-popup-two-block__blank-first .brz-p{color:rgba(3,8,15,.92);font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;font-weight:600;line-height:18px;padding-left:20px}
|
10359 |
.brz-ed .brz-ed-popup-two-block__blank-first .brz-ed-container-trigger--small{position:relative;display:block;top:auto;right:auto;bottom:auto;left:auto;margin:0}
|
10360 |
+
.brz-ed .brz-ed-popup-two-block__blank-first .brz-ed-container-trigger--small:after,.brz-ed .brz-ed-popup-two-block__blank-first .brz-ed-container-trigger--small:before{width:3px;height:14px;margin:-7px 0 0 -1px}
|
10361 |
+
.brz-ed .brz-ed-popup-two-block__blank-first:after{border:3px solid #3dbfe8;opacity:0}
|
10362 |
+
.brz-ed .brz-ed-popup-two-block__blank-first:before{border:2px dashed #3dbfe8;opacity:1}
|
10363 |
.brz-ed .brz-ed-popup-two-block__blank-first:hover:after{border-radius:3px;border-color:#3dbfe8;opacity:1}
|
10364 |
.brz-ed .brz-ed-popup-two-block__blank-first:hover:before{opacity:0}
|
10365 |
+
.brz-ed .brz-ed-popup-two-block-remove{position:absolute;z-index:4;top:-7px;right:-7px;opacity:0;-webkit-transform:scale(.7);transform:scale(.7);-webkit-transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}
|
10366 |
+
.brz-ed .brz-ed-popup-two-block-info{width:calc(100% - 35px);height:300px;position:relative;margin:13px 17.5px 48px;z-index:1;opacity:0}
|
|
|
|
|
|
|
|
|
10367 |
.brz-ed .brz-ed-popup-two-block-info .brz-ed-option__block-thumbnail-loading{height:300px}
|
10368 |
.brz-ed .brz-ed-popup-two-block-info:last-child{margin-bottom:0}
|
10369 |
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block{width:100%;height:100%;position:absolute;top:0;left:0;margin:0}
|
10370 |
+
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block-item:after,.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block-item:before{border-top-width:3px;border-right-width:3px;border-bottom-width:38px;border-left-width:3px}
|
10371 |
+
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block-item:hover:before{border-color:#3dbfe8}
|
10372 |
+
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block-item:hover:after{border-color:#ececec}
|
10373 |
+
.brz-ed .brz-ed-popup-two-block-info .brz-ed-popup-two-block__span-lock{display:none}
|
10374 |
+
.brz-ed .brz-ed-popup-two-block-info-downline{width:100%;height:38px;padding:0 17px;position:absolute;bottom:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;z-index:3;opacity:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:0 0 3px 3px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;pointer-events:none}
|
10375 |
.brz-ed .brz-ed-popup-two-block-info:hover .brz-ed-popup-two-block-info-downline{opacity:1}
|
10376 |
.brz-ed .brz-ed-popup-two-block-info-title{color:rgba(3,8,15,.92);font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;font-weight:600}
|
10377 |
.brz-ed .brz-ed-popup-two-block-info-color{height:7px;position:absolute;top:-7px;left:15px;right:15px;z-index:0;pointer-events:none;border-radius:3px 3px 0 0;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.3);box-shadow:0 1px 5px 0 rgba(0,0,0,.3)}
|
10378 |
.brz-ed .brz-ed-popup-two-block-info-color-opacity{height:7px;opacity:.35;position:absolute;top:-6px;right:15px;left:15px;border-radius:3px 3px 0 0}
|
10379 |
+
.brz-ed .brz-ed-popup-two-block .brz-observer__image{position:relative}
|
10380 |
+
.brz-ed .brz-ed-popup-two-block .brz-observer__image .brz-img{position:absolute;width:100%;height:100%;top:0;left:0}
|
10381 |
.brz-ed .brz-ed-popup-two-details{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-top:43px;padding-bottom:60px}
|
10382 |
.brz-ed .brz-ed-popup-two-details-left{width:600px;margin:0 37px 0 17px}
|
10383 |
.brz-ed .brz-ed-popup-two-details-back{height:32px;line-height:20px;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;font-weight:600;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;margin-bottom:20px;-webkit-transition:color .3s ease;transition:color .3s ease}
|
10394 |
.brz-ed .brz-ed-popup-two-details-page{height:84.71%}
|
10395 |
.brz-ed .brz-ed-popup-two-details-page-select{width:150px;height:150px;overflow:hidden;margin:0 10px 20px;border-radius:3px;-webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.1);box-shadow:0 1px 5px 0 rgba(0,0,0,.1);position:relative;display:inline-block;cursor:pointer}
|
10396 |
.brz-ed .brz-ed-popup-two-details-page-select .brz-ed-animated--spin{position:absolute;top:0;right:0;bottom:0;left:0;color:rgba(94,100,111,.6);font-size:24px;margin:auto}
|
10397 |
+
.brz-ed .brz-ed-popup-two-details-page-select:after,.brz-ed .brz-ed-popup-two-details-page-select:before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;border-radius:3px;pointer-events:none;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}
|
10398 |
+
.brz-ed .brz-ed-popup-two-details-page-select:before{border:3px solid #3dbfe8;z-index:2}
|
10399 |
+
.brz-ed .brz-ed-popup-two-details-page-select:after{border:3px solid #ececec;z-index:1}
|
10400 |
.brz-ed .brz-ed-popup-two-details-page-select:hover:after,.brz-ed .brz-ed-popup-two-details-page-select:hover:before{opacity:1}
|
10401 |
.brz-ed .brz-ed-popup-two-details-page-select-active{width:100%;height:30px;background:#3dbfe8;position:absolute;bottom:0;left:0;color:rgba(3,8,15,.92);font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:30px;padding-left:10px;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}
|
10402 |
+
.brz-ed .brz-ed-popup-two-details-page-select-active-block:after,.brz-ed .brz-ed-popup-two-details-page-select-active-block:before{opacity:1}
|
10403 |
.brz-ed .brz-ed-popup-two-details-page-select-active-block .brz-ed-popup-two-details-page-select-active{opacity:1}
|
10404 |
.brz-ed .brz-ed-popup-two-details-page img{width:100%}
|
10405 |
.brz-ed .brz-ed-popup-two-details-footer{width:100%;height:60px;background:#fff;position:absolute;bottom:0;left:0;z-index:2}
|
10410 |
.brz-ed .brz-ed-popup-two-details-footer-demo{border-radius:3px;background-color:#818a91;color:#fff;font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;font-weight:600;line-height:18px;padding:9px 40px;cursor:pointer}
|
10411 |
.brz-ed .brz-ed-popup-two-details-footer-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
10412 |
.brz-ed .brz-ed-popup-two-details-footer-radio-button{margin-right:25px;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:16px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
|
10413 |
+
.brz-ed .brz-ed-popup-two-details-footer-radio-button--pro{cursor:auto}
|
10414 |
.brz-ed .brz-ed-popup-two-details-footer-radio-icon{margin-right:8px;font-size:14px}
|
10415 |
@media only screen and (max-width:1460px){.brz-ed .brz-ed-popup-two-blocks{width:100%;height:100vh;border-radius:0;margin:0}
|
10416 |
+
.brz-ed .brz-ed-popup-two-details-page-select{width:29%}}.brz-ed .brz-ed-popup-integrations{font-family:pn,"Open Sans",Arial,sans-serif}
|
10417 |
+
.brz-ed .brz-ed-popup-integrations .brz-ed-fixed-scroll{-webkit-transform:none;transform:none;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}
|
10418 |
+
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-wrapper{position:relative;top:0;left:0;-webkit-transform:none;transform:none;overflow:hidden}
|
10419 |
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:560px;overflow:hidden}
|
10420 |
.brz-ed .brz-ed-popup-integrations .brz-ed-alert{margin-bottom:26px}
|
10421 |
.brz-ed .brz-ed-popup-integrations__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track{right:0;width:5px}
|
10422 |
.brz-ed .brz-ed-popup-integrations__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track>.brz-ed-tall-thumb{left:0;bottom:0;border-radius:2px;background-color:#cbcdcf}
|
10423 |
+
.brz-ed .brz-ed-popup-integrations__description{font-size:15px;font-weight:500;color:#626b70;margin-top:18px}
|
10424 |
.brz-ed .brz-ed-popup-integrations__apps{margin:22px 18px 0 24px}
|
10425 |
+
.brz-ed .brz-ed-popup-integrations-apps__scroll-pane{overflow:auto}
|
10426 |
.brz-ed .brz-ed-popup-integrations-apps__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track{top:15px!important;right:7px;bottom:15px!important;width:5px;height:auto!important}
|
10427 |
.brz-ed .brz-ed-popup-integrations-apps__scroll-pane.brz-ed-scroll-pane>.brz-ed-tall-track>.brz-ed-tall-thumb{left:0;bottom:0;border-radius:2px;background-color:#cbcdcf}
|
10428 |
.brz-ed .brz-ed-popup-integrations__app{max-width:114px;-webkit-box-flex:1;-ms-flex:1 1 114px;flex:1 1 114px;margin:18px 12px;text-align:center;cursor:pointer}
|
10432 |
.brz-ed .brz-ed-popup-integrations__app--connected .brz-ed-popup-integrations__app-logo:after,.brz-ed .brz-ed-popup-integrations__app--connected .brz-ed-popup-integrations__app-logo:hover:after{border-color:#48be24}
|
10433 |
.brz-ed .brz-ed-popup-integrations__app--loading{cursor:progress;pointer-events:none}
|
10434 |
.brz-ed .brz-ed-popup-integrations__app--loading .brz-ed-popup-integrations__app-logo:after,.brz-ed .brz-ed-popup-integrations__app--loading .brz-ed-popup-integrations__app-logo:hover:after{border-color:#3dbfe8}
|
10435 |
+
.brz-ed .brz-ed-popup-integrations__app--pro{color:#d62c64}
|
10436 |
+
.brz-ed .brz-ed-popup-integrations__app--pro .brz-ed-popup-integrations__app-logo--open:after,.brz-ed .brz-ed-popup-integrations__app--pro .brz-ed-popup-integrations__app-logo:hover:after{border-color:#d62c64;background-color:rgba(255,255,255,.9);-webkit-transition:.2s linear border-color,.2s linear background-color;transition:.2s linear border-color,.2s linear background-color}
|
10437 |
+
.brz-ed .brz-ed-popup-integrations__app--pro .brz-ed-popup-integrations__app-logo--open .brz-ed-popup-integrations__app-icon,.brz-ed .brz-ed-popup-integrations__app--pro .brz-ed-popup-integrations__app-logo:hover .brz-ed-popup-integrations__app-icon{opacity:1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10438 |
+
.brz-ed .brz-ed-popup-integrations__app--pro .brz-ed-badge{position:absolute;top:6px;right:6px;z-index:1}
|
10439 |
.brz-ed .brz-ed-popup-integrations__app-logo{position:relative;margin-bottom:12px;background-color:#fff}
|
10440 |
+
.brz-ed .brz-ed-popup-integrations__app-logo:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border:3px solid transparent;-webkit-transition:.2s linear border-color,.2s linear background-color;transition:.2s linear border-color,.2s linear background-color}
|
10441 |
.brz-ed .brz-ed-popup-integrations__app-logo:hover:after{border-color:#3dbfe8;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
|
10442 |
.brz-ed .brz-ed-popup-integrations__app-logo .brz-img{max-width:100%}
|
10443 |
.brz-ed .brz-ed-popup-integrations__app-icon{position:absolute;width:24px;height:24px;font-size:24px;top:-8px;right:-8px;border-radius:50%;background-color:#3dbfe8;color:#fff;text-align:center;z-index:2}
|
10444 |
.brz-ed .brz-ed-popup-integrations__app-icon i{font-size:12px;line-height:16px}
|
10445 |
+
.brz-ed .brz-ed-popup-integrations__app-icon--pro{color:inherit;font-size:16px;top:50%;left:50%;background-color:transparent;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity;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:30px;height:30px}
|
10446 |
.brz-ed .brz-ed-popup-integrations__app-title{font-family:inherit;font-size:13px;color:#626b70}
|
10447 |
.brz-ed .brz-ed-popup-integrations__connect{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-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;text-align:center}
|
10448 |
.brz-ed .brz-ed-popup-integrations__connect-head .brz-img{max-width:114px;margin-bottom:34px}
|
10454 |
.brz-ed .brz-ed-popup-integrations__connect-body .brz-input:focus~.brz-p{opacity:0;z-index:-1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10455 |
.brz-ed .brz-ed-popup-integrations__connect-body .brz-ed-btn-default{min-width:79px;margin-left:8px}
|
10456 |
.brz-ed .brz-ed-popup-integrations__connect-auth .brz-ed-btn{display:block;margin:0 auto 9px}
|
10457 |
+
.brz-ed .brz-ed-popup-integrations__connect-label{position:relative;display:block;width:283px;margin:0 auto 14px}
|
10458 |
.brz-ed .brz-ed-popup-integrations__connect-label:last-of-type{margin-bottom:37px}
|
10459 |
.brz-ed .brz-ed-popup-integrations__connect-label .brz-p{position:absolute;top:50%;left:20px;cursor:text;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10460 |
.brz-ed .brz-ed-popup-integrations__progress{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:28px}
|
10475 |
.brz-ed .brz-ed-popup-integrations-step__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:35px}
|
10476 |
.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(1){margin-right:auto}
|
10477 |
.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(1):last-child,.brz-ed .brz-ed-popup-integrations-step__buttons .brz-button:nth-child(2){margin-left:auto;margin-right:0}
|
|
|
|
|
|
|
10478 |
.brz-ed .brz-ed-popup-integrations-option__radio{color:#626b70}
|
10479 |
+
.brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-option{position:relative;font-size:15px;font-weight:500;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 30px 16px 4px;height:51px;cursor:pointer;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
|
10480 |
.brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-option--active{color:#3dbfe8}
|
10481 |
.brz-ed .brz-ed-popup-integrations-option__radio .brz-control__radio-check{margin-right:10px;vertical-align:middle}
|
10482 |
.brz-ed .brz-ed-popup-integrations-new__option{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:15px;line-height:1;color:#626b70;border-bottom:1px solid rgba(0,0,0,.1);padding:17px 0 17px 4px;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10486 |
.brz-ed .brz-ed-popup-integrations-step__lists-create{padding-top:0}
|
10487 |
.brz-ed .brz-ed-popup-integrations__confirmation .brz-control__select{width:224px}
|
10488 |
.brz-ed .brz-ed-popup-integrations__confirmation .brz-p{color:#626b70;font-size:15px}
|
10489 |
+
.brz-ed .brz-ed-popup-integrations--delete{cursor:pointer;color:#626b70;-webkit-transition:.2s linear color;transition:.2s linear color;font-size:0;line-height:1;position:absolute;top:50%;right:10px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
|
10490 |
+
.brz-ed .brz-ed-popup-integrations--delete:hover{color:#ed2164;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10491 |
+
.brz-ed .brz-ed-popup-integrations--delete .brz-icon-svg{font-size:16px}
|
10492 |
.brz-ed .brz-ed-popup-integrations-step__fields .brz-ed-popup-integrations-step__head{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}
|
10493 |
.brz-ed .brz-ed-popup-integrations-step__fields .brz-ed-popup-integrations-step__head .brz-p:last-child{max-width:223px;width:100%}
|
10494 |
+
.brz-ed .brz-ed-popup-integrations-fields__tooltip{font-size:0;line-height:1;margin-left:7px;color:#92989c;cursor:pointer}
|
10495 |
+
.brz-ed .brz-ed-popup-integrations-fields__tooltip .brz-icon-svg{font-size:13px}
|
10496 |
+
.brz-ed .brz-ed-popup-integrations-fields__info{line-height:1.5;font-family:pn,"Open Sans",Arial,sans-serif;background-color:#03080f;color:rgba(255,255,255,.8);text-align:left;padding:18px 20px;border-radius:10px;max-width:240px;font-size:13px;font-weight:500}
|
10497 |
+
.brz-ed .brz-ed-popup-integrations-fields__info .brz-span{color:#91cb8a}
|
10498 |
+
.brz-ed .brz-ed-popup-integrations-fields__info .brz-p{font-size:13px;font-weight:600}
|
10499 |
+
.brz-ed .brz-ed-popup-integrations-fields__info .brz-p:first-child{margin-bottom:13px}
|
10500 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-option{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 4px;color:#626b70;border-bottom:1px solid rgba(0,0,0,.1)}
|
10501 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-option>.brz-d-xs-flex{-ms-flex-preferred-size:40%;flex-basis:40%;max-width:40%}
|
10502 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-option .brz-p{font-size:15px;font-weight:500}
|
10503 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-option--big{padding-top:15px;padding-bottom:15px}
|
10504 |
.brz-ed .brz-ed-popup-integrations-step__fields-select{max-width:223px;width:100%}
|
10505 |
.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select{width:100%}
|
10506 |
.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-current,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-current:hover,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-options{background-color:#fff}
|
10507 |
.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-control__select-option .brz-strong{color:#ff0e0e;padding-left:5px}
|
10508 |
.brz-ed .brz-ed-popup-integrations-step__fields-input,.brz-ed .brz-ed-popup-integrations-step__fields-select{max-width:223px;width:100%}
|
10509 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-input,.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-input,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-textarea{width:100%;height:30px;font-size:13px;padding:0 10px;border-radius:5px;background-color:#fff;color:#383e48;border-color:transparent;outline:0}
|
10510 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-input .brz-textarea,.brz-ed .brz-ed-popup-integrations-step__fields-select .brz-textarea{height:auto;min-height:70px;resize:none;padding:10px}
|
10511 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-upload{-ms-flex-preferred-size:60%;flex-basis:60%;max-width:60%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
|
10512 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-upload .brz-span{font-size:13px;color:rgba(43,48,57,.85);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block}
|
10513 |
+
.brz-ed .brz-ed-popup-integrations-step__fields-upload .brz-button{margin-left:14px}
|
10514 |
.brz-ed .brz-ed-popup-integrations-step__done{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;margin:0;text-align:center;padding-top:0}
|
10515 |
.brz-ed .brz-ed-popup-integrations-step__done-icon{margin-bottom:30px;font-size:0;line-height:1;color:#48be24}
|
10516 |
.brz-ed .brz-ed-popup-integrations-step__done-icon .brz-icon-svg{font-size:47px}
|
10517 |
.brz-ed .brz-ed-popup-integrations-step__done-content{font-size:14px;color:#626b70;line-height:21px;max-width:234px;margin-bottom:42px}
|
10518 |
+
.brz-ed .brz-ed-popup-integration{height:100%;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-flex:1;-ms-flex:1;flex:1;min-height:0}
|
10519 |
+
.brz-ed .brz-ed-popup-integration-email{position:relative}
|
10520 |
+
.brz-ed .brz-ed-popup-integration-email__template{padding:0 36px;border-top:1px solid rgba(0,0,0,.1);-webkit-transform:translateY(calc(100% - 60px));transform:translateY(calc(100% - 60px));-webkit-transition:.18s ease-out transform;transition:.18s ease-out transform}
|
10521 |
+
.brz-ed .brz-ed-popup-integration-email__template--open{-webkit-transform:translate(0);transform:translate(0);-webkit-transition:.18s ease-in transform;transition:.18s ease-in transform}
|
10522 |
+
.brz-ed .brz-ed-popup-integration-email__template-head{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;padding-top:16px;padding-bottom:16px}
|
10523 |
+
.brz-ed .brz-ed-popup-integration-email__template-body{margin-bottom:23px;color:#626b70}
|
10524 |
+
.brz-ed .brz-ed-popup-integration-email__template-body .brz-textarea{display:block;width:100%;height:120px;max-height:230px;min-height:40px;font-size:13px;border-radius:5px;resize:vertical;padding:10px;background-color:#fff;border-color:transparent;color:#383e48;margin-bottom:16px;outline:0}
|
10525 |
+
.brz-ed .brz-ed-popup-integration-email__template-body .brz-p{font-size:13px;font-weight:500}
|
10526 |
+
.brz-ed .brz-ed-popup-integration-email__info{color:#91cb8a;padding:20px}
|
10527 |
+
.brz-ed .brz-ed-popup-integration-email__info .brz-icon-svg{font-size:8px;margin-right:auto;vertical-align:middle;color:rgba(255,255,255,.6);opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10528 |
+
.brz-ed .brz-ed-popup-integration-email__info .brz-ed-animated{-webkit-animation-duration:.7s;animation-duration:.7s}
|
10529 |
+
.brz-ed .brz-ed-popup-integration-email__info .brz-p{cursor:pointer;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}
|
10530 |
+
.brz-ed .brz-ed-popup-integration-email__info .brz-p .brz-span:first-child{margin-right:7px}
|
10531 |
+
.brz-ed .brz-ed-popup-integration-email__info .brz-p:hover .brz-icon-svg{opacity:1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}
|
10532 |
+
.brz-ed .brz-ed-popup-integration-email__info .brz-p:not(:last-child){margin-bottom:3px}
|
10533 |
+
.brz-ed .brz-ed-popup-integration-email__tooltip{margin-left:5px}
|
10534 |
+
.brz-ed .brz-ed-popup-integration-email__tooltip .brz-ed-tooltip__content{color:#92989c;font-size:12px;cursor:pointer}
|
10535 |
+
.brz-ed .brz-ed-popup-integration__font-name.brz-p{font-size:17px;cursor:pointer;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10536 |
+
.brz-ed .brz-ed-popup-integration__font-name.brz-p:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10537 |
@media screen and (max-height:899px){.brz-ed .brz-ed-popup-integrations .brz-ed-popup-content{height:465px}
|
10538 |
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__account .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:155px!important}
|
10539 |
.brz-ed .brz-ed-popup-integrations .brz-ed-popup-integrations-step__lists .brz-ed-popup-integrations__scroll-pane .brz-ed-scroll-inner{max-height:153px!important}
|
10568 |
.brz-ed .brz-ed-hotkeys-combination-container-column-label::before{content:"";position:absolute;width:28px;height:1px;background-color:#818a91;right:15px;top:0;bottom:0;margin:auto;display:block}
|
10569 |
.brz-ed .brz-ed-hotkeys-combination-container-column-label-2{color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:12px;font-weight:500;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;height:21px}
|
10570 |
.brz-ed .brz-ed-hotkeys-combination-container-column-label-2 .divider{margin-left:6px}
|
10571 |
+
.brz-ed .brz-ed-hotkeys-icons{width:11px;height:11px;margin-left:4px}}.brz-ed .brz-ed-popup-recaptcha-validation-error{text-align:left}
|
10572 |
+
.brz-ed .brz-ed-popup-recaptcha-validation-error .brz-p{max-width:100%;margin-bottom:5px}
|
10573 |
+
.brz-ed .brz-ed-popup-recaptcha__connect{height:100%}
|
10574 |
+
.brz-ed .brz-ed-popup-recaptcha__connect .brz-img,.brz-ed .brz-ed-popup-recaptcha__connect .brz-label{margin-bottom:34px}
|
10575 |
+
.brz-ed .brz-ed-popup-recaptcha__connect .brz-input{margin-right:10px}
|
10576 |
+
.brz-ed .brz-ed-popup-recaptcha__connect .brz-label{line-height:1.5}
|
10577 |
+
.brz-ed .brz-ed-popup-recaptcha__connect:before{content:"";display:inline-block;vertical-align:middle;height:100%}
|
10578 |
+
.brz-ed .brz-ed-popup-recaptcha__container{display:inline-block;vertical-align:middle;padding:10px 20px;width:100%;text-align:center}
|
10579 |
+
.brz-ed .brz-ed-popup-recaptcha__confirmation{font-size:14px}
|
10580 |
+
.brz-ed .brz-ed-popup-fonts{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;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}
|
10581 |
+
.brz-ed .brz-ed-popup-fonts__lists{margin:22px 18px 0 24px}
|
10582 |
+
.brz-ed .brz-ed-popup-fonts__item{-webkit-box-flex:1;-ms-flex:1 1 114px;flex:1 1 114px;max-width:114px;margin:18px 12px;text-align:center;position:relative}
|
10583 |
+
.brz-ed .brz-ed-popup-fonts__item-logo{height:114px;background-color:#fff;margin-bottom:12px;line-height:114px;font-size:50px;position:relative;cursor:pointer}
|
10584 |
+
.brz-ed .brz-ed-popup-fonts__item-logo:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border:3px solid transparent;-webkit-transition:.3s ease-in-out border-color;transition:.3s ease-in-out border-color}
|
10585 |
+
.brz-ed .brz-ed-popup-fonts__item-logo:hover:after{border-color:#3dbfe8;-webkit-transition:.3s ease-in-out border-color;transition:.3s ease-in-out border-color}
|
10586 |
+
.brz-ed .brz-ed-popup-fonts__item-title{font-family:inherit;font-size:13px;color:#626b70}
|
10587 |
+
.brz-ed .brz-ed-popup-fonts__delete{position:absolute;top:-7px;right:-7px;opacity:0;-webkit-transform:scale(.7);transform:scale(.7);z-index:2;-webkit-transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}
|
10588 |
+
.brz-ed .brz-ed-popup-fonts__item:hover .brz-ed-popup-fonts__delete{opacity:1;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out;transition:transform .3s ease-in-out,opacity .3s ease-in-out,-webkit-transform .3s ease-in-out}
|
10589 |
+
.brz-ed .brz-ed-draggable{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}
|
10590 |
.brz-ed .brz-ed-draggable-active{opacity:1;-webkit-transition-delay:.5s;transition-delay:.5s}
|
10591 |
.brz-ed .brz-ed-draggable__column{position:absolute;top:0;z-index:1030;width:20px;height:100%;cursor:col-resize}
|
10592 |
+
.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:#3dbfe8}
|
10593 |
.brz-ed .brz-ed-draggable__column--left{left:-10px}
|
10594 |
.brz-ed .brz-ed-draggable__column--right{right:-10px}
|
10595 |
.brz-ed .brz-ed-draggable__column--red .brz-ed-draggable__column--item{background-color:#ed2164}
|
10622 |
.brz-ed .brz-ed-box__resizer--bottom-center{cursor:ns-resize;left:50%;margin-left:-5px;bottom:-6px;top:auto}
|
10623 |
.brz-ed .brz-ed-box__resizer--bottom-right{cursor:nwse-resize;bottom:-5px;right:-5px;top:auto}
|
10624 |
.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}
|
10625 |
+
.brz-ed .brz-ed-sidebar__edit-button{color:#fff;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;margin-left:auto;cursor:pointer}
|
10626 |
+
.brz-ed .brz-ed-sidebar__edit-button:hover{color:#3dbfe8}
|
10627 |
+
.brz-ed .brz-ed-sidebar .brz-ed-sidebar__add-elements--separator-title{width:182px;margin:11px auto 15px 49px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:10px;font-family:pn,"Open Sans",Arial,sans-serif;font-weight:600;color:#818a91;text-transform:uppercase}
|
10628 |
+
.brz-ed .brz-ed-sidebar .brz-ed-sidebar__add-elements--separator-title::after,.brz-ed .brz-ed-sidebar .brz-ed-sidebar__add-elements--separator-title::before{content:"";height:1px;background:rgba(255,255,255,.1);margin-top:-1px}
|
10629 |
+
.brz-ed .brz-ed-sidebar .brz-ed-sidebar__add-elements--separator-title::before{min-width:11px;margin-right:5px}
|
10630 |
+
.brz-ed .brz-ed-sidebar .brz-ed-sidebar__add-elements--separator-title::after{width:100%;margin-left:7px}
|
10631 |
+
.brz-ed .brz-ed-sidebar__checked{width:16px;height:16px;font-size:16px;border-radius:50%;position:absolute;top:4px;left:8px;background:#000}
|
10632 |
+
.brz-ed .brz-ed-sidebar__checked .brz-icon-svg{color:#22afda}
|
10633 |
+
.brz-ed .brz-ed-sidebar__edit{width:100%;height:100%;position:absolute;top:0;left:0;z-index:10;cursor:pointer}
|
10634 |
+
.brz-ed .brz-ed-sidebar__edit .brz-ed-sidebar__checked{border:1px solid rgba(129,138,145,.6)}
|
10635 |
+
.brz-ed .brz-ed-sidebar__edit .brz-icon-svg{opacity:0}
|
10636 |
+
.brz-ed .brz-ed-sidebar__edit--checked .brz-ed-sidebar__checked{border:0;background-color:#0085ba}
|
10637 |
+
.brz-ed .brz-ed-sidebar__edit--checked .brz-icon-svg{opacity:1}
|
10638 |
+
.brz-ed .brz-ed-sidebar__search{width:182px;margin:48px auto 18px 49px;position:relative;font-size:12px}
|
10639 |
+
.brz-ed .brz-ed-sidebar__search .brz-input{width:100%;background:0 0;border:0;outline:0;border-bottom:1px solid rgba(255,255,255,.1);padding-left:31px;padding-top:1px;padding-bottom:12px;color:#fff;font-size:14px;font-family:pn,"Open Sans",Arial,sans-serif}
|
10640 |
+
.brz-ed .brz-ed-sidebar__search .brz-input::-webkit-input-placeholder{color:#818a91;font-style:italic}
|
10641 |
+
.brz-ed .brz-ed-sidebar__search .brz-input:-ms-input-placeholder{color:#818a91;font-style:italic}
|
10642 |
+
.brz-ed .brz-ed-sidebar__search .brz-input::-ms-input-placeholder{color:#818a91;font-style:italic}
|
10643 |
+
.brz-ed .brz-ed-sidebar__search .brz-input::placeholder{color:#818a91;font-style:italic}
|
10644 |
+
.brz-ed .brz-ed-sidebar__button-search{position:absolute;top:2px;left:6px}
|
10645 |
+
.brz-ed .brz-ed-sidebar__button-search .brz-icon-svg{color:#818a91}
|
10646 |
.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}
|
10647 |
.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)}
|
10648 |
.brz-ed .brz-ed-sidebar__control__item--active,.brz-ed .brz-ed-sidebar__control__item:hover{color:#3dbfe8}
|
10682 |
.brz-ed .brz-ed-sidebar__btn{height:48px;color:#fff;-ms-flex-preferred-size:50%;flex-basis:50%;font-size:12px;font-family:pn,"Open Sans",Arial,sans-serif;letter-spacing:.5px;font-weight:600;text-transform:uppercase;text-align:center;line-height:48px}
|
10683 |
.brz-ed .brz-ed-sidebar__btn--active{background-color:#91a652}
|
10684 |
.brz-ed .brz-ed-sidebar__btn:hover{color:#fff}
|
10685 |
+
.brz-ed .brz-ed-sidebar-sortable{padding-top:27px;height:100%}
|
10686 |
+
.brz-ed .brz-ed-sidebar-sortable--sorting{cursor:move!important}
|
10687 |
+
.brz-ed .brz-ed-sidebar-sortable--sorting .brz-ed-sidebar-block-item{border:none!important}
|
10688 |
+
.brz-ed .brz-ed-sidebar-sortable--sorting .brz-ed-sidebar-block-item .brz-ed-sidebar-block-image{cursor:move!important}
|
10689 |
+
.brz-ed .brz-ed-sidebar-sortable--sorting .brz-ed-sidebar-block-item .brz-ed-sidebar-block-remove{display:none!important}
|
10690 |
+
.brz-ed .brz-ed-sidebar-sortable--sorting .brz-ed-sidebar-block-item .brz-ed-sidebar-block-layout{opacity:0!important}
|
10691 |
.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}
|
10692 |
.brz-ed .brz-ed-sidebar-block-item:first-child{margin-top:12px}
|
10693 |
.brz-ed .brz-ed-sidebar-block-item:hover{border-top-color:#286b85;border-bottom-color:#286b85}
|
10694 |
.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-remove{display:block}
|
10695 |
.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-layout{opacity:1}
|
10696 |
+
.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-helper{cursor:move;z-index:99999999999}
|
10697 |
.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}
|
10698 |
.brz-ed .brz-ed-sidebar-block-image-loading{position:absolute;top:0;left:0;width:100%;height:100%;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;background-color:#474c55;color:#fff}
|
10699 |
.brz-ed .brz-ed-sidebar-block-image>.brz-img{position:absolute;top:0;left:0;display:block;max-width:100%}
|
10717 |
.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-control__focal-point{display:inline-block}
|
10718 |
.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-control__focal-point__delete .brz-icon-svg{margin:0}
|
10719 |
.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__wp-feature__image .brz-ed-option__label{margin-bottom:6px}
|
10720 |
+
.brz-ed .brz-ed-sidebar__add-elements{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:38px}
|
10721 |
+
.brz-ed .brz-ed-sidebar__add-elements--base{padding-bottom:0}
|
10722 |
.brz-ed .brz-ed-sidebar__add-elements__item{position:relative;padding:7px 11px 14px;text-align:center;line-height:1;font-size:0}
|
10723 |
.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}
|
10724 |
.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}
|
10728 |
.brz-ed .brz-ed-sidebar__add-elements__text{font-size:12px;font-family:pn,"Open Sans",Arial,sans-serif;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}
|
10729 |
.brz-ed .brz-ed-sidebar__add-elements--separator{margin:8px 49px 18px;border:0;border-top:1px solid #3c424d}
|
10730 |
.brz-ed .brz-ed-sidebar__add-elements__tooltip{margin-bottom:-7px;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}
|
10731 |
+
.brz-ed .brz-ed-sidebar__add-elements:last-child{padding-bottom:40px}
|
10732 |
.brz-ed .brz-ed-sidebar__right{right:0;left:auto;width:auto}
|
10733 |
.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content{left:auto;right:0}
|
10734 |
.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content.active{-webkit-animation-name:shadow-animation;animation-name:shadow-animation}
|
10820 |
.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}
|
10821 |
.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}
|
10822 |
.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}
|
10823 |
+
.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 45px 0;position:relative}
|
10824 |
+
.brz-ed .brz-ed-font__typography .brz-ed-scroll-pane{height:165px;overflow:hidden}
|
10825 |
+
.brz-ed .brz-ed-font__typography-adder{cursor:pointer;position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;bottom:14px;left:27px;color:#818a91;font-weight:600;font-size:14px;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10826 |
+
.brz-ed .brz-ed-font__typography-adder:hover{color:#3ebfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
|
10827 |
+
.brz-ed .brz-ed-font__typography-adder .brz-icon-svg{margin-right:10px}
|
10828 |
.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}
|
10829 |
.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}
|
10830 |
.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}
|
10882 |
.brz-ed .brz-ed-border--grey:after,.brz-ed .brz-ed-border--grey:before{border-color:#879294}
|
10883 |
.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)}
|
10884 |
.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)}
|
10885 |
+
.brz-ed .brz-ed-border--blue:after,.brz-ed .brz-ed-border--blue:before{border-color:#3dbfe8}
|
10886 |
+
.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#3dbfe8),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#3dbfe8 44%,rgba(255,255,255,0) 0)}
|
10887 |
+
.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#3dbfe8),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#3dbfe8 44%,rgba(255,255,255,0) 0)}
|
10888 |
.brz-ed .brz-ed-border--red:after,.brz-ed .brz-ed-border--red:before{border-color:#ed2164}
|
10889 |
.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)}
|
10890 |
.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)}
|
10894 |
.brz-ed .brz-ed-border--solid:after,.brz-ed .brz-ed-border--solid:before{border-style:solid}
|
10895 |
.brz-ed .brz-ed-border--dotted:after,.brz-ed .brz-ed-border--dotted:before{border-style:dotted}
|
10896 |
.brz-ed .brz-ed-border--active-dotted:after,.brz-ed .brz-ed-border--active-dotted:before{border-style:dotted!important}
|
10897 |
+
.brz-ed .brz-ed-border--active-solid:after,.brz-ed .brz-ed-border--active-solid:before{background:#3dbfe8;border-style:solid!important}
|
10898 |
.brz-ed .brz-ed-border--active-dashed:after,.brz-ed .brz-ed-border--active-dashed:before{border-style:dashed!important}
|
10899 |
.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:after{left:0;right:0;top:0}
|
10900 |
.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:before{top:0;bottom:0;left:0}
|
10954 |
.brz-ed .brz-ed-content-editable-wrap *{cursor:default}
|
10955 |
.brz-ed .brz-ed-content-editable-wrap .ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}
|
10956 |
.brz-ed .brz-ed-content-editable-wrap.brz-ed-content-editable-focus *{cursor:auto}
|
10957 |
+
.brz-ed .brz-ed-content-editable-wrap .brz-population-mask,.brz-ed .brz-ed-content-editable-wrap span[data-population]{text-decoration:underline;-webkit-text-decoration-style:dashed;text-decoration-style:dashed}
|
10958 |
.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}
|
10959 |
.brz-ed #brz-ed-iframe.brz-ed-iframe--desktop{width:calc(100% - 48px)!important}
|
10960 |
.brz-ed .brz-ed-iframe--desktop{min-width:1170px;margin-left:48px!important;max-width:100%;-webkit-box-shadow:none;box-shadow:none}
|
11022 |
.brz-ed .brz-columns>.brz-ed-border>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
|
11023 |
.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{left:-2px}
|
11024 |
.brz-ed .brz-columns .brz-ed-border__column--empty{min-height:125px}
|
11025 |
+
.brz-ed .brz-columns .brz-ed-border__column--empty>.brz-bg{padding:0;margin:0;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}
|
11026 |
.brz-ed.brz-ed--tablet .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed.brz-ed--tablet .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed.brz-ed--tablet .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-2:after{left:0}
|
11027 |
.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}
|
11028 |
.brz-ed .brz-ed-border__wrapper{height:auto}
|
public/editor-build/editor/css/preview.css
CHANGED
@@ -2623,19 +2623,19 @@ body.modal-open .mm-slideout {
|
|
2623 |
.brz .brz-b,
|
2624 |
.brz .brz-strong {
|
2625 |
font-weight: 700; }
|
2626 |
-
.brz .brz-a {
|
2627 |
color: #3dbfe8;
|
2628 |
text-decoration: none;
|
2629 |
background-color: transparent;
|
2630 |
-webkit-text-decoration-skip: objects;
|
2631 |
-webkit-box-shadow: none;
|
2632 |
box-shadow: none; }
|
2633 |
-
.brz .brz-a[href]:hover {
|
2634 |
color: #1aabd8;
|
2635 |
-webkit-box-shadow: none;
|
2636 |
box-shadow: none;
|
2637 |
cursor: pointer; }
|
2638 |
-
.brz .brz-a:focus, .brz .brz-a:active, .brz .brz-a:hover {
|
2639 |
outline: none; }
|
2640 |
.brz .brz-a.brz-btn[href] {
|
2641 |
text-decoration: none; }
|
@@ -2699,6 +2699,8 @@ body.modal-open .mm-slideout {
|
|
2699 |
-webkit-box-sizing: border-box;
|
2700 |
box-sizing: border-box;
|
2701 |
padding: 0; }
|
|
|
|
|
2702 |
.brz .brz-input[type="date"],
|
2703 |
.brz .brz-input[type="time"],
|
2704 |
.brz .brz-input[type="datetime-local"],
|
@@ -6560,6 +6562,8 @@ body.modal-open .mm-slideout {
|
|
6560 |
top: 0;
|
6561 |
left: 0;
|
6562 |
width: 100%; }
|
|
|
|
|
6563 |
@media (max-width: 991px) {
|
6564 |
.brz.brz-ed .brz-section__header--animated {
|
6565 |
padding-left: 15px;
|
@@ -6586,6 +6590,14 @@ body.modal-open .mm-slideout {
|
|
6586 |
display: flex;
|
6587 |
-ms-flex-wrap: wrap;
|
6588 |
flex-wrap: wrap; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6589 |
.brz .brz-columns {
|
6590 |
display: -webkit-box;
|
6591 |
display: -ms-flexbox;
|
@@ -6597,27 +6609,41 @@ body.modal-open .mm-slideout {
|
|
6597 |
flex-direction: column;
|
6598 |
min-height: 1px;
|
6599 |
-ms-flex-preferred-size: 100%;
|
6600 |
-
flex-basis: 100%;
|
|
|
6601 |
.brz .brz-columns > .brz-bg {
|
6602 |
-webkit-box-flex: 1;
|
6603 |
-ms-flex: 1 1 auto;
|
6604 |
flex: 1 1 auto; }
|
|
|
|
|
|
|
|
|
|
|
|
|
6605 |
.brz .brz-wrapper, .brz .brz-wrapper-clone {
|
6606 |
border-top: 1px solid transparent;
|
6607 |
border-bottom: 1px solid transparent;
|
6608 |
margin-top: -1px;
|
6609 |
margin-bottom: -1px; }
|
6610 |
-
|
6611 |
-
|
6612 |
-
|
6613 |
-
|
6614 |
-
|
6615 |
-
|
6616 |
-
.brz .brz-wrapper-
|
6617 |
-
|
6618 |
-
|
6619 |
-
|
6620 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6621 |
.brz .brz-bg {
|
6622 |
position: relative; }
|
6623 |
.brz .brz-bg-content {
|
@@ -6721,6 +6747,10 @@ body.modal-open .mm-slideout {
|
|
6721 |
text-decoration: none; }
|
6722 |
.brz .brz-btn .brz-span {
|
6723 |
display: block; }
|
|
|
|
|
|
|
|
|
6724 |
.brz .buttons {
|
6725 |
margin: -10px;
|
6726 |
-webkit-box-align: center;
|
@@ -6785,7 +6815,12 @@ body.modal-open .mm-slideout {
|
|
6785 |
flex-wrap: nowrap; }
|
6786 |
.brz .brz-icon-text .brz-text__editor,
|
6787 |
.brz .brz-icon-text .brz-text-btn {
|
6788 |
-
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
6789 |
.brz .brz-icon-text .brz-icon__container {
|
6790 |
min-width: auto; }
|
6791 |
.brz .brz-line {
|
@@ -6805,6 +6840,21 @@ body.modal-open .mm-slideout {
|
|
6805 |
width: 100%;
|
6806 |
display: inline-block;
|
6807 |
vertical-align: middle; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6808 |
.brz .brz-map .brz-iframe {
|
6809 |
position: absolute;
|
6810 |
top: 0;
|
@@ -6830,6 +6880,15 @@ body.modal-open .mm-slideout {
|
|
6830 |
.brz .brz-image picture {
|
6831 |
outline: none;
|
6832 |
border-radius: inherit; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6833 |
.brz .brz-ed-image__content {
|
6834 |
position: relative;
|
6835 |
width: 100%; }
|
@@ -6855,6 +6914,15 @@ body.modal-open .mm-slideout {
|
|
6855 |
left: 0;
|
6856 |
width: 100%;
|
6857 |
height: 100%; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6858 |
.brz .brz-image-fix-1-1 {
|
6859 |
padding-top: 100%; }
|
6860 |
.brz .brz-image-fix-2-1 {
|
@@ -6890,6 +6958,21 @@ body.modal-open .mm-slideout {
|
|
6890 |
width: 100%;
|
6891 |
display: inline-block;
|
6892 |
vertical-align: middle; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6893 |
.brz .brz-video .brz-iframe,
|
6894 |
.brz .brz-video .brz-video__cover {
|
6895 |
position: absolute;
|
@@ -6957,6 +7040,17 @@ body.modal-open .mm-slideout {
|
|
6957 |
height: auto;
|
6958 |
word-break: break-all;
|
6959 |
word-wrap: break-word; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6960 |
.brz .brz-embed-code .brz-shortcode__placeholder {
|
6961 |
height: 250px; }
|
6962 |
.brz .brz-embed-code img {
|
@@ -6967,10 +7061,11 @@ body.modal-open .mm-slideout {
|
|
6967 |
-ms-flex: 1 1 auto;
|
6968 |
flex: 1 1 auto;
|
6969 |
min-width: 0;
|
6970 |
-
white-space: pre-wrap;
|
6971 |
overflow-wrap: break-word;
|
6972 |
word-wrap: break-word;
|
6973 |
word-break: break-word; }
|
|
|
|
|
6974 |
.brz .brz-rich-text i,
|
6975 |
.brz .brz-rich-text em {
|
6976 |
font-style: italic; }
|
@@ -6997,6 +7092,11 @@ body.modal-open .mm-slideout {
|
|
6997 |
padding-right: 0.5em; }
|
6998 |
.brz .brz-rich-text .ql-editor {
|
6999 |
white-space: pre-wrap; }
|
|
|
|
|
|
|
|
|
|
|
7000 |
.brz .brz-rich-text h1,
|
7001 |
.brz .brz-rich-text h2,
|
7002 |
.brz .brz-rich-text h3,
|
@@ -7006,7 +7106,6 @@ body.modal-open .mm-slideout {
|
|
7006 |
margin-top: 0;
|
7007 |
margin-bottom: 0;
|
7008 |
padding: 0;
|
7009 |
-
text-shadow: none;
|
7010 |
text-transform: initial;
|
7011 |
text-decoration: initial; }
|
7012 |
.brz .brz-rich-text h1:before,
|
@@ -7022,7 +7121,6 @@ body.modal-open .mm-slideout {
|
|
7022 |
margin-bottom: 0;
|
7023 |
padding-top: 0;
|
7024 |
padding-bottom: 0;
|
7025 |
-
text-shadow: none;
|
7026 |
text-transform: initial;
|
7027 |
text-decoration: initial; }
|
7028 |
.brz .brz-rich-text span {
|
@@ -7070,6 +7168,11 @@ body.modal-open .mm-slideout {
|
|
7070 |
min-width: 10px; }
|
7071 |
.brz .brz-text__editor:empty:before {
|
7072 |
content: "\00a0\00a0"; }
|
|
|
|
|
|
|
|
|
|
|
7073 |
.brz .brz-counter {
|
7074 |
-webkit-transition: all 0.3s ease;
|
7075 |
transition: all 0.3s ease;
|
@@ -7103,7 +7206,32 @@ body.modal-open .mm-slideout {
|
|
7103 |
width: calc(16px + (0.075 * 100%));
|
7104 |
height: calc(16px + (0.075 * 100%)); }
|
7105 |
.brz .brz-soundcloud {
|
|
|
7106 |
font-size: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7107 |
.brz .slick-slider {
|
7108 |
position: relative;
|
7109 |
display: block;
|
@@ -7173,7 +7301,8 @@ body.modal-open .mm-slideout {
|
|
7173 |
transform: translateZ(0); }
|
7174 |
.brz .brz-slick-slider .slick-slide > div,
|
7175 |
.brz .brz-slick-slider .brz-section__items {
|
7176 |
-
height: 100%;
|
|
|
7177 |
.brz .brz-slick-slider--fade .slick-slide {
|
7178 |
height: auto;
|
7179 |
visibility: hidden; }
|
@@ -7455,21 +7584,21 @@ body.modal-open .mm-slideout {
|
|
7455 |
margin: 0;
|
7456 |
padding: 0; }
|
7457 |
.brz .brz-tabs__nav--item {
|
7458 |
-
|
|
|
|
|
7459 |
.brz .brz-tabs__nav--item:not(:last-child) {
|
7460 |
margin-right: 3px; }
|
7461 |
-
.brz .brz-tabs__nav--active {
|
7462 |
-
|
7463 |
-
|
7464 |
-
|
7465 |
-
|
7466 |
-
|
7467 |
-
|
7468 |
-
|
7469 |
-
|
7470 |
-
|
7471 |
-
.brz .brz-tabs__nav--active:after {
|
7472 |
-
right: -100vw; }
|
7473 |
.brz .brz-tabs__nav--button {
|
7474 |
padding: 10px 15px;
|
7475 |
cursor: pointer;
|
@@ -7590,6 +7719,48 @@ body.modal-open .mm-slideout {
|
|
7590 |
opacity: 1;
|
7591 |
-webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index;
|
7592 |
transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7593 |
.brz .brz-carousel {
|
7594 |
display: block;
|
7595 |
width: 100%; }
|
@@ -7993,6 +8164,24 @@ body.modal-open .mm-slideout {
|
|
7993 |
.brz .fb-comments span iframe[style] {
|
7994 |
width: 100% !important;
|
7995 |
min-width: 100% !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7996 |
@media (max-width: 767px) {
|
7997 |
.brz .brz-fs-xs-6 {
|
7998 |
font-size: 6px !important; }
|
@@ -15833,11 +16022,11 @@ body.modal-open .mm-slideout {
|
|
15833 |
list-style: none;
|
15834 |
margin: 0 auto;
|
15835 |
padding: 0; }
|
15836 |
-
.brz .brz-wp-shortcode__menu .menu
|
15837 |
position: relative;
|
15838 |
text-align: left;
|
15839 |
list-style: none; }
|
15840 |
-
.brz .brz-wp-shortcode__menu .menu
|
15841 |
display: block; }
|
15842 |
.brz .brz-wp-shortcode__menu .menu .sub-menu {
|
15843 |
position: absolute;
|
@@ -15852,7 +16041,7 @@ body.modal-open .mm-slideout {
|
|
15852 |
width: 280px;
|
15853 |
background-color: #33344b;
|
15854 |
z-index: 110; }
|
15855 |
-
.brz .brz-wp-shortcode__menu .menu .sub-menu
|
15856 |
display: block;
|
15857 |
margin: 0;
|
15858 |
padding: 0; }
|
@@ -15867,20 +16056,20 @@ body.modal-open .mm-slideout {
|
|
15867 |
color: #fcfcfc; }
|
15868 |
.brz .brz-wp-shortcode__menu .menu .sub-menu a:hover {
|
15869 |
background: rgba(36, 36, 53, 0.94); }
|
15870 |
-
.brz .brz-wp-shortcode__menu .menu >
|
15871 |
display: inline-block;
|
15872 |
-webkit-box-flex: 0;
|
15873 |
-ms-flex: 0 1 auto;
|
15874 |
flex: 0 1 auto;
|
15875 |
padding-top: 5px;
|
15876 |
padding-bottom: 5px; }
|
15877 |
-
.brz .brz-wp-shortcode__menu .menu >
|
15878 |
top: 100%;
|
15879 |
padding-top: 15px;
|
15880 |
padding-bottom: 15px; }
|
15881 |
-
.brz .brz-wp-shortcode__menu .menu >
|
15882 |
display: block; }
|
15883 |
-
.brz .brz-wp-shortcode__menu .menu >
|
15884 |
display: block; }
|
15885 |
.brz .brz-wp-shortcode__menu .menu > ul {
|
15886 |
margin: 0 !important; }
|
@@ -15964,20 +16153,25 @@ body.modal-open .mm-slideout {
|
|
15964 |
width: 100%;
|
15965 |
left: 15px;
|
15966 |
background-color: transparent; }
|
15967 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu
|
15968 |
padding: 5px; }
|
15969 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu
|
15970 |
background-color: transparent; }
|
15971 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu {
|
15972 |
display: block;
|
15973 |
left: 15px; }
|
15974 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu >
|
15975 |
padding: 0; }
|
15976 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu >
|
15977 |
top: 100%;
|
15978 |
padding: 5px 0; }
|
15979 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--
|
15980 |
-
display: inline-block; }
|
|
|
|
|
|
|
|
|
|
|
15981 |
|
15982 |
@media (min-width: 768px) and (max-width: 991px) {
|
15983 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu {
|
@@ -16001,9 +16195,9 @@ body.modal-open .mm-slideout {
|
|
16001 |
width: 100%;
|
16002 |
left: 15px;
|
16003 |
background-color: transparent; }
|
16004 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu
|
16005 |
padding: 5px; }
|
16006 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu
|
16007 |
background-color: transparent; }
|
16008 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu {
|
16009 |
display: block;
|
@@ -16013,5 +16207,5 @@ body.modal-open .mm-slideout {
|
|
16013 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu > .menu-item > .sub-menu {
|
16014 |
top: 100%;
|
16015 |
padding: 5px 0; }
|
16016 |
-
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--
|
16017 |
display: inline-block; } }
|
2623 |
.brz .brz-b,
|
2624 |
.brz .brz-strong {
|
2625 |
font-weight: 700; }
|
2626 |
+
.brz .brz-a:not(.brz-btn) {
|
2627 |
color: #3dbfe8;
|
2628 |
text-decoration: none;
|
2629 |
background-color: transparent;
|
2630 |
-webkit-text-decoration-skip: objects;
|
2631 |
-webkit-box-shadow: none;
|
2632 |
box-shadow: none; }
|
2633 |
+
.brz .brz-a:not(.brz-btn)[href]:hover {
|
2634 |
color: #1aabd8;
|
2635 |
-webkit-box-shadow: none;
|
2636 |
box-shadow: none;
|
2637 |
cursor: pointer; }
|
2638 |
+
.brz .brz-a:not(.brz-btn):focus, .brz .brz-a:not(.brz-btn):active, .brz .brz-a:not(.brz-btn):hover {
|
2639 |
outline: none; }
|
2640 |
.brz .brz-a.brz-btn[href] {
|
2641 |
text-decoration: none; }
|
2699 |
-webkit-box-sizing: border-box;
|
2700 |
box-sizing: border-box;
|
2701 |
padding: 0; }
|
2702 |
+
.brz .brz-input[type="number"] {
|
2703 |
+
-moz-appearance: textfield; }
|
2704 |
.brz .brz-input[type="date"],
|
2705 |
.brz .brz-input[type="time"],
|
2706 |
.brz .brz-input[type="datetime-local"],
|
6562 |
top: 0;
|
6563 |
left: 0;
|
6564 |
width: 100%; }
|
6565 |
+
.brz .brz-popup__inner {
|
6566 |
+
height: 100%; }
|
6567 |
@media (max-width: 991px) {
|
6568 |
.brz.brz-ed .brz-section__header--animated {
|
6569 |
padding-left: 15px;
|
6590 |
display: flex;
|
6591 |
-ms-flex-wrap: wrap;
|
6592 |
flex-wrap: wrap; }
|
6593 |
+
.brz .brz-row__container {
|
6594 |
+
position: relative; }
|
6595 |
+
.brz .brz-row__container .brz-link-container {
|
6596 |
+
position: absolute;
|
6597 |
+
height: 100%;
|
6598 |
+
width: 100%;
|
6599 |
+
top: 0;
|
6600 |
+
left: 0; }
|
6601 |
.brz .brz-columns {
|
6602 |
display: -webkit-box;
|
6603 |
display: -ms-flexbox;
|
6609 |
flex-direction: column;
|
6610 |
min-height: 1px;
|
6611 |
-ms-flex-preferred-size: 100%;
|
6612 |
+
flex-basis: 100%;
|
6613 |
+
will-change: flex, max-width; }
|
6614 |
.brz .brz-columns > .brz-bg {
|
6615 |
-webkit-box-flex: 1;
|
6616 |
-ms-flex: 1 1 auto;
|
6617 |
flex: 1 1 auto; }
|
6618 |
+
.brz .brz-columns .brz-container-link {
|
6619 |
+
position: absolute;
|
6620 |
+
height: 100%;
|
6621 |
+
width: 100%;
|
6622 |
+
top: 0;
|
6623 |
+
left: 0; }
|
6624 |
.brz .brz-wrapper, .brz .brz-wrapper-clone {
|
6625 |
border-top: 1px solid transparent;
|
6626 |
border-bottom: 1px solid transparent;
|
6627 |
margin-top: -1px;
|
6628 |
margin-bottom: -1px; }
|
6629 |
+
.brz .brz-wrapper-clone__wrap {
|
6630 |
+
height: 100%; }
|
6631 |
+
.brz .brz-wrapper-clone__wrap > div {
|
6632 |
+
-webkit-box-align: center;
|
6633 |
+
-ms-flex-align: center;
|
6634 |
+
align-items: center; }
|
6635 |
+
.brz .brz-wrapper-clone__wrap:after {
|
6636 |
+
content: "";
|
6637 |
+
display: table; }
|
6638 |
+
.brz .brz-wrapper-clone__wrap .brz-flex-xs-wrap {
|
6639 |
+
-webkit-box-flex: 1;
|
6640 |
+
-ms-flex: 1 1 auto;
|
6641 |
+
flex: 1 1 auto; }
|
6642 |
+
.brz .brz-wrapper-clone__item {
|
6643 |
+
position: relative;
|
6644 |
+
min-height: 1px;
|
6645 |
+
-ms-flex-preferred-size: auto;
|
6646 |
+
flex-basis: auto; }
|
6647 |
.brz .brz-bg {
|
6648 |
position: relative; }
|
6649 |
.brz .brz-bg-content {
|
6747 |
text-decoration: none; }
|
6748 |
.brz .brz-btn .brz-span {
|
6749 |
display: block; }
|
6750 |
+
.brz .brz-btn .brz-icon-svg {
|
6751 |
+
-webkit-box-flex: 1;
|
6752 |
+
-ms-flex: 1 0 auto;
|
6753 |
+
flex: 1 0 auto; }
|
6754 |
.brz .buttons {
|
6755 |
margin: -10px;
|
6756 |
-webkit-box-align: center;
|
6815 |
flex-wrap: nowrap; }
|
6816 |
.brz .brz-icon-text .brz-text__editor,
|
6817 |
.brz .brz-icon-text .brz-text-btn {
|
6818 |
+
width: 100%;
|
6819 |
+
white-space: pre-wrap; }
|
6820 |
+
.brz .brz-icon-text .brz-wrapper-clone {
|
6821 |
+
overflow-wrap: break-word;
|
6822 |
+
word-wrap: break-word;
|
6823 |
+
word-break: break-word; }
|
6824 |
.brz .brz-icon-text .brz-icon__container {
|
6825 |
min-width: auto; }
|
6826 |
.brz .brz-line {
|
6840 |
width: 100%;
|
6841 |
display: inline-block;
|
6842 |
vertical-align: middle; }
|
6843 |
+
.brz .brz-map::before {
|
6844 |
+
content: "";
|
6845 |
+
width: 100%;
|
6846 |
+
height: 100%;
|
6847 |
+
position: absolute;
|
6848 |
+
top: 0;
|
6849 |
+
left: 0;
|
6850 |
+
z-index: 2;
|
6851 |
+
display: block;
|
6852 |
+
pointer-events: none; }
|
6853 |
+
.brz .brz-map .brz-map-content {
|
6854 |
+
overflow: hidden;
|
6855 |
+
position: relative;
|
6856 |
+
height: 100%;
|
6857 |
+
width: 100%; }
|
6858 |
.brz .brz-map .brz-iframe {
|
6859 |
position: absolute;
|
6860 |
top: 0;
|
6880 |
.brz .brz-image picture {
|
6881 |
outline: none;
|
6882 |
border-radius: inherit; }
|
6883 |
+
.brz .brz-image::before {
|
6884 |
+
content: "";
|
6885 |
+
width: 100%;
|
6886 |
+
height: 100%;
|
6887 |
+
position: absolute;
|
6888 |
+
pointer-events: none;
|
6889 |
+
top: 0;
|
6890 |
+
left: 0;
|
6891 |
+
z-index: 1; }
|
6892 |
.brz .brz-ed-image__content {
|
6893 |
position: relative;
|
6894 |
width: 100%; }
|
6914 |
left: 0;
|
6915 |
width: 100%;
|
6916 |
height: 100%; }
|
6917 |
+
.brz .brz-ed-image__wrapper::before {
|
6918 |
+
content: "";
|
6919 |
+
width: 100%;
|
6920 |
+
height: 100%;
|
6921 |
+
position: absolute;
|
6922 |
+
pointer-events: none;
|
6923 |
+
top: 0;
|
6924 |
+
left: 0;
|
6925 |
+
z-index: 1; }
|
6926 |
.brz .brz-image-fix-1-1 {
|
6927 |
padding-top: 100%; }
|
6928 |
.brz .brz-image-fix-2-1 {
|
6958 |
width: 100%;
|
6959 |
display: inline-block;
|
6960 |
vertical-align: middle; }
|
6961 |
+
.brz .brz-video::before {
|
6962 |
+
content: "";
|
6963 |
+
width: 100%;
|
6964 |
+
height: 100%;
|
6965 |
+
position: absolute;
|
6966 |
+
top: 0;
|
6967 |
+
left: 0;
|
6968 |
+
z-index: 2;
|
6969 |
+
display: block;
|
6970 |
+
pointer-events: none; }
|
6971 |
+
.brz .brz-video .brz-video-content {
|
6972 |
+
overflow: hidden;
|
6973 |
+
position: relative;
|
6974 |
+
width: 100%;
|
6975 |
+
height: 100%; }
|
6976 |
.brz .brz-video .brz-iframe,
|
6977 |
.brz .brz-video .brz-video__cover {
|
6978 |
position: absolute;
|
7040 |
height: auto;
|
7041 |
word-break: break-all;
|
7042 |
word-wrap: break-word; }
|
7043 |
+
.brz .brz-embed-code::before {
|
7044 |
+
content: "";
|
7045 |
+
width: 100%;
|
7046 |
+
height: 100%;
|
7047 |
+
position: absolute;
|
7048 |
+
top: 0;
|
7049 |
+
left: 0;
|
7050 |
+
z-index: 2;
|
7051 |
+
display: block;
|
7052 |
+
pointer-events: none;
|
7053 |
+
overflow: hidden; }
|
7054 |
.brz .brz-embed-code .brz-shortcode__placeholder {
|
7055 |
height: 250px; }
|
7056 |
.brz .brz-embed-code img {
|
7061 |
-ms-flex: 1 1 auto;
|
7062 |
flex: 1 1 auto;
|
7063 |
min-width: 0;
|
|
|
7064 |
overflow-wrap: break-word;
|
7065 |
word-wrap: break-word;
|
7066 |
word-break: break-word; }
|
7067 |
+
.brz .brz-rich-text > * {
|
7068 |
+
white-space: pre-wrap; }
|
7069 |
.brz .brz-rich-text i,
|
7070 |
.brz .brz-rich-text em {
|
7071 |
font-style: italic; }
|
7092 |
padding-right: 0.5em; }
|
7093 |
.brz .brz-rich-text .ql-editor {
|
7094 |
white-space: pre-wrap; }
|
7095 |
+
.brz .brz-rich-text .brz-text-mask,
|
7096 |
+
.brz .brz-rich-text .brz-image-gradient {
|
7097 |
+
color: transparent !important;
|
7098 |
+
-webkit-background-clip: text;
|
7099 |
+
background-clip: text; }
|
7100 |
.brz .brz-rich-text h1,
|
7101 |
.brz .brz-rich-text h2,
|
7102 |
.brz .brz-rich-text h3,
|
7106 |
margin-top: 0;
|
7107 |
margin-bottom: 0;
|
7108 |
padding: 0;
|
|
|
7109 |
text-transform: initial;
|
7110 |
text-decoration: initial; }
|
7111 |
.brz .brz-rich-text h1:before,
|
7121 |
margin-bottom: 0;
|
7122 |
padding-top: 0;
|
7123 |
padding-bottom: 0;
|
|
|
7124 |
text-transform: initial;
|
7125 |
text-decoration: initial; }
|
7126 |
.brz .brz-rich-text span {
|
7168 |
min-width: 10px; }
|
7169 |
.brz .brz-text__editor:empty:before {
|
7170 |
content: "\00a0\00a0"; }
|
7171 |
+
.brz:not(.brz-ed) .brz-population-mask {
|
7172 |
+
background-clip: text;
|
7173 |
+
color: transparent !important;
|
7174 |
+
-webkit-background-clip: text;
|
7175 |
+
background-clip: text; }
|
7176 |
.brz .brz-counter {
|
7177 |
-webkit-transition: all 0.3s ease;
|
7178 |
transition: all 0.3s ease;
|
7206 |
width: calc(16px + (0.075 * 100%));
|
7207 |
height: calc(16px + (0.075 * 100%)); }
|
7208 |
.brz .brz-soundcloud {
|
7209 |
+
position: relative;
|
7210 |
font-size: 0; }
|
7211 |
+
.brz .brz-soundcloud::before {
|
7212 |
+
content: " ";
|
7213 |
+
position: absolute;
|
7214 |
+
width: 100%;
|
7215 |
+
height: 100%;
|
7216 |
+
z-index: 3;
|
7217 |
+
pointer-events: none; }
|
7218 |
+
.brz .brz-soundcloud .brz-soundCloud-content {
|
7219 |
+
overflow: hidden;
|
7220 |
+
position: relative;
|
7221 |
+
height: 100%;
|
7222 |
+
width: 100%; }
|
7223 |
+
.brz .brz-soundcloud .brz-soundCloud-content iframe {
|
7224 |
+
width: 100%; }
|
7225 |
+
.brz .brz-soundcloud .brz-soundCloud-content::before {
|
7226 |
+
content: "";
|
7227 |
+
width: 100%;
|
7228 |
+
height: 100%;
|
7229 |
+
position: absolute;
|
7230 |
+
top: 0;
|
7231 |
+
left: 0;
|
7232 |
+
z-index: 2;
|
7233 |
+
display: block;
|
7234 |
+
pointer-events: none; }
|
7235 |
.brz .slick-slider {
|
7236 |
position: relative;
|
7237 |
display: block;
|
7301 |
transform: translateZ(0); }
|
7302 |
.brz .brz-slick-slider .slick-slide > div,
|
7303 |
.brz .brz-slick-slider .brz-section__items {
|
7304 |
+
height: 100%;
|
7305 |
+
outline: none; }
|
7306 |
.brz .brz-slick-slider--fade .slick-slide {
|
7307 |
height: auto;
|
7308 |
visibility: hidden; }
|
7584 |
margin: 0;
|
7585 |
padding: 0; }
|
7586 |
.brz .brz-tabs__nav--item {
|
7587 |
+
position: relative;
|
7588 |
+
list-style: none;
|
7589 |
+
z-index: var(--zIndex); }
|
7590 |
.brz .brz-tabs__nav--item:not(:last-child) {
|
7591 |
margin-right: 3px; }
|
7592 |
+
.brz .brz-tabs__nav--active:before, .brz .brz-tabs__nav--active:after {
|
7593 |
+
content: "";
|
7594 |
+
position: absolute;
|
7595 |
+
width: 100vw;
|
7596 |
+
height: 2px;
|
7597 |
+
bottom: 0; }
|
7598 |
+
.brz .brz-tabs__nav--active:before {
|
7599 |
+
left: -100vw; }
|
7600 |
+
.brz .brz-tabs__nav--active:after {
|
7601 |
+
right: -100vw; }
|
|
|
|
|
7602 |
.brz .brz-tabs__nav--button {
|
7603 |
padding: 10px 15px;
|
7604 |
cursor: pointer;
|
7719 |
opacity: 1;
|
7720 |
-webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index;
|
7721 |
transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index; }
|
7722 |
+
.brz .brz-popup2 {
|
7723 |
+
position: fixed;
|
7724 |
+
width: 100%;
|
7725 |
+
height: 100%;
|
7726 |
+
top: 0;
|
7727 |
+
left: 0;
|
7728 |
+
z-index: 1070; }
|
7729 |
+
.brz .brz-popup2__close {
|
7730 |
+
position: absolute;
|
7731 |
+
z-index: 2;
|
7732 |
+
top: 36px;
|
7733 |
+
left: 50px;
|
7734 |
+
color: #fff;
|
7735 |
+
font-size: 0;
|
7736 |
+
cursor: pointer; }
|
7737 |
+
.brz .brz-popup2__close .brz-icon-svg {
|
7738 |
+
font-size: 26px; }
|
7739 |
+
.brz .brz-popup2 > .brz-ed-border {
|
7740 |
+
height: 100%; }
|
7741 |
+
.brz .brz-popup2__inner {
|
7742 |
+
height: 100%; }
|
7743 |
+
.brz .brz-popup2__inner > .brz-bg-content {
|
7744 |
+
max-height: 100%;
|
7745 |
+
overflow: auto;
|
7746 |
+
padding-top: 70px;
|
7747 |
+
padding-bottom: 70px; }
|
7748 |
+
.brz .brz-popup2__preview {
|
7749 |
+
z-index: -1;
|
7750 |
+
visibility: hidden;
|
7751 |
+
-webkit-transform: translate(-100%);
|
7752 |
+
transform: translate(-100%);
|
7753 |
+
opacity: 0;
|
7754 |
+
-webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index;
|
7755 |
+
transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index; }
|
7756 |
+
.brz .brz-popup2__preview.brz-popup2--opened {
|
7757 |
+
z-index: 1070;
|
7758 |
+
visibility: visible;
|
7759 |
+
-webkit-transform: translate(0);
|
7760 |
+
transform: translate(0);
|
7761 |
+
opacity: 1;
|
7762 |
+
-webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index;
|
7763 |
+
transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index; }
|
7764 |
.brz .brz-carousel {
|
7765 |
display: block;
|
7766 |
width: 100%; }
|
8164 |
.brz .fb-comments span iframe[style] {
|
8165 |
width: 100% !important;
|
8166 |
min-width: 100% !important; }
|
8167 |
+
.brz .brz-fb-page,
|
8168 |
+
.brz .brz-fb-embed,
|
8169 |
+
.brz .brz-fb-group {
|
8170 |
+
position: relative; }
|
8171 |
+
.brz .brz-fb-page::before,
|
8172 |
+
.brz .brz-fb-embed::before,
|
8173 |
+
.brz .brz-fb-group::before {
|
8174 |
+
content: "";
|
8175 |
+
width: 100%;
|
8176 |
+
height: 100%;
|
8177 |
+
position: absolute;
|
8178 |
+
top: 0;
|
8179 |
+
left: 0;
|
8180 |
+
z-index: 2;
|
8181 |
+
display: block;
|
8182 |
+
pointer-events: none; }
|
8183 |
+
.brz .brz-fb-comments {
|
8184 |
+
width: 100%; }
|
8185 |
@media (max-width: 767px) {
|
8186 |
.brz .brz-fs-xs-6 {
|
8187 |
font-size: 6px !important; }
|
16022 |
list-style: none;
|
16023 |
margin: 0 auto;
|
16024 |
padding: 0; }
|
16025 |
+
.brz .brz-wp-shortcode__menu .menu li[class*="menu-item"] {
|
16026 |
position: relative;
|
16027 |
text-align: left;
|
16028 |
list-style: none; }
|
16029 |
+
.brz .brz-wp-shortcode__menu .menu li[class*="menu-item"] a span {
|
16030 |
display: block; }
|
16031 |
.brz .brz-wp-shortcode__menu .menu .sub-menu {
|
16032 |
position: absolute;
|
16041 |
width: 280px;
|
16042 |
background-color: #33344b;
|
16043 |
z-index: 110; }
|
16044 |
+
.brz .brz-wp-shortcode__menu .menu .sub-menu li[class*="menu-item"] {
|
16045 |
display: block;
|
16046 |
margin: 0;
|
16047 |
padding: 0; }
|
16056 |
color: #fcfcfc; }
|
16057 |
.brz .brz-wp-shortcode__menu .menu .sub-menu a:hover {
|
16058 |
background: rgba(36, 36, 53, 0.94); }
|
16059 |
+
.brz .brz-wp-shortcode__menu .menu > li[class*="menu-item"] {
|
16060 |
display: inline-block;
|
16061 |
-webkit-box-flex: 0;
|
16062 |
-ms-flex: 0 1 auto;
|
16063 |
flex: 0 1 auto;
|
16064 |
padding-top: 5px;
|
16065 |
padding-bottom: 5px; }
|
16066 |
+
.brz .brz-wp-shortcode__menu .menu > li[class*="menu-item"] > .sub-menu {
|
16067 |
top: 100%;
|
16068 |
padding-top: 15px;
|
16069 |
padding-bottom: 15px; }
|
16070 |
+
.brz .brz-wp-shortcode__menu .menu > li[class*="menu-item"]:hover > .sub-menu {
|
16071 |
display: block; }
|
16072 |
+
.brz .brz-wp-shortcode__menu .menu > li[class*="menu-item"] > .sub-menu > li[class*="menu-item"]:hover > .sub-menu {
|
16073 |
display: block; }
|
16074 |
.brz .brz-wp-shortcode__menu .menu > ul {
|
16075 |
margin: 0 !important; }
|
16153 |
width: 100%;
|
16154 |
left: 15px;
|
16155 |
background-color: transparent; }
|
16156 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*="menu-item"] a {
|
16157 |
padding: 5px; }
|
16158 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*="menu-item"] a:hover {
|
16159 |
background-color: transparent; }
|
16160 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu {
|
16161 |
display: block;
|
16162 |
left: 15px; }
|
16163 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu > li[class*="menu-item"] {
|
16164 |
padding: 0; }
|
16165 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu > li[class*="menu-item"] > .sub-menu {
|
16166 |
top: 100%;
|
16167 |
padding: 5px 0; }
|
16168 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile__icon {
|
16169 |
+
display: inline-block; }
|
16170 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile > div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu li[class*="menu-item"] a {
|
16171 |
+
color: #fcfcfc; }
|
16172 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile > div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu li[class*="menu-item"] a:hover {
|
16173 |
+
color: #fff;
|
16174 |
+
background: rgba(36, 36, 53, 0.94); } }
|
16175 |
|
16176 |
@media (min-width: 768px) and (max-width: 991px) {
|
16177 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu {
|
16195 |
width: 100%;
|
16196 |
left: 15px;
|
16197 |
background-color: transparent; }
|
16198 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*="menu-item"] a {
|
16199 |
padding: 5px; }
|
16200 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*="menu-item"] a:hover {
|
16201 |
background-color: transparent; }
|
16202 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu {
|
16203 |
display: block;
|
16207 |
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu > .menu-item > .sub-menu {
|
16208 |
top: 100%;
|
16209 |
padding: 5px 0; }
|
16210 |
+
.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet__icon {
|
16211 |
display: inline-block; } }
|
public/editor-build/editor/fonts/icomoon.eot
DELETED
Binary file
|
public/editor-build/editor/fonts/icomoon.svg
DELETED
@@ -1,47 +0,0 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>Generated by IcoMoon</metadata>
|
5 |
-
<defs>
|
6 |
-
<font id="icomoon" horiz-adv-x="1024">
|
7 |
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
-
<missing-glyph horiz-adv-x="1024" />
|
9 |
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
10 |
-
<glyph unicode="" glyph-name="arrow-create-page" horiz-adv-x="456" d="M455.616 445.248c-0.128-1.12-0.32-2.048-0.608-3.136-0.8-2.816-2.176-5.376-4.096-7.744-0.576-0.768-0.576-1.728-1.28-2.432-0.416-0.416-0.992-0.544-1.44-0.928l-178.272-183.584c-8.736-8.736-22.912-8.736-31.68 0-8.736 8.736-8.736 22.912 0 31.68l141.056 154.4h-379.296v37.12h379.328l-146.368 146.336c-8.736 8.736-8.736 22.944 0 31.68s22.944 8.736 31.68 0l183.552-183.552c0.48-0.384 1.056-0.544 1.504-0.992 5.12-5.152 6.848-12.16 5.92-18.848z" />
|
11 |
-
<glyph unicode="" glyph-name="nav-page-external" horiz-adv-x="640" d="M463.552 444.448l-96.224 96.224c-4.576 4.576-12.032 4.576-16.608 0s-4.576-12.032 0-16.608l76.768-76.768h-198.912v-19.456h198.912l-73.952-80.96c-4.576-4.576-4.576-12.032 0-16.608s12.032-4.576 16.608 0l93.472 96.256c0.224 0.192 0.544 0.256 0.768 0.48 0.352 0.352 0.352 0.864 0.672 1.28 0.992 1.248 1.728 2.592 2.144 4.064 0.16 0.576 0.256 1.056 0.32 1.664 0.48 3.52-0.416 7.168-3.136 9.888-0.288 0.288-0.576 0.32-0.832 0.544zM587.84 736.448h-398.048l-189.408-191.424v-323.648c0-34.144 33.664-61.792 67.808-61.792h501.664c34.144 0 69.792 27.68 69.792 61.792v453.248c0.032 34.144-17.696 61.824-51.808 61.824zM189.792 674.624v-88.416c0-22.752-18.432-41.216-41.216-41.216h-90.4l131.616 129.632zM608.448 241.984c0-22.752-18.432-49.216-41.216-49.216h-494.464c-22.752 0-41.216 26.432-41.216 49.216v267.84h129.6c34.144 0 61.792 27.68 61.792 61.824v123.584h344.256c22.752 0 41.216-18.432 41.216-41.216l0.032-412.032z" />
|
12 |
-
<glyph unicode="" glyph-name="nav-page-home" horiz-adv-x="640" d="M587.84 736.448h-398.048l-189.408-191.424v-323.648c0-34.144 33.664-61.792 67.808-61.792h501.664c34.144 0 69.792 27.68 69.792 61.792v453.248c0.032 34.144-17.696 61.824-51.808 61.824zM189.792 674.624v-88.416c0-22.752-18.432-41.216-41.216-41.216h-90.4l131.616 129.632zM608.448 241.984c0-22.752-18.432-49.216-41.216-49.216h-494.464c-22.752 0-41.216 26.432-41.216 49.216v267.84h129.6c34.144 0 61.792 27.68 61.792 61.824v123.584h344.256c22.752 0 41.216-18.432 41.216-41.216l0.032-412.032zM337.632 566.016l-141.984-131.776c-2.176-2.080-4.768-32.256-2.688-34.432s26.208-4.288 28.384-2.208l2.272 2.208-0.384-112.768 96.576 0.384-0.544 66.848 32.416-1.504-0.288-64.64h96.352v114.080c0 3.008-17.44 5.472-20.448 5.472s-11.456-2.432-11.456-5.472v-81.152h-33.536v63.712l-93.792 0.512-0.64-63.968-31.904-0.032-1.504 88.096c0 3.008-9.568 3.744-12.576 3.744-0.864 0-2.848-0.256-5.12-0.64l99.52 96.928 118.56-106.4c1.056-1.024 3.808 4.672 5.152 4.672 1.44 0 3.904-6.304 4.992-5.184 1.088-5.952 24.288 28.608 21.152 37.248l-148.512 126.272z" />
|
13 |
-
<glyph unicode="" glyph-name="angle-down" horiz-adv-x="416" d="M407.008 544.416l-42.56 42.528-163.36-163.36-161.088 161.088-40-40v-32l203.648-203.616 203.36 203.36z" />
|
14 |
-
<glyph unicode="" glyph-name="arrow-dropdown" horiz-adv-x="320" d="M310.624 526.304c-11.904 10.080-31.2 10.080-43.104 0l-107.744-91.2-107.744 91.2c-11.904 10.080-31.2 10.080-43.104 0s-11.904-26.4 0-36.48l150.848-127.68 150.848 127.68c11.904 10.080 11.904 26.4 0 36.48z" />
|
15 |
-
<glyph unicode="" glyph-name="arrow-save" horiz-adv-x="608" d="M8 461.984c-4-3.968-8-9.952-8-13.984 0-5.984 4-9.984 8-16 1.984-1.984 8-4 12-4h502.048l-230.208-216.032c-4-2.016-6.016-8-6.016-13.984l6.016-14.016 14.016-6.016 12 4.032 270.24 252.032 6.016 10.016v9.984l-6.016 8-268.224 250.048c-4 4-8 6.016-14.016 6.016s-10.016-2.016-14.016-8c-4-1.984-6.016-8-6.016-12 0-5.984 1.984-10.016 6.016-16l234.208-214.048h-506.016c-4 0-10.016-4.032-12.032-6.048z" />
|
16 |
-
<glyph unicode="" glyph-name="clone-edited" horiz-adv-x="640" d="M32 383.84v288c-1.44 17.184 7.904 32.896 32 32h288c16.192 0 32-12.448 32-32v-64h32v64c0 48.704-17.408 64.736-64 64h-288c-31.744 0-64-32.448-64-64v-288c0-44.8 17.184-64 64-64h64v32h-64c-23.936 0-32 7.968-32 32zM512 575.84h-288c-45.952 0-64-15.776-64-64v-288c0-36.032 23.936-63.712 59.84-63.712h299.616c43.584 0 56.064 16.352 56.064 65.248l0.48 286.464c0.64 43.296-16.48 62.72-64 64zM544 223.84c0-24.032-8.064-32-32-32h-288c-23.968 0-32 7.968-32 32v288c0 24.032 8.032 32 32 32h288c23.936 0 32-7.968 32-32v-288zM384 447.84h-32v-64.224l-64 0.224v-32l64-0.192v-63.808h32v63.744l66.72-0.192v31.904l-66.72 0.224v64.32z" />
|
17 |
-
<glyph unicode="" glyph-name="clone" horiz-adv-x="640" d="M40.64 403.584v269.888c0 26.112 34.176 47.296 60.224 47.296h265.952c26.048 0 47.168-32.064 47.168-58.176v-23.648h47.168v58.176c0 39.2-31.68 70.976-70.752 70.976h-326.176c-39.072 0-64.224-31.776-64.224-70.976v-317.184c0-39.2 25.152-70.976 64.224-70.976h60.224v47.296h-23.584c-26.048 0.032-60.224 21.216-60.224 47.328zM558.176 585.984h-323.84c-39.072 0-70.752-25.248-70.752-64.448v-336.672c0-39.2 31.68-56.96 70.752-56.96h323.84c39.072 0 60.96 17.76 60.96 56.96v336.672c0 39.2-21.888 64.448-60.96 64.448zM581.76 210.016c0-26.144-21.12-47.328-47.168-47.328h-276.672c-26.048 0-47.168 21.184-47.168 47.328v288.608c0 26.112 21.12 47.296 47.168 47.296h276.672c26.048 0 47.168-21.184 47.168-47.296v-288.608zM422.976 455.040h-33.6l-0.448-69.76-68.896 0.448v-35.776h68.672l-0.416-69.344h34.688v69.344h70.432v34.688l-70.432 0.448v69.952z" />
|
18 |
-
<glyph unicode="" glyph-name="cog" horiz-adv-x="640" d="M319.424 547.808c-55.136 0-99.808-44.704-99.808-99.808 0-55.136 44.672-99.808 99.808-99.808s99.808 44.704 99.808 99.808c0 55.136-44.672 99.808-99.808 99.808zM319.424 388.096c-33.088 0-59.904 26.816-59.904 59.872 0 33.088 26.816 59.904 59.904 59.904s59.904-26.816 59.904-59.904c-0.032-33.056-26.848-59.872-59.904-59.872zM574.432 536.448l-4.672 1.536c-2.848 8-6.112 15.84-9.696 23.488l2.208 4.32c10.592 12.736 16.352 28.576 16.352 45.344 0 18.976-7.392 36.8-20.8 50.208l-25.088 25.056c-13.408 13.408-31.264 20.8-50.208 20.8-16.768 0-32.608-5.76-45.344-16.352l-4.288-2.208c-7.648 3.584-15.488 6.816-23.52 9.696l-1.536 4.704c-3.328 36.064-33.76 64.384-70.656 64.384h-35.52c-36.928 0-67.36-28.32-70.688-64.416l-1.504-4.64c-8-2.848-15.84-6.080-23.456-9.664l-4.544 2.24c-12.672 10.528-28.48 16.256-45.184 16.256-18.944 0-36.768-7.392-50.176-20.768l-25.088-25.12c-13.408-13.408-20.8-31.232-20.8-50.208 0-16.704 5.728-32.512 16.256-45.216l2.24-4.512c-3.552-7.584-6.784-15.36-9.632-23.328l-4.864-1.632c-35.968-3.424-64.224-33.824-64.224-70.656v-35.488c0-36.864 28.256-67.264 64.224-70.656l4.864-1.632c2.848-7.968 6.080-15.776 9.632-23.328l-2.24-4.544c-10.528-12.672-16.256-28.512-16.256-45.216 0-18.944 7.392-36.768 20.8-50.176l25.088-25.088c13.408-13.408 31.232-20.8 50.176-20.8 16.704 0 32.512 5.728 45.216 16.256l4.512 2.24c7.584-3.584 15.392-6.784 23.328-9.6l1.632-4.896c3.392-35.968 33.792-64.224 70.656-64.224h35.488c36.864 0 67.264 28.256 70.656 64.224l1.632 4.896c8 2.848 15.808 6.080 23.392 9.664l4.352-2.208c12.736-10.56 28.576-16.352 45.312-16.352 18.976 0 36.768 7.392 50.176 20.8l25.088 25.088c13.408 13.408 20.8 31.232 20.8 50.176 0 16.768-5.76 32.64-16.352 45.344l-2.208 4.32c3.616 7.648 6.816 15.488 9.696 23.52l4.704 1.536c36.064 3.328 64.384 33.76 64.384 70.656v35.488c0.096 36.896-28.256 67.328-64.32 70.688zM598.976 430.528c0-19.328-15.648-34.944-34.944-34.944l-25.984-8.544c-4.992-17.888-12-34.848-20.928-50.656l12.32-24.32c13.664-13.632 13.664-35.776 0-49.408l-24.704-24.704c-6.816-6.816-15.776-10.24-24.704-10.24s-17.888 3.424-24.704 10.24l-24.352 12.32c-15.744-8.896-32.608-15.872-50.4-20.864l-8.736-26.080c0-19.296-15.648-34.912-34.944-34.912h-34.944c-19.296 0-34.944 15.616-34.944 34.912l-8.736 26.080c-17.696 4.928-34.56 11.904-50.24 20.736l-24.512-12.192c-6.816-6.816-15.776-10.24-24.704-10.24s-17.888 3.424-24.704 10.24l-24.704 24.704c-13.664 13.664-13.664 35.776 0 49.408l12.192 24.544c-8.832 15.68-15.776 32.512-20.736 50.24l-26.048 8.736c-19.296 0-34.944 15.616-34.944 34.944v34.944c0 19.296 15.648 34.944 34.944 34.944l26.048 8.736c4.96 17.696 11.904 34.56 20.736 50.24l-12.192 24.512c-13.664 13.632-13.664 35.808 0 49.44l24.704 24.704c6.816 6.816 15.776 10.24 24.704 10.24s15.648-0.032 22.592-6.944l24.896-12.416c16 9.056 33.184 16.128 51.264 21.152l9.44 22.56c0 19.296 15.648 34.944 34.944 34.944h34.944c19.296 0 34.944-15.648 34.944-34.944l8.544-25.984c17.856-4.96 34.848-12 50.656-20.928l24.288 12.352c6.816 6.816 18.144 13.664 27.2 13.664 9.088 0 15.36-6.848 22.208-13.664l24.704-24.704c13.664-13.632 13.664-35.808 0-49.44l-12.288-24.32c8.928-15.808 15.936-32.768 20.928-50.656l25.984-8.512c19.296 0 34.944-15.648 34.944-34.944v-34.976z" />
|
19 |
-
<glyph unicode="" glyph-name="icons" horiz-adv-x="640" d="M99.84 767.488h-39.936c-33.088 0-59.904-26.848-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c0 33.056-26.816 59.904-59.904 59.904zM119.808 667.648c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM339.424 767.488h-39.904c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c-0.032 33.056-26.848 59.904-59.936 59.904zM359.424 667.648c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM579.040 767.488h-39.936c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c0 33.056-26.816 59.904-59.904 59.904zM599.008 667.648c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM579.040 527.872h-39.936c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c0 33.088-26.816 59.904-59.904 59.904zM599.008 428.032c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM339.424 527.872h-39.904c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c-0.032 33.088-26.848 59.904-59.936 59.904zM359.424 428.032c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM99.84 527.872h-39.936c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c0 33.088-26.816 59.904-59.904 59.904zM119.808 428.032c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM99.84 288.256h-39.936c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c0 33.088-26.816 59.904-59.904 59.904zM119.808 188.416c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM339.424 288.256h-39.904c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c-0.032 33.088-26.848 59.904-59.936 59.904zM359.424 188.416c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936zM579.040 288.256h-39.936c-33.088 0-59.904-26.816-59.904-59.904v-39.936c0-33.088 26.816-59.904 59.904-59.904h39.936c33.088 0 59.904 26.816 59.904 59.904v39.936c0 33.088-26.816 59.904-59.904 59.904zM599.008 188.416c0-11.008-8.96-19.968-19.968-19.968h-39.936c-11.008 0-19.968 8.96-19.968 19.968v39.936c0 11.008 8.96 19.968 19.968 19.968h39.936c11.008 0 19.968-8.96 19.968-19.968v-39.936z" />
|
20 |
-
<glyph unicode="" glyph-name="images_old" horiz-adv-x="672" d="M564.48 768.128h-479.552c-51.328 0-84.928-33.568-84.928-84.928v-464.224c0-51.296 33.6-91.104 84.928-91.104h479.552c51.328 0 76 31.808 76 83.104v458.88c0 51.392-24.672 98.272-76 98.272zM35.008 660c0 25.664 47.488 73.088 73.152 73.088h433.088c25.664 0 64.256-47.456 64.256-73.088v-271.744c-0.128 0.224-45.472 74.88-96 71.936-55.328-3.2-88.896-54.336-88.896-54.336s-78.080-83.808-96.128-84.608c-13.888-0.608-71.296 46.336-71.296 46.336s-12.8 25.952-67.84 6.272c-72.256-25.92-145.536-167.68-145.536-167.68l0.16-1.792c-2.912 4.384-4.992 8.96-4.992 13.76v441.856z" />
|
21 |
-
<glyph unicode="" glyph-name="images" horiz-adv-x="704" d="M630.112 128.352h-588.096c-23.2 0-42.016 18.816-42.016 42.016v471.232c0 23.2 18.816 28.672 42.016 28.672h105.024l20.992 55.328c0 0 18.816 42.016 42.016 42.016h252.032c23.2 0 42.016-42.016 42.016-42.016l20.992-55.328h105.024c23.2 0 42.016-5.472 42.016-28.672v-471.232c0-23.2-18.816-42.016-42.016-42.016zM640.8 620.608c0 11.616-20.064 20.992-31.68 20.992h-106.368c0.48 1.76 1.344 3.392 1.344 5.248l-33.6 52.512c0 0-15.040 26.24-33.6 26.24h-201.664c-18.56 0-33.6-26.24-33.6-26.24l-33.6-52.512c0-1.856 0.896-3.488 1.344-5.248h-106.368c-11.584 0-31.68-9.408-31.68-20.992v-429.216c0-11.584 20.064-28.992 31.68-28.992h546.112c11.584 0 31.68 17.408 31.68 28.992v429.216zM336.064 245.536c-92.8 0-168.032 75.232-168.032 168.032s75.232 168.032 168.032 168.032c92.8 0 168.032-75.232 168.032-168.032s-75.232-168.032-168.032-168.032zM336.064 539.584c-69.6 0-126.016-56.416-126.016-126.016s56.416-126.016 126.016-126.016c69.6 0 126.016 56.416 126.016 126.016s-56.416 126.016-126.016 126.016z" />
|
22 |
-
<glyph unicode="" glyph-name="link" horiz-adv-x="640" d="M588.256 676.672l-52.672 50.848c-40.064 38.688-106.816 39.52-145.824 1.856l-13.952-13.472-62.24-60.736c-7.904-7.616-7.904-20 0-27.616 3.968-3.808 9.12-5.728 14.304-5.728s10.368 1.92 14.336 5.728l62.24 60.768 13.92 13.44c23.072 22.272 64.48 21.44 88.576-1.856l52.672-50.88c24.096-23.264 24.928-63.2 1.856-85.472l-125.184-129.344-53.856-43.552c-24.512-23.712-72.352-25.856-94.752-4.192l-24.096 23.232c-0.768 0.736-1.28 1.728-1.952 2.496l-0.32-0.288-14.304 13.792c-7.904 7.648-20.704 7.648-28.608 0-7.936-7.616-7.936-20 0-27.616l42.944-41.472c1.12-1.088 2.528-1.664 3.84-2.464 37.472-30.112 98.944-28.608 138.592 3.136l0.704-0.672c1.408 1.376 2.624 2.912 3.968 4.32 0.832 0.768 1.856 1.312 2.688 2.112l179.072 172.896c38.944 37.664 38.080 102.080-1.952 140.736zM272.96 268.704l-38.592-38.016-33.632-33.632c-23.584-23.648-62.016-23.648-85.632 0l-57.088 57.152c-23.584 23.616-23.616 62.080 0 85.728l185.504 185.76c23.616 23.648 61.984 23.648 85.6 0l42.816-42.88c3.936-3.936 9.12-5.92 14.24-5.92 5.152 0 10.336 1.984 14.272 5.92 7.872 7.904 7.872 20.672 0 28.576l-42.816 42.88c-39.328 39.392-103.328 39.392-142.688 0l-185.504-185.76c-39.328-39.392-39.328-103.488 0-142.88l57.088-57.12c39.328-39.424 103.36-39.392 142.72 0l14.24 14.304 57.92 42.24c7.872 7.904 7.872 20.704 0 28.576-7.808 22.944-20.576 22.944-28.448 15.072z" />
|
23 |
-
<glyph unicode="" glyph-name="loupe" horiz-adv-x="512" d="M493.024 272.096l-118.464 118.496c14.4 27.488 22.624 58.72 22.624 91.904-0.032 109.696-88.928 198.592-198.592 198.592-109.696-0.032-198.592-88.928-198.592-198.624s88.896-198.592 198.592-198.592c47.136 0 90.4 16.512 124.448 43.936l112.864-112.864 57.12 57.152zM80.768 482.464c0 64.96 52.8 117.824 117.824 117.824 64.928 0 117.824-52.832 117.824-117.824 0-64.96-52.896-117.76-117.824-117.76-64.96 0-117.824 52.832-117.824 117.76z" />
|
24 |
-
<glyph unicode="" glyph-name="nav-check" horiz-adv-x="480" d="M217.92 297.632c-1.056-1.504-1.696-3.232-3.040-4.576-6.304-6.304-14.624-9.216-22.88-8.992-8.256-0.192-16.576 2.688-22.848 8.992-1.344 1.344-1.984 3.072-3.040 4.576l-156.96 156.96c-12.192 12.192-12.192 32 0 44.192s32 12.192 44.192 0l138.688-138.688 218.688 242.688c12.192 12.192 32 12.192 44.192 0s12.192-32 0-44.192l-236.992-260.96z" />
|
25 |
-
<glyph unicode="" glyph-name="nav-new-page" horiz-adv-x="640" d="M587.84 736.448h-398.048l-189.408-191.424v-323.648c0-34.144 33.664-61.792 67.808-61.792h501.664c34.144 0 69.792 27.68 69.792 61.792v453.248c0 34.144-17.664 61.824-51.808 61.824zM189.792 674.624v-88.416c0-22.752-18.432-41.216-41.216-41.216h-90.4l131.616 129.632zM608.448 241.984c0-22.752-18.432-49.216-41.216-49.216h-494.464c-22.752 0-41.216 26.432-41.216 49.216v267.84h129.6c34.144 0 61.792 27.68 61.792 61.824v123.584h344.256c22.752 0 41.216-18.432 41.216-41.216v-412.032zM442.432 439.584l-103.936-0.64-0.64 102.464-25.44-0.16 0.64-102.464-104.064-0.64 0.16-27.072 104.064 0.64 0.64-102.272 25.44 0.16-0.64 102.272 103.936 0.64-0.16 27.072z" />
|
26 |
-
<glyph unicode="" glyph-name="nav-page" horiz-adv-x="640" d="M319.296 512.8h191.168v-32.224h-191.168v32.224zM319.296 609.216h192.192v-33.216h-192.192v33.216zM511.488 386.176h-384.256v30.208h384.256v-30.208zM0 545.024v-323.648c0-34.144 33.664-61.792 67.808-61.792h501.664c34.144 0 69.824 27.68 69.824 61.792v453.248c0 34.144-17.664 61.792-51.808 61.792h-398.048l-189.44-191.392zM57.824 545.024l131.616 129.6v-88.416c0-22.752-18.464-41.216-41.216-41.216h-90.4zM566.88 695.232c22.752 0 41.216-18.432 41.216-41.216v-412.064c0-22.752-18.464-49.216-41.216-49.216h-494.464c-22.752 0-41.216 26.432-41.216 49.216v267.84h129.6c34.144 0 61.824 27.68 61.824 61.792v123.648h344.256zM510.464 287.776h-383.232v33.216h383.264v-33.216z" />
|
27 |
-
<glyph unicode="" glyph-name="nav-pages-group" horiz-adv-x="672" d="M0 473.568v-268.8c0-34.144 33.664-61.792 67.808-61.792h437.664c34.144 0 69.792 27.68 69.792 61.792v398.432c0 34.144-17.664 52.8-51.808 52.8h-334.048l-189.408-182.432zM57.792 473.568l131.616 129.632v-88.416c0-22.752-18.464-41.216-41.216-41.216h-90.4zM502.88 623.808c22.752 0 41.216-18.432 41.216-41.216v-357.184c0-22.752-18.432-49.216-41.216-49.216h-430.464c-22.752 0-41.216 26.432-41.216 49.216v212.96h129.6c34.144 0 61.824 27.68 61.824 61.824v123.616h280.256zM619.488 753.024h-334.048l-55.936-54.144h55.584l0.352 0.32v-0.32h33.216v20.928h280.256c22.752 0 41.216-18.432 41.216-41.216v-357.184c0-22.432-17.984-48.352-40.288-49.088v-33.344h1.696c34.144 0 69.824 27.68 69.824 61.824v398.4c-0.064 34.144-17.76 53.824-51.872 53.824z" />
|
28 |
-
<glyph unicode="" glyph-name="remove" horiz-adv-x="576" d="M175.84 250.496c10.912 0 19.744-6.784 19.744 4.128v157.856c0 10.88-8.832 12.736-19.744 12.736s-15.008-1.824-15.008-12.736v-157.888c0-10.88 4.128-4.096 15.008-4.096zM372.256 242.88c10.912 0 14.72 0.832 14.72 11.744v157.856c0 10.88-3.84 12.736-14.72 12.736-10.912 0-17.728-1.824-17.728-12.736v-157.888c-0.032-10.88 6.816-11.712 17.728-11.712zM269.056 242.88c10.88 0 20.736 0.832 20.736 11.744v157.856c0 10.88-9.824 12.736-20.736 12.736s-13.216-1.824-13.216-12.736v-157.888c0-10.88 2.304-11.712 13.216-11.712zM516.256 700.736h-95.552v39.456c0 21.792-17.664 28.608-39.456 28.608h-191.904c-21.792 0-39.456-6.784-39.456-28.608v-39.456h-118.4c-21.824 0-31.488-29.632-31.488-51.456v-54.464c0-21.792 9.664-51.52 31.456-51.52h484.768c21.792 0 34.016 29.728 34.016 51.52v66.432c0.032 21.792-12.192 39.488-33.984 39.488zM209.056 740.192h152.416c10.912 0 19.744-8.832 19.744-19.744s-8.832-19.744-19.744-19.744h-152.416c-10.88 0-19.744 8.832-19.744 19.744s8.864 19.744 19.744 19.744zM499.52 577.792h-448.32c-10.912 0-19.744 40.896-19.744 51.776s8.832 41.696 19.744 41.696h445.312c10.912 0 19.744-30.848 19.744-41.728 0-10.912-5.856-51.744-16.736-51.744zM34.112 232.384c0-32.704 1.504-105.504 76.128-105.184h334.816c59.424 0 71.168 64.864 71.168 97.568v288.448h-482.112v-280.832zM62.24 480.768h420.544v-236.256c0-21.792-7.392-80.032-57.44-77.824h-304.064c-56.608-1.856-59.040 63.648-59.040 85.44v228.64z" />
|
29 |
-
<glyph unicode="" glyph-name="right-arrow" horiz-adv-x="608" d="M8 461.984c-4-3.968-8-9.952-8-13.984 0-5.984 4-9.984 8-16 1.984-1.984 8-4 12-4h502.048l-230.208-216.032c-4-2.016-6.016-8-6.016-13.984l6.016-14.016 14.016-6.016 12 4.032 270.24 252.032 6.016 10.016v9.984l-6.016 8-268.224 250.048c-4 4-8 6.016-14.016 6.016s-10.016-2.016-14.016-8c-4-1.984-6.016-8-6.016-12 0-5.984 1.984-10.016 6.016-16l234.208-214.048h-506.016c-4 0-10.016-4.032-12.032-6.048z" />
|
30 |
-
<glyph unicode="" glyph-name="sun" horiz-adv-x="672" d="M120.64 447.264v1.888c0 16.64-13.504 30.112-30.144 30.112h-60.352c-16.64 0-30.144-13.472-30.144-30.112v-1.888c0-16.608 13.504-30.112 30.144-30.112h60.32c16.672 0 30.176 13.504 30.176 30.112zM331.008 658.72h1.888c16.672 0 30.144 13.472 30.144 30.112v60.192c0 16.64-13.504 30.112-30.144 30.112h-1.888c-16.64 0-30.176-13.472-30.176-30.112v-60.224c0-16.608 13.504-30.080 30.176-30.080zM481.504 596.48c11.776-11.744 30.88-11.744 42.656 0l42.656 42.56c11.776 11.744 11.776 30.816 0 42.56l-1.344 1.344c-11.776 11.744-30.88 11.744-42.656 0l-42.656-42.56c-11.776-11.744-11.776-30.816 0-42.56l1.344-1.344zM181.632 299.808c-11.776 11.744-30.88 11.744-42.656 0l-42.656-42.592c-11.776-11.744-11.776-30.816 0-42.56l1.344-1.344c11.776-11.744 30.88-11.744 42.656 0l42.656 42.56c11.776 11.744 11.776 30.816 0 42.56l-1.344 1.376zM524.16 299.52c-11.776 11.744-30.88 11.744-42.656 0l-1.344-1.344c-11.776-11.744-11.776-30.816 0-42.56l42.656-42.592c11.776-11.744 30.88-11.744 42.656 0l1.344 1.344c11.776 11.744 11.776 30.816 0 42.56l-42.656 42.592zM633.312 479.264h-60.32c-16.672 0-30.144-13.472-30.144-30.112v-1.888c0-16.608 13.504-30.112 30.144-30.112h60.32c16.672 0 30.144 13.472 30.144 30.112v1.888c0 16.64-13.504 30.112-30.144 30.112zM331.744 629.568c-100.032 0-181.152-80.96-181.152-180.832s81.088-180.8 181.152-180.8c100.032 0 181.152 80.96 181.152 180.8-0.032 99.872-81.12 180.832-181.152 180.832zM332.096 326.24c-67.488 0-122.24 54.624-122.24 122.016 0 67.36 54.72 122.016 122.24 122.016s122.24-54.624 122.24-122.016c-0.032-67.36-54.752-122.016-122.24-122.016zM332.896 237.28h-1.888c-16.64 0-30.176-13.472-30.176-30.112v-60.224c0-16.64 13.504-30.112 30.176-30.112h1.888c16.672 0 30.144 13.472 30.144 30.112v60.224c0 16.64-13.504 30.112-30.144 30.112zM139.008 596.192c11.776-11.744 30.88-11.744 42.656 0l1.344 1.344c11.776 11.744 11.776 30.816 0 42.56l-42.656 42.56c-11.776 11.744-30.88 11.744-42.656 0l-1.344-1.312c-11.776-11.744-11.776-30.816 0-42.56l42.656-42.592z" />
|
31 |
-
<glyph unicode="" glyph-name="text-bold" horiz-adv-x="416" d="M139.392 546.592c0.192 34.464 0.416 60.896 0.64 79.232 8.128 1.44 16.128 2.56 24.064 3.264 7.904 0.736 15.52 1.088 22.816 1.088 27.488 0 49.056-6.976 64.704-20.928 15.616-13.952 23.424-33.248 23.424-57.824 0-14.592-3.584-28.192-10.784-40.768-7.2-12.608-17.856-23.904-32.032-33.92-8.736-0.832-18.24-1.472-28.448-1.888s-21.248-0.608-33.12-0.608c-8.768 0-15.328 0.064-19.68 0.16-4.384 0.096-8.448 0.256-12.192 0.48 0.16 13.312 0.384 37.216 0.608 71.712zM138.272 311.296c-0.096 14.048-0.16 37.664-0.16 70.784v55.008c6.656 0.416 13.44 0.736 20.32 0.928s15.2 0.32 24.992 0.32c38.528 0 67.616-7.328 87.2-22.016s29.376-36.416 29.376-65.152c0-26.656-8.8-47.712-26.4-63.136-17.6-15.456-41.824-23.168-72.672-23.168-8.96 0-18.432 0.768-28.448 2.336-9.984 1.568-21.248 4-33.76 7.328-0.192 10.464-0.32 22.688-0.448 36.768zM0 223.936c19.168 1.248 35.008 2.176 47.488 2.816 12.512 0.64 21.568 0.928 27.2 0.928 20.416 0 45.056-0.64 73.92-1.888s47.552-1.888 56.096-1.888c55.616 0 100.256 11.968 133.92 35.936 33.632 23.968 50.464 55.104 50.464 93.44 0 28.96-9.984 52.608-29.984 70.944s-49.056 30.528-87.2 36.576c29.792 13.12 51.872 28.16 66.24 45.152 14.368 16.96 21.568 36.416 21.568 58.272 0 33.344-13.76 59.616-41.248 78.912-27.52 19.296-65.664 28.928-114.4 28.928-2.72-0.224-5.536-0.416-8.448-0.64-0.64-0.224-1.056-0.32-1.248-0.32-3.552 0-16.608-0.512-39.232-1.568-22.592-1.024-43.36-1.536-62.336-1.536-12.928 0-26.56 0.32-40.928 0.928-14.368 0.64-29.792 1.664-46.24 3.136v-29.056h4.384c17.28 0 29.024-3.424 35.168-10.304s9.216-25.632 9.216-56.256v-168.128c-0.224-12.096-0.32-28.448-0.32-49.056-0.224-71.456-14.688-107.2-43.424-107.2-2.72 0-4.832 0.032-6.4 0.16-1.6 0.096-3.008 0.256-4.256 0.448v-28.736z" />
|
32 |
-
<glyph unicode="" glyph-name="text-font" horiz-adv-x="864" d="M457.024 263.008c-6.976 4.672-12.768 12.544-17.344 23.584-10.848 24.384-29.856 73.376-57.024 147.040-27.2 73.632-55.776 154.432-85.792 242.336h-76.256c-36.032-91.872-69.792-175.104-101.248-249.696s-51.68-120-60.608-136.256c-6.24-12.288-13.856-21.056-22.816-26.24-8.96-5.216-20.928-7.808-35.936-7.808v-28.128c22.080 1.248 38.912 2.080 50.464 2.496s20.896 0.64 27.968 0.64c8.544 0 19.392-0.224 32.512-0.64s31.552-1.248 55.296-2.496v28.128h-5.632c-14.176 0-24.32 2.4-30.464 7.2s-9.216 12.608-9.216 23.424c0 13.12 10.208 44.576 30.624 94.368l1.248 3.136c5.408 0 13.024 0.096 22.816 0.32 27.072 0.64 45.088 0.928 54.048 0.928 4.8 0 16.864-0.16 36.256-0.48 19.36-0.32 35.008-0.576 46.88-0.768l25.632-75.616c2.304-7.072 3.808-12.608 4.512-16.576 0.736-3.968 1.088-7.392 1.088-10.304 0-9.568-2.912-16.256-8.736-20s-16.992-5.632-33.44-5.632h-5.6v-28.128c27.712 1.248 48.832 2.080 63.424 2.496s26.464 0.64 35.616 0.64c9.568 0 21.472-0.224 35.616-0.64 14.176-0.416 34.464-1.248 60.928-2.496v28.128h-6.88c-11.616 0-20.96 2.336-27.936 7.040zM270.304 427.68c-9.6-0.096-22.912-0.16-40-0.16-14.784 0-26.624 0.064-35.456 0.16-8.864 0.096-17.248 0.256-25.152 0.48l68.128 172.8 59.392-172.8c-8.352-0.224-17.312-0.384-26.912-0.48zM827.808 280.96c-7.296-3.968-13.856-6.976-19.68-9.056s-10.72-3.136-14.688-3.136c-7.072 0-12.288 2.816-15.616 8.448s-4.992 14.784-4.992 27.488c0 21.472 0.768 47.872 2.336 79.232s2.336 52.032 2.336 62.048c0 33.12-8.544 58.272-25.632 75.456s-42.080 25.792-75.008 25.792c-33.76 0-65.984-10.368-96.736-31.104-30.72-20.736-46.080-39.424-46.080-56.096 0-6.048 2.496-10.624 7.488-13.76s12.192-4.672 21.568-4.672c24.992 0 38.112 10.4 39.36 31.264 0 1.664 0.096 3.008 0.32 4.064 0.608 6.656 5.376 12.512 14.208 17.504 8.864 4.992 19.424 7.488 31.712 7.488 18.944 0 32.768-5.12 41.408-15.328s12.96-26.464 12.96-48.736c0-4.576-0.064-9.344-0.16-14.208-0.096-4.896-0.256-9.952-0.448-15.168-11.040-2.72-26.24-6.368-45.632-10.944-89.376-20.64-134.048-50.944-134.048-90.944 0-23.744 7.712-44.128 23.136-61.088 15.424-16.992 34.080-25.472 55.936-25.472 12.512 0 26.56 3.488 42.176 10.464s34.784 18.368 57.504 34.208c1.248-15.008 5.664-26.208 13.28-33.6s18.592-11.104 32.96-11.104c11.872 0 25.344 3.072 40.48 9.216 15.104 6.144 32.128 15.456 51.104 27.968l-11.552 23.776zM703.136 295.040c-16.256-9.6-29.44-16.352-39.52-20.32-10.112-3.968-19.104-5.952-27.040-5.952-12.288 0-22.496 4.224-30.624 12.672s-12.192 18.912-12.192 31.392c0 22.496 29.792 41.984 89.376 58.432 8.736 2.496 15.424 4.384 20 5.632v-81.856z" />
|
33 |
-
<glyph unicode="" glyph-name="text-headings" horiz-adv-x="768" d="M483.424 252.832c-16.864 0-28.32 4.928-34.368 14.816s-9.056 31.168-9.056 63.872c0 6.464 0.096 19.104 0.32 37.952 0.192 18.848 0.32 34.496 0.32 47.008v65.888c0 10.4-0.096 23.744-0.32 39.968s-0.32 27.488-0.32 33.728c0 36.832 2.912 60.64 8.736 71.36s16.992 16.096 33.44 16.096c2.496 0 4.544-0.064 6.080-0.16 1.568-0.096 2.976-0.16 4.224-0.16v27.776c-6.24-0.192-15.008-0.608-26.24-1.248-32.032-1.664-53.76-2.496-65.152-2.496-12.448 0-26.688 0.32-42.688 0.928s-34.016 1.568-54.016 2.816v-28.128h7.2c18.112 0 30.304-4.384 36.576-13.12 6.24-8.736 9.376-32.096 9.376-69.984v-82.496c-23.552-0.64-45.12-1.088-64.672-1.408-19.584-0.32-37.184-0.48-52.8-0.48-16.672 0-33.536 0.16-50.624 0.48s-34.368 0.768-51.872 1.408v82.496c0 37.92 3.168 61.248 9.536 69.984 6.336 8.736 18.496 13.12 36.416 13.12h7.2v28.128c-4.48-0.224-10.816-0.512-19.168-0.928-37.28-1.888-63.104-2.816-77.504-2.816-11.456 0-33.248 0.832-65.312 2.496-11.456 0.64-20.224 1.056-26.24 1.248v-27.808c1.248 0 2.592 0.064 4.064 0.16s3.552 0.128 6.24 0.128c16.032 0 27.072-5.088 33.12-15.296s9.056-31.968 9.056-65.248c0-6.24-0.096-18.336-0.32-36.224s-0.32-32.672-0.32-44.352v-66.496c0-10.624 0.096-24.352 0.32-41.216 0.192-16.864 0.32-28.416 0.32-34.656 0-36.224-2.976-59.808-8.896-70.72-5.952-10.912-17.248-16.384-33.92-16.384-3.328 0-5.824 0.064-7.488 0.16s-3.232 0.224-4.672 0.448v-28.448c7.296 0.416 17.408 0.928 30.304 1.568 32.096 1.44 53.536 2.176 64.384 2.176 11.456 0 25.504-0.32 42.176-0.928 16.672-0.64 35.84-1.568 57.504-2.816v28.448c-1.44 0-3.488-0.096-6.080-0.32-2.624-0.192-4.448-0.32-5.472-0.32-17.92 0-29.952 4.672-36.096 14.048-6.144 9.344-9.216 33.472-9.216 72.384v89.824c13.12 0.416 27.232 0.736 42.336 0.928s37.44 0.32 67.040 0.32c17.28 0 34.784-0.096 52.512-0.32 17.696-0.224 37.088-0.512 58.112-0.928v-89.824c0-38.88-3.072-63.008-9.216-72.384s-18.176-14.048-36.096-14.048c-1.056 0-2.816 0.096-5.312 0.32s-4.576 0.32-6.24 0.32v-28.448c21.44 1.248 40.512 2.176 57.152 2.816 16.64 0.608 30.88 0.928 42.688 0.928 10.592 0 32-0.736 64.224-2.176 12.928-0.64 22.912-1.152 30.016-1.568v28.448c-1.248-0.224-2.656-0.352-4.224-0.48-1.6-0.096-3.936-0.16-7.072-0.16zM741.024 246.112c-11.104 0-19.584 0.992-25.44 2.944s-10.208 5.12-12.992 9.504c-2.976 4.832-5.088 12.736-6.336 23.68s-1.888 27.744-1.888 50.4c0 5.632 0.064 15.712 0.224 30.24s0.224 26.336 0.224 35.392c0 27.968 0.352 55.904 1.056 83.808 0.704 27.872 1.76 55.968 3.168 84.256-21.728-4.704-43.328-8.96-64.8-12.768-21.472-3.84-42.688-7.232-63.616-10.208l3.296-22.976c12.192 1.248 23.264 2.272 33.28 3.040 9.984 0.768 17.12 1.184 21.344 1.184h8.192c0.16-4.672 0.32-11.872 0.48-21.568 0.608-26.88 0.928-48.032 0.928-63.52 0-72.672-0.512-118.976-1.536-138.976s-2.848-32.672-5.504-37.984c-3.136-6.24-7.744-10.56-13.824-12.896s-19.136-3.52-39.136-3.52l0.224-21.088c5.312 0.16 13.056 0.48 23.2 0.928 29.056 1.248 48.512 1.888 58.368 1.888 10.304 0 22.656-0.224 37.024-0.704s30.784-1.184 49.216-2.112v21.088h-5.152z" />
|
34 |
-
<glyph unicode="" glyph-name="text-italic" horiz-adv-x="256" d="M0 234.56l6.24 0.32c44.384 2.72 72.8 4.064 85.312 4.064 8.736 0 19.424-0.256 32.032-0.768s33.472-1.728 62.656-3.584l4.992 27.488h-4.352c-16.672 0-27.872 2.24-33.6 6.72s-8.608 13.184-8.608 26.080c0 6.656 0.896 16.608 2.656 29.856 1.76 13.216 4.96 32.224 9.536 57.024l33.76 186.24c5.632 30.4 11.616 49.216 17.984 56.416 6.336 7.168 16.8 10.784 31.392 10.784 1.024 0 2.656-0.096 4.832-0.32s4-0.32 5.472-0.32l5.632 26.24c-15.2-1.056-30.72-1.824-46.56-2.336s-32.512-0.768-49.984-0.768c-9.792 0-21.824 0.32-36.096 0.928-14.272 0.64-30.592 1.568-48.928 2.816l-4.672-26.88h7.2c13.952 0 24.064-1.92 30.304-5.792s9.376-10.048 9.376-18.592c0-4.8-0.576-11.296-1.728-19.52s-2.752-17.856-4.832-28.896l-35.008-197.824c-0.64-3.136-1.472-7.712-2.496-13.76-10.208-59.584-27.488-89.376-51.872-89.376-2.72 0-7.2 0.32-13.44 0.928-1.024 0.192-1.76 0.32-2.176 0.32l-5.024-27.488z" />
|
35 |
-
<glyph unicode="" glyph-name="videos_old" horiz-adv-x="672" d="M588.992 766.656h-533.984c-32.608 0-55.008-26.4-55.008-58.976v-519.328c0-32.576 22.4-59.008 55.008-59.008h534.016c32.576 0 59.008 26.4 59.008 59.008v519.328c-0.032 32.576-26.432 58.976-59.040 58.976zM122.016 168.672h-47.36c-21.728 0-39.328 25.6-39.328 47.328v39.328h86.656v-86.656zM122.016 290.656h-86.688v90.656h86.656v-90.656zM122.016 416.672h-86.688v94.656h86.656v-94.656zM122.016 538.656h-86.688v70.656h86.656v-70.656zM122.016 640.672h-86.688v47.328c0 21.728 17.6 39.328 39.328 39.328h47.328v-86.656zM482.688 168.672h-325.344v558.656h325.344v-558.656zM608.672 216c0-21.728-25.6-47.328-47.328-47.328h-39.328v86.656h86.656v-39.328zM608.672 290.656h-86.656v90.656h86.656v-90.656zM608.672 416.672h-86.656v94.656h86.656v-94.656zM608.672 538.656h-86.656v70.656h86.656v-70.656zM608.672 640.672h-86.656v86.656h39.328c21.728 0 47.328-17.6 47.328-39.328v-47.328zM274.176 363.872l111.52 70.176c11.936 7.136 7.584 22.656 0.192 27.008l-111.712 75.264c-9.408 6.016-18.624 21.184-18.624 9.216v-170.912c-0.032-11.936 9.216-16.8 18.624-10.752z" />
|
36 |
-
<glyph unicode="" glyph-name="videos" horiz-adv-x="1088" d="M1011.328 508.544c-28.032 10.88-52.928 4.672-71.616-14.016l-77.824-54.4h-63.36v129.216c0 21.824-3.104 23.392-10.88 35.872v1.504l-4.672 4.672v1.568c-14.016 17.12-35.808 26.496-65.376 26.496h-91.84v79.584l-1.568 20.224v1.568c-7.776 18.656-23.36 26.464-46.688 26.464h-240.416c-10.912 0-20.224-1.568-26.464-6.24h-1.536c-15.552-7.776-23.328-20.224-23.328-42.016v-79.616h-77.856c-17.12 0-32.672-4.704-43.584-10.912l-1.568-1.568-18.688-13.984c-12.448-12.448-17.12-18.72-17.12-43.616v-37.344h-38.88l-32.672 34.24c-6.24 6.24-12.448 9.344-20.224 10.88h-1.6l-7.776-1.536-9.344-3.136-7.104-9.344-3.104-3.104c-3.136-6.272-6.24-14.016-6.24-23.36v-113.632c0-10.912 3.104-18.72 7.776-24.96l1.568-1.536 7.104-10.912h3.136v-1.568l7.776-1.536h9.344l15.552 9.344 38.912 34.272h35.808v-214.848c0-21.824 4.672-40.512 15.552-52.928 4.672-9.344 12.448-15.552 21.792-18.688h1.568c10.88-6.24 24.896-10.912 42.016-10.912h509.696c31.136 0 52.928 10.912 65.376 29.6v-1.6c10.88 14.016 15.552 32.704 15.552 54.528v18.688h63.36l84.064-54.080h-1.568c14.016-10.88 26.464-17.152 37.344-18.688h1.568l29.568 4.672 1.568 1.568c9.344 3.104 18.688 9.344 28.032 18.688v3.104c9.344 9.344 14.016 24.928 14.016 43.584v217.472c-1.568 32.672-15.552 52.928-45.152 62.272zM1025.344 228.8c0-9.344-3.136-18.688-7.776-24.928l-14.016-12.416-15.584-3.104c-7.776 1.536-15.552 6.208-23.36 12.416l-1.568 3.104h-1.568l-80.96 54.112c-3.104 1.568-7.776 3.104-12.448 3.104h-148.96c-4.672 0-7.776-1.536-12.448-3.104-3.104-4.672-3.104-7.808-3.104-12.448 0-3.136 0-7.776 3.104-9.344 4.672-3.104 7.776-6.208 12.448-6.208h48.256v-18.688c0-14.016-1.536-26.496-7.776-35.808h-1.504c-7.776-10.912-21.792-15.584-40.48-15.584h-509.696l-29.568 6.176-10.88 9.344c-7.776 9.344-9.344 21.792-9.344 35.808v231.968l-3.104 7.808-4.672 4.672c-3.104 1.568-6.24 3.168-7.776 3.168l-57.6-1.6c-3.104 0-7.776-1.568-9.344-4.672l-38.912-34.24-6.24-4.672h-1.568l-1.536 3.136-1.568 6.24v113.6l1.568 6.24 1.536 1.536h3.104l3.104-1.536 35.808-35.808 10.912-6.272h60.704l10.88 6.272 4.672 9.344v52.928c0 15.584 1.568 15.584 9.344 23.392 3.104 3.136 7.776 4.704 10.88 7.776 7.776 4.704 18.688 7.808 29.568 7.808h93.408l12.448 3.104 3.104 12.448v95.168c0 7.808 3.104 12.416 7.776 15.552l12.448 1.568h240.416c7.776 0 12.448-1.568 17.12-7.808v-104.544c0-4.672 1.536-7.776 6.24-12.448 3.104-1.568 6.24-3.104 9.344-3.104h107.392c16.576 0 31.552-5.92 40.96-14.752l-0.48 0.736 1.536-1.568c-0.32 0.32-0.736 0.544-1.056 0.832l2.624-3.936h-1.568c6.24-9.344 7.776-4.672 7.776-20.288v-144.768c0-3.136 1.568-7.776 6.24-10.88 1.536-1.568 6.24-4.672 9.344-4.672h85.152c3.104 0 7.776 3.104 10.912 4.672l80.928 59.040c12.448 9.344 26.464 12.448 42.016 7.808 15.552-6.24 23.36-17.12 23.36-34.24v-217.44zM586.88 510.176c-26.464 0-48.256-9.344-68.512-26.496-17.12-20.224-26.464-42.016-26.464-68.448 0-24.928 7.776-46.72 24.896-63.84h-98.752c15.552 17.12 23.36 38.912 23.36 63.84 0 26.464-7.776 48.256-26.464 68.448-20.256 17.12-42.016 26.496-68.48 26.496s-48.256-9.344-68.512-26.496c-17.12-20.224-26.464-42.016-26.464-68.448 0-26.496 9.344-48.288 26.464-68.512 18.688-17.12 40.48-26.496 66.944-26.496h241.984c26.464 0 48.256 9.344 68.48 26.496 17.12 20.224 26.464 42.048 26.464 68.512s-9.344 48.256-26.464 68.448c-20.256 17.12-42.016 26.496-68.48 26.496zM393.152 368.48c-12.448-10.88-26.464-17.12-43.584-17.12h-4.672c-18.688 0-32.672 6.24-45.152 17.12-12.448 14.016-17.12 29.568-17.12 46.72 0 17.12 4.672 32.64 17.12 45.152 14.016 13.984 29.568 18.688 46.688 18.688s32.672-4.704 46.688-18.688c10.88-12.48 17.12-28 17.12-45.152 0.032-17.12-6.176-32.704-17.088-46.72zM633.568 368.48c-14.016-10.88-29.568-17.12-46.688-17.12h-14.016c-10.88 1.568-23.36 9.344-31.136 17.12-14.016 14.016-18.688 29.568-18.688 46.72 0 17.12 4.672 32.64 18.688 45.152 12.448 13.984 28.032 18.688 45.152 18.688s32.672-4.704 46.688-18.688c10.88-12.48 17.12-28 17.12-45.152 0-17.12-6.24-32.704-17.12-46.72z" />
|
37 |
-
<glyph unicode="" glyph-name="menu-edit" horiz-adv-x="928" d="M411.968 591.968l-411.968 1.376v-64l411.968-1.376v64zM0 305.344l347.968-1.376v64l-347.968 1.376v-64zM672.864 817.344h-672.864v-64h672.864v64zM657.6 402.784c-42.624 0-77.184-34.56-77.184-77.184s34.56-77.184 77.184-77.184c42.624 0 77.184 34.56 77.184 77.184-0.032 42.624-34.56 77.184-77.184 77.184zM657.6 279.296c-25.568 0-46.304 20.736-46.304 46.304s20.736 46.304 46.304 46.304 46.304-20.736 46.304-46.304-20.736-46.304-46.304-46.304zM854.752 393.984l-3.616 1.184c-2.208 6.176-4.704 12.256-7.488 18.176l1.696 3.36c8.192 9.824 12.64 22.080 12.64 35.040 0 14.656-5.696 28.448-16.064 38.816l-19.392 19.392c-10.368 10.368-24.16 16.064-38.816 16.064-12.96 0-25.216-4.448-35.040-12.64l-3.328-1.696c-5.92 2.784-11.968 5.28-18.176 7.488l-1.184 3.648c-2.56 27.872-26.112 49.76-54.624 49.76h-27.456c-28.544 0-52.096-21.92-54.656-49.792l-1.184-3.584c-6.176-2.208-12.224-4.704-18.112-7.456l-3.52 1.728c-9.824 8.128-22.048 12.576-34.944 12.576-14.656 0-28.416-5.696-38.784-16.064l-19.424-19.424c-10.368-10.368-16.064-24.128-16.064-38.816 0-12.928 4.416-25.152 12.576-34.976l1.728-3.488c-2.752-5.856-5.248-11.872-7.456-18.048l-3.744-1.248c-27.84-2.624-49.664-26.144-49.664-54.624v-27.456c0-28.512 21.824-52 49.664-54.624l3.744-1.28c2.208-6.176 4.704-12.192 7.456-18.048l-1.76-3.52c-8.128-9.824-12.576-22.048-12.576-34.944 0-14.656 5.696-28.416 16.064-38.816l19.392-19.392c10.368-10.368 24.16-16.096 38.816-16.096 12.896 0 25.152 4.448 34.944 12.576l3.488 1.728c5.888-2.752 11.904-5.248 18.048-7.424l1.248-3.776c2.624-27.808 26.144-49.632 54.624-49.632h27.456c28.512 0 52 21.856 54.624 49.632l1.248 3.776c6.176 2.208 12.224 4.704 18.080 7.456l3.392-1.696c9.824-8.16 22.080-12.64 35.040-12.64 14.656 0 28.416 5.696 38.816 16.096l19.392 19.392c10.368 10.368 16.064 24.128 16.064 38.816 0 12.96-4.448 25.248-12.64 35.072l-1.696 3.328c2.784 5.92 5.28 11.968 7.488 18.176l3.616 1.184c27.872 2.56 49.792 26.112 49.792 54.624v27.456c0.064 28.544-21.824 52.064-49.728 54.656zM850.304 313.536c0-13.312-10.784-24.096-24.096-24.096l-17.92-5.888c-3.424-12.32-8.256-24.032-14.432-34.912l8.512-16.768c9.408-9.408 9.408-24.672 0-34.080l-17.024-17.024c-4.704-4.704-10.88-7.072-17.024-7.072-6.176 0-12.32 2.336-17.024 7.072l-16.8 8.512c-10.848-6.144-22.496-10.944-34.752-14.368l-6.016-17.984c0-13.28-10.784-24.064-24.096-24.064h-24.096c-13.312 0-24.096 10.784-24.096 24.064l-6.016 17.984c-12.224 3.392-23.808 8.192-34.624 14.304l-16.896-8.416c-4.704-4.704-10.88-7.072-17.024-7.072-6.176 0-12.32 2.336-17.024 7.072l-17.024 17.024c-9.408 9.408-9.408 24.672 0 34.080l8.416 16.928c-6.080 10.784-10.88 22.432-14.304 34.624l-17.952 6.016c-13.312 0-24.096 10.784-24.096 24.096v24.096c0 13.312 10.784 24.096 24.096 24.096l17.952 6.016c3.424 12.224 8.192 23.84 14.304 34.624l-8.416 16.896c-9.408 9.408-13.056 26.688-2.496 37.248l19.52 13.888c4.704 4.704 10.88 7.040 17.024 7.040 6.176 0 10.784 0 15.584-4.8l17.152-8.544c11.040 6.24 22.88 11.104 35.36 14.592l6.496 15.552c0 13.312 10.784 24.096 24.096 24.096h24.096c13.312 0 24.096-10.784 24.096-24.096l5.888-17.92c12.32-3.424 24.032-8.256 34.912-14.432l16.768 8.512c4.704 4.704 12.512 9.408 18.752 9.408s10.592-4.736 15.296-9.408l17.024-17.024c9.408-9.408 9.408-24.672 0-34.080l-8.48-16.768c6.176-10.88 10.976-22.592 14.432-34.912l17.92-5.856c13.312 0 24.096-10.784 24.096-24.096v-24.16z" />
|
38 |
-
<glyph unicode="" glyph-name="metric-mobile" horiz-adv-x="321" d="M160.8 320c-17.664 0-32-14.336-32-32s14.336-32 32-32c17.664 0 32 14.336 32 32s-14.336 32-32 32zM272.8 704h-224.8c-26.496 0-48-21.504-48-48v-416c0-26.496 21.504-48 48-48h224.8c26.496 0 48 21.504 48 48v416c0 26.496-21.472 48-48 48zM288.8 256c0-17.664-14.336-32-32-32h-192.8c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h192.8c17.664 0 32-14.336 32-32v-384zM192.8 640h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16z" />
|
39 |
-
<glyph unicode="" glyph-name="metric-popular" horiz-adv-x="480" d="M383.136 378.432c33.152 37.056 53.472 85.792 53.472 139.392 0 115.712-93.888 209.472-209.696 209.472s-209.696-93.792-209.696-209.472c0-53.6 20.32-102.368 53.472-139.392-33.216-57.792-70.72-123.072-70.72-123.072l92-13.376 57.344-73.28c0 0 42.912 74.72 77.568 135.040 34.656-60.32 77.568-135.040 77.568-135.040l57.344 73.28 92 13.376c0.064-0.032-37.472 65.28-70.656 123.072zM140.832 221.216l-27.712 58.496-62.656-4.16c0 0 21.568 38.912 44.224 79.776 27.232-22.144 60.192-37.44 96.288-43.712-24.704-44.448-50.144-90.4-50.144-90.4zM52.192 517.824c0 96.416 78.24 174.56 174.752 174.56s174.752-78.144 174.752-174.56-78.24-174.56-174.752-174.56-174.752 78.144-174.752 174.56zM340.736 279.712l-27.712-58.496c0 0-25.472 45.952-50.112 90.4 36.096 6.24 69.024 21.536 96.288 43.712 22.656-40.864 44.224-79.776 44.224-79.776l-62.688 4.16zM226.912 640.032c-67.552 0-122.304-54.72-122.304-122.208s54.752-122.208 122.304-122.208 122.304 54.72 122.304 122.208c0.032 67.488-54.752 122.208-122.304 122.208zM226.912 430.528c-48.256 0-87.36 39.072-87.36 87.296s39.104 87.296 87.36 87.296 87.36-39.072 87.36-87.296-39.104-87.296-87.36-87.296z" />
|
40 |
-
<glyph unicode="" glyph-name="metric-refferers" horiz-adv-x="512" d="M261.536 365.92c-6.784-6.784-6.784-17.824 0-24.608s17.792-6.784 24.576 0l77.472 77.568c3.68 3.68 5.536 12.416 1.856 16.096l-79.328 72.16c-6.784 6.784-17.792 6.784-24.576 0s-6.784-17.824 0-24.608l49.984-34.080h-295.744c-8.832 0-16-7.168-16-16v-0.448c0-8.832 7.168-16 16-16h295.744l-49.984-50.080zM448.416 704h-224.64c-26.496 0-48-21.504-48-48v-126.176c-0.064-0.64-0.384-1.184-0.384-1.824 0-8.832 7.168-16 16-16s16 7.168 16 16h0.384v112c0 17.664 14.336 32 32 32h192.64c17.664 0 32-14.336 32-32v-384c0-17.664-14.336-32-32-32h-192.64c-17.664 0-32 14.336-32 32v88h-0.384c0 0 0 0 0 0 0 8.832-7.168 16-16 16s-16-7.168-16-16c0-0.64 0.288-1.216 0.384-1.824v-102.176c0-26.496 21.504-48 48-48h224.64c26.496 0 48 21.504 48 48v416c0 26.496-21.504 48-48 48z" />
|
41 |
-
<glyph unicode="" glyph-name="metric-search" horiz-adv-x="448" d="M424.128 258.336l-117.44 117.44c25.728 30.336 41.28 69.536 41.28 112.384 0 96.096-77.888 173.984-173.984 173.984s-173.984-77.888-173.984-173.984c0-96.096 77.888-173.984 173.984-173.984 42.88 0 82.080 15.584 112.384 41.28l117.44-117.44c5.6-5.6 14.688-5.6 20.288 0 5.632 5.632 5.632 14.72 0.032 20.32zM173.984 341.024c-81.248 0-147.136 65.888-147.136 147.136s65.856 147.136 147.136 147.136c81.248 0 147.136-65.888 147.136-147.136s-65.888-147.136-147.136-147.136z" />
|
42 |
-
<glyph unicode="" glyph-name="metric-traffic" horiz-adv-x="512" d="M496 340.96h-16v321.248h16c8.832 0 16 7.136 16 15.936s-7.168 15.968-16 15.968h-480c-8.832 0-16-7.136-16-15.936s7.168-15.936 16-15.936h16v-321.248h-16c-8.832 0-16-7.136-16-15.968 0-8.8 7.168-15.936 16-15.936h153.184l-84.544-79.712c-6.304-6.272-6.304-16.48 0-22.752s16.512-6.272 22.848 0l107.36 102.464h25.152v-59.232c0-8.8 7.168-15.968 16-15.968s16 7.136 16 15.968v59.232h25.152l107.36-102.464c6.304-6.272 16.512-6.272 22.848 0 6.304 6.272 6.304 16.48 0 22.752l-84.544 79.712h153.184c8.832 0 16 7.136 16 15.936s-7.168 15.936-16 15.936zM448 340.96h-143.456c-0.352 0-0.672 0-0.992 0h-95.104c-0.352 0-0.672 0-1.024 0h-143.424v321.248h384v-321.248zM172.256 459.584l35.584 35.456 51.616-51.456c3.392-3.392 7.904-4.864 12.352-4.672 4.48-0.192 9.024 1.312 12.448 4.704l79.008 78.784c6.496 6.464 6.496 16.96 0 23.424s-17.024 6.464-23.52 0l-68.064-67.84-51.616 51.456c-1.664 1.632-3.584 2.848-5.6 3.648-6.144 2.848-13.632 1.888-18.688-3.168l-47.008-46.88c-6.496-6.464-6.496-16.96 0-23.424 6.464-6.496 16.992-6.496 23.488-0.032z" />
|
43 |
-
<glyph unicode="" glyph-name="settings-email" horiz-adv-x="480" d="M432 624h-384c-26.496 0-48-21.504-48-48v-256c0-26.496 21.504-48 48-48h384c26.496 0 48 21.504 48 48v256c0 26.496-21.472 48-48 48zM64 592h352c4.608 0 8.96-1.024 12.928-2.752l-177.568-186.496c-3.040-2.336-7.616-3.936-12.16-3.936-4.48 0-8.736 1.504-12.32 4.352l-170.528 187.808c2.464 0.608 4.992 1.024 7.648 1.024zM32 560c0 3.2 0.608 6.24 1.504 9.152l107.84-130.656-107.808-111.776c-0.896 2.976-1.536 6.048-1.536 9.28v224zM416 304h-352c-2.304 0-4.544 0.256-6.688 0.736l108 111.936 41.056-37.408c19.776-15.776 46.56-15.136 65.216-0.672l40.96 36.448 110.144-110.304c-2.144-0.48-4.384-0.736-6.688-0.736zM448 336c0-3.232-0.608-6.336-1.536-9.28l-109.696 109.888 110.848 127.104c0.16-1.216 0.384-2.432 0.384-3.712v-224z" />
|
44 |
-
<glyph unicode="" glyph-name="settings-domains" horiz-adv-x="512" d="M286.816 428.096c-3.68 3.648-8.544 5.184-13.344 4.896-4.8 0.288-9.664-1.216-13.344-4.896l-45.568-45.44c-6.784-6.784-6.784-17.792 0-24.576s17.824-6.784 24.608 0l18.048 18.016v-135.072c0-8.832 7.168-16 16-16h0.512c8.832 0 16 7.168 16 16v135.072l18.048-18.016c6.784-6.784 17.824-6.784 24.608 0s6.784 17.792 0 24.576l-45.568 45.44zM445.152 502.016c-0.256 0.096-0.384 0.352-0.32 0.64 6.432 36.096 1.536 76.128-40.064 121.44-24.832 27.040-58.784 45.408-95.488 46.784-59.36 2.208-110.912-31.68-134.752-81.376-0.128-0.256-0.384-0.384-0.64-0.32-8.256 1.728-16.832 2.56-25.696 2.176-15.904-0.672-31.168-7.2-43.808-16.832-54.496-41.568-58.784-73.76-54.080-102.912 0.032-0.256-0.096-0.48-0.32-0.608-28.96-14.272-48.896-43.968-48.896-78.4v-15.296c0-48.672 39.52-88.096 88.256-88.096h71.040c0.288-0.032 0.544-0.192 0.864-0.192 8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-35.328 0-64 28.64-64 63.968 0 34.080 26.752 61.696 60.384 63.584-7.808 11.52-12.384 25.376-12.384 40.32 0 39.744 32.224 71.936 71.968 71.936 15.552 0 29.888-5.056 41.664-13.44 8.832 52.96 54.816 93.376 110.304 93.376 61.824 0 111.968-50.112 111.968-111.936 0-17.376-4.064-33.792-11.168-48.448 41.856-2.56 75.136-36.96 75.136-79.456 0-44.16-35.808-79.936-79.968-79.936h-16c-8.832 0-16-7.168-16-16s7.168-16 16-16c0.32 0 0.544 0.16 0.864 0.192h8.384c60.256 0 113.312 45.568 116.32 105.664 2.4 47.584-25.216 88.96-65.568 107.168z" />
|
45 |
-
<glyph unicode="" glyph-name="settings-design" horiz-adv-x="512" d="M346.048 675.712l-295.072-295.296c-33.504-33.568-62.752-166.304-45.76-183.296 17.664-17.696 149.504 12.224 183.072 45.824l295.072 295.328c37.92 37.952 37.92 99.52 0 137.472-37.92 37.92-99.392 37.92-137.312-0.032zM83.744 368l239.040 239.264 35.008-35.008-232.192-232.192-8.64 8.384c-9.792 9.536-21.76 15.552-34.304 18.272 0.384 0.416 0.736 0.928 1.088 1.28zM33.728 225.6c-7.488 7.52 10.912 71.968 31.36 113.248 14.432-3.712 28.256-10.72 39.68-21.856l13.44-13.056c14.144-13.76 22.496-30.976 24.96-48.576-41.408-19.68-102.56-36.64-109.44-29.76zM175.904 275.712c-1.344-1.344-3.040-2.752-4.832-4.128-1.056 16.096-7.84 31.904-20.512 44.224l-2.016 1.952 231.872 231.872 34.592-34.592-239.104-239.328zM460.704 560.768l-23.040-23.072-92.224 92.224 23.136 23.136c25.44 25.472 66.688 25.472 92.16 0 25.408-25.472 25.408-66.784-0.032-92.288z" />
|
46 |
-
<glyph unicode="" glyph-name="settings-general" horiz-adv-x="512" d="M256 528c-44.192 0-80-35.808-80-80s35.808-80 80-80c44.192 0 80 35.808 80 80s-35.808 80-80 80zM256 400c-26.496 0-48 21.504-48 48s21.504 48 48 48c26.496 0 48-21.504 48-48s-21.504-48-48-48zM460.384 518.88l-3.744 1.216c-2.304 6.432-4.896 12.704-7.776 18.848l1.76 3.456c8.48 10.208 13.088 22.912 13.088 36.32 0 15.2-5.92 29.504-16.672 40.224l-20.096 20.096c-10.752 10.752-25.056 16.672-40.224 16.672-13.44 0-26.144-4.64-36.32-13.12l-3.456-1.76c-6.112 2.88-12.416 5.472-18.848 7.776l-1.248 3.776c-2.656 28.928-27.040 51.616-56.64 51.616h-28.416c-29.6 0-53.984-22.72-56.64-51.616l-1.248-3.744c-6.4-2.272-12.672-4.864-18.784-7.712l-3.616 1.792c-10.176 8.416-22.848 13.024-36.256 13.024-15.2 0-29.472-5.92-40.192-16.64l-20.128-20.128c-10.752-10.72-16.672-25.024-16.672-40.224 0-13.376 4.576-26.080 13.024-36.256l1.792-3.616c-2.848-6.080-5.44-12.32-7.712-18.72l-3.904-1.312c-28.8-2.72-51.456-27.072-51.456-56.64v-28.448c0-29.536 22.656-53.92 51.488-56.64l3.904-1.312c2.272-6.4 4.864-12.64 7.712-18.72l-1.792-3.648c-8.448-10.176-13.024-22.848-13.024-36.224 0-15.2 5.92-29.472 16.672-40.224l20.096-20.096c10.752-10.752 25.024-16.672 40.224-16.672 13.376 0 26.048 4.608 36.224 13.024l3.616 1.792c6.080-2.848 12.352-5.44 18.72-7.712l1.312-3.904c2.72-28.8 27.072-51.424 56.64-51.424h28.448c29.536 0 53.92 22.624 56.64 51.456l1.312 3.904c6.4 2.304 12.672 4.864 18.752 7.744l3.488-1.76c10.208-8.48 22.912-13.088 36.32-13.088 15.2 0 29.472 5.92 40.224 16.672l20.096 20.096c10.752 10.752 16.672 25.024 16.672 40.224 0 13.44-4.64 26.144-13.12 36.352l-1.76 3.456c2.88 6.112 5.472 12.416 7.776 18.848l3.776 1.248c28.896 2.656 51.584 27.040 51.584 56.64v28.448c0 29.568-22.72 53.952-51.616 56.64zM480.064 433.984c0-15.488-12.544-28-28-28l-20.832-6.848c-4-14.336-9.6-27.936-16.768-40.608l9.888-19.488c10.944-10.912 10.944-28.672 0-39.616l-19.808-19.808c-5.472-5.472-12.64-8.192-19.808-8.192s-14.336 2.72-19.808 8.192l-19.52 9.888c-12.608-7.136-26.144-12.736-40.384-16.704l-7.008-20.896c0-15.456-12.544-27.968-28-27.968h-28.032c-15.456 0-28 12.544-28 27.968l-7.008 20.896c-14.208 3.968-27.68 9.536-40.256 16.608l-19.648-9.792c-5.472-5.472-12.64-8.192-19.808-8.192s-14.336 2.72-19.808 8.192l-19.776 19.84c-10.944 10.944-10.944 28.672 0 39.616l9.792 19.68c-7.072 12.544-12.64 26.080-16.64 40.256l-20.864 7.008c-15.456 0-28 12.512-28 28v28c0 15.456 12.544 28 28 28l20.864 7.008c3.968 14.208 9.536 27.712 16.64 40.256l-9.792 19.616c-10.944 10.944-10.944 28.704 0 39.616l19.808 19.808c5.472 5.472 12.64 8.192 19.808 8.192s12.544-0.032 18.112-5.568l19.968-9.92c12.832 7.232 26.592 12.928 41.088 16.928l7.552 18.080c0 15.456 12.544 28 28 28h28c15.456 0 28-12.544 28-28l6.848-20.832c14.336-4 27.936-9.6 40.608-16.768l19.488 9.888c5.472 5.472 14.528 10.944 21.824 10.944 7.264 0 12.32-5.504 17.792-10.944l19.808-19.808c10.944-10.944 10.944-28.704 0-39.616l-9.856-19.488c7.168-12.672 12.768-26.272 16.768-40.576l20.8-6.816c15.456 0 28-12.544 28-28v-28.032z" />
|
47 |
-
</font></defs></svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/editor-build/editor/fonts/icomoon.ttf
DELETED
Binary file
|
public/editor-build/editor/fonts/icomoon.woff
DELETED
Binary file
|
public/editor-build/editor/icons/editor/arrow-down.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnSRDsv3wnTA93vcCaxgPsw2fpvd0cGM4rCcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcCBbnvA5tIhbmuQ5lJMDixBLqIc8px3x3FhwtFg9sTs8rINe5F3bmuQ5lCcV4JMCqwBacCBe9CdVqyWCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQq6w3VbS2O9ChVsTRHfwhTfCd48TsVdvAZtwt0cvgGnuQHpvcGW43HXKqGterGXKqHdw4GXG013wgZqwAPsCd48wAZ0uWVguQrmJMDdxRDsTQ50K29mv3CcCAK9Ce04FXYsSs0qFdCtGcqqFNUoHXStFNUoGXanGW42HNYnGW4sHXZmFNwoHtO5FNSoHdPGGW44INCmGs41IOq4FXeoHdatvXwoGNU4FNSoGXetvXYoGtUsFXYoHNY5vW03Fdw1IMq2FdS1CYG4FdK2GsqrGM45Gcq4FdCtGcqrGcq4FXYsycC+JW9qSRLiJdqpTt48F3H2Tt4E
|
public/editor-build/editor/icons/editor/close-popup.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV2TRDtuQ9oJMCrFdYcCBbnvA5tJMDixBLqIc8px3x3FhwtFg9sTs8sGXUqF3H2TsCayA1mvhG6yArjvgm9Cgb0xBU6Fs93x3woxtGov3DhFtY5INepyArjvgmcJcU8TsVjTX0cS2rpw2OnwA9qxRUcCBH0wg9lTN0cvg9oTMCaw3Lsv2nfFRxjTBLiJMCrCcVguQrmJMDov25fCcVguQrmFRD1vAO9CgP2TQ5pTAKcCBH0wg9lTM1muQ5fS2ZqJMDtwRPbwgOcJcU8wAZ0uWVeJMDHGM41FXYoHMVGGNKoHNG4HXU0IWqrHW41GW43HXKqGterGXKqHdw4GXG0Gta0GXK4CcVjTX0cNAfoTM0sCcVtxBDpu2O9CgH1whDfvhLXv2rpwcCaTgfmvW1sxQrfJMDov256TRDpCd48F3VbxAa+CXrqSRLiCAK9Ce0rFdOmGM41CYqrHW41Gta0GXK4FXY0FdOtIXKqHXacCAfeJMDGuQ5fFNCcCBH0wg9lTN0cS3PswgPoxYHpvA9sCcVguQrmFRD1vAO9Cg5pvhjfwg8cCBLsSQ5tTg9svN0cxBDbvhHmSRLfEXaoGXUqGXUqFWU4FdUqGXUqGWeaw2HbvAOiFNYmCXYjCBLsSQ5tvAZ0TManIW4qGXUqGXUmCW04FdUqGXUqGWeaCd48F3VbxAa+CXqpTt4aJW9txgw+
|
public/editor-build/editor/icons/editor/close.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcJdr0uRLmTN5dvA9tTNqpxAf0vAO+JBVbxAaaTX0cNNYsFdw4HcUtFdCrHAYoHdeoHdeaGWUqCXUnGMUqNXaaHsU0FdCrHWUtFdCrHAYoHdeoHdeaGWUqCXUnGMUqCW42IM42IMUqCXUaGWUqCXZGHsU4vW0tFdw4HcUtFdw4HgYoHdeoHdeaGWUqCXUaGWGW43HXKqGterGXKqHdw4GXG0UrCW42HXaoHdK4CXUaGWUqCW41FdCrHW42HXaoHdK4CXUaGWUqCW41FM4sGNLGIWU5vXGoHta2CXGoHta2SM43HtCoHtwsCXUaGWUqCW41FdCrHW43HtCoHtwsCXUaGWUqCW41FM4sGNKoHdeoHdeaGWUqCXUaGW0rNXeaIAqtFdw4Hc0tFdw4HgYoHdeoHdeaGWUqCXUaGW0rycCaTgfmvW1sxQrfJMDov256TRDpCcVguQrmJMDdxRDsTQ50K29mv3CcCBH0wg9lTN0cvg9oTMCaw3Lsv2nfFRxjTBLiJMCrCc8+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/dynamic-img.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnTBfoSQ1jSs1jvQwcCBTjTRxWv3a9CdUaGWUrHcUrHcCaxgPsw2fpvd0cGM4rCcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcCBbnvA5tIhbmuQ5lJMDixBLqIc8px3x3FhwtFg9sTs8rINe5F3bmuQ5lCd4ECWUaCXrhCAfeJMDeyQ5bvQfdFQfnTsCaw3Lsv2nfJMDov25fCcVtxBDpu2Onx2fexAa9CdYcCATjvAq9Cg5pvgOcCATjvAqnwhPmTN0cTRTfvg9eTWC+WcUaCWUaCWUaJBVbxAaaTX0cNNY0FXwoHtU2HNe2GtCaNXY0FXY0FdYsGtC4HtwaKtY0FXY0FdStGNa0INGaGNGoHNU4HNSrHcqrHW45HtU4INU0CXYtFXY0Fde3GXa5GXKaNXUoIXK3HdUsHtKmGNKoINwqIXeqHWVXGW4tGteqHXYqINSmGNKoINwqIXeqHWUqFXY0FdStGNa0INGaGWqrHW4rGdGsIXw3CYqqFXCaKtUmGM40INY0GtatHcUqFdK5GNKtIXG1HcqrCXYmGMVGIW44HNStGta3IWqrCYG4FdKqGdGrGXY2FXYoHtUrGdw3HtSaIW4rGta2INa2GsqsFdOtHtGrINw1CXaoGNG4Hde4HdGmGs40GtK5GtY1GMVXIW4rGta2INa2Gsq1FderGdS0HtG0CXYqFdY0HtC4HXCmHs45GdYsGtC4IWUrGc42GdOmHs45GdYsGtC4IWVXGNGoGNU0HdG1HMq3FdesGNCtGda4CXYtFdO2HdS5GNGmHs44HXO5HdK5HWUrHWq3FdwqHdO5HdGsCZiaNNOoGNKsGNCtGdemHW42HdC2HtYsGsVXHW42GtG1HdY2HWq0FdS2GdS3GNCtCXKoGde0HNCqHNOmHM4qGXY3GNCtGsU0FdC5HXOsGXO1FXOoHNYqGdwtINwaKtKoGde0HNCqHNOmHc4qGNa4GtO2GcU0FdStGtO2GNS0FXSoGtO3IXw2HtYaHM4rHXCrGdGsIMq2FdG1Hta3HdwrCYG1FdS1GXS4HXetFXSoGtO3IXw2HtYaHM45IXe3GdSqGsq2FdUrIXatHNSsCXOoINa5HtC2GXGmHM41GNUsHtG5HsVXHM45IXe3GdSqGsq1FdUqGNwrGdGtCXOoHdOqHda0INGmHW42HdC2HtYsGsU1FdY0GdYsGtC5FXKoHdSsHdwrGdGaQcVHGc40IXStGXYtHsqrGM41HNS1GXS4CYqrGW44HXetGNOrFXYrFdO1HdOqHdaaNXaoGtKqHXYqINSmHc4tHNw4HtS3GMVGHM44GtY1GXS4HMq5FdasGtStGXY0CYq0FdY1IXeqHXYrFXaoGXeqHtOtHXCaNXCoHXa2GtUrGtwmGNYoHNO2HNU2IWVuCY0rGc42GdOmHc43HMVXGNUoHtSrGXG5FXSoHtOaIM4sHMq1FdCtIXe2GNUtCXeoGdOmGs4tHtOaKteoGdOmGM41GNYqGta5HsUrGW43HdYqGtemFNYoGNG2IXS4GtbfFNYtCXGW43HXKqGterGXKqHdw4GXG0YsFdSsHMqnGM4rGtS4HdatIAOnGNGaKtY0FdK4IXe2GMqnGM4rGtS4HdatIAOnGNGaGNSmGM41GNYqGta5HsUrHcqtFdG3HMVXGNSmHM4sGta5HdYqGsUrHW40IXa5HdYmHc43HMUrGc42GdOmHc43HMVuCY0rGc43GXK5HtCrFXYoIXwrIXesHXKaKtYrFde3IXK5HNGmGM44HtY4INC0HWUrGM4rIXS5HdU5FXCoGXY0HtS0GXaaGNYoGNa2INSqIMqsFdGrIXG2HdGrCYGrGM4rIXS5HdU5FXCoHdCrINS4HNKaGNYoINw4HXe1GsqsFdw2HXa0GXY4CXYsFdwqHXe3GdYmGc43HdK4HXUrIWVXGNGoHXGrHXK4IMqsFdw2HXa0GXY4CXY0FdCsGde4GtGmGc42GdY5Hda1HWUrHW4sGdC5IXGtFXCoGtY4GtS2GtYaKtY0FdCsGde4GtGmGc4qGNK3HdKqIWUrGs40GtY0HXa5FXYoIXwrIXesHXKaGNCoHtU0INwsGMqrFda3GNa5GdK0CZiaNNYsFdwqHXe3GdYmGs4rGXCrGNU5HWVXGNCoGNY5HXOtHMqtFdYqGdYrGXe0CXYrFdOqGNKqHdYmGs4qGXwsHNG1HWUrGM4rIXS5HdU5FXCoHtS0IXKqGNaaNXYrFdY4Hde2GXemGs4tGXetINY5GcVXGNYoGNa2INSqIMqtFdS2Htw0GdYaGNYoINw4HXe1GsqtFdatHdG3HtK3CXYsFdwqHXe3GdYmGs44GtStHtw0HsVXGNGoHXGrHXK4IMqtFdatHdG3HtK3CXY0FdCsGde4GtGmGs42Hdw3HXCrCXY0FdCsGde4GtGmGs4tGXetINY5GcVGGNKoGdCsINatGsqsFdw2HXa0GXY4CYGrGs45GXa1GtarFXGoGXU3GdOtHNKaGNGoGdeqHXeqHsqtFdYqGdYrGXe0CXYsFdwqHXe3GdYmGs4rGXCrGNU5HWVuCY0rGc43GXK5HtCrFXKoGNwtHdK4GdGaKtYsFdYrINK1GtOmHW4rHtG2HXasGsUrGM41GXY0GXSrFXKoGXw4HteqIXGaGNYoGNa2INSqIMqtFdatHdG3HtK3CYqrGM4rIXS5HdU5FXKoGtaqINC5GdYaKtYrFdY4Hde2GXemHW43GtesHtetIMUrGM45Hta0INOtFXKoINU3INY0HtSaGNCoHtU0INwsGMq0FdeqHterHXw2CYGrGs40GtY0HXa5FXKoINU3INY0HtSaGNKoGdCsINatGsq0FdwtINC3ING5CXY0FdCsGde4GtGmHW4tIXU5GdesGMVGGNKoGdCsINatGsqtFdatHdG3HtK3CYGrGs45GXa1GtarFXKoGXw4HteqIXGaGNGoGdeqHXeqHsq0FdY3GtS0IXCtCXYsFdwqHXe3GdYmHW4rHtG2HXasGsVuCcVjTX0cMQ1bT2OnTAfoSQ1jSsCaTgfmvX0cS3PswgPoxYHpvA9sCcVguQrmFRD1vAO9Cg5pvhjfwg8cJdqpwAZ0uX4ECWUaCXqpTt4EJW9txgw+Wa==
|
public/editor-build/editor/icons/editor/iframe.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnuQTsSQ1fCcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcCBa9CdUcCBe9CdUcCBTjTRxWv3a9CdUaGWUrHcUrHcC+JAwaS2rbw3G9Cg5dFQfdv24nx3DbwBVfwcC+JBVbxAaaTAZ0SM1dv2rpwd0cS29mv3CnGcCaTgfmvX0cS3PswgPoxYHpvAGW43HXKqGterGXKqHdw4GXG09sCcVeJMDHGNSaGNDiFND2FNDiFND2GganGhSsuXD2Ggasxc0suXD6Cc8+JBVbxAaaTgfmvX0cS3PswgPoxYHpvA9sCcVeJMDHIWUrG0asPdPiGND2G2asPdDbGMUrCXUaGWUqFNYnGOarSNYaGMUqCXUaGW0rCXZ2GNDbGMUrCXUaGWUqCXYaGQa3xc0sycCpJdqpTt48F3H2Tt4E
|
public/editor-build/editor/icons/editor/img.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnuQ1hCcV2uQP3Kg94JMCqCXUaGNSaGNScCBbnvA5tJMDixBLqIc8px3x3FhwtFg9sTs8sGXUqF3H2TsC+JAwaS2rbw3G9Cg5dFQfdv24nx3DbwBVfwcC+JAwauQK9CgDbS2nhwg91vgKnxdGcCBH0wg9lTN0cvg9oTMCaw3Lsv2nfFRxjTBLiJMCrCcVguQrmJMDov25fCcVguQrmFRD1vAO9CgP2TQ5pTAKcJdrqSRLiCAK9Ce0rHMUqMXZXFdGW43HXKqGterGXKqHdw4GXG0KaGWUqCW40CXUaGRSrHAGqCW42FdKaGMUrCXZiGNLdFdSaGWUrFM40CXYnGPSrStUnFdSnFdKnGM0rFNZ6NNSaHAGoHcUqCXYaFdKaGMUrws0oHWUrFNYaGM0rFM40FNYnGMUoHW0rCXYnGRjnFNGaIAqsFNKaGcUsCXGnHWUtCXTCG3icCAfeJMDNuAZqTMCaTgfmvX0cS3PswgPoxYHpvA9sCcVguQrmFRD1vAO9Cg5pvhjfwg8cFt48F2w+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/menu-3.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCayA1mvhG9Cgb0xBU6Fs93x3woxtGov3DhFtCqGXUpw3ThCcV2uQP3Kg94JMCqCXUaGNSaGNScJdrhCATjvAq9CgH1whDfvhLXv2rpwcCaTgfmvW1sxQrfJMDov256TRDpCd48wAZ0uWVeJMDHGNOaH0arSs0oHcUqFNYaFdKnGMUrws40CXYaGMUruXY0GW43HXKqGterGXKqHdw4GXG0Ss42CXUaGM0oHWUrFNZtFM40FNYnGM0rye0rHMUsMXZdFM42CXUnGMUoHW0rCXZtFdKaGMUrCXZiGNLdFdSaGWUrFM40CXYnGRGnFdKnGM0rFNZ6NNY1CXYsMXZdFM42CXUnGMUoHW0rCXZtFdKaGMUrCXZiGNLdFdSaGWUrFM40CXYnGRGnFdKnGM0rFNZ6Cc8+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/pin.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnwAfoCcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcCBa9CdUcCBe9CdUcCBTjTRxWv3a9CdUaGWUrHcUrHcC+JAwaS2rbw3G9Cg5dFQfdv24nx3DbwBVfwcC+JBVbxAaaTgfmvX0cS3PswgPoxYHpvA9sCcVeJMDHIWUqKtKoGMUqCXYaGs4rCXYaH2GqCXYoIM43CXGW43HXKqGterGXKqHdw4GXG0GoHsUsFdYaHMUoGM4rCXKoGMUtFdwaHW4sCXGoIW40FdGaGMUoGsUrFdGaGWUoGM0oGMU0FdCnGs43CXKoGc0tFdaaGM40FNYoGsUsFdYnGs4rCXCoGM01CW4rFNGoIM0tFNwnHc45FNx6vNUaIQGnGM4rCXUnGc0oIM0sFNDtFdenGcUsFNCaGcUoIMUsCXCnFdeaGc0sCXD6Cc8+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/play.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCayA1mvhG9Cgb0xBU6Fs93x3woxtGov3DhFtCqGXUpw3ThCcV2uQP3Kg94JMCqCXUaGNSaGNScJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcCATjvAq9CgH1whDfvhLXv2rpwcC+JBGW43HXKqGterGXKqHdw4GXG0VbxAaaTgfmvX0cS3PswgPoxYHpvA9sCcVeJMDHGNGoHcU3FdDmFNYqFNxVGMUrCXUaGWUqCXCaGRSrHAGqCW44FdeaGM4tCXYoHc44vXYqFNxdFdOnFdKoHM0rFdCaGW0rFdT6Cd48F3VbxAa+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/right-arrow-filled.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcCATjvAq9CgH1whDfvhLXv2rpwcC+JBLjxArfJhDpxQ5eJW90uRLmTN48wAZ0uWVeJMDHIWUqKtGoHcUqCXUaGs42CXUaGW43HXKqGterGXKqHdw4GXG0IBGtFdSaIWU4CXaaIW0tFdSaIW04FNGoHc04FNanIBjHHsUrGM40NXOoHcUrGAqsFNCnGc0sNXwaHW42CXYqFdKaIWU3CXYrFdL6CcVguQrmJMDdxRDsTQ50K29mv3CcCATjvAqnwhPmTN0cvg9oygPsvsCaw3Lsv2nfJMDov25fCcVtxBDpu2Onx2fexAa9CdYcJdqpwAZ0uX48F2w+JW9txgw+Wa==
|
public/editor-build/editor/icons/editor/right-arrow-heavy.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcCATjvAq9CgH1whDfvhLXv2rpwcC+JBLjxArfJgbfSRT5JW90uRLmTN48wAZ0uWVeJMDHHM4sGXKaGNTGGsUrGsGW43HXKqGterGXKqHdw4GXG045GMU5FdCtHcU4CXGaGc4qIMU1FdCqHWUqvXwoGtG5CXSoINO1Ss42GM41HtaoHdYaGM41GNCaGWUsFdU5NXOoGdU0CXY2ycCaTgfmvX0cS3PswgPoxYHpvA9sCcVguQrmFRD1vAO9Cg5pvhjfwg8cCBH0wg9lTN0cvg9oTMCaw3Lsv2nfFRxjTBLiJMCrCd48F3VbxAa+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/right-arrow-outline.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcCATjvAq9CgH1whDfvhLXv2rpwcC+JBLjxArfJg91xArjvgO8F3LjxArfJdrhCATjvAq9CgH1whDfvhLXv2rpwcCaTgfmvW1sxQrfJMDov256TRDpCcVtxBDpu2O9Cg5pvgOcCBH0wg9lGW43HXKqGterGXKqHdw4GXG0TM13uQL0uX0cGMC+JBVbxAaaTX0cNNwaGNYoHYq1FdSaGNVmGc0sFNCnGeq3CXKoHcUrGW40CXb6Cd48F3VbxAa+JBVbxAaaTX0cNNaaGYGtFdSaGWUqCXGoHcUqCXbtGs42CXaaIWU4CXanGs42CXanIW0tFdSnIW04FNb6vNUaGNLdFNGoGsUqFNSnGc43FNSnHhGsFdwnHcU2FNSaHcUsFdwaHcU2FNCoHsU2FNSaHhicJdqpwAZ0uX48F2w+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/editor/right-arrow-tail.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcCATjvAq9CgH1whDfvhLXv2rpwcC+JBLjxArfJhLbuQq8F3LjxArfJdrqSRLiCAK9Ce0rHM43IXwaHs40INTGGNUoGNasCXCaIM4rHNGaGs4qGXbmHW4tHdKaHW4sHtfCFdwsGW43HXKqGterGXKqHdw4GXG0H0YoHtCoHtCaGWUqCXUaGWU4SM43Gc43GcUqCXUaGWUoHtC3FdwrG2arGc43IQqnHW4tHdKaHW4sHtfGGNUoGNasCXY0vXOoHdU1FNOoHXe2SM43GXGoHtUtCXUaGWUqCXUnGM4qGXb6CcVguQrmJMDdxRDsTQ50K29mv3CcCATjvAqnwhPmTN0cvg9oygPsvsCaw3Lsv2nfJMDov25fCcVtxBDpu2Onx2fexAa9CdYcJdqpwAZ0uX48F2w+JW9txgw+Wa==
|
public/editor-build/editor/icons/editor/right-arrow-thin.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgHzuQHpvcCaxgffx0DpyX0cGWUqCXY2CXY2CcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcJdrhCAHmSRHtJMDoSs1jS29oFRxsSRVqTRCcCATjvAq9CgH1whDfvhLXv2rpwcC+JBLjxArfJhLiuQ48F3LjxArfJdrqSRLiCAK9Ce01FdUsHMUrHeq0CXY1GW43HXKqGterGXKqHdw4GXG0FdUqIMUrGM4sHMU4CXKaFde5GMU1FdUsHMUqvXwoHtSsCXwoHNU0SM42IXKoHda0CXUaGWUrCXUaFde5Geq1FdUsHMUrHhicCATjvAq9CgH1whDfvhLXv2rpwcCaTgfmvW1sxQrfJMDov256TRDpCcVtxBDpu2O9Cg5pvgOcCBH0wg9lTM13uQL0uX0cGMC+JW9qSRLiJdqpTt48F3H2Tt4E
|
public/editor-build/editor/icons/editor/sound-cloud.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnw291vgKnS2rpxQKcCBTjTRxWv3a9CdUaGWUrHcUrHcCayA1mvhG9Cgb0xBU6Fs93x3woxtGov3DhFtCqGXUpw3ThCd48TsVdvAZtwt0cvgGnuQHpvc13wgZqwAPsCd48xAf0vAO+w291vgKnS2rpxQK8F3LjxArfJdrhCATjvAqnwhPmTN0cvg9oygPsvsCaTgfmvX0cS3PswgPoxYHpvA9sCcVtxBDpu2O9Cg5pvgOcCBH0wg9lTM13uQL0uX0cGMC+JBVbxAaaTX0cNNCoHtw3CXOoINw0Ss0oGdw5CXUnFdO1Hs4rHtYnFdO1Hs4tHXHmFM4sHteaHW42GdaoGdw5CXGoGXa2StUaFdY3GM4sHtaoGNwrFdC3IW4rHtYoGdw5CXUaFdC3IM0oGNwrFdC3IM0oGNwrvW4sHtanGs4qIXTQHc4tGNxdGW0oGNwsFM4sHtanFdG0Gs0oGdw4FM4tHXH6Cc8+JBVbxAaaTX0cNM45HXOaIW4sGXfdFM4sHM4qGXanFdK5HW4rHXCnFdK5FdC2H2qnFdYtGcUtFdG4Gc4tGdaaGc4sHAGoGXU1FdYsHM4sHNKoGNY2FdC1HW4rGNSoGdOnFdUqIM4sHXOnFdYtHW4sHXOnFdYtHAqoGNwnGc4sHNwnFdYrHs0tFdG3G2GnFdUqHW0oGNC1FM4sHNGW43HXKqGterGXKqHdw4GXG0anFdC0GM0oGdO4FM4sHXZ6Cc8+JBVbxAaaTX0cNNSoHNwaGNKoGdUsSs4sGNwaGWUoHXG0FM4rHtYoHXG0FM4tHXHmFdCrHs0sFderHW0oGdY3FNwoGgGqFM4rHtYnFdCrHs0oGtKsFM40GtGnFdG0Gc0oGdY3CXUnFdKtHW4rHtYnFdKtHW4tHXDmFM4sGNSaHs4sFdCrHcUsFderHAGqCW4rHtCoGdY3FdG0Gs40GtKoGtKtycCpJdrqSRLiCAK9Ce00FdOtCXY0FdCqGgGoGcUqCW40FM4rHtYoHW0oGtKtvW4sFNCoINY0FM4sFNSoGtKsStUnFdY3Gc0oGc0oGtKtFM40FM4tHXHtFM40FdY3GM0oHW4tHXHmFM4sCXSoGtKsFdCaGc45GNLdGWUoGNwsFdCoGtKtFdKoGtKtycCpJdrqSRLiCAK9Ce0rGs4qIXKaHs41GNxXGNGoIXwaHW4tHMUrGc4tHsUrFda2CXeoHNUsCXYoIXTdFM40INwaGW0oIXe1FdY3GM0rFdC5Gs4tHXGnFdCoGNwrFM4sFdG0Gs0oGc41GNL2GNYoGNKsStUaFdY3Gc4rFdG0Gs4sFdG0G2a1FdO3GQGrFdU5CXUaGc4qIM0rFdG1GcUsFdU5FNGoGtOsCXUnGc0rFNGnGc43IXSnGs4tGtH6Cc8+JW9hJdqpTt48F3H2Tt4E
|
public/editor-build/editor/icons/editor/woo-2.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnx29pFNCcCBTjTRxWv3a9CdUaGWUrHcUrHcCaxgPsw2fpvd0cGM4rCcV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcCBbnvA5tIhbmuQ5lJMDixBLqIc8px3x3FhwtFg9sTs8rINe5F3bmuQ5lCd4ECWUaCXrhCAfeJMD3v28nTQrfvQPoxWCaw3Lsv2nfJMDov25fCcVtxBDpu2Onx2fexAa9CdYcCATjvAq9Cg5pvgOcCATjvAqnwhPmTN0cTRTfvg9eTWC+WcUaCWUaCWUaJBVbxAaaTX0cNNCmGWVGGNGoINe3GtYsHMqqCYGrHMqqCXY2FXYaGNSmGcVGGNSmGNCaKtY2FXYtCXY1FXYtFde1HXY4HtOaGNGoINe3GtYsHMqrGs45HNKrIXw1CYq5FdatIXYsHMqrGs45HNKrIXw1CYqrGW40HterIXw1FXY1FdOsHXU2GdOaNXwoHdO5IXw1FXYtFde1HXY4HtOaNXCmGNGoINO0GNa3HMVXGMqrGs45HNKrIXw1CXSoGdPfFNU1FXYtCXSoGdPfFNU1FXYsCYGsFdU4GtGtGtGtTM0qHMq2Fde4HXOrGXStCW05FdC3Gte5HXGtTM0rHsqtFdS1GNY3HtGaFNYoGtO1GdOsHtDfFNCqFXCaKtSoGdPfFNU1FXYaGMqqCXCmGWVuCY0rGs44HXw3HMq0FdSsHcVXGNGoHtC0GNC1FXKoHcUrGs42GXwrGdOmHW41IXwaGNGoHXe2HMq0FdO4HsVXGNCoIXwsGNC1FXKoHNa3CXYsFdG2HXarGdOmHW45GNCrIXw1CXYrFde2IXU2GdOmHM41HdC2GdOaKtYrFdSsINarGdOmHc4rGNO0Gtw1CXYrFdK2GXw1FXSoHtC2IXYsHMUrGM40HdU3HMq3FdG5Hdw1CYGrGM40HdU3HMq3Fda5HtO2GdOaGNYoHNS0IXYsHMq4FdGsHdarGdOaGNYoHtwsING3HMq4FdS4HXO2GdOaKtYsFdUqHtU2GdOmIM4qINKtGNC1CXYsFdG1GNarGdOmIM4tHXY0Gtw1CXYsFdarGtO2GdOmIM40GteaKtYsFdetHtYsHMq5FdK2HNU2GdOaGNGoGXO0GNa3HMq5FdK3IXU2GdOaGNGoGNS0IXYsHMq5FdK3IXU2GdOaKtYtFdw5HNS4HtOmIM40HtaqHdC1CXY0FdGqGsq5FdY1Gda3HMUrHW42INGsHMq4FdOqGdKtHtOaKtY1FdUtGNKtHtOmHs45HXGqHdC1CXY1FdCqGXO2GdOmHs4tGtY2IXw1CXY1FdCqGXO2GdOmHc42HdY4GNC1CYGrHM4sGXwqHdC1FXSoGNO0HMUrHM4qINS1FXOoHtGrHda3HMUrHW44IXatHtOmHM4tIXU1CYGrHW42HNKsHMq0Fde3GXw1CXY0FdGqINOmHW43GdG2GdOaGNGoIXK3HtOmHW42GdSaQcVHGNGoHNw0HMq4FdY0HXS4HtOaKtYtFdG4HNetHtOmIW4tGNG4GNC1CXYtFdCrGXGrGdOmIW4tIXOtGNC1CXYtFdU0Htw1FXaoGtOsIXYsHMVXGNCoIXerHdC1FXaoGtCqGtYsHMUrGc43HdY1FXaoGNatHtOaGNCoHdS0FXwoINGqGXSsHMVXGNCoHNa1IXw1FXwoHtC4HXG3HMUrGc41HXS5Gtw1FXwoHNC2IXYsHMUrGc41HXS5Gtw1FXwoGtG4GNa3HMVXGNCoHNK2ING3HMq3FdY3HNSsHMUrGc41HNe5Gtw1FXwoGXYtCXYsFdO5GdKtHtOmHc44HdG0Gtw1CYGrGc42HNYmHc41INS3HMUrGc43HdY1HdC1FXSoGtG2HNSsHMUrGc45GtwrGdOmHc4qIXe0Gtw1CYGrGs4rHNY4GNC1FXOoHtwqHda3HMUrGs4tHte0Gtw1FXOoHdKqHda3HMUrGs42GNG1HdC1FXOoHda2GNa3HMVXGNGoHtS5Hda3HMq1FdwrIXS4HtOaGNGoIXe5IXYsHMq1Fda1HNGrGdOaGNGoINe3GtYsHMq2FdYqIXetHtOaKtY0FdU3HNG3HMq2FdGrGXO2GdOaGNKoGNY0Gtw1FXSoHNYsGNa3HMUrHW4rGNKtHtOmHc43GXU4GNC1CYGrHW4rGNKtHtOmHc44Hde5Gtw1CXY0FdYqGNG3HMq3FdUtGdOaGNKoGXS4IXw1FXwoGNasGXSsHMVXGNGoINw3IXYsHMq3FdSrGNG3HMUrGs44GNOrIXw1FXwoINGqGXSsHMUrGs41HtK1FXaoGNK0Hda3HMVuCY05Fdw3HdY4HtOmHW42GdSaKteoHdOsHdC1FXKoHcU5FdOtHNO2GdOmHW41IXwaIM40GdK5Gtw1FXKoHNa3CYG4FdaqGXO2GdOmHW41IXwaIW4sINGsHMq0FderGdY4HtOaHs44INS1FXOoHNSsHdC1CYG3FdO1IXGrGdOmHc4rGNO0Gtw1CXwoGta5GNa3HMq2FdwsHdarGdOaHs4tIXerIXw1FXwoGte2HtOaKtwoGta5GNa3HMq3Fda5HtO2GdOaHs40INGsHMq4FdGsHdarGdOaHs43GXYtHtOmIW42IXK1HdC1CYG3FdetHNOmIM4qINKtGNC1CXaoGdaqGdOmIM4tHXY0Gtw1CXaoHtKsFXeoHXG5CYG4Fda2HNSsHMq5FdK2HNU2GdOaIW45IXC2GdOmIM40HtaqHdC1CXeoGXetGdOmIM40HtaqHdC1CYG5FdwsHXYsHMq5FdK3IXU2GdOaGNGW43HXKqGterGXKqHdw4GXG0UoGdGrHXG3HMq5FdY1Gda3HMUrGW42GdY2IXw1FXaoHNUsHXG3HMVXGNUoINO5ING3HMq3Fde0GtU2GdOaGNYoGNC5FXwoGtGrHda3HMUrGM4rGdemHc42HdY4GNC1CYGrGM4rGdemHc4rHNK1CXYrFdUsHXetHtOmHM43GtY2IXw1CXYqFdarHdarGdOmHM4tIXU1CYGrGW41IXC2IXw1FXKoINwqHtOaGNUoGdGrHXG3HMq0FdwsGtSsHMU5Fdw3HdY4HtOmHW42GdSaQcVHIM40INS1FXaoGNK0Hda3HMVXIM4tGXw4HtOmIW4tGNG4GNC1CXeoGNGsGdOmIW4tIXOtGNC1CXaoINS5HdC1FXaoGtOsIXYsHMVXIW44GNG1HdC1FXaoGtCqGtYsHMU4FdS4GtOmIW4rIXG3HMU4FdO4HNa3HMq3FdetGXU2GdOaKtaoHNU3IXw1FXwoHtC4HXG3HMU4FdK2IXa3HMq3FdOsHdarGdOaIW40Hda4HtOmHs4tGtarIXw1CYG4FdK2IXa3HMq3FdY3HNSsHMU4FdK4GNa3HMq3FdUrGsU4FdOrHXG3HMq2Fda2GtKtHtOaKtaoHNwsING3HMq2FdO5Hdw1CXaoHdatHMq2FdGtHdO2GdOaIW44HNerGdOmHc4qIXe0Gtw1CYG5FdU3Gtw1FXOoHtwqHda3HMU5FdGqGNG3HMq1FdS0GXS4HtOaIM41GtO1FXOoHda2GNa3HMVXIM42INY2GdOmHM43GNa2IXw1CXeoIXCrHtOmHM44HNOtGNC1CXeoINY5GdOmHc4rGXa5Gtw1CYG5Fde5HtG3HMq2FdGrGXO2GdOaGNUoGXG2GtYsHMq2FdOrGdY4HtOaGNUoGXG2GtYsHMq2FdwqGXarGdOaKtYqFdU0Gda3HMq2Fda2INetHtOaGNUoGXCtGtYsHMq3FdUtGdOaIM45INU4GNC1FXwoGNasGXSsHMVXIM44INe3HMq3FdSrGNG3HMU5FdwtHtYsHMq3FdetGXU2GdOaIM40INS1FXaoGNK0Hda3HMVuCY0rFdGsGXa3HMq0FdY1Htw1CYGrFdYtIXw1FXKoGNwqHtOaGM4qGXCrIXw1FXKoGdG1HtOaGW45GNYrGdOmHW4tHNetHtOaKtUoIXCqGXSsHMq0FdK3HdG3HMUqFdw4GNU2GdOmHW42GdSaGW44GXwrGdOmHW43INOrGdOaKtYoGNeqIXYsHMq3FdCtHXYsHMUrFdO0IXO2GdOmIW44Hte2IXw1CXYoIXaqGdOmIM43GtY3HMVXGc4qGNUtGNC1FXYqFdU0Gta3HMUsFdY1INa3HMqrGW4rING1CXCoGtG1HMqrGW4rIXU1CYGsFdSqIXS4HtOmGNUoGNSrCXCoINGtIXw1FXeoHtatHtOaGs4tGNw2GdOmIM4qHXa3HMVXGs41GNesHMq4FdStGdOaGs44GtY0Gtw1FXaoGXU4GNC1CXKoGdO0GdOmHs4rHtO2GdOaKtKoHdU1HXG3HMq4FdKqHXa3HMU1FdU4Hdw1FXeoGtC4HXG3HMU1FdS5GNSsHMq5Fde0HdG3HMVXHM44HdU3HMqrGW4rGdCaHc4qGtStGNC1FXYqFdCaHc4sGXO0Gtw1FXYqFdY4HsVXHc4tHNOqHdC1FXYqFdY3HWU2FdK3GdU2GdOmGNUoGXe1ING3HMU2FdO1GXY4HtOmIM45HNC4HtOaKtSoHdY1GNa3HMq5FdasINC1CXSoHdKrGdOmIM42IXSrGdOaHc42GdarIXw1FXeoHNCtHdC1CYG2FdO4INY4HtOmIW45GtY3HMU2FdS0Htw1FXaoGNU1Hda3HMU2FdarGXGrGdOmHs4qHXO1CYG2Fde3ING3HMq1Fde1Gda3HMU3FdY4HtO2GdOmHM4rHdO4HtOaHs40HXYsHMq0FdS5HtO2GdOaKtwoHXetGdOmHW42CXwoHNYsHtOmHW41GXC0Gtw1CXwoHNU2GdOmHW4tIXOtHtOaKtwoHXetGdOmHW4sGtO3HMU3FdKsIXY4HtOmHW4rGNCrIXw1CXwoGtU0HdC1FXKoGXY0HdC1CYG3FdY4GNU2GdOmGs45GNwqHdC1CXwoGXK0HMqtFda3GNO2GdOaHc44INK4HtOmGs44IXK1CYG2FdwqHdC1FXGoIXe3HNSsHMU2FdO2GtYsHMqtFde4IXSsHMU2FdK2HNSsHMq0FdY3GXw1CYG2FdU2GdG3HMq0FdeqHNS4HtOaHM43HtSrIXw1FXSoGXe1ING3HMU1FdSqHtU2GdOmHs43HXw5Gtw1CYG1FdG1INetHtOmHs4rGdG1HdC1CXOoGNOrIXYsHMq2FdG4IXO2GdOaHW45IXerIXw1FXOoHNCtHNSsHMVXHW45GNw2GdOmHM4rGte4GNC1CXKoHtKsGXSsHMq0Fde1Htw1CXKoHXO1IXw1FXKoINw3GdOaKtKoGdSqHtOmHW45INUsHMU0FdU5IXYsHMq1FdYsGXGrGdOaGs45HdamHM4tHdw1CYqsFdO0GtSsHMq4FdU3INS4HtOaKtCoGtU5HMq3FdYtHdSsHMUsFdU4IXG3HMq1Fde4HNG3HMUrFda4Hdw1FXKoHdC2CYGrFda0GNC1FXKoGda3HtOaGM42HNC2GdOmHW4rGtY2IXw1CXYoGtCqIXw1FXKoGNO3HtOaQcCauQK9CeHpvQDjvgPeFPHiSRVfCcVguQrmJMDdxRDsTQ50K29mv3CcCATjvAqnwhPmTN0cvg9oygPsvsC+JW9qSRLiJaiaCWUaJW9hJai8F3H2Tt4E
|
public/editor-build/editor/icons/editor/wp-shortcode.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
JBH2TsVjTX0cvgGnx3Unw2bpwhLdv2LfCcV2uQP3Kg94JMCqCXUaGNSaGNScCBbnvA5tJMDixBLqIc8px3x3FhwtFg9sTs8sGXUqF3H2TsC+JAwaS2rbw3G9Cg5dFQfdv24nx3DbwBVfwcC+JAwaTgfmvX0cS3PswgPoxYHpvA9sCcVguQrmFRD1vAO9Cg5pvhjfwg8cCBH0wg9lTN0cvg9oTMCaw3Lsv2nfFRxjTBLiJMCrCd48wAZ0uWVeJMDHGWU4StUaGs4sCXYoIWU1FdeaHW41CXwoGeqoHsU0FdxXFdCaHM43CXUaHc44CXUaIBicFt48wAZ0uWVeJMDHGNGoHWU3FdTdGW0rFM40FNYoHs0oHs0sFdCnFdKnFdwnFdwnGM4sFM43FNYoIRGoHc0rFdKaGM4tFNYoHAaoGOGrGcUoIWUrGW4rCXUaIWUqCXOoGcUqCXCoHsUrFdKaGM4tCXGoHgGoGcUqCXCoHs0oGMUsFdwnFdGW43HXKqGterGXKqHdw4GXG0YoHWUqCW41FdSoGM43CXUaGW0oHW4rFM45FdZGHcUrGc45vXYoIW01FdGnGM4tFNGoHAGnFdKaGW0oIW0oGM0oIW0oGM0oHWUqFM40FM43FdYnFdwaGWUqCXYoGs4rCXCoGM4rwtCoGM0oGMUsFdYnFdZdFdKaGWUoHM42FdYoHsUqCXUnFdKoGM0oIM4rvXCoIMU4FdSoIW0sFdxdFdCnGMUoHM0rFdaoHM0sFdP6Cc8+JBVbxAaaTX0cNNaoGMU4FdxmFNCoHWU3Ss44FdCaGM41FdGaGc4tFdGoIMUqCXYoIW0oGcUsFdwnFdOaGWUqCXUnFdYnFdYnFdZGIW4rCXaoH3icFt48wAZ0uWVeJMDHGNOaHW4sStUaFdGoGM41FdYoIWUqCW44FM4sCXYoHs0oHcUsFdfmFNCoHMU3StCoHW0rFdKaHW00CXKnHc45CXUnGM40FM40FNCoHs0rFNGoIBicFt48F2w+JW9hJdqpw3ThJai=
|
public/editor-build/editor/icons/icons.svg
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
-
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><symbol id="nc-play" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.6 7.2l-10-7A1 1 0 0 0 2 1v14c0 .8.9 1.3 1.6.8l10-7c.5-.4.5-1.2 0-1.6z"/></g></g></symbol><symbol id="nc-bold" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M11.56 7.316a3.483 3.483 0 0 0 1.418-3.207C12.782 2.305 11.143 1 9.33 1H2v1l1.447.724A1 1 0 0 1 4 3.618v8.764a1 1 0 0 1-.553.894L2 14v1h7.823c2.104 0 3.98-1.547 4.162-3.643a4.001 4.001 0 0 0-2.424-4.04zM7 3h1a2 2 0 1 1 0 4H7V3zm2 10H7V9h2a2 2 0 1 1 0 4z"/></g></g></symbol><symbol id="nc-h1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.5 2.05h2.686v4.964h5.389V2.05h2.686v11.9H8.575V9.258H3.186v4.692H.5V2.05zm12.18 4.91h2.83v6.99h-1.5V8.29h-1.33V6.96z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.05 2.3h2.577v4.762h5.17V2.3h2.576v11.416H7.796V9.215h-5.17v4.5H.05V2.3zm13.992 7.324c.17-.24.254-.471.254-.695a.77.77 0 0 0-.22-.561.758.758 0 0 0-.567-.226c-.422 0-.822.3-1.199.902l-1.2-.71c.314-.486.658-.854 1.032-1.103.374-.25.85-.374 1.43-.374.578 0 1.087.184 1.525.551.438.368.657.869.657 1.502 0 .345-.088.676-.264.993-.176.316-.5.72-.973 1.213l-1.21 1.257h2.649v1.343h-4.73v-1.113l1.967-2.014c.396-.403.68-.725.849-.965z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.1 2.27h2.589v4.784h5.194V2.27h2.589v11.47h-2.59V9.216H2.69v4.522H.1V2.27zm11.392 6.014V7.002h4.125v1.041L14.24 9.614c.54.09.958.317 1.253.68.296.363.443.782.443 1.258 0 .706-.239 1.26-.718 1.662-.478.402-1.09.603-1.836.603-.745 0-1.5-.264-2.265-.79l.617-1.196c.636.45 1.205.675 1.706.675.302 0 .551-.074.747-.222.196-.148.294-.361.294-.64a.78.78 0 0 0-.337-.666c-.225-.164-.537-.246-.935-.246-.212 0-.51.061-.896.183V9.807l1.291-1.523h-2.11z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h4" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.09 2.3h2.57v4.75h5.158V2.3h2.571v11.39H7.82V9.198H2.66v4.49H.09V2.3zm13.629 8.499V9.63h1.435V10.8h.757v1.292h-.757v1.598H13.72v-1.598h-2.69v-1.139l2.384-3.953h1.627l-2.269 3.8h.948z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-italic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12 2V0H6v2h1.27a.5.5 0 0 1 .496.57l-1.51 10.571a1 1 0 0 1-.99.859H4v2h6v-2H8.73a.5.5 0 0 1-.496-.57l1.51-10.571a1 1 0 0 1 .99-.859H12z"/></g></g></symbol><symbol id="nc-list-bullet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="2" cy="2" r="2"/><circle data-color="color-2" cx="2" cy="8" r="2"/><circle data-color="color-2" cx="2" cy="14" r="2"/><path fill="currentColor" d="M6 1h10v2H6z"/><path fill="currentColor" d="M6 7h10v2H6z"/><path fill="currentColor" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-list-default" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M1 9h7c.6 0 1-.4 1-1s-.4-1-1-1H1c-.6 0-1 .4-1 1s.4 1 1 1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-list-numbers" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 1h11v2H5z"/><path fill="currentColor" d="M5 7h11v2H5z"/><path fill="currentColor" d="M5 13h11v2H5z"/><path data-color="color-2" d="M.368 4v-.549l.598-.048c.097-.007.11-.035.11-.139V.84c0-.083-.02-.125-.09-.145L.382.569.46 0h1.666v3.264c0 .111.007.132.111.139l.57.048V4H.368z"/><path data-color="color-2" d="M.047 10v-.63l.907-.886c.684-.663.975-.934.975-1.32 0-.25-.122-.433-.48-.433-.373 0-.529.122-.529.603L0 7.252C.007 6.176.826 6 1.536 6c1.05 0 1.422.447 1.422 1.083 0 .636-.44 1.056-.934 1.53l-.765.73h.995c.067 0 .095-.013.108-.08l.095-.535h.717V10H.047z"/><path data-color="color-2" d="M2.344 13.682c.567.087.88.427.88 1.026 0 .88-.66 1.292-1.612 1.292C.939 16 .34 15.76 0 15.387l.533-.586c.253.247.533.44.999.44.373 0 .693-.133.693-.6 0-.406-.253-.573-.666-.573a2.73 2.73 0 0 0-.493.047v-.666l.326-.04c.48-.06.74-.293.74-.72 0-.252-.114-.459-.487-.459-.36 0-.532.12-.532.593l-.913-.08c0-1.052.793-1.232 1.492-1.232 1.026 0 1.419.393 1.419 1.106 0 .56-.347.912-.767 1.039v.026z"/></g></g></symbol><symbol id="nc-p" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><text fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" font-size="20" font-family="Montserrat-SemiBold, Montserrat" font-weight="500"><tspan x=".7" y="15">P</tspan></text></g></g></symbol><symbol id="nc-text-align-justify" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h16v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h16v2H0z"/></g></g></symbol><symbol id="nc-add" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H9v3H7V9H4V7h3V4h2v3h3v2z"/></g></g></symbol><symbol id="nc-align-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 11)" x="7" y="6" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-middle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 8)" x="7" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 5)" x="7" y="0" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-duplicate" viewBox="0 0 14 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="matrix(-1 0 0 1 14 0)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M9 4H1c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z"/><path d="M13 0H3v2h9v11h2V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-pin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C4.1 0 1 3.1 1 7c0 1.9.7 3.7 2.1 5 .1.1 4.1 3.7 4.2 3.8.4.3 1 .3 1.3 0 .1-.1 4.2-3.7 4.2-3.8 1.4-1.3 2.1-3.1 2.1-5 .1-3.9-3-7-6.9-7zm0 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></g></g></symbol><symbol id="nc-dashed" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 7h6v2H0z"/><path d="M10 7h6v2h-6z"/></g></g></g></symbol><symbol id="nc-dotted" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 7h2v2H1z"/><path d="M5 7h2v2H5z"/><path d="M9 7h2v2H9z"/><path d="M13 7h2v2h-2z"/></g></g></g></symbol><symbol id="nc-solid" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M0 7h16v2H0z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-iframe" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M16 12h-2v-2h-2v2h-2v2h2v2h2v-2h2z"/><path fill="currentColor" d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z"/></g></g></symbol><symbol id="nc-align-left" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z" transform="rotate(90 8 8)"/><rect x="4" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(180 11 8)" x="10" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-arrow-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M9.3 1.3L7.9 2.7 12.2 7H0v2h12.2l-4.3 4.3 1.4 1.4L16 8z"/></g></g></symbol><symbol id="nc-brush" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M0 9c0 1.7 1.3 3 3 3h2v2c0 1.1.9 2 2 2s2-.9 2-2v-2h2c1.7 0 3-1.3 3-3H0z"/><path d="M0 0h7l2 3 2-3h3v7H0z"/></g></g></g></symbol><symbol id="nc-circle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="5" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-round" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3c3.333 0 5.833 1 7.5 3 1.667 2 2.5 4.333 2.5 7h-3c-.011-2.144-.644-3.844-1.9-5.1C6.844 6.644 5.144 6.011 3 6V3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-square" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3h10v10h-3V6H3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.4 3.1l-7-3c-.3-.1-.5-.1-.8 0l-7 3c-.4.1-.6.5-.6.9v8c0 .4.2.8.6.9l7 3c.1.1.3.1.4.1s.3 0 .4-.1l7-3c.4-.2.6-.5.6-.9V4c0-.4-.2-.8-.6-.9zM8 2.1L12.5 4 8 5.9 3.5 4 8 2.1zM2 5.5l5 2.1v5.8l-5-2.1V5.5zm7 8V7.7l5-2.1v5.8l-5 2.1z"/></g></g></symbol><symbol id="nc-font" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0H1v4h1l.724-1.447A1 1 0 0 1 3.618 2H7v11.28a1 1 0 0 1-.684.948L4 15v1h8v-1l-2.316-.772A1 1 0 0 1 9 13.279V2h3.382a1 1 0 0 1 .894.553L14 4h1V0H8z"/></g></g></symbol><symbol id="nc-link" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M4.5 16c-1.2 0-2.3-.5-3.2-1.3-1.8-1.8-1.8-4.6 0-6.4l.7-.7L3.4 9l-.7.7c-1 1-1 2.6 0 3.6s2.6 1 3.6 0l3-3c1-1 1-2.6 0-3.6L8.6 6 10 4.6l.7.7c1.8 1.8 1.8 4.6 0 6.4l-3 3c-.8.8-2 1.3-3.2 1.3z"/><path fill="currentColor" d="M6 11.4l-.7-.7c-1.8-1.8-1.8-4.6 0-6.4l3-3c.9-.9 2-1.3 3.2-1.3s2.3.5 3.2 1.3c1.8 1.8 1.8 4.6 0 6.4l-.7.7L12.6 7l.7-.7c1-1 1-2.6 0-3.6s-2.6-1-3.6 0l-3 3c-1 1-1 2.6 0 3.6l.7.7L6 11.4z"/></g></g></symbol><symbol id="nc-more" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="8" cy="8" r="2"/><circle fill="currentColor" cx="2" cy="8" r="2"/><circle fill="currentColor" cx="14" cy="8" r="2"/></g></g></symbol><symbol id="nc-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="4" stroke-width="2" stroke="currentColor" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8.1 3.5L.3 11.3c-.2.2-.3.4-.3.7v3c0 .6.4 1 1 1h3c.3 0 .5-.1.7-.3l7.8-7.8-4.4-4.4z"/><path data-color="color-2" d="M15.7 3.3l-3-3c-.4-.4-1-.4-1.4 0L9.5 2.1l4.4 4.4 1.8-1.8c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-plus" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 7H9V1c0-.6-.4-1-1-1S7 .4 7 1v6H1c-.6 0-1 .4-1 1s.4 1 1 1h6v6c0 .6.4 1 1 1s1-.4 1-1V9h6c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-search" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M7 14c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM7 2C4.243 2 2 4.243 2 7s2.243 5 5 5 5-2.243 5-5-2.243-5-5-5z"/><path data-color="color-2" d="M15.707 14.293L13.314 11.9a8.019 8.019 0 0 1-1.414 1.414l2.393 2.393a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414z"/></g></g></symbol><symbol id="nc-star" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.144 5.438l-4.316-.627L8.897.9C8.559.217 7.441.217 7.103.9l-1.93 3.911-4.317.627a1.002 1.002 0 0 0-.554 1.707l3.124 3.044-.737 4.299a1 1 0 0 0 1.451 1.054L8 13.513l3.861 2.03c.728.381 1.591-.234 1.451-1.054l-.737-4.299 3.124-3.044a1.003 1.003 0 0 0-.555-1.708z"/></g></g></symbol><symbol id="nc-text-align-center" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M3 5h10v2H3z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M3 13h10v2H3z"/></g></g></symbol><symbol id="nc-text-align-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h10v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h10v2H0z"/></g></g></symbol><symbol id="nc-text-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M6 5h10v2H6z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-upload" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13 7.1V7c0-2.8-2.2-5-5-5-2.5 0-4.6 1.8-4.9 4.3C1.3 6.9 0 8.5 0 10.5 0 13 2 15 4.5 15H12c2.2 0 4-1.8 4-4 0-1.9-1.3-3.4-3-3.9zM9 10v3H7v-3H4l4-4 4 4H9z"/></g></g></symbol><symbol id="nc-check" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="check" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6.7 6.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l2 2c.2.2.4.3.7.3.3 0 .5-.1.7-.3l7-7c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L8 7.6 6.7 6.3z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 15c3.9 0 7-3.1 7-7 0-.6-.4-1-1-1s-1 .4-1 1c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5c.6 0 1.1.1 1.7.3.5.2 1.1-.1 1.3-.6.2-.5-.1-1.1-.6-1.3C9.6 1.1 8.8 1 8 1 4.1 1 1 4.1 1 8s3.1 7 7 7z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-cog" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.3 5.2l1.1-2.1L13 1.7l-2.1 1.1c-.3-.2-.7-.3-1.1-.4L9 0H7l-.8 2.3c-.3.1-.7.2-1 .4L3.1 1.6 1.6 3.1l1.1 2.1c-.2.3-.3.7-.4 1L0 7v2l2.3.8c.1.4.3.7.4 1.1L1.6 13 3 14.4l2.1-1.1c.3.2.7.3 1.1.4L7 16h2l.8-2.3c.4-.1.7-.3 1.1-.4l2.1 1.1 1.4-1.4-1.1-2.1c.2-.3.3-.7.4-1.1L16 9V7l-2.3-.8c-.1-.3-.2-.7-.4-1zM8 11c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"/></g></g></symbol><symbol id="nc-hover" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M3 8.238V4.5C3 3.122 4.121 2 5.5 2S8 3.122 8 4.5v2.605l1.059.118A4.456 4.456 0 0 0 10 4.5C10 2.019 7.981 0 5.5 0S1 2.019 1 4.5c0 1.557.795 2.93 2 3.738z"/><path fill="currentColor" d="M13.9 16l1.066-3.554a3 3 0 0 0-2.542-3.843L7 8V4.5a1.5 1.5 0 1 0-3 0V12H3v-2h-.5A1.5 1.5 0 0 0 1 11.5v1.833c0 .95.285 1.87.79 2.667H13.9z"/></g></g></symbol><symbol id="nc-image" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 16H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1zM2 14h12V2H2v12z"/><path data-color="color-2" d="M6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1z"/><path data-color="color-2" d="M3 12l2-4 2 2 3-4 3 6z"/></g></g></symbol><symbol id="nc-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="none" fill-rule="nonzero"/><path fill="currentColor" d="M11.5 10.1l-1.4 1.4L8 9.4l-2.1 2.1-1.4-1.4L6.6 8 4.5 5.9l1.4-1.4L8 6.6l2.1-2.1 1.4 1.4L9.4 8z"/></g></g></g></symbol><symbol id="nc-settings" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 5V1c0-.6-.4-1-1-1S3 .4 3 1v4c0 .6.4 1 1 1s1-.4 1-1z"/><path fill="currentColor" d="M1 11c0 1.3.9 2.4 2 2.8V15c0 .6.4 1 1 1s1-.4 1-1v-1-.2c1.2-.4 2-1.5 2-2.8 0-1.7-1.3-3-3-3s-3 1.3-3 3z"/><path data-color="color-2" d="M11 11v4c0 .6.4 1 1 1s1-.4 1-1v-4c0-.6-.4-1-1-1s-1 .4-1 1z"/><path data-color="color-2" d="M9 5c0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.3-.9-2.4-2-2.8V1c0-.6-.4-1-1-1s-1 .4-1 1v1.2C9.9 2.6 9 3.7 9 5z"/></g></g></symbol><symbol id="nc-trash" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V6H2z"/><path data-color="color-2" d="M12 3V1c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v2H0v2h16V3h-4zm-2 0H6V2h4v1z"/></g></g></symbol><symbol id="nc-uncheck" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="uncheck" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval" stroke="currentColor" stroke-width="2" cx="8" cy="8" r="6"/></g></g></g></symbol><symbol id="nc-button-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M12.586 15l-3.793-3.793L7 14 5 6l8 2-2.793 1.793L14 13.586 12.586 15z"/><path fill="currentColor" d="M4 10H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v7h-2V2H2v6h2v2z"/></g></g></symbol><symbol id="nc-button" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.424 5.603L7 5V1.5a1.5 1.5 0 1 0-3 0V9H3V7h-.5A1.5 1.5 0 0 0 1 8.5v1.833a5 5 0 0 0 1 3L4 16h9l1.966-6.554a3 3 0 0 0-2.542-3.843z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-desktop" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 0H1C.4 0 0 .4 0 1v11c0 .6.4 1 1 1h5v1H3v2h10v-2h-3v-1h5c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 11H2V2h12v9z"/></g></g></symbol><symbol id="nc-divider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M1 1v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path fill="currentColor" d="M1 12v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path data-color="color-2" d="M15 9H1a1 1 0 0 1 0-2h14a1 1 0 0 1 0 2z"/></g></g></symbol><symbol id="nc-lock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134V6.4H5.833V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-phone" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(2)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M10 16H2c-1.103 0-2-.897-2-2V2C0 .897.897 0 2 0h8c1.103 0 2 .897 2 2v12c0 1.103-.897 2-2 2zM2 2v12h8.001L10 2H2z"/><path d="M7 12v-2H5v2z"/></g></g></g></symbol><symbol id="nc-reorder" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v1H3z"/><path d="M1 4h14v11H1z"/></g></g></g></symbol><symbol id="nc-spacer" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6H0V1c0-.6.4-1 1-1h5v2H2v4z"/><path fill="currentColor" d="M16 6h-2V2h-4V0h5c.6 0 1 .4 1 1v5z"/><path fill="currentColor" d="M15 16h-5v-2h4v-4h2v5c0 .6-.4 1-1 1z"/><path fill="currentColor" d="M6 16H1c-.6 0-1-.4-1-1v-5h2v4h4v2z"/></g></g></symbol><symbol id="nc-tablet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13 0H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM7 15v-1h2v1H7zm6-3H3V2h10v10z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-unlock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134h2.166V6.4h-6.5V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-upgrade" viewBox="0 0 32 32"><g><g class="nc-icon-wrapper" fill="currentColor"><circle fill="currentColor" cx="16" cy="6" r="1"/><path fill="currentColor" d="M18 24v-1c0-.77.297-1.468.775-2H0v1c0 2.757 2.243 5 5 5h13v-3z"/><path fill="currentColor" d="M27 4v10.09a5.964 5.964 0 0 1 2 .721V4c0-1.654-1.346-3-3-3H6C4.346 1 3 2.346 3 4v15h2V4c0-.551.448-1 1-1h20c.552 0 1 .449 1 1z"/><path data-color="color-2" d="M31 22h-1v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1zm-7-2c0-1.103.897-2 2-2s2 .897 2 2v2h-4v-2z"/></g></g></symbol><symbol id="nc-close" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.786 3.214a.69.69 0 0 0-1 0L8 7 4.214 3.214a.69.69 0 0 0-1 0 .69.69 0 0 0 0 1L7 8l-3.786 3.786a.69.69 0 0 0 0 1 .648.648 0 0 0 .5.214.648.648 0 0 0 .5-.214L8 9l3.786 3.786a.772.772 0 0 0 .5.214.772.772 0 0 0 .5-.214.69.69 0 0 0 0-1L9 8l3.786-3.786a.69.69 0 0 0 0-1z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-corners-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><rect x="1" y="2" width="14" height="12" rx="3" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-bottom-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="#22AFDA" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-bottom-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="#22AFDA" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="#22AFDA"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="#22AFDA" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path transform="rotate(90 11.833 8)" d="M11.833 10.167h4.5l-4.5-4.334-4.5 4.334h2.834z"/><path transform="matrix(0 1 1 0 -3.833 3.833)" d="M4.167 10.167h4.5l-4.5-4.334-4.5 4.334H2.5z"/></g></g></g></symbol><symbol id="nc-redo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M10 4.6L8.6 6l3 3H6C4.3 9 3 7.7 3 6s1.3-3 3-3h8V1H6C3.2 1 1 3.2 1 6s2.2 5 5 5h5.6l-3 3 1.4 1.4 5.4-5.4L10 4.6z"/></g></g></symbol><symbol id="nc-size" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 8l-3-3v2h-2v2h2v2z"/><path d="M7 6h2V4h2L8 1 5 4h2z"/><path d="M9 10H7v2H5l3 3 3-3H9z"/><path d="M6 9V7H4V5L1 8l3 3V9z"/></g></g></g></symbol><symbol id="nc-styling-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 1h16v2H0z"/><path d="M0 13h16v2H0z"/><path transform="rotate(-90 1 8)" d="M-4 7H6v2H-4z"/><path transform="rotate(-90 15 8)" d="M10 7h10v2H10z"/></g></g></g></symbol><symbol id="nc-styling-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="#22AFDA" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v2H3z"/><path d="M3 13h10v2H3z"/><path transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="#22AFDA" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="#22AFDA" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="#22AFDA" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.2 5.6l3.4-3.4L3.7.3c-.4-.4-1-.4-1.4 0l-2 2c-.4.4-.4 1 0 1.4l1.9 1.9z"/><path data-color="color-2" d="M13.8 10.4l-3.4 3.4 1.9 1.9c.2.2.4.3.7.3h3v-3c0-.3-.1-.5-.3-.7l-1.9-1.9z"/><path fill="currentColor" d="M15.7 4.3l-4-4c-.4-.4-1-.4-1.4 0L9 1.6l1.7 1.7-1.4 1.4L7.6 3 6 4.6l1.7 1.7-1.4 1.4L4.6 6 3 7.6l1.7 1.7-1.4 1.4L1.6 9 .3 10.3c-.4.4-.4 1 0 1.4l4 4c.4.4 1 .4 1.4 0l10-10c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-time" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12.7.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l.8.8-.9.9C10 2.5 8.6 2 7 2 3.1 2 0 5.1 0 9s3.1 7 7 7 7-3.1 7-7c0-1.6-.5-3-1.4-4.2l.9-.9.8.8c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-3-3zM7 14c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z"/><path data-color="color-2" d="M8 6H6v4h4V8H8z"/></g></g></symbol><symbol id="nc-undo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.502 12.333a6.996 6.996 0 0 1-1.405-3.168l1.973-.331a4.982 4.982 0 0 0 1.003 2.26l-1.571 1.239z"/><path data-color="color-2" d="M6.834 14.903a7.015 7.015 0 0 1-2.976-1.259l1.186-1.611c.624.459 1.358.77 2.122.898l-.332 1.972z"/><path data-color="color-2" d="M9.165 14.903l-.33-1.973a4.99 4.99 0 0 0 2.209-.964l1.219 1.586a6.997 6.997 0 0 1-3.098 1.351z"/><path fill="currentColor" d="M8 1c-1.873 0-3.65.759-4.948 2.052L.9.9.2 7.3l6.4-.7-2.135-2.135A5.023 5.023 0 0 1 8 3c2.757 0 5 2.243 5 5 0 1.06-.327 2.072-.947 2.928l1.621 1.173A6.96 6.96 0 0 0 15 8c0-3.86-3.141-7-7-7z"/></g></g></symbol><symbol id="nc-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M8 6.333h4.5L8 2 3.5 6.333h2.833z"/><path transform="matrix(1 0 0 -1 0 23.667)" d="M8 14h4.5L8 9.667 3.5 14h2.833z"/></g></g></g></symbol><symbol id="nc-check-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><polygon fill="currentColor" points="12.4,6 11,4.6 7,8.6 5,6.6 3.6,8 7,11.4 "/></g></g></symbol><symbol id="nc-circle-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M11.5,10.1l-1.4,1.4L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8 L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-stre-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,12c-0.232,0-0.463-0.08-0.651-0.241l-7.759-6.65L0.892,3.59L8,9.683l7.108-6.093l1.302,1.519l-7.759,6.65 C8.463,11.92,8.232,12,8,12z"/></g></g></symbol><symbol id="nc-stre-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15.108,12.41L8,6.317L0.892,12.41l-1.302-1.519l7.759-6.65c0.375-0.322,0.927-0.322,1.302,0l7.759,6.65 L15.108,12.41z"/></g></g></symbol><symbol id="nc-alert-circle-que" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M8,13c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1s1,0.4,1,1 C9,12.6,8.6,13,8,13z M9.5,8.4C9,8.7,9,8.8,9,9v1H7V9c0-1.3,0.8-1.9,1.4-2.3C8.9,6.4,9,6.3,9,6c0-0.6-0.4-1-1-1 C7.6,5,7.3,5.2,7.1,5.5L6.6,6.4l-1.7-1l0.5-0.9C5.9,3.6,6.9,3,8,3c1.7,0,3,1.3,3,3C11,7.4,10.1,8,9.5,8.4z"/></g></g></symbol><symbol id="nc-grid-45" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M15,0h-5C9.4,0,9,0.4,9,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <path fill="currentColor" d="M15,9h-5c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C16,9.4,15.6,9,15,9z"/></g></g></symbol><symbol id="nc-bars" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><rect x="7" fill="currentColor" width="2" height="4"/> <rect x="10.243" y="2.757" transform="matrix(0.7071 -0.7071 0.7071 0.7071 0.929 9.7574)" opacity="0.9" fill="currentColor" width="4" height="2"/> <rect x="12" y="7" opacity="0.8" fill="currentColor" width="4" height="2"/> <rect x="11.243" y="10.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -5.0711 12.2427)" opacity="0.7" fill="currentColor" width="2" height="4"/> <rect x="7" y="12" opacity="0.6" fill="currentColor" width="2" height="4"/> <rect x="1.758" y="11.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -7.5564 6.2426)" opacity="0.5" fill="currentColor" width="4" height="2"/> <rect y="7" opacity="0.4" fill="currentColor" width="4" height="2"/> <rect x="2.757" y="1.758" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.5563 3.7573)" opacity="0.3" fill="currentColor" width="2" height="4"/> </g></g></symbol><symbol id="nc-square-remove-09" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,0H1C0.4,0,0,0.4,0,1v14c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z M11.5,10.1l-1.4,1.4 L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-paragraph" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <rect data-color="color-2" x="9" y="1" width="7" height="2"/> <rect data-color="color-2" x="9" y="4" width="7" height="2"/> <rect data-color="color-2" x="9" y="10" width="7" height="2"/> <rect data-color="color-2" x="9" y="13" width="7" height="2"/></g></g></symbol><symbol id="nc-zoom-e" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M2,6H0V1c0-0.6,0.4-1,1-1h5v2H2V6z"/> <path fill="currentColor" d="M16,6h-2V2h-4V0h5c0.6,0,1,0.4,1,1V6z"/> <path fill="currentColor" d="M15,16h-5v-2h4v-4h2v5C16,15.6,15.6,16,15,16z"/> <path fill="currentColor" d="M6,16H1c-0.6,0-1-0.4-1-1v-5h2v4h4V16z"/></g></g></symbol><symbol id="nc-hourglass" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,2c0.6,0,1-0.4,1-1s-0.4-1-1-1H1C0.4,0,0,0.4,0,1s0.4,1,1,1h1c0.1,2.4,0.8,4.5,2,6c-1.2,1.4-2,3.6-2,6H1 c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1s-0.4-1-1-1h-1c-0.1-2.5-0.8-4.6-2-6c1.3-1.5,2-3.6,2-6H15z M9.9,7.3L9,8.1l1,0.7 c1.2,0.9,2,2.9,2.1,5.2H4c0.1-2.3,0.9-4.3,2.1-5.2l1-0.7L6.1,7.3C4.8,6.1,4.1,4.2,4,2h8C11.9,4.2,11.2,6.1,9.9,7.3z"/></g></g></symbol><symbol id="nc-share-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M12,6c1.654,0,3-1.346,3-3s-1.346-3-3-3S9,1.346,9,3c0,0.223,0.029,0.439,0.075,0.649l-3.22,2.012 C5.343,5.254,4.704,5,4,5C2.346,5,1,6.346,1,8s1.346,3,3,3c0.704,0,1.343-0.254,1.855-0.661l3.22,2.012C9.029,12.561,9,12.777,9,13 c0,1.654,1.346,3,3,3s3-1.346,3-3s-1.346-3-3-3c-0.704,0-1.343,0.254-1.855,0.661l-3.22-2.012C6.971,8.439,7,8.223,7,8 S6.971,7.561,6.925,7.351l3.22-2.012C10.657,5.746,11.296,6,12,6z"/></g></g></symbol><symbol id="nc-form" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path data-color="color-2" d="M15,16H9c-0.552,0-1-0.448-1-1v-1c0-0.552,0.448-1,1-1h6c0.552,0,1,0.448,1,1v1 C16,15.552,15.552,16,15,16z"/> <path fill="currentColor" d="M15,0H1C0.448,0,0,0.448,0,1v9c0,0.552,0.448,1,1,1h14c0.552,0,1-0.448,1-1V1C16,0.448,15.552,0,15,0z M14,9 H2V4h12V9z"/></g></g></symbol><symbol id="nc-circle-remove-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><circle fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="8.5" cy="8.5" r="7"/><line data-color="color-2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="11.5" y1="5.5" x2="5.5" y2="11.5"/><line data-color="color-2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.5" y1="5.5" x2="11.5" y2="11.5"/></g></g></symbol><symbol id="nc-eye-ban-18" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M14.6,5.6l-8.2,8.2C6.9,13.9,7.5,14,8,14c3.6,0,6.4-3.1,7.6-4.9c0.5-0.7,0.5-1.6,0-2.3 C15.4,6.5,15,6.1,14.6,5.6z"/> <path fill="currentColor" d="M14.3,0.3L11.6,3C10.5,2.4,9.3,2,8,2C4.4,2,1.6,5.1,0.4,6.9c-0.5,0.7-0.5,1.6,0,2.2c0.5,0.8,1.4,1.8,2.4,2.7 l-2.5,2.5c-0.4,0.4-0.4,1,0,1.4C0.5,15.9,0.7,16,1,16s0.5-0.1,0.7-0.3l14-14c0.4-0.4,0.4-1,0-1.4S14.7-0.1,14.3,0.3z M5.3,9.3 C5.1,8.9,5,8.5,5,8c0-1.7,1.3-3,3-3c0.5,0,0.9,0.1,1.3,0.3L5.3,9.3z"/></g></g></symbol><symbol id="nc-eye-17" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,14c3.6,0,6.4-3.1,7.6-4.9c0.5-0.7,0.5-1.6,0-2.3C14.4,5.1,11.6,2,8,2C4.4,2,1.6,5.1,0.4,6.9 c-0.5,0.7-0.5,1.6,0,2.2C1.6,10.9,4.4,14,8,14z M8,5c1.7,0,3,1.3,3,3s-1.3,3-3,3S5,9.7,5,8S6.3,5,8,5z"/></g></g></symbol><symbol id="nc-drag" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M16 8l-3-3v2H9V3h2L8 0 5 3h2v4H3V5L0 8l3 3V9h4v4H5l3 3 3-3H9V9h4v2z"/></g></g></symbol><symbol id="nc-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8.01 13.004c2.598 0 3.876-1.336 3.876-3.107 0-3.616-5.561-2.585-5.561-4.11 0-.58.494-.958 1.365-.958.987 0 2.032.334 2.816 1.06l1.147-1.539C10.695 3.465 9.418 3 7.88 3c-2.28 0-3.674 1.336-3.674 2.947 0 3.645 5.576 2.469 5.576 4.153 0 .566-.538 1.074-1.685 1.074a4.255 4.255 0 0 1-3.078-1.321l-1.132 1.612c.915.914 2.25 1.539 4.123 1.539z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-medium" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1" d="M13.544 13V3h-3.067L7.992 9.288 5.508 3H2.456v10h2.178V5.731L7.517 13h.95l2.884-7.269V13z"/></g></g></symbol><symbol id="nc-large" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1" d="M11.392 13v-2.06H6.94V3H4.683v10z"/></g></g></symbol><symbol id="nc-16" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1.014 3.1h3.934v9.8H3.072V4.752H1.014z"/><path d="M13.111 4.703a4.159 4.159 0 0 0-1.141-.161c-.877 0-1.538.294-1.981.882-.443.588-.651 1.39-.623 2.408a2.46 2.46 0 0 1 1.029-.973c.434-.22.95-.329 1.547-.329.97 0 1.74.285 2.31.854.57.57.854 1.33.854 2.282 0 .672-.145 1.258-.434 1.757-.29.5-.698.884-1.225 1.155-.527.27-1.141.406-1.841.406-.83 0-1.55-.191-2.156-.574-.607-.383-1.071-.933-1.393-1.652-.322-.719-.483-1.577-.483-2.576 0-1.036.175-1.944.525-2.723.35-.78.847-1.381 1.491-1.806.644-.425 1.4-.637 2.268-.637.504 0 1.024.068 1.561.203a5.43 5.43 0 0 1 1.407.553l-.714 1.4a3.245 3.245 0 0 0-1.001-.469zM10.15 8.476a1.603 1.603 0 0 0-.518 1.246c-.01.28.056.548.196.805s.352.467.637.63c.285.163.637.245 1.057.245.56 0 1.008-.154 1.344-.462.336-.308.504-.737.504-1.288 0-.513-.161-.922-.483-1.225-.322-.303-.758-.455-1.309-.455-.597 0-1.073.168-1.428.504z"/></g></g></g></symbol><symbol id="nc-24" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M7.784 11.262V12.9H.532v-1.358l3.696-3.808c.355-.355.64-.705.854-1.05.215-.345.322-.644.322-.896a.968.968 0 0 0-.42-.833c-.28-.2-.667-.301-1.162-.301-.43 0-.887.107-1.372.322a5.256 5.256 0 0 0-1.372.896L.336 4.43a7.256 7.256 0 0 1 1.827-1.043 5.3 5.3 0 0 1 1.925-.371c.644 0 1.213.103 1.708.308.495.205.88.497 1.155.875s.413.814.413 1.309c0 .476-.163.98-.49 1.512-.327.532-.784 1.106-1.372 1.722l-2.492 2.52h4.774z"/><path d="M15.71 8.98v1.61h-1.414v2.31H12.56v-2.31H7.87V9.204L11.062 3.1h1.806L9.872 8.98h2.688V6.712h1.736V8.98z"/></g></g></g></symbol><symbol id="nc-32" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M6.867 8.014c.537.467.805 1.078.805 1.834 0 .616-.159 1.16-.476 1.631-.317.471-.77.84-1.358 1.106-.588.266-1.274.399-2.058.399-.663 0-1.318-.1-1.967-.301-.649-.2-1.202-.469-1.659-.805l.742-1.456a4.321 4.321 0 0 0 2.758 1.008c.681 0 1.216-.14 1.603-.42.387-.28.581-.658.581-1.134 0-.485-.191-.856-.574-1.113-.383-.257-.929-.385-1.638-.385H2.142V7.244l2.632-2.548H.644L.63 3.1h6.552v1.162l-2.996 2.87.518.056c.905.084 1.626.36 2.163.826z"/><path d="M15.556 11.262V12.9H8.304v-1.358L12 7.734c.355-.355.64-.705.854-1.05.215-.345.322-.644.322-.896a.968.968 0 0 0-.42-.833c-.28-.2-.667-.301-1.162-.301-.43 0-.887.107-1.372.322a5.256 5.256 0 0 0-1.372.896L8.108 4.43a7.256 7.256 0 0 1 1.827-1.043 5.3 5.3 0 0 1 1.925-.371c.644 0 1.213.103 1.708.308.495.205.88.497 1.155.875s.413.814.413 1.309c0 .476-.163.98-.49 1.512-.327.532-.784 1.106-1.372 1.722l-2.492 2.52h4.774z"/></g></g></g></symbol><symbol id="nc-48" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 3)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M7.952 5.98v1.61H6.538V9.9H4.802V7.59H.112V6.204L3.304.1H5.11L2.114 5.98h2.688V3.712h1.736V5.98z"/><path d="M14.597.709c.593.462.889 1.09.889 1.883 0 .448-.121.854-.364 1.218a2.451 2.451 0 0 1-1.008.854c.579.215 1.034.541 1.365.98.331.439.497.943.497 1.512 0 .57-.154 1.069-.462 1.498-.308.43-.749.758-1.323.987-.574.229-1.244.343-2.009.343-.765 0-1.435-.114-2.009-.343-.574-.229-1.015-.553-1.323-.973-.308-.42-.462-.915-.462-1.484 0-.579.173-1.09.518-1.533.345-.443.821-.772 1.428-.987a2.715 2.715 0 0 1-1.071-.896 2.15 2.15 0 0 1-.385-1.246c0-.765.296-1.374.889-1.827.593-.453 1.393-.679 2.401-.679 1.027 0 1.836.231 2.429.693zM10.915 1.71c-.303.233-.455.56-.455.98 0 .42.152.747.455.98.303.233.726.35 1.267.35.541 0 .961-.117 1.26-.35.299-.233.448-.56.448-.98 0-.42-.15-.747-.448-.98-.299-.233-.719-.35-1.26-.35s-.964.117-1.267.35zm-.231 4.158c-.355.261-.532.63-.532 1.106 0 .485.177.863.532 1.134.355.27.854.406 1.498.406.635 0 1.132-.133 1.491-.399.36-.266.539-.642.539-1.127 0-.476-.18-.847-.539-1.113-.36-.266-.861-.399-1.505-.399-.635 0-1.13.13-1.484.392z"/></g></g></g></symbol><symbol id="nc-64" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(.2 3)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M5.537 1.703a4.159 4.159 0 0 0-1.141-.161c-.877 0-1.538.294-1.981.882-.443.588-.651 1.39-.623 2.408a2.46 2.46 0 0 1 1.029-.973c.434-.22.95-.329 1.547-.329.97 0 1.74.285 2.31.854.57.57.854 1.33.854 2.282 0 .672-.145 1.258-.434 1.757-.29.5-.698.884-1.225 1.155-.527.27-1.141.406-1.841.406-.83 0-1.55-.191-2.156-.574C1.269 9.027.805 8.477.483 7.758.161 7.039 0 6.181 0 5.182c0-1.036.175-1.944.525-2.723.35-.78.847-1.381 1.491-1.806.644-.425 1.4-.637 2.268-.637.504 0 1.024.068 1.561.203a5.43 5.43 0 0 1 1.407.553l-.714 1.4a3.245 3.245 0 0 0-1.001-.469zM2.576 5.476a1.603 1.603 0 0 0-.518 1.246c-.01.28.056.548.196.805s.352.467.637.63c.285.163.637.245 1.057.245.56 0 1.008-.154 1.344-.462.336-.308.504-.737.504-1.288 0-.513-.161-.922-.483-1.225-.322-.303-.758-.455-1.309-.455-.597 0-1.073.168-1.428.504z"/><path d="M15.724 5.98v1.61H14.31V9.9h-1.736V7.59h-4.69V6.204L11.076.1h1.806L9.886 5.98h2.688V3.712h1.736V5.98z"/></g></g></g></symbol><symbol id="nc-row" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.77 0C15.507 0 16 .486 16 1.214v14.572c0 .728-.492 1.214-1.23 1.214H1.23C.493 17 0 16.514 0 15.786V1.214C0 .486.492 0 1.23 0h13.54zm-2 4H3.23C2.493 4 2 4.514 2 5.286v6.428C2 12.486 2.492 13 3.23 13h9.54c.738 0 1.23-.514 1.23-1.286V5.286C14 4.514 13.508 4 12.77 4z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-column" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.77 0C15.507 0 16 .486 16 1.214v14.572c0 .728-.492 1.214-1.23 1.214H1.23C.493 17 0 16.514 0 15.786V1.214C0 .486.492 0 1.23 0h13.54zM12 13.77V3.23C12 2.493 11.486 2 10.714 2H5.286C4.514 2 4 2.492 4 3.23v10.54c0 .738.514 1.23 1.286 1.23h5.428c.772 0 1.286-.492 1.286-1.23z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-sound-cloud" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M2.777 5.974c-.279 0-.557.171-.557.343l-.279 4.628.279 3.086c0 .171.278.171.278.171.279 0 .279-.171.279-.171l.278-3.086V6.317c0-.172-.278-.343-.278-.343z"/><path d="M.945 8.209c-.25.008-.494.142-.49.267l-.132 3.382.328 2.24c.005.125.254.116.254.116.25-.009.245-.134.245-.134l.17-2.257-.117-3.373c-.004-.125-.258-.241-.258-.241z"/><path d="M6.57 14.202c.217 0 .434-.171.434-.343l.217-2.914-.217-7.2c0-.171-.217-.342-.433-.342-.217 0-.434.171-.434.342l-.216 7.2.216 2.914c0 .172.217.343.434.343z"/><path d="M4.53 14.202c.2 0 .4-.171.4-.343l.2-2.914-.2-6.342c0-.172-.2-.343-.4-.343s-.4.171-.4.343l-.2 6.342.2 2.914c0 .172.2.343.4.343z"/><path d="M13.084 7.517C13.87 4.35 12.37 1.86 9.502 1.86c-.497 0-.895.171-1.293.343-.2.171-.2.343-.2.514v11.142c0 .172.1.343.2.343h5.571c1.09 0 2.09-1.352 2.09-3.352 0-2-1-3-2.786-3.333z"/></g></g></g></symbol><symbol id="nc-progress" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" stroke="none" stroke-width="1" fill="none"><path d="M9 1H2c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h7V1z" fill="currentColor"/><path d="M4 1.61v12.749L14 14V2H4v-.39z" stroke="currentColor" stroke-width="2"/></g></g></g></symbol><symbol id="nc-counter" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H7V4h2v3h3v2z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-shortcode" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M5 3c.5 0 1-.5 1-1s-.448-1-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1c0-.552-.5-1-1-1h-.875C3.45 13 3 12.508 3 11.77V4.23C3 3.493 3.45 3 4.125 3H5z"/><path d="M11 3c-.5 0-1-.5-1-1s.448-1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1c0-.552.5-1 1-1h.875C12.55 13 13 12.508 13 11.77V4.23C13 3.493 12.55 3 11.875 3H11z"/></g></g></g></symbol><symbol id="nc-sidebar" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h14zm-5 10.77V4.23C10 3.493 9.486 3 8.714 3H3.286C2.514 3 2 3.492 2 4.23v7.54c0 .738.514 1.23 1.286 1.23h5.428C9.486 13 10 12.508 10 11.77z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-dark" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.2 9.047a6.381 6.381 0 0 1-1.554.194 5.799 5.799 0 0 1-5.823-5.823c0-.517.065-1.035.194-1.553.065-.194 0-.453-.194-.647s-.388-.258-.647-.194C3.136 1.93 1 4.777 1 7.947a7.097 7.097 0 0 0 7.117 7.118c3.17 0 6.018-2.135 6.859-5.241.064-.194 0-.453-.194-.647a.62.62 0 0 0-.583-.13z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-light" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M1.87 2.813l.943-.943 1.415 1.415-.943.943z"/><path d="M11.772 3.285l1.414-1.415.943.943-1.414 1.415z"/><path d="M11.772 12.715l.943-.943 1.415 1.415-.943.943z"/><path d="M1.87 13.187l1.415-1.415.943.943-1.415 1.415z"/><circle cx="8" cy="8" r="4.668"/><path d="M-.002 7.333h2v1.334h-2z"/><path d="M7.333-.002h1.334v2H7.333z"/><path d="M14.001 7.333h2v1.334h-2z"/><path d="M7.333 14.001h1.334v2H7.333z"/></g></g></g></symbol><symbol id="nc-wp-shortcode" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M0 8c0 3.2 1.8 5.9 4.5 7.2L.7 4.7C.2 5.7 0 6.8 0 8z"/><path d="M13.4 7.6c0-1-.4-1.7-.7-2.2-.4-.7-.7-1.2-.7-1.9s.6-1.4 1.3-1.4h.1C12 .8 10.1 0 8 0 5.2 0 2.7 1.4 1.3 3.6c.2 0 2.7-.1 2.7-.1.4 0 .5.6.1.7 0 0-.4.1-.9.1L6 12.9l1.8-5.3-1.3-3.4c-.4 0-.8-.1-.8-.1-.4 0-.4-.7.1-.7 0 0 1.3.1 2.1.1s2.1-.1 2.1-.1c.4 0 .5.6.1.7 0 0-.4.1-.9.1l2.9 8.6.8-2.7c.2-1 .5-1.8.5-2.5z"/><path d="M8.1 8.7l-2.4 7c.8.2 1.5.3 2.3.3.9 0 1.8-.2 2.7-.5 0 0 0-.1-.1-.1L8.1 8.7z"/><path d="M15 4.2c0 .3.1.5.1.8 0 .8-.2 1.7-.6 2.9l-2.5 7c2.4-1.4 4-4 4-6.9 0-1.4-.4-2.7-1-3.8z"/></g></g></g></symbol><symbol id="nc-sndcloud-style-1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="4" width="8" height="8" rx="1"/><rect x="10" y="7" width="1" height="5" rx=".5"/><rect x="9" y="9" width="1" height="3" rx=".5"/><rect x="13" y="8" width="1" height="4" rx=".5"/><rect x="11" y="8" width="1" height="4" rx=".5"/><rect x="12" y="6" width="1" height="6" rx=".5"/><rect x="14" y="7" width="1" height="5" rx=".5"/><rect x="15" y="9" width="1" height="3" rx=".5"/></g></g></g></symbol><symbol id="nc-sndcloud-style-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 2h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm1.5 6a.5.5 0 0 0-.5.5v4a.5.5 0 1 0 1 0v-4a.5.5 0 0 0-.5-.5zm-1 2a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm-3-1a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5zm1 1a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm1-1a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5zm-2 4a.5.5 0 0 0 .5-.5v-1a.5.5 0 1 0-1 0v1a.5.5 0 0 0 .5.5zm-1 0a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-1 0v4a.5.5 0 0 0 .5.5zm-2-4a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-circle-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 12.25c-2.888 0-5.25-2.363-5.25-5.25 0-2.888 2.362-5.25 5.25-5.25 2.887 0 5.25 2.362 5.25 5.25 0 2.887-2.363 5.25-5.25 5.25z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-diamond-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M7.449 15.337L.497 8.386C.2 8.088.2 7.69.497 7.392L7.45.441c.298-.298.695-.298.993 0l6.951 6.951c.298.298.298.696 0 .994l-6.951 6.951c-.298.298-.695.298-.993 0zM2.8 7.889l5.144 5.144L13.09 7.89 7.945 2.745 2.801 7.889z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-dot" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 4C5.8 4 4 5.8 4 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-fade" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><g transform="translate(0 1)" fill-rule="nonzero" stroke="none" stroke-width="1" fill="none"><path fill="#FFF" d="M0 0h6v14H0z"/><path fill="#C6C8CC" opacity=".7" d="M9 0h3v14H9z"/><path d="M15.5 0a.5.5 0 0 1 .5.5v13a.5.5 0 1 1-1 0V.5a.5.5 0 0 1 .5-.5z" fill="#979AA1" opacity=".4"/></g></g></g></symbol><symbol id="nc-line" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" d="M3 7h10v2H3z"/></g></g></symbol><symbol id="nc-none" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 2c1.3 0 2.5.4 3.5 1.1l-8.4 8.4C2.4 10.5 2 9.3 2 8c0-3.3 2.7-6 6-6zm0 12c-1.3 0-2.5-.4-3.5-1.1l8.4-8.4c.7 1 1.1 2.2 1.1 3.5 0 3.3-2.7 6-6 6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-filled" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM7 11.4L5.6 10l2-2-2-2L7 4.6 10.4 8 7 11.4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-heavy" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M5.204 16L3 13.91 9.236 8 3 2.09 5.204 0l7.339 6.955c.61.578.61 1.512 0 2.09L5.204 16z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7 11.4L5.6 10l2-2-2-2L7 4.6 10.4 8z"/><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"/></g></g></g></symbol><symbol id="nc-right-arrow-tail" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15.787 7.496L10.182 2 9.153 3.008l4.364 4.279H.727A.72.72 0 0 0 0 8a.72.72 0 0 0 .727.713h12.79l-4.364 4.279L10.182 14l5.605-5.496a.703.703 0 0 0 0-1.008z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-thin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M5.025 16L4 15.009 11.25 8 4 .991 5.025 0l7.762 7.504a.684.684 0 0 1 0 .992L5.025 16z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-slider-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 1h14a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0H2a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1z"/><path d="M1 15h14a1 1 0 0 0 1-1v-1a1 1 0 0 0-2 0H2a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1z"/><path d="M3.929 7h2.285C6.648 7 7 7.448 7 8s-.352 1-.786 1H3.93v3L0 8l3.929-4v3z" fill-rule="nonzero"/><path d="M12.071 7H9.786C9.352 7 9 7.448 9 8s.352 1 .786 1h2.285v3L16 8l-3.929-4v3z" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-slider-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(90 8 8)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 0h10a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0H4a1 1 0 1 1-2 0V1a1 1 0 0 1 1-1z"/><path d="M3 16h10a1 1 0 0 0 1-1v-1a1 1 0 0 0-2 0H4a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1z"/><path d="M3.929 7h2.285C6.648 7 7 7.448 7 8s-.352 1-.786 1H3.93v3L0 8l3.929-4v3z" fill-rule="nonzero"/><path d="M12.071 7H9.786C9.352 7 9 7.448 9 8s.352 1 .786 1h2.285v3L16 8l-3.929-4v3z" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-slider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="1" y="6" width="14" height="9" rx="1"/><rect x="3" y="3" width="10" height="2" rx="1"/><rect x="5" y="1" width="6" height="1" rx=".5"/></g></g></g></symbol><symbol id="nc-square-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.125 15H1.875C1.35 15 1 14.65 1 14.125V1.875C1 1.35 1.35 1 1.875 1h12.25c.525 0 .875.35.875.875v12.25c0 .525-.35.875-.875.875zM2.75 13.25h10.5V2.75H2.75v10.5z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-align-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="14" width="16" height="2" rx="1"/><rect x="3" y="6" width="10" height="4" rx="1"/><rect x="0" y="0" width="16" height="2" rx="1"/></g></g></g></symbol><symbol id="nc-align-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(90 8 8)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="14" width="16" height="2" rx="1"/><rect x="3" y="6" width="10" height="4" rx="1"/><rect x="0" y="0" width="16" height="2" rx="1"/></g></g></g></symbol><symbol id="nc-label-inside" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="currentColor" x="3" y="7" width="7" height="2" rx="1"/><rect stroke="currentColor" stroke-width="2" x="1" y="4" width="14" height="8" rx="1"/></g></g></g></symbol><symbol id="nc-label-outside" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="currentColor" x="1" y="2" width="7" height="2" rx="1"/><rect stroke="currentColor" stroke-width="2" x="1" y="6" width="14" height="7" rx="1"/></g></g></g></symbol><symbol id="nc-info" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.584 0 0 3.584 0 8s3.584 8 8 8 8-3.584 8-8-3.584-8-8-8zm.8 12H7.2V7.2h1.6V12zm0-6.4H7.2V4h1.6v1.6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-back" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(-90 8 8)" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7 4v4h2V4h3L8 0 4 4z"/><path d="M15 0h-3v2h2v9H2V2h2V0H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-countdown" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 2c.6 0 1-.4 1-1s-.4-1-1-1H1C.4 0 0 .4 0 1s.4 1 1 1h1c.1 2.4.8 4.5 2 6-1.2 1.4-2 3.6-2 6H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1h-1c-.1-2.5-.8-4.6-2-6 1.3-1.5 2-3.6 2-6h1zM9.9 7.3l-.9.8 1 .7c1.2.9 2 2.9 2.1 5.2H4c.1-2.3.9-4.3 2.1-5.2l1-.7-1-.8C4.8 6.1 4.1 4.2 4 2h8c-.1 2.2-.8 4.1-2.1 5.3z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-counter-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M6.6 6.6c-.8.8-.8 2 0 2.8.8.8 2 .8 2.8 0 .8-.8 5-7.8 5-7.8s-7 4.2-7.8 5z"/><path d="M8 16c4.4 0 8-3.6 8-8 0-.6-.4-1-1-1s-1 .4-1 1c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6c.6 0 1-.4 1-1s-.4-1-1-1C3.6 0 0 3.6 0 8s3.6 8 8 8z"/></g></g></g></symbol><symbol id="nc-form-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M2 9V4h12v5l2 1V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V9H2z" fill-rule="nonzero"/><rect x="0" y="13" width="8" height="3" rx="1.5"/></g></g></g></symbol><symbol id="nc-full-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(.5)" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7.5 6l7-3L7.792.057c-.219-.076-.438-.076-.584 0L.5 3l7 3z"/><path d="M8 7v9l6.533-2.775c.311-.15.467-.375.467-.675V4L8 7z"/><path d="M7 7L0 4v8.55c0 .3.156.6.467.675L7 16V7z"/></g></g></g></symbol><symbol id="nc-save-section" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.682 2.318a4.5 4.5 0 0 0-6.364 0c-.121.121-.214.259-.318.389-.104-.13-.197-.268-.318-.389a4.5 4.5 0 0 0-6.364 6.364L8 15l6.682-6.318a4.5 4.5 0 0 0 0-6.364z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-extensions" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 0c.6 0 1 .4 1 1v11c0 .6-.4 1-1 1h-3.6l-2.7 2.7c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3L4.6 13H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14zM4 4a1 1 0 1 0 0 2h8a1 1 0 0 0 0-2H4zm2 4a1 1 0 1 0 0 2h4a1 1 0 0 0 0-2H6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-failure" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.7 1.3c-.4-.4-1-.4-1.4 0L8 6.6 2.7 1.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4L6.6 8l-5.3 5.3c-.4.4-.4 1 0 1.4.2.2.4.3.7.3.3 0 .5-.1.7-.3L8 9.4l5.3 5.3c.2.2.5.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4L9.4 8l5.3-5.3c.4-.4.4-1 0-1.4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-check-color" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="#22AFDA" fill-rule="nonzero"/><path fill="#2B3039" d="M7 11.4L3.6 8 5 6.6l2 2 4-4L12.4 6z"/></g></g></g></symbol><symbol id="nc-success" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.3 2.3L5 11.6 1.7 8.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l4 4c.2.2.4.3.7.3.3 0 .5-.1.7-.3l10-10c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-brizy-logo-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1.767 5.424L8.14 9.76l6.093-4.305L7.86 1.21 1.767 5.424z" stroke="currentColor" stroke-width="2"/><path fill="currentColor" d="M0 10.457L2.113 8.84 8.151 13l5.836-4.045L16 10.457l-7.85 5.431z"/></g></g></g></symbol><symbol id="nc-brizy-logo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 5.43L7.85 0 16 5.43l-7.85 5.547z"/><path d="M0 10.457L2.113 8.84 8.151 13l5.836-4.045L16 10.457l-7.85 5.431z"/></g></g></g></symbol><symbol id="nc-circle-02" viewBox="0 0 16 16"><g><g class="nc-loop_circle-02-16" transform="rotate(359.71071426823204 8 8)"><path opacity="0.4" fill="currentColor" d="M8,16c-4.4111328,0-8-3.5888672-8-8s3.5888672-8,8-8s8,3.5888672,8,8S12.4111328,16,8,16z M8,2C4.6914062,2,2,4.6914062,2,8s2.6914062,6,6,6s6-2.6914062,6-6S11.3085938,2,8,2z"/><path data-color="color-2" d="M16,8h-2c0-3.3085938-2.6914062-6-6-6V0C12.4111328,0,16,3.5888672,16,8z"/></g><script>!function(){function t(t){this.element=t,this.animationId,this.start=null,this.init()}if(!window.requestAnimationFrame){var i=null;window.requestAnimationFrame=function(t,n){var e=(new Date).getTime();i||(i=e);var a=Math.max(0,16-(e-i)),o=window.setTimeout(function(){t(e+a)},a);return i=e+a,o}}t.prototype.init=function(){var t=this;this.animationId=window.requestAnimationFrame(t.triggerAnimation.bind(t))},t.prototype.reset=function(){var t=this;window.cancelAnimationFrame(t.animationId)},t.prototype.triggerAnimation=function(t){var i=this;this.start||(this.start=t);var n=t-this.start;504>n||(this.start=this.start+504),this.element.setAttribute("transform","rotate("+Math.min(n/1.4,360)+" 8 8)");if(document.documentElement.contains(this.element))window.requestAnimationFrame(i.triggerAnimation.bind(i))};var n=document.getElementsByClassName("nc-loop_circle-02-16"),e=[];if(n)for(var a=0;n.length>a;a++)!function(i){e.push(new t(n[i]))}(a);document.addEventListener("visibilitychange",function(){"hidden"==document.visibilityState?e.forEach(function(t){t.reset()}):e.forEach(function(t){t.init()})})}();</script></g></symbol><symbol id="nc-tabs" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="tabs" fill="currentColor"><rect id="Rectangle" x="9" y="2" width="6" height="2" rx="1"/><path d="M2 1h5a1 1 0 0 1 1 1v3h6a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z" id="Rectangle-6"/></g></g></g></g></symbol><symbol id="nc-update" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Update" fill="currentColor" fill-rule="nonzero"><g id="file-upload-86" transform="translate(0 1)"><path id="Shape" transform="matrix(1 0 0 -1 0 9)" d="M7 4v5h2V4h3L8 0 4 4z"/><path d="M15 0h-3v2h2v10H2V2h2V0H1C.4 0 0 .4 0 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1z" id="Shape"/></g></g></g></g></g></symbol><symbol id="nc-background" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="background-v4" fill="currentColor" fill-rule="nonzero"><path d="M15 0c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14zM2 2.013v11.188c0 .48.32.799.8.799h11.187C11 11 4 4 2 2.013z" id="Combined-Shape" transform="rotate(180 8 8)"/></g></g></g></g></symbol><symbol id="nc-woo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M2 2h11.997C15 2 16 3 16 4v8c0 1-1 1.954-2.003 1.954H9.838l.641 1.57-2.82-1.57H2C1 13.954 0 13 0 12V4c0-1 1-2 2-2zm11.848 3.626a1.708 1.708 0 0 0-.352-.039c-.624 0-1.131.325-1.528.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.234.41.579.656 1.04.754.124.026.241.04.352.04.63 0 1.138-.326 1.528-.977.338-.559.508-1.17.508-1.84.006-.508-.104-.93-.313-1.282a1.498 1.498 0 0 0-1.04-.754zm-.274 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.65 1.65 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592 0 .169-.013.332-.045.481-.091.43-.254.748-.495.963zM9.777 5.626a1.708 1.708 0 0 0-.351-.039c-.624 0-1.132.325-1.529.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.235.41.58.656 1.041.754.124.026.24.04.351.04.631 0 1.138-.326 1.529-.977.338-.559.507-1.17.507-1.84 0-.508-.104-.93-.312-1.282a1.512 1.512 0 0 0-1.04-.754zm-.28 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.652 1.652 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592.007.169-.013.332-.045.481-.091.43-.254.748-.495.963zM1.321 5.158c-.182.013-.319.078-.41.201a.554.554 0 0 0-.104.436c.384 2.44.742 4.085 1.073 4.937.13.312.28.462.456.449.273-.02.598-.397.982-1.132.201-.416.513-1.04.936-1.873.351 1.229.833 2.152 1.438 2.77.169.176.344.254.513.241a.42.42 0 0 0 .345-.234.772.772 0 0 0 .078-.43c-.039-.591.02-1.417.182-2.477.17-1.093.378-1.88.631-2.348a.565.565 0 0 0 .065-.313.51.51 0 0 0-.201-.37.565.565 0 0 0-.41-.13.5.5 0 0 0-.43.286c-.403.735-.689 1.925-.858 3.577a12.155 12.155 0 0 1-.618-2.224c-.071-.384-.247-.566-.533-.547-.195.013-.358.143-.488.39L2.544 9.08a37.294 37.294 0 0 1-.657-3.454c-.046-.338-.234-.494-.566-.468z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-toggle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="toggle" fill="currentColor"><path d="M2 14V9h12v5l2 1V6a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1H2z" id="Shape" fill-rule="nonzero"/><rect id="Rectangle" x="0" y="0" width="16" height="3" rx="1"/></g></g></g></g></symbol><symbol id="nc-sticky-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="menu" fill="currentColor"><path d="M16 6H0V1.282C0 .836.046.675.134.512A.909.909 0 0 1 .512.134C.675.046.836 0 1.282 0h13.436c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77V6zm0 2v6.718c0 .446-.046.607-.134.77a.909.909 0 0 1-.378.378c-.163.088-.324.134-.77.134H1.282c-.446 0-.607-.046-.77-.134a.909.909 0 0 1-.378-.378c-.088-.163-.134-.324-.134-.77V8h2v4.718c0 .446.046.607.134.77.087.163.215.291.378.378.163.088.324.134.77.134h9.436c.446 0 .607-.046.77-.134a.909.909 0 0 0 .378-.378c.088-.163.134-.324.134-.77V8h2z" id="Combined-Shape"/></g></g></g></g></symbol><symbol id="nc-img" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="background-v3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15 0H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zM6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm-3 8l2-4 2 2 3-4 3 6H3z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-banner" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="banner" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M13 6l2-5H3c0-.6-.4-1-1-1S1 .4 1 1v14c0 .6.4 1 1 1s1-.4 1-1v-4h12l-2-5z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape-Copy" fill="currentColor" fill-rule="nonzero" d="M13.05 8.975L12 7.925 8.775 11.15V2h-1.5v9.15L4.05 7.925 3 8.975 8.025 14z"/></g></g></g></symbol><symbol id="nc-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="up" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(1 0 0 -1 0 16)" d="M13.05 8.975L12 7.925 8.775 11.15V2h-1.5v9.15L4.05 7.925 3 8.975 8.025 14z"/></g></g></g></symbol><symbol id="nc-woo-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="woo-element" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2 0h11.997C15 0 16 1 16 2v10c0 1-1 1.954-2.003 1.954H9.838l.641 1.57-2.82-1.57H2C1 13.954 0 13 0 12V2c0-1 1-2 2-2zm11.848 4.626a1.708 1.708 0 0 0-.352-.039c-.624 0-1.131.325-1.528.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.234.41.579.656 1.04.754.124.026.241.04.352.04.63 0 1.138-.326 1.528-.977.338-.559.508-1.17.508-1.84.006-.508-.104-.93-.313-1.282a1.498 1.498 0 0 0-1.04-.754zm-.274 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.65 1.65 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592 0 .169-.013.332-.045.481-.091.43-.254.748-.495.963zM9.777 4.626a1.708 1.708 0 0 0-.351-.039c-.624 0-1.132.325-1.529.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.235.41.58.656 1.041.754.124.026.24.04.351.04.631 0 1.138-.326 1.529-.977.338-.559.507-1.17.507-1.84 0-.508-.104-.93-.312-1.282a1.512 1.512 0 0 0-1.04-.754zm-.28 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.652 1.652 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592.007.169-.013.332-.045.481-.091.43-.254.748-.495.963zM1.321 4.158c-.182.013-.319.078-.41.201a.554.554 0 0 0-.104.436c.384 2.44.742 4.085 1.073 4.937.13.312.28.462.456.449.273-.02.598-.397.982-1.132.201-.416.513-1.04.936-1.873.351 1.229.833 2.152 1.438 2.77.169.176.344.254.513.241a.42.42 0 0 0 .345-.234.772.772 0 0 0 .078-.43c-.039-.591.02-1.417.182-2.478.17-1.092.378-1.88.631-2.347a.565.565 0 0 0 .065-.313.51.51 0 0 0-.201-.37.565.565 0 0 0-.41-.13.5.5 0 0 0-.43.286c-.403.735-.689 1.925-.858 3.577a12.155 12.155 0 0 1-.618-2.224c-.071-.384-.247-.566-.533-.547-.195.013-.358.143-.488.39L2.544 8.08a37.294 37.294 0 0 1-.657-3.454c-.046-.338-.234-.494-.566-.468z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-block-switch" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="block-switch" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15.716 7.503l-3.428-6A.996.996 0 0 0 11.42 1H4.58a.999.999 0 0 0-.869.504l-3.429 6a.998.998 0 0 0 0 .992l3.43 6a.999.999 0 0 0 .867.503h6.84c.358 0 .69-.192.867-.504l3.43-6a.998.998 0 0 0 0-.991zM8.002 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z" id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 8 8)"/></g></g></g></symbol><symbol id="nc-extensions-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="apps" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M10.8 0a1.4 1.4 0 0 0-1.4 1.4v3.69H6.6V1.4a1.4 1.4 0 1 0-2.8 0v3.69H2a1 1 0 0 0-1 1v3.092C1 12.947 4.134 16 8 16s7-3.053 7-6.818V6.09a1 1 0 0 0-1-1h-1.8V1.4A1.4 1.4 0 0 0 10.8 0z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-global" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="global" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm5.9 7H12c-.1-1.5-.4-2.9-.8-4.1 1.4.9 2.4 2.4 2.7 4.1zM8 14c-.6 0-1.8-1.9-2-5h4c-.2 3.1-1.4 5-2 5zM6 7c.2-3.1 1.3-5 2-5s1.8 1.9 2 5H6zM4.9 2.9C4.4 4.1 4.1 5.5 4 7H2.1c.3-1.7 1.3-3.2 2.8-4.1zM2.1 9H4c.1 1.5.4 2.9.8 4.1-1.4-.9-2.4-2.4-2.7-4.1zm9 4.1c.5-1.2.7-2.6.8-4.1h1.9c-.2 1.7-1.2 3.2-2.7 4.1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-arrow-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="arrow-left" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)" d="M9.3 1.31l-1.4 1.4 4.3 4.3H0v2h12.2l-4.3 4.3 1.4 1.4 6.7-6.7z"/></g></g></g></symbol><symbol id="nc-blur" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="blur" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2.947 8.842a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 3.369a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-6.737a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm-2.526.42A.422.422 0 0 0 0 6.317c0 .231.19.42.421.42.232 0 .421-.189.421-.42a.422.422 0 0 0-.42-.421zm2.526-3.789a.845.845 0 0 0-.842.842c0 .464.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zM15.58 6.737c.232 0 .421-.19.421-.421a.422.422 0 0 0-.421-.421.422.422 0 0 0-.421.42c0 .232.19.422.42.422zM9.684 3.789a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842.845.845 0 0 0-.842.842c0 .464.38.842.842.842zm0-2.947c.232 0 .421-.19.421-.42A.422.422 0 0 0 9.685 0a.422.422 0 0 0-.422.421c0 .232.19.421.421.421zM.421 9.263A.422.422 0 0 0 0 9.684c0 .232.19.421.421.421.232 0 .421-.19.421-.42a.422.422 0 0 0-.42-.422zm5.895 5.895a.422.422 0 0 0-.421.42c0 .233.19.422.42.422.232 0 .422-.19.422-.421a.422.422 0 0 0-.421-.421zm0-14.316c.231 0 .42-.19.42-.42A.422.422 0 0 0 6.317 0a.422.422 0 0 0-.421.421c0 .232.19.421.42.421zm0 2.947a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842.845.845 0 0 0-.842.842c0 .464.379.842.842.842zm0 4.632c-.7 0-1.263.564-1.263 1.263 0 .7.564 1.263 1.263 1.263s1.263-.564 1.263-1.263-.564-1.263-1.263-1.263zm6.737.421a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 3.369a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-6.737a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-3.369a.845.845 0 0 0-.842.842c0 .464.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm2.526 7.158a.422.422 0 0 0-.421.421c0 .232.19.421.42.421.233 0 .422-.19.422-.42a.422.422 0 0 0-.421-.422zm-5.895 2.948a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 2.947a.422.422 0 0 0-.42.42c0 .233.189.422.42.422.232 0 .421-.19.421-.421a.422.422 0 0 0-.42-.421zM6.316 5.053c-.7 0-1.263.564-1.263 1.263s.564 1.263 1.263 1.263 1.263-.564 1.263-1.263c0-.7-.564-1.263-1.263-1.263zm0 7.158a.845.845 0 0 0-.842.842c0 .463.379.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm3.368-3.79c-.699 0-1.263.564-1.263 1.263 0 .7.564 1.263 1.263 1.263.7 0 1.263-.564 1.263-1.263s-.564-1.263-1.263-1.263zm0-3.368c-.699 0-1.263.564-1.263 1.263s.564 1.263 1.263 1.263c.7 0 1.263-.564 1.263-1.263 0-.7-.564-1.263-1.263-1.263z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 1c-3.35 0-7 .64-7 2 0 1.36 3.65 2 7 2s7-.64 7-2c0-1.36-3.65-2-7-2z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 6.574C5.3 6.574 2.45 6.13 1 5v2.541C1 9.213 4.65 10 8 10s7-.787 7-2.459V5c-1.45 1.131-4.3 1.574-7 1.574z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 11.574c-2.7 0-5.55-.443-7-1.574v2.541C1 14.213 4.65 15 8 15s7-.787 7-2.459V10c-1.45 1.131-4.3 1.574-7 1.574z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-bug" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="bug" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M16 4V3h-2v1c0 .6-.4 1-1 1h-1c-.3-.4-.6-.7-1-1V3c0-1.7-1.3-3-3-3S5 1.3 5 3v1c-.4.3-.7.6-1 1H3c-.6 0-1-.4-1-1V3H0v1c0 1.7 1.3 3 3 3h.1c-.1.3-.1.7-.1 1H0v2h3v1c-1.7 0-3 1.3-3 3v1h2v-1c0-.6.4-1 1-1h.4c.8 1.8 2.6 3 4.6 3 2 0 3.8-1.2 4.6-3h.4c.6 0 1 .4 1 1v1h2v-1c0-1.7-1.3-3-3-3v-1h3V8h-3c0-.3 0-.7-.1-1h.1c1.7 0 3-1.3 3-3z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-page" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="page" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M11 16v-4h4z"/><path d="M9 10h6V1c0-.6-.4-1-1-1H2c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h7v-6z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-blocks" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="slider" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect id="Rectangle-3" fill="currentColor" x="1" y="6" width="14" height="9" rx="1"/><rect id="Rectangle-3" fill="currentColor" x="3" y="3" width="10" height="2" rx="1"/><rect id="Rectangle-3" fill="currentColor" x="5" y="1" width="6" height="1" rx=".5"/></g></g></g></symbol><symbol id="nc-pages" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="pages" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M10 4H2c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M14 0H4v2h9v11h2V1c0-.6-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-popup" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="popup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z" id="Shape" fill="currentColor" fill-rule="nonzero"/><rect id="Rectangle" fill="currentColor" fill-rule="nonzero" x="12" y="11" width="4" height="4" rx="1"/></g></g></g></symbol><symbol id="nc-gallery" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="gallery" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6 9H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M6 16H1a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 6h-5a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 16h-5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic-img" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic-img" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M14 7.707v6.416c0 .509-.491.848-1 .848H.848c-.509 0-.848-.34-.848-.848V2c0-.509.491-1 1-1h7.856A4.486 4.486 0 0 0 14 7.707zM5.142 4.663c-.508 0-.847.339-.847.847 0 .509.339.848.847.848.509 0 .848-.34.848-.848s-.34-.847-.848-.847zm-2.656 6.894h8.363l-2.509-5.2-2.508 3.467L4.159 8.09l-1.673 3.466zM12.625 6.75a3.375 3.375 0 1 1 0-6.75 3.375 3.375 0 0 1 0 6.75zm.08-4.878c-.727 0-1.518.143-1.518.446 0 .304.791.447 1.518.447.726 0 1.518-.143 1.518-.447 0-.303-.792-.446-1.518-.446zm0 1.23c-.586 0-1.204-.095-1.518-.337v.544c0 .359.791.527 1.518.527.726 0 1.518-.168 1.518-.527v-.544c-.314.242-.933.337-1.518.337zm0 1.072c-.586 0-1.204-.095-1.518-.338v.545c0 .358.791.527 1.518.527.726 0 1.518-.169 1.518-.527v-.545c-.314.243-.933.338-1.518.338z" id="Image-dinamic" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic-text" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic-text" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M14 7.598V14c0 .5-.5 1-1 1H1c-.5 0-1-.5-1-1V2c0-.5.5-1 1-1h7.956a4.397 4.397 0 0 0-.644 3.062H2.93v2.184h.548l.397-.79a.549.549 0 0 1 .49-.302h1.855v6.16a.546.546 0 0 1-.375.518l-1.27.422v.546H8.963v-.546l-1.27-.422a.546.546 0 0 1-.375-.518v-6.16h1.311A4.418 4.418 0 0 0 14 7.598zm-1.323-.952a3.323 3.323 0 1 1 0-6.646 3.323 3.323 0 0 1 0 6.646zm.079-4.803c-.716 0-1.495.14-1.495.44 0 .299.78.44 1.495.44.715 0 1.494-.141 1.494-.44 0-.3-.779-.44-1.494-.44zm0 1.211c-.577 0-1.185-.093-1.495-.332v.536c0 .353.78.52 1.495.52.715 0 1.494-.167 1.494-.52v-.536c-.31.239-.918.332-1.494.332zm0 1.055c-.577 0-1.185-.093-1.495-.332v.537c0 .352.78.518 1.495.518.715 0 1.494-.166 1.494-.518v-.537c-.31.239-.918.332-1.494.332z" id="Text-dinamic" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-brightness" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="brightness" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M1.87 2.813l.943-.943 1.415 1.415-.943.943z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M11.772 3.285l1.414-1.415.943.943-1.414 1.415z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M11.772 12.715l.943-.943 1.415 1.415-.943.943z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M1.87 13.187l1.415-1.415.943.943-1.415 1.415z"/><circle id="Oval" fill="currentColor" fill-rule="nonzero" cx="8" cy="8" r="4.668"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M-.002 7.333h2v1.334h-2z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7.333-.002h1.334v2H7.333z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M14.001 7.333h2v1.334h-2z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7.333 14.001h1.334v2H7.333z"/></g></g></g></symbol><symbol id="nc-carousel" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="carousel" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1 14h-12a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1H1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/><path d="M27 14H15a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/><path d="M11 15H5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-contrast" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="contrast" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M13.23 2.654C11.816 1.238 9.97.5 8 .5c-1.97 0-3.815.738-5.23 2.154a7.391 7.391 0 0 0 0 10.461C4.184 14.531 6.03 15.27 8 15.27c1.97 0 3.815-.738 5.23-2.154a7.391 7.391 0 0 0 0-10.461zm-9.6.861C4.8 2.346 6.339 1.731 8 1.731a6.02 6.02 0 0 1 3.877 1.415l-8.615 8.616c-2.031-2.4-1.847-5.97.369-8.247z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-flip-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="flip-horizontal" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7 0h2v16H7z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M5 4v8H0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M11 4v8h5z"/></g></g></g></symbol><symbol id="nc-flip-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="flip-vertical" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 7h16v2H0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M12 5H4V0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M12 11H4v5z"/></g></g></g></symbol><symbol id="nc-hue" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="hue" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval-2" fill="currentColor" fill-rule="nonzero" opacity=".55" cx="5" cy="11" r="5"/><circle id="Oval-2-Copy" fill="currentColor" fill-rule="nonzero" opacity=".75" cx="11" cy="11" r="5"/><circle id="Oval-2" fill="currentColor" fill-rule="nonzero" opacity=".9" cx="8" cy="5" r="5"/></g></g></g></symbol><symbol id="nc-menu-3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="menu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 2H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 12H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-reset" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="reset" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12 9c0 2.206-1.794 4-4 4s-4-1.794-4-4 1.794-4 4-4v3l5-4-5-4v3C4.691 3 2 5.691 2 9s2.691 6 6 6 6-2.691 6-6h-2z" id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)"/></g></g></g></symbol><symbol id="nc-saturation" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="saturation" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12.599 4.744L8 0 3.401 4.744c-2.535 2.496-2.535 6.888 0 9.384A6.536 6.536 0 0 0 8 16a6.536 6.536 0 0 0 4.599-1.872c2.535-2.496 2.535-6.888 0-9.384zM8 14.408c-1.3 0-2.527-.496-3.445-1.408a4.72 4.72 0 0 1-1.43-3.392c0-1.28.504-2.824 1.43-3.728L8 2.48v11.928z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-close-popup" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="close-popup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M1.5 1.5l13.038 13.038" id="Line-2" stroke="currentColor" fill-rule="nonzero"/><path d="M1.5 1.5l13.038 13.038" id="Line-2" stroke="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)"/></g></g></g></symbol><symbol id="nc-width" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="width" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 11 8)" d="M11 6l4 4H7z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 5 8)" d="M5 10L1 6h8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" transform="rotate(90 15 8)" d="M8 7h14v2H8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" transform="rotate(90 1 8)" d="M-6 7H8v2H-6z"/></g></g></g></symbol><symbol id="nc-height" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="height" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M8 3l4 4H4z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M8 13L4 9h8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 0h16v2H0z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 14h16v2H0z"/></g></g></g></symbol><symbol id="nc-repeat" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="repeat" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Group" transform="translate(0 1)" fill="currentColor" fill-rule="nonzero"><path id="Path" transform="rotate(90 6.5 9)" d="M9.5 11.5h-5v-2l-3 3 3 3v-2h7v-11h-3v2h1z"/><path id="Path" transform="rotate(-90 9.5 5)" d="M12.5 7.5h-5v-2l-3 3 3 3v-2h7v-11h-3v2h1z"/></g></g></g></g></symbol><symbol id="nc-send-to-back" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="send-to-back" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1 0h9a1 1 0 0 1 1 1v3H5a1 1 0 0 0-1 1v6H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1z" id="Rectangle-12" fill="currentColor" fill-rule="nonzero"/><path d="M7.667 6v1.667h6.666v6.666H7.667V6H7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7.667z" id="Path-2" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-bring-to-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="bring-top" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect id="Rectangle-12" fill="currentColor" fill-rule="nonzero" x="0" y="0" width="12" height="12" rx="1"/><path d="M13.5 6v1.667h.833v5.666a1 1 0 0 1-1 1H7.667V13.5H6V15a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1.5z" id="Path-2" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-check-light" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g classname="nc-icon-wrapper" fill="currentColor"><path fill="none" stroke="currentColor" strokelinecap="round" strokelinejoin="round" strokemiterlimit="10" d="M13.423 6.999A6.5 6.5 0 1 1 10 2.232" datacap="butt"/><path fill="none" stroke="currentColor" strokelinecap="round" strokelinejoin="round" strokemiterlimit="10" datacap="butt" datacolor="color-2" d="M4 6.5l3 3 8-8"/></g></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8.1,3.5 L12.5,7.9 L4.7,15.7 C4.5,15.9 4.3,16 4,16 L1,16 C0.4,16 0,15.6 0,15 L0,12 C0,11.7 0.1,11.5 0.3,11.3 L8.1,3.5 Z M15.7,3.3 C16.1,3.7 16.1,4.3 15.7,4.7 L13.9,6.5 L9.5,2.1 L11.3,0.3 C11.7,-0.1 12.3,-0.1 12.7,0.3 L15.7,3.3 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-image" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M5.2,2 C6.04,2 6.6,2.6 6.6,3.5 C6.6,4.4 6.04,5 5.2,5 C4.36,5 3.8,4.4 3.8,3.5 C3.8,2.6 4.36,2 5.2,2 Z M1,14 L3.8,8 L6.6,11 L10.8,5 L15,14 L1,14 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-video" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M11,6.5 C11,6.01538462 10.65,5.69230769 10.125,5.69230769 L8,5.69230769 L8,2.80769231 C8,2.32307692 7.65,2 7.125,2 L3,2 L3,3.84615385 L6,3.84615385 L6,5.69230769 L1.875,5.69230769 C1.35,5.69230769 1,6.01538462 1,6.5 L1,13.1923077 C1,13.6769231 1.35,14 1.875,14 L10.125,14 C10.65,14 11,13.6769231 11,13.1923077 L11,11.5769231 L15,13.1923077 L15,6.5 L11,8.11538462 L11,6.5 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-map" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M7,12 C7.55228475,12.5522847 8.44771525,12.5522847 9,12 L9,14 C9,14.5522847 8.55228475,15 8,15 C7.44771525,15 7,14.5522847 7,14 L7,12 Z M8,11 C5.51471863,11 3.5,8.98528137 3.5,6.5 C3.5,4.01471863 5.51471863,2 8,2 C10.4852814,2 12.5,4.01471863 12.5,6.5 C12.5,8.98528137 10.4852814,11 8,11 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-email" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M3.6058448,9.66149939 L3.6058448,14.594495 C3.6058448,15.2992086 4.40786873,15.6012288 4.90913369,15.0978619 L7.2149525,12.3796806 L11.9268431,15.9032489 C12.3278551,16.2052691 12.929373,16.0039223 13.029626,15.5005554 L16.0372158,0.902915364 C16.1374688,0.298875086 15.6362038,-0.103818432 15.0346858,0.0975283271 L0.498002054,5.93658434 C-0.00326290396,6.1379311 -0.103515896,6.84264476 0.297496071,7.24533828 L1.90154394,8.45341883 L6.51318156,6.23860448 C6.91419352,6.03725772 7.2149525,6.54062462 6.91419352,6.74197138 L3.6058448,9.66149939 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-captcha" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M15.094,7.211 L14.555,1 L12.625,2.93 C11.353,1.812 9.71,1.18 8,1.18 C4.14,1.18 1,4.32 1,8.18 C1,12.04 4.14,15.18 8,15.18 C10.491,15.18 12.814,13.839 14.063,11.681 L12.332,10.68 C11.439,12.222 9.779,13.18 8,13.18 C5.243,13.18 3,10.937 3,8.18 C3,5.423 5.243,3.18 8,3.18 C9.179,3.18 10.311,3.603 11.205,4.35 L8.883,6.672 L15.094,7.211 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-uncheck-alt" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M2,1 L14,1 C14.5522847,1 15,1.44771525 15,2 L15,14 C15,14.5522847 14.5522847,15 14,15 L2,15 C1.44771525,15 1,14.5522847 1,14 L1,2 C1,1.44771525 1.44771525,1 2,1 Z M3,3 L3,13 L13,13 L13,3 L3,3 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-check-alt" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M14.3,1.3 C14.7,0.9 15.3,0.9 15.7,1.3 C16.1,1.7 16.1,2.3 15.7,2.7 L8.7,9.7 C8.5,9.9 8.3,10 8,10 C7.7,10 7.5,9.9 7.3,9.7 L5.3,7.7 C4.9,7.3 4.9,6.7 5.3,6.3 C5.7,5.9 6.3,5.9 6.7,6.3 L8,7.6 L14.3,1.3 Z M2,15 C1.4,15 1,14.6 1,14 L1,2 C1,1.4 1.4,1 2,1 L8,1 C8.6,1 9,1.4 9,2 C9,2.6 8.6,3 8,3 L3,3 L3,13 L13,13 L13,9 C13,8.4 13.4,8 14,8 C14.6,8 15,8.4 15,9 L15,14 C15,14.6 14.6,15 14,15 L2,15 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-shift-key" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.92"><path d="M5,15 L11,15 L11,8 L13.7745265,8 L7.99987793,1.50500692 L2.22522934,8 L5,8 L5,15 Z" id="Path" stroke="currentColor" stroke-width="2"></path></g></symbol><symbol id="nc-reverse-columns-bottom" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-reverse-columns-left" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(-1, 1) rotate(90.000000) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-reverse-columns-right" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) rotate(90.000000) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-reverse-columns-top" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(1, -1) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-minus" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-1014.000000, -625.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(503.000000, 533.000000)"><path d="M519,92 C514.6,92 511,95.6 511,100 C511,104.4 514.6,108 519,108 C523.4,108 527,104.4 527,100 C527,95.6 523.4,92 519,92 Z M523,101 L515,101 L515,99 L523,99 L523,101 Z"></path></g></g></g></symbol><symbol id="nc-facebook" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M-8.8817842e-16,1 L-1.33226763e-15,15 C-2.24568705e-15,15.5522847 0.44771525,16 1,16 L8,16 L8,11 L6,11 L6,8 L8,8 L8,6 C8,3.9 9.2,3 11,3 C11.9,3 12.8,3 13,3 L13,6 L12,6 C11.4,6 11,6.4 11,7 L11,8 L13.6,8 L13,11 L11,11 L11,16 L15,16 C15.5522847,16 16,15.5522847 16,15 L16,1 C16,0.44771525 15.5522847,-1.01453063e-16 15,0 L1,0 C0.44771525,1.01453063e-16 -9.55813795e-16,0.44771525 -8.8817842e-16,1 Z" fill="currentColor"></path></g></symbol><symbol id="nc-footer" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M16,6 L12.7180574,6 L3.2819426,6 L0,6 L3.45280103e-17,1.2819426 C-2.00617683e-17,0.83618323 0.0464128056,0.674540111 0.133566352,0.511577148 C0.220719898,0.348614185 0.348614185,0.220719898 0.511577148,0.133566352 C0.674540111,0.0464128056 0.83618323,3.00926524e-17 1.2819426,-5.17920154e-17 L14.7180574,5.17920154e-17 C15.1638168,-3.00926524e-17 15.3254599,0.0464128056 15.4884229,0.133566352 C15.6513858,0.220719898 15.7792801,0.348614185 15.8664336,0.511577148 C15.9535872,0.674540111 16,0.83618323 16,1.2819426 L16,6 Z M16,8 L16,14.7180574 C16,15.1638168 15.9535872,15.3254599 15.8664336,15.4884229 C15.7792801,15.6513858 15.6513858,15.7792801 15.4884229,15.8664336 C15.3254599,15.9535872 15.1638168,16 14.7180574,16 L1.2819426,16 C0.83618323,16 0.674540111,15.9535872 0.511577148,15.8664336 C0.348614185,15.7792801 0.220719898,15.6513858 0.133566352,15.4884229 C0.0464128056,15.3254599 2.00617683e-17,15.1638168 -3.45280103e-17,14.7180574 L0,8 L2,8 L2,12.7180574 C2,13.1638168 2.04641281,13.3254599 2.13356635,13.4884229 C2.2207199,13.6513858 2.34861419,13.7792801 2.51157715,13.8664336 C2.67454011,13.9535872 2.83618323,14 3.2819426,14 L12.7180574,14 C13.1638168,14 13.3254599,13.9535872 13.4884229,13.8664336 C13.6513858,13.7792801 13.7792801,13.6513858 13.8664336,13.4884229 C13.9535872,13.3254599 14,13.1638168 14,12.7180574 L14,8 L16,8 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(1, -1) translate(-8.000000, -8.000000)"></path></g></symbol><symbol id="nc-dividers-bottom" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2,11.3428571 L14,8.25714286 L14,3 C14,2.44771525 13.5522847,2 13,2 L3,2 C2.44771525,2 2,2.44771525 2,3 L2,11.3428571 Z M15,16 L1,16 C0.448,16 0,15.4891429 0,14.8571429 L0,1.14285714 C0,0.512 0.448,0 1,0 L15,0 C15.552,0 16,0.512 16,1.14285714 L16,14.8571429 C16,15.4891429 15.552,16 15,16 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-dividers-top" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2,7.74285714 L2,13 C2,13.5522847 2.44771525,14 3,14 L13,14 C13.5522847,14 14,13.5522847 14,13 L14,4.65714286 L2,7.74285714 Z M15,16 L1,16 C0.448,16 0,15.4891429 0,14.8571429 L0,1.14285714 C0,0.512 0.448,0 1,0 L15,0 C15.552,0 16,0.512 16,1.14285714 L16,14.8571429 C16,15.4891429 15.552,16 15,16 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-plus2" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Keyboard-Shortcuts-PC" transform="translate(-1014.000000, -667.000000)" fill="currentColor" fill-rule="nonzero"><g id="Text-Shortcuts" transform="translate(503.000000, 533.000000)"><path d="M519,134 C514.6,134 511,137.6 511,142 C511,146.4 514.6,150 519,150 C523.4,150 527,146.4 527,142 C527,137.6 523.4,134 519,134 Z M523,143 L520,143 L520,146 L518,146 L518,143 L515,143 L515,141 L518,141 L518,138 L520,138 L520,141 L523,141 L523,143 Z"></path></g></g></g></symbol><symbol id="nc-arrow" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-630.000000, -723.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(463.000000, 505.000000)"><g transform="translate(167.000000, 218.000000)"><path d="M8,16 C12.4,16 16,12.4 16,8 C16,3.6 12.4,0 8,0 C3.6,0 0,3.6 0,8 C0,12.4 3.6,16 8,16 Z M8,4 L8,7 L12,7 L12,9 L8,9 L8,12 L4,8 L8,4 Z"></path></g></g></g></g></symbol><symbol id="nc-shadow" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><path d="M8,0 C3.6,0 0,3.6 0,8 C0,12.4 3.6,16 8,16 C12.4,16 16,12.4 16,8 C16,3.6 12.4,0 8,0 Z M2,8 C2,4.7 4.7,2 8,2 L8,14 C4.7,14 2,11.3 2,8 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-combined-shape" viewBox="0 0 10 10" version="1.1"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><g transform="translate(-1345.000000, -298.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(1079.000000, 82.000000)"><path d="M266.625557,226.012403 C266.372612,226.012349 266.144598,225.859955 266.047808,225.626261 C265.951017,225.392568 266.004505,225.123582 266.183337,224.944696 L269.310775,221.817258 C269.556203,221.580216 269.946323,221.583606 270.187595,221.824877 C270.428867,222.066149 270.432257,222.456269 270.195214,222.701698 L267.067776,225.829135 C266.950502,225.946445 266.791433,226.012368 266.625557,226.012403 Z M266.60429,222.754864 L266.363477,222.193176 C266.327199,222.100604 265.699835,220.423046 266.808824,219.315308 L269.329539,216.794593 C270.441031,215.684978 272.115461,216.311716 272.186141,216.339238 L272.769721,216.589433 L271.817729,217.54205 L271.715775,217.498266 C271.715775,217.498892 270.741265,217.151746 270.214604,217.678407 L267.693889,220.199122 C267.161599,220.731412 267.518127,221.712176 267.52188,221.722184 L267.556282,221.802246 L266.60429,222.754864 Z M269.257608,225.408182 L270.210226,224.45619 L270.290288,224.490592 C270.300296,224.494345 271.281061,224.850873 271.813351,224.318583 L274.334066,221.797868 C274.860726,221.271207 274.51358,220.296698 274.514206,220.296698 L274.470422,220.194743 L275.423039,219.242126 L275.673234,219.825706 C275.700756,219.896386 276.327494,221.573318 275.217879,222.682307 L272.697165,225.203022 C271.589426,226.312012 269.911868,225.684648 269.819922,225.64837 L269.257608,225.408182 Z M272.254945,220.383015 C272.002,220.382961 271.773986,220.230567 271.677196,219.996873 C271.580405,219.76318 271.633893,219.494194 271.812725,219.315308 L274.940163,216.18787 C275.185591,215.950827 275.575711,215.954217 275.816983,216.195489 C276.058255,216.436761 276.061645,216.826881 275.824602,217.072309 L272.697165,220.199747 C272.57989,220.317057 272.420821,220.38298 272.254945,220.383015 Z"></path></g></g></g></symbol></svg>
|
|
|
2 |
|
3 |
|
4 |
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><symbol id="nc-play" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.6 7.2l-10-7A1 1 0 0 0 2 1v14c0 .8.9 1.3 1.6.8l10-7c.5-.4.5-1.2 0-1.6z"/></g></g></symbol><symbol id="nc-bold" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M11.56 7.316a3.483 3.483 0 0 0 1.418-3.207C12.782 2.305 11.143 1 9.33 1H2v1l1.447.724A1 1 0 0 1 4 3.618v8.764a1 1 0 0 1-.553.894L2 14v1h7.823c2.104 0 3.98-1.547 4.162-3.643a4.001 4.001 0 0 0-2.424-4.04zM7 3h1a2 2 0 1 1 0 4H7V3zm2 10H7V9h2a2 2 0 1 1 0 4z"/></g></g></symbol><symbol id="nc-h1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.5 2.05h2.686v4.964h5.389V2.05h2.686v11.9H8.575V9.258H3.186v4.692H.5V2.05zm12.18 4.91h2.83v6.99h-1.5V8.29h-1.33V6.96z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.05 2.3h2.577v4.762h5.17V2.3h2.576v11.416H7.796V9.215h-5.17v4.5H.05V2.3zm13.992 7.324c.17-.24.254-.471.254-.695a.77.77 0 0 0-.22-.561.758.758 0 0 0-.567-.226c-.422 0-.822.3-1.199.902l-1.2-.71c.314-.486.658-.854 1.032-1.103.374-.25.85-.374 1.43-.374.578 0 1.087.184 1.525.551.438.368.657.869.657 1.502 0 .345-.088.676-.264.993-.176.316-.5.72-.973 1.213l-1.21 1.257h2.649v1.343h-4.73v-1.113l1.967-2.014c.396-.403.68-.725.849-.965z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.1 2.27h2.589v4.784h5.194V2.27h2.589v11.47h-2.59V9.216H2.69v4.522H.1V2.27zm11.392 6.014V7.002h4.125v1.041L14.24 9.614c.54.09.958.317 1.253.68.296.363.443.782.443 1.258 0 .706-.239 1.26-.718 1.662-.478.402-1.09.603-1.836.603-.745 0-1.5-.264-2.265-.79l.617-1.196c.636.45 1.205.675 1.706.675.302 0 .551-.074.747-.222.196-.148.294-.361.294-.64a.78.78 0 0 0-.337-.666c-.225-.164-.537-.246-.935-.246-.212 0-.51.061-.896.183V9.807l1.291-1.523h-2.11z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-h4" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M.09 2.3h2.57v4.75h5.158V2.3h2.571v11.39H7.82V9.198H2.66v4.49H.09V2.3zm13.629 8.499V9.63h1.435V10.8h.757v1.292h-.757v1.598H13.72v-1.598h-2.69v-1.139l2.384-3.953h1.627l-2.269 3.8h.948z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-italic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12 2V0H6v2h1.27a.5.5 0 0 1 .496.57l-1.51 10.571a1 1 0 0 1-.99.859H4v2h6v-2H8.73a.5.5 0 0 1-.496-.57l1.51-10.571a1 1 0 0 1 .99-.859H12z"/></g></g></symbol><symbol id="nc-list-bullet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="2" cy="2" r="2"/><circle data-color="color-2" cx="2" cy="8" r="2"/><circle data-color="color-2" cx="2" cy="14" r="2"/><path fill="currentColor" d="M6 1h10v2H6z"/><path fill="currentColor" d="M6 7h10v2H6z"/><path fill="currentColor" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-list-default" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M1 9h7c.6 0 1-.4 1-1s-.4-1-1-1H1c-.6 0-1 .4-1 1s.4 1 1 1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-list-numbers" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 1h11v2H5z"/><path fill="currentColor" d="M5 7h11v2H5z"/><path fill="currentColor" d="M5 13h11v2H5z"/><path data-color="color-2" d="M.368 4v-.549l.598-.048c.097-.007.11-.035.11-.139V.84c0-.083-.02-.125-.09-.145L.382.569.46 0h1.666v3.264c0 .111.007.132.111.139l.57.048V4H.368z"/><path data-color="color-2" d="M.047 10v-.63l.907-.886c.684-.663.975-.934.975-1.32 0-.25-.122-.433-.48-.433-.373 0-.529.122-.529.603L0 7.252C.007 6.176.826 6 1.536 6c1.05 0 1.422.447 1.422 1.083 0 .636-.44 1.056-.934 1.53l-.765.73h.995c.067 0 .095-.013.108-.08l.095-.535h.717V10H.047z"/><path data-color="color-2" d="M2.344 13.682c.567.087.88.427.88 1.026 0 .88-.66 1.292-1.612 1.292C.939 16 .34 15.76 0 15.387l.533-.586c.253.247.533.44.999.44.373 0 .693-.133.693-.6 0-.406-.253-.573-.666-.573a2.73 2.73 0 0 0-.493.047v-.666l.326-.04c.48-.06.74-.293.74-.72 0-.252-.114-.459-.487-.459-.36 0-.532.12-.532.593l-.913-.08c0-1.052.793-1.232 1.492-1.232 1.026 0 1.419.393 1.419 1.106 0 .56-.347.912-.767 1.039v.026z"/></g></g></symbol><symbol id="nc-p" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><text fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" font-size="20" font-family="Montserrat-SemiBold, Montserrat" font-weight="500"><tspan x=".7" y="15">P</tspan></text></g></g></symbol><symbol id="nc-text-align-justify" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h16v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h16v2H0z"/></g></g></symbol><symbol id="nc-add" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H9v3H7V9H4V7h3V4h2v3h3v2z"/></g></g></symbol><symbol id="nc-align-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 11)" x="7" y="6" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-middle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 8)" x="7" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(90 8 5)" x="7" y="0" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-duplicate" viewBox="0 0 14 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="matrix(-1 0 0 1 14 0)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M9 4H1c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z"/><path d="M13 0H3v2h9v11h2V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-pin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0C4.1 0 1 3.1 1 7c0 1.9.7 3.7 2.1 5 .1.1 4.1 3.7 4.2 3.8.4.3 1 .3 1.3 0 .1-.1 4.2-3.7 4.2-3.8 1.4-1.3 2.1-3.1 2.1-5 .1-3.9-3-7-6.9-7zm0 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></g></g></symbol><symbol id="nc-dashed" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 7h6v2H0z"/><path d="M10 7h6v2h-6z"/></g></g></g></symbol><symbol id="nc-dotted" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 7h2v2H1z"/><path d="M5 7h2v2H5z"/><path d="M9 7h2v2H9z"/><path d="M13 7h2v2h-2z"/></g></g></g></symbol><symbol id="nc-solid" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M0 7h16v2H0z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-iframe" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M16 12h-2v-2h-2v2h-2v2h2v2h2v-2h2z"/><path fill="currentColor" d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z"/></g></g></symbol><symbol id="nc-align-left" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z" transform="rotate(90 8 8)"/><rect x="4" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 16H1c-.552 0-1-.51-1-1.143V1.143C0 .512.448 0 1 0h14c.552 0 1 .512 1 1.143v13.714C16 15.49 15.552 16 15 16zM3 14h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1z"/><rect transform="rotate(180 11 8)" x="10" y="3" width="2" height="10" rx="1"/></g></g></g></symbol><symbol id="nc-arrow-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M9.3 1.3L7.9 2.7 12.2 7H0v2h12.2l-4.3 4.3 1.4 1.4L16 8z"/></g></g></symbol><symbol id="nc-brush" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(1)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M0 9c0 1.7 1.3 3 3 3h2v2c0 1.1.9 2 2 2s2-.9 2-2v-2h2c1.7 0 3-1.3 3-3H0z"/><path d="M0 0h7l2 3 2-3h3v7H0z"/></g></g></g></symbol><symbol id="nc-circle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="5" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-round" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3c3.333 0 5.833 1 7.5 3 1.667 2 2.5 4.333 2.5 7h-3c-.011-2.144-.644-3.844-1.9-5.1C6.844 6.644 5.144 6.011 3 6V3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-square" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 3h10v10h-3V6H3z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.4 3.1l-7-3c-.3-.1-.5-.1-.8 0l-7 3c-.4.1-.6.5-.6.9v8c0 .4.2.8.6.9l7 3c.1.1.3.1.4.1s.3 0 .4-.1l7-3c.4-.2.6-.5.6-.9V4c0-.4-.2-.8-.6-.9zM8 2.1L12.5 4 8 5.9 3.5 4 8 2.1zM2 5.5l5 2.1v5.8l-5-2.1V5.5zm7 8V7.7l5-2.1v5.8l-5 2.1z"/></g></g></symbol><symbol id="nc-font" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8 0H1v4h1l.724-1.447A1 1 0 0 1 3.618 2H7v11.28a1 1 0 0 1-.684.948L4 15v1h8v-1l-2.316-.772A1 1 0 0 1 9 13.279V2h3.382a1 1 0 0 1 .894.553L14 4h1V0H8z"/></g></g></symbol><symbol id="nc-link" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M4.5 16c-1.2 0-2.3-.5-3.2-1.3-1.8-1.8-1.8-4.6 0-6.4l.7-.7L3.4 9l-.7.7c-1 1-1 2.6 0 3.6s2.6 1 3.6 0l3-3c1-1 1-2.6 0-3.6L8.6 6 10 4.6l.7.7c1.8 1.8 1.8 4.6 0 6.4l-3 3c-.8.8-2 1.3-3.2 1.3z"/><path fill="currentColor" d="M6 11.4l-.7-.7c-1.8-1.8-1.8-4.6 0-6.4l3-3c.9-.9 2-1.3 3.2-1.3s2.3.5 3.2 1.3c1.8 1.8 1.8 4.6 0 6.4l-.7.7L12.6 7l.7-.7c1-1 1-2.6 0-3.6s-2.6-1-3.6 0l-3 3c-1 1-1 2.6 0 3.6l.7.7L6 11.4z"/></g></g></symbol><symbol id="nc-more" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle data-color="color-2" cx="8" cy="8" r="2"/><circle fill="currentColor" cx="2" cy="8" r="2"/><circle fill="currentColor" cx="14" cy="8" r="2"/></g></g></symbol><symbol id="nc-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><circle cx="8" cy="8" r="4" stroke-width="2" stroke="currentColor" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M8.1 3.5L.3 11.3c-.2.2-.3.4-.3.7v3c0 .6.4 1 1 1h3c.3 0 .5-.1.7-.3l7.8-7.8-4.4-4.4z"/><path data-color="color-2" d="M15.7 3.3l-3-3c-.4-.4-1-.4-1.4 0L9.5 2.1l4.4 4.4 1.8-1.8c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-plus" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 7H9V1c0-.6-.4-1-1-1S7 .4 7 1v6H1c-.6 0-1 .4-1 1s.4 1 1 1h6v6c0 .6.4 1 1 1s1-.4 1-1V9h6c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-search" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M7 14c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM7 2C4.243 2 2 4.243 2 7s2.243 5 5 5 5-2.243 5-5-2.243-5-5-5z"/><path data-color="color-2" d="M15.707 14.293L13.314 11.9a8.019 8.019 0 0 1-1.414 1.414l2.393 2.393a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414z"/></g></g></symbol><symbol id="nc-star" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15.144 5.438l-4.316-.627L8.897.9C8.559.217 7.441.217 7.103.9l-1.93 3.911-4.317.627a1.002 1.002 0 0 0-.554 1.707l3.124 3.044-.737 4.299a1 1 0 0 0 1.451 1.054L8 13.513l3.861 2.03c.728.381 1.591-.234 1.451-1.054l-.737-4.299 3.124-3.044a1.003 1.003 0 0 0-.555-1.708z"/></g></g></symbol><symbol id="nc-text-align-center" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M3 5h10v2H3z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M3 13h10v2H3z"/></g></g></symbol><symbol id="nc-text-align-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M0 5h10v2H0z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M0 13h10v2H0z"/></g></g></symbol><symbol id="nc-text-align-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M0 1h16v2H0z"/><path data-color="color-2" d="M6 5h10v2H6z"/><path fill="currentColor" d="M0 9h16v2H0z"/><path data-color="color-2" d="M6 13h10v2H6z"/></g></g></symbol><symbol id="nc-upload" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13 7.1V7c0-2.8-2.2-5-5-5-2.5 0-4.6 1.8-4.9 4.3C1.3 6.9 0 8.5 0 10.5 0 13 2 15 4.5 15H12c2.2 0 4-1.8 4-4 0-1.9-1.3-3.4-3-3.9zM9 10v3H7v-3H4l4-4 4 4H9z"/></g></g></symbol><symbol id="nc-check" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="check" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6.7 6.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l2 2c.2.2.4.3.7.3.3 0 .5-.1.7-.3l7-7c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L8 7.6 6.7 6.3z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 15c3.9 0 7-3.1 7-7 0-.6-.4-1-1-1s-1 .4-1 1c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5c.6 0 1.1.1 1.7.3.5.2 1.1-.1 1.3-.6.2-.5-.1-1.1-.6-1.3C9.6 1.1 8.8 1 8 1 4.1 1 1 4.1 1 8s3.1 7 7 7z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-cog" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M13.3 5.2l1.1-2.1L13 1.7l-2.1 1.1c-.3-.2-.7-.3-1.1-.4L9 0H7l-.8 2.3c-.3.1-.7.2-1 .4L3.1 1.6 1.6 3.1l1.1 2.1c-.2.3-.3.7-.4 1L0 7v2l2.3.8c.1.4.3.7.4 1.1L1.6 13 3 14.4l2.1-1.1c.3.2.7.3 1.1.4L7 16h2l.8-2.3c.4-.1.7-.3 1.1-.4l2.1 1.1 1.4-1.4-1.1-2.1c.2-.3.3-.7.4-1.1L16 9V7l-2.3-.8c-.1-.3-.2-.7-.4-1zM8 11c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"/></g></g></symbol><symbol id="nc-hover" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M3 8.238V4.5C3 3.122 4.121 2 5.5 2S8 3.122 8 4.5v2.605l1.059.118A4.456 4.456 0 0 0 10 4.5C10 2.019 7.981 0 5.5 0S1 2.019 1 4.5c0 1.557.795 2.93 2 3.738z"/><path fill="currentColor" d="M13.9 16l1.066-3.554a3 3 0 0 0-2.542-3.843L7 8V4.5a1.5 1.5 0 1 0-3 0V12H3v-2h-.5A1.5 1.5 0 0 0 1 11.5v1.833c0 .95.285 1.87.79 2.667H13.9z"/></g></g></symbol><symbol id="nc-image" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 16H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1zM2 14h12V2H2v12z"/><path data-color="color-2" d="M6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1z"/><path data-color="color-2" d="M3 12l2-4 2 2 3-4 3 6z"/></g></g></symbol><symbol id="nc-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="none" fill-rule="nonzero"/><path fill="currentColor" d="M11.5 10.1l-1.4 1.4L8 9.4l-2.1 2.1-1.4-1.4L6.6 8 4.5 5.9l1.4-1.4L8 6.6l2.1-2.1 1.4 1.4L9.4 8z"/></g></g></g></symbol><symbol id="nc-settings" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M5 5V1c0-.6-.4-1-1-1S3 .4 3 1v4c0 .6.4 1 1 1s1-.4 1-1z"/><path fill="currentColor" d="M1 11c0 1.3.9 2.4 2 2.8V15c0 .6.4 1 1 1s1-.4 1-1v-1-.2c1.2-.4 2-1.5 2-2.8 0-1.7-1.3-3-3-3s-3 1.3-3 3z"/><path data-color="color-2" d="M11 11v4c0 .6.4 1 1 1s1-.4 1-1v-4c0-.6-.4-1-1-1s-1 .4-1 1z"/><path data-color="color-2" d="M9 5c0 1.7 1.3 3 3 3s3-1.3 3-3c0-1.3-.9-2.4-2-2.8V1c0-.6-.4-1-1-1s-1 .4-1 1v1.2C9.9 2.6 9 3.7 9 5z"/></g></g></symbol><symbol id="nc-trash" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V6H2z"/><path data-color="color-2" d="M12 3V1c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v2H0v2h16V3h-4zm-2 0H6V2h4v1z"/></g></g></symbol><symbol id="nc-uncheck" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="uncheck" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval" stroke="currentColor" stroke-width="2" cx="8" cy="8" r="6"/></g></g></g></symbol><symbol id="nc-button-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M12.586 15l-3.793-3.793L7 14 5 6l8 2-2.793 1.793L14 13.586 12.586 15z"/><path fill="currentColor" d="M4 10H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v7h-2V2H2v6h2v2z"/></g></g></symbol><symbol id="nc-button" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.424 5.603L7 5V1.5a1.5 1.5 0 1 0-3 0V9H3V7h-.5A1.5 1.5 0 0 0 1 8.5v1.833a5 5 0 0 0 1 3L4 16h9l1.966-6.554a3 3 0 0 0-2.542-3.843z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-desktop" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M15 0H1C.4 0 0 .4 0 1v11c0 .6.4 1 1 1h5v1H3v2h10v-2h-3v-1h5c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 11H2V2h12v9z"/></g></g></symbol><symbol id="nc-divider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M1 1v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path fill="currentColor" d="M1 12v3a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1z"/><path data-color="color-2" d="M15 9H1a1 1 0 0 1 0-2h14a1 1 0 0 1 0 2z"/></g></g></symbol><symbol id="nc-lock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134V6.4H5.833V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 1H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/><path fill="currentColor" d="M15 13H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z"/></g></g></symbol><symbol id="nc-phone" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(2)" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M10 16H2c-1.103 0-2-.897-2-2V2C0 .897.897 0 2 0h8c1.103 0 2 .897 2 2v12c0 1.103-.897 2-2 2zM2 2v12h8.001L10 2H2z"/><path d="M7 12v-2H5v2z"/></g></g></g></symbol><symbol id="nc-reorder" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v1H3z"/><path d="M1 4h14v11H1z"/></g></g></g></symbol><symbol id="nc-spacer" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M2 6H0V1c0-.6.4-1 1-1h5v2H2v4z"/><path fill="currentColor" d="M16 6h-2V2h-4V0h5c.6 0 1 .4 1 1v5z"/><path fill="currentColor" d="M15 16h-5v-2h4v-4h2v5c0 .6-.4 1-1 1z"/><path fill="currentColor" d="M6 16H1c-.6 0-1-.4-1-1v-5h2v4h4v2z"/></g></g></symbol><symbol id="nc-tablet" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13 0H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM7 15v-1h2v1H7zm6-3H3V2h10v10z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-unlock" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M13.417 6.4h-1.084V4.267C12.333 1.914 10.39 0 8 0S3.667 1.914 3.667 4.267V6.4H2.583c-.599 0-1.083.478-1.083 1.067v7.466c0 .59.484 1.067 1.083 1.067h10.834c.599 0 1.083-.478 1.083-1.067V7.467c0-.59-.484-1.067-1.083-1.067zM5.833 4.267c0-1.177.972-2.134 2.167-2.134 1.195 0 2.167.957 2.167 2.134h2.166V6.4h-6.5V4.267z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-upgrade" viewBox="0 0 32 32"><g><g class="nc-icon-wrapper" fill="currentColor"><circle fill="currentColor" cx="16" cy="6" r="1"/><path fill="currentColor" d="M18 24v-1c0-.77.297-1.468.775-2H0v1c0 2.757 2.243 5 5 5h13v-3z"/><path fill="currentColor" d="M27 4v10.09a5.964 5.964 0 0 1 2 .721V4c0-1.654-1.346-3-3-3H6C4.346 1 3 2.346 3 4v15h2V4c0-.551.448-1 1-1h20c.552 0 1 .449 1 1z"/><path data-color="color-2" d="M31 22h-1v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1zm-7-2c0-1.103.897-2 2-2s2 .897 2 2v2h-4v-2z"/></g></g></symbol><symbol id="nc-close" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M12.786 3.214a.69.69 0 0 0-1 0L8 7 4.214 3.214a.69.69 0 0 0-1 0 .69.69 0 0 0 0 1L7 8l-3.786 3.786a.69.69 0 0 0 0 1 .648.648 0 0 0 .5.214.648.648 0 0 0 .5-.214L8 9l3.786 3.786a.772.772 0 0 0 .5.214.772.772 0 0 0 .5-.214.69.69 0 0 0 0-1L9 8l3.786-3.786a.69.69 0 0 0 0-1z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-corners-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><rect x="1" y="2" width="14" height="12" rx="3" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-corners-bottom-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="#22AFDA" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-bottom-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="#22AFDA" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="#22AFDA"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="currentColor" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-corners-top-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M0 6V4c0-2 1.5-3 3-3h2v2H3.5C2.5 3 2 3.5 2 4.5V6H0z" fill="currentColor"/><path d="M11 6V4c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V6h-2z" fill="#22AFDA" transform="matrix(-1 0 0 1 27 0)"/><path d="M0 15v-2c0-2 1.5-3 3-3h2v2H3.5c-1 0-1.5.5-1.5 1.5V15H0z" fill="currentColor" transform="matrix(1 0 0 -1 0 25)"/><path d="M11 15v-2c0-2 1.5-3 3-3h2v2h-1.5c-1 0-1.5.5-1.5 1.5V15h-2z" fill="currentColor" transform="rotate(180 13.5 12.5)"/></g></g></g></symbol><symbol id="nc-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path transform="rotate(90 11.833 8)" d="M11.833 10.167h4.5l-4.5-4.334-4.5 4.334h2.834z"/><path transform="matrix(0 1 1 0 -3.833 3.833)" d="M4.167 10.167h4.5l-4.5-4.334-4.5 4.334H2.5z"/></g></g></g></symbol><symbol id="nc-redo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M10 4.6L8.6 6l3 3H6C4.3 9 3 7.7 3 6s1.3-3 3-3h8V1H6C3.2 1 1 3.2 1 6s2.2 5 5 5h5.6l-3 3 1.4 1.4 5.4-5.4L10 4.6z"/></g></g></symbol><symbol id="nc-size" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M15 8l-3-3v2h-2v2h2v2z"/><path d="M7 6h2V4h2L8 1 5 4h2z"/><path d="M9 10H7v2H5l3 3 3-3H9z"/><path d="M6 9V7H4V5L1 8l3 3V9z"/></g></g></g></symbol><symbol id="nc-styling-all" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 1h16v2H0z"/><path d="M0 13h16v2H0z"/><path transform="rotate(-90 1 8)" d="M-4 7H6v2H-4z"/><path transform="rotate(-90 15 8)" d="M10 7h10v2H10z"/></g></g></g></symbol><symbol id="nc-styling-bottom" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="#22AFDA" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-individual" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 1h10v2H3z"/><path d="M3 13h10v2H3z"/><path transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="#22AFDA" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-right" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="currentColor" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="#22AFDA" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path fill="#22AFDA" d="M3 1h10v2H3z"/><path fill="currentColor" d="M3 13h10v2H3z"/><path fill="currentColor" transform="rotate(-90 1 8)" d="M-3 7h8v2h-8z"/><path fill="currentColor" transform="rotate(-90 15 8)" d="M11 7h8v2h-8z"/></g></g></g></symbol><symbol id="nc-styling" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.2 5.6l3.4-3.4L3.7.3c-.4-.4-1-.4-1.4 0l-2 2c-.4.4-.4 1 0 1.4l1.9 1.9z"/><path data-color="color-2" d="M13.8 10.4l-3.4 3.4 1.9 1.9c.2.2.4.3.7.3h3v-3c0-.3-.1-.5-.3-.7l-1.9-1.9z"/><path fill="currentColor" d="M15.7 4.3l-4-4c-.4-.4-1-.4-1.4 0L9 1.6l1.7 1.7-1.4 1.4L7.6 3 6 4.6l1.7 1.7-1.4 1.4L4.6 6 3 7.6l1.7 1.7-1.4 1.4L1.6 9 .3 10.3c-.4.4-.4 1 0 1.4l4 4c.4.4 1 .4 1.4 0l10-10c.4-.4.4-1 0-1.4z"/></g></g></symbol><symbol id="nc-time" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M12.7.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l.8.8-.9.9C10 2.5 8.6 2 7 2 3.1 2 0 5.1 0 9s3.1 7 7 7 7-3.1 7-7c0-1.6-.5-3-1.4-4.2l.9-.9.8.8c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-3-3zM7 14c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z"/><path data-color="color-2" d="M8 6H6v4h4V8H8z"/></g></g></symbol><symbol id="nc-undo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path data-color="color-2" d="M2.502 12.333a6.996 6.996 0 0 1-1.405-3.168l1.973-.331a4.982 4.982 0 0 0 1.003 2.26l-1.571 1.239z"/><path data-color="color-2" d="M6.834 14.903a7.015 7.015 0 0 1-2.976-1.259l1.186-1.611c.624.459 1.358.77 2.122.898l-.332 1.972z"/><path data-color="color-2" d="M9.165 14.903l-.33-1.973a4.99 4.99 0 0 0 2.209-.964l1.219 1.586a6.997 6.997 0 0 1-3.098 1.351z"/><path fill="currentColor" d="M8 1c-1.873 0-3.65.759-4.948 2.052L.9.9.2 7.3l6.4-.7-2.135-2.135A5.023 5.023 0 0 1 8 3c2.757 0 5 2.243 5 5 0 1.06-.327 2.072-.947 2.928l1.621 1.173A6.96 6.96 0 0 0 15 8c0-3.86-3.141-7-7-7z"/></g></g></symbol><symbol id="nc-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M8 6.333h4.5L8 2 3.5 6.333h2.833z"/><path transform="matrix(1 0 0 -1 0 23.667)" d="M8 14h4.5L8 9.667 3.5 14h2.833z"/></g></g></g></symbol><symbol id="nc-check-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><polygon fill="currentColor" points="12.4,6 11,4.6 7,8.6 5,6.6 3.6,8 7,11.4 "/></g></g></symbol><symbol id="nc-circle-remove" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M11.5,10.1l-1.4,1.4L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8 L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-stre-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,12c-0.232,0-0.463-0.08-0.651-0.241l-7.759-6.65L0.892,3.59L8,9.683l7.108-6.093l1.302,1.519l-7.759,6.65 C8.463,11.92,8.232,12,8,12z"/></g></g></symbol><symbol id="nc-stre-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15.108,12.41L8,6.317L0.892,12.41l-1.302-1.519l7.759-6.65c0.375-0.322,0.927-0.322,1.302,0l7.759,6.65 L15.108,12.41z"/></g></g></symbol><symbol id="nc-alert-circle-que" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0z M8,13c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1s1,0.4,1,1 C9,12.6,8.6,13,8,13z M9.5,8.4C9,8.7,9,8.8,9,9v1H7V9c0-1.3,0.8-1.9,1.4-2.3C8.9,6.4,9,6.3,9,6c0-0.6-0.4-1-1-1 C7.6,5,7.3,5.2,7.1,5.5L6.6,6.4l-1.7-1l0.5-0.9C5.9,3.6,6.9,3,8,3c1.7,0,3,1.3,3,3C11,7.4,10.1,8,9.5,8.4z"/></g></g></symbol><symbol id="nc-grid-45" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M15,0h-5C9.4,0,9,0.4,9,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <path fill="currentColor" d="M15,9h-5c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C16,9.4,15.6,9,15,9z"/></g></g></symbol><symbol id="nc-bars" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><rect x="7" fill="currentColor" width="2" height="4"/> <rect x="10.243" y="2.757" transform="matrix(0.7071 -0.7071 0.7071 0.7071 0.929 9.7574)" opacity="0.9" fill="currentColor" width="4" height="2"/> <rect x="12" y="7" opacity="0.8" fill="currentColor" width="4" height="2"/> <rect x="11.243" y="10.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -5.0711 12.2427)" opacity="0.7" fill="currentColor" width="2" height="4"/> <rect x="7" y="12" opacity="0.6" fill="currentColor" width="2" height="4"/> <rect x="1.758" y="11.243" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -7.5564 6.2426)" opacity="0.5" fill="currentColor" width="4" height="2"/> <rect y="7" opacity="0.4" fill="currentColor" width="4" height="2"/> <rect x="2.757" y="1.758" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.5563 3.7573)" opacity="0.3" fill="currentColor" width="2" height="4"/> </g></g></symbol><symbol id="nc-square-remove-09" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,0H1C0.4,0,0,0.4,0,1v14c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1V1C16,0.4,15.6,0,15,0z M11.5,10.1l-1.4,1.4 L8,9.4l-2.1,2.1l-1.4-1.4L6.6,8L4.5,5.9l1.4-1.4L8,6.6l2.1-2.1l1.4,1.4L9.4,8L11.5,10.1z"/></g></g></symbol><symbol id="nc-paragraph" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M6,0H1C0.4,0,0,0.4,0,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V1C7,0.4,6.6,0,6,0z"/> <path fill="currentColor" d="M6,9H1c-0.6,0-1,0.4-1,1v5c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1v-5C7,9.4,6.6,9,6,9z"/> <rect data-color="color-2" x="9" y="1" width="7" height="2"/> <rect data-color="color-2" x="9" y="4" width="7" height="2"/> <rect data-color="color-2" x="9" y="10" width="7" height="2"/> <rect data-color="color-2" x="9" y="13" width="7" height="2"/></g></g></symbol><symbol id="nc-zoom-e" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M2,6H0V1c0-0.6,0.4-1,1-1h5v2H2V6z"/> <path fill="currentColor" d="M16,6h-2V2h-4V0h5c0.6,0,1,0.4,1,1V6z"/> <path fill="currentColor" d="M15,16h-5v-2h4v-4h2v5C16,15.6,15.6,16,15,16z"/> <path fill="currentColor" d="M6,16H1c-0.6,0-1-0.4-1-1v-5h2v4h4V16z"/></g></g></symbol><symbol id="nc-hourglass" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M15,2c0.6,0,1-0.4,1-1s-0.4-1-1-1H1C0.4,0,0,0.4,0,1s0.4,1,1,1h1c0.1,2.4,0.8,4.5,2,6c-1.2,1.4-2,3.6-2,6H1 c-0.6,0-1,0.4-1,1s0.4,1,1,1h14c0.6,0,1-0.4,1-1s-0.4-1-1-1h-1c-0.1-2.5-0.8-4.6-2-6c1.3-1.5,2-3.6,2-6H15z M9.9,7.3L9,8.1l1,0.7 c1.2,0.9,2,2.9,2.1,5.2H4c0.1-2.3,0.9-4.3,2.1-5.2l1-0.7L6.1,7.3C4.8,6.1,4.1,4.2,4,2h8C11.9,4.2,11.2,6.1,9.9,7.3z"/></g></g></symbol><symbol id="nc-share-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M12,6c1.654,0,3-1.346,3-3s-1.346-3-3-3S9,1.346,9,3c0,0.223,0.029,0.439,0.075,0.649l-3.22,2.012 C5.343,5.254,4.704,5,4,5C2.346,5,1,6.346,1,8s1.346,3,3,3c0.704,0,1.343-0.254,1.855-0.661l3.22,2.012C9.029,12.561,9,12.777,9,13 c0,1.654,1.346,3,3,3s3-1.346,3-3s-1.346-3-3-3c-0.704,0-1.343,0.254-1.855,0.661l-3.22-2.012C6.971,8.439,7,8.223,7,8 S6.971,7.561,6.925,7.351l3.22-2.012C10.657,5.746,11.296,6,12,6z"/></g></g></symbol><symbol id="nc-form" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path data-color="color-2" d="M15,16H9c-0.552,0-1-0.448-1-1v-1c0-0.552,0.448-1,1-1h6c0.552,0,1,0.448,1,1v1 C16,15.552,15.552,16,15,16z"/> <path fill="currentColor" d="M15,0H1C0.448,0,0,0.448,0,1v9c0,0.552,0.448,1,1,1h14c0.552,0,1-0.448,1-1V1C16,0.448,15.552,0,15,0z M14,9 H2V4h12V9z"/></g></g></symbol><symbol id="nc-circle-remove-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><circle fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="8.5" cy="8.5" r="7"/><line data-color="color-2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="11.5" y1="5.5" x2="5.5" y2="11.5"/><line data-color="color-2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="5.5" y1="5.5" x2="11.5" y2="11.5"/></g></g></symbol><symbol id="nc-eye-ban-18" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M14.6,5.6l-8.2,8.2C6.9,13.9,7.5,14,8,14c3.6,0,6.4-3.1,7.6-4.9c0.5-0.7,0.5-1.6,0-2.3 C15.4,6.5,15,6.1,14.6,5.6z"/> <path fill="currentColor" d="M14.3,0.3L11.6,3C10.5,2.4,9.3,2,8,2C4.4,2,1.6,5.1,0.4,6.9c-0.5,0.7-0.5,1.6,0,2.2c0.5,0.8,1.4,1.8,2.4,2.7 l-2.5,2.5c-0.4,0.4-0.4,1,0,1.4C0.5,15.9,0.7,16,1,16s0.5-0.1,0.7-0.3l14-14c0.4-0.4,0.4-1,0-1.4S14.7-0.1,14.3,0.3z M5.3,9.3 C5.1,8.9,5,8.5,5,8c0-1.7,1.3-3,3-3c0.5,0,0.9,0.1,1.3,0.3L5.3,9.3z"/></g></g></symbol><symbol id="nc-eye-17" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><path fill="currentColor" d="M8,14c3.6,0,6.4-3.1,7.6-4.9c0.5-0.7,0.5-1.6,0-2.3C14.4,5.1,11.6,2,8,2C4.4,2,1.6,5.1,0.4,6.9 c-0.5,0.7-0.5,1.6,0,2.2C1.6,10.9,4.4,14,8,14z M8,5c1.7,0,3,1.3,3,3s-1.3,3-3,3S5,9.7,5,8S6.3,5,8,5z"/></g></g></symbol><symbol id="nc-drag" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" d="M16 8l-3-3v2H9V3h2L8 0 5 3h2v4H3V5L0 8l3 3V9h4v4H5l3 3 3-3H9V9h4v2z"/></g></g></symbol><symbol id="nc-small" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8.01 13.004c2.598 0 3.876-1.336 3.876-3.107 0-3.616-5.561-2.585-5.561-4.11 0-.58.494-.958 1.365-.958.987 0 2.032.334 2.816 1.06l1.147-1.539C10.695 3.465 9.418 3 7.88 3c-2.28 0-3.674 1.336-3.674 2.947 0 3.645 5.576 2.469 5.576 4.153 0 .566-.538 1.074-1.685 1.074a4.255 4.255 0 0 1-3.078-1.321l-1.132 1.612c.915.914 2.25 1.539 4.123 1.539z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-medium" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1" d="M13.544 13V3h-3.067L7.992 9.288 5.508 3H2.456v10h2.178V5.731L7.517 13h.95l2.884-7.269V13z"/></g></g></symbol><symbol id="nc-large" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1" d="M11.392 13v-2.06H6.94V3H4.683v10z"/></g></g></symbol><symbol id="nc-16" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1.014 3.1h3.934v9.8H3.072V4.752H1.014z"/><path d="M13.111 4.703a4.159 4.159 0 0 0-1.141-.161c-.877 0-1.538.294-1.981.882-.443.588-.651 1.39-.623 2.408a2.46 2.46 0 0 1 1.029-.973c.434-.22.95-.329 1.547-.329.97 0 1.74.285 2.31.854.57.57.854 1.33.854 2.282 0 .672-.145 1.258-.434 1.757-.29.5-.698.884-1.225 1.155-.527.27-1.141.406-1.841.406-.83 0-1.55-.191-2.156-.574-.607-.383-1.071-.933-1.393-1.652-.322-.719-.483-1.577-.483-2.576 0-1.036.175-1.944.525-2.723.35-.78.847-1.381 1.491-1.806.644-.425 1.4-.637 2.268-.637.504 0 1.024.068 1.561.203a5.43 5.43 0 0 1 1.407.553l-.714 1.4a3.245 3.245 0 0 0-1.001-.469zM10.15 8.476a1.603 1.603 0 0 0-.518 1.246c-.01.28.056.548.196.805s.352.467.637.63c.285.163.637.245 1.057.245.56 0 1.008-.154 1.344-.462.336-.308.504-.737.504-1.288 0-.513-.161-.922-.483-1.225-.322-.303-.758-.455-1.309-.455-.597 0-1.073.168-1.428.504z"/></g></g></g></symbol><symbol id="nc-24" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M7.784 11.262V12.9H.532v-1.358l3.696-3.808c.355-.355.64-.705.854-1.05.215-.345.322-.644.322-.896a.968.968 0 0 0-.42-.833c-.28-.2-.667-.301-1.162-.301-.43 0-.887.107-1.372.322a5.256 5.256 0 0 0-1.372.896L.336 4.43a7.256 7.256 0 0 1 1.827-1.043 5.3 5.3 0 0 1 1.925-.371c.644 0 1.213.103 1.708.308.495.205.88.497 1.155.875s.413.814.413 1.309c0 .476-.163.98-.49 1.512-.327.532-.784 1.106-1.372 1.722l-2.492 2.52h4.774z"/><path d="M15.71 8.98v1.61h-1.414v2.31H12.56v-2.31H7.87V9.204L11.062 3.1h1.806L9.872 8.98h2.688V6.712h1.736V8.98z"/></g></g></g></symbol><symbol id="nc-32" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M6.867 8.014c.537.467.805 1.078.805 1.834 0 .616-.159 1.16-.476 1.631-.317.471-.77.84-1.358 1.106-.588.266-1.274.399-2.058.399-.663 0-1.318-.1-1.967-.301-.649-.2-1.202-.469-1.659-.805l.742-1.456a4.321 4.321 0 0 0 2.758 1.008c.681 0 1.216-.14 1.603-.42.387-.28.581-.658.581-1.134 0-.485-.191-.856-.574-1.113-.383-.257-.929-.385-1.638-.385H2.142V7.244l2.632-2.548H.644L.63 3.1h6.552v1.162l-2.996 2.87.518.056c.905.084 1.626.36 2.163.826z"/><path d="M15.556 11.262V12.9H8.304v-1.358L12 7.734c.355-.355.64-.705.854-1.05.215-.345.322-.644.322-.896a.968.968 0 0 0-.42-.833c-.28-.2-.667-.301-1.162-.301-.43 0-.887.107-1.372.322a5.256 5.256 0 0 0-1.372.896L8.108 4.43a7.256 7.256 0 0 1 1.827-1.043 5.3 5.3 0 0 1 1.925-.371c.644 0 1.213.103 1.708.308.495.205.88.497 1.155.875s.413.814.413 1.309c0 .476-.163.98-.49 1.512-.327.532-.784 1.106-1.372 1.722l-2.492 2.52h4.774z"/></g></g></g></symbol><symbol id="nc-48" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(0 3)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M7.952 5.98v1.61H6.538V9.9H4.802V7.59H.112V6.204L3.304.1H5.11L2.114 5.98h2.688V3.712h1.736V5.98z"/><path d="M14.597.709c.593.462.889 1.09.889 1.883 0 .448-.121.854-.364 1.218a2.451 2.451 0 0 1-1.008.854c.579.215 1.034.541 1.365.98.331.439.497.943.497 1.512 0 .57-.154 1.069-.462 1.498-.308.43-.749.758-1.323.987-.574.229-1.244.343-2.009.343-.765 0-1.435-.114-2.009-.343-.574-.229-1.015-.553-1.323-.973-.308-.42-.462-.915-.462-1.484 0-.579.173-1.09.518-1.533.345-.443.821-.772 1.428-.987a2.715 2.715 0 0 1-1.071-.896 2.15 2.15 0 0 1-.385-1.246c0-.765.296-1.374.889-1.827.593-.453 1.393-.679 2.401-.679 1.027 0 1.836.231 2.429.693zM10.915 1.71c-.303.233-.455.56-.455.98 0 .42.152.747.455.98.303.233.726.35 1.267.35.541 0 .961-.117 1.26-.35.299-.233.448-.56.448-.98 0-.42-.15-.747-.448-.98-.299-.233-.719-.35-1.26-.35s-.964.117-1.267.35zm-.231 4.158c-.355.261-.532.63-.532 1.106 0 .485.177.863.532 1.134.355.27.854.406 1.498.406.635 0 1.132-.133 1.491-.399.36-.266.539-.642.539-1.127 0-.476-.18-.847-.539-1.113-.36-.266-.861-.399-1.505-.399-.635 0-1.13.13-1.484.392z"/></g></g></g></symbol><symbol id="nc-64" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(.2 3)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M5.537 1.703a4.159 4.159 0 0 0-1.141-.161c-.877 0-1.538.294-1.981.882-.443.588-.651 1.39-.623 2.408a2.46 2.46 0 0 1 1.029-.973c.434-.22.95-.329 1.547-.329.97 0 1.74.285 2.31.854.57.57.854 1.33.854 2.282 0 .672-.145 1.258-.434 1.757-.29.5-.698.884-1.225 1.155-.527.27-1.141.406-1.841.406-.83 0-1.55-.191-2.156-.574C1.269 9.027.805 8.477.483 7.758.161 7.039 0 6.181 0 5.182c0-1.036.175-1.944.525-2.723.35-.78.847-1.381 1.491-1.806.644-.425 1.4-.637 2.268-.637.504 0 1.024.068 1.561.203a5.43 5.43 0 0 1 1.407.553l-.714 1.4a3.245 3.245 0 0 0-1.001-.469zM2.576 5.476a1.603 1.603 0 0 0-.518 1.246c-.01.28.056.548.196.805s.352.467.637.63c.285.163.637.245 1.057.245.56 0 1.008-.154 1.344-.462.336-.308.504-.737.504-1.288 0-.513-.161-.922-.483-1.225-.322-.303-.758-.455-1.309-.455-.597 0-1.073.168-1.428.504z"/><path d="M15.724 5.98v1.61H14.31V9.9h-1.736V7.59h-4.69V6.204L11.076.1h1.806L9.886 5.98h2.688V3.712h1.736V5.98z"/></g></g></g></symbol><symbol id="nc-row" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.77 0C15.507 0 16 .486 16 1.214v14.572c0 .728-.492 1.214-1.23 1.214H1.23C.493 17 0 16.514 0 15.786V1.214C0 .486.492 0 1.23 0h13.54zm-2 4H3.23C2.493 4 2 4.514 2 5.286v6.428C2 12.486 2.492 13 3.23 13h9.54c.738 0 1.23-.514 1.23-1.286V5.286C14 4.514 13.508 4 12.77 4z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-column" viewBox="0 0 16 17"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.77 0C15.507 0 16 .486 16 1.214v14.572c0 .728-.492 1.214-1.23 1.214H1.23C.493 17 0 16.514 0 15.786V1.214C0 .486.492 0 1.23 0h13.54zM12 13.77V3.23C12 2.493 11.486 2 10.714 2H5.286C4.514 2 4 2.492 4 3.23v10.54c0 .738.514 1.23 1.286 1.23h5.428c.772 0 1.286-.492 1.286-1.23z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-sound-cloud" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M2.777 5.974c-.279 0-.557.171-.557.343l-.279 4.628.279 3.086c0 .171.278.171.278.171.279 0 .279-.171.279-.171l.278-3.086V6.317c0-.172-.278-.343-.278-.343z"/><path d="M.945 8.209c-.25.008-.494.142-.49.267l-.132 3.382.328 2.24c.005.125.254.116.254.116.25-.009.245-.134.245-.134l.17-2.257-.117-3.373c-.004-.125-.258-.241-.258-.241z"/><path d="M6.57 14.202c.217 0 .434-.171.434-.343l.217-2.914-.217-7.2c0-.171-.217-.342-.433-.342-.217 0-.434.171-.434.342l-.216 7.2.216 2.914c0 .172.217.343.434.343z"/><path d="M4.53 14.202c.2 0 .4-.171.4-.343l.2-2.914-.2-6.342c0-.172-.2-.343-.4-.343s-.4.171-.4.343l-.2 6.342.2 2.914c0 .172.2.343.4.343z"/><path d="M13.084 7.517C13.87 4.35 12.37 1.86 9.502 1.86c-.497 0-.895.171-1.293.343-.2.171-.2.343-.2.514v11.142c0 .172.1.343.2.343h5.571c1.09 0 2.09-1.352 2.09-3.352 0-2-1-3-2.786-3.333z"/></g></g></g></symbol><symbol id="nc-progress" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" stroke="none" stroke-width="1" fill="none"><path d="M9 1H2c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h7V1z" fill="currentColor"/><path d="M4 1.61v12.749L14 14V2H4v-.39z" stroke="currentColor" stroke-width="2"/></g></g></g></symbol><symbol id="nc-counter" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H7V4h2v3h3v2z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-shortcode" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M5 3c.5 0 1-.5 1-1s-.448-1-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1c0-.552-.5-1-1-1h-.875C3.45 13 3 12.508 3 11.77V4.23C3 3.493 3.45 3 4.125 3H5z"/><path d="M11 3c-.5 0-1-.5-1-1s.448-1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1c0-.552.5-1 1-1h.875C12.55 13 13 12.508 13 11.77V4.23C13 3.493 12.55 3 11.875 3H11z"/></g></g></g></symbol><symbol id="nc-sidebar" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h14zm-5 10.77V4.23C10 3.493 9.486 3 8.714 3H3.286C2.514 3 2 3.492 2 4.23v7.54c0 .738.514 1.23 1.286 1.23h5.428C9.486 13 10 12.508 10 11.77z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-dark" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.2 9.047a6.381 6.381 0 0 1-1.554.194 5.799 5.799 0 0 1-5.823-5.823c0-.517.065-1.035.194-1.553.065-.194 0-.453-.194-.647s-.388-.258-.647-.194C3.136 1.93 1 4.777 1 7.947a7.097 7.097 0 0 0 7.117 7.118c3.17 0 6.018-2.135 6.859-5.241.064-.194 0-.453-.194-.647a.62.62 0 0 0-.583-.13z" fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-light" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill-rule="nonzero" fill="currentColor" stroke="none" stroke-width="1"><path d="M1.87 2.813l.943-.943 1.415 1.415-.943.943z"/><path d="M11.772 3.285l1.414-1.415.943.943-1.414 1.415z"/><path d="M11.772 12.715l.943-.943 1.415 1.415-.943.943z"/><path d="M1.87 13.187l1.415-1.415.943.943-1.415 1.415z"/><circle cx="8" cy="8" r="4.668"/><path d="M-.002 7.333h2v1.334h-2z"/><path d="M7.333-.002h1.334v2H7.333z"/><path d="M14.001 7.333h2v1.334h-2z"/><path d="M7.333 14.001h1.334v2H7.333z"/></g></g></g></symbol><symbol id="nc-wp-shortcode" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M0 8c0 3.2 1.8 5.9 4.5 7.2L.7 4.7C.2 5.7 0 6.8 0 8z"/><path d="M13.4 7.6c0-1-.4-1.7-.7-2.2-.4-.7-.7-1.2-.7-1.9s.6-1.4 1.3-1.4h.1C12 .8 10.1 0 8 0 5.2 0 2.7 1.4 1.3 3.6c.2 0 2.7-.1 2.7-.1.4 0 .5.6.1.7 0 0-.4.1-.9.1L6 12.9l1.8-5.3-1.3-3.4c-.4 0-.8-.1-.8-.1-.4 0-.4-.7.1-.7 0 0 1.3.1 2.1.1s2.1-.1 2.1-.1c.4 0 .5.6.1.7 0 0-.4.1-.9.1l2.9 8.6.8-2.7c.2-1 .5-1.8.5-2.5z"/><path d="M8.1 8.7l-2.4 7c.8.2 1.5.3 2.3.3.9 0 1.8-.2 2.7-.5 0 0 0-.1-.1-.1L8.1 8.7z"/><path d="M15 4.2c0 .3.1.5.1.8 0 .8-.2 1.7-.6 2.9l-2.5 7c2.4-1.4 4-4 4-6.9 0-1.4-.4-2.7-1-3.8z"/></g></g></g></symbol><symbol id="nc-sndcloud-style-1" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="4" width="8" height="8" rx="1"/><rect x="10" y="7" width="1" height="5" rx=".5"/><rect x="9" y="9" width="1" height="3" rx=".5"/><rect x="13" y="8" width="1" height="4" rx=".5"/><rect x="11" y="8" width="1" height="4" rx=".5"/><rect x="12" y="6" width="1" height="6" rx=".5"/><rect x="14" y="7" width="1" height="5" rx=".5"/><rect x="15" y="9" width="1" height="3" rx=".5"/></g></g></g></symbol><symbol id="nc-sndcloud-style-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M3 2h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm1.5 6a.5.5 0 0 0-.5.5v4a.5.5 0 1 0 1 0v-4a.5.5 0 0 0-.5-.5zm-1 2a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm-3-1a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5zm1 1a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5zm1-1a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5zm-2 4a.5.5 0 0 0 .5-.5v-1a.5.5 0 1 0-1 0v1a.5.5 0 0 0 .5.5zm-1 0a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-1 0v4a.5.5 0 0 0 .5.5zm-2-4a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5z" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"/></g></g></symbol><symbol id="nc-circle-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 12.25c-2.888 0-5.25-2.363-5.25-5.25 0-2.888 2.362-5.25 5.25-5.25 2.887 0 5.25 2.362 5.25 5.25 0 2.887-2.363 5.25-5.25 5.25z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-diamond-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M7.449 15.337L.497 8.386C.2 8.088.2 7.69.497 7.392L7.45.441c.298-.298.695-.298.993 0l6.951 6.951c.298.298.298.696 0 .994l-6.951 6.951c-.298.298-.695.298-.993 0zM2.8 7.889l5.144 5.144L13.09 7.89 7.945 2.745 2.801 7.889z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-dot" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 4C5.8 4 4 5.8 4 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-fade" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><g transform="translate(0 1)" fill-rule="nonzero" stroke="none" stroke-width="1" fill="none"><path fill="#FFF" d="M0 0h6v14H0z"/><path fill="#C6C8CC" opacity=".7" d="M9 0h3v14H9z"/><path d="M15.5 0a.5.5 0 0 1 .5.5v13a.5.5 0 1 1-1 0V.5a.5.5 0 0 1 .5-.5z" fill="#979AA1" opacity=".4"/></g></g></g></symbol><symbol id="nc-line" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd" d="M3 7h10v2H3z"/></g></g></symbol><symbol id="nc-none" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 2c1.3 0 2.5.4 3.5 1.1l-8.4 8.4C2.4 10.5 2 9.3 2 8c0-3.3 2.7-6 6-6zm0 12c-1.3 0-2.5-.4-3.5-1.1l8.4-8.4c.7 1 1.1 2.2 1.1 3.5 0 3.3-2.7 6-6 6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-filled" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zM7 11.4L5.6 10l2-2-2-2L7 4.6 10.4 8 7 11.4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-heavy" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M5.204 16L3 13.91 9.236 8 3 2.09 5.204 0l7.339 6.955c.61.578.61 1.512 0 2.09L5.204 16z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7 11.4L5.6 10l2-2-2-2L7 4.6 10.4 8z"/><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"/></g></g></g></symbol><symbol id="nc-right-arrow-tail" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15.787 7.496L10.182 2 9.153 3.008l4.364 4.279H.727A.72.72 0 0 0 0 8a.72.72 0 0 0 .727.713h12.79l-4.364 4.279L10.182 14l5.605-5.496a.703.703 0 0 0 0-1.008z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-right-arrow-thin" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M5.025 16L4 15.009 11.25 8 4 .991 5.025 0l7.762 7.504a.684.684 0 0 1 0 .992L5.025 16z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-slider-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M1 1h14a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0H2a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1z"/><path d="M1 15h14a1 1 0 0 0 1-1v-1a1 1 0 0 0-2 0H2a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1z"/><path d="M3.929 7h2.285C6.648 7 7 7.448 7 8s-.352 1-.786 1H3.93v3L0 8l3.929-4v3z" fill-rule="nonzero"/><path d="M12.071 7H9.786C9.352 7 9 7.448 9 8s.352 1 .786 1h2.285v3L16 8l-3.929-4v3z" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-slider-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(90 8 8)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M3 0h10a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0H4a1 1 0 1 1-2 0V1a1 1 0 0 1 1-1z"/><path d="M3 16h10a1 1 0 0 0 1-1v-1a1 1 0 0 0-2 0H4a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1z"/><path d="M3.929 7h2.285C6.648 7 7 7.448 7 8s-.352 1-.786 1H3.93v3L0 8l3.929-4v3z" fill-rule="nonzero"/><path d="M12.071 7H9.786C9.352 7 9 7.448 9 8s.352 1 .786 1h2.285v3L16 8l-3.929-4v3z" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-slider" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="1" y="6" width="14" height="9" rx="1"/><rect x="3" y="3" width="10" height="2" rx="1"/><rect x="5" y="1" width="6" height="1" rx=".5"/></g></g></g></symbol><symbol id="nc-square-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.125 15H1.875C1.35 15 1 14.65 1 14.125V1.875C1 1.35 1.35 1 1.875 1h12.25c.525 0 .875.35.875.875v12.25c0 .525-.35.875-.875.875zM2.75 13.25h10.5V2.75H2.75v10.5z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-align-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="14" width="16" height="2" rx="1"/><rect x="3" y="6" width="10" height="4" rx="1"/><rect x="0" y="0" width="16" height="2" rx="1"/></g></g></g></symbol><symbol id="nc-align-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(90 8 8)" fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><rect x="0" y="14" width="16" height="2" rx="1"/><rect x="3" y="6" width="10" height="4" rx="1"/><rect x="0" y="0" width="16" height="2" rx="1"/></g></g></g></symbol><symbol id="nc-label-inside" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="currentColor" x="3" y="7" width="7" height="2" rx="1"/><rect stroke="currentColor" stroke-width="2" x="1" y="4" width="14" height="8" rx="1"/></g></g></g></symbol><symbol id="nc-label-outside" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect fill="currentColor" x="1" y="2" width="7" height="2" rx="1"/><rect stroke="currentColor" stroke-width="2" x="1" y="6" width="14" height="7" rx="1"/></g></g></g></symbol><symbol id="nc-info" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M8 0C3.584 0 0 3.584 0 8s3.584 8 8 8 8-3.584 8-8-3.584-8-8-8zm.8 12H7.2V7.2h1.6V12zm0-6.4H7.2V4h1.6v1.6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-back" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="rotate(-90 8 8)" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7 4v4h2V4h3L8 0 4 4z"/><path d="M15 0h-3v2h2v9H2V2h2V0H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1z"/></g></g></g></symbol><symbol id="nc-countdown" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 2c.6 0 1-.4 1-1s-.4-1-1-1H1C.4 0 0 .4 0 1s.4 1 1 1h1c.1 2.4.8 4.5 2 6-1.2 1.4-2 3.6-2 6H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1h-1c-.1-2.5-.8-4.6-2-6 1.3-1.5 2-3.6 2-6h1zM9.9 7.3l-.9.8 1 .7c1.2.9 2 2.9 2.1 5.2H4c.1-2.3.9-4.3 2.1-5.2l1-.7-1-.8C4.8 6.1 4.1 4.2 4 2h8c-.1 2.2-.8 4.1-2.1 5.3z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-counter-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M6.6 6.6c-.8.8-.8 2 0 2.8.8.8 2 .8 2.8 0 .8-.8 5-7.8 5-7.8s-7 4.2-7.8 5z"/><path d="M8 16c4.4 0 8-3.6 8-8 0-.6-.4-1-1-1s-1 .4-1 1c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6c.6 0 1-.4 1-1s-.4-1-1-1C3.6 0 0 3.6 0 8s3.6 8 8 8z"/></g></g></g></symbol><symbol id="nc-form-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M2 9V4h12v5l2 1V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V9H2z" fill-rule="nonzero"/><rect x="0" y="13" width="8" height="3" rx="1.5"/></g></g></g></symbol><symbol id="nc-full-cube" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g transform="translate(.5)" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"><path d="M7.5 6l7-3L7.792.057c-.219-.076-.438-.076-.584 0L.5 3l7 3z"/><path d="M8 7v9l6.533-2.775c.311-.15.467-.375.467-.675V4L8 7z"/><path d="M7 7L0 4v8.55c0 .3.156.6.467.675L7 16V7z"/></g></g></g></symbol><symbol id="nc-save-section" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.682 2.318a4.5 4.5 0 0 0-6.364 0c-.121.121-.214.259-.318.389-.104-.13-.197-.268-.318-.389a4.5 4.5 0 0 0-6.364 6.364L8 15l6.682-6.318a4.5 4.5 0 0 0 0-6.364z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-extensions" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M15 0c.6 0 1 .4 1 1v11c0 .6-.4 1-1 1h-3.6l-2.7 2.7c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3L4.6 13H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14zM4 4a1 1 0 1 0 0 2h8a1 1 0 0 0 0-2H4zm2 4a1 1 0 1 0 0 2h4a1 1 0 0 0 0-2H6z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-failure" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.7 1.3c-.4-.4-1-.4-1.4 0L8 6.6 2.7 1.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4L6.6 8l-5.3 5.3c-.4.4-.4 1 0 1.4.2.2.4.3.7.3.3 0 .5-.1.7-.3L8 9.4l5.3 5.3c.2.2.5.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4L9.4 8l5.3-5.3c.4-.4.4-1 0-1.4z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-check-color" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z" fill="#22AFDA" fill-rule="nonzero"/><path fill="#2B3039" d="M7 11.4L3.6 8 5 6.6l2 2 4-4L12.4 6z"/></g></g></g></symbol><symbol id="nc-success" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M14.3 2.3L5 11.6 1.7 8.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l4 4c.2.2.4.3.7.3.3 0 .5-.1.7-.3l10-10c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-brizy-logo-outline" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1.767 5.424L8.14 9.76l6.093-4.305L7.86 1.21 1.767 5.424z" stroke="currentColor" stroke-width="2"/><path fill="currentColor" d="M0 10.457L2.113 8.84 8.151 13l5.836-4.045L16 10.457l-7.85 5.431z"/></g></g></g></symbol><symbol id="nc-brizy-logo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g fill="currentColor" stroke="none" stroke-width="1" fill-rule="evenodd"><path d="M0 5.43L7.85 0 16 5.43l-7.85 5.547z"/><path d="M0 10.457L2.113 8.84 8.151 13l5.836-4.045L16 10.457l-7.85 5.431z"/></g></g></g></symbol><symbol id="nc-circle-02" viewBox="0 0 16 16"><g><g class="nc-loop_circle-02-16" transform="rotate(359.71071426823204 8 8)"><path opacity="0.4" fill="currentColor" d="M8,16c-4.4111328,0-8-3.5888672-8-8s3.5888672-8,8-8s8,3.5888672,8,8S12.4111328,16,8,16z M8,2C4.6914062,2,2,4.6914062,2,8s2.6914062,6,6,6s6-2.6914062,6-6S11.3085938,2,8,2z"/><path data-color="color-2" d="M16,8h-2c0-3.3085938-2.6914062-6-6-6V0C12.4111328,0,16,3.5888672,16,8z"/></g><script>!function(){function t(t){this.element=t,this.animationId,this.start=null,this.init()}if(!window.requestAnimationFrame){var i=null;window.requestAnimationFrame=function(t,n){var e=(new Date).getTime();i||(i=e);var a=Math.max(0,16-(e-i)),o=window.setTimeout(function(){t(e+a)},a);return i=e+a,o}}t.prototype.init=function(){var t=this;this.animationId=window.requestAnimationFrame(t.triggerAnimation.bind(t))},t.prototype.reset=function(){var t=this;window.cancelAnimationFrame(t.animationId)},t.prototype.triggerAnimation=function(t){var i=this;this.start||(this.start=t);var n=t-this.start;504>n||(this.start=this.start+504),this.element.setAttribute("transform","rotate("+Math.min(n/1.4,360)+" 8 8)");if(document.documentElement.contains(this.element))window.requestAnimationFrame(i.triggerAnimation.bind(i))};var n=document.getElementsByClassName("nc-loop_circle-02-16"),e=[];if(n)for(var a=0;n.length>a;a++)!function(i){e.push(new t(n[i]))}(a);document.addEventListener("visibilitychange",function(){"hidden"==document.visibilityState?e.forEach(function(t){t.reset()}):e.forEach(function(t){t.init()})})}();</script></g></symbol><symbol id="nc-tabs" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="tabs" fill="currentColor"><rect id="Rectangle" x="9" y="2" width="6" height="2" rx="1"/><path d="M2 1h5a1 1 0 0 1 1 1v3h6a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z" id="Rectangle-6"/></g></g></g></g></symbol><symbol id="nc-update" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Update" fill="currentColor" fill-rule="nonzero"><g id="file-upload-86" transform="translate(0 1)"><path id="Shape" transform="matrix(1 0 0 -1 0 9)" d="M7 4v5h2V4h3L8 0 4 4z"/><path d="M15 0h-3v2h2v10H2V2h2V0H1C.4 0 0 .4 0 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1z" id="Shape"/></g></g></g></g></g></symbol><symbol id="nc-background" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="background-v4" fill="currentColor" fill-rule="nonzero"><path d="M15 0c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h14zM2 2.013v11.188c0 .48.32.799.8.799h11.187C11 11 4 4 2 2.013z" id="Combined-Shape" transform="rotate(180 8 8)"/></g></g></g></g></symbol><symbol id="nc-woo" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><path d="M2 2h11.997C15 2 16 3 16 4v8c0 1-1 1.954-2.003 1.954H9.838l.641 1.57-2.82-1.57H2C1 13.954 0 13 0 12V4c0-1 1-2 2-2zm11.848 3.626a1.708 1.708 0 0 0-.352-.039c-.624 0-1.131.325-1.528.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.234.41.579.656 1.04.754.124.026.241.04.352.04.63 0 1.138-.326 1.528-.977.338-.559.508-1.17.508-1.84.006-.508-.104-.93-.313-1.282a1.498 1.498 0 0 0-1.04-.754zm-.274 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.65 1.65 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592 0 .169-.013.332-.045.481-.091.43-.254.748-.495.963zM9.777 5.626a1.708 1.708 0 0 0-.351-.039c-.624 0-1.132.325-1.529.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.235.41.58.656 1.041.754.124.026.24.04.351.04.631 0 1.138-.326 1.529-.977.338-.559.507-1.17.507-1.84 0-.508-.104-.93-.312-1.282a1.512 1.512 0 0 0-1.04-.754zm-.28 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.652 1.652 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592.007.169-.013.332-.045.481-.091.43-.254.748-.495.963zM1.321 5.158c-.182.013-.319.078-.41.201a.554.554 0 0 0-.104.436c.384 2.44.742 4.085 1.073 4.937.13.312.28.462.456.449.273-.02.598-.397.982-1.132.201-.416.513-1.04.936-1.873.351 1.229.833 2.152 1.438 2.77.169.176.344.254.513.241a.42.42 0 0 0 .345-.234.772.772 0 0 0 .078-.43c-.039-.591.02-1.417.182-2.477.17-1.093.378-1.88.631-2.348a.565.565 0 0 0 .065-.313.51.51 0 0 0-.201-.37.565.565 0 0 0-.41-.13.5.5 0 0 0-.43.286c-.403.735-.689 1.925-.858 3.577a12.155 12.155 0 0 1-.618-2.224c-.071-.384-.247-.566-.533-.547-.195.013-.358.143-.488.39L2.544 9.08a37.294 37.294 0 0 1-.657-3.454c-.046-.338-.234-.494-.566-.468z" fill="currentColor" fill-rule="nonzero" stroke="none" stroke-width="1"/></g></g></symbol><symbol id="nc-toggle" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="toggle" fill="currentColor"><path d="M2 14V9h12v5l2 1V6a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1H2z" id="Shape" fill-rule="nonzero"/><rect id="Rectangle" x="0" y="0" width="16" height="3" rx="1"/></g></g></g></g></symbol><symbol id="nc-sticky-menu" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="menu" fill="currentColor"><path d="M16 6H0V1.282C0 .836.046.675.134.512A.909.909 0 0 1 .512.134C.675.046.836 0 1.282 0h13.436c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77V6zm0 2v6.718c0 .446-.046.607-.134.77a.909.909 0 0 1-.378.378c-.163.088-.324.134-.77.134H1.282c-.446 0-.607-.046-.77-.134a.909.909 0 0 1-.378-.378c-.088-.163-.134-.324-.134-.77V8h2v4.718c0 .446.046.607.134.77.087.163.215.291.378.378.163.088.324.134.77.134h9.436c.446 0 .607-.046.77-.134a.909.909 0 0 0 .378-.378c.088-.163.134-.324.134-.77V8h2z" id="Combined-Shape"/></g></g></g></g></symbol><symbol id="nc-img" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="background-v3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15 0H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zM6 4c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm-3 8l2-4 2 2 3-4 3 6H3z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-banner" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="banner" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M13 6l2-5H3c0-.6-.4-1-1-1S1 .4 1 1v14c0 .6.4 1 1 1s1-.4 1-1v-4h12l-2-5z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-down" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape-Copy" fill="currentColor" fill-rule="nonzero" d="M13.05 8.975L12 7.925 8.775 11.15V2h-1.5v9.15L4.05 7.925 3 8.975 8.025 14z"/></g></g></g></symbol><symbol id="nc-up" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="up" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(1 0 0 -1 0 16)" d="M13.05 8.975L12 7.925 8.775 11.15V2h-1.5v9.15L4.05 7.925 3 8.975 8.025 14z"/></g></g></g></symbol><symbol id="nc-woo-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="woo-element" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2 0h11.997C15 0 16 1 16 2v10c0 1-1 1.954-2.003 1.954H9.838l.641 1.57-2.82-1.57H2C1 13.954 0 13 0 12V2c0-1 1-2 2-2zm11.848 4.626a1.708 1.708 0 0 0-.352-.039c-.624 0-1.131.325-1.528.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.234.41.579.656 1.04.754.124.026.241.04.352.04.63 0 1.138-.326 1.528-.977.338-.559.508-1.17.508-1.84.006-.508-.104-.93-.313-1.282a1.498 1.498 0 0 0-1.04-.754zm-.274 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.65 1.65 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592 0 .169-.013.332-.045.481-.091.43-.254.748-.495.963zM9.777 4.626a1.708 1.708 0 0 0-.351-.039c-.624 0-1.132.325-1.529.976a3.446 3.446 0 0 0-.507 1.834c0 .5.104.93.312 1.288.235.41.58.656 1.041.754.124.026.24.04.351.04.631 0 1.138-.326 1.529-.977.338-.559.507-1.17.507-1.84 0-.508-.104-.93-.312-1.282a1.512 1.512 0 0 0-1.04-.754zm-.28 3.519c-.188.169-.364.24-.526.208-.156-.033-.287-.17-.384-.423a1.652 1.652 0 0 1-.117-.592c0-.162.013-.325.045-.475.059-.266.17-.526.345-.774.215-.318.442-.448.677-.403.156.033.286.17.383.423.078.202.117.403.117.592.007.169-.013.332-.045.481-.091.43-.254.748-.495.963zM1.321 4.158c-.182.013-.319.078-.41.201a.554.554 0 0 0-.104.436c.384 2.44.742 4.085 1.073 4.937.13.312.28.462.456.449.273-.02.598-.397.982-1.132.201-.416.513-1.04.936-1.873.351 1.229.833 2.152 1.438 2.77.169.176.344.254.513.241a.42.42 0 0 0 .345-.234.772.772 0 0 0 .078-.43c-.039-.591.02-1.417.182-2.478.17-1.092.378-1.88.631-2.347a.565.565 0 0 0 .065-.313.51.51 0 0 0-.201-.37.565.565 0 0 0-.41-.13.5.5 0 0 0-.43.286c-.403.735-.689 1.925-.858 3.577a12.155 12.155 0 0 1-.618-2.224c-.071-.384-.247-.566-.533-.547-.195.013-.358.143-.488.39L2.544 8.08a37.294 37.294 0 0 1-.657-3.454c-.046-.338-.234-.494-.566-.468z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-block-switch" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="block-switch" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15.716 7.503l-3.428-6A.996.996 0 0 0 11.42 1H4.58a.999.999 0 0 0-.869.504l-3.429 6a.998.998 0 0 0 0 .992l3.43 6a.999.999 0 0 0 .867.503h6.84c.358 0 .69-.192.867-.504l3.43-6a.998.998 0 0 0 0-.991zM8.002 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z" id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 8 8)"/></g></g></g></symbol><symbol id="nc-extensions-2" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="apps" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M10.8 0a1.4 1.4 0 0 0-1.4 1.4v3.69H6.6V1.4a1.4 1.4 0 1 0-2.8 0v3.69H2a1 1 0 0 0-1 1v3.092C1 12.947 4.134 16 8 16s7-3.053 7-6.818V6.09a1 1 0 0 0-1-1h-1.8V1.4A1.4 1.4 0 0 0 10.8 0z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-global" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="global" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm5.9 7H12c-.1-1.5-.4-2.9-.8-4.1 1.4.9 2.4 2.4 2.7 4.1zM8 14c-.6 0-1.8-1.9-2-5h4c-.2 3.1-1.4 5-2 5zM6 7c.2-3.1 1.3-5 2-5s1.8 1.9 2 5H6zM4.9 2.9C4.4 4.1 4.1 5.5 4 7H2.1c.3-1.7 1.3-3.2 2.8-4.1zM2.1 9H4c.1 1.5.4 2.9.8 4.1-1.4-.9-2.4-2.4-2.7-4.1zm9 4.1c.5-1.2.7-2.6.8-4.1h1.9c-.2 1.7-1.2 3.2-2.7 4.1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-arrow-left" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="arrow-left" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)" d="M9.3 1.31l-1.4 1.4 4.3 4.3H0v2h12.2l-4.3 4.3 1.4 1.4 6.7-6.7z"/></g></g></g></symbol><symbol id="nc-blur" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="blur" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2.947 8.842a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 3.369a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-6.737a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm-2.526.42A.422.422 0 0 0 0 6.317c0 .231.19.42.421.42.232 0 .421-.189.421-.42a.422.422 0 0 0-.42-.421zm2.526-3.789a.845.845 0 0 0-.842.842c0 .464.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zM15.58 6.737c.232 0 .421-.19.421-.421a.422.422 0 0 0-.421-.421.422.422 0 0 0-.421.42c0 .232.19.422.42.422zM9.684 3.789a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842.845.845 0 0 0-.842.842c0 .464.38.842.842.842zm0-2.947c.232 0 .421-.19.421-.42A.422.422 0 0 0 9.685 0a.422.422 0 0 0-.422.421c0 .232.19.421.421.421zM.421 9.263A.422.422 0 0 0 0 9.684c0 .232.19.421.421.421.232 0 .421-.19.421-.42a.422.422 0 0 0-.42-.422zm5.895 5.895a.422.422 0 0 0-.421.42c0 .233.19.422.42.422.232 0 .422-.19.422-.421a.422.422 0 0 0-.421-.421zm0-14.316c.231 0 .42-.19.42-.42A.422.422 0 0 0 6.317 0a.422.422 0 0 0-.421.421c0 .232.19.421.42.421zm0 2.947a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842.845.845 0 0 0-.842.842c0 .464.379.842.842.842zm0 4.632c-.7 0-1.263.564-1.263 1.263 0 .7.564 1.263 1.263 1.263s1.263-.564 1.263-1.263-.564-1.263-1.263-1.263zm6.737.421a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 3.369a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-6.737a.845.845 0 0 0-.842.842c0 .463.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0-3.369a.845.845 0 0 0-.842.842c0 .464.378.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm2.526 7.158a.422.422 0 0 0-.421.421c0 .232.19.421.42.421.233 0 .422-.19.422-.42a.422.422 0 0 0-.421-.422zm-5.895 2.948a.845.845 0 0 0-.842.842c0 .463.38.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm0 2.947a.422.422 0 0 0-.42.42c0 .233.189.422.42.422.232 0 .421-.19.421-.421a.422.422 0 0 0-.42-.421zM6.316 5.053c-.7 0-1.263.564-1.263 1.263s.564 1.263 1.263 1.263 1.263-.564 1.263-1.263c0-.7-.564-1.263-1.263-1.263zm0 7.158a.845.845 0 0 0-.842.842c0 .463.379.842.842.842a.845.845 0 0 0 .842-.842.845.845 0 0 0-.842-.842zm3.368-3.79c-.699 0-1.263.564-1.263 1.263 0 .7.564 1.263 1.263 1.263.7 0 1.263-.564 1.263-1.263s-.564-1.263-1.263-1.263zm0-3.368c-.699 0-1.263.564-1.263 1.263s.564 1.263 1.263 1.263c.7 0 1.263-.564 1.263-1.263 0-.7-.564-1.263-1.263-1.263z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 1c-3.35 0-7 .64-7 2 0 1.36 3.65 2 7 2s7-.64 7-2c0-1.36-3.65-2-7-2z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 6.574C5.3 6.574 2.45 6.13 1 5v2.541C1 9.213 4.65 10 8 10s7-.787 7-2.459V5c-1.45 1.131-4.3 1.574-7 1.574z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M8 11.574c-2.7 0-5.55-.443-7-1.574v2.541C1 14.213 4.65 15 8 15s7-.787 7-2.459V10c-1.45 1.131-4.3 1.574-7 1.574z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-bug" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="bug" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M16 4V3h-2v1c0 .6-.4 1-1 1h-1c-.3-.4-.6-.7-1-1V3c0-1.7-1.3-3-3-3S5 1.3 5 3v1c-.4.3-.7.6-1 1H3c-.6 0-1-.4-1-1V3H0v1c0 1.7 1.3 3 3 3h.1c-.1.3-.1.7-.1 1H0v2h3v1c-1.7 0-3 1.3-3 3v1h2v-1c0-.6.4-1 1-1h.4c.8 1.8 2.6 3 4.6 3 2 0 3.8-1.2 4.6-3h.4c.6 0 1 .4 1 1v1h2v-1c0-1.7-1.3-3-3-3v-1h3V8h-3c0-.3 0-.7-.1-1h.1c1.7 0 3-1.3 3-3z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-page" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="page" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M11 16v-4h4z"/><path d="M9 10h6V1c0-.6-.4-1-1-1H2c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h7v-6z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-blocks" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="slider" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect id="Rectangle-3" fill="currentColor" x="1" y="6" width="14" height="9" rx="1"/><rect id="Rectangle-3" fill="currentColor" x="3" y="3" width="10" height="2" rx="1"/><rect id="Rectangle-3" fill="currentColor" x="5" y="1" width="6" height="1" rx=".5"/></g></g></g></symbol><symbol id="nc-pages" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="pages" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M10 4H2c-.6 0-1 .4-1 1v10c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M14 0H4v2h9v11h2V1c0-.6-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-popup" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="popup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8 13H2V5h12v3h2V2a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h7v-2z" id="Shape" fill="currentColor" fill-rule="nonzero"/><rect id="Rectangle" fill="currentColor" fill-rule="nonzero" x="12" y="11" width="4" height="4" rx="1"/></g></g></g></symbol><symbol id="nc-gallery" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="gallery" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M6 9H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M6 16H1a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 6h-5a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 16h-5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic-img" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic-img" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M14 7.707v6.416c0 .509-.491.848-1 .848H.848c-.509 0-.848-.34-.848-.848V2c0-.509.491-1 1-1h7.856A4.486 4.486 0 0 0 14 7.707zM5.142 4.663c-.508 0-.847.339-.847.847 0 .509.339.848.847.848.509 0 .848-.34.848-.848s-.34-.847-.848-.847zm-2.656 6.894h8.363l-2.509-5.2-2.508 3.467L4.159 8.09l-1.673 3.466zM12.625 6.75a3.375 3.375 0 1 1 0-6.75 3.375 3.375 0 0 1 0 6.75zm.08-4.878c-.727 0-1.518.143-1.518.446 0 .304.791.447 1.518.447.726 0 1.518-.143 1.518-.447 0-.303-.792-.446-1.518-.446zm0 1.23c-.586 0-1.204-.095-1.518-.337v.544c0 .359.791.527 1.518.527.726 0 1.518-.168 1.518-.527v-.544c-.314.242-.933.337-1.518.337zm0 1.072c-.586 0-1.204-.095-1.518-.338v.545c0 .358.791.527 1.518.527.726 0 1.518-.169 1.518-.527v-.545c-.314.243-.933.338-1.518.338z" id="Image-dinamic" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-dynamic-text" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="dynamic-text" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M14 7.598V14c0 .5-.5 1-1 1H1c-.5 0-1-.5-1-1V2c0-.5.5-1 1-1h7.956a4.397 4.397 0 0 0-.644 3.062H2.93v2.184h.548l.397-.79a.549.549 0 0 1 .49-.302h1.855v6.16a.546.546 0 0 1-.375.518l-1.27.422v.546H8.963v-.546l-1.27-.422a.546.546 0 0 1-.375-.518v-6.16h1.311A4.418 4.418 0 0 0 14 7.598zm-1.323-.952a3.323 3.323 0 1 1 0-6.646 3.323 3.323 0 0 1 0 6.646zm.079-4.803c-.716 0-1.495.14-1.495.44 0 .299.78.44 1.495.44.715 0 1.494-.141 1.494-.44 0-.3-.779-.44-1.494-.44zm0 1.211c-.577 0-1.185-.093-1.495-.332v.536c0 .353.78.52 1.495.52.715 0 1.494-.167 1.494-.52v-.536c-.31.239-.918.332-1.494.332zm0 1.055c-.577 0-1.185-.093-1.495-.332v.537c0 .352.78.518 1.495.518.715 0 1.494-.166 1.494-.518v-.537c-.31.239-.918.332-1.494.332z" id="Text-dinamic" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-brightness" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="brightness" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M1.87 2.813l.943-.943 1.415 1.415-.943.943z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M11.772 3.285l1.414-1.415.943.943-1.414 1.415z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M11.772 12.715l.943-.943 1.415 1.415-.943.943z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M1.87 13.187l1.415-1.415.943.943-1.415 1.415z"/><circle id="Oval" fill="currentColor" fill-rule="nonzero" cx="8" cy="8" r="4.668"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M-.002 7.333h2v1.334h-2z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7.333-.002h1.334v2H7.333z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M14.001 7.333h2v1.334h-2z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7.333 14.001h1.334v2H7.333z"/></g></g></g></symbol><symbol id="nc-carousel" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="carousel" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1 14h-12a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1H1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/><path d="M27 14H15a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/><path d="M11 15H5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z" id="Combined-Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-contrast" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="contrast" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M13.23 2.654C11.816 1.238 9.97.5 8 .5c-1.97 0-3.815.738-5.23 2.154a7.391 7.391 0 0 0 0 10.461C4.184 14.531 6.03 15.27 8 15.27c1.97 0 3.815-.738 5.23-2.154a7.391 7.391 0 0 0 0-10.461zm-9.6.861C4.8 2.346 6.339 1.731 8 1.731a6.02 6.02 0 0 1 3.877 1.415l-8.615 8.616c-2.031-2.4-1.847-5.97.369-8.247z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-flip-horizontal" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="flip-horizontal" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M7 0h2v16H7z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M5 4v8H0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M11 4v8h5z"/></g></g></g></symbol><symbol id="nc-flip-vertical" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="flip-vertical" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 7h16v2H0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M12 5H4V0z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M12 11H4v5z"/></g></g></g></symbol><symbol id="nc-hue" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="hue" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><circle id="Oval-2" fill="currentColor" fill-rule="nonzero" opacity=".55" cx="5" cy="11" r="5"/><circle id="Oval-2-Copy" fill="currentColor" fill-rule="nonzero" opacity=".75" cx="11" cy="11" r="5"/><circle id="Oval-2" fill="currentColor" fill-rule="nonzero" opacity=".9" cx="8" cy="5" r="5"/></g></g></g></symbol><symbol id="nc-menu-3" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="menu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M15 7H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 2H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/><path d="M15 12H1c-.6 0-1 .4-1 1s.4 1 1 1h14c.6 0 1-.4 1-1s-.4-1-1-1z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-reset" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="reset" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12 9c0 2.206-1.794 4-4 4s-4-1.794-4-4 1.794-4 4-4v3l5-4-5-4v3C4.691 3 2 5.691 2 9s2.691 6 6 6 6-2.691 6-6h-2z" id="Shape" fill="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)"/></g></g></g></symbol><symbol id="nc-saturation" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="saturation" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M12.599 4.744L8 0 3.401 4.744c-2.535 2.496-2.535 6.888 0 9.384A6.536 6.536 0 0 0 8 16a6.536 6.536 0 0 0 4.599-1.872c2.535-2.496 2.535-6.888 0-9.384zM8 14.408c-1.3 0-2.527-.496-3.445-1.408a4.72 4.72 0 0 1-1.43-3.392c0-1.28.504-2.824 1.43-3.728L8 2.48v11.928z" id="Shape" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-close-popup" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="close-popup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><path d="M1.5 1.5l13.038 13.038" id="Line-2" stroke="currentColor" fill-rule="nonzero"/><path d="M1.5 1.5l13.038 13.038" id="Line-2" stroke="currentColor" fill-rule="nonzero" transform="matrix(-1 0 0 1 16 0)"/></g></g></g></symbol><symbol id="nc-width" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="width" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 11 8)" d="M11 6l4 4H7z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" transform="rotate(90 5 8)" d="M5 10L1 6h8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" transform="rotate(90 15 8)" d="M8 7h14v2H8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" transform="rotate(90 1 8)" d="M-6 7H8v2H-6z"/></g></g></g></symbol><symbol id="nc-height" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="height" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M8 3l4 4H4z"/><path id="Shape" fill="currentColor" fill-rule="nonzero" d="M8 13L4 9h8z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 0h16v2H0z"/><path id="Rectangle-path" fill="currentColor" fill-rule="nonzero" d="M0 14h16v2H0z"/></g></g></g></symbol><symbol id="nc-repeat" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="repeat" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Group" transform="translate(0 1)" fill="currentColor" fill-rule="nonzero"><path id="Path" transform="rotate(90 6.5 9)" d="M9.5 11.5h-5v-2l-3 3 3 3v-2h7v-11h-3v2h1z"/><path id="Path" transform="rotate(-90 9.5 5)" d="M12.5 7.5h-5v-2l-3 3 3 3v-2h7v-11h-3v2h1z"/></g></g></g></g></symbol><symbol id="nc-send-to-back" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="send-to-back" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M1 0h9a1 1 0 0 1 1 1v3H5a1 1 0 0 0-1 1v6H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1z" id="Rectangle-12" fill="currentColor" fill-rule="nonzero"/><path d="M7.667 6v1.667h6.666v6.666H7.667V6H7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7.667z" id="Path-2" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-bring-to-top" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g id="bring-top" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect id="Rectangle-12" fill="currentColor" fill-rule="nonzero" x="0" y="0" width="12" height="12" rx="1"/><path d="M13.5 6v1.667h.833v5.666a1 1 0 0 1-1 1H7.667V13.5H6V15a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1.5z" id="Path-2" fill="currentColor" fill-rule="nonzero"/></g></g></g></symbol><symbol id="nc-check-light" viewBox="0 0 16 16"><g><g class="nc-icon-wrapper" fill="currentColor"><g classname="nc-icon-wrapper" fill="currentColor"><path fill="none" stroke="currentColor" strokelinecap="round" strokelinejoin="round" strokemiterlimit="10" d="M13.423 6.999A6.5 6.5 0 1 1 10 2.232" datacap="butt"/><path fill="none" stroke="currentColor" strokelinecap="round" strokelinejoin="round" strokemiterlimit="10" datacap="butt" datacolor="color-2" d="M4 6.5l3 3 8-8"/></g></g></g></symbol><symbol id="nc-pen" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8.1,3.5 L12.5,7.9 L4.7,15.7 C4.5,15.9 4.3,16 4,16 L1,16 C0.4,16 0,15.6 0,15 L0,12 C0,11.7 0.1,11.5 0.3,11.3 L8.1,3.5 Z M15.7,3.3 C16.1,3.7 16.1,4.3 15.7,4.7 L13.9,6.5 L9.5,2.1 L11.3,0.3 C11.7,-0.1 12.3,-0.1 12.7,0.3 L15.7,3.3 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-image" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M5.2,2 C6.04,2 6.6,2.6 6.6,3.5 C6.6,4.4 6.04,5 5.2,5 C4.36,5 3.8,4.4 3.8,3.5 C3.8,2.6 4.36,2 5.2,2 Z M1,14 L3.8,8 L6.6,11 L10.8,5 L15,14 L1,14 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-video" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M11,6.5 C11,6.01538462 10.65,5.69230769 10.125,5.69230769 L8,5.69230769 L8,2.80769231 C8,2.32307692 7.65,2 7.125,2 L3,2 L3,3.84615385 L6,3.84615385 L6,5.69230769 L1.875,5.69230769 C1.35,5.69230769 1,6.01538462 1,6.5 L1,13.1923077 C1,13.6769231 1.35,14 1.875,14 L10.125,14 C10.65,14 11,13.6769231 11,13.1923077 L11,11.5769231 L15,13.1923077 L15,6.5 L11,8.11538462 L11,6.5 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-media-map" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M7,12 C7.55228475,12.5522847 8.44771525,12.5522847 9,12 L9,14 C9,14.5522847 8.55228475,15 8,15 C7.44771525,15 7,14.5522847 7,14 L7,12 Z M8,11 C5.51471863,11 3.5,8.98528137 3.5,6.5 C3.5,4.01471863 5.51471863,2 8,2 C10.4852814,2 12.5,4.01471863 12.5,6.5 C12.5,8.98528137 10.4852814,11 8,11 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-email" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M3.6058448,9.66149939 L3.6058448,14.594495 C3.6058448,15.2992086 4.40786873,15.6012288 4.90913369,15.0978619 L7.2149525,12.3796806 L11.9268431,15.9032489 C12.3278551,16.2052691 12.929373,16.0039223 13.029626,15.5005554 L16.0372158,0.902915364 C16.1374688,0.298875086 15.6362038,-0.103818432 15.0346858,0.0975283271 L0.498002054,5.93658434 C-0.00326290396,6.1379311 -0.103515896,6.84264476 0.297496071,7.24533828 L1.90154394,8.45341883 L6.51318156,6.23860448 C6.91419352,6.03725772 7.2149525,6.54062462 6.91419352,6.74197138 L3.6058448,9.66149939 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-captcha" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M15.094,7.211 L14.555,1 L12.625,2.93 C11.353,1.812 9.71,1.18 8,1.18 C4.14,1.18 1,4.32 1,8.18 C1,12.04 4.14,15.18 8,15.18 C10.491,15.18 12.814,13.839 14.063,11.681 L12.332,10.68 C11.439,12.222 9.779,13.18 8,13.18 C5.243,13.18 3,10.937 3,8.18 C3,5.423 5.243,3.18 8,3.18 C9.179,3.18 10.311,3.603 11.205,4.35 L8.883,6.672 L15.094,7.211 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-uncheck-alt" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M2,1 L14,1 C14.5522847,1 15,1.44771525 15,2 L15,14 C15,14.5522847 14.5522847,15 14,15 L2,15 C1.44771525,15 1,14.5522847 1,14 L1,2 C1,1.44771525 1.44771525,1 2,1 Z M3,3 L3,13 L13,13 L13,3 L3,3 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-check-alt" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M14.3,1.3 C14.7,0.9 15.3,0.9 15.7,1.3 C16.1,1.7 16.1,2.3 15.7,2.7 L8.7,9.7 C8.5,9.9 8.3,10 8,10 C7.7,10 7.5,9.9 7.3,9.7 L5.3,7.7 C4.9,7.3 4.9,6.7 5.3,6.3 C5.7,5.9 6.3,5.9 6.7,6.3 L8,7.6 L14.3,1.3 Z M2,15 C1.4,15 1,14.6 1,14 L1,2 C1,1.4 1.4,1 2,1 L8,1 C8.6,1 9,1.4 9,2 C9,2.6 8.6,3 8,3 L3,3 L3,13 L13,13 L13,9 C13,8.4 13.4,8 14,8 C14.6,8 15,8.4 15,9 L15,14 C15,14.6 14.6,15 14,15 L2,15 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-shift-key" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-opacity="0.92"><path d="M5,15 L11,15 L11,8 L13.7745265,8 L7.99987793,1.50500692 L2.22522934,8 L5,8 L5,15 Z" id="Path" stroke="currentColor" stroke-width="2"></path></g></symbol><symbol id="nc-reverse-columns-bottom" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-reverse-columns-left" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(-1, 1) rotate(90.000000) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-reverse-columns-right" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) rotate(90.000000) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-reverse-columns-top" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" fill-opacity="0.92"><path d="M6,16 L1,16 C0.448,16 0,15.552 0,15 L0,10 C0,9.448 0.448,9 1,9 L6,9 C6.552,9 7,9.448 7,10 L7,15 C7,15.552 6.552,16 6,16 Z M6,7 L1,7 C0.448,7 0,6.552 0,6 L0,1 C0,0.448 0.448,0 1,0 L6,0 C6.552,0 7,0.448 7,1 L7,6 C7,6.552 6.552,7 6,7 Z M2,5 L5,5 L5,2 L2,2 L2,5 Z M13,11 L16,11 L12,16 L8,11 L11,11 L11,1 C11,0.448 11.448,0 12,0 C12.552,0 13,0.448 13,1 L13,11 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(1, -1) translate(-8.000000, -8.000000) "></path></g></symbol><symbol id="nc-minus" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-1014.000000, -625.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(503.000000, 533.000000)"><path d="M519,92 C514.6,92 511,95.6 511,100 C511,104.4 514.6,108 519,108 C523.4,108 527,104.4 527,100 C527,95.6 523.4,92 519,92 Z M523,101 L515,101 L515,99 L523,99 L523,101 Z"></path></g></g></g></symbol><symbol id="nc-facebook" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M-8.8817842e-16,1 L-1.33226763e-15,15 C-2.24568705e-15,15.5522847 0.44771525,16 1,16 L8,16 L8,11 L6,11 L6,8 L8,8 L8,6 C8,3.9 9.2,3 11,3 C11.9,3 12.8,3 13,3 L13,6 L12,6 C11.4,6 11,6.4 11,7 L11,8 L13.6,8 L13,11 L11,11 L11,16 L15,16 C15.5522847,16 16,15.5522847 16,15 L16,1 C16,0.44771525 15.5522847,-1.01453063e-16 15,0 L1,0 C0.44771525,1.01453063e-16 -9.55813795e-16,0.44771525 -8.8817842e-16,1 Z" fill="currentColor"></path></g></symbol><symbol id="nc-footer" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M16,6 L12.7180574,6 L3.2819426,6 L0,6 L3.45280103e-17,1.2819426 C-2.00617683e-17,0.83618323 0.0464128056,0.674540111 0.133566352,0.511577148 C0.220719898,0.348614185 0.348614185,0.220719898 0.511577148,0.133566352 C0.674540111,0.0464128056 0.83618323,3.00926524e-17 1.2819426,-5.17920154e-17 L14.7180574,5.17920154e-17 C15.1638168,-3.00926524e-17 15.3254599,0.0464128056 15.4884229,0.133566352 C15.6513858,0.220719898 15.7792801,0.348614185 15.8664336,0.511577148 C15.9535872,0.674540111 16,0.83618323 16,1.2819426 L16,6 Z M16,8 L16,14.7180574 C16,15.1638168 15.9535872,15.3254599 15.8664336,15.4884229 C15.7792801,15.6513858 15.6513858,15.7792801 15.4884229,15.8664336 C15.3254599,15.9535872 15.1638168,16 14.7180574,16 L1.2819426,16 C0.83618323,16 0.674540111,15.9535872 0.511577148,15.8664336 C0.348614185,15.7792801 0.220719898,15.6513858 0.133566352,15.4884229 C0.0464128056,15.3254599 2.00617683e-17,15.1638168 -3.45280103e-17,14.7180574 L0,8 L2,8 L2,12.7180574 C2,13.1638168 2.04641281,13.3254599 2.13356635,13.4884229 C2.2207199,13.6513858 2.34861419,13.7792801 2.51157715,13.8664336 C2.67454011,13.9535872 2.83618323,14 3.2819426,14 L12.7180574,14 C13.1638168,14 13.3254599,13.9535872 13.4884229,13.8664336 C13.6513858,13.7792801 13.7792801,13.6513858 13.8664336,13.4884229 C13.9535872,13.3254599 14,13.1638168 14,12.7180574 L14,8 L16,8 Z" fill="currentColor" fill-rule="nonzero" transform="translate(8.000000, 8.000000) scale(1, -1) translate(-8.000000, -8.000000)"></path></g></symbol><symbol id="nc-dividers-bottom" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2,11.3428571 L14,8.25714286 L14,3 C14,2.44771525 13.5522847,2 13,2 L3,2 C2.44771525,2 2,2.44771525 2,3 L2,11.3428571 Z M15,16 L1,16 C0.448,16 0,15.4891429 0,14.8571429 L0,1.14285714 C0,0.512 0.448,0 1,0 L15,0 C15.552,0 16,0.512 16,1.14285714 L16,14.8571429 C16,15.4891429 15.552,16 15,16 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-dividers-top" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M2,7.74285714 L2,13 C2,13.5522847 2.44771525,14 3,14 L13,14 C13.5522847,14 14,13.5522847 14,13 L14,4.65714286 L2,7.74285714 Z M15,16 L1,16 C0.448,16 0,15.4891429 0,14.8571429 L0,1.14285714 C0,0.512 0.448,0 1,0 L15,0 C15.552,0 16,0.512 16,1.14285714 L16,14.8571429 C16,15.4891429 15.552,16 15,16 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-plus2" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Keyboard-Shortcuts-PC" transform="translate(-1014.000000, -667.000000)" fill="currentColor" fill-rule="nonzero"><g id="Text-Shortcuts" transform="translate(503.000000, 533.000000)"><path d="M519,134 C514.6,134 511,137.6 511,142 C511,146.4 514.6,150 519,150 C523.4,150 527,146.4 527,142 C527,137.6 523.4,134 519,134 Z M523,143 L520,143 L520,146 L518,146 L518,143 L515,143 L515,141 L518,141 L518,138 L520,138 L520,141 L523,141 L523,143 Z"></path></g></g></g></symbol><symbol id="nc-arrow" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-630.000000, -723.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(463.000000, 505.000000)"><g transform="translate(167.000000, 218.000000)"><path d="M8,16 C12.4,16 16,12.4 16,8 C16,3.6 12.4,0 8,0 C3.6,0 0,3.6 0,8 C0,12.4 3.6,16 8,16 Z M8,4 L8,7 L12,7 L12,9 L8,9 L8,12 L4,8 L8,4 Z"></path></g></g></g></g></symbol><symbol id="nc-shadow" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><path d="M8,0 C3.6,0 0,3.6 0,8 C0,12.4 3.6,16 8,16 C12.4,16 16,12.4 16,8 C16,3.6 12.4,0 8,0 Z M2,8 C2,4.7 4.7,2 8,2 L8,14 C4.7,14 2,11.3 2,8 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-combined-shape" viewBox="0 0 10 10" version="1.1"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><g transform="translate(-1345.000000, -298.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(1079.000000, 82.000000)"><path d="M266.625557,226.012403 C266.372612,226.012349 266.144598,225.859955 266.047808,225.626261 C265.951017,225.392568 266.004505,225.123582 266.183337,224.944696 L269.310775,221.817258 C269.556203,221.580216 269.946323,221.583606 270.187595,221.824877 C270.428867,222.066149 270.432257,222.456269 270.195214,222.701698 L267.067776,225.829135 C266.950502,225.946445 266.791433,226.012368 266.625557,226.012403 Z M266.60429,222.754864 L266.363477,222.193176 C266.327199,222.100604 265.699835,220.423046 266.808824,219.315308 L269.329539,216.794593 C270.441031,215.684978 272.115461,216.311716 272.186141,216.339238 L272.769721,216.589433 L271.817729,217.54205 L271.715775,217.498266 C271.715775,217.498892 270.741265,217.151746 270.214604,217.678407 L267.693889,220.199122 C267.161599,220.731412 267.518127,221.712176 267.52188,221.722184 L267.556282,221.802246 L266.60429,222.754864 Z M269.257608,225.408182 L270.210226,224.45619 L270.290288,224.490592 C270.300296,224.494345 271.281061,224.850873 271.813351,224.318583 L274.334066,221.797868 C274.860726,221.271207 274.51358,220.296698 274.514206,220.296698 L274.470422,220.194743 L275.423039,219.242126 L275.673234,219.825706 C275.700756,219.896386 276.327494,221.573318 275.217879,222.682307 L272.697165,225.203022 C271.589426,226.312012 269.911868,225.684648 269.819922,225.64837 L269.257608,225.408182 Z M272.254945,220.383015 C272.002,220.382961 271.773986,220.230567 271.677196,219.996873 C271.580405,219.76318 271.633893,219.494194 271.812725,219.315308 L274.940163,216.18787 C275.185591,215.950827 275.575711,215.954217 275.816983,216.195489 C276.058255,216.436761 276.061645,216.826881 275.824602,217.072309 L272.697165,220.199747 C272.57989,220.317057 272.420821,220.38298 272.254945,220.383015 Z"></path></g></g></g></symbol><symbol id="nc-connection" viewBox="0 0 16 16" version="1.1"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M8,14 C8.82842712,14 9.5,13.3284271 9.5,12.5 C9.5,11.6715729 8.82842712,11 8,11 C7.17157288,11 6.5,11.6715729 6.5,12.5 C6.5,13.3284271 7.17157288,14 8,14 Z M11.5,10 C10.6,9 9.3,8.5 8,8.5 C6.7,8.5 5.4,9 4.5,10 L3.1,8.6 C4.4,7.2 6.1,6.5 8,6.5 C9.9,6.5 11.6,7.2 12.9,8.6 L11.5,10 Z M8,2 C5,2 2.2,3.1 0,5.2 L1.4,6.6 C3.2,4.9 5.5,4 8,4 C10.5,4 12.8,4.9 14.6,6.7 L16,5.2 C13.8,3.1 11,2 8,2 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-check-circle" viewBox="0 0 16 16" ><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><path d="M8,0 C3.6,0 0,3.6 0,8 C0,12.4 3.6,16 8,16 C12.4,16 16,12.4 16,8 C16,3.6 12.4,0 8,0 Z" fill="currentColor" fill-rule="nonzero"></path><polygon id="Path" fill="#2B3039" points="7 11.4 3.6 8 5 6.6 7 8.6 11 4.6 12.4 6"></polygon></g></symbol><symbol id="nc-reverse" viewBox="0 0 16 16"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><path d="M7.89083375,2.40504334 C5.08794742,2.40504334 2.71715368,4.33790386 2.25534043,7 L4.97379915e-14,6.63483058 C0.648138887,2.90591017 3.96656426,0.19858156 7.89083375,0.19858156 C9.84553833,0.19858156 11.7236551,0.895823483 13.1776809,2.12923562 L15.383868,7.10542736e-15 L16,6.85216706 L8.9001929,6.25752561 L11.554476,3.69582348 C10.5325427,2.87171001 9.23855112,2.40504334 7.89083375,2.40504334 Z M8.10916625,13.5949567 C10.9120526,13.5949567 13.2828463,11.6620961 13.7446596,9 L16,9.36516942 C15.3518611,13.0940898 12.0334357,15.8014184 8.10916625,15.8014184 C6.15446167,15.8014184 4.27634493,15.1041765 2.82231907,13.8707644 L0.616132028,16 L4.97379915e-14,9.14783294 L7.0998071,9.74247439 L4.44552404,12.3041765 C5.46745731,13.12829 6.76144888,13.5949567 8.10916625,13.5949567 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-switch" viewBox="0 0 16 16" version="1.1"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><path d="M11,6 L6,6 L6,3 L11,3 L11,0 L16,4.5 L11,9 L11,6 Z M5,13 L5,16 L-3.01980663e-14,11.5 L5,7 L5,10 L10,10 L10,13 L5,13 Z" fill="currentColor" fill-rule="nonzero"></path></g></symbol><symbol id="nc-triggers" viewBox="0 0 16 16" version="1.1"><g stroke="none" stroke-width="1" fill="currentColor" fill-rule="evenodd"><g transform="translate(-382.000000, -111.000000)" fill="currentColor" fill-rule="nonzero"><g transform="translate(382.000000, 111.000000)"><path d="M13,6 C12.5857864,6 12.25,5.66421356 12.25,5.25 C12.25,4.42157288 11.5784271,3.75 10.75,3.75 C10.3357864,3.75 10,3.41421356 10,3 C10,2.58578644 10.3357864,2.25 10.75,2.25 C11.5784271,2.25 12.25,1.57842712 12.25,0.75 C12.25,0.335786438 12.5857864,7.6089797e-17 13,0 C13.4142136,-7.6089797e-17 13.75,0.335786438 13.75,0.75 C13.75,1.57842712 14.4215729,2.25 15.25,2.25 C15.6642136,2.25 16,2.58578644 16,3 C16,3.41421356 15.6642136,3.75 15.25,3.75 C14.4215729,3.75 13.75,4.42157288 13.75,5.25 C13.75,5.66421356 13.4142136,6 13,6 Z M6,16 C5.44771525,16 5,15.5522847 5,15 C5,12.790861 3.209139,11 1,11 C0.44771525,11 6.76353751e-17,10.5522847 0,10 C-6.76353751e-17,9.44771525 0.44771525,9 1,9 C3.209139,9 5,7.209139 5,5 C5,4.44771525 5.44771525,4 6,4 C6.55228475,4 7,4.44771525 7,5 C7,7.209139 8.790861,9 11,9 C11.5522847,9 12,9.44771525 12,10 C12,10.5522847 11.5522847,11 11,11 C8.790861,11 7,12.790861 7,15 C7,15.5522847 6.55228475,16 6,16 Z"></path></g></g></g></symbol>
|
2 |
+
</svg>
|
3 |
|
4 |
|
5 |
|
public/editor-build/editor/img/{mac-keyboard@1x.png → mac-keyboard1x.png}
RENAMED
File without changes
|
public/editor-build/editor/img/{mac-keyboard@2x.png → mac-keyboard2x.png}
RENAMED
File without changes
|
public/editor-build/editor/img/{pc-keyboard@1x.png → pc-keyboard1x.png}
RENAMED
File without changes
|
public/editor-build/editor/img/{pc-keyboard@2x.png → pc-keyboard2x.png}
RENAMED
File without changes
|
public/editor-build/editor/js/0.worker.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(A){var M={};function e(m){if(M[m])return M[m].exports;var z=M[m]={i:m,l:!1,exports:{}};return A[m].call(z.exports,z,z.exports,e),z.l=!0,z.exports}e.m=A,e.c=M,e.d=function(A,M,m){e.o(A,M)||Object.defineProperty(A,M,{enumerable:!0,get:m})},e.r=function(A){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(A,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(A,"__esModule",{value:!0})},e.t=function(A,M){if(1&M&&(A=e(A)),8&M)return A;if(4&M&&"object"==typeof A&&A&&A.__esModule)return A;var m=Object.create(null);if(e.r(m),Object.defineProperty(m,"default",{enumerable:!0,value:A}),2&M&&"string"!=typeof A)for(var z in A)e.d(m,z,function(M){return A[M]}.bind(null,z));return m},e.n=function(A){var M=A&&A.__esModule?function(){return A.default}:function(){return A};return e.d(M,"a",M),M},e.o=function(A,M){return Object.prototype.hasOwnProperty.call(A,M)},e.p="",e(e.s=3)}([function(A,M,e){function m(A){this.options=A||{locator:{}}}function z(){this.cdata=!1}function g(A,M){M.lineNumber=A.lineNumber,M.columnNumber=A.columnNumber}function I(A){if(A)return"\n@"+(A.systemId||"")+"#[line:"+A.lineNumber+",col:"+A.columnNumber+"]"}function B(A,M,e){return"string"==typeof A?A.substr(M,e):A.length>=M+e||M?new java.lang.String(A,M,e)+"":A}function w(A,M){A.currentElement?A.currentElement.appendChild(M):A.doc.appendChild(M)}m.prototype.parseFromString=function(A,M){var e=this.options,m=new D,g=e.domBuilder||new z,B=e.errorHandler,w=e.locator,n=e.xmlns||{},Y={lt:"<",gt:">",amp:"&",quot:'"',apos:"'"};return w&&g.setDocumentLocator(w),m.errorHandler=function(A,M,e){if(!A){if(M instanceof z)return M;A=M}var m={},g=A instanceof Function;function B(M){var z=A[M];!z&&g&&(z=2==A.length?function(e){A(M,e)}:A),m[M]=z&&function(A){z("[xmldom "+M+"]\t"+A+I(e))}||function(){}}return e=e||{},B("warning"),B("error"),B("fatalError"),m}(B,g,w),m.domBuilder=e.domBuilder||g,/\/x?html?$/.test(M)&&(Y.nbsp=" ",Y.copy="©",n[""]="http://www.w3.org/1999/xhtml"),n.xml=n.xml||"http://www.w3.org/XML/1998/namespace",A?m.parse(A,n,Y):m.errorHandler.error("invalid doc source"),g.doc},z.prototype={startDocument:function(){this.doc=(new n).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(A,M,e,m){var z=this.doc,I=z.createElementNS(A,e||M),B=m.length;w(this,I),this.currentElement=I,this.locator&&g(this.locator,I);for(var D=0;D<B;D++){A=m.getURI(D);var n=m.getValue(D),Y=(e=m.getQName(D),z.createAttributeNS(A,e));this.locator&&g(m.getLocator(D),Y),Y.value=Y.nodeValue=n,I.setAttributeNode(Y)}},endElement:function(A,M,e){var m=this.currentElement;m.tagName;this.currentElement=m.parentNode},startPrefixMapping:function(A,M){},endPrefixMapping:function(A){},processingInstruction:function(A,M){var e=this.doc.createProcessingInstruction(A,M);this.locator&&g(this.locator,e),w(this,e)},ignorableWhitespace:function(A,M,e){},characters:function(A,M,e){if(A=B.apply(this,arguments)){if(this.cdata)var m=this.doc.createCDATASection(A);else m=this.doc.createTextNode(A);this.currentElement?this.currentElement.appendChild(m):/^\s*$/.test(A)&&this.doc.appendChild(m),this.locator&&g(this.locator,m)}},skippedEntity:function(A){},endDocument:function(){this.doc.normalize()},setDocumentLocator:function(A){(this.locator=A)&&(A.lineNumber=0)},comment:function(A,M,e){A=B.apply(this,arguments);var m=this.doc.createComment(A);this.locator&&g(this.locator,m),w(this,m)},startCDATA:function(){this.cdata=!0},endCDATA:function(){this.cdata=!1},startDTD:function(A,M,e){var m=this.doc.implementation;if(m&&m.createDocumentType){var z=m.createDocumentType(A,M,e);this.locator&&g(this.locator,z),w(this,z)}},warning:function(A){console.warn("[xmldom warning]\t"+A,I(this.locator))},error:function(A){console.error("[xmldom error]\t"+A,I(this.locator))},fatalError:function(A){throw console.error("[xmldom fatalError]\t"+A,I(this.locator)),A}},"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,function(A){z.prototype[A]=function(){return null}});var D=e(2).XMLReader,n=M.DOMImplementation=e(1).DOMImplementation;M.XMLSerializer=e(1).XMLSerializer,M.DOMParser=m},function(A,M){function e(A,M){for(var e in A)M[e]=A[e]}function m(A,M){var m=A.prototype;if(Object.create){var z=Object.create(M.prototype);m.__proto__=z}if(!(m instanceof M)){function g(){}g.prototype=M.prototype,e(m,g=new g),A.prototype=m=g}m.constructor!=A&&("function"!=typeof A&&console.error("unknow Class:"+A),m.constructor=A)}var z="http://www.w3.org/1999/xhtml",g={},I=g.ELEMENT_NODE=1,B=g.ATTRIBUTE_NODE=2,w=g.TEXT_NODE=3,D=g.CDATA_SECTION_NODE=4,n=g.ENTITY_REFERENCE_NODE=5,Y=g.ENTITY_NODE=6,y=g.PROCESSING_INSTRUCTION_NODE=7,t=g.COMMENT_NODE=8,E=g.DOCUMENT_NODE=9,c=g.DOCUMENT_TYPE_NODE=10,N=g.DOCUMENT_FRAGMENT_NODE=11,G=g.NOTATION_NODE=12,C={},i={},a=(C.INDEX_SIZE_ERR=(i[1]="Index size error",1),C.DOMSTRING_SIZE_ERR=(i[2]="DOMString size error",2),C.HIERARCHY_REQUEST_ERR=(i[3]="Hierarchy request error",3)),Q=(C.WRONG_DOCUMENT_ERR=(i[4]="Wrong document",4),C.INVALID_CHARACTER_ERR=(i[5]="Invalid character",5),C.NO_DATA_ALLOWED_ERR=(i[6]="No data allowed",6),C.NO_MODIFICATION_ALLOWED_ERR=(i[7]="No modification allowed",7),C.NOT_FOUND_ERR=(i[8]="Not found",8)),l=(C.NOT_SUPPORTED_ERR=(i[9]="Not supported",9),C.INUSE_ATTRIBUTE_ERR=(i[10]="Attribute in use",10));C.INVALID_STATE_ERR=(i[11]="Invalid state",11),C.SYNTAX_ERR=(i[12]="Syntax error",12),C.INVALID_MODIFICATION_ERR=(i[13]="Invalid modification",13),C.NAMESPACE_ERR=(i[14]="Invalid namespace",14),C.INVALID_ACCESS_ERR=(i[15]="Invalid access",15);function f(A,M){if(M instanceof Error)var e=M;else e=this,Error.call(this,i[A]),this.message=i[A],Error.captureStackTrace&&Error.captureStackTrace(this,f);return e.code=A,M&&(this.message=this.message+": "+M),e}function b(){}function Z(A,M){this._node=A,this._refresh=M,k(this)}function k(A){var M=A._node._inc||A._node.ownerDocument._inc;if(A._inc!=M){var m=A._refresh(A._node);eA(A,"length",m.length),e(m,A),A._inc=M}}function P(){}function v(A,M){for(var e=A.length;e--;)if(A[e]===M)return e}function T(A,M,e,m){if(m?M[v(M,m)]=e:M[M.length++]=e,A){e.ownerElement=A;var z=A.ownerDocument;z&&(m&&h(z,A,m),function(A,M,e){A&&A._inc++,"http://www.w3.org/2000/xmlns/"==e.namespaceURI&&(M._nsMap[e.prefix?e.localName:""]=e.value)}(z,A,e))}}function r(A,M,e){var m=v(M,e);if(!(m>=0))throw f(Q,new Error(A.tagName+"@"+e));for(var z=M.length-1;m<z;)M[m]=M[++m];if(M.length=z,A){var g=A.ownerDocument;g&&(h(g,A,e),e.ownerElement=null)}}function u(A){if(this._features={},A)for(var M in A)this._features=A[M]}function O(){}function s(A){return("<"==A?"<":">"==A&&">")||"&"==A&&"&"||'"'==A&&"""||"&#"+A.charCodeAt()+";"}function p(A,M){if(M(A))return!0;if(A=A.firstChild)do{if(p(A,M))return!0}while(A=A.nextSibling)}function o(){}function h(A,M,e,m){A&&A._inc++,"http://www.w3.org/2000/xmlns/"==e.namespaceURI&&delete M._nsMap[e.prefix?e.localName:""]}function x(A,M,e){if(A&&A._inc){A._inc++;var m=M.childNodes;if(e)m[m.length++]=e;else{for(var z=M.firstChild,g=0;z;)m[g++]=z,z=z.nextSibling;m.length=g}}}function L(A,M){var e=M.previousSibling,m=M.nextSibling;return e?e.nextSibling=m:A.firstChild=m,m?m.previousSibling=e:A.lastChild=e,x(A.ownerDocument,A),M}function R(A,M,e){var m=M.parentNode;if(m&&m.removeChild(M),M.nodeType===N){var z=M.firstChild;if(null==z)return M;var g=M.lastChild}else z=g=M;var I=e?e.previousSibling:A.lastChild;z.previousSibling=I,g.nextSibling=e,I?I.nextSibling=z:A.firstChild=z,null==e?A.lastChild=g:e.previousSibling=g;do{z.parentNode=A}while(z!==g&&(z=z.nextSibling));return x(A.ownerDocument||A,A),M.nodeType==N&&(M.firstChild=M.lastChild=null),M}function j(){this._nsMap={}}function J(){}function X(){}function H(){}function d(){}function K(){}function W(){}function U(){}function F(){}function S(){}function V(){}function q(){}function _(){}function $(A,M){var e=[],m=9==this.nodeType?this.documentElement:this,z=m.prefix,g=m.namespaceURI;if(g&&null==z&&null==(z=m.lookupPrefix(g)))var I=[{namespace:g,prefix:null}];return MA(this,e,A,M,I),e.join("")}function AA(A,M,e){var m=A.prefix||"",z=A.namespaceURI;if(!m&&!z)return!1;if("xml"===m&&"http://www.w3.org/XML/1998/namespace"===z||"http://www.w3.org/2000/xmlns/"==z)return!1;for(var g=e.length;g--;){var I=e[g];if(I.prefix==m)return I.namespace!=z}return!0}function MA(A,M,e,m,g){if(m){if(!(A=m(A)))return;if("string"==typeof A)return void M.push(A)}switch(A.nodeType){case I:g||(g=[]);g.length;var Y=A.attributes,G=Y.length,C=A.firstChild,i=A.tagName;e=z===A.namespaceURI||e,M.push("<",i);for(var a=0;a<G;a++){"xmlns"==(Q=Y.item(a)).prefix?g.push({prefix:Q.localName,namespace:Q.value}):"xmlns"==Q.nodeName&&g.push({prefix:"",namespace:Q.value})}for(a=0;a<G;a++){var Q;if(AA(Q=Y.item(a),0,g)){var l=Q.prefix||"",f=Q.namespaceURI,b=l?" xmlns:"+l:" xmlns";M.push(b,'="',f,'"'),g.push({prefix:l,namespace:f})}MA(Q,M,e,m,g)}if(AA(A,0,g)){l=A.prefix||"",f=A.namespaceURI,b=l?" xmlns:"+l:" xmlns";M.push(b,'="',f,'"'),g.push({prefix:l,namespace:f})}if(C||e&&!/^(?:meta|link|img|br|hr|input)$/i.test(i)){if(M.push(">"),e&&/^script$/i.test(i))for(;C;)C.data?M.push(C.data):MA(C,M,e,m,g),C=C.nextSibling;else for(;C;)MA(C,M,e,m,g),C=C.nextSibling;M.push("</",i,">")}else M.push("/>");return;case E:case N:for(C=A.firstChild;C;)MA(C,M,e,m,g),C=C.nextSibling;return;case B:return M.push(" ",A.name,'="',A.value.replace(/[<&"]/g,s),'"');case w:return M.push(A.data.replace(/[<&]/g,s));case D:return M.push("<![CDATA[",A.data,"]]>");case t:return M.push("\x3c!--",A.data,"--\x3e");case c:var Z=A.publicId,k=A.systemId;if(M.push("<!DOCTYPE ",A.name),Z)M.push(' PUBLIC "',Z),k&&"."!=k&&M.push('" "',k),M.push('">');else if(k&&"."!=k)M.push(' SYSTEM "',k,'">');else{var P=A.internalSubset;P&&M.push(" [",P,"]"),M.push(">")}return;case y:return M.push("<?",A.target," ",A.data,"?>");case n:return M.push("&",A.nodeName,";");default:M.push("??",A.nodeName)}}function eA(A,M,e){A[M]=e}f.prototype=Error.prototype,e(C,f),b.prototype={length:0,item:function(A){return this[A]||null},toString:function(A,M){for(var e=[],m=0;m<this.length;m++)MA(this[m],e,A,M);return e.join("")}},Z.prototype.item=function(A){return k(this),this[A]},m(Z,b),P.prototype={length:0,item:b.prototype.item,getNamedItem:function(A){for(var M=this.length;M--;){var e=this[M];if(e.nodeName==A)return e}},setNamedItem:function(A){var M=A.ownerElement;if(M&&M!=this._ownerElement)throw new f(l);var e=this.getNamedItem(A.nodeName);return T(this._ownerElement,this,A,e),e},setNamedItemNS:function(A){var M,e=A.ownerElement;if(e&&e!=this._ownerElement)throw new f(l);return M=this.getNamedItemNS(A.namespaceURI,A.localName),T(this._ownerElement,this,A,M),M},removeNamedItem:function(A){var M=this.getNamedItem(A);return r(this._ownerElement,this,M),M},removeNamedItemNS:function(A,M){var e=this.getNamedItemNS(A,M);return r(this._ownerElement,this,e),e},getNamedItemNS:function(A,M){for(var e=this.length;e--;){var m=this[e];if(m.localName==M&&m.namespaceURI==A)return m}return null}},u.prototype={hasFeature:function(A,M){var e=this._features[A.toLowerCase()];return!(!e||M&&!(M in e))},createDocument:function(A,M,e){var m=new o;if(m.implementation=this,m.childNodes=new b,m.doctype=e,e&&m.appendChild(e),M){var z=m.createElementNS(A,M);m.appendChild(z)}return m},createDocumentType:function(A,M,e){var m=new W;return m.name=A,m.nodeName=A,m.publicId=M,m.systemId=e,m}},O.prototype={firstChild:null,lastChild:null,previousSibling:null,nextSibling:null,attributes:null,parentNode:null,childNodes:null,ownerDocument:null,nodeValue:null,namespaceURI:null,prefix:null,localName:null,insertBefore:function(A,M){return R(this,A,M)},replaceChild:function(A,M){this.insertBefore(A,M),M&&this.removeChild(M)},removeChild:function(A){return L(this,A)},appendChild:function(A){return this.insertBefore(A,null)},hasChildNodes:function(){return null!=this.firstChild},cloneNode:function(A){return function A(M,e,m){var z=new e.constructor;for(var g in e){var w=e[g];"object"!=typeof w&&w!=z[g]&&(z[g]=w)}e.childNodes&&(z.childNodes=new b);z.ownerDocument=M;switch(z.nodeType){case I:var D=e.attributes,n=z.attributes=new P,Y=D.length;n._ownerElement=z;for(var y=0;y<Y;y++)z.setAttributeNode(A(M,D.item(y),!0));break;case B:m=!0}if(m)for(var t=e.firstChild;t;)z.appendChild(A(M,t,m)),t=t.nextSibling;return z}(this.ownerDocument||this,this,A)},normalize:function(){for(var A=this.firstChild;A;){var M=A.nextSibling;M&&M.nodeType==w&&A.nodeType==w?(this.removeChild(M),A.appendData(M.data)):(A.normalize(),A=M)}},isSupported:function(A,M){return this.ownerDocument.implementation.hasFeature(A,M)},hasAttributes:function(){return this.attributes.length>0},lookupPrefix:function(A){for(var M=this;M;){var e=M._nsMap;if(e)for(var m in e)if(e[m]==A)return m;M=M.nodeType==B?M.ownerDocument:M.parentNode}return null},lookupNamespaceURI:function(A){for(var M=this;M;){var e=M._nsMap;if(e&&A in e)return e[A];M=M.nodeType==B?M.ownerDocument:M.parentNode}return null},isDefaultNamespace:function(A){return null==this.lookupPrefix(A)}},e(g,O),e(g,O.prototype),o.prototype={nodeName:"#document",nodeType:E,doctype:null,documentElement:null,_inc:1,insertBefore:function(A,M){if(A.nodeType==N){for(var e=A.firstChild;e;){var m=e.nextSibling;this.insertBefore(e,M),e=m}return A}return null==this.documentElement&&A.nodeType==I&&(this.documentElement=A),R(this,A,M),A.ownerDocument=this,A},removeChild:function(A){return this.documentElement==A&&(this.documentElement=null),L(this,A)},importNode:function(A,M){return function A(M,e,m){var z;switch(e.nodeType){case I:(z=e.cloneNode(!1)).ownerDocument=M;case N:break;case B:m=!0}z||(z=e.cloneNode(!1));z.ownerDocument=M;z.parentNode=null;if(m)for(var g=e.firstChild;g;)z.appendChild(A(M,g,m)),g=g.nextSibling;return z}(this,A,M)},getElementById:function(A){var M=null;return p(this.documentElement,function(e){if(e.nodeType==I&&e.getAttribute("id")==A)return M=e,!0}),M},createElement:function(A){var M=new j;return M.ownerDocument=this,M.nodeName=A,M.tagName=A,M.childNodes=new b,(M.attributes=new P)._ownerElement=M,M},createDocumentFragment:function(){var A=new V;return A.ownerDocument=this,A.childNodes=new b,A},createTextNode:function(A){var M=new H;return M.ownerDocument=this,M.appendData(A),M},createComment:function(A){var M=new d;return M.ownerDocument=this,M.appendData(A),M},createCDATASection:function(A){var M=new K;return M.ownerDocument=this,M.appendData(A),M},createProcessingInstruction:function(A,M){var e=new q;return e.ownerDocument=this,e.tagName=e.target=A,e.nodeValue=e.data=M,e},createAttribute:function(A){var M=new J;return M.ownerDocument=this,M.name=A,M.nodeName=A,M.localName=A,M.specified=!0,M},createEntityReference:function(A){var M=new S;return M.ownerDocument=this,M.nodeName=A,M},createElementNS:function(A,M){var e=new j,m=M.split(":"),z=e.attributes=new P;return e.childNodes=new b,e.ownerDocument=this,e.nodeName=M,e.tagName=M,e.namespaceURI=A,2==m.length?(e.prefix=m[0],e.localName=m[1]):e.localName=M,z._ownerElement=e,e},createAttributeNS:function(A,M){var e=new J,m=M.split(":");return e.ownerDocument=this,e.nodeName=M,e.name=M,e.namespaceURI=A,e.specified=!0,2==m.length?(e.prefix=m[0],e.localName=m[1]):e.localName=M,e}},m(o,O),j.prototype={nodeType:I,hasAttribute:function(A){return null!=this.getAttributeNode(A)},getAttribute:function(A){var M=this.getAttributeNode(A);return M&&M.value||""},getAttributeNode:function(A){return this.attributes.getNamedItem(A)},setAttribute:function(A,M){var e=this.ownerDocument.createAttribute(A);e.value=e.nodeValue=""+M,this.setAttributeNode(e)},removeAttribute:function(A){var M=this.getAttributeNode(A);M&&this.removeAttributeNode(M)},appendChild:function(A){return A.nodeType===N?this.insertBefore(A,null):function(A,M){var e=M.parentNode;if(e){var m=A.lastChild;e.removeChild(M),m=A.lastChild}return m=A.lastChild,M.parentNode=A,M.previousSibling=m,M.nextSibling=null,m?m.nextSibling=M:A.firstChild=M,A.lastChild=M,x(A.ownerDocument,A,M),M}(this,A)},setAttributeNode:function(A){return this.attributes.setNamedItem(A)},setAttributeNodeNS:function(A){return this.attributes.setNamedItemNS(A)},removeAttributeNode:function(A){return this.attributes.removeNamedItem(A.nodeName)},removeAttributeNS:function(A,M){var e=this.getAttributeNodeNS(A,M);e&&this.removeAttributeNode(e)},hasAttributeNS:function(A,M){return null!=this.getAttributeNodeNS(A,M)},getAttributeNS:function(A,M){var e=this.getAttributeNodeNS(A,M);return e&&e.value||""},setAttributeNS:function(A,M,e){var m=this.ownerDocument.createAttributeNS(A,M);m.value=m.nodeValue=""+e,this.setAttributeNode(m)},getAttributeNodeNS:function(A,M){return this.attributes.getNamedItemNS(A,M)},getElementsByTagName:function(A){return new Z(this,function(M){var e=[];return p(M,function(m){m===M||m.nodeType!=I||"*"!==A&&m.tagName!=A||e.push(m)}),e})},getElementsByTagNameNS:function(A,M){return new Z(this,function(e){var m=[];return p(e,function(z){z===e||z.nodeType!==I||"*"!==A&&z.namespaceURI!==A||"*"!==M&&z.localName!=M||m.push(z)}),m})}},o.prototype.getElementsByTagName=j.prototype.getElementsByTagName,o.prototype.getElementsByTagNameNS=j.prototype.getElementsByTagNameNS,m(j,O),J.prototype.nodeType=B,m(J,O),X.prototype={data:"",substringData:function(A,M){return this.data.substring(A,A+M)},appendData:function(A){A=this.data+A,this.nodeValue=this.data=A,this.length=A.length},insertData:function(A,M){this.replaceData(A,0,M)},appendChild:function(A){throw new Error(i[a])},deleteData:function(A,M){this.replaceData(A,M,"")},replaceData:function(A,M,e){e=this.data.substring(0,A)+e+this.data.substring(A+M),this.nodeValue=this.data=e,this.length=e.length}},m(X,O),H.prototype={nodeName:"#text",nodeType:w,splitText:function(A){var M=this.data,e=M.substring(A);M=M.substring(0,A),this.data=this.nodeValue=M,this.length=M.length;var m=this.ownerDocument.createTextNode(e);return this.parentNode&&this.parentNode.insertBefore(m,this.nextSibling),m}},m(H,X),d.prototype={nodeName:"#comment",nodeType:t},m(d,X),K.prototype={nodeName:"#cdata-section",nodeType:D},m(K,X),W.prototype.nodeType=c,m(W,O),U.prototype.nodeType=G,m(U,O),F.prototype.nodeType=Y,m(F,O),S.prototype.nodeType=n,m(S,O),V.prototype.nodeName="#document-fragment",V.prototype.nodeType=N,m(V,O),q.prototype.nodeType=y,m(q,O),_.prototype.serializeToString=function(A,M,e){return $.call(A,M,e)},O.prototype.toString=$;try{if(Object.defineProperty){Object.defineProperty(Z.prototype,"length",{get:function(){return k(this),this.$$length}}),Object.defineProperty(O.prototype,"textContent",{get:function(){return function A(M){switch(M.nodeType){case I:case N:var e=[];for(M=M.firstChild;M;)7!==M.nodeType&&8!==M.nodeType&&e.push(A(M)),M=M.nextSibling;return e.join("");default:return M.nodeValue}}(this)},set:function(A){switch(this.nodeType){case I:case N:for(;this.firstChild;)this.removeChild(this.firstChild);(A||String(A))&&this.appendChild(this.ownerDocument.createTextNode(A));break;default:this.data=A,this.value=A,this.nodeValue=A}}}),eA=function(A,M,e){A["$$"+M]=e}}}catch(A){}M.DOMImplementation=u,M.XMLSerializer=_},function(A,M){var e=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,m=new RegExp("[\\-\\.0-9"+e.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),z=new RegExp("^"+e.source+m.source+"*(?::"+e.source+m.source+"*)?$"),g=0,I=1,B=2,w=3,D=4,n=5,Y=6,y=7;function t(){}function E(A,M){return M.lineNumber=A.lineNumber,M.columnNumber=A.columnNumber,M}function c(A,M,e,m,z,t){for(var E,c=++M,N=g;;){var G=A.charAt(c);switch(G){case"=":if(N===I)E=A.slice(M,c),N=w;else{if(N!==B)throw new Error("attribute equal must after attrName");N=w}break;case"'":case'"':if(N===w||N===I){if(N===I&&(t.warning('attribute value must after "="'),E=A.slice(M,c)),M=c+1,!((c=A.indexOf(G,M))>0))throw new Error("attribute value no end '"+G+"' match");C=A.slice(M,c).replace(/&#?\w+;/g,z),e.add(E,C,M-1),N=n}else{if(N!=D)throw new Error('attribute value must after "="');C=A.slice(M,c).replace(/&#?\w+;/g,z),e.add(E,C,M),t.warning('attribute "'+E+'" missed start quot('+G+")!!"),M=c+1,N=n}break;case"/":switch(N){case g:e.setTagName(A.slice(M,c));case n:case Y:case y:N=y,e.closed=!0;case D:case I:case B:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return t.error("unexpected end of input"),N==g&&e.setTagName(A.slice(M,c)),c;case">":switch(N){case g:e.setTagName(A.slice(M,c));case n:case Y:case y:break;case D:case I:"/"===(C=A.slice(M,c)).slice(-1)&&(e.closed=!0,C=C.slice(0,-1));case B:N===B&&(C=E),N==D?(t.warning('attribute "'+C+'" missed quot(")!!'),e.add(E,C.replace(/&#?\w+;/g,z),M)):("http://www.w3.org/1999/xhtml"===m[""]&&C.match(/^(?:disabled|checked|selected)$/i)||t.warning('attribute "'+C+'" missed value!! "'+C+'" instead!!'),e.add(C,C,M));break;case w:throw new Error("attribute value missed!!")}return c;case"":G=" ";default:if(G<=" ")switch(N){case g:e.setTagName(A.slice(M,c)),N=Y;break;case I:E=A.slice(M,c),N=B;break;case D:var C=A.slice(M,c).replace(/&#?\w+;/g,z);t.warning('attribute "'+C+'" missed quot(")!!'),e.add(E,C,M);case n:N=Y}else switch(N){case B:e.tagName;"http://www.w3.org/1999/xhtml"===m[""]&&E.match(/^(?:disabled|checked|selected)$/i)||t.warning('attribute "'+E+'" missed value!! "'+E+'" instead2!!'),e.add(E,E,M),M=c,N=I;break;case n:t.warning('attribute space is required"'+E+'"!!');case Y:N=I,M=c;break;case w:N=D,M=c;break;case y:throw new Error("elements closed character '/' and '>' must be connected to")}}c++}}function N(A,M,e){for(var m=A.tagName,z=null,g=A.length;g--;){var I=A[g],B=I.qName,w=I.value;if((y=B.indexOf(":"))>0)var D=I.prefix=B.slice(0,y),n=B.slice(y+1),Y="xmlns"===D&&n;else n=B,D=null,Y="xmlns"===B&&"";I.localName=n,!1!==Y&&(null==z&&(z={},i(e,e={})),e[Y]=z[Y]=w,I.uri="http://www.w3.org/2000/xmlns/",M.startPrefixMapping(Y,w))}for(g=A.length;g--;){(D=(I=A[g]).prefix)&&("xml"===D&&(I.uri="http://www.w3.org/XML/1998/namespace"),"xmlns"!==D&&(I.uri=e[D||""]))}var y;(y=m.indexOf(":"))>0?(D=A.prefix=m.slice(0,y),n=A.localName=m.slice(y+1)):(D=null,n=A.localName=m);var t=A.uri=e[D||""];if(M.startElement(t,n,m,A),!A.closed)return A.currentNSMap=e,A.localNSMap=z,!0;if(M.endElement(t,n,m),z)for(D in z)M.endPrefixMapping(D)}function G(A,M,e,m,z){if(/^(?:script|textarea)$/i.test(e)){var g=A.indexOf("</"+e+">",M),I=A.substring(M+1,g);if(/[&<]/.test(I))return/^script$/i.test(e)?(z.characters(I,0,I.length),g):(I=I.replace(/&#?\w+;/g,m),z.characters(I,0,I.length),g)}return M+1}function C(A,M,e,m){var z=m[e];return null==z&&((z=A.lastIndexOf("</"+e+">"))<M&&(z=A.lastIndexOf("</"+e)),m[e]=z),z<M}function i(A,M){for(var e in A)M[e]=A[e]}function a(A,M,e,m){switch(A.charAt(M+2)){case"-":return"-"===A.charAt(M+3)?(z=A.indexOf("--\x3e",M+4))>M?(e.comment(A,M+4,z-M-4),z+3):(m.error("Unclosed comment"),-1):-1;default:if("CDATA["==A.substr(M+3,6)){var z=A.indexOf("]]>",M+9);return e.startCDATA(),e.characters(A,M+9,z-M-9),e.endCDATA(),z+3}var g=function(A,M){var e,m=[],z=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;z.lastIndex=M,z.exec(A);for(;e=z.exec(A);)if(m.push(e),e[1])return m}(A,M),I=g.length;if(I>1&&/!doctype/i.test(g[0][0])){var B=g[1][0],w=I>3&&/^public$/i.test(g[2][0])&&g[3][0],D=I>4&&g[4][0],n=g[I-1];return e.startDTD(B,w&&w.replace(/^(['"])(.*?)\1$/,"$2"),D&&D.replace(/^(['"])(.*?)\1$/,"$2")),e.endDTD(),n.index+n[0].length}}return-1}function Q(A,M,e){var m=A.indexOf("?>",M);if(m){var z=A.substring(M,m).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);if(z){z[0].length;return e.processingInstruction(z[1],z[2]),m+2}return-1}return-1}function l(A){}function f(A,M){return A.__proto__=M,A}t.prototype={parse:function(A,M,e){var m=this.domBuilder;m.startDocument(),i(M,M={}),function(A,M,e,m,z){function g(A){var M=A.slice(1,-1);return M in e?e[M]:"#"===M.charAt(0)?function(A){if(A>65535){var M=55296+((A-=65536)>>10),e=56320+(1023&A);return String.fromCharCode(M,e)}return String.fromCharCode(A)}(parseInt(M.substr(1).replace("x","0x"))):(z.error("entity not found:"+A),A)}function I(M){if(M>i){var e=A.substring(i,M).replace(/&#?\w+;/g,g);Y&&B(i),m.characters(e,0,M-i),i=M}}function B(M,e){for(;M>=D&&(e=n.exec(A));)w=e.index,D=w+e[0].length,Y.lineNumber++;Y.columnNumber=M-w+1}var w=0,D=0,n=/.*(?:\r\n?|\n)|.*$/g,Y=m.locator,y=[{currentNSMap:M}],t={},i=0;for(;;){try{var f=A.indexOf("<",i);if(f<0){if(!A.substr(i).match(/^\s*$/)){var b=m.doc,Z=b.createTextNode(A.substr(i));b.appendChild(Z),m.currentElement=Z}return}switch(f>i&&I(f),A.charAt(f+1)){case"/":var k=A.indexOf(">",f+3),P=A.substring(f+2,k),v=y.pop();k<0?(P=A.substring(f+2).replace(/[\s<].*/,""),z.error("end tag name: "+P+" is not complete:"+v.tagName),k=f+1+P.length):P.match(/\s</)&&(P=P.replace(/[\s<].*/,""),z.error("end tag name: "+P+" maybe not complete"),k=f+1+P.length);var T=v.localNSMap,r=v.tagName==P,u=r||v.tagName&&v.tagName.toLowerCase()==P.toLowerCase();if(u){if(m.endElement(v.uri,v.localName,P),T)for(var O in T)m.endPrefixMapping(O);r||z.fatalError("end tag name: "+P+" is not match the current start tagName:"+v.tagName)}else y.push(v);k++;break;case"?":Y&&B(f),k=Q(A,f,m);break;case"!":Y&&B(f),k=a(A,f,m,z);break;default:Y&&B(f);var s=new l,p=y[y.length-1].currentNSMap,k=c(A,f,s,p,g,z),o=s.length;if(!s.closed&&C(A,k,s.tagName,t)&&(s.closed=!0,e.nbsp||z.warning("unclosed xml attribute")),Y&&o){for(var h=E(Y,{}),x=0;x<o;x++){var L=s[x];B(L.offset),L.locator=E(Y,{})}m.locator=h,N(s,m,p)&&y.push(s),m.locator=Y}else N(s,m,p)&&y.push(s);"http://www.w3.org/1999/xhtml"!==s.uri||s.closed?k++:k=G(A,k,s.tagName,g,m)}}catch(A){z.error("element parse error: "+A),k=-1}k>i?i=k:I(Math.max(f,i)+1)}}(A,M,e,m,this.errorHandler),m.endDocument()}},l.prototype={setTagName:function(A){if(!z.test(A))throw new Error("invalid tagName:"+A);this.tagName=A},add:function(A,M,e){if(!z.test(A))throw new Error("invalid attribute:"+A);this[this.length++]={qName:A,value:M,offset:e}},length:0,getLocalName:function(A){return this[A].localName},getLocator:function(A){return this[A].locator},getQName:function(A){return this[A].qName},getURI:function(A){return this[A].uri},getValue:function(A){return this[A].value}},f({},f.prototype)instanceof f||(f=function(A,M){function e(){}for(M in e.prototype=M,e=new e,A)e[M]=A[M];return e}),M.XMLReader=t},function(A,M,e){"use strict";function m(A,M){return function(A){if(Array.isArray(A))return A}(A)||function(A,M){var e=[],m=!0,z=!1,g=void 0;try{for(var I,B=A[Symbol.iterator]();!(m=(I=B.next()).done)&&(e.push(I.value),!M||e.length!==M);m=!0);}catch(A){z=!0,g=A}finally{try{m||null==B.return||B.return()}finally{if(z)throw g}}return e}(A,M)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function z(A,M,e){return M in A?Object.defineProperty(A,M,{value:e,enumerable:!0,configurable:!0,writable:!0}):A[M]=e,A}function g(A){for(var M=1;M<arguments.length;M++){var e=null!=arguments[M]?arguments[M]:{},m=Object.keys(e);"function"==typeof Object.getOwnPropertySymbols&&(m=m.concat(Object.getOwnPropertySymbols(e).filter(function(A){return Object.getOwnPropertyDescriptor(e,A).enumerable}))),m.forEach(function(M){z(A,M,e[M])})}return A}e.r(M);var I=e(0);const B={ELEMENT_NODE:1};function w(A,M){const e=[];return c(A,A=>{A.nodeType===B.ELEMENT_NODE&&E(A,M)&&e.push(A)}),e}function D(A,M){const e=[];return c(A,A=>{A.nodeType===B.ELEMENT_NODE&&A.tagName===M&&e.push(A)}),e}function n(A,M,e){const m=[];return c(A,A=>{if(A.nodeType===B.ELEMENT_NODE){const z=Array.from(A.attributes);let g=!1;z.forEach(z=>{g||z.nodeName!==M||void 0!==e&&z.nodeValue!==e||(m.push(A),g=!0)})}}),m}function Y(A){A.parentNode.removeChild(A)}function y(A,M,e){const z=/\s*(.+?):\s*(.+?);/g;let g=A.getAttribute("style");if(";"!==g[g.length-1]&&(g+=";"),"object"==typeof M){const e=Object.entries(M).map(A=>{let M=m(A,2);return`${M[0]}: ${M[1]};`}).join(" ");return void A.setAttribute("style",`${g} ${e}`)}if(M&&e&&"string"==typeof M)return void A.setAttribute("style",`${g} ${M}: ${e};`);const I={};{let A,M,e;for(;A=z.exec(g);){var B=m(A,3);M=B[1],e=B[2],I[M]=e}}return M?I[M]:I}function t(A,M){do{if(A.nodeType===B.ELEMENT_NODE&&E(A,M))return A}while(A=A.parentNode);return null}function E(A,M){const e=A.getAttribute("class");return new RegExp(`\\b${M}\\b`).test(e)}function c(A,M){if(M(A))return!0;if(A=A.firstChild)do{if(c(A,M))return!0}while(A=A.nextSibling)}const N="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAr4AAAGLCAMAAAAWBmHEAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAB4UExURb8uTe1RQfqPQq4pSfBUROw3Q/Z9QvFhQvRuQe9FQ3IWL980S5cjQO5YY9AzTloSG9haa/NlXOxLVvepQDMFEsRSa7Q1J00uINRGOYkiKvh9XmdJG70/YNRxN4RpJ41DIvyNYqaFKbFeLMedMuGdOvHr6+LBvLSMjtn5pfIAANxaSURBVHja7JztcuMqEob9m3JV7w/FOiwzYuIqSfd/hyv6g+4G5Dg5c04yqQWEEEKyoR9eWsp4LtP3CVCSiZKZfdlm3WaoUXdPhVTzZHcmvZU9ioP0fIBZumO6Z2Pt9mT2E8AsIwQ6Xl1yxU+Jmqbp8j24bccTg9oB2DrzhPlZnK3J544yTiXMVJhTrbSn5weZvc5t7m5J7+OraoUHvTIrM7B2hoBuYTbFSSsszprc3HdFG2SUn+ewTod6t+nNbWrmzuU7kOuUF7SflmMuz5VkGJKs3BoZ7aQxdVDPyRbTbGots47mMcBJb27vZr5TMl8QKKWyE/VNYFEGPpqarrqDaaZ1CUdpbuSXaqAd0ZOl7oxDT/xkhMVe3or8iejLx34f9VVk/TAZA3A2TwbdasFifyggkPnhdGlXvbV0zl4euzAPhfSNi4zQq+C7yVNBLpMO0ly+d+NEePVt0bU7GRwnvrORycpbp74TOPVt4bXGMdpiIdZbTp2gt/OpEnz5Jtja8XDCUQdCAWZDAdssARObyMRDB9V5BrPzHpysntL5t4JF1wIMdWP9LbMPJ6HJZT6W/Zja2XgKkj8RJuiQMvI7QedlTA9u1Lp60wjktsmfrL6Nz+CXrtNgVKXYlxLZGAgDNnnBI3j3oPeAPyE0nvTsCJ6pMIA3CdmaNwhbDbaT/URmH0DduBDOOtPAl357lrSmlQv/cPVt4Z1OmVVrzMxsCVwga5uIPFRmHwnr/O+Sq1+GDiBVCZ4T9HGWWUndFno5WWB5RJTZp1X4HWF6VzWcPh7KdvkWDu8Tk1mMkRReq74kuCDLcMEihVS24BD9FME9nTMIL+2T/e49xbzXneCcdBzMyfQb2fwnw+WPF97Ju7nnQakVdKGaFzr5hdE7rK8UQAtgVBjm9Ihg7qv0H8wy1I3WxyD+N8Of6vuCAvzM5E8eXqNDtjhbFDAEk7uwfBy7hbZ2t/DR8o77g6EYNEEHsHPuTa+tILeXePfqi5J8+bMdB4CG4TG7WjQU14XSi67AGx6wlwS4pQFN+HN8Li76MwZZ01qveQZkqB6EA9i58jC3kxU6v+HRyMH/8f3N7xyecxpEQ6L6C1jKzhM07FIhVN9XgTSb1cil08+lRbRrN7pmMRcvXp2fwJhUOCaHbhoosXd441h9s45WdA5GOaLsy+Mb4g1DDPAVtff0US2WJFF2VF0Mg7aJaKMstoqci5IRb6GAc0WArm6dt7AtqU9Ni6Vs6ePRz4ouZEqQy3evAFOfSm1MpqNYiEn7n3lm05jw6PEu2/G07NaxNc2lWENwBjlLsb3ZoMp/1jP4ws2F8NWe2sbqG7o+crmYiqQE4U1iSDQhGjdlPC77mOKRF2KDih/B3DsDy7DqrfPv4tmr8VKRpRhZdmUXEzNbGiXGNskULbgmnbsyChHhjcx50lHMtRjBYWxH1w94oxzRNIkGZ39dVzFqaaZOwHiCb7x1IX65d73Qsysz3o0hWoDADrxsEr9owkSaFVF8s1HfIrmIzbWyEzxTT3J3ftImW31yaU2ZADbyS2KrHENi1UW8K7lINUKbQiLhjf59mgybUI0EkxBHJVjBFDz3bT3CtnfCAbr62fbm0J1w7Hvpd5fT/vKE8kqAL+Q7QKu9NBubkTUYF9GJifcELoosVZONEeBi9yMLzCohfF0UrJJLgVFTF8Ft3JQvaMLZuUp0c6hE55Kr/HJWII6cQamEnNR1IFlOWML1RjtOLkapKHWCuRm30UIeLVkB9rWGHc3Qqm+LoPXrIvSHxZpx0NLeNUC4PCe9X0SAxy96iVxKwXdR18QoWpOhWowUK+qOEpNRoEWAkZyryqMibCBucXawj4TXAGwld7F3TicKXb7iIs6DZKbIJJcNqJEwanBNEGNIdTZHXJNwiCI5WcquJ7kFKsK2riN+T9gb+Ld93KK1ZXs9paHzcErvZ/ML+q53ah4QQlXf0RA5eBPaSSJTnKtw1Ui6exUJxvKyXJU6Q2HqVTSptI7V97Eup3EdpkxbRowNwlyovRH1rT1NddGJpMMpRpHexAxHFWPxGlqMY8vfvrqwkXA+uMafHp5d1xjeuHyovg/oPcKnOr3z1P7rumDQDRB13reKgZaJKjy5FkW7LLoYVX1bXR0S6FT0t4VkFNxLcAW4OhCmK/X5UxDOUMEW/S2loEcG2uwmfS+9DUhMb0FurL/D+Abca+H3zbtc3kfvh/RXftnx+/51jntWs8rbDhAPfPHqZImMlNi4WMqxWtaAcEWtJXipgJvuPLj/fKAPySUdsShwzmVjPyLbvL6VkPcQWZSYD1NsYtYpDWWA7HHuqDPDHNYW3zXECE9Ga6lYU8B75eBOdReGTn3D7Y0A74Ct/hZi+vsAO79hsm4v0YsJ1xs3xrFk1R6Rl0eyWKkTjnNFl0IRN8OtCdflE0NeqgORF/qOBKtSaxaQaB7uKrEGXJJgeaTNXENlHjolyh8Z1PYe3z107aK7h72Pmkor6T3GwW/T0KYSL5P78Vv7zuHnf//zs+cXnpNacE7rhwmmOTD378uCgnuE0XChatAjdSQNzjHmTCTHlIvBSiB0id1q8QPUa0X2+sncNgxnJjhn2pVD7YLpC5GNnUWaMcflhjpPPkTE4cB1CceIF6zEY5ehQ9lwJM9tQfHdQt+wXg+xg9rDu+uTYA5Rm1ADvXWIh/qCRc27Dj83DD979+H095+eXKjoCsDup6JP/a60/UcOne6i7LLcGqWgnGUkR2a2KC/aLSG9tE/V0iK+xMXSqe9HEX7t0qCKa3F7qL/VgWAnIvFXzllVWDyJyNjmknPPM2uwsIyjUvktUswglxKPaVbl9FyK77Bq6SjHDmDllG9irGTqILvXGKS/ctbLLzsPoP+IwIH6a+Pw6yn5BYOZvicw8utUGd6lva3jq68bNMho2PFBgCUgw7hDknPMJ4F8SqO+yw/MXyTfJTlACcFxbNKw8vTi157g7BmuQiyi24ZklBhXG+I4svjS5D5qC7c4ZLxSRZn+A3gpVGiDwTcYHmNzkUW6awM/mrcYwWmzC8fxpVJXdnGgvZ3+xrF0Tg5QaH4J7H1hGCv4qfrC6H0Zssv8loUkxGbKx2oJBjcytMht4kIas5szc/uD2CV0B9AKX6+tgErlCc2v58B2OiyfcW88CA+vfPHsfQjtIM/XmOSIyc08MHWGM8OQeQQHqKmoKr5xM/i2/sFTARZP75o7Yq3nES6T5cup7GZC+/IMnLgSYvM+u1+uN79hnyZqYGuObV/EmVj2yXsWzROg8Et/oXjZQcQXYghE8MmgZCO+1VS9PtUlWDIW3QPdF8x3priUSrRrfkujZqPod4Oz5h5Vf/kD7jWWpMIr7NIu5QeBZ26sZXZ/c9YlCveQ7QgOQ9Xc7RrCi8X3AyE/prcLF0OH9x3+svj+9N6DKvaOp/d0FJc1CdKqsRbDsC6We2q0bcKzliy/03VbyOndtwXob+oBALZNHAfmFkcs9NxmT27MD7yGan3WtKUSrJq7j8T3A7EDvdNmJ9O8v1dNzss9L/mO3/NOB6q+y7hvqWFYkBWgdaTqsEm5E8GKr/qqWwxhp8K7mK3J//nubXrReaiwnPkOnfegFO7rfoR13QnfgWLWh7o5rUtzkqGlBkfJew38ymEtLQCmbQXYd3EdBF+rvDAWXrMsOpc3jsitAnbPBQrW3heSXBTg12V/fWmAe22U04rnKwqoy6Sw2MJizlp91k+5I8ioundRX9ThivKdeZanzzeCeBPqVPnBssqbzzTY/s1tJ3z398Hrb7XtOcSg9OY38eX4JL43g/y+zugWHGSS+sI0DbxW5PNa8J2cqwwCLeswTO6pj2fIPAFAWHf7Z2JVX4IXn90GA5NVfkVmbiNL3jMCW+x/rxTgkT61HdASwRWmV6+flUFFcal7zRbPbQPwYo/baSIAVx8iM70UedZJX0rqw80OQbQuhPGtLMP5IUJx7cJT1NYZop+M5Ae5afY2PHEeNN5OnYe/bq33AAZfmNIhv4TvfIgxqXAp0dvasO8LNlrSUUeaupRmwM7DVJoSvuUq9EpSYrd4Oe4NheJ0ZIjw0SRsG5Jbigjwy76/hNEYWb/hFtl4FB28bGpZgknfSOOK2C734uvuCNDLa0HotWXWC6iebnX3tT9qg8Vfb3LH7d64v1nKRPFSOabO3Btf4sab7X/MzokwT3K3yKkU5RC3sfyuTnxvPXA3k/Awa8O7IJsLvpnrczVm/9FOfW9nj26/br36UkRpPOSX8T2yFV2J4ulu27oWvd1L6WAzrcdOTq77VjwO0twN2xYdPq4/DuZp+h9x57bcqo5FUar0RqmCHxwZ2pGJ5QL+/w9b674EODun6uxuACFA3KShqQkmRFIOEL2S3FLQc+oB7xRWdFwTLltdJknPuY7kArzTQYdQph4gVRVZkV+WNG6k61jltwJcKsBFJbE0ynsk+RzLP2Hr5x4WoSOS7qP0F/EQcsJodrjhKNpr3SwO3mQRqcg1i6ySY5+EWKEmGZQuew/8rrzeCsKXh7mQpHtijtdVKZ1WtsN+y/bQCdX3Lb7jO/FN7itpZB7AAhO+KKbVpZJlxRgYCwzuyCWvvMEy3gBT3GGDHpAGKb8S+eIexDsAvjX1MDyWqr6xei0K1gVve7fJXarW7oQDFNNEhZa8/JbWOpiFUHmDGMFKw/Mp86d6+e90j2MUDyhnURzASrBaH7EO5iH4MjGWHLVJKjLmEvUCzcx6O2PgYEs7eV139CZH7l6FlT7Vc5mZVq4zMDtJXEtxf2yIdf6jPftfjM+db8VX+QVuqw1AcUXzcMOGf+nrHPiFx9qzPahI3nERAM8+AzCFtai7DPINocf08k76Dcit+6zzVXMH1N0BzENdBrGlnyrC+AjnIL4zB1go5hpYc0vac2vt8qxoFKTlaQwTS89/Gdg/wFyE4MIqTOdFZ1iKwfvwCJMmC8vAKS1LaoE5RzB3mKlE5kFzUB2DNfvJaWdq9HebnPg26ktDu6dkGs8TcSizrJfIvJfyGusIkR45Obyf833iHEh95bVFOu+12tWBmLzDo7QaQ8nE26+6Fh5OrIpvX0e5bYPxRuYW5/BBBgg0O4eB1tT5VW7Y4H08wldS91/LF5mwNsPmiOFMFIPoCsBF5dcLVXGFLlzU8ckAIzXlSfbTEP7fdUVH7qleFafCpYgB8gCriyh44QWbH8sDV6shmJKNc2TwvF1Ijj6RQ/ljocYUpDTtt9ybiTQbxNE0h+OzT9mgS0Pn/+rx+H7ZWLuTt87MPbB5gDk0DxXTKseIL7+iUI0CPBleTX1p5UAqK/iyDldLDGlvpL56kP5Ozx0WwRdv3ZaFWofKbSR8484dWTFoGTG8hUuz4RYjrL7Cg8DLuAA/pIXl/0AwA0z0Punc8BS5m7XpKJ7g1gljnyQPXL5ohHMNAUzRURP38Mls9N5gl+CXfUxidLXc/ri3zn9wMv2um9yH0khkh4G5RD/AhN7JXgxogoHwO5jWSnlPTxEGXCPmQdRXnreR+tJB6l63BR+YrWgeelVffnT2RU3WWtU3Nloxa9jSW6ifMTR2H8W6JwUPAlcFz8h93700oCkO/6R3mx/hdb1MincRAnIhboXegtdLFy4WgiC2tij5nqwwNlyan2mvxUcIf0OqqbtXGARYEY7OcGhJ7vfUkXNA9zBMv8UXoepZGMU7g/rekTrA98Gx6n3x4URNFiu+sIUkwyTw3BfMAsU2FOhb33jfupt1wd+IUX0JWvK+8Kwsxmmihw41jIklIiXKg720aNklHglcKeJSDGMFpDTMWCN+gFbgs5DglVHn3lFr6TzKJvOi+HJudoYqws5D2EDsAq5MM1Fc2EYVzaKk7CJOMbEozu+xjTz6MCaP3h5DHqiYEGHVmYjHE7ZbyrVYeSYivu4bYYe3fbfv7+//HO/c7HurdEfF0Tu8sQzeATitxN03cKz3ZX3U2Mbqi8DX2f4BK/FnC0jxWFGD4YebB2rs5v6Y+AF7ZPXt47J+fa6owTV13OBxS91f+FqXOHGOa/bNiRZQ0Qi8WHSJJUmKdtc9NWzZfWYcXxBkjLw8qAd2D4z+QXp3+9NNMh0ZgmIGws7z6V3EwzSYZDiVoherLQ42QDifSIkJ4iTZJvNKm4zRjTLZsUu5PnH2e4Q1hkfgdhHjWk5YgASybSZOJnFSNA/DVeS3b/DN3/6573fe4StsmfrCrRv8QgH+HY3qhn/1dMUHtXhzB+orjxBw5Q1vxq6IZ/UHQPNt5a1oU6ko8DZpP5BlwN8lK7QgvCvd6sYJ3hVZv5DemJphlqGw+kJhpUJD4jItZ/C2pqEwrsUwcmrJ0noC4X7BP7IRVitomoni3HqIp3O/bzuG1q5cvBPWZOSmCLGSbdFIsvYsKknJ5bYtEXZdSSQJJ03EC3X9LLLL+5p1lSiQVKko5NdoJ+/Oon2YTn8x3j09m8g59KefdaTHDUz0Tf+vhPzjJfc53luzvaSRFcd/OWPvRw78ogO+ohPBPUQM69CSqx3Cm6jMgoKbyht4ny7Ijl5ClwFSxrKSdmQPBh4tdj5q7GxXGelFzWf157pEg7M6ZyQnvcxUHL1CLk5mqdfUSDVdtMmRWc3r6HFUZnWDZj8z87g7wnF+dqti2pEf7cEZ8bh/UX09eWtSzQYhv/8k/PuPxf/w7zzatYf0gq292ttXWKmHLuGYduSq+qZUAnKb7J7NCW86MQ0QqXzAHBICFGemNjO1rXVwzCp/HmALThKZLjdbeR+R9ZiZCUZiM55h/oX8anVNDmrXQ1ZBHpWQ5oAzOHq5jOdg7sH1yB42oC44ZVG/4lXnEI0GsO27I+UVTo5vO3gLMbL4Ku3KsX2O7YBn/9tPcffvPiPYG8Hyfg48p4kkuGAYpKUKEAYYomUQlQkNwduGU+eQsUcwmFyE2JFTOSq1F+19tVrrmXSq6kSWu2Zmt2S3MY2+rmgbkOnUEOEaw8m5lXDwdjXoLBPUUFEWSWbVMRwEMWCMoab1kSMyg/lPC8LZnX9QeIPbEKeFLF7YJQ1nuoxEd+IcWErfa6/8gKGgKcIwNTfRXxvsrr/+hvxVTqN3LQLO+r8JquhSr9KLyhtiCpGz7DTTrIRKhdiJ7niivcjws0KqZjc7ggGkFwS5VUudntH6A7Y/ALyT5Pzic3BCXOjUrPLBIoi5boSrHJ30jr4SByOXwA0lMDwlpH12Kk+iFQZwbJALjvcDuVYmcNCAraMkoDOg1jIUt6HVCjm/bmBgaED3u77t2PkSqj19Z0E275XZRkZ7TmyK3aosba3nYHvU6M3zq/QSvBMLL+muXVfQC05BHC8oDiOM+mPwYtlm6UnARMiyDkIu4lMYJxgQ46ew9/yZ0N93DctyKDbCue2puiHJWTg+tCoO5o6IHnf2oSTzv8U5YKUuKERBMQ5OI4PT1cYiWJEQqzC3rxraRgqzHFG2210GNg+9dw/A74/4OuxUG4e9n8DFjkH52zRN4RK4nZz5hvavMfsp9l52yTiA9Hp0tXJSpoTU1ckIeQMlh8VWxyTsZlKtIhFAuAgRxDHRQ6hQO55ZgxvQnr9U2X9AMO4mUzxDT8eGcxEpLnYXhwGrL19EyXiFrL+jTlF5R8YYmO2gfkOQupIg6CoenpuQWoaCj4VdMsj0E72lpaPeIcIhQUzoaAmPy9x69e3crjrZeyDvq+5yoLu3n/C1hKSXrn0noTUwe1XWRn2ZY5+2131c+/b7OS3BE9leIxjgZXYdwZAHeJE0BaUd05jSKMwmV5BYwqMjlxmgdjmT6Or0RRi/XiS6aHyRYA7/VkcHoxu4l1UmGEh8c+b2IrMPlp6HMTO0DmQYsDYnRniEOg5odaTASFKR3GRyOqIs8IySdNmSJPzYPpOl1HKAyIg9lcqI8/4Vhe0Cx8WlXIUSgj1S5Uq4idQBPLSQaC37T/gKWQLbte8HJ509Qyt+oHdJ+csMhDEfUXW3N777xj04dvvY77U3hhgUYBqaPBuhhjO6nRST9ETt2HDL2itASC9qx7pH6usU9u+ymy2SX156XyrAWNleYiFO+8IarOT6rMDWaaRqTvnFfCEvhV7/rlFQsA5bYVLKT8nuumpR6bgsFwV+/EqIHQ+EIB8C6wqUyye8s7jhMbAKdXgiRc9FdxEKEyz1gYDxKA3bO3q3QXWXoOsbSXVVwNRYLLKKsai0s8n+I5FXkWODHrtoABvBAXxvINkNQXOySx96wWPHuTGO1lay+BK8I7LKbW1mHSPNzaJv1esaww4jT27+qwTLofLLDs76+8rUUWORHcHZQvAQXFdRiUdP8DiSrSKGIdIZO2OHw7Z06WupweeycT7X+U1J3hYi6iPVFBfQ4LrZmJZVyOW9yV6L1pOK7bJd6ki1A5dD8YngSpXCVR0nYA1nHvFbNfKl3K9zeov7LNO1l3ZfVVW/lTeoLWjmKe2g2yrcvaPfpnXdrXfqy6ahj873VmZDEH45Sz8gA+ESP7h1oiwraSR9EYCxDKWgx5LN8TK0WawuAoKDYzYbs39Xe331yL7mZGXYbLAYiKzs4oUSs3ShIzuJ0174KqSOIpMwgqReFgw+U3ep/qD72Ja16uzndqkgrUt3uYBwpA9IOtaldesLpBhrcgw/Lxc9BEPcQZVZQHX/S8uZLreqY2EUSAEOpMDVPuEoP1TdN1bs93/D1p63BOTmVN8GDPKAjWFp6ZMyZHYfD9orJxHYvD9D/piAO2dlfwbHNkcMta+F2rwcCPjpDcusC5eePvE4VQg1qMfTs15kYJHvr8lpvsgOPNyA5uXowPIlemes/otnF89SOLpaEa5sgEvL8Bq7nCvRbAjKX9HDI9tEZCVc8i1peTfd8HG/Lp88nhLPd19btCHgRZuJz3xPmpHPqFLO31JrKT0XOPGze/H8QENVJAiaAeF8Q9MCBlvWcAN/9fXYrtjkP6H8vtGfayHp7wh5vnuF3015hIAvD++4hjdr+KLI+gGM4xZfsuEflQVg/+tJO2/l9aTigvY1vpxAK4DftbkXRiUT2H33L/MkMuwQ98o2sp3TywMx9+pg2YfLvWBeuGnfIKM7bwvRG+i8w6XBslymIDoS+/KV9pecpjsFBxFdAXASao1ZdzdlIMtZGb3Z4p+VUiK2oZCSfEq+xXwHPrUID/6o+Bi16Yg+ykMNDQQyfW86DVziBPHJZwmcyAuJkmDJHD6eT1Bk5vbaZMXm27NZMm/L45mJvmaSr3Dqwb4QY+EGNOaHc/a4ZnxZvnJxpKZkq+enMuaIer49M+tZvUA776zXs+FaBQXDt2rH8/1/vzPCz/e31fjW5/0Dk/W6nEpFoPauv+g3Fwon+94d+/p3KWvm94N+XOF6bRwdhN5lo8YLK+YiXxSkEsS+eLlYOxEhjoG3xaW/c6pU+2KZAGKegOHoqdU5mU6T6lWB9Szv7atP+je294bPTPzpiuxfWuHKwQiegjYtZN+ArQ4tJl8GmCKENPBsACxntr6u16+QkW22K/wOK+ILGIf3K4SHjOEzUM4AJp9II96e1+fXE4gMVD/8B+AHPlHMD8Y1XK+ALryP7BzkaqqB4dia6Uy/E2+Ayt+T/3eOU026WXNyN364fK0+Ovl/Lq2r4iMmN+ZbDTlkcjdyb4YX5Cv8zmDffAtLEONuWqKLw4kBNGQA76xrZXNvInjyFrnNWKX72XwiX3Vv/bwWEt8VavdVI8Gh0FGkSsAHU/D2pS8doqMX7inEVHAeVlFCon1mur6exBT8WiHyRaxuYM3tSphdUZiPjCTaF5p/tCDBDe/Y8Cfxm8OUk4LiC6FE8aWdaa+N61PehVLNjsadjj1eJ7NKmIcUNLTWvbMyMDuj77px+dnfDt4P32tD7VKvbXtpXhDehrklgsMijZSBq31siruBm9Kz6c6+jQyu3PJCIMVUyTEpz5QCmFKFlSPFUXDgPZKJ9+bej98/UoiIFCTocGw5qHoFwszupwsRUbKDZmCheOMIEYwa4AsF+UWIXRXfJ9gSG32yLz4sMv3iPACT2JcEz9ck3/At4NWML943fIM62y4p3lmg61bGVgO2aPXX+nUl11r0t7V272ojCbukfFQp+LVv08SRV/T7IrlXzJvFK+6lOWT9bvK16crEYOCyiaLqqJySKyRZie8SLHADugQw3Aq5t3sqlXozHVfL3r66hwRg+xyuMSnFZMdCh+X0+52EP0W+zC7NenYEKNVw49uwB9AEVgQRw0AXMHaFfheak/ENZN/86BO6X3mLww/Xx5WjhW8VeaKAoPjG/PqH4Ms7O4Bx1VAf8JTFM7zOyiLTQzWXj/86fLSqKE69kx9xcPBm9W7M7wwLzgsmB4a30TMUdatzPJFvopVya/OdwL0jwEQwsyXyZej2XKbb/U9mNrjAa1GCPh8fAnjpKHmt7JYEt0pwkBhB1ZgZVoT1JJnv8Axi/F0IXyAVSP7iflWGDP4aIdT2veJIB
|
|