ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library) - Version 1.3.1

Version Description

Wordpress 4.9+

Download this release

Release Info

Developer ataurr
Plugin Icon wp plugin ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library)
Version 1.3.1
Comparing to
See all releases

Version 1.3.1

Files changed (59) hide show
  1. autoloader.php +62 -0
  2. core.php +374 -0
  3. core/build-apis.php +38 -0
  4. core/build-inline-scripts.php +88 -0
  5. core/build-modules.php +83 -0
  6. core/build-widgets.php +107 -0
  7. core/handler-api.php +37 -0
  8. core/handler-widget.php +53 -0
  9. core/hook-activation.php +30 -0
  10. elementskit-lite.php +32 -0
  11. handler.php +250 -0
  12. helpers/notice.php +185 -0
  13. helpers/utils.php +217 -0
  14. libs/framework/assets/css/admin-global.css +84 -0
  15. libs/framework/assets/css/admin-style-ems-dev.css +172 -0
  16. libs/framework/assets/css/admin-style.css +140 -0
  17. libs/framework/assets/css/bootstrap/bootstrap.css +4216 -0
  18. libs/framework/assets/css/bootstrap/utilities/_align.css +17 -0
  19. libs/framework/assets/css/bootstrap/utilities/_visibility.css +5 -0
  20. libs/framework/assets/css/customizer.css +623 -0
  21. libs/framework/assets/css/framework.css +1 -0
  22. libs/framework/assets/css/frontend-style.css +0 -0
  23. libs/framework/assets/images/banner_dashboard.png +0 -0
  24. libs/framework/assets/images/elements_kit_logo_black.svg +1 -0
  25. libs/framework/assets/images/favicon.png +0 -0
  26. libs/framework/assets/images/favicon.svg +13 -0
  27. libs/framework/assets/images/go-pro-feature.png +0 -0
  28. libs/framework/assets/images/icon.svg +1 -0
  29. libs/framework/assets/images/loader-krasi.gif +0 -0
  30. libs/framework/assets/js/admin-script.js +60 -0
  31. libs/framework/assets/js/core-ui.min.js +5 -0
  32. libs/framework/assets/js/customizer-preview.js +22 -0
  33. libs/framework/assets/js/customizer.js +607 -0
  34. libs/framework/assets/js/frontend-script.js +3 -0
  35. libs/framework/attr.php +114 -0
  36. libs/framework/classes/ajax.php +26 -0
  37. libs/framework/classes/customizer.php +118 -0
  38. libs/framework/classes/utils.php +94 -0
  39. libs/framework/controls/settings/image-choose.php +20 -0
  40. libs/framework/controls/settings/switch.php +24 -0
  41. libs/framework/controls/settings/text.php +13 -0
  42. libs/framework/pages/help.php +0 -0
  43. libs/framework/pages/settings-dashboard.php +12 -0
  44. libs/framework/pages/settings-elements.php +40 -0
  45. libs/framework/pages/settings-init.php +86 -0
  46. libs/framework/pages/settings-modules.php +40 -0
  47. libs/framework/pages/settings-userdata.php +63 -0
  48. libs/pro-label/init.php +27 -0
  49. libs/pro-label/notice.php +59 -0
  50. libs/pro-label/view-modal.php +13 -0
  51. libs/pro-label/view-notice.php +4 -0
  52. license.txt +674 -0
  53. modules/controls/ajax-select2-api.php +196 -0
  54. modules/controls/ajax-select2.php +90 -0
  55. modules/controls/assets/css/ekiticons.css +3642 -0
  56. modules/controls/assets/css/imagechoose.css +73 -0
  57. modules/controls/assets/css/widgetarea-editor.css +43 -0
  58. modules/controls/assets/css/widgetarea-inspactor.css +47 -0
  59. modules/controls/assets/fonts/elementskit.svg +344 -0
autoloader.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * ElementsKit autoloader.
8
+ * Handles dynamically loading classes only when needed.
9
+ *
10
+ * @since 1.0.0
11
+ */
12
+ if(!class_exists('\ElementsKit\Autoloader')):
13
+
14
+ class Autoloader {
15
+
16
+ /**
17
+ * Run autoloader.
18
+ * Register a function as `__autoload()` implementation.
19
+ *
20
+ * @since 1.0.0
21
+ * @access public
22
+ */
23
+ public static function run() {
24
+ spl_autoload_register( [ __CLASS__, 'autoload' ] );
25
+ }
26
+
27
+ /**
28
+ * Autoload.
29
+ * For a given class, check if it exist and load it.
30
+ *
31
+ * @since 1.0.0
32
+ * @access private
33
+ * @param string $class Class name.
34
+ */
35
+ private static function autoload( $class_name ) {
36
+
37
+ // If the class being requested does not start with our prefix
38
+ // we know it's not one in our project.
39
+ if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) {
40
+ return;
41
+ }
42
+
43
+ $file_name = strtolower(
44
+ preg_replace(
45
+ [ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
46
+ [ '', '$1-$2', '-', DIRECTORY_SEPARATOR],
47
+ $class_name
48
+ )
49
+ );
50
+
51
+ // Compile our path from the corosponding location.
52
+ $file = trailingslashit(plugin_dir_path( __FILE__ )) . $file_name . '.php';
53
+
54
+ // If a file is found.
55
+ if ( file_exists( $file ) ) {
56
+ // Then load it up!
57
+ require_once( $file );
58
+ }
59
+ }
60
+ }
61
+
62
+ endif;
core.php ADDED
@@ -0,0 +1,374 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ if(!class_exists('ElementsKit')):
6
+ final class ElementsKit{
7
+ /**
8
+ * Plugin Version
9
+ *
10
+ * @since 1.0.0
11
+ * @var string The plugin version.
12
+ */
13
+ const VERSION = '1.3.1';
14
+
15
+ /**
16
+ * Package type
17
+ *
18
+ * @since 1.1.0
19
+ * @var string The plugin purchase type [pro/ free].
20
+ */
21
+ const PACKAGE_TYPE = 'free';
22
+
23
+ /**
24
+ * Minimum Elementor Version
25
+ *
26
+ * @since 1.0.0
27
+ * @var string Minimum Elementor version required to run the plugin.
28
+ */
29
+
30
+ const MINIMUM_ELEMENTOR_VERSION = '2.4.0';
31
+
32
+ /**
33
+ * Minimum PHP Version
34
+ *
35
+ * @since 1.0.0
36
+ * @var string Minimum PHP version required to run the plugin.
37
+ */
38
+ const MINIMUM_PHP_VERSION = '5.6';
39
+
40
+ /**
41
+ * API url
42
+ *
43
+ * @since 1.0.0
44
+ * @var string plugins's root url.
45
+ */
46
+ static function api_url(){
47
+ return 'https://api.wpmet.com/public/';
48
+ }
49
+
50
+ /**
51
+ * Plugin url
52
+ *
53
+ * @since 1.0.0
54
+ * @var string plugins's root url.
55
+ */
56
+ static function plugin_url(){
57
+ return trailingslashit(plugin_dir_url( __FILE__ ));
58
+ }
59
+
60
+ /**
61
+ * Plugin dir
62
+ *
63
+ * @since 1.0.0
64
+ * @var string plugins's root directory.
65
+ */
66
+ static function plugin_dir(){
67
+ return trailingslashit(plugin_dir_path( __FILE__ ));
68
+ }
69
+
70
+ /**
71
+ * Plugin's widget directory.
72
+ *
73
+ * @since 1.0.0
74
+ * @var string widget's root directory.
75
+ */
76
+ static function widget_dir(){
77
+ return self::plugin_dir() . 'widgets/';
78
+ }
79
+
80
+ /**
81
+ * Plugin's widget url.
82
+ *
83
+ * @since 1.0.0
84
+ * @var string widget's root url.
85
+ */
86
+ static function widget_url(){
87
+ return self::plugin_url() . 'widgets/';
88
+ }
89
+
90
+
91
+ /**
92
+ * Plugin's widget image choose url.
93
+ *
94
+ * @since 1.0.0
95
+ * @var string widget image choose's root url.
96
+ */
97
+
98
+ /**
99
+ * Plugin's module directory.
100
+ *
101
+ * @since 1.0.0
102
+ * @var string module's root directory.
103
+ */
104
+ static function module_dir(){
105
+ return self::plugin_dir() . 'modules/';
106
+ }
107
+
108
+ /**
109
+ * Plugin's module url.
110
+ *
111
+ * @since 1.0.0
112
+ * @var string module's root url.
113
+ */
114
+ static function module_url(){
115
+ return self::plugin_url() . 'modules/';
116
+ }
117
+
118
+
119
+ /**
120
+ * Plugin's lib directory.
121
+ *
122
+ * @since 1.0.0
123
+ * @var string lib's root directory.
124
+ */
125
+ static function lib_dir(){
126
+ return self::plugin_dir() . 'libs/';
127
+ }
128
+
129
+ /**
130
+ * Plugin's lib url.
131
+ *
132
+ * @since 1.0.0
133
+ * @var string lib's root url.
134
+ */
135
+ static function lib_url(){
136
+ return self::plugin_url() . 'libs/';
137
+ }
138
+
139
+ /**
140
+ * Constructor
141
+ *
142
+ * @since 1.0.0
143
+ * @access public
144
+ */
145
+ public function __construct() {
146
+ // Load translation
147
+ add_action( 'init', array( $this, 'i18n' ) );
148
+ // Init Plugin
149
+ $this->init();
150
+ }
151
+
152
+ /**
153
+ * Load Textdomain
154
+ *
155
+ * Load plugin localization files.
156
+ * Fired by `init` action hook.
157
+ *
158
+ * @since 1.0.0
159
+ * @access public
160
+ */
161
+ public function i18n() {
162
+ load_plugin_textdomain( 'elementskit', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
163
+ }
164
+
165
+ /**
166
+ * Initialize the plugin
167
+ *
168
+ * Checks for basic plugin requirements, if one check fail don't continue,
169
+ * if all check have passed include the plugin class.
170
+ *
171
+ * Fired by `plugins_loaded` action hook.
172
+ *
173
+ * @since 1.0.0
174
+ * @access public
175
+ */
176
+ public function init() {
177
+ // Load the main static helper class.
178
+ require_once self::plugin_dir() . 'helpers/notice.php';
179
+ require_once self::plugin_dir() . 'helpers/utils.php';
180
+
181
+ // Check if Elementor installed and activated.
182
+ if ( ! did_action( 'elementor/loaded' ) ) {
183
+ add_action( 'admin_notices', array( $this, 'missing_elementor' ) );
184
+ return;
185
+ }
186
+ // Check for required Elementor version.
187
+ if ( ! version_compare( ELEMENTOR_VERSION, self::MINIMUM_ELEMENTOR_VERSION, '>=' ) ) {
188
+ add_action( 'admin_notices', array( $this, 'failed_elementor_version' ) );
189
+ return;
190
+ }
191
+ // Check for required PHP version.
192
+ if ( version_compare( PHP_VERSION, self::MINIMUM_PHP_VERSION, '<' ) ) {
193
+ add_action( 'admin_notices', array( $this, 'failed_php_version' ) );
194
+ return;
195
+ }
196
+ // Once we get here, We have passed all validation checks so we can safely include our plugin.
197
+
198
+ // Register ElementsKit widget category
199
+ add_action('elementor/init', [$this, 'elementor_widget_category']);
200
+
201
+ add_action( 'elementor/init', function(){
202
+ // Load the Handler class, it's the core class of ElementsKit.
203
+ require_once self::plugin_dir() . 'handler.php';
204
+ });
205
+
206
+ }
207
+
208
+ /**
209
+ * Admin notice
210
+ *
211
+ * Warning when the site doesn't have required Elementor.
212
+ *
213
+ * @since 1.0.0
214
+ * @access public
215
+ */
216
+ public function missing_elementor() {
217
+ if ( isset( $_GET['activate'] ) ) {
218
+ unset( $_GET['activate'] );
219
+ }
220
+
221
+ if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
222
+ $btn['label'] = esc_html__('Activate Elementor', 'elementskit');
223
+ $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
224
+ } else {
225
+ $btn['label'] = esc_html__('Install Elementor', 'elementskit');
226
+ $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
227
+ }
228
+
229
+ \ElementsKit\Notice::push(
230
+ [
231
+ 'id' => 'unsupported-elementor-version',
232
+ 'type' => 'error',
233
+ 'dismissible' => true,
234
+ 'btn' => $btn,
235
+ 'message' => sprintf( esc_html__( 'ElementsKit requires Elementor version %1$s+, which is currently NOT RUNNING.', 'elementskit' ), self::MINIMUM_ELEMENTOR_VERSION ),
236
+ ]
237
+ );
238
+ }
239
+
240
+
241
+ /**
242
+ * Admin notice
243
+ *
244
+ * Warning when the site doesn't have a minimum required PHP version.
245
+ *
246
+ * @since 1.0.0
247
+ * @access public
248
+ */
249
+ public function admin_notice_minimum_php_version() {
250
+ \ElementsKit\Notice::push(
251
+ [
252
+ 'id' => 'unsupported-php-version',
253
+ 'type' => 'error',
254
+ 'dismissible' => true,
255
+ 'message' => sprintf( esc_html__( 'ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on this server.', 'elementskit' ), self::MINIMUM_PHP_VERSION ),
256
+ ]
257
+ );
258
+ }
259
+
260
+ /**
261
+ * Add category.
262
+ *
263
+ * Register custom widget category in Elementor's editor
264
+ *
265
+ * @since 1.0.0
266
+ * @access public
267
+ */
268
+ public function elementor_widget_category($widgets_manager){
269
+ \Elementor\Plugin::$instance->elements_manager->add_category(
270
+ 'elementskit',
271
+ [
272
+ 'title' =>esc_html__( 'ElementsKit', 'elementskit' ),
273
+ 'icon' => 'fa fa-plug',
274
+ ],
275
+ 1
276
+ );
277
+ \Elementor\Plugin::$instance->elements_manager->add_category(
278
+ 'elementskit_headerfooter',
279
+ [
280
+ 'title' =>esc_html__( 'ElementsKit Header Footer', 'elementskit' ),
281
+ 'icon' => 'fa fa-plug',
282
+ ],
283
+ 1
284
+ );
285
+ }
286
+
287
+
288
+ static function default_widgets($package = null){
289
+ $package = ($package != null) ? $package : self::PACKAGE_TYPE;
290
+
291
+ $default_list = [
292
+ 'image-accordion',
293
+ 'accordion',
294
+ 'button',
295
+ 'heading',
296
+ 'blog-posts',
297
+ 'icon-box',
298
+ 'image-box',
299
+ 'countdown-timer',
300
+ 'client-logo',
301
+ 'faq',
302
+ 'funfact',
303
+ 'image-comparison',
304
+ 'testimonial',
305
+ 'pricing',
306
+ 'team',
307
+ 'social',
308
+ 'progressbar',
309
+ 'category-list',
310
+ 'page-list',
311
+ 'post-grid',
312
+ 'post-list',
313
+ 'post-tab',
314
+ 'nav-menu',
315
+ 'mail-chimp',
316
+ 'header-info',
317
+ 'piechart',
318
+ 'header-search',
319
+ 'header-offcanvas',
320
+ 'tab',
321
+ 'contact-form7',
322
+ 'video',
323
+ 'business-hours',
324
+ 'drop-caps',
325
+ 'social-share',
326
+ 'caldera-forms',
327
+ 'dual-button',
328
+ ];
329
+
330
+ $optional_list = [
331
+ 'advanced-accordion',
332
+ 'advanced-tab',
333
+ 'hotspot',
334
+ 'motion-text',
335
+ 'twitter-feed',
336
+ 'facebook-feed',
337
+ 'instagram-feed',
338
+ 'gallery',
339
+ 'chart',
340
+ 'woo-category-list',
341
+ 'woo-mini-cart',
342
+ 'woo-product-carousel',
343
+ 'woo-product-list',
344
+ 'table',
345
+ 'timeline',
346
+ 'creative-button',
347
+ ];
348
+
349
+ if(class_exists('\ElementsKit_Widget_Config')){
350
+ return (array_merge($default_list, \ElementsKit_Widget_Config::instance()->get_widgets()));
351
+ }else{
352
+ return ($package == 'pro') ? array_merge($default_list, $optional_list) : $default_list;
353
+ }
354
+ }
355
+
356
+ static function default_modules($package = null){
357
+ $package = ($package != null) ? $package : self::PACKAGE_TYPE;
358
+ $default_list = [
359
+ 'header-footer',
360
+ 'megamenu',
361
+ ];
362
+
363
+ $optional_list =[
364
+ 'parallax',
365
+ 'sticky-content',
366
+ ];
367
+
368
+ return ($package == 'pro') ? array_merge($default_list, $optional_list) : $default_list;
369
+ }
370
+ }
371
+
372
+ new ElementsKit();
373
+
374
+ endif;
core/build-apis.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Build_Apis{
7
+ /**
8
+ * Collection of default widgets.
9
+ *
10
+ * @since 1.0.0
11
+ * @access private
12
+ */
13
+
14
+ public function __construct() {
15
+
16
+ add_action( 'rest_api_init', function () {
17
+ register_rest_route( 'elementskit/', '/v(?P<version>\d+)/(?P<route>\w+)', array(
18
+ 'methods' => 'POST',
19
+ 'callback' => [$this, 'register_post_apis'],
20
+ ));
21
+ });
22
+
23
+ add_action( 'rest_api_init', function () {
24
+ register_rest_route( 'elementskit/', '/v(?P<version>\d+)/(?P<route>\w+)', array(
25
+ 'methods' => 'GET',
26
+ 'callback' => [$this, 'register_get_apis'],
27
+ ));
28
+ });
29
+ }
30
+
31
+ public function register_post_apis($request){
32
+ $route = $request['route'];
33
+ do_action('elementskit/apis/apis_registered/post', $route, $request);
34
+ }
35
+ public function register_get_apis($request){
36
+ return do_action('elementskit/apis/apis_registered/get', $request);
37
+ }
38
+ }
core/build-inline-scripts.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Inline script registrar.
8
+ *
9
+ * Returns all necessary inline js & css.
10
+ *
11
+ * @since 1.0.0
12
+ * @access public
13
+ */
14
+ class Build_Inline_Scripts{
15
+
16
+ /**
17
+ * The class instance.
18
+ *
19
+ * @since 1.0.0
20
+ * @access public
21
+ * @static
22
+ *
23
+ * @var Build_Modules
24
+ */
25
+ public static $instance = null;
26
+
27
+ function __construct(){
28
+ add_action('wp_enqueue_scripts', [$this, 'frontend_js']);
29
+ add_action('admin_print_scripts', [$this, 'admin_js']);
30
+ }
31
+
32
+
33
+ // scripts for common end, admin & frontend
34
+ public function common_js(){
35
+ ob_start(); ?>
36
+
37
+ //console.log(window.elementskit);
38
+
39
+ var elementskit = {
40
+ resturl: '<?php echo get_rest_url() . 'elementskit/v1/'; ?>',
41
+ }
42
+
43
+ //console.log(window.elementskit);
44
+ <?php
45
+ $output = ob_get_contents();
46
+ ob_end_clean();
47
+ return $output;
48
+ }
49
+
50
+
51
+
52
+ // scripts for frontend
53
+ public function frontend_js(){
54
+ $js = $this->common_js();
55
+ wp_add_inline_script('elementskit-framework-js-frontend', $js);
56
+ }
57
+
58
+
59
+ // scripts for admin
60
+ public function admin_js(){
61
+ echo "<script type='text/javascript'>\n";
62
+ echo \ElementsKit\Utils::render($this->common_js());
63
+ echo "\n</script>";
64
+ }
65
+
66
+
67
+
68
+ /**
69
+ * Instance.
70
+ *
71
+ * Ensures only one instance of the class is loaded or can be loaded.
72
+ *
73
+ * @since 1.0.0
74
+ * @access public
75
+ * @static
76
+ *
77
+ * @return Build_Widgets An instance of the class.
78
+ */
79
+ public static function instance() {
80
+ if ( is_null( self::$instance ) ) {
81
+
82
+ // Fire the class instance
83
+ self::$instance = new self();
84
+ }
85
+
86
+ return self::$instance;
87
+ }
88
+ }
core/build-modules.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+ use ElementsKit\Libs\Framework\Attr;
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ /**
8
+ * Module registrar.
9
+ *
10
+ * Call assosiated classes of every modules.
11
+ *
12
+ * @since 1.0.0
13
+ * @access public
14
+ */
15
+ class Build_Modules{
16
+
17
+ private $module_dir;
18
+
19
+ /**
20
+ * Hold the module list.
21
+ *
22
+ * @since 1.0.0
23
+ * @access public
24
+ * @static
25
+ */
26
+
27
+ /**
28
+ * The class instance.
29
+ *
30
+ * @since 1.0.0
31
+ * @access public
32
+ * @static
33
+ *
34
+ * @var Build_Modules
35
+ */
36
+ public static $instance = null;
37
+
38
+
39
+ private $system_modules = [
40
+ 'dynamic-content',
41
+ 'library',
42
+ 'controls',
43
+ ];
44
+
45
+ private $core_modules;
46
+
47
+ private $active_modules;
48
+
49
+ public function __construct(){
50
+ $this->core_modules = array_merge($this->system_modules, \ElementsKit::default_modules());
51
+ $this->active_modules = Attr::instance()->utils->get_option('module_list', $this->core_modules);
52
+ $this->active_modules = array_merge($this->active_modules, $this->system_modules);
53
+
54
+ foreach($this->active_modules as $module){
55
+ if(in_array($module, $this->core_modules)){
56
+ // make the class name and call it.
57
+ $class_name = '\ElementsKit\Modules\\'. \ElementsKit\Utils::make_classname($module) .'\Init';
58
+ new $class_name();
59
+ }
60
+ }
61
+ }
62
+
63
+ /**
64
+ * Instance.
65
+ *
66
+ * Ensures only one instance of the class is loaded or can be loaded.
67
+ *
68
+ * @since 1.0.0
69
+ * @access public
70
+ * @static
71
+ *
72
+ * @return Build_Widgets An instance of the class.
73
+ */
74
+ public static function instance() {
75
+ if ( is_null( self::$instance ) ) {
76
+
77
+ // Fire the class instance
78
+ self::$instance = new self();
79
+ }
80
+
81
+ return self::$instance;
82
+ }
83
+ }
core/build-widgets.php ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+ use ElementsKit\Libs\Framework\Attr;
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ class Build_Widgets{
8
+
9
+ /**
10
+ * Collection of default widgets.
11
+ *
12
+ * @since 1.0.0
13
+ * @access private
14
+ */
15
+ private $active_widgets;
16
+ private $core_widgets;
17
+
18
+ /**
19
+ * The class instance.
20
+ *
21
+ * @since 1.0.0
22
+ * @access public
23
+ * @static
24
+ *
25
+ * @var Build_Widgets
26
+ */
27
+ public static $instance = null;
28
+
29
+
30
+ public function __construct() {
31
+
32
+ new \ElementsKit\Widgets\Init\Enqueue_Scripts;
33
+
34
+ $this->core_widgets = \ElementsKit::default_widgets();
35
+ $this->active_widgets = Attr::instance()->utils->get_option('widget_list', $this->core_widgets);
36
+
37
+ // check if the widget is exists
38
+ foreach($this->active_widgets as $widget){
39
+ if(in_array($widget, $this->core_widgets)){
40
+
41
+ include \ElementsKit::widget_dir() . $widget .'/'. $widget . '.php';
42
+ include \ElementsKit::widget_dir() . $widget .'/'. $widget . '-handler.php';
43
+
44
+ $base_class_name = '\ElementsKit\ElementsKit_Widget_' . \ElementsKit\Utils::make_classname($widget);
45
+ $handler_class = $base_class_name . '_Handler';
46
+
47
+ $widget = new $handler_class();
48
+
49
+ if($widget->scripts() != false){
50
+ add_action( 'wp_enqueue_scripts', [$widget, 'scripts'] );
51
+ }
52
+
53
+ if($widget->inline_css() != false){
54
+ wp_add_inline_style( 'elementskit-init-css', $widget->inline_css());
55
+ }
56
+
57
+ if($widget->inline_js() != false){
58
+ wp_add_inline_script( 'elementskit-init-js', $widget->inline_js());
59
+ }
60
+
61
+ if($widget->register_api() != false){
62
+ include_once $widget->register_api();
63
+ $api_class = $base_class_name . '_Api';
64
+ new $api_class();
65
+ }
66
+
67
+ if($widget->wp_init() != false){
68
+ add_action('init', [$widget, 'wp_init']);
69
+ }
70
+ }
71
+ }
72
+
73
+ add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widget']);
74
+ }
75
+
76
+
77
+ public function register_widget($widgets_manager){
78
+
79
+ foreach($this->active_widgets as $widget){
80
+ if(in_array($widget, $this->core_widgets)){
81
+ $class_name = '\Elementor\ElementsKit_Widget_' . \ElementsKit\Utils::make_classname($widget);
82
+ $widgets_manager->register_widget_type(new $class_name());
83
+ }
84
+ }
85
+ }
86
+
87
+ /**
88
+ * Instance.
89
+ *
90
+ * Ensures only one instance of the class is loaded or can be loaded.
91
+ *
92
+ * @since 1.0.0
93
+ * @access public
94
+ * @static
95
+ *
96
+ * @return Build_Widgets An instance of the class.
97
+ */
98
+ public static function instance() {
99
+ if ( is_null( self::$instance ) ) {
100
+
101
+ // Fire the class instance
102
+ self::$instance = new self();
103
+ }
104
+
105
+ return self::$instance;
106
+ }
107
+ }
core/handler-api.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+
4
+ class Handler_Api{
5
+
6
+ public $prefix = '';
7
+ public $param = '';
8
+ public $request = null;
9
+
10
+ public function __construct(){
11
+ $this->config();
12
+ $this->init();
13
+ }
14
+
15
+ public function config(){
16
+
17
+ }
18
+
19
+ public function init(){
20
+ add_action( 'rest_api_init', function () {
21
+ register_rest_route( untrailingslashit('elementskit/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array(
22
+ 'methods' => \WP_REST_Server::READABLE,
23
+ 'callback' => [$this, 'action'],
24
+ ));
25
+ });
26
+ }
27
+
28
+ public function action($request){
29
+ $this->request = $request;
30
+ $action_class = strtolower($this->request->get_method()) .'_'. sanitize_key($this->request['action']);
31
+
32
+ if(method_exists($this, $action_class)){
33
+ return $this->{$action_class}();
34
+ }
35
+ }
36
+
37
+ }
core/handler-widget.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+
4
+ class Handler_Widget{
5
+
6
+ public function wp_init(){
7
+ return false;
8
+ }
9
+
10
+ static function get_name() {
11
+ return false;
12
+ }
13
+
14
+ static function get_title() {
15
+ return false;
16
+ }
17
+
18
+ static function get_icon() {
19
+ return false;
20
+ }
21
+
22
+ static function get_categories() {
23
+ return false;
24
+ }
25
+
26
+ static function get_dir() {
27
+ return false;
28
+ }
29
+
30
+ static function get_url() {
31
+ return false;
32
+ }
33
+
34
+ public function register_api(){
35
+ return false;
36
+ }
37
+
38
+ public function inline_js(){
39
+ return false;
40
+ }
41
+
42
+ public function inline_css(){
43
+ return false;
44
+ }
45
+
46
+ public function sass(){
47
+ return false;
48
+ }
49
+
50
+ public function scripts(){
51
+ return false;
52
+ }
53
+ }
core/hook-activation.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Core;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Activation_Hook{
7
+ /**
8
+ * Hooks on plugin activation.
9
+ *
10
+ * @since 1.0.0
11
+ * @access private
12
+ */
13
+
14
+ public function __construct() {
15
+ \ElementsKit\Autoloader::run();
16
+ $this->flush();
17
+ $this->set_activation_stamp();
18
+ }
19
+
20
+ public function flush(){
21
+ $dynamic_content = new \ElementsKit\Modules\Dynamic_Content\Cpt();
22
+ $dynamic_content->flush_rewrites();
23
+ }
24
+
25
+ public function set_activation_stamp(){
26
+ update_option('elementskit_lite_activation_stamp', time());
27
+ }
28
+ }
29
+
30
+ new Activation_Hook();
elementskit-lite.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ defined( 'ABSPATH' ) || exit;
4
+ /**
5
+ * Plugin Name: ElementsKit Lite
6
+ * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
7
+ * Plugin URI: https://wpmet.com/
8
+ * Author: Wpmet
9
+ * Version: 1.3.1
10
+ * Author URI: https://products.wpmet.com/elementskit
11
+ *
12
+ * Text Domain: elementskit
13
+ *
14
+ * @package ElementsKit
15
+ * @category Free
16
+ *
17
+ * Elementskit is a powerful addon for Elementor page builder.
18
+ * It includes most comprehensive modules, such as "header footer builder", "mega menu",
19
+ * "layout installer", "quick form builder" etc under the hood.
20
+ * It has a tons of widgets to create any sites with an ease. It has some most unique
21
+ * and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area".
22
+ *
23
+ */
24
+
25
+ register_activation_hook(__FILE__, function(){
26
+ include_once plugin_dir_path( __FILE__ ) . 'autoloader.php';
27
+ include_once plugin_dir_path( __FILE__ ) . 'core/hook-activation.php';
28
+ });
29
+
30
+ add_action('plugins_loaded', function(){
31
+ include_once plugin_dir_path( __FILE__ ) . 'core.php';
32
+ }, 112);
handler.php ADDED
@@ -0,0 +1,250 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * ElementsKit - the God class.
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.1.0
12
+ */
13
+ class Handler{
14
+
15
+
16
+ /**
17
+ * The plugin instance.
18
+ *
19
+ * @since 1.0.0
20
+ * @access public
21
+ * @static
22
+ *
23
+ * @var Handler
24
+ */
25
+ public static $instance = null;
26
+
27
+ /**
28
+ * Construct the plugin object.
29
+ *
30
+ * @since 1.0.0
31
+ * @access public
32
+ */
33
+ public function __construct() {
34
+
35
+ // Call the method for ElementsKit autoloader.
36
+ $this->registrar_autoloader();
37
+
38
+ // Enqueue frontend scripts.
39
+ add_action( 'wp_enqueue_scripts', [$this, 'enqueue_frontend'] );
40
+
41
+ // Enqueue admin scripts.
42
+ add_action( 'admin_enqueue_scripts', [$this, 'enqueue_admin'] );
43
+
44
+ // Enqueue inline scripts
45
+ Core\Build_Inline_Scripts::instance();
46
+
47
+ // Register plugin settings pages
48
+ Libs\Framework\Attr::instance();
49
+
50
+ // Register default widgets
51
+ Core\Build_Widgets::instance();
52
+
53
+ // Register default modules
54
+ Core\Build_Modules::instance();
55
+
56
+ // Register ElementsKit supported widgets to Elementor from 3rd party plugins.
57
+ add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widgets'], 1050);
58
+
59
+ // Register ElementsKit's custom endpoints for WP RESTful APIs and 3rd party hooks.
60
+ add_action( 'init', [$this, 'register_apis'], 1055);
61
+
62
+ // Adding pro lebel
63
+ new Libs\Pro_Label\Init();
64
+
65
+ }
66
+
67
+ /**
68
+ * Enqueue scripts
69
+ *
70
+ * Enqueue js and css to frontend.
71
+ *
72
+ * @since 1.0.0
73
+ * @access public
74
+ */
75
+ public function enqueue_frontend(){
76
+ wp_enqueue_style( 'elementskit-framework-css-frontend', \ElementsKit::lib_url() . 'framework/assets/css/frontend-style.css', \ElementsKit::VERSION );
77
+ wp_enqueue_script( 'elementskit-framework-js-frontend', \ElementsKit::lib_url() . 'framework/assets/js/frontend-script.js', \ElementsKit::VERSION, true );
78
+ }
79
+ public function enqueue_frontend_inline(){
80
+ $script_builder = new Core\Build_Inline_scripts();
81
+ $script_builder->script_for_frontend();
82
+ }
83
+
84
+ /**
85
+ * Enqueue scripts
86
+ *
87
+ * Enqueue js and css to admin.
88
+ *
89
+ * @since 1.0.0
90
+ * @access public
91
+ */
92
+ public function enqueue_admin(){
93
+ wp_register_style( 'elementskit-global-css-admin', \ElementsKit::lib_url() . 'framework/assets/css/admin-global.css', \ElementsKit::VERSION );
94
+ wp_enqueue_style( 'elementskit-global-css-admin' );
95
+
96
+ $screen = get_current_screen();
97
+ if(!in_array($screen->id, ['nav-menus', 'toplevel_page_elementskit', 'edit-elementskit_template'])){
98
+ return;
99
+ }
100
+
101
+ wp_register_style( 'fontawesome', \ElementsKit::widget_url() . 'init/assets/css/font-awesome.min.css', \ElementsKit::VERSION );
102
+ wp_register_style( 'elementskit-font-css-admin', \ElementsKit::widget_url() . 'init/assets/css/admin-ekiticon.css', \ElementsKit::VERSION );
103
+ wp_register_style( 'elementskit-lib-css-admin', \ElementsKit::lib_url() . 'framework/assets/css/framework.css', \ElementsKit::VERSION );
104
+ wp_register_style( 'elementskit-init-css-admin', \ElementsKit::lib_url() . 'framework/assets/css/admin-style.css', \ElementsKit::VERSION );
105
+ wp_register_style( 'elementskit-init-css-ems-admin', \ElementsKit::lib_url() . 'framework/assets/css/admin-style-ems-dev.css', \ElementsKit::VERSION );
106
+
107
+
108
+ wp_enqueue_style( 'fontawesome' );
109
+ wp_enqueue_style( 'elementskit-font-css-admin' );
110
+ wp_enqueue_style( 'elementskit-lib-css-admin' );
111
+ wp_enqueue_style( 'elementskit-init-css-ems-admin' );
112
+ wp_enqueue_style( 'elementskit-init-css-admin' );
113
+
114
+ wp_enqueue_script( 'elementskit-admin-core-ui', \ElementsKit::lib_url() . 'framework/assets/js/core-ui.min.js', \ElementsKit::VERSION, true );
115
+ wp_enqueue_script( 'elementskit-init-js-admin', \ElementsKit::lib_url() . 'framework/assets/js/admin-script.js', \ElementsKit::VERSION, true );
116
+ }
117
+ public function enqueue_admin_inline(){
118
+ $script_builder = new Core\Build_Inline_scripts();
119
+ $script_builder->script_for_admin();
120
+ }
121
+
122
+
123
+ /**
124
+ * Control registrar.
125
+ *
126
+ * Register the custom controls for Elementor
127
+ * using `elementskit/widgets/widgets_registered` action.
128
+ *
129
+ * @since 1.0.0
130
+ * @access public
131
+ */
132
+ public function register_control($widgets_manager){
133
+ do_action('elementskit/widgets/widgets_registered', $widgets_manager);
134
+ }
135
+
136
+
137
+ /**
138
+ * Api registrar.
139
+ *
140
+ * Retrieve all the registered API's endpoints
141
+ * using `elementskit/apis/apis_registered/post` action (for POST method).
142
+ * using `elementskit/apis/apis_registered/get` action (for GET method).
143
+ *
144
+ * @since 1.0.0
145
+ * @access public
146
+ */
147
+ public function register_apis(){
148
+ new Core\Build_Apis();
149
+ }
150
+
151
+
152
+ /**
153
+ * Widget registrar.
154
+ *
155
+ * Retrieve all the registered widgets
156
+ * using `elementor/widgets/widgets_registered` action.
157
+ *
158
+ * @since 1.0.0
159
+ * @access public
160
+ */
161
+ public function register_widgets($widgets_manager){
162
+ do_action('elementskit/widgets/widgets_registered', $widgets_manager);
163
+ }
164
+
165
+
166
+ /**
167
+ * Construct the plugin object.
168
+ *
169
+ * @since 1.0.0
170
+ * @access public
171
+ */
172
+ private function registrar_version_manager(){
173
+ // run the migration class if current version is greater than old installed version.
174
+ if(Helper::current_version() > Helper::old_version()){
175
+ // load the update and related migration classes
176
+ // new ElementsKit_Version_Manager();
177
+ }
178
+ }
179
+
180
+
181
+ /**
182
+ * Autoloader.
183
+ *
184
+ * ElementsKit autoloader loads all the classes needed to run the plugin.
185
+ *
186
+ * @since 1.0.0
187
+ * @access private
188
+ */
189
+ private function registrar_autoloader() {
190
+ require_once \ElementsKit::plugin_dir() . '/autoloader.php';
191
+ Autoloader::run();
192
+ }
193
+
194
+
195
+ /**
196
+ * Disable class cloning and throw an error on object clone.
197
+ *
198
+ * The whole idea of the singleton design pattern is that there is a single
199
+ * object. Therefore, we don't want the object to be cloned.
200
+ *
201
+ * @access public
202
+ * @since 1.0.0
203
+ */
204
+ public function __clone() {
205
+
206
+ // Cloning instances of the class is forbidden.
207
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cloning is forbidden.', 'elementskit' ), '1.0.0' );
208
+ }
209
+
210
+
211
+ /**
212
+ * Disable unserializing of the class.
213
+ *
214
+ * @access public
215
+ * @since 1.0.0
216
+ */
217
+ public function __wakeup() {
218
+
219
+ // Unserializing instances of the class is forbidden.
220
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Unserializing instances of this class is forbidden.', 'elementskit' ), '1.0.0' );
221
+ }
222
+
223
+
224
+ /**
225
+ * Instance.
226
+ *
227
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
228
+ *
229
+ * @since 1.0.0
230
+ * @access public
231
+ * @static
232
+ *
233
+ * @return Handler An instance of the class.
234
+ */
235
+ public static function instance() {
236
+ if ( is_null( self::$instance ) ) {
237
+
238
+ // Fire when ElementsKit instance.
239
+ self::$instance = new self();
240
+
241
+ // Fire when ElementsKit was fully loaded and instantiated.
242
+ do_action( 'elementskit/loaded' );
243
+ }
244
+
245
+ return self::$instance;
246
+ }
247
+ }
248
+
249
+ // Run the instance.
250
+ Handler::instance();
helpers/notice.php ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ if ( ! defined( 'ABSPATH' ) ) die( 'Forbidden' );
5
+ /**
6
+ * ElementsKit notice class.
7
+ * Handles dynamically notices for lazy developers.
8
+ *
9
+ * @author XpeedStudo team: alpha omega sigma
10
+ * @since 1.0.0
11
+ */
12
+
13
+
14
+ class Notice {
15
+
16
+ /**
17
+ * Constructor
18
+ *
19
+ * @since 1.0.0
20
+ */
21
+ public function __construct() {
22
+ add_action( 'admin_footer', [ $this, 'enqueue_scripts' ], 9999);
23
+ add_action( 'wp_ajax_elementskit-notices', [ $this, 'dismiss' ] );
24
+ }
25
+
26
+
27
+ /**
28
+ * Dismiss Notice.
29
+ *
30
+ * @since 1.0.0
31
+ * @return void
32
+ */
33
+ public function dismiss() {
34
+
35
+ $id = ( isset( $_POST['id'] ) ) ? sanitize_text_field($_POST['id']) : '';
36
+ $time = ( isset( $_POST['time'] ) ) ? sanitize_text_field($_POST['time']) : '';
37
+ $meta = ( isset( $_POST['meta'] ) ) ? sanitize_text_field($_POST['meta']) : '';
38
+
39
+ // Valid inputs?
40
+ if ( ! empty( $id ) ) {
41
+
42
+ if ( 'user' === $meta ) {
43
+ update_user_meta( get_current_user_id(), $id, true );
44
+ } else {
45
+ set_transient( $id, true, $time );
46
+ }
47
+
48
+ wp_send_json_success();
49
+ }
50
+
51
+ wp_send_json_error();
52
+ }
53
+
54
+ /**
55
+ * Enqueue Scripts.
56
+ *
57
+ * @since 1.0.0
58
+ * @return void
59
+ */
60
+ public function enqueue_scripts() {
61
+ echo "
62
+ <script>
63
+ jQuery(document).ready(function ($) {
64
+ $( '.elementskit-notice.is-dismissible' ).on( 'click', '.notice-dismiss', function() {
65
+ //console.log('test');
66
+ _this = $( this ).parents( '.elementskit-active-notice' );
67
+ var id = _this.attr( 'id' ) || '';
68
+ var time = _this.attr( 'dismissible-time' ) || '';
69
+ var meta = _this.attr( 'dismissible-meta' ) || '';
70
+
71
+ $.ajax({
72
+ url: ajaxurl,
73
+ type: 'POST',
74
+ data: {
75
+ action : 'elementskit-notices',
76
+ id : id,
77
+ meta : meta,
78
+ time : time,
79
+ },
80
+ });
81
+
82
+ });
83
+
84
+ });
85
+ </script>
86
+ ";
87
+ }
88
+
89
+ /**
90
+ * Show Notices
91
+ *
92
+ * @since 1.0.0
93
+ * @return void
94
+ */
95
+ public static function push($notice) {
96
+
97
+ $defaults = [
98
+ 'id' => '',
99
+ 'type' => 'info',
100
+ 'show_if' => true,
101
+ 'message' => '',
102
+ 'class' => 'elementskit-active-notice',
103
+ 'dismissible' => false,
104
+ 'btn' => [],
105
+ 'dismissible-meta' => 'user',
106
+ 'dismissible-time' => WEEK_IN_SECONDS,
107
+ 'data' => '',
108
+ ];
109
+
110
+ $notice = wp_parse_args( $notice, $defaults );
111
+
112
+ $classes = [ 'elementskit-notice', 'notice' ];
113
+
114
+ $classes[] = $notice['class'];
115
+ if ( isset( $notice['type'] ) ) {
116
+ $classes[] = 'notice-' . $notice['type'];
117
+ }
118
+
119
+ // Is notice dismissible?
120
+ if ( true === $notice['dismissible'] ) {
121
+ $classes[] = 'is-dismissible';
122
+
123
+ // Dismissable time.
124
+ $notice['data'] = ' dismissible-time=' . esc_attr( $notice['dismissible-time'] ) . ' ';
125
+ }
126
+
127
+ // Notice ID.
128
+ $notice_id = 'elementskit-sites-notice-id-' . $notice['id'];
129
+ $notice['id'] = $notice_id;
130
+ if ( ! isset( $notice['id'] ) ) {
131
+ $notice_id = 'elementskit-sites-notice-id-' . $notice['id'];
132
+ $notice['id'] = $notice_id;
133
+ } else {
134
+ $notice_id = $notice['id'];
135
+ }
136
+
137
+ $notice['classes'] = implode( ' ', $classes );
138
+
139
+ // User meta.
140
+ $notice['data'] .= ' dismissible-meta=' . esc_attr( $notice['dismissible-meta'] ) . ' ';
141
+ if ( 'user' === $notice['dismissible-meta'] ) {
142
+ $expired = get_user_meta( get_current_user_id(), $notice_id, true );
143
+ } elseif ( 'transient' === $notice['dismissible-meta'] ) {
144
+ $expired = get_transient( $notice_id );
145
+ }
146
+
147
+ // Notice visible after transient expire.
148
+ if ( isset( $notice['show_if'] ) ) {
149
+ if ( true === $notice['show_if'] ) {
150
+
151
+ // Is transient expired?
152
+ if ( false === $expired || empty( $expired ) ) {
153
+ self::markup($notice);
154
+ }
155
+ }
156
+ } else {
157
+ self::markup($notice);
158
+ }
159
+ }
160
+
161
+ /**
162
+ * Markup Notice.
163
+ *
164
+ * @since 1.0.0
165
+ * @param array $notice Notice markup.
166
+ * @return void
167
+ */
168
+ public static function markup( $notice = [] ) {
169
+ ?>
170
+ <div id="<?php echo esc_attr( $notice['id'] ); ?>" class="<?php echo esc_attr( $notice['classes'] ); ?>" <?php echo \ElementsKit\Utils::render($notice['data']); ?>>
171
+ <p>
172
+ <?php echo \ElementsKit\Utils::kses($notice['message']); ?>
173
+ </p>
174
+
175
+ <?php if(!empty($notice['btn'])):?>
176
+ <p>
177
+ <a href="<?php echo esc_url($notice['btn']['url']); ?>" class="button-primary"><?php echo esc_html($notice['btn']['label']); ?></a>
178
+ </p>
179
+ <?php endif; ?>
180
+ </div>
181
+ <?php
182
+ }
183
+ }
184
+
185
+ new Notice();
helpers/utils.php ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+ /**
6
+ * Global helper class.
7
+ *
8
+ * @since 1.0.0
9
+ */
10
+
11
+ class Utils{
12
+
13
+ /**
14
+ * Get elementskit older version if has any.
15
+ *
16
+ * @since 1.0.0
17
+ * @access public
18
+ */
19
+ public static function old_version(){
20
+ $version = get_option('elementskit_version');
21
+ return null == $version ? -1 : $version;
22
+ }
23
+
24
+ /**
25
+ * Set elementskit installed version as current version.
26
+ *
27
+ * @since 1.0.0
28
+ * @access public
29
+ */
30
+ public static function set_version(){
31
+ //return update_option('elementskit_version', \ElementsKit::plugin_url());
32
+ }
33
+
34
+ /**
35
+ * Auto generate classname from path.
36
+ *
37
+ * @since 1.0.0
38
+ * @access public
39
+ */
40
+ public static function make_classname( $dirname ) {
41
+ $dirname = pathinfo($dirname, PATHINFO_FILENAME);
42
+ $class_name = explode( '-', $dirname );
43
+ $class_name = array_map( 'ucfirst', $class_name );
44
+ $class_name = implode( '_', $class_name );
45
+
46
+ return $class_name;
47
+ }
48
+
49
+ public static function google_fonts($font_families = []) {
50
+ $fonts_url = '';
51
+ if ( $font_families ) {
52
+ $query_args = array(
53
+ 'family' => urlencode( implode( '|', $font_families ) )
54
+ );
55
+
56
+ $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
57
+ }
58
+
59
+ return esc_url_raw( $fonts_url );
60
+ }
61
+
62
+ public static function kses( $raw ) {
63
+
64
+ $allowed_tags = array(
65
+ 'a' => array(
66
+ 'class' => array(),
67
+ 'href' => array(),
68
+ 'rel' => array(),
69
+ 'title' => array(),
70
+ ),
71
+ 'abbr' => array(
72
+ 'title' => array(),
73
+ ),
74
+ 'b' => array(),
75
+ 'blockquote' => array(
76
+ 'cite' => array(),
77
+ ),
78
+ 'cite' => array(
79
+ 'title' => array(),
80
+ ),
81
+ 'code' => array(),
82
+ 'del' => array(
83
+ 'datetime' => array(),
84
+ 'title' => array(),
85
+ ),
86
+ 'dd' => array(),
87
+ 'div' => array(
88
+ 'class' => array(),
89
+ 'title' => array(),
90
+ 'style' => array(),
91
+ ),
92
+ 'dl' => array(),
93
+ 'dt' => array(),
94
+ 'em' => array(),
95
+ 'h1' => array(
96
+ 'class' => array(),
97
+ ),
98
+ 'h2' => array(
99
+ 'class' => array(),
100
+ ),
101
+ 'h3' => array(
102
+ 'class' => array(),
103
+ ),
104
+ 'h4' => array(
105
+ 'class' => array(),
106
+ ),
107
+ 'h5' => array(
108
+ 'class' => array(),
109
+ ),
110
+ 'h6' => array(
111
+ 'class' => array(),
112
+ ),
113
+ 'i' => array(
114
+ 'class' => array(),
115
+ ),
116
+ 'img' => array(
117
+ 'alt' => array(),
118
+ 'class' => array(),
119
+ 'height' => array(),
120
+ 'src' => array(),
121
+ 'width' => array(),
122
+ ),
123
+ 'li' => array(
124
+ 'class' => array(),
125
+ ),
126
+ 'ol' => array(
127
+ 'class' => array(),
128
+ ),
129
+ 'p' => array(
130
+ 'class' => array(),
131
+ ),
132
+ 'q' => array(
133
+ 'cite' => array(),
134
+ 'title' => array(),
135
+ ),
136
+ 'span' => array(
137
+ 'class' => array(),
138
+ 'title' => array(),
139
+ 'style' => array(),
140
+ ),
141
+ 'iframe' => array(
142
+ 'width' => array(),
143
+ 'height' => array(),
144
+ 'scrolling' => array(),
145
+ 'frameborder' => array(),
146
+ 'allow' => array(),
147
+ 'src' => array(),
148
+ ),
149
+ 'strike' => array(),
150
+ 'br' => array(),
151
+ 'strong' => array(),
152
+ 'data-wow-duration' => array(),
153
+ 'data-wow-delay' => array(),
154
+ 'data-wallpaper-options' => array(),
155
+ 'data-stellar-background-ratio' => array(),
156
+ 'ul' => array(
157
+ 'class' => array(),
158
+ ),
159
+ );
160
+
161
+ if ( function_exists( 'wp_kses' ) ) { // WP is here
162
+ return wp_kses( $raw, $allowed_tags );
163
+ } else {
164
+ return $raw;
165
+ }
166
+ }
167
+
168
+ public static function kspan($text){
169
+ return str_replace(['{', '}'], ['<span>', '</span>'], self::kses($text));
170
+ }
171
+
172
+
173
+ public static function trim_words($text, $num_words){
174
+ return wp_trim_words( $text, $num_words, '' );
175
+ }
176
+
177
+ public static function array_push_assoc($array, $key, $value){
178
+ $array[$key] = $value;
179
+ return $array;
180
+ }
181
+
182
+ public static function render($content){
183
+ if (stripos($content, "elementskit-has-lisence") !== false) {
184
+ return null;
185
+ }
186
+
187
+ return $content;
188
+ }
189
+ public static function render_elementor_content_css($content_id){
190
+ if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
191
+ $css_file = new \Elementor\Core\Files\CSS\Post( $content_id );
192
+ $css_file->enqueue();
193
+ }
194
+ }
195
+ public static function render_elementor_content($content_id){
196
+ $elementor_instance = \Elementor\Plugin::instance();
197
+ return $elementor_instance->frontend->get_builder_content_for_display( $content_id );
198
+ }
199
+ public static function render_tab_content($content, $id){
200
+ return str_replace('.elementor-'.$id.' ', '#elementor .elementor-'.$id.' ', $content);
201
+ }
202
+
203
+ public static function img_meta($id){
204
+ $attachment = get_post($id);
205
+ if($attachment == null || $attachment->post_type != 'attachment'){
206
+ return null;
207
+ }
208
+ return [
209
+ 'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
210
+ 'caption' => $attachment->post_excerpt,
211
+ 'description' => $attachment->post_content,
212
+ 'href' => get_permalink( $attachment->ID ),
213
+ 'src' => $attachment->guid,
214
+ 'title' => $attachment->post_title
215
+ ];
216
+ }
217
+ }
libs/framework/assets/css/admin-global.css ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ @keyframes Gradient {
3
+ 0%,
4
+ 100% {
5
+ background-position: 0 50%
6
+ }
7
+ 50% {
8
+ background-position: 100% 50%
9
+ }
10
+ }
11
+
12
+ a.toplevel_page_elementskit {
13
+ background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB)!important;
14
+ animation: Gradient 15s ease infinite;
15
+ background-size: 400% 400%!important;
16
+ color: #fff!important;
17
+ }
18
+ #adminmenu .toplevel_page_elementskit .wp-menu-image {
19
+ display: -webkit-box;
20
+ display: -ms-flexbox;
21
+ display: flex;
22
+ -webkit-box-align: center;
23
+ -ms-flex-align: center;
24
+ align-items: center;
25
+ -webkit-box-pack: center;
26
+ -ms-flex-pack: center;
27
+ justify-content: center;
28
+ }
29
+ #adminmenu .toplevel_page_elementskit .wp-menu-image img {
30
+ opacity: 1;
31
+ width: 16px!important;
32
+ padding: 0px!important;
33
+ }
34
+
35
+ #elementskit-sites-notice-id-elementskit-go-pro p{
36
+ font-size: 16px;
37
+ font-weight: 300;
38
+ }
39
+ #elementskit-sites-notice-id-elementskit-go-pro h2{
40
+ font-size: 28px;
41
+ font-weight: 400;
42
+ margin: 0 0 16px 0;
43
+ }
44
+ #elementskit-sites-notice-id-elementskit-go-pro{
45
+ background: none;
46
+ position: relative;
47
+ }
48
+ #elementskit-sites-notice-id-elementskit-go-pro:after{
49
+ content: '';
50
+ position: absolute;
51
+ bottom: 0;
52
+ left: 0;
53
+ right: 380px;
54
+ z-index: -1;
55
+ top: 0;
56
+ background: #f9fafc;
57
+ background: linear-gradient(90deg, rgb(255, 227, 227) 0%, rgba(249,250,252,.5) 100%);
58
+ }
59
+ #elementskit-sites-notice-id-elementskit-go-pro:before{
60
+ content: '';
61
+ position: absolute;
62
+ bottom: 0;
63
+ left: 0;
64
+ right: 0;
65
+ z-index: -2;
66
+ top: 0;
67
+ background: #f9fafc url(../images/go-pro-feature.png) no-repeat;
68
+ background-position: right;
69
+ background-size: contain;
70
+ }
71
+
72
+ #elementskit-sites-notice-id-elementskit-go-pro .button-primary {
73
+ background: #f2295b;
74
+ border-color: #f22930 #f22945 #f22945;
75
+ box-shadow: 0 1px 0 #f22945;
76
+ color: #fff;
77
+ text-decoration: none;
78
+ text-shadow: 0 -1px 1px #f22945, 1px 0 1px #f22945, 0 1px 1px #f22945, -1px 0 1px #f22945;
79
+
80
+ padding: 0 24px;
81
+ height: 44px;
82
+ line-height: 44px;
83
+ font-size: 16px;
84
+ }
libs/framework/assets/css/admin-style-ems-dev.css ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @-webkit-keyframes infinite-spinning {
2
+ from {
3
+ -webkit-transform: rotate(0deg);
4
+ transform: rotate(0deg);
5
+ }
6
+ to {
7
+ -webkit-transform: rotate(360deg);
8
+ transform: rotate(360deg);
9
+ }
10
+ }
11
+
12
+ @keyframes infinite-spinning {
13
+ from {
14
+ -webkit-transform: rotate(0deg);
15
+ transform: rotate(0deg);
16
+ }
17
+ to {
18
+ -webkit-transform: rotate(360deg);
19
+ transform: rotate(360deg);
20
+ }
21
+ }
22
+
23
+ .ekit-spinner {
24
+ display: none;
25
+ position: relative;
26
+ width: 18px;
27
+ height: 18px;
28
+ border-radius: 18px;
29
+ background: rgba(0, 0, 0, 0.5);
30
+ -webkit-animation: infinite-spinning 1.08s linear infinite;
31
+ animation: infinite-spinning 1.08s linear infinite;
32
+ vertical-align: middle;
33
+ margin-right: 7px;
34
+ top: -1px;
35
+ }
36
+ .is-loading .ekit-spinner{
37
+ display: inline-block;
38
+ }
39
+ .ekit-spinner:after {
40
+ content: "";
41
+ position: absolute;
42
+ top: 2px;
43
+ left: 50%;
44
+ width: 4px;
45
+ height: 4px;
46
+ border-radius: 4px;
47
+ margin-left: -2px;
48
+ background: #fff;
49
+ }
50
+ .attr-nav-tabs .ekit-admin-nav-link .ekit-admin-title {
51
+ -webkit-transition: all 150ms ease-out;
52
+ -o-transition: all 150ms ease-out;
53
+ transition: all 150ms ease-out;
54
+ }
55
+ .ekit-admin-fields-container-description {
56
+ margin-bottom: 16px;
57
+ }
58
+
59
+ .ekit-admin-dashboard-banner {
60
+ width: 100%;
61
+ }
62
+
63
+ .xx {
64
+ margin: 16px 0 0 0!important;
65
+ }
66
+
67
+ .ekit-admin-input-text {
68
+ margin-top: 2rem;
69
+ }
70
+
71
+ .ekit-admin-section-heaer-title > i {
72
+ display: inline-block;
73
+ width: 48px;
74
+ height: 48px;
75
+ line-height: 48px!important;
76
+ margin-right: 24px;
77
+ background-color: #fee9ee;
78
+ color: #f2295b;
79
+ text-align: center;
80
+ border-radius: 3px;
81
+ vertical-align: middle;
82
+ font-size: 20px;
83
+ }
84
+ .attr-card-body{
85
+ position: relative;
86
+ overflow: hidden;
87
+ }
88
+ .ekit-admin-section-heaer-title::before {
89
+ display: none;
90
+ }
91
+ img{
92
+ max-width: 100%;
93
+ }
94
+ .ekit-content-type-pro .ekit-admin-input-switch:before{
95
+ content: "PRO";
96
+ font-size: 11px;
97
+ padding: 1px 0;
98
+ color: #ffffff;
99
+ text-transform: uppercase;
100
+ text-align: center;
101
+ transform: rotate(-45deg);
102
+ position: absolute;
103
+ top: 7px;
104
+ left: -14px;
105
+ width: 55px;
106
+ background-image: -moz-linear-gradient( -122deg, rgb(148, 113, 255) 0%, rgb(242, 41, 91) 100% );
107
+ background-image: -webkit-linear-gradient( -122deg, rgb(148, 113, 255) 0%, rgb(242, 41, 91) 100% );
108
+ box-shadow: 0px 3px 7px 0px rgba(0, 5, 41, 0.1);
109
+ }
110
+
111
+ .ekit-content-type-pro .ekit-admin-input-switch:after {
112
+ position: absolute;
113
+ content: "";
114
+ top: 0;
115
+ left: 0;
116
+ height: 100%;
117
+ width: 100%;
118
+ /* background-color: #fff; */
119
+ opacity: .4
120
+ }
121
+ .modal-backdrop.attr-fade {
122
+ position: fixed;
123
+ top: 0;
124
+ left: 0;
125
+ width: 100vw;
126
+ height: 100vh;
127
+ background-color: rgba(0, 0, 0, 0.5);
128
+ }
129
+ .ekit-go-pro-con{
130
+ margin-top: 50px;
131
+ }
132
+
133
+ .ekit-go-pro-con .icon {
134
+ font-size: 90px;
135
+ /* color: #339417; */
136
+ color: #f2295b;
137
+ opacity: 0.3;
138
+ }
139
+ .ekit-go-pro-con h2 {
140
+ font-size: 44px;
141
+ margin: 56px 0 34px 0;
142
+ }
143
+ .ekit-go-pro-con p {
144
+ font-size: 20px;
145
+ font-weight: 300;
146
+ line-height: 1.2;
147
+ }
148
+ .ekit-go-pro-con .attr-modal-body {
149
+ padding: 30px 15px;
150
+ }
151
+ #v-elementskit-ekit-go-pro-nav-tab .ekit-admin-tab-icon{
152
+ height: 40px;
153
+ overflow: visible;
154
+ }
155
+ .ekit-go-pro-gif{
156
+ height: 58px;
157
+ position: absolute;
158
+ top: 9px;
159
+ right: 25px;
160
+ transform: rotate(32deg);
161
+ opacity: .55;
162
+ }
163
+ .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus, .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover {
164
+ /* background-color: #eaeaea; */
165
+ border-left-color: #79b679;
166
+ }
167
+ .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus .ekit-go-pro-gif, .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover .ekit-go-pro-gif {
168
+ filter: invert(1) brightness(50%) sepia(100%) saturate(10000%) hue-rotate(126deg);
169
+ }
170
+ .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab .ekit-admin-title {
171
+ color: #79b679;
172
+ }
libs/framework/assets/css/admin-style.css ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #ekit-admin-settings-form {
2
+ margin-top: 30px; }
3
+
4
+ .ekit_tab_wraper_group {
5
+ margin-right: 0;
6
+ margin-left: 0; }
7
+
8
+ .attr-tab-content {
9
+ background-color: #FFFFFF;
10
+ padding: 32px 24px; }
11
+
12
+ .ekit-admin-section-heaer-title {
13
+ margin-top: 0px; }
14
+
15
+ .ekit-admin-nav .ekit-admin-nav-link {
16
+ text-decoration: none; }
17
+ .ekit-admin-nav .ekit-admin-nav-link:focus {
18
+ outline: none;
19
+ -webkit-box-shadow: none;
20
+ box-shadow: none; }
21
+
22
+ .ekit-admin-nav .ekit-admin-title {
23
+ text-transform: uppercase; }
24
+
25
+ .attr-btn {
26
+ cursor: pointer; }
27
+
28
+ .ekit_container {
29
+ width: 100%; }
30
+
31
+ .ekit-admin-card-shadow {
32
+ border-radius: 3px;
33
+ border: 1px solid rgba(0, 0, 0, 0.05);
34
+ -webkit-box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
35
+ box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3); }
36
+
37
+ .attr-input-switch {
38
+ margin-bottom: 10px; }
39
+
40
+ .ekit-admin-input-switch .ekit-admin-control-label {
41
+ -webkit-box-pack: justify;
42
+ -ms-flex-pack: justify;
43
+ justify-content: space-between;
44
+ font-weight: 700; }
45
+
46
+ #adminmenu .toplevel_page_elementskit:hover .wp-menu-image img, #adminmenu .toplevel_page_elementskit.current .wp-menu-image img {
47
+ opacity: 1; }
48
+
49
+ #adminmenu .toplevel_page_elementskit .wp-menu-image {
50
+ display: -webkit-box;
51
+ display: -ms-flexbox;
52
+ display: flex;
53
+ -webkit-box-align: center;
54
+ -ms-flex-align: center;
55
+ align-items: center;
56
+ -webkit-box-pack: center;
57
+ -ms-flex-pack: center;
58
+ justify-content: center; }
59
+ #adminmenu .toplevel_page_elementskit .wp-menu-image img {
60
+ opacity: .6;
61
+ padding: 0px;
62
+ width: 18px;
63
+ -webkit-transition: all 0.4s ease;
64
+ -o-transition: all 0.4s ease;
65
+ transition: all 0.4s ease; }
66
+
67
+ .ekit-admin-input-text {
68
+ margin-bottom: 0px;
69
+ margin-top: 0 !important; }
70
+ .ekit-admin-input-text:not(:last-child) {
71
+ margin-bottom: 2rem; }
72
+ .ekit-admin-input-text > label {
73
+ font-weight: 700;
74
+ margin-bottom: 7px;
75
+ display: inline-block; }
76
+ .ekit-admin-input-text .attr-form-control {
77
+ border-radius: 3px;
78
+ border: 1px solid rgba(0, 0, 0, 0.05);
79
+ -webkit-box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
80
+ box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3); }
81
+
82
+ .ekit_logo {
83
+ padding: 32px 0 24px; }
84
+
85
+ .ekit-admin-input-text .attr-form-control::-moz-placeholder {
86
+ color: rgba(0, 0, 0, 0.3); }
87
+
88
+ .ekit-admin-input-text .attr-form-control:-moz-placeholder {
89
+ color: rgba(0, 0, 0, 0.3); }
90
+
91
+ .ekit-admin-input-text .attr-form-control:-ms-input-placeholder {
92
+ color: rgba(0, 0, 0, 0.3); }
93
+
94
+ .ekit-admin-input-text .attr-form-control::-webkit-input-placeholder {
95
+ color: rgba(0, 0, 0, 0.3); }
96
+
97
+ .ekit_accordion_card {
98
+ background-color: #f5f5f5; }
99
+ .ekit_accordion_card:not(:last-child) {
100
+ margin-bottom: 30px; }
101
+ .ekit_accordion_card .card-header {
102
+ padding: 0px;
103
+ border-bottom: 0px solid #000; }
104
+ .ekit_accordion_card .attr-btn {
105
+ display: block;
106
+ text-decoration: none;
107
+ width: 100%;
108
+ text-align: left;
109
+ padding: 10px 20px;
110
+ color: #333;
111
+ font-weight: 700;
112
+ cursor: pointer; }
113
+ .ekit_accordion_card .attr-btn[aria-expanded="true"] {
114
+ color: #f2295b; }
115
+ .ekit_accordion_card .attr-btn:focus {
116
+ -webkit-box-shadow: none;
117
+ box-shadow: none; }
118
+ .ekit_accordion_card .attr-panel-heading {
119
+ padding: 0px;
120
+ border-radius: 0px;
121
+ background-color: rgba(0, 0, 0, 0.03); }
122
+
123
+ [class^="attr"] {
124
+ -webkit-box-sizing: border-box;
125
+ box-sizing: border-box; }
126
+
127
+ .attr-btn-primary {
128
+ color: #fff;
129
+ background-color: #f2295b;
130
+ border-color: #f2295b;
131
+ text-decoration: none; }
132
+
133
+ .attr-card-body {
134
+ padding: 1.25rem; }
135
+ .attr-card-body .attr-card-title {
136
+ margin-top: 0px;
137
+ margin-bottom: 0.75rem; }
138
+
139
+ .ekit-admin-dashboard-banner {
140
+ display: block; }
libs/framework/assets/css/bootstrap/bootstrap.css ADDED
@@ -0,0 +1,4216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .attr-img-responsive, .attr-thumbnail > img, .attr-thumbnail a > img, .attr-carousel-inner > .attr-item > img, .attr-carousel-inner > .attr-item > a > img {
2
+ display: block;
3
+ max-width: 100%;
4
+ height: auto; }
5
+
6
+ .attr-img-rounded {
7
+ border-radius: 6px; }
8
+
9
+ .attr-img-thumbnail {
10
+ display: inline-block;
11
+ max-width: 100%;
12
+ height: auto;
13
+ padding: 4px;
14
+ line-height: 1.42857143;
15
+ background-color: #fff;
16
+ border: 1px solid #ddd;
17
+ border-radius: 4px;
18
+ -webkit-transition: all .2s ease-in-out;
19
+ -o-transition: all .2s ease-in-out;
20
+ transition: all .2s ease-in-out; }
21
+
22
+ .attr-img-circle {
23
+ border-radius: 50%; }
24
+
25
+ .attr-sr-only {
26
+ position: absolute;
27
+ width: 1px;
28
+ height: 1px;
29
+ padding: 0;
30
+ margin: -1px;
31
+ overflow: hidden;
32
+ clip: rect(0, 0, 0, 0);
33
+ border: 0; }
34
+
35
+ .attr-sr-only-focusable:active, .attr-sr-only-focusable:focus {
36
+ position: static;
37
+ width: auto;
38
+ height: auto;
39
+ margin: 0;
40
+ overflow: visible;
41
+ clip: auto; }
42
+
43
+ .attr-h1, .attr-h2, .attr-h3, .attr-h4, .attr-h5, .attr-h6 {
44
+ font-family: inherit;
45
+ font-weight: 500;
46
+ line-height: 1.1;
47
+ color: inherit; }
48
+
49
+ .attr-h1 small, .attr-h2 small, .attr-h3 small, .attr-h4 small, .attr-h5 small, .attr-h6 small, h1 .attr-small, h2 .attr-small, h3 .attr-small, h4 .attr-small, h5 .attr-small, h6 .attr-small, .attr-h1 .attr-small, .attr-h2 .attr-small, .attr-h3 .attr-small, .attr-h4 .attr-small, .attr-h5 .attr-small, .attr-h6 .attr-small {
50
+ font-weight: normal;
51
+ line-height: 1;
52
+ color: #777; }
53
+
54
+ .attr-h1, .attr-h2, .attr-h3 {
55
+ margin-top: 20px;
56
+ margin-bottom: 10px; }
57
+
58
+ .attr-h1 small, .attr-h2 small, .attr-h3 small, h1 .attr-small, .attr-h1 .attr-small, h2 .attr-small, .attr-h2 .attr-small, h3 .attr-small, .attr-h3 .attr-small {
59
+ font-size: 65%; }
60
+
61
+ .attr-h4, .attr-h5, .attr-h6 {
62
+ margin-top: 10px;
63
+ margin-bottom: 10px; }
64
+
65
+ .attr-h4 small, .attr-h5 small, .attr-h6 small, h4 .attr-small, .attr-h4 .attr-small, h5 .attr-small, .attr-h5 .attr-small, h6 .attr-small, .attr-h6 .attr-small {
66
+ font-size: 75%; }
67
+
68
+ .attr-h1 {
69
+ font-size: 36px; }
70
+
71
+ .attr-h2 {
72
+ font-size: 30px; }
73
+
74
+ .attr-h3 {
75
+ font-size: 24px; }
76
+
77
+ .attr-h4 {
78
+ font-size: 18px; }
79
+
80
+ .attr-h5 {
81
+ font-size: 14px; }
82
+
83
+ .attr-h6 {
84
+ font-size: 12px; }
85
+
86
+ .attr-lead {
87
+ margin-bottom: 20px;
88
+ font-size: 16px;
89
+ font-weight: 300;
90
+ line-height: 1.4; }
91
+
92
+ @media (min-width: 768px) {
93
+ .attr-lead {
94
+ font-size: 21px; } }
95
+
96
+ .attr-small {
97
+ font-size: 85%; }
98
+
99
+ .attr-mark {
100
+ padding: .2em;
101
+ background-color: #fcf8e3; }
102
+
103
+ .attr-text-left {
104
+ text-align: left; }
105
+
106
+ .attr-text-right {
107
+ text-align: right; }
108
+
109
+ .attr-text-center {
110
+ text-align: center; }
111
+
112
+ .attr-text-justify {
113
+ text-align: justify; }
114
+
115
+ .attr-text-nowrap {
116
+ white-space: nowrap; }
117
+
118
+ .attr-text-lowercase {
119
+ text-transform: lowercase; }
120
+
121
+ .attr-text-uppercase {
122
+ text-transform: uppercase; }
123
+
124
+ .attr-text-capitalize {
125
+ text-transform: capitalize; }
126
+
127
+ .attr-text-muted {
128
+ color: #777; }
129
+
130
+ .attr-text-primary {
131
+ color: #337ab7; }
132
+
133
+ a.attr-text-primary:hover, a.attr-text-primary:focus {
134
+ color: #286090; }
135
+
136
+ .attr-text-success {
137
+ color: #3c763d; }
138
+
139
+ a.attr-text-success:hover, a.attr-text-success:focus {
140
+ color: #2b542c; }
141
+
142
+ .attr-text-info {
143
+ color: #31708f; }
144
+
145
+ a.attr-text-info:hover, a.attr-text-info:focus {
146
+ color: #245269; }
147
+
148
+ .attr-text-warning {
149
+ color: #8a6d3b; }
150
+
151
+ a.attr-text-warning:hover, a.attr-text-warning:focus {
152
+ color: #66512c; }
153
+
154
+ .attr-text-danger {
155
+ color: #a94442; }
156
+
157
+ a.attr-text-danger:hover, a.attr-text-danger:focus {
158
+ color: #843534; }
159
+
160
+ .attr-bg-primary {
161
+ color: #fff;
162
+ background-color: #337ab7; }
163
+
164
+ a.attr-bg-primary:hover, a.attr-bg-primary:focus {
165
+ background-color: #286090; }
166
+
167
+ .attr-bg-success {
168
+ background-color: #dff0d8; }
169
+
170
+ a.attr-bg-success:hover, a.attr-bg-success:focus {
171
+ background-color: #c1e2b3; }
172
+
173
+ .attr-bg-info {
174
+ background-color: #d9edf7; }
175
+
176
+ a.attr-bg-info:hover, a.attr-bg-info:focus {
177
+ background-color: #afd9ee; }
178
+
179
+ .attr-bg-warning {
180
+ background-color: #fcf8e3; }
181
+
182
+ a.attr-bg-warning:hover, a.attr-bg-warning:focus {
183
+ background-color: #f7ecb5; }
184
+
185
+ .attr-bg-danger {
186
+ background-color: #f2dede; }
187
+
188
+ a.attr-bg-danger:hover, a.attr-bg-danger:focus {
189
+ background-color: #e4b9b9; }
190
+
191
+ .attr-page-header {
192
+ padding-bottom: 9px;
193
+ margin: 40px 0 20px;
194
+ border-bottom: 1px solid #eee; }
195
+
196
+ .attr-list-unstyled {
197
+ padding-left: 0;
198
+ list-style: none; }
199
+
200
+ .attr-list-inline {
201
+ padding-left: 0;
202
+ margin-left: -5px;
203
+ list-style: none; }
204
+
205
+ .attr-list-inline > li {
206
+ display: inline-block;
207
+ padding-right: 5px;
208
+ padding-left: 5px; }
209
+
210
+ @media (min-width: 768px) {
211
+ .attr-dl-horizontal dt {
212
+ float: left;
213
+ width: 160px;
214
+ overflow: hidden;
215
+ clear: left;
216
+ text-align: right;
217
+ -o-text-overflow: ellipsis;
218
+ text-overflow: ellipsis;
219
+ white-space: nowrap; }
220
+ .attr-dl-horizontal dd {
221
+ margin-left: 180px; } }
222
+
223
+ .attr-initialism {
224
+ font-size: 90%;
225
+ text-transform: uppercase; }
226
+
227
+ .attr-pre-scrollable {
228
+ max-height: 340px;
229
+ overflow-y: scroll; }
230
+
231
+ .attr-container {
232
+ padding-right: 15px;
233
+ padding-left: 15px;
234
+ margin-right: auto;
235
+ margin-left: auto; }
236
+
237
+ @media (min-width: 768px) {
238
+ .attr-container {
239
+ width: 750px; } }
240
+
241
+ @media (min-width: 992px) {
242
+ .attr-container {
243
+ width: 970px; } }
244
+
245
+ @media (min-width: 1200px) {
246
+ .attr-container {
247
+ width: 1170px; } }
248
+
249
+ .attr-container-fluid {
250
+ padding-right: 15px;
251
+ padding-left: 15px;
252
+ margin-right: auto;
253
+ margin-left: auto; }
254
+
255
+ .attr-row {
256
+ margin-right: -15px;
257
+ margin-left: -15px; }
258
+
259
+ .attr-col-xs-1, .attr-col-sm-1, .attr-col-md-1, .attr-col-lg-1, .attr-col-xs-2, .attr-col-sm-2, .attr-col-md-2, .attr-col-lg-2, .attr-col-xs-3, .attr-col-sm-3, .attr-col-md-3, .attr-col-lg-3, .attr-col-xs-4, .attr-col-sm-4, .attr-col-md-4, .attr-col-lg-4, .attr-col-xs-5, .attr-col-sm-5, .attr-col-md-5, .attr-col-lg-5, .attr-col-xs-6, .attr-col-sm-6, .attr-col-md-6, .attr-col-lg-6, .attr-col-xs-7, .attr-col-sm-7, .attr-col-md-7, .attr-col-lg-7, .attr-col-xs-8, .attr-col-sm-8, .attr-col-md-8, .attr-col-lg-8, .attr-col-xs-9, .attr-col-sm-9, .attr-col-md-9, .attr-col-lg-9, .attr-col-xs-10, .attr-col-sm-10, .attr-col-md-10, .attr-col-lg-10, .attr-col-xs-11, .attr-col-sm-11, .attr-col-md-11, .attr-col-lg-11, .attr-col-xs-12, .attr-col-sm-12, .attr-col-md-12, .attr-col-lg-12 {
260
+ position: relative;
261
+ min-height: 1px;
262
+ padding-right: 15px;
263
+ padding-left: 15px; }
264
+
265
+ .attr-col-xs-1, .attr-col-xs-2, .attr-col-xs-3, .attr-col-xs-4, .attr-col-xs-5, .attr-col-xs-6, .attr-col-xs-7, .attr-col-xs-8, .attr-col-xs-9, .attr-col-xs-10, .attr-col-xs-11, .attr-col-xs-12 {
266
+ float: left; }
267
+
268
+ .attr-col-xs-12 {
269
+ width: 100%; }
270
+
271
+ .attr-col-xs-11 {
272
+ width: 91.66666667%; }
273
+
274
+ .attr-col-xs-10 {
275
+ width: 83.33333333%; }
276
+
277
+ .attr-col-xs-9 {
278
+ width: 75%; }
279
+
280
+ .attr-col-xs-8 {
281
+ width: 66.66666667%; }
282
+
283
+ .attr-col-xs-7 {
284
+ width: 58.33333333%; }
285
+
286
+ .attr-col-xs-6 {
287
+ width: 50%; }
288
+
289
+ .attr-col-xs-5 {
290
+ width: 41.66666667%; }
291
+
292
+ .attr-col-xs-4 {
293
+ width: 33.33333333%; }
294
+
295
+ .attr-col-xs-3 {
296
+ width: 25%; }
297
+
298
+ .attr-col-xs-2 {
299
+ width: 16.66666667%; }
300
+
301
+ .attr-col-xs-1 {
302
+ width: 8.33333333%; }
303
+
304
+ .attr-col-xs-pull-12 {
305
+ right: 100%; }
306
+
307
+ .attr-col-xs-pull-11 {
308
+ right: 91.66666667%; }
309
+
310
+ .attr-col-xs-pull-10 {
311
+ right: 83.33333333%; }
312
+
313
+ .attr-col-xs-pull-9 {
314
+ right: 75%; }
315
+
316
+ .attr-col-xs-pull-8 {
317
+ right: 66.66666667%; }
318
+
319
+ .attr-col-xs-pull-7 {
320
+ right: 58.33333333%; }
321
+
322
+ .attr-col-xs-pull-6 {
323
+ right: 50%; }
324
+
325
+ .attr-col-xs-pull-5 {
326
+ right: 41.66666667%; }
327
+
328
+ .attr-col-xs-pull-4 {
329
+ right: 33.33333333%; }
330
+
331
+ .attr-col-xs-pull-3 {
332
+ right: 25%; }
333
+
334
+ .attr-col-xs-pull-2 {
335
+ right: 16.66666667%; }
336
+
337
+ .attr-col-xs-pull-1 {
338
+ right: 8.33333333%; }
339
+
340
+ .attr-col-xs-pull-0 {
341
+ right: auto; }
342
+
343
+ .attr-col-xs-push-12 {
344
+ left: 100%; }
345
+
346
+ .attr-col-xs-push-11 {
347
+ left: 91.66666667%; }
348
+
349
+ .attr-col-xs-push-10 {
350
+ left: 83.33333333%; }
351
+
352
+ .attr-col-xs-push-9 {
353
+ left: 75%; }
354
+
355
+ .attr-col-xs-push-8 {
356
+ left: 66.66666667%; }
357
+
358
+ .attr-col-xs-push-7 {
359
+ left: 58.33333333%; }
360
+
361
+ .attr-col-xs-push-6 {
362
+ left: 50%; }
363
+
364
+ .attr-col-xs-push-5 {
365
+ left: 41.66666667%; }
366
+
367
+ .attr-col-xs-push-4 {
368
+ left: 33.33333333%; }
369
+
370
+ .attr-col-xs-push-3 {
371
+ left: 25%; }
372
+
373
+ .attr-col-xs-push-2 {
374
+ left: 16.66666667%; }
375
+
376
+ .attr-col-xs-push-1 {
377
+ left: 8.33333333%; }
378
+
379
+ .attr-col-xs-push-0 {
380
+ left: auto; }
381
+
382
+ .attr-col-xs-offset-12 {
383
+ margin-left: 100%; }
384
+
385
+ .attr-col-xs-offset-11 {
386
+ margin-left: 91.66666667%; }
387
+
388
+ .attr-col-xs-offset-10 {
389
+ margin-left: 83.33333333%; }
390
+
391
+ .attr-col-xs-offset-9 {
392
+ margin-left: 75%; }
393
+
394
+ .attr-col-xs-offset-8 {
395
+ margin-left: 66.66666667%; }
396
+
397
+ .attr-col-xs-offset-7 {
398
+ margin-left: 58.33333333%; }
399
+
400
+ .attr-col-xs-offset-6 {
401
+ margin-left: 50%; }
402
+
403
+ .attr-col-xs-offset-5 {
404
+ margin-left: 41.66666667%; }
405
+
406
+ .attr-col-xs-offset-4 {
407
+ margin-left: 33.33333333%; }
408
+
409
+ .attr-col-xs-offset-3 {
410
+ margin-left: 25%; }
411
+
412
+ .attr-col-xs-offset-2 {
413
+ margin-left: 16.66666667%; }
414
+
415
+ .attr-col-xs-offset-1 {
416
+ margin-left: 8.33333333%; }
417
+
418
+ .attr-col-xs-offset-0 {
419
+ margin-left: 0; }
420
+
421
+ @media (min-width: 768px) {
422
+ .attr-col-sm-1, .attr-col-sm-2, .attr-col-sm-3, .attr-col-sm-4, .attr-col-sm-5, .attr-col-sm-6, .attr-col-sm-7, .attr-col-sm-8, .attr-col-sm-9, .attr-col-sm-10, .attr-col-sm-11, .attr-col-sm-12 {
423
+ float: left; }
424
+ .attr-col-sm-12 {
425
+ width: 100%; }
426
+ .attr-col-sm-11 {
427
+ width: 91.66666667%; }
428
+ .attr-col-sm-10 {
429
+ width: 83.33333333%; }
430
+ .attr-col-sm-9 {
431
+ width: 75%; }
432
+ .attr-col-sm-8 {
433
+ width: 66.66666667%; }
434
+ .attr-col-sm-7 {
435
+ width: 58.33333333%; }
436
+ .attr-col-sm-6 {
437
+ width: 50%; }
438
+ .attr-col-sm-5 {
439
+ width: 41.66666667%; }
440
+ .attr-col-sm-4 {
441
+ width: 33.33333333%; }
442
+ .attr-col-sm-3 {
443
+ width: 25%; }
444
+ .attr-col-sm-2 {
445
+ width: 16.66666667%; }
446
+ .attr-col-sm-1 {
447
+ width: 8.33333333%; }
448
+ .attr-col-sm-pull-12 {
449
+ right: 100%; }
450
+ .attr-col-sm-pull-11 {
451
+ right: 91.66666667%; }
452
+ .attr-col-sm-pull-10 {
453
+ right: 83.33333333%; }
454
+ .attr-col-sm-pull-9 {
455
+ right: 75%; }
456
+ .attr-col-sm-pull-8 {
457
+ right: 66.66666667%; }
458
+ .attr-col-sm-pull-7 {
459
+ right: 58.33333333%; }
460
+ .attr-col-sm-pull-6 {
461
+ right: 50%; }
462
+ .attr-col-sm-pull-5 {
463
+ right: 41.66666667%; }
464
+ .attr-col-sm-pull-4 {
465
+ right: 33.33333333%; }
466
+ .attr-col-sm-pull-3 {
467
+ right: 25%; }
468
+ .attr-col-sm-pull-2 {
469
+ right: 16.66666667%; }
470
+ .attr-col-sm-pull-1 {
471
+ right: 8.33333333%; }
472
+ .attr-col-sm-pull-0 {
473
+ right: auto; }
474
+ .attr-col-sm-push-12 {
475
+ left: 100%; }
476
+ .attr-col-sm-push-11 {
477
+ left: 91.66666667%; }
478
+ .attr-col-sm-push-10 {
479
+ left: 83.33333333%; }
480
+ .attr-col-sm-push-9 {
481
+ left: 75%; }
482
+ .attr-col-sm-push-8 {
483
+ left: 66.66666667%; }
484
+ .attr-col-sm-push-7 {
485
+ left: 58.33333333%; }
486
+ .attr-col-sm-push-6 {
487
+ left: 50%; }
488
+ .attr-col-sm-push-5 {
489
+ left: 41.66666667%; }
490
+ .attr-col-sm-push-4 {
491
+ left: 33.33333333%; }
492
+ .attr-col-sm-push-3 {
493
+ left: 25%; }
494
+ .attr-col-sm-push-2 {
495
+ left: 16.66666667%; }
496
+ .attr-col-sm-push-1 {
497
+ left: 8.33333333%; }
498
+ .attr-col-sm-push-0 {
499
+ left: auto; }
500
+ .attr-col-sm-offset-12 {
501
+ margin-left: 100%; }
502
+ .attr-col-sm-offset-11 {
503
+ margin-left: 91.66666667%; }
504
+ .attr-col-sm-offset-10 {
505
+ margin-left: 83.33333333%; }
506
+ .attr-col-sm-offset-9 {
507
+ margin-left: 75%; }
508
+ .attr-col-sm-offset-8 {
509
+ margin-left: 66.66666667%; }
510
+ .attr-col-sm-offset-7 {
511
+ margin-left: 58.33333333%; }
512
+ .attr-col-sm-offset-6 {
513
+ margin-left: 50%; }
514
+ .attr-col-sm-offset-5 {
515
+ margin-left: 41.66666667%; }
516
+ .attr-col-sm-offset-4 {
517
+ margin-left: 33.33333333%; }
518
+ .attr-col-sm-offset-3 {
519
+ margin-left: 25%; }
520
+ .attr-col-sm-offset-2 {
521
+ margin-left: 16.66666667%; }
522
+ .attr-col-sm-offset-1 {
523
+ margin-left: 8.33333333%; }
524
+ .attr-col-sm-offset-0 {
525
+ margin-left: 0; } }
526
+
527
+ @media (min-width: 992px) {
528
+ .attr-col-md-1, .attr-col-md-2, .attr-col-md-3, .attr-col-md-4, .attr-col-md-5, .attr-col-md-6, .attr-col-md-7, .attr-col-md-8, .attr-col-md-9, .attr-col-md-10, .attr-col-md-11, .attr-col-md-12 {
529
+ float: left; }
530
+ .attr-col-md-12 {
531
+ width: 100%; }
532
+ .attr-col-md-11 {
533
+ width: 91.66666667%; }
534
+ .attr-col-md-10 {
535
+ width: 83.33333333%; }
536
+ .attr-col-md-9 {
537
+ width: 75%; }
538
+ .attr-col-md-8 {
539
+ width: 66.66666667%; }
540
+ .attr-col-md-7 {
541
+ width: 58.33333333%; }
542
+ .attr-col-md-6 {
543
+ width: 50%; }
544
+ .attr-col-md-5 {
545
+ width: 41.66666667%; }
546
+ .attr-col-md-4 {
547
+ width: 33.33333333%; }
548
+ .attr-col-md-3 {
549
+ width: 25%; }
550
+ .attr-col-md-2 {
551
+ width: 16.66666667%; }
552
+ .attr-col-md-1 {
553
+ width: 8.33333333%; }
554
+ .attr-col-md-pull-12 {
555
+ right: 100%; }
556
+ .attr-col-md-pull-11 {
557
+ right: 91.66666667%; }
558
+ .attr-col-md-pull-10 {
559
+ right: 83.33333333%; }
560
+ .attr-col-md-pull-9 {
561
+ right: 75%; }
562
+ .attr-col-md-pull-8 {
563
+ right: 66.66666667%; }
564
+ .attr-col-md-pull-7 {
565
+ right: 58.33333333%; }
566
+ .attr-col-md-pull-6 {
567
+ right: 50%; }
568
+ .attr-col-md-pull-5 {
569
+ right: 41.66666667%; }
570
+ .attr-col-md-pull-4 {
571
+ right: 33.33333333%; }
572
+ .attr-col-md-pull-3 {
573
+ right: 25%; }
574
+ .attr-col-md-pull-2 {
575
+ right: 16.66666667%; }
576
+ .attr-col-md-pull-1 {
577
+ right: 8.33333333%; }
578
+ .attr-col-md-pull-0 {
579
+ right: auto; }
580
+ .attr-col-md-push-12 {
581
+ left: 100%; }
582
+ .attr-col-md-push-11 {
583
+ left: 91.66666667%; }
584
+ .attr-col-md-push-10 {
585
+ left: 83.33333333%; }
586
+ .attr-col-md-push-9 {
587
+ left: 75%; }
588
+ .attr-col-md-push-8 {
589
+ left: 66.66666667%; }
590
+ .attr-col-md-push-7 {
591
+ left: 58.33333333%; }
592
+ .attr-col-md-push-6 {
593
+ left: 50%; }
594
+ .attr-col-md-push-5 {
595
+ left: 41.66666667%; }
596
+ .attr-col-md-push-4 {
597
+ left: 33.33333333%; }
598
+ .attr-col-md-push-3 {
599
+ left: 25%; }
600
+ .attr-col-md-push-2 {
601
+ left: 16.66666667%; }
602
+ .attr-col-md-push-1 {
603
+ left: 8.33333333%; }
604
+ .attr-col-md-push-0 {
605
+ left: auto; }
606
+ .attr-col-md-offset-12 {
607
+ margin-left: 100%; }
608
+ .attr-col-md-offset-11 {
609
+ margin-left: 91.66666667%; }
610
+ .attr-col-md-offset-10 {
611
+ margin-left: 83.33333333%; }
612
+ .attr-col-md-offset-9 {
613
+ margin-left: 75%; }
614
+ .attr-col-md-offset-8 {
615
+ margin-left: 66.66666667%; }
616
+ .attr-col-md-offset-7 {
617
+ margin-left: 58.33333333%; }
618
+ .attr-col-md-offset-6 {
619
+ margin-left: 50%; }
620
+ .attr-col-md-offset-5 {
621
+ margin-left: 41.66666667%; }
622
+ .attr-col-md-offset-4 {
623
+ margin-left: 33.33333333%; }
624
+ .attr-col-md-offset-3 {
625
+ margin-left: 25%; }
626
+ .attr-col-md-offset-2 {
627
+ margin-left: 16.66666667%; }
628
+ .attr-col-md-offset-1 {
629
+ margin-left: 8.33333333%; }
630
+ .attr-col-md-offset-0 {
631
+ margin-left: 0; } }
632
+
633
+ @media (min-width: 1200px) {
634
+ .attr-col-lg-1, .attr-col-lg-2, .attr-col-lg-3, .attr-col-lg-4, .attr-col-lg-5, .attr-col-lg-6, .attr-col-lg-7, .attr-col-lg-8, .attr-col-lg-9, .attr-col-lg-10, .attr-col-lg-11, .attr-col-lg-12 {
635
+ float: left; }
636
+ .attr-col-lg-12 {
637
+ width: 100%; }
638
+ .attr-col-lg-11 {
639
+ width: 91.66666667%; }
640
+ .attr-col-lg-10 {
641
+ width: 83.33333333%; }
642
+ .attr-col-lg-9 {
643
+ width: 75%; }
644
+ .attr-col-lg-8 {
645
+ width: 66.66666667%; }
646
+ .attr-col-lg-7 {
647
+ width: 58.33333333%; }
648
+ .attr-col-lg-6 {
649
+ width: 50%; }
650
+ .attr-col-lg-5 {
651
+ width: 41.66666667%; }
652
+ .attr-col-lg-4 {
653
+ width: 33.33333333%; }
654
+ .attr-col-lg-3 {
655
+ width: 25%; }
656
+ .attr-col-lg-2 {
657
+ width: 16.66666667%; }
658
+ .attr-col-lg-1 {
659
+ width: 8.33333333%; }
660
+ .attr-col-lg-pull-12 {
661
+ right: 100%; }
662
+ .attr-col-lg-pull-11 {
663
+ right: 91.66666667%; }
664
+ .attr-col-lg-pull-10 {
665
+ right: 83.33333333%; }
666
+ .attr-col-lg-pull-9 {
667
+ right: 75%; }
668
+ .attr-col-lg-pull-8 {
669
+ right: 66.66666667%; }
670
+ .attr-col-lg-pull-7 {
671
+ right: 58.33333333%; }
672
+ .attr-col-lg-pull-6 {
673
+ right: 50%; }
674
+ .attr-col-lg-pull-5 {
675
+ right: 41.66666667%; }
676
+ .attr-col-lg-pull-4 {
677
+ right: 33.33333333%; }
678
+ .attr-col-lg-pull-3 {
679
+ right: 25%; }
680
+ .attr-col-lg-pull-2 {
681
+ right: 16.66666667%; }
682
+ .attr-col-lg-pull-1 {
683
+ right: 8.33333333%; }
684
+ .attr-col-lg-pull-0 {
685
+ right: auto; }
686
+ .attr-col-lg-push-12 {
687
+ left: 100%; }
688
+ .attr-col-lg-push-11 {
689
+ left: 91.66666667%; }
690
+ .attr-col-lg-push-10 {
691
+ left: 83.33333333%; }
692
+ .attr-col-lg-push-9 {
693
+ left: 75%; }
694
+ .attr-col-lg-push-8 {
695
+ left: 66.66666667%; }
696
+ .attr-col-lg-push-7 {
697
+ left: 58.33333333%; }
698
+ .attr-col-lg-push-6 {
699
+ left: 50%; }
700
+ .attr-col-lg-push-5 {
701
+ left: 41.66666667%; }
702
+ .attr-col-lg-push-4 {
703
+ left: 33.33333333%; }
704
+ .attr-col-lg-push-3 {
705
+ left: 25%; }
706
+ .attr-col-lg-push-2 {
707
+ left: 16.66666667%; }
708
+ .attr-col-lg-push-1 {
709
+ left: 8.33333333%; }
710
+ .attr-col-lg-push-0 {
711
+ left: auto; }
712
+ .attr-col-lg-offset-12 {
713
+ margin-left: 100%; }
714
+ .attr-col-lg-offset-11 {
715
+ margin-left: 91.66666667%; }
716
+ .attr-col-lg-offset-10 {
717
+ margin-left: 83.33333333%; }
718
+ .attr-col-lg-offset-9 {
719
+ margin-left: 75%; }
720
+ .attr-col-lg-offset-8 {
721
+ margin-left: 66.66666667%; }
722
+ .attr-col-lg-offset-7 {
723
+ margin-left: 58.33333333%; }
724
+ .attr-col-lg-offset-6 {
725
+ margin-left: 50%; }
726
+ .attr-col-lg-offset-5 {
727
+ margin-left: 41.66666667%; }
728
+ .attr-col-lg-offset-4 {
729
+ margin-left: 33.33333333%; }
730
+ .attr-col-lg-offset-3 {
731
+ margin-left: 25%; }
732
+ .attr-col-lg-offset-2 {
733
+ margin-left: 16.66666667%; }
734
+ .attr-col-lg-offset-1 {
735
+ margin-left: 8.33333333%; }
736
+ .attr-col-lg-offset-0 {
737
+ margin-left: 0; } }
738
+
739
+ .attr-table {
740
+ width: 100%;
741
+ max-width: 100%;
742
+ margin-bottom: 20px; }
743
+
744
+ .attr-table > thead > tr > th, .attr-table > tbody > tr > th, .attr-table > tfoot > tr > th, .attr-table > thead > tr > td, .attr-table > tbody > tr > td, .attr-table > tfoot > tr > td {
745
+ padding: 8px;
746
+ line-height: 1.42857143;
747
+ vertical-align: top;
748
+ border-top: 1px solid #ddd; }
749
+
750
+ .attr-table > thead > tr > th {
751
+ vertical-align: bottom;
752
+ border-bottom: 2px solid #ddd; }
753
+
754
+ .attr-table > caption + thead > tr:first-child > th, .attr-table > colgroup + thead > tr:first-child > th, .attr-table > thead:first-child > tr:first-child > th, .attr-table > caption + thead > tr:first-child > td, .attr-table > colgroup + thead > tr:first-child > td, .attr-table > thead:first-child > tr:first-child > td {
755
+ border-top: 0; }
756
+
757
+ .attr-table > tbody + tbody {
758
+ border-top: 2px solid #ddd; }
759
+
760
+ .attr-table .attr-table {
761
+ background-color: #fff; }
762
+
763
+ .attr-table-condensed > thead > tr > th, .attr-table-condensed > tbody > tr > th, .attr-table-condensed > tfoot > tr > th, .attr-table-condensed > thead > tr > td, .attr-table-condensed > tbody > tr > td, .attr-table-condensed > tfoot > tr > td {
764
+ padding: 5px; }
765
+
766
+ .attr-table-bordered {
767
+ border: 1px solid #ddd; }
768
+
769
+ .attr-table-bordered > thead > tr > th, .attr-table-bordered > tbody > tr > th, .attr-table-bordered > tfoot > tr > th, .attr-table-bordered > thead > tr > td, .attr-table-bordered > tbody > tr > td, .attr-table-bordered > tfoot > tr > td {
770
+ border: 1px solid #ddd; }
771
+
772
+ .attr-table-bordered > thead > tr > th, .attr-table-bordered > thead > tr > td {
773
+ border-bottom-width: 2px; }
774
+
775
+ .attr-table-striped > tbody > tr:nth-of-type(odd) {
776
+ background-color: #f9f9f9; }
777
+
778
+ .attr-table-hover > tbody > tr:hover {
779
+ background-color: #f5f5f5; }
780
+
781
+ .attr-table > thead > tr > td.attr-active, .attr-table > tbody > tr > td.attr-active, .attr-table > tfoot > tr > td.attr-active, .attr-table > thead > tr > th.attr-active, .attr-table > tbody > tr > th.attr-active, .attr-table > tfoot > tr > th.attr-active, .attr-table > thead > tr.attr-active > td, .attr-table > tbody > tr.attr-active > td, .attr-table > tfoot > tr.attr-active > td, .attr-table > thead > tr.attr-active > th, .attr-table > tbody > tr.attr-active > th, .attr-table > tfoot > tr.attr-active > th {
782
+ background-color: #f5f5f5; }
783
+
784
+ .attr-table-hover > tbody > tr > td.attr-active:hover, .attr-table-hover > tbody > tr > th.attr-active:hover, .attr-table-hover > tbody > tr.attr-active:hover > td, .attr-table-hover > tbody > tr:hover > .attr-active, .attr-table-hover > tbody > tr.attr-active:hover > th {
785
+ background-color: #e8e8e8; }
786
+
787
+ .attr-table > thead > tr > td.attr-success, .attr-table > tbody > tr > td.attr-success, .attr-table > tfoot > tr > td.attr-success, .attr-table > thead > tr > th.attr-success, .attr-table > tbody > tr > th.attr-success, .attr-table > tfoot > tr > th.attr-success, .attr-table > thead > tr.attr-success > td, .attr-table > tbody > tr.attr-success > td, .attr-table > tfoot > tr.attr-success > td, .attr-table > thead > tr.attr-success > th, .attr-table > tbody > tr.attr-success > th, .attr-table > tfoot > tr.attr-success > th {
788
+ background-color: #dff0d8; }
789
+
790
+ .attr-table-hover > tbody > tr > td.attr-success:hover, .attr-table-hover > tbody > tr > th.attr-success:hover, .attr-table-hover > tbody > tr.attr-success:hover > td, .attr-table-hover > tbody > tr:hover > .attr-success, .attr-table-hover > tbody > tr.attr-success:hover > th {
791
+ background-color: #d0e9c6; }
792
+
793
+ .attr-table > thead > tr > td.attr-info, .attr-table > tbody > tr > td.attr-info, .attr-table > tfoot > tr > td.attr-info, .attr-table > thead > tr > th.attr-info, .attr-table > tbody > tr > th.attr-info, .attr-table > tfoot > tr > th.attr-info, .attr-table > thead > tr.attr-info > td, .attr-table > tbody > tr.attr-info > td, .attr-table > tfoot > tr.attr-info > td, .attr-table > thead > tr.attr-info > th, .attr-table > tbody > tr.attr-info > th, .attr-table > tfoot > tr.attr-info > th {
794
+ background-color: #d9edf7; }
795
+
796
+ .attr-table-hover > tbody > tr > td.attr-info:hover, .attr-table-hover > tbody > tr > th.attr-info:hover, .attr-table-hover > tbody > tr.attr-info:hover > td, .attr-table-hover > tbody > tr:hover > .attr-info, .attr-table-hover > tbody > tr.attr-info:hover > th {
797
+ background-color: #c4e3f3; }
798
+
799
+ .attr-table > thead > tr > td.attr-warning, .attr-table > tbody > tr > td.attr-warning, .attr-table > tfoot > tr > td.attr-warning, .attr-table > thead > tr > th.attr-warning, .attr-table > tbody > tr > th.attr-warning, .attr-table > tfoot > tr > th.attr-warning, .attr-table > thead > tr.attr-warning > td, .attr-table > tbody > tr.attr-warning > td, .attr-table > tfoot > tr.attr-warning > td, .attr-table > thead > tr.attr-warning > th, .attr-table > tbody > tr.attr-warning > th, .attr-table > tfoot > tr.attr-warning > th {
800
+ background-color: #fcf8e3; }
801
+
802
+ .attr-table-hover > tbody > tr > td.attr-warning:hover, .attr-table-hover > tbody > tr > th.attr-warning:hover, .attr-table-hover > tbody > tr.attr-warning:hover > td, .attr-table-hover > tbody > tr:hover > .attr-warning, .attr-table-hover > tbody > tr.attr-warning:hover > th {
803
+ background-color: #faf2cc; }
804
+
805
+ .attr-table > thead > tr > td.attr-danger, .attr-table > tbody > tr > td.attr-danger, .attr-table > tfoot > tr > td.attr-danger, .attr-table > thead > tr > th.attr-danger, .attr-table > tbody > tr > th.attr-danger, .attr-table > tfoot > tr > th.attr-danger, .attr-table > thead > tr.attr-danger > td, .attr-table > tbody > tr.attr-danger > td, .attr-table > tfoot > tr.attr-danger > td, .attr-table > thead > tr.attr-danger > th, .attr-table > tbody > tr.attr-danger > th, .attr-table > tfoot > tr.attr-danger > th {
806
+ background-color: #f2dede; }
807
+
808
+ .attr-table-hover > tbody > tr > td.attr-danger:hover, .attr-table-hover > tbody > tr > th.attr-danger:hover, .attr-table-hover > tbody > tr.attr-danger:hover > td, .attr-table-hover > tbody > tr:hover > .attr-danger, .attr-table-hover > tbody > tr.attr-danger:hover > th {
809
+ background-color: #ebcccc; }
810
+
811
+ .attr-table-responsive {
812
+ min-height: .01%;
813
+ overflow-x: auto; }
814
+
815
+ @media screen and (max-width: 767px) {
816
+ .attr-table-responsive {
817
+ width: 100%;
818
+ margin-bottom: 15px;
819
+ overflow-y: hidden;
820
+ -ms-overflow-style: -ms-autohiding-scrollbar;
821
+ border: 1px solid #ddd; }
822
+ .attr-table-responsive > .attr-table {
823
+ margin-bottom: 0; }
824
+ .attr-table-responsive > .attr-table > thead > tr > th, .attr-table-responsive > .attr-table > tbody > tr > th, .attr-table-responsive > .attr-table > tfoot > tr > th, .attr-table-responsive > .attr-table > thead > tr > td, .attr-table-responsive > .attr-table > tbody > tr > td, .attr-table-responsive > .attr-table > tfoot > tr > td {
825
+ white-space: nowrap; }
826
+ .attr-table-responsive > .attr-table-bordered {
827
+ border: 0; }
828
+ .attr-table-responsive > .attr-table-bordered > thead > tr > th:first-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > th:first-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:first-child, .attr-table-responsive > .attr-table-bordered > thead > tr > td:first-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > td:first-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:first-child {
829
+ border-left: 0; }
830
+ .attr-table-responsive > .attr-table-bordered > thead > tr > th:last-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > th:last-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:last-child, .attr-table-responsive > .attr-table-bordered > thead > tr > td:last-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > td:last-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:last-child {
831
+ border-right: 0; }
832
+ .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > th, .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > th, .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > td, .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > td {
833
+ border-bottom: 0; } }
834
+
835
+ .attr-form-control {
836
+ display: block;
837
+ width: 100%;
838
+ height: 34px;
839
+ padding: 6px 12px;
840
+ font-size: 14px;
841
+ line-height: 1.42857143;
842
+ color: #555;
843
+ background-color: #fff;
844
+ background-image: none;
845
+ border: 1px solid #ccc;
846
+ border-radius: 4px;
847
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
848
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
849
+ -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
850
+ -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
851
+ transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
852
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
853
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; }
854
+
855
+ .attr-form-control:focus {
856
+ border-color: #66afe9;
857
+ outline: 0;
858
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
859
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
860
+
861
+ .attr-form-control::-moz-placeholder {
862
+ color: #999;
863
+ opacity: 1; }
864
+
865
+ .attr-form-control:-ms-input-placeholder {
866
+ color: #999; }
867
+
868
+ .attr-form-control::-webkit-input-placeholder {
869
+ color: #999; }
870
+
871
+ .attr-form-control::-ms-expand {
872
+ background-color: transparent;
873
+ border: 0; }
874
+
875
+ .attr-form-control[disabled], .attr-form-control[readonly], fieldset[disabled] .attr-form-control {
876
+ background-color: #eee;
877
+ opacity: 1; }
878
+
879
+ .attr-form-control[disabled], fieldset[disabled] .attr-form-control {
880
+ cursor: not-allowed; }
881
+
882
+ textarea.attr-form-control {
883
+ height: auto; }
884
+
885
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
886
+ input[type="date"].attr-form-control, input[type="time"].attr-form-control, input[type="datetime-local"].attr-form-control, input[type="month"].attr-form-control {
887
+ line-height: 34px; }
888
+ input[type="date"].attr-input-sm, input[type="time"].attr-input-sm, input[type="datetime-local"].attr-input-sm, input[type="month"].attr-input-sm, .attr-input-group-sm input[type="date"], .attr-input-group-sm input[type="time"], .attr-input-group-sm input[type="datetime-local"], .attr-input-group-sm input[type="month"] {
889
+ line-height: 30px; }
890
+ input[type="date"].attr-input-lg, input[type="time"].attr-input-lg, input[type="datetime-local"].attr-input-lg, input[type="month"].attr-input-lg, .attr-input-group-lg input[type="date"], .attr-input-group-lg input[type="time"], .attr-input-group-lg input[type="datetime-local"], .attr-input-group-lg input[type="month"] {
891
+ line-height: 46px; } }
892
+
893
+ .attr-form-group {
894
+ margin-bottom: 15px; }
895
+
896
+ .attr-radio, .attr-checkbox {
897
+ position: relative;
898
+ display: block;
899
+ margin-top: 10px;
900
+ margin-bottom: 10px; }
901
+
902
+ .attr-radio label, .attr-checkbox label {
903
+ min-height: 20px;
904
+ padding-left: 20px;
905
+ margin-bottom: 0;
906
+ font-weight: normal;
907
+ cursor: pointer; }
908
+
909
+ .attr-radio input[type="radio"], .attr-radio-inline input[type="radio"], .attr-checkbox input[type="checkbox"], .attr-checkbox-inline input[type="checkbox"] {
910
+ position: absolute;
911
+ margin-top: 4px \9;
912
+ margin-left: -20px; }
913
+
914
+ .attr-radio + .attr-radio, .attr-checkbox + .attr-checkbox {
915
+ margin-top: -5px; }
916
+
917
+ .attr-radio-inline, .attr-checkbox-inline {
918
+ position: relative;
919
+ display: inline-block;
920
+ padding-left: 20px;
921
+ margin-bottom: 0;
922
+ font-weight: normal;
923
+ vertical-align: middle;
924
+ cursor: pointer; }
925
+
926
+ .attr-radio-inline + .attr-radio-inline, .attr-checkbox-inline + .attr-checkbox-inline {
927
+ margin-top: 0;
928
+ margin-left: 10px; }
929
+
930
+ input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].attr-disabled, input[type="checkbox"].attr-disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
931
+ cursor: not-allowed; }
932
+
933
+ .attr-radio-inline.attr-disabled, .attr-checkbox-inline.attr-disabled, fieldset[disabled] .attr-radio-inline, fieldset[disabled] .attr-checkbox-inline {
934
+ cursor: not-allowed; }
935
+
936
+ .attr-radio.attr-disabled label, .attr-checkbox.attr-disabled label, fieldset[disabled] .attr-radio label, fieldset[disabled] .attr-checkbox label {
937
+ cursor: not-allowed; }
938
+
939
+ .attr-form-control-static {
940
+ min-height: 34px;
941
+ padding-top: 7px;
942
+ padding-bottom: 7px;
943
+ margin-bottom: 0; }
944
+
945
+ .attr-form-control-static.attr-input-lg, .attr-form-control-static.attr-input-sm {
946
+ padding-right: 0;
947
+ padding-left: 0; }
948
+
949
+ .attr-input-sm {
950
+ height: 30px;
951
+ padding: 5px 10px;
952
+ font-size: 12px;
953
+ line-height: 1.5;
954
+ border-radius: 3px; }
955
+
956
+ select.attr-input-sm {
957
+ height: 30px;
958
+ line-height: 30px; }
959
+
960
+ textarea.attr-input-sm, select[multiple].attr-input-sm {
961
+ height: auto; }
962
+
963
+ .attr-form-group-sm .attr-form-control {
964
+ height: 30px;
965
+ padding: 5px 10px;
966
+ font-size: 12px;
967
+ line-height: 1.5;
968
+ border-radius: 3px; }
969
+
970
+ .attr-form-group-sm select.attr-form-control {
971
+ height: 30px;
972
+ line-height: 30px; }
973
+
974
+ .attr-form-group-sm textarea.attr-form-control, .attr-form-group-sm select[multiple].attr-form-control {
975
+ height: auto; }
976
+
977
+ .attr-form-group-sm .attr-form-control-static {
978
+ height: 30px;
979
+ min-height: 32px;
980
+ padding: 6px 10px;
981
+ font-size: 12px;
982
+ line-height: 1.5; }
983
+
984
+ .attr-input-lg {
985
+ height: 46px;
986
+ padding: 10px 16px;
987
+ font-size: 18px;
988
+ line-height: 1.3333333;
989
+ border-radius: 6px; }
990
+
991
+ select.attr-input-lg {
992
+ height: 46px;
993
+ line-height: 46px; }
994
+
995
+ textarea.attr-input-lg, select[multiple].attr-input-lg {
996
+ height: auto; }
997
+
998
+ .attr-form-group-lg .attr-form-control {
999
+ height: 46px;
1000
+ padding: 10px 16px;
1001
+ font-size: 18px;
1002
+ line-height: 1.3333333;
1003
+ border-radius: 6px; }
1004
+
1005
+ .attr-form-group-lg select.attr-form-control {
1006
+ height: 46px;
1007
+ line-height: 46px; }
1008
+
1009
+ .attr-form-group-lg textarea.attr-form-control, .attr-form-group-lg select[multiple].attr-form-control {
1010
+ height: auto; }
1011
+
1012
+ .attr-form-group-lg .attr-form-control-static {
1013
+ height: 46px;
1014
+ min-height: 38px;
1015
+ padding: 11px 16px;
1016
+ font-size: 18px;
1017
+ line-height: 1.3333333; }
1018
+
1019
+ .attr-has-feedback {
1020
+ position: relative; }
1021
+
1022
+ .attr-has-feedback .attr-form-control {
1023
+ padding-right: 42.5px; }
1024
+
1025
+ .attr-form-control-feedback {
1026
+ position: absolute;
1027
+ top: 0;
1028
+ right: 0;
1029
+ z-index: 2;
1030
+ display: block;
1031
+ width: 34px;
1032
+ height: 34px;
1033
+ line-height: 34px;
1034
+ text-align: center;
1035
+ pointer-events: none; }
1036
+
1037
+ .attr-input-lg + .attr-form-control-feedback, .attr-input-group-lg + .attr-form-control-feedback, .attr-form-group-lg .attr-form-control + .attr-form-control-feedback {
1038
+ width: 46px;
1039
+ height: 46px;
1040
+ line-height: 46px; }
1041
+
1042
+ .attr-input-sm + .attr-form-control-feedback, .attr-input-group-sm + .attr-form-control-feedback, .attr-form-group-sm .attr-form-control + .attr-form-control-feedback {
1043
+ width: 30px;
1044
+ height: 30px;
1045
+ line-height: 30px; }
1046
+
1047
+ .attr-has-success .attr-help-block, .attr-has-success .attr-control-label, .attr-has-success .attr-radio, .attr-has-success .attr-checkbox, .attr-has-success .attr-radio-inline, .attr-has-success .attr-checkbox-inline, .attr-has-success.attr-radio label, .attr-has-success.attr-checkbox label, .attr-has-success.attr-radio-inline label, .attr-has-success.attr-checkbox-inline label {
1048
+ color: #3c763d; }
1049
+
1050
+ .attr-has-success .attr-form-control {
1051
+ border-color: #3c763d;
1052
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1053
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1054
+
1055
+ .attr-has-success .attr-form-control:focus {
1056
+ border-color: #2b542c;
1057
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1058
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
1059
+
1060
+ .attr-has-success .attr-input-group-addon {
1061
+ color: #3c763d;
1062
+ background-color: #dff0d8;
1063
+ border-color: #3c763d; }
1064
+
1065
+ .attr-has-success .attr-form-control-feedback {
1066
+ color: #3c763d; }
1067
+
1068
+ .attr-has-warning .attr-help-block, .attr-has-warning .attr-control-label, .attr-has-warning .attr-radio, .attr-has-warning .attr-checkbox, .attr-has-warning .attr-radio-inline, .attr-has-warning .attr-checkbox-inline, .attr-has-warning.attr-radio label, .attr-has-warning.attr-checkbox label, .attr-has-warning.attr-radio-inline label, .attr-has-warning.attr-checkbox-inline label {
1069
+ color: #8a6d3b; }
1070
+
1071
+ .attr-has-warning .attr-form-control {
1072
+ border-color: #8a6d3b;
1073
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1074
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1075
+
1076
+ .attr-has-warning .attr-form-control:focus {
1077
+ border-color: #66512c;
1078
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1079
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
1080
+
1081
+ .attr-has-warning .attr-input-group-addon {
1082
+ color: #8a6d3b;
1083
+ background-color: #fcf8e3;
1084
+ border-color: #8a6d3b; }
1085
+
1086
+ .attr-has-warning .attr-form-control-feedback {
1087
+ color: #8a6d3b; }
1088
+
1089
+ .attr-has-error .attr-help-block, .attr-has-error .attr-control-label, .attr-has-error .attr-radio, .attr-has-error .attr-checkbox, .attr-has-error .attr-radio-inline, .attr-has-error .attr-checkbox-inline, .attr-has-error.attr-radio label, .attr-has-error.attr-checkbox label, .attr-has-error.attr-radio-inline label, .attr-has-error.attr-checkbox-inline label {
1090
+ color: #a94442; }
1091
+
1092
+ .attr-has-error .attr-form-control {
1093
+ border-color: #a94442;
1094
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1095
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1096
+
1097
+ .attr-has-error .attr-form-control:focus {
1098
+ border-color: #843534;
1099
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1100
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
1101
+
1102
+ .attr-has-error .attr-input-group-addon {
1103
+ color: #a94442;
1104
+ background-color: #f2dede;
1105
+ border-color: #a94442; }
1106
+
1107
+ .attr-has-error .attr-form-control-feedback {
1108
+ color: #a94442; }
1109
+
1110
+ .attr-has-feedback label ~ .attr-form-control-feedback {
1111
+ top: 25px; }
1112
+
1113
+ .attr-has-feedback label.attr-sr-only ~ .attr-form-control-feedback {
1114
+ top: 0; }
1115
+
1116
+ .attr-help-block {
1117
+ display: block;
1118
+ margin-top: 5px;
1119
+ margin-bottom: 10px;
1120
+ color: #737373; }
1121
+
1122
+ @media (min-width: 768px) {
1123
+ .attr-form-inline .attr-form-group {
1124
+ display: inline-block;
1125
+ margin-bottom: 0;
1126
+ vertical-align: middle; }
1127
+ .attr-form-inline .attr-form-control {
1128
+ display: inline-block;
1129
+ width: auto;
1130
+ vertical-align: middle; }
1131
+ .attr-form-inline .attr-form-control-static {
1132
+ display: inline-block; }
1133
+ .attr-form-inline .attr-input-group {
1134
+ display: inline-table;
1135
+ vertical-align: middle; }
1136
+ .attr-form-inline .attr-input-group .attr-input-group-addon, .attr-form-inline .attr-input-group .attr-input-group-btn, .attr-form-inline .attr-input-group .attr-form-control {
1137
+ width: auto; }
1138
+ .attr-form-inline .attr-input-group > .attr-form-control {
1139
+ width: 100%; }
1140
+ .attr-form-inline .attr-control-label {
1141
+ margin-bottom: 0;
1142
+ vertical-align: middle; }
1143
+ .attr-form-inline .attr-radio, .attr-form-inline .attr-checkbox {
1144
+ display: inline-block;
1145
+ margin-top: 0;
1146
+ margin-bottom: 0;
1147
+ vertical-align: middle; }
1148
+ .attr-form-inline .attr-radio label, .attr-form-inline .attr-checkbox label {
1149
+ padding-left: 0; }
1150
+ .attr-form-inline .attr-radio input[type="radio"], .attr-form-inline .attr-checkbox input[type="checkbox"] {
1151
+ position: relative;
1152
+ margin-left: 0; }
1153
+ .attr-form-inline .attr-has-feedback .attr-form-control-feedback {
1154
+ top: 0; } }
1155
+
1156
+ .attr-form-horizontal .attr-radio, .attr-form-horizontal .attr-checkbox, .attr-form-horizontal .attr-radio-inline, .attr-form-horizontal .attr-checkbox-inline {
1157
+ padding-top: 7px;
1158
+ margin-top: 0;
1159
+ margin-bottom: 0; }
1160
+
1161
+ .attr-form-horizontal .attr-radio, .attr-form-horizontal .attr-checkbox {
1162
+ min-height: 27px; }
1163
+
1164
+ .attr-form-horizontal .attr-form-group {
1165
+ margin-right: -15px;
1166
+ margin-left: -15px; }
1167
+
1168
+ @media (min-width: 768px) {
1169
+ .attr-form-horizontal .attr-control-label {
1170
+ padding-top: 7px;
1171
+ margin-bottom: 0;
1172
+ text-align: right; } }
1173
+
1174
+ .attr-form-horizontal .attr-has-feedback .attr-form-control-feedback {
1175
+ right: 15px; }
1176
+
1177
+ @media (min-width: 768px) {
1178
+ .attr-form-horizontal .attr-form-group-lg .attr-control-label {
1179
+ padding-top: 11px;
1180
+ font-size: 18px; } }
1181
+
1182
+ @media (min-width: 768px) {
1183
+ .attr-form-horizontal .attr-form-group-sm .attr-control-label {
1184
+ padding-top: 6px;
1185
+ font-size: 12px; } }
1186
+
1187
+ .attr-btn {
1188
+ display: inline-block;
1189
+ padding: 6px 12px;
1190
+ margin-bottom: 0;
1191
+ font-size: 14px;
1192
+ font-weight: normal;
1193
+ line-height: 1.42857143;
1194
+ text-align: center;
1195
+ white-space: nowrap;
1196
+ vertical-align: middle;
1197
+ -ms-touch-action: manipulation;
1198
+ touch-action: manipulation;
1199
+ cursor: pointer;
1200
+ -webkit-user-select: none;
1201
+ -moz-user-select: none;
1202
+ -ms-user-select: none;
1203
+ user-select: none;
1204
+ background-image: none;
1205
+ border: 1px solid transparent;
1206
+ border-radius: 4px; }
1207
+
1208
+ .attr-btn:focus, .attr-btn:active:focus, .attr-btn.attr-active:focus, .attr-btn.attr-focus, .attr-btn:active.attr-focus, .attr-btn.attr-active.attr-focus {
1209
+ outline: 5px auto -webkit-focus-ring-color;
1210
+ outline-offset: -2px; }
1211
+
1212
+ .attr-btn:hover, .attr-btn:focus, .attr-btn.attr-focus {
1213
+ color: #333;
1214
+ text-decoration: none; }
1215
+
1216
+ .attr-btn:active, .attr-btn.attr-active {
1217
+ background-image: none;
1218
+ outline: 0;
1219
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1220
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
1221
+
1222
+ .attr-btn.attr-disabled, .attr-btn[disabled], fieldset[disabled] .attr-btn {
1223
+ cursor: not-allowed;
1224
+ filter: alpha(opacity=65);
1225
+ -webkit-box-shadow: none;
1226
+ box-shadow: none;
1227
+ opacity: .65; }
1228
+
1229
+ a.attr-btn.attr-disabled, fieldset[disabled] a.attr-btn {
1230
+ pointer-events: none; }
1231
+
1232
+ .attr-btn-default {
1233
+ color: #333;
1234
+ background-color: #fff;
1235
+ border-color: #ccc; }
1236
+
1237
+ .attr-btn-default:focus, .attr-btn-default.attr-focus {
1238
+ color: #333;
1239
+ background-color: #e6e6e6;
1240
+ border-color: #8c8c8c; }
1241
+
1242
+ .attr-btn-default:hover {
1243
+ color: #333;
1244
+ background-color: #e6e6e6;
1245
+ border-color: #adadad; }
1246
+
1247
+ .attr-btn-default:active, .attr-btn-default.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-default {
1248
+ color: #333;
1249
+ background-color: #e6e6e6;
1250
+ border-color: #adadad; }
1251
+
1252
+ .attr-btn-default:active:hover, .attr-btn-default.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-default:hover, .attr-btn-default:active:focus, .attr-btn-default.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-default:focus, .attr-btn-default:active.attr-focus, .attr-btn-default.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-default.attr-focus {
1253
+ color: #333;
1254
+ background-color: #d4d4d4;
1255
+ border-color: #8c8c8c; }
1256
+
1257
+ .attr-btn-default:active, .attr-btn-default.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-default {
1258
+ background-image: none; }
1259
+
1260
+ .attr-btn-default.attr-disabled:hover, .attr-btn-default[disabled]:hover, fieldset[disabled] .attr-btn-default:hover, .attr-btn-default.attr-disabled:focus, .attr-btn-default[disabled]:focus, fieldset[disabled] .attr-btn-default:focus, .attr-btn-default.attr-disabled.attr-focus, .attr-btn-default[disabled].attr-focus, fieldset[disabled] .attr-btn-default.attr-focus {
1261
+ background-color: #fff;
1262
+ border-color: #ccc; }
1263
+
1264
+ .attr-btn-default .attr-badge {
1265
+ color: #fff;
1266
+ background-color: #333; }
1267
+
1268
+ .attr-btn-primary {
1269
+ color: #fff;
1270
+ background-color: #337ab7;
1271
+ border-color: #2e6da4; }
1272
+
1273
+ .attr-btn-primary:focus, .attr-btn-primary.attr-focus {
1274
+ color: #fff;
1275
+ background-color: #286090;
1276
+ border-color: #122b40; }
1277
+
1278
+ .attr-btn-primary:hover {
1279
+ color: #fff;
1280
+ background-color: #286090;
1281
+ border-color: #204d74; }
1282
+
1283
+ .attr-btn-primary:active, .attr-btn-primary.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-primary {
1284
+ color: #fff;
1285
+ background-color: #286090;
1286
+ border-color: #204d74; }
1287
+
1288
+ .attr-btn-primary:active:hover, .attr-btn-primary.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-primary:hover, .attr-btn-primary:active:focus, .attr-btn-primary.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-primary:focus, .attr-btn-primary:active.attr-focus, .attr-btn-primary.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-primary.attr-focus {
1289
+ color: #fff;
1290
+ background-color: #204d74;
1291
+ border-color: #122b40; }
1292
+
1293
+ .attr-btn-primary:active, .attr-btn-primary.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-primary {
1294
+ background-image: none; }
1295
+
1296
+ .attr-btn-primary.attr-disabled:hover, .attr-btn-primary[disabled]:hover, fieldset[disabled] .attr-btn-primary:hover, .attr-btn-primary.attr-disabled:focus, .attr-btn-primary[disabled]:focus, fieldset[disabled] .attr-btn-primary:focus, .attr-btn-primary.attr-disabled.attr-focus, .attr-btn-primary[disabled].attr-focus, fieldset[disabled] .attr-btn-primary.attr-focus {
1297
+ background-color: #337ab7;
1298
+ border-color: #2e6da4; }
1299
+
1300
+ .attr-btn-primary .attr-badge {
1301
+ color: #337ab7;
1302
+ background-color: #fff; }
1303
+
1304
+ .attr-btn-success {
1305
+ color: #fff;
1306
+ background-color: #5cb85c;
1307
+ border-color: #4cae4c; }
1308
+
1309
+ .attr-btn-success:focus, .attr-btn-success.attr-focus {
1310
+ color: #fff;
1311
+ background-color: #449d44;
1312
+ border-color: #255625; }
1313
+
1314
+ .attr-btn-success:hover {
1315
+ color: #fff;
1316
+ background-color: #449d44;
1317
+ border-color: #398439; }
1318
+
1319
+ .attr-btn-success:active, .attr-btn-success.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-success {
1320
+ color: #fff;
1321
+ background-color: #449d44;
1322
+ border-color: #398439; }
1323
+
1324
+ .attr-btn-success:active:hover, .attr-btn-success.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-success:hover, .attr-btn-success:active:focus, .attr-btn-success.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-success:focus, .attr-btn-success:active.attr-focus, .attr-btn-success.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-success.attr-focus {
1325
+ color: #fff;
1326
+ background-color: #398439;
1327
+ border-color: #255625; }
1328
+
1329
+ .attr-btn-success:active, .attr-btn-success.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-success {
1330
+ background-image: none; }
1331
+
1332
+ .attr-btn-success.attr-disabled:hover, .attr-btn-success[disabled]:hover, fieldset[disabled] .attr-btn-success:hover, .attr-btn-success.attr-disabled:focus, .attr-btn-success[disabled]:focus, fieldset[disabled] .attr-btn-success:focus, .attr-btn-success.attr-disabled.attr-focus, .attr-btn-success[disabled].attr-focus, fieldset[disabled] .attr-btn-success.attr-focus {
1333
+ background-color: #5cb85c;
1334
+ border-color: #4cae4c; }
1335
+
1336
+ .attr-btn-success .attr-badge {
1337
+ color: #5cb85c;
1338
+ background-color: #fff; }
1339
+
1340
+ .attr-btn-info {
1341
+ color: #fff;
1342
+ background-color: #5bc0de;
1343
+ border-color: #46b8da; }
1344
+
1345
+ .attr-btn-info:focus, .attr-btn-info.attr-focus {
1346
+ color: #fff;
1347
+ background-color: #31b0d5;
1348
+ border-color: #1b6d85; }
1349
+
1350
+ .attr-btn-info:hover {
1351
+ color: #fff;
1352
+ background-color: #31b0d5;
1353
+ border-color: #269abc; }
1354
+
1355
+ .attr-btn-info:active, .attr-btn-info.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-info {
1356
+ color: #fff;
1357
+ background-color: #31b0d5;
1358
+ border-color: #269abc; }
1359
+
1360
+ .attr-btn-info:active:hover, .attr-btn-info.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-info:hover, .attr-btn-info:active:focus, .attr-btn-info.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-info:focus, .attr-btn-info:active.attr-focus, .attr-btn-info.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-info.attr-focus {
1361
+ color: #fff;
1362
+ background-color: #269abc;
1363
+ border-color: #1b6d85; }
1364
+
1365
+ .attr-btn-info:active, .attr-btn-info.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-info {
1366
+ background-image: none; }
1367
+
1368
+ .attr-btn-info.attr-disabled:hover, .attr-btn-info[disabled]:hover, fieldset[disabled] .attr-btn-info:hover, .attr-btn-info.attr-disabled:focus, .attr-btn-info[disabled]:focus, fieldset[disabled] .attr-btn-info:focus, .attr-btn-info.attr-disabled.attr-focus, .attr-btn-info[disabled].attr-focus, fieldset[disabled] .attr-btn-info.attr-focus {
1369
+ background-color: #5bc0de;
1370
+ border-color: #46b8da; }
1371
+
1372
+ .attr-btn-info .attr-badge {
1373
+ color: #5bc0de;
1374
+ background-color: #fff; }
1375
+
1376
+ .attr-btn-warning {
1377
+ color: #fff;
1378
+ background-color: #f0ad4e;
1379
+ border-color: #eea236; }
1380
+
1381
+ .attr-btn-warning:focus, .attr-btn-warning.attr-focus {
1382
+ color: #fff;
1383
+ background-color: #ec971f;
1384
+ border-color: #985f0d; }
1385
+
1386
+ .attr-btn-warning:hover {
1387
+ color: #fff;
1388
+ background-color: #ec971f;
1389
+ border-color: #d58512; }
1390
+
1391
+ .attr-btn-warning:active, .attr-btn-warning.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-warning {
1392
+ color: #fff;
1393
+ background-color: #ec971f;
1394
+ border-color: #d58512; }
1395
+
1396
+ .attr-btn-warning:active:hover, .attr-btn-warning.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-warning:hover, .attr-btn-warning:active:focus, .attr-btn-warning.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-warning:focus, .attr-btn-warning:active.attr-focus, .attr-btn-warning.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-warning.attr-focus {
1397
+ color: #fff;
1398
+ background-color: #d58512;
1399
+ border-color: #985f0d; }
1400
+
1401
+ .attr-btn-warning:active, .attr-btn-warning.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-warning {
1402
+ background-image: none; }
1403
+
1404
+ .attr-btn-warning.attr-disabled:hover, .attr-btn-warning[disabled]:hover, fieldset[disabled] .attr-btn-warning:hover, .attr-btn-warning.attr-disabled:focus, .attr-btn-warning[disabled]:focus, fieldset[disabled] .attr-btn-warning:focus, .attr-btn-warning.attr-disabled.attr-focus, .attr-btn-warning[disabled].attr-focus, fieldset[disabled] .attr-btn-warning.attr-focus {
1405
+ background-color: #f0ad4e;
1406
+ border-color: #eea236; }
1407
+
1408
+ .attr-btn-warning .attr-badge {
1409
+ color: #f0ad4e;
1410
+ background-color: #fff; }
1411
+
1412
+ .attr-btn-danger {
1413
+ color: #fff;
1414
+ background-color: #d9534f;
1415
+ border-color: #d43f3a; }
1416
+
1417
+ .attr-btn-danger:focus, .attr-btn-danger.attr-focus {
1418
+ color: #fff;
1419
+ background-color: #c9302c;
1420
+ border-color: #761c19; }
1421
+
1422
+ .attr-btn-danger:hover {
1423
+ color: #fff;
1424
+ background-color: #c9302c;
1425
+ border-color: #ac2925; }
1426
+
1427
+ .attr-btn-danger:active, .attr-btn-danger.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-danger {
1428
+ color: #fff;
1429
+ background-color: #c9302c;
1430
+ border-color: #ac2925; }
1431
+
1432
+ .attr-btn-danger:active:hover, .attr-btn-danger.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-danger:hover, .attr-btn-danger:active:focus, .attr-btn-danger.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-danger:focus, .attr-btn-danger:active.attr-focus, .attr-btn-danger.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-danger.attr-focus {
1433
+ color: #fff;
1434
+ background-color: #ac2925;
1435
+ border-color: #761c19; }
1436
+
1437
+ .attr-btn-danger:active, .attr-btn-danger.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-danger {
1438
+ background-image: none; }
1439
+
1440
+ .attr-btn-danger.attr-disabled:hover, .attr-btn-danger[disabled]:hover, fieldset[disabled] .attr-btn-danger:hover, .attr-btn-danger.attr-disabled:focus, .attr-btn-danger[disabled]:focus, fieldset[disabled] .attr-btn-danger:focus, .attr-btn-danger.attr-disabled.attr-focus, .attr-btn-danger[disabled].attr-focus, fieldset[disabled] .attr-btn-danger.attr-focus {
1441
+ background-color: #d9534f;
1442
+ border-color: #d43f3a; }
1443
+
1444
+ .attr-btn-danger .attr-badge {
1445
+ color: #d9534f;
1446
+ background-color: #fff; }
1447
+
1448
+ .attr-btn-link {
1449
+ font-weight: normal;
1450
+ color: #337ab7;
1451
+ border-radius: 0; }
1452
+
1453
+ .attr-btn-link, .attr-btn-link:active, .attr-btn-link.attr-active, .attr-btn-link[disabled], fieldset[disabled] .attr-btn-link {
1454
+ background-color: transparent;
1455
+ -webkit-box-shadow: none;
1456
+ box-shadow: none; }
1457
+
1458
+ .attr-btn-link, .attr-btn-link:hover, .attr-btn-link:focus, .attr-btn-link:active {
1459
+ border-color: transparent; }
1460
+
1461
+ .attr-btn-link:hover, .attr-btn-link:focus {
1462
+ color: #23527c;
1463
+ text-decoration: underline;
1464
+ background-color: transparent; }
1465
+
1466
+ .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-btn-link:hover, .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-btn-link:focus {
1467
+ color: #777;
1468
+ text-decoration: none; }
1469
+
1470
+ .attr-btn-lg, .attr-btn-group-lg > .attr-btn {
1471
+ padding: 10px 16px;
1472
+ font-size: 18px;
1473
+ line-height: 1.3333333;
1474
+ border-radius: 6px; }
1475
+
1476
+ .attr-btn-sm, .attr-btn-group-sm > .attr-btn {
1477
+ padding: 5px 10px;
1478
+ font-size: 12px;
1479
+ line-height: 1.5;
1480
+ border-radius: 3px; }
1481
+
1482
+ .attr-btn-xs, .attr-btn-group-xs > .attr-btn {
1483
+ padding: 1px 5px;
1484
+ font-size: 12px;
1485
+ line-height: 1.5;
1486
+ border-radius: 3px; }
1487
+
1488
+ .attr-btn-block {
1489
+ display: block;
1490
+ width: 100%; }
1491
+
1492
+ .attr-btn-block + .attr-btn-block {
1493
+ margin-top: 5px; }
1494
+
1495
+ input[type="submit"].attr-btn-block, input[type="reset"].attr-btn-block, input[type="button"].attr-btn-block {
1496
+ width: 100%; }
1497
+
1498
+ .attr-fade {
1499
+ opacity: 0;
1500
+ -webkit-transition: opacity .15s linear;
1501
+ -o-transition: opacity .15s linear;
1502
+ transition: opacity .15s linear; }
1503
+
1504
+ .attr-fade.attr-in {
1505
+ opacity: 1; }
1506
+
1507
+ .attr-collapse {
1508
+ display: none; }
1509
+
1510
+ .attr-collapse.attr-in {
1511
+ display: block; }
1512
+
1513
+ tr.attr-collapse.attr-in {
1514
+ display: table-row; }
1515
+
1516
+ tbody.attr-collapse.attr-in {
1517
+ display: table-row-group; }
1518
+
1519
+ .attr-collapsing {
1520
+ position: relative;
1521
+ height: 0;
1522
+ overflow: hidden;
1523
+ -webkit-transition-timing-function: ease;
1524
+ -o-transition-timing-function: ease;
1525
+ transition-timing-function: ease;
1526
+ -webkit-transition-duration: .35s;
1527
+ -o-transition-duration: .35s;
1528
+ transition-duration: .35s;
1529
+ -webkit-transition-property: height, visibility;
1530
+ -o-transition-property: height, visibility;
1531
+ transition-property: height, visibility; }
1532
+
1533
+ .attr-caret {
1534
+ display: inline-block;
1535
+ width: 0;
1536
+ height: 0;
1537
+ margin-left: 2px;
1538
+ vertical-align: middle;
1539
+ border-top: 4px dashed;
1540
+ border-top: 4px solid \9;
1541
+ border-right: 4px solid transparent;
1542
+ border-left: 4px solid transparent; }
1543
+
1544
+ .attr-dropup, .attr-dropdown {
1545
+ position: relative; }
1546
+
1547
+ .attr-dropdown-toggle:focus {
1548
+ outline: 0; }
1549
+
1550
+ .attr-dropdown-menu {
1551
+ position: absolute;
1552
+ top: 100%;
1553
+ left: 0;
1554
+ z-index: 1000;
1555
+ display: none;
1556
+ float: left;
1557
+ min-width: 160px;
1558
+ padding: 5px 0;
1559
+ margin: 2px 0 0;
1560
+ font-size: 14px;
1561
+ text-align: left;
1562
+ list-style: none;
1563
+ background-color: #fff;
1564
+ -webkit-background-clip: padding-box;
1565
+ background-clip: padding-box;
1566
+ border: 1px solid #ccc;
1567
+ border: 1px solid rgba(0, 0, 0, 0.15);
1568
+ border-radius: 4px;
1569
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1570
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
1571
+
1572
+ .attr-dropdown-menu.attr-pull-right {
1573
+ right: 0;
1574
+ left: auto; }
1575
+
1576
+ .attr-dropdown-menu .attr-divider {
1577
+ height: 1px;
1578
+ margin: 9px 0;
1579
+ overflow: hidden;
1580
+ background-color: #e5e5e5; }
1581
+
1582
+ .attr-dropdown-menu > li > a {
1583
+ display: block;
1584
+ padding: 3px 20px;
1585
+ clear: both;
1586
+ font-weight: normal;
1587
+ line-height: 1.42857143;
1588
+ color: #333;
1589
+ white-space: nowrap; }
1590
+
1591
+ .attr-dropdown-menu > li > a:hover, .attr-dropdown-menu > li > a:focus {
1592
+ color: #262626;
1593
+ text-decoration: none;
1594
+ background-color: #f5f5f5; }
1595
+
1596
+ .attr-dropdown-menu > .attr-active > a, .attr-dropdown-menu > .attr-active > a:hover, .attr-dropdown-menu > .attr-active > a:focus {
1597
+ color: #fff;
1598
+ text-decoration: none;
1599
+ background-color: #337ab7;
1600
+ outline: 0; }
1601
+
1602
+ .attr-dropdown-menu > .attr-disabled > a, .attr-dropdown-menu > .attr-disabled > a:hover, .attr-dropdown-menu > .attr-disabled > a:focus {
1603
+ color: #777; }
1604
+
1605
+ .attr-dropdown-menu > .attr-disabled > a:hover, .attr-dropdown-menu > .attr-disabled > a:focus {
1606
+ text-decoration: none;
1607
+ cursor: not-allowed;
1608
+ background-color: transparent;
1609
+ background-image: none;
1610
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
1611
+
1612
+ .attr-open > .attr-dropdown-menu {
1613
+ display: block; }
1614
+
1615
+ .attr-open > a {
1616
+ outline: 0; }
1617
+
1618
+ .attr-dropdown-menu-right {
1619
+ right: 0;
1620
+ left: auto; }
1621
+
1622
+ .attr-dropdown-menu-left {
1623
+ right: auto;
1624
+ left: 0; }
1625
+
1626
+ .attr-dropdown-header {
1627
+ display: block;
1628
+ padding: 3px 20px;
1629
+ font-size: 12px;
1630
+ line-height: 1.42857143;
1631
+ color: #777;
1632
+ white-space: nowrap; }
1633
+
1634
+ .attr-dropdown-backdrop {
1635
+ position: fixed;
1636
+ top: 0;
1637
+ right: 0;
1638
+ bottom: 0;
1639
+ left: 0;
1640
+ z-index: 990; }
1641
+
1642
+ .attr-pull-right > .attr-dropdown-menu {
1643
+ right: 0;
1644
+ left: auto; }
1645
+
1646
+ .attr-dropup .attr-caret, .attr-navbar-fixed-bottom .attr-dropdown .attr-caret {
1647
+ content: "";
1648
+ border-top: 0;
1649
+ border-bottom: 4px dashed;
1650
+ border-bottom: 4px solid \9; }
1651
+
1652
+ .attr-dropup .attr-dropdown-menu, .attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu {
1653
+ top: auto;
1654
+ bottom: 100%;
1655
+ margin-bottom: 2px; }
1656
+
1657
+ @media (min-width: 768px) {
1658
+ .attr-navbar-right .attr-dropdown-menu {
1659
+ right: 0;
1660
+ left: auto; }
1661
+ .attr-navbar-right .attr-dropdown-menu-left {
1662
+ right: auto;
1663
+ left: 0; } }
1664
+
1665
+ .attr-btn-group, .attr-btn-group-vertical {
1666
+ position: relative;
1667
+ display: inline-block;
1668
+ vertical-align: middle; }
1669
+
1670
+ .attr-btn-group > .attr-btn, .attr-btn-group-vertical > .attr-btn {
1671
+ position: relative;
1672
+ float: left; }
1673
+
1674
+ .attr-btn-group > .attr-btn:hover, .attr-btn-group-vertical > .attr-btn:hover, .attr-btn-group > .attr-btn:focus, .attr-btn-group-vertical > .attr-btn:focus, .attr-btn-group > .attr-btn:active, .attr-btn-group-vertical > .attr-btn:active, .attr-btn-group > .attr-btn.attr-active, .attr-btn-group-vertical > .attr-btn.attr-active {
1675
+ z-index: 2; }
1676
+
1677
+ .attr-btn-group .attr-btn + .attr-btn, .attr-btn-group .attr-btn + .attr-btn-group, .attr-btn-group .attr-btn-group + .attr-btn, .attr-btn-group .attr-btn-group + .attr-btn-group {
1678
+ margin-left: -1px; }
1679
+
1680
+ .attr-btn-toolbar {
1681
+ margin-left: -5px; }
1682
+
1683
+ .attr-btn-toolbar .attr-btn, .attr-btn-toolbar .attr-btn-group, .attr-btn-toolbar .attr-input-group {
1684
+ float: left; }
1685
+
1686
+ .attr-btn-toolbar > .attr-btn, .attr-btn-toolbar > .attr-btn-group, .attr-btn-toolbar > .attr-input-group {
1687
+ margin-left: 5px; }
1688
+
1689
+ .attr-btn-group > .attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle) {
1690
+ border-radius: 0; }
1691
+
1692
+ .attr-btn-group > .attr-btn:first-child {
1693
+ margin-left: 0; }
1694
+
1695
+ .attr-btn-group > .attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle) {
1696
+ border-top-right-radius: 0;
1697
+ border-bottom-right-radius: 0; }
1698
+
1699
+ .attr-btn-group > .attr-btn:last-child:not(:first-child), .attr-btn-group > .attr-dropdown-toggle:not(:first-child) {
1700
+ border-top-left-radius: 0;
1701
+ border-bottom-left-radius: 0; }
1702
+
1703
+ .attr-btn-group > .attr-btn-group {
1704
+ float: left; }
1705
+
1706
+ .attr-btn-group > .attr-btn-group:not(:first-child):not(:last-child) > .attr-btn {
1707
+ border-radius: 0; }
1708
+
1709
+ .attr-btn-group > .attr-btn-group:first-child:not(:last-child) > .attr-btn:last-child, .attr-btn-group > .attr-btn-group:first-child:not(:last-child) > .attr-dropdown-toggle {
1710
+ border-top-right-radius: 0;
1711
+ border-bottom-right-radius: 0; }
1712
+
1713
+ .attr-btn-group > .attr-btn-group:last-child:not(:first-child) > .attr-btn:first-child {
1714
+ border-top-left-radius: 0;
1715
+ border-bottom-left-radius: 0; }
1716
+
1717
+ .attr-btn-group .attr-dropdown-toggle:active, .attr-btn-group.attr-open .attr-dropdown-toggle {
1718
+ outline: 0; }
1719
+
1720
+ .attr-btn-group > .attr-btn + .attr-dropdown-toggle {
1721
+ padding-right: 8px;
1722
+ padding-left: 8px; }
1723
+
1724
+ .attr-btn-group > .attr-btn-lg + .attr-dropdown-toggle {
1725
+ padding-right: 12px;
1726
+ padding-left: 12px; }
1727
+
1728
+ .attr-btn-group.attr-open .attr-dropdown-toggle {
1729
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1730
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
1731
+
1732
+ .attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link {
1733
+ -webkit-box-shadow: none;
1734
+ box-shadow: none; }
1735
+
1736
+ .attr-btn .attr-caret {
1737
+ margin-left: 0; }
1738
+
1739
+ .attr-btn-lg .attr-caret {
1740
+ border-width: 5px 5px 0;
1741
+ border-bottom-width: 0; }
1742
+
1743
+ .attr-dropup .attr-btn-lg .attr-caret {
1744
+ border-width: 0 5px 5px; }
1745
+
1746
+ .attr-btn-group-vertical > .attr-btn, .attr-btn-group-vertical > .attr-btn-group, .attr-btn-group-vertical > .attr-btn-group > .attr-btn {
1747
+ display: block;
1748
+ float: none;
1749
+ width: 100%;
1750
+ max-width: 100%; }
1751
+
1752
+ .attr-btn-group-vertical > .attr-btn-group > .attr-btn {
1753
+ float: none; }
1754
+
1755
+ .attr-btn-group-vertical > .attr-btn + .attr-btn, .attr-btn-group-vertical > .attr-btn + .attr-btn-group, .attr-btn-group-vertical > .attr-btn-group + .attr-btn, .attr-btn-group-vertical > .attr-btn-group + .attr-btn-group {
1756
+ margin-top: -1px;
1757
+ margin-left: 0; }
1758
+
1759
+ .attr-btn-group-vertical > .attr-btn:not(:first-child):not(:last-child) {
1760
+ border-radius: 0; }
1761
+
1762
+ .attr-btn-group-vertical > .attr-btn:first-child:not(:last-child) {
1763
+ border-top-left-radius: 4px;
1764
+ border-top-right-radius: 4px;
1765
+ border-bottom-right-radius: 0;
1766
+ border-bottom-left-radius: 0; }
1767
+
1768
+ .attr-btn-group-vertical > .attr-btn:last-child:not(:first-child) {
1769
+ border-top-left-radius: 0;
1770
+ border-top-right-radius: 0;
1771
+ border-bottom-right-radius: 4px;
1772
+ border-bottom-left-radius: 4px; }
1773
+
1774
+ .attr-btn-group-vertical > .attr-btn-group:not(:first-child):not(:last-child) > .attr-btn {
1775
+ border-radius: 0; }
1776
+
1777
+ .attr-btn-group-vertical > .attr-btn-group:first-child:not(:last-child) > .attr-btn:last-child, .attr-btn-group-vertical > .attr-btn-group:first-child:not(:last-child) > .attr-dropdown-toggle {
1778
+ border-bottom-right-radius: 0;
1779
+ border-bottom-left-radius: 0; }
1780
+
1781
+ .attr-btn-group-vertical > .attr-btn-group:last-child:not(:first-child) > .attr-btn:first-child {
1782
+ border-top-left-radius: 0;
1783
+ border-top-right-radius: 0; }
1784
+
1785
+ .attr-btn-group-justified {
1786
+ display: table;
1787
+ width: 100%;
1788
+ table-layout: fixed;
1789
+ border-collapse: separate; }
1790
+
1791
+ .attr-btn-group-justified > .attr-btn, .attr-btn-group-justified > .attr-btn-group {
1792
+ display: table-cell;
1793
+ float: none;
1794
+ width: 1%; }
1795
+
1796
+ .attr-btn-group-justified > .attr-btn-group .attr-btn {
1797
+ width: 100%; }
1798
+
1799
+ .attr-btn-group-justified > .attr-btn-group .attr-dropdown-menu {
1800
+ left: auto; }
1801
+
1802
+ [data-attr-toggle="buttons"] > .attr-btn input[type="radio"], [data-attr-toggle="buttons"] > .attr-btn-group > .attr-btn input[type="radio"], [data-attr-toggle="buttons"] > .attr-btn input[type="checkbox"], [data-attr-toggle="buttons"] > .attr-btn-group > .attr-btn input[type="checkbox"] {
1803
+ position: absolute;
1804
+ clip: rect(0, 0, 0, 0);
1805
+ pointer-events: none; }
1806
+
1807
+ .attr-input-group {
1808
+ position: relative;
1809
+ display: table;
1810
+ border-collapse: separate; }
1811
+
1812
+ .attr-input-group[class*="attr-col-"] {
1813
+ float: none;
1814
+ padding-right: 0;
1815
+ padding-left: 0; }
1816
+
1817
+ .attr-input-group .attr-form-control {
1818
+ position: relative;
1819
+ z-index: 2;
1820
+ float: left;
1821
+ width: 100%;
1822
+ margin-bottom: 0; }
1823
+
1824
+ .attr-input-group .attr-form-control:focus {
1825
+ z-index: 3; }
1826
+
1827
+ .attr-input-group-lg > .attr-form-control, .attr-input-group-lg > .attr-input-group-addon, .attr-input-group-lg > .attr-input-group-btn > .attr-btn {
1828
+ height: 46px;
1829
+ padding: 10px 16px;
1830
+ font-size: 18px;
1831
+ line-height: 1.3333333;
1832
+ border-radius: 6px; }
1833
+
1834
+ select.attr-input-group-lg > .attr-form-control, select.attr-input-group-lg > .attr-input-group-addon, select.attr-input-group-lg > .attr-input-group-btn > .attr-btn {
1835
+ height: 46px;
1836
+ line-height: 46px; }
1837
+
1838
+ textarea.attr-input-group-lg > .attr-form-control, textarea.attr-input-group-lg > .attr-input-group-addon, textarea.attr-input-group-lg > .attr-input-group-btn > .attr-btn, select[multiple].attr-input-group-lg > .attr-form-control, select[multiple].attr-input-group-lg > .attr-input-group-addon, select[multiple].attr-input-group-lg > .attr-input-group-btn > .attr-btn {
1839
+ height: auto; }
1840
+
1841
+ .attr-input-group-sm > .attr-form-control, .attr-input-group-sm > .attr-input-group-addon, .attr-input-group-sm > .attr-input-group-btn > .attr-btn {
1842
+ height: 30px;
1843
+ padding: 5px 10px;
1844
+ font-size: 12px;
1845
+ line-height: 1.5;
1846
+ border-radius: 3px; }
1847
+
1848
+ select.attr-input-group-sm > .attr-form-control, select.attr-input-group-sm > .attr-input-group-addon, select.attr-input-group-sm > .attr-input-group-btn > .attr-btn {
1849
+ height: 30px;
1850
+ line-height: 30px; }
1851
+
1852
+ textarea.attr-input-group-sm > .attr-form-control, textarea.attr-input-group-sm > .attr-input-group-addon, textarea.attr-input-group-sm > .attr-input-group-btn > .attr-btn, select[multiple].attr-input-group-sm > .attr-form-control, select[multiple].attr-input-group-sm > .attr-input-group-addon, select[multiple].attr-input-group-sm > .attr-input-group-btn > .attr-btn {
1853
+ height: auto; }
1854
+
1855
+ .attr-input-group-addon, .attr-input-group-btn, .attr-input-group .attr-form-control {
1856
+ display: table-cell; }
1857
+
1858
+ .attr-input-group-addon:not(:first-child):not(:last-child), .attr-input-group-btn:not(:first-child):not(:last-child), .attr-input-group .attr-form-control:not(:first-child):not(:last-child) {
1859
+ border-radius: 0; }
1860
+
1861
+ .attr-input-group-addon, .attr-input-group-btn {
1862
+ width: 1%;
1863
+ white-space: nowrap;
1864
+ vertical-align: middle; }
1865
+
1866
+ .attr-input-group-addon {
1867
+ padding: 6px 12px;
1868
+ font-size: 14px;
1869
+ font-weight: normal;
1870
+ line-height: 1;
1871
+ color: #555;
1872
+ text-align: center;
1873
+ background-color: #eee;
1874
+ border: 1px solid #ccc;
1875
+ border-radius: 4px; }
1876
+
1877
+ .attr-input-group-addon.attr-input-sm {
1878
+ padding: 5px 10px;
1879
+ font-size: 12px;
1880
+ border-radius: 3px; }
1881
+
1882
+ .attr-input-group-addon.attr-input-lg {
1883
+ padding: 10px 16px;
1884
+ font-size: 18px;
1885
+ border-radius: 6px; }
1886
+
1887
+ .attr-input-group-addon input[type="radio"], .attr-input-group-addon input[type="checkbox"] {
1888
+ margin-top: 0; }
1889
+
1890
+ .attr-input-group .attr-form-control:first-child, .attr-input-group-addon:first-child, .attr-input-group-btn:first-child > .attr-btn, .attr-input-group-btn:first-child > .attr-btn-group > .attr-btn, .attr-input-group-btn:first-child > .attr-dropdown-toggle, .attr-input-group-btn:last-child > .attr-btn:not(:last-child):not(.attr-dropdown-toggle), .attr-input-group-btn:last-child > .attr-btn-group:not(:last-child) > .attr-btn {
1891
+ border-top-right-radius: 0;
1892
+ border-bottom-right-radius: 0; }
1893
+
1894
+ .attr-input-group-addon:first-child {
1895
+ border-right: 0; }
1896
+
1897
+ .attr-input-group .attr-form-control:last-child, .attr-input-group-addon:last-child, .attr-input-group-btn:last-child > .attr-btn, .attr-input-group-btn:last-child > .attr-btn-group > .attr-btn, .attr-input-group-btn:last-child > .attr-dropdown-toggle, .attr-input-group-btn:first-child > .attr-btn:not(:first-child), .attr-input-group-btn:first-child > .attr-btn-group:not(:first-child) > .attr-btn {
1898
+ border-top-left-radius: 0;
1899
+ border-bottom-left-radius: 0; }
1900
+
1901
+ .attr-input-group-addon:last-child {
1902
+ border-left: 0; }
1903
+
1904
+ .attr-input-group-btn {
1905
+ position: relative;
1906
+ font-size: 0;
1907
+ white-space: nowrap; }
1908
+
1909
+ .attr-input-group-btn > .attr-btn {
1910
+ position: relative; }
1911
+
1912
+ .attr-input-group-btn > .attr-btn + .attr-btn {
1913
+ margin-left: -1px; }
1914
+
1915
+ .attr-input-group-btn > .attr-btn:hover, .attr-input-group-btn > .attr-btn:focus, .attr-input-group-btn > .attr-btn:active {
1916
+ z-index: 2; }
1917
+
1918
+ .attr-input-group-btn:first-child > .attr-btn, .attr-input-group-btn:first-child > .attr-btn-group {
1919
+ margin-right: -1px; }
1920
+
1921
+ .attr-input-group-btn:last-child > .attr-btn, .attr-input-group-btn:last-child > .attr-btn-group {
1922
+ z-index: 2;
1923
+ margin-left: -1px; }
1924
+
1925
+ .attr-nav {
1926
+ padding-left: 0;
1927
+ margin-bottom: 0;
1928
+ list-style: none; }
1929
+
1930
+ .attr-nav > li {
1931
+ position: relative;
1932
+ display: block; }
1933
+
1934
+ .attr-nav > li > a {
1935
+ position: relative;
1936
+ display: block;
1937
+ padding: 10px 15px; }
1938
+
1939
+ .attr-nav > li > a:hover, .attr-nav > li > a:focus {
1940
+ text-decoration: none;
1941
+ background-color: #eee; }
1942
+
1943
+ .attr-nav > li.attr-disabled > a {
1944
+ color: #777; }
1945
+
1946
+ .attr-nav > li.attr-disabled > a:hover, .attr-nav > li.attr-disabled > a:focus {
1947
+ color: #777;
1948
+ text-decoration: none;
1949
+ cursor: not-allowed;
1950
+ background-color: transparent; }
1951
+
1952
+ .attr-nav .attr-open > a, .attr-nav .attr-open > a:hover, .attr-nav .attr-open > a:focus {
1953
+ background-color: #eee;
1954
+ border-color: #337ab7; }
1955
+
1956
+ .attr-nav .attr-nav-divider {
1957
+ height: 1px;
1958
+ margin: 9px 0;
1959
+ overflow: hidden;
1960
+ background-color: #e5e5e5; }
1961
+
1962
+ .attr-nav > li > a > img {
1963
+ max-width: none; }
1964
+
1965
+ .attr-nav-tabs {
1966
+ border-bottom: 1px solid #ddd; }
1967
+
1968
+ .attr-nav-tabs > li {
1969
+ float: left;
1970
+ margin-bottom: -1px; }
1971
+
1972
+ .attr-nav-tabs > li > a {
1973
+ margin-right: 2px;
1974
+ line-height: 1.42857143;
1975
+ border: 1px solid transparent;
1976
+ border-radius: 4px 4px 0 0; }
1977
+
1978
+ .attr-nav-tabs > li > a:hover {
1979
+ border-color: #eee #eee #ddd; }
1980
+
1981
+ .attr-nav-tabs > li.attr-active > a, .attr-nav-tabs > li.attr-active > a:hover, .attr-nav-tabs > li.attr-active > a:focus {
1982
+ color: #555;
1983
+ cursor: default;
1984
+ background-color: #fff;
1985
+ border: 1px solid #ddd;
1986
+ border-bottom-color: transparent; }
1987
+
1988
+ .attr-nav-tabs.attr-nav-justified {
1989
+ width: 100%;
1990
+ border-bottom: 0; }
1991
+
1992
+ .attr-nav-tabs.attr-nav-justified > li {
1993
+ float: none; }
1994
+
1995
+ .attr-nav-tabs.attr-nav-justified > li > a {
1996
+ margin-bottom: 5px;
1997
+ text-align: center; }
1998
+
1999
+ .attr-nav-tabs.attr-nav-justified > .attr-dropdown .attr-dropdown-menu {
2000
+ top: auto;
2001
+ left: auto; }
2002
+
2003
+ @media (min-width: 768px) {
2004
+ .attr-nav-tabs.attr-nav-justified > li {
2005
+ display: table-cell;
2006
+ width: 1%; }
2007
+ .attr-nav-tabs.attr-nav-justified > li > a {
2008
+ margin-bottom: 0; } }
2009
+
2010
+ .attr-nav-tabs.attr-nav-justified > li > a {
2011
+ margin-right: 0;
2012
+ border-radius: 4px; }
2013
+
2014
+ .attr-nav-tabs.attr-nav-justified > .attr-active > a, .attr-nav-tabs.attr-nav-justified > .attr-active > a:hover, .attr-nav-tabs.attr-nav-justified > .attr-active > a:focus {
2015
+ border: 1px solid #ddd; }
2016
+
2017
+ @media (min-width: 768px) {
2018
+ .attr-nav-tabs.attr-nav-justified > li > a {
2019
+ border-bottom: 1px solid #ddd;
2020
+ border-radius: 4px 4px 0 0; }
2021
+ .attr-nav-tabs.attr-nav-justified > .attr-active > a, .attr-nav-tabs.attr-nav-justified > .attr-active > a:hover, .attr-nav-tabs.attr-nav-justified > .attr-active > a:focus {
2022
+ border-bottom-color: #fff; } }
2023
+
2024
+ .attr-nav-pills > li {
2025
+ float: left; }
2026
+
2027
+ .attr-nav-pills > li > a {
2028
+ border-radius: 4px; }
2029
+
2030
+ .attr-nav-pills > li + li {
2031
+ margin-left: 2px; }
2032
+
2033
+ .attr-nav-pills > li.attr-active > a, .attr-nav-pills > li.attr-active > a:hover, .attr-nav-pills > li.attr-active > a:focus {
2034
+ color: #fff;
2035
+ background-color: #337ab7; }
2036
+
2037
+ .attr-nav-stacked > li {
2038
+ float: none; }
2039
+
2040
+ .attr-nav-stacked > li + li {
2041
+ margin-top: 2px;
2042
+ margin-left: 0; }
2043
+
2044
+ .attr-nav-justified {
2045
+ width: 100%; }
2046
+
2047
+ .attr-nav-justified > li {
2048
+ float: none; }
2049
+
2050
+ .attr-nav-justified > li > a {
2051
+ margin-bottom: 5px;
2052
+ text-align: center; }
2053
+
2054
+ .attr-nav-justified > .attr-dropdown .attr-dropdown-menu {
2055
+ top: auto;
2056
+ left: auto; }
2057
+
2058
+ @media (min-width: 768px) {
2059
+ .attr-nav-justified > li {
2060
+ display: table-cell;
2061
+ width: 1%; }
2062
+ .attr-nav-justified > li > a {
2063
+ margin-bottom: 0; } }
2064
+
2065
+ .attr-nav-tabs-justified {
2066
+ border-bottom: 0; }
2067
+
2068
+ .attr-nav-tabs-justified > li > a {
2069
+ margin-right: 0;
2070
+ border-radius: 4px; }
2071
+
2072
+ .attr-nav-tabs-justified > .attr-active > a, .attr-nav-tabs-justified > .attr-active > a:hover, .attr-nav-tabs-justified > .attr-active > a:focus {
2073
+ border: 1px solid #ddd; }
2074
+
2075
+ @media (min-width: 768px) {
2076
+ .attr-nav-tabs-justified > li > a {
2077
+ border-bottom: 1px solid #ddd;
2078
+ border-radius: 4px 4px 0 0; }
2079
+ .attr-nav-tabs-justified > .attr-active > a, .attr-nav-tabs-justified > .attr-active > a:hover, .attr-nav-tabs-justified > .attr-active > a:focus {
2080
+ border-bottom-color: #fff; } }
2081
+
2082
+ .attr-tab-content > .attr-tab-pane {
2083
+ display: none; }
2084
+
2085
+ .attr-tab-content > .attr-active {
2086
+ display: block; }
2087
+
2088
+ .attr-nav-tabs .attr-dropdown-menu {
2089
+ margin-top: -1px;
2090
+ border-top-left-radius: 0;
2091
+ border-top-right-radius: 0; }
2092
+
2093
+ .attr-navbar {
2094
+ position: relative;
2095
+ min-height: 50px;
2096
+ margin-bottom: 20px;
2097
+ border: 1px solid transparent; }
2098
+
2099
+ @media (min-width: 768px) {
2100
+ .attr-navbar {
2101
+ border-radius: 4px; } }
2102
+
2103
+ @media (min-width: 768px) {
2104
+ .attr-navbar-header {
2105
+ float: left; } }
2106
+
2107
+ .attr-navbar-collapse {
2108
+ padding-right: 15px;
2109
+ padding-left: 15px;
2110
+ overflow-x: visible;
2111
+ -webkit-overflow-scrolling: touch;
2112
+ border-top: 1px solid transparent;
2113
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
2114
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }
2115
+
2116
+ .attr-navbar-collapse.attr-in {
2117
+ overflow-y: auto; }
2118
+
2119
+ @media (min-width: 768px) {
2120
+ .attr-navbar-collapse {
2121
+ width: auto;
2122
+ border-top: 0;
2123
+ -webkit-box-shadow: none;
2124
+ box-shadow: none; }
2125
+ .attr-navbar-collapse.attr-collapse {
2126
+ display: block !important;
2127
+ height: auto !important;
2128
+ padding-bottom: 0;
2129
+ overflow: visible !important; }
2130
+ .attr-navbar-collapse.attr-in {
2131
+ overflow-y: visible; }
2132
+ .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-static-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2133
+ padding-right: 0;
2134
+ padding-left: 0; } }
2135
+
2136
+ .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2137
+ max-height: 340px; }
2138
+
2139
+ @media (max-device-width: 480px) and (orientation: landscape) {
2140
+ .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2141
+ max-height: 200px; } }
2142
+
2143
+ .attr-container > .attr-navbar-header, .attr-container-fluid > .attr-navbar-header, .attr-container > .attr-navbar-collapse, .attr-container-fluid > .attr-navbar-collapse {
2144
+ margin-right: -15px;
2145
+ margin-left: -15px; }
2146
+
2147
+ @media (min-width: 768px) {
2148
+ .attr-container > .attr-navbar-header, .attr-container-fluid > .attr-navbar-header, .attr-container > .attr-navbar-collapse, .attr-container-fluid > .attr-navbar-collapse {
2149
+ margin-right: 0;
2150
+ margin-left: 0; } }
2151
+
2152
+ .attr-navbar-static-top {
2153
+ z-index: 1000;
2154
+ border-width: 0 0 1px; }
2155
+
2156
+ @media (min-width: 768px) {
2157
+ .attr-navbar-static-top {
2158
+ border-radius: 0; } }
2159
+
2160
+ .attr-navbar-fixed-top, .attr-navbar-fixed-bottom {
2161
+ position: fixed;
2162
+ right: 0;
2163
+ left: 0;
2164
+ z-index: 1030; }
2165
+
2166
+ @media (min-width: 768px) {
2167
+ .attr-navbar-fixed-top, .attr-navbar-fixed-bottom {
2168
+ border-radius: 0; } }
2169
+
2170
+ .attr-navbar-fixed-top {
2171
+ top: 0;
2172
+ border-width: 0 0 1px; }
2173
+
2174
+ .attr-navbar-fixed-bottom {
2175
+ bottom: 0;
2176
+ margin-bottom: 0;
2177
+ border-width: 1px 0 0; }
2178
+
2179
+ .attr-navbar-brand {
2180
+ float: left;
2181
+ height: 50px;
2182
+ padding: 15px 15px;
2183
+ font-size: 18px;
2184
+ line-height: 20px; }
2185
+
2186
+ .attr-navbar-brand:hover, .attr-navbar-brand:focus {
2187
+ text-decoration: none; }
2188
+
2189
+ .attr-navbar-brand > img {
2190
+ display: block; }
2191
+
2192
+ @media (min-width: 768px) {
2193
+ .attr-navbar > .attr-container .attr-navbar-brand, .attr-navbar > .attr-container-fluid .attr-navbar-brand {
2194
+ margin-left: -15px; } }
2195
+
2196
+ .attr-navbar-toggle {
2197
+ position: relative;
2198
+ float: right;
2199
+ padding: 9px 10px;
2200
+ margin-top: 8px;
2201
+ margin-right: 15px;
2202
+ margin-bottom: 8px;
2203
+ background-color: transparent;
2204
+ background-image: none;
2205
+ border: 1px solid transparent;
2206
+ border-radius: 4px; }
2207
+
2208
+ .attr-navbar-toggle:focus {
2209
+ outline: 0; }
2210
+
2211
+ .attr-navbar-toggle .attr-icon-bar {
2212
+ display: block;
2213
+ width: 22px;
2214
+ height: 2px;
2215
+ border-radius: 1px; }
2216
+
2217
+ .attr-navbar-toggle .attr-icon-bar + .attr-icon-bar {
2218
+ margin-top: 4px; }
2219
+
2220
+ @media (min-width: 768px) {
2221
+ .attr-navbar-toggle {
2222
+ display: none; } }
2223
+
2224
+ .attr-navbar-nav {
2225
+ margin: 7.5px -15px; }
2226
+
2227
+ .attr-navbar-nav > li > a {
2228
+ padding-top: 10px;
2229
+ padding-bottom: 10px;
2230
+ line-height: 20px; }
2231
+
2232
+ @media (max-width: 767px) {
2233
+ .attr-navbar-nav .attr-open .attr-dropdown-menu {
2234
+ position: static;
2235
+ float: none;
2236
+ width: auto;
2237
+ margin-top: 0;
2238
+ background-color: transparent;
2239
+ border: 0;
2240
+ -webkit-box-shadow: none;
2241
+ box-shadow: none; }
2242
+ .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a, .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header {
2243
+ padding: 5px 15px 5px 25px; }
2244
+ .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
2245
+ line-height: 20px; }
2246
+ .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
2247
+ background-image: none; } }
2248
+
2249
+ @media (min-width: 768px) {
2250
+ .attr-navbar-nav {
2251
+ float: left;
2252
+ margin: 0; }
2253
+ .attr-navbar-nav > li {
2254
+ float: left; }
2255
+ .attr-navbar-nav > li > a {
2256
+ padding-top: 15px;
2257
+ padding-bottom: 15px; } }
2258
+
2259
+ .attr-navbar-form {
2260
+ padding: 10px 15px;
2261
+ margin-top: 8px;
2262
+ margin-right: -15px;
2263
+ margin-bottom: 8px;
2264
+ margin-left: -15px;
2265
+ border-top: 1px solid transparent;
2266
+ border-bottom: 1px solid transparent;
2267
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
2268
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); }
2269
+
2270
+ @media (min-width: 768px) {
2271
+ .attr-navbar-form .attr-form-group {
2272
+ display: inline-block;
2273
+ margin-bottom: 0;
2274
+ vertical-align: middle; }
2275
+ .attr-navbar-form .attr-form-control {
2276
+ display: inline-block;
2277
+ width: auto;
2278
+ vertical-align: middle; }
2279
+ .attr-navbar-form .attr-form-control-static {
2280
+ display: inline-block; }
2281
+ .attr-navbar-form .attr-input-group {
2282
+ display: inline-table;
2283
+ vertical-align: middle; }
2284
+ .attr-navbar-form .attr-input-group .attr-input-group-addon, .attr-navbar-form .attr-input-group .attr-input-group-btn, .attr-navbar-form .attr-input-group .attr-form-control {
2285
+ width: auto; }
2286
+ .attr-navbar-form .attr-input-group > .attr-form-control {
2287
+ width: 100%; }
2288
+ .attr-navbar-form .attr-control-label {
2289
+ margin-bottom: 0;
2290
+ vertical-align: middle; }
2291
+ .attr-navbar-form .attr-radio, .attr-navbar-form .attr-checkbox {
2292
+ display: inline-block;
2293
+ margin-top: 0;
2294
+ margin-bottom: 0;
2295
+ vertical-align: middle; }
2296
+ .attr-navbar-form .attr-radio label, .attr-navbar-form .attr-checkbox label {
2297
+ padding-left: 0; }
2298
+ .attr-navbar-form .attr-radio input[type="radio"], .attr-navbar-form .attr-checkbox input[type="checkbox"] {
2299
+ position: relative;
2300
+ margin-left: 0; }
2301
+ .attr-navbar-form .attr-has-feedback .attr-form-control-feedback {
2302
+ top: 0; } }
2303
+
2304
+ @media (max-width: 767px) {
2305
+ .attr-navbar-form .attr-form-group {
2306
+ margin-bottom: 5px; }
2307
+ .attr-navbar-form .attr-form-group:last-child {
2308
+ margin-bottom: 0; } }
2309
+
2310
+ @media (min-width: 768px) {
2311
+ .attr-navbar-form {
2312
+ width: auto;
2313
+ padding-top: 0;
2314
+ padding-bottom: 0;
2315
+ margin-right: 0;
2316
+ margin-left: 0;
2317
+ border: 0;
2318
+ -webkit-box-shadow: none;
2319
+ box-shadow: none; } }
2320
+
2321
+ .attr-navbar-nav > li > .attr-dropdown-menu {
2322
+ margin-top: 0;
2323
+ border-top-left-radius: 0;
2324
+ border-top-right-radius: 0; }
2325
+
2326
+ .attr-navbar-fixed-bottom .attr-navbar-nav > li > .attr-dropdown-menu {
2327
+ margin-bottom: 0;
2328
+ border-top-left-radius: 4px;
2329
+ border-top-right-radius: 4px;
2330
+ border-bottom-right-radius: 0;
2331
+ border-bottom-left-radius: 0; }
2332
+
2333
+ .attr-navbar-btn {
2334
+ margin-top: 8px;
2335
+ margin-bottom: 8px; }
2336
+
2337
+ .attr-navbar-btn.attr-btn-sm {
2338
+ margin-top: 10px;
2339
+ margin-bottom: 10px; }
2340
+
2341
+ .attr-navbar-btn.attr-btn-xs {
2342
+ margin-top: 14px;
2343
+ margin-bottom: 14px; }
2344
+
2345
+ .attr-navbar-text {
2346
+ margin-top: 15px;
2347
+ margin-bottom: 15px; }
2348
+
2349
+ @media (min-width: 768px) {
2350
+ .attr-navbar-text {
2351
+ float: left;
2352
+ margin-right: 15px;
2353
+ margin-left: 15px; } }
2354
+
2355
+ @media (min-width: 768px) {
2356
+ .attr-navbar-left {
2357
+ float: left !important; }
2358
+ .attr-navbar-right {
2359
+ float: right !important;
2360
+ margin-right: -15px; }
2361
+ .attr-navbar-right ~ .attr-navbar-right {
2362
+ margin-right: 0; } }
2363
+
2364
+ .attr-navbar-default {
2365
+ background-color: #f8f8f8;
2366
+ border-color: #e7e7e7; }
2367
+
2368
+ .attr-navbar-default .attr-navbar-brand {
2369
+ color: #777; }
2370
+
2371
+ .attr-navbar-default .attr-navbar-brand:hover, .attr-navbar-default .attr-navbar-brand:focus {
2372
+ color: #5e5e5e;
2373
+ background-color: transparent; }
2374
+
2375
+ .attr-navbar-default .attr-navbar-text {
2376
+ color: #777; }
2377
+
2378
+ .attr-navbar-default .attr-navbar-nav > li > a {
2379
+ color: #777; }
2380
+
2381
+ .attr-navbar-default .attr-navbar-nav > li > a:hover, .attr-navbar-default .attr-navbar-nav > li > a:focus {
2382
+ color: #333;
2383
+ background-color: transparent; }
2384
+
2385
+ .attr-navbar-default .attr-navbar-nav > .attr-active > a, .attr-navbar-default .attr-navbar-nav > .attr-active > a:hover, .attr-navbar-default .attr-navbar-nav > .attr-active > a:focus {
2386
+ color: #555;
2387
+ background-color: #e7e7e7; }
2388
+
2389
+ .attr-navbar-default .attr-navbar-nav > .attr-disabled > a, .attr-navbar-default .attr-navbar-nav > .attr-disabled > a:hover, .attr-navbar-default .attr-navbar-nav > .attr-disabled > a:focus {
2390
+ color: #ccc;
2391
+ background-color: transparent; }
2392
+
2393
+ .attr-navbar-default .attr-navbar-toggle {
2394
+ border-color: #ddd; }
2395
+
2396
+ .attr-navbar-default .attr-navbar-toggle:hover, .attr-navbar-default .attr-navbar-toggle:focus {
2397
+ background-color: #ddd; }
2398
+
2399
+ .attr-navbar-default .attr-navbar-toggle .attr-icon-bar {
2400
+ background-color: #888; }
2401
+
2402
+ .attr-navbar-default .attr-navbar-collapse, .attr-navbar-default .attr-navbar-form {
2403
+ border-color: #e7e7e7; }
2404
+
2405
+ .attr-navbar-default .attr-navbar-nav > .attr-open > a, .attr-navbar-default .attr-navbar-nav > .attr-open > a:hover, .attr-navbar-default .attr-navbar-nav > .attr-open > a:focus {
2406
+ color: #555;
2407
+ background-color: #e7e7e7; }
2408
+
2409
+ @media (max-width: 767px) {
2410
+ .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
2411
+ color: #777; }
2412
+ .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
2413
+ color: #333;
2414
+ background-color: transparent; }
2415
+ .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:hover, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:focus {
2416
+ color: #555;
2417
+ background-color: #e7e7e7; }
2418
+ .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:hover, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:focus {
2419
+ color: #ccc;
2420
+ background-color: transparent; } }
2421
+
2422
+ .attr-navbar-default .attr-navbar-link {
2423
+ color: #777; }
2424
+
2425
+ .attr-navbar-default .attr-navbar-link:hover {
2426
+ color: #333; }
2427
+
2428
+ .attr-navbar-default .attr-btn-link {
2429
+ color: #777; }
2430
+
2431
+ .attr-navbar-default .attr-btn-link:hover, .attr-navbar-default .attr-btn-link:focus {
2432
+ color: #333; }
2433
+
2434
+ .attr-navbar-default .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-navbar-default .attr-btn-link:hover, .attr-navbar-default .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-navbar-default .attr-btn-link:focus {
2435
+ color: #ccc; }
2436
+
2437
+ .attr-navbar-inverse {
2438
+ background-color: #222;
2439
+ border-color: #080808; }
2440
+
2441
+ .attr-navbar-inverse .attr-navbar-brand {
2442
+ color: #9d9d9d; }
2443
+
2444
+ .attr-navbar-inverse .attr-navbar-brand:hover, .attr-navbar-inverse .attr-navbar-brand:focus {
2445
+ color: #fff;
2446
+ background-color: transparent; }
2447
+
2448
+ .attr-navbar-inverse .attr-navbar-text {
2449
+ color: #9d9d9d; }
2450
+
2451
+ .attr-navbar-inverse .attr-navbar-nav > li > a {
2452
+ color: #9d9d9d; }
2453
+
2454
+ .attr-navbar-inverse .attr-navbar-nav > li > a:hover, .attr-navbar-inverse .attr-navbar-nav > li > a:focus {
2455
+ color: #fff;
2456
+ background-color: transparent; }
2457
+
2458
+ .attr-navbar-inverse .attr-navbar-nav > .attr-active > a, .attr-navbar-inverse .attr-navbar-nav > .attr-active > a:hover, .attr-navbar-inverse .attr-navbar-nav > .attr-active > a:focus {
2459
+ color: #fff;
2460
+ background-color: #080808; }
2461
+
2462
+ .attr-navbar-inverse .attr-navbar-nav > .attr-disabled > a, .attr-navbar-inverse .attr-navbar-nav > .attr-disabled > a:hover, .attr-navbar-inverse .attr-navbar-nav > .attr-disabled > a:focus {
2463
+ color: #444;
2464
+ background-color: transparent; }
2465
+
2466
+ .attr-navbar-inverse .attr-navbar-toggle {
2467
+ border-color: #333; }
2468
+
2469
+ .attr-navbar-inverse .attr-navbar-toggle:hover, .attr-navbar-inverse .attr-navbar-toggle:focus {
2470
+ background-color: #333; }
2471
+
2472
+ .attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar {
2473
+ background-color: #fff; }
2474
+
2475
+ .attr-navbar-inverse .attr-navbar-collapse, .attr-navbar-inverse .attr-navbar-form {
2476
+ border-color: #101010; }
2477
+
2478
+ .attr-navbar-inverse .attr-navbar-nav > .attr-open > a, .attr-navbar-inverse .attr-navbar-nav > .attr-open > a:hover, .attr-navbar-inverse .attr-navbar-nav > .attr-open > a:focus {
2479
+ color: #fff;
2480
+ background-color: #080808; }
2481
+
2482
+ @media (max-width: 767px) {
2483
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-dropdown-header {
2484
+ border-color: #080808; }
2485
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider {
2486
+ background-color: #080808; }
2487
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
2488
+ color: #9d9d9d; }
2489
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
2490
+ color: #fff;
2491
+ background-color: transparent; }
2492
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:hover, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:focus {
2493
+ color: #fff;
2494
+ background-color: #080808; }
2495
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:hover, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:focus {
2496
+ color: #444;
2497
+ background-color: transparent; } }
2498
+
2499
+ .attr-navbar-inverse .attr-navbar-link {
2500
+ color: #9d9d9d; }
2501
+
2502
+ .attr-navbar-inverse .attr-navbar-link:hover {
2503
+ color: #fff; }
2504
+
2505
+ .attr-navbar-inverse .attr-btn-link {
2506
+ color: #9d9d9d; }
2507
+
2508
+ .attr-navbar-inverse .attr-btn-link:hover, .attr-navbar-inverse .attr-btn-link:focus {
2509
+ color: #fff; }
2510
+
2511
+ .attr-navbar-inverse .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover, .attr-navbar-inverse .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus {
2512
+ color: #444; }
2513
+
2514
+ .attr-breadcrumb {
2515
+ padding: 8px 15px;
2516
+ margin-bottom: 20px;
2517
+ list-style: none;
2518
+ background-color: #f5f5f5;
2519
+ border-radius: 4px; }
2520
+
2521
+ .attr-breadcrumb > li {
2522
+ display: inline-block; }
2523
+
2524
+ .attr-breadcrumb > li + li:before {
2525
+ padding: 0 5px;
2526
+ color: #ccc;
2527
+ content: "/\00a0"; }
2528
+
2529
+ .attr-breadcrumb > .attr-active {
2530
+ color: #777; }
2531
+
2532
+ .attr-pagination {
2533
+ display: inline-block;
2534
+ padding-left: 0;
2535
+ margin: 20px 0;
2536
+ border-radius: 4px; }
2537
+
2538
+ .attr-pagination > li {
2539
+ display: inline; }
2540
+
2541
+ .attr-pagination > li > a, .attr-pagination > li > span {
2542
+ position: relative;
2543
+ float: left;
2544
+ padding: 6px 12px;
2545
+ margin-left: -1px;
2546
+ line-height: 1.42857143;
2547
+ color: #337ab7;
2548
+ text-decoration: none;
2549
+ background-color: #fff;
2550
+ border: 1px solid #ddd; }
2551
+
2552
+ .attr-pagination > li:first-child > a, .attr-pagination > li:first-child > span {
2553
+ margin-left: 0;
2554
+ border-top-left-radius: 4px;
2555
+ border-bottom-left-radius: 4px; }
2556
+
2557
+ .attr-pagination > li:last-child > a, .attr-pagination > li:last-child > span {
2558
+ border-top-right-radius: 4px;
2559
+ border-bottom-right-radius: 4px; }
2560
+
2561
+ .attr-pagination > li > a:hover, .attr-pagination > li > span:hover, .attr-pagination > li > a:focus, .attr-pagination > li > span:focus {
2562
+ z-index: 2;
2563
+ color: #23527c;
2564
+ background-color: #eee;
2565
+ border-color: #ddd; }
2566
+
2567
+ .attr-pagination > .attr-active > a, .attr-pagination > .attr-active > span, .attr-pagination > .attr-active > a:hover, .attr-pagination > .attr-active > span:hover, .attr-pagination > .attr-active > a:focus, .attr-pagination > .attr-active > span:focus {
2568
+ z-index: 3;
2569
+ color: #fff;
2570
+ cursor: default;
2571
+ background-color: #337ab7;
2572
+ border-color: #337ab7; }
2573
+
2574
+ .attr-pagination > .attr-disabled > span, .attr-pagination > .attr-disabled > span:hover, .attr-pagination > .attr-disabled > span:focus, .attr-pagination > .attr-disabled > a, .attr-pagination > .attr-disabled > a:hover, .attr-pagination > .attr-disabled > a:focus {
2575
+ color: #777;
2576
+ cursor: not-allowed;
2577
+ background-color: #fff;
2578
+ border-color: #ddd; }
2579
+
2580
+ .attr-pagination-lg > li > a, .attr-pagination-lg > li > span {
2581
+ padding: 10px 16px;
2582
+ font-size: 18px;
2583
+ line-height: 1.3333333; }
2584
+
2585
+ .attr-pagination-lg > li:first-child > a, .attr-pagination-lg > li:first-child > span {
2586
+ border-top-left-radius: 6px;
2587
+ border-bottom-left-radius: 6px; }
2588
+
2589
+ .attr-pagination-lg > li:last-child > a, .attr-pagination-lg > li:last-child > span {
2590
+ border-top-right-radius: 6px;
2591
+ border-bottom-right-radius: 6px; }
2592
+
2593
+ .attr-pagination-sm > li > a, .attr-pagination-sm > li > span {
2594
+ padding: 5px 10px;
2595
+ font-size: 12px;
2596
+ line-height: 1.5; }
2597
+
2598
+ .attr-pagination-sm > li:first-child > a, .attr-pagination-sm > li:first-child > span {
2599
+ border-top-left-radius: 3px;
2600
+ border-bottom-left-radius: 3px; }
2601
+
2602
+ .attr-pagination-sm > li:last-child > a, .attr-pagination-sm > li:last-child > span {
2603
+ border-top-right-radius: 3px;
2604
+ border-bottom-right-radius: 3px; }
2605
+
2606
+ .attr-pager {
2607
+ padding-left: 0;
2608
+ margin: 20px 0;
2609
+ text-align: center;
2610
+ list-style: none; }
2611
+
2612
+ .attr-pager li {
2613
+ display: inline; }
2614
+
2615
+ .attr-pager li > a, .attr-pager li > span {
2616
+ display: inline-block;
2617
+ padding: 5px 14px;
2618
+ background-color: #fff;
2619
+ border: 1px solid #ddd;
2620
+ border-radius: 15px; }
2621
+
2622
+ .attr-pager li > a:hover, .attr-pager li > a:focus {
2623
+ text-decoration: none;
2624
+ background-color: #eee; }
2625
+
2626
+ .attr-pager .attr-next > a, .attr-pager .attr-next > span {
2627
+ float: right; }
2628
+
2629
+ .attr-pager .attr-previous > a, .attr-pager .attr-previous > span {
2630
+ float: left; }
2631
+
2632
+ .attr-pager .attr-disabled > a, .attr-pager .attr-disabled > a:hover, .attr-pager .attr-disabled > a:focus, .attr-pager .attr-disabled > span {
2633
+ color: #777;
2634
+ cursor: not-allowed;
2635
+ background-color: #fff; }
2636
+
2637
+ .attr-label {
2638
+ display: inline;
2639
+ padding: .2em .6em .3em;
2640
+ font-size: 75%;
2641
+ font-weight: bold;
2642
+ line-height: 1;
2643
+ color: #fff;
2644
+ text-align: center;
2645
+ white-space: nowrap;
2646
+ vertical-align: baseline;
2647
+ border-radius: .25em; }
2648
+
2649
+ a.attr-label:hover, a.attr-label:focus {
2650
+ color: #fff;
2651
+ text-decoration: none;
2652
+ cursor: pointer; }
2653
+
2654
+ .attr-label:empty {
2655
+ display: none; }
2656
+
2657
+ .attr-btn .attr-label {
2658
+ position: relative;
2659
+ top: -1px; }
2660
+
2661
+ .attr-label-default {
2662
+ background-color: #777; }
2663
+
2664
+ .attr-label-default[href]:hover, .attr-label-default[href]:focus {
2665
+ background-color: #5e5e5e; }
2666
+
2667
+ .attr-label-primary {
2668
+ background-color: #337ab7; }
2669
+
2670
+ .attr-label-primary[href]:hover, .attr-label-primary[href]:focus {
2671
+ background-color: #286090; }
2672
+
2673
+ .attr-label-success {
2674
+ background-color: #5cb85c; }
2675
+
2676
+ .attr-label-success[href]:hover, .attr-label-success[href]:focus {
2677
+ background-color: #449d44; }
2678
+
2679
+ .attr-label-info {
2680
+ background-color: #5bc0de; }
2681
+
2682
+ .attr-label-info[href]:hover, .attr-label-info[href]:focus {
2683
+ background-color: #31b0d5; }
2684
+
2685
+ .attr-label-warning {
2686
+ background-color: #f0ad4e; }
2687
+
2688
+ .attr-label-warning[href]:hover, .attr-label-warning[href]:focus {
2689
+ background-color: #ec971f; }
2690
+
2691
+ .attr-label-danger {
2692
+ background-color: #d9534f; }
2693
+
2694
+ .attr-label-danger[href]:hover, .attr-label-danger[href]:focus {
2695
+ background-color: #c9302c; }
2696
+
2697
+ .attr-badge {
2698
+ display: inline-block;
2699
+ min-width: 10px;
2700
+ padding: 3px 7px;
2701
+ font-size: 12px;
2702
+ font-weight: bold;
2703
+ line-height: 1;
2704
+ color: #fff;
2705
+ text-align: center;
2706
+ white-space: nowrap;
2707
+ vertical-align: middle;
2708
+ background-color: #777;
2709
+ border-radius: 10px; }
2710
+
2711
+ .attr-badge:empty {
2712
+ display: none; }
2713
+
2714
+ .attr-btn .attr-badge {
2715
+ position: relative;
2716
+ top: -1px; }
2717
+
2718
+ .attr-btn-xs .attr-badge, .attr-btn-group-xs > .attr-btn .attr-badge {
2719
+ top: 0;
2720
+ padding: 1px 5px; }
2721
+
2722
+ a.attr-badge:hover, a.attr-badge:focus {
2723
+ color: #fff;
2724
+ text-decoration: none;
2725
+ cursor: pointer; }
2726
+
2727
+ .attr-list-group-item.attr-active > .attr-badge, .attr-nav-pills > .attr-active > a > .attr-badge {
2728
+ color: #337ab7;
2729
+ background-color: #fff; }
2730
+
2731
+ .attr-list-group-item > .attr-badge {
2732
+ float: right; }
2733
+
2734
+ .attr-list-group-item > .attr-badge + .attr-badge {
2735
+ margin-right: 5px; }
2736
+
2737
+ .attr-nav-pills > li > a > .attr-badge {
2738
+ margin-left: 3px; }
2739
+
2740
+ .attr-jumbotron {
2741
+ padding-top: 30px;
2742
+ padding-bottom: 30px;
2743
+ margin-bottom: 30px;
2744
+ color: inherit;
2745
+ background-color: #eee; }
2746
+
2747
+ .attr-jumbotron h1, .attr-jumbotron .attr-h1 {
2748
+ color: inherit; }
2749
+
2750
+ .attr-jumbotron p {
2751
+ margin-bottom: 15px;
2752
+ font-size: 21px;
2753
+ font-weight: 200; }
2754
+
2755
+ .attr-jumbotron > hr {
2756
+ border-top-color: #d5d5d5; }
2757
+
2758
+ .attr-container .attr-jumbotron, .attr-container-fluid .attr-jumbotron {
2759
+ padding-right: 15px;
2760
+ padding-left: 15px;
2761
+ border-radius: 6px; }
2762
+
2763
+ .attr-jumbotron .attr-container {
2764
+ max-width: 100%; }
2765
+
2766
+ @media screen and (min-width: 768px) {
2767
+ .attr-jumbotron {
2768
+ padding-top: 48px;
2769
+ padding-bottom: 48px; }
2770
+ .attr-container .attr-jumbotron, .attr-container-fluid .attr-jumbotron {
2771
+ padding-right: 60px;
2772
+ padding-left: 60px; }
2773
+ .attr-jumbotron h1, .attr-jumbotron .attr-h1 {
2774
+ font-size: 63px; } }
2775
+
2776
+ .attr-thumbnail {
2777
+ display: block;
2778
+ padding: 4px;
2779
+ margin-bottom: 20px;
2780
+ line-height: 1.42857143;
2781
+ background-color: #fff;
2782
+ border: 1px solid #ddd;
2783
+ border-radius: 4px;
2784
+ -webkit-transition: border .2s ease-in-out;
2785
+ -o-transition: border .2s ease-in-out;
2786
+ transition: border .2s ease-in-out; }
2787
+
2788
+ .attr-thumbnail > img, .attr-thumbnail a > img {
2789
+ margin-right: auto;
2790
+ margin-left: auto; }
2791
+
2792
+ a.attr-thumbnail:hover, a.attr-thumbnail:focus, a.attr-thumbnail.attr-active {
2793
+ border-color: #337ab7; }
2794
+
2795
+ .attr-thumbnail .attr-caption {
2796
+ padding: 9px;
2797
+ color: #333; }
2798
+
2799
+ .attr-alert {
2800
+ padding: 15px;
2801
+ margin-bottom: 20px;
2802
+ border: 1px solid transparent;
2803
+ border-radius: 4px; }
2804
+
2805
+ .attr-alert h4 {
2806
+ margin-top: 0;
2807
+ color: inherit; }
2808
+
2809
+ .attr-alert .attr-alert-link {
2810
+ font-weight: bold; }
2811
+
2812
+ .attr-alert > p, .attr-alert > ul {
2813
+ margin-bottom: 0; }
2814
+
2815
+ .attr-alert > p + p {
2816
+ margin-top: 5px; }
2817
+
2818
+ .attr-alert-dismissable, .attr-alert-dismissible {
2819
+ padding-right: 35px; }
2820
+
2821
+ .attr-alert-dismissable .attr-close, .attr-alert-dismissible .attr-close {
2822
+ position: relative;
2823
+ top: -2px;
2824
+ right: -21px;
2825
+ color: inherit; }
2826
+
2827
+ .attr-alert-success {
2828
+ color: #3c763d;
2829
+ background-color: #dff0d8;
2830
+ border-color: #d6e9c6; }
2831
+
2832
+ .attr-alert-success hr {
2833
+ border-top-color: #c9e2b3; }
2834
+
2835
+ .attr-alert-success .attr-alert-link {
2836
+ color: #2b542c; }
2837
+
2838
+ .attr-alert-info {
2839
+ color: #31708f;
2840
+ background-color: #d9edf7;
2841
+ border-color: #bce8f1; }
2842
+
2843
+ .attr-alert-info hr {
2844
+ border-top-color: #a6e1ec; }
2845
+
2846
+ .attr-alert-info .attr-alert-link {
2847
+ color: #245269; }
2848
+
2849
+ .attr-alert-warning {
2850
+ color: #8a6d3b;
2851
+ background-color: #fcf8e3;
2852
+ border-color: #faebcc; }
2853
+
2854
+ .attr-alert-warning hr {
2855
+ border-top-color: #f7e1b5; }
2856
+
2857
+ .attr-alert-warning .attr-alert-link {
2858
+ color: #66512c; }
2859
+
2860
+ .attr-alert-danger {
2861
+ color: #a94442;
2862
+ background-color: #f2dede;
2863
+ border-color: #ebccd1; }
2864
+
2865
+ .attr-alert-danger hr {
2866
+ border-top-color: #e4b9c0; }
2867
+
2868
+ .attr-alert-danger .attr-alert-link {
2869
+ color: #843534; }
2870
+
2871
+ @-webkit-keyframes progress-bar-stripes {
2872
+ from {
2873
+ background-position: 40px 0; }
2874
+ to {
2875
+ background-position: 0 0; } }
2876
+
2877
+ @-o-keyframes progress-bar-stripes {
2878
+ from {
2879
+ background-position: 40px 0; }
2880
+ to {
2881
+ background-position: 0 0; } }
2882
+
2883
+ @keyframes progress-bar-stripes {
2884
+ from {
2885
+ background-position: 40px 0; }
2886
+ to {
2887
+ background-position: 0 0; } }
2888
+
2889
+ .attr-progress {
2890
+ height: 20px;
2891
+ margin-bottom: 20px;
2892
+ overflow: hidden;
2893
+ background-color: #f5f5f5;
2894
+ border-radius: 4px;
2895
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2896
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
2897
+
2898
+ .attr-progress-bar {
2899
+ float: left;
2900
+ width: 0;
2901
+ height: 100%;
2902
+ font-size: 12px;
2903
+ line-height: 20px;
2904
+ color: #fff;
2905
+ text-align: center;
2906
+ background-color: #337ab7;
2907
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2908
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2909
+ -webkit-transition: width .6s ease;
2910
+ -o-transition: width .6s ease;
2911
+ transition: width .6s ease; }
2912
+
2913
+ .attr-progress-striped .attr-progress-bar, .attr-progress-bar-striped {
2914
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2915
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2916
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2917
+ -webkit-background-size: 40px 40px;
2918
+ background-size: 40px 40px; }
2919
+
2920
+ .attr-progress.attr-active .attr-progress-bar, .attr-progress-bar.attr-active {
2921
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
2922
+ -o-animation: progress-bar-stripes 2s linear infinite;
2923
+ animation: progress-bar-stripes 2s linear infinite; }
2924
+
2925
+ .attr-progress-bar-success {
2926
+ background-color: #5cb85c; }
2927
+
2928
+ .attr-progress-striped .attr-progress-bar-success {
2929
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2930
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2931
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2932
+
2933
+ .attr-progress-bar-info {
2934
+ background-color: #5bc0de; }
2935
+
2936
+ .attr-progress-striped .attr-progress-bar-info {
2937
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2938
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2939
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2940
+
2941
+ .attr-progress-bar-warning {
2942
+ background-color: #f0ad4e; }
2943
+
2944
+ .attr-progress-striped .attr-progress-bar-warning {
2945
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2946
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2947
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2948
+
2949
+ .attr-progress-bar-danger {
2950
+ background-color: #d9534f; }
2951
+
2952
+ .attr-progress-striped .attr-progress-bar-danger {
2953
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2954
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2955
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2956
+
2957
+ .attr-media {
2958
+ margin-top: 15px; }
2959
+
2960
+ .attr-media:first-child {
2961
+ margin-top: 0; }
2962
+
2963
+ .attr-media, .attr-media-body {
2964
+ overflow: hidden;
2965
+ zoom: 1; }
2966
+
2967
+ .attr-media-body {
2968
+ width: 10000px; }
2969
+
2970
+ .attr-media-object {
2971
+ display: block; }
2972
+
2973
+ .attr-media-object.attr-img-thumbnail {
2974
+ max-width: none; }
2975
+
2976
+ .attr-media-right, .attr-media > .attr-pull-right {
2977
+ padding-left: 10px; }
2978
+
2979
+ .attr-media-left, .attr-media > .attr-pull-left {
2980
+ padding-right: 10px; }
2981
+
2982
+ .attr-media-left, .attr-media-right, .attr-media-body {
2983
+ display: table-cell;
2984
+ vertical-align: top; }
2985
+
2986
+ .attr-media-middle {
2987
+ vertical-align: middle; }
2988
+
2989
+ .attr-media-bottom {
2990
+ vertical-align: bottom; }
2991
+
2992
+ .attr-media-heading {
2993
+ margin-top: 0;
2994
+ margin-bottom: 5px; }
2995
+
2996
+ .attr-media-list {
2997
+ padding-left: 0;
2998
+ list-style: none; }
2999
+
3000
+ .attr-list-group {
3001
+ padding-left: 0;
3002
+ margin-bottom: 20px; }
3003
+
3004
+ .attr-list-group-item {
3005
+ position: relative;
3006
+ display: block;
3007
+ padding: 10px 15px;
3008
+ margin-bottom: -1px;
3009
+ background-color: #fff;
3010
+ border: 1px solid #ddd; }
3011
+
3012
+ .attr-list-group-item:first-child {
3013
+ border-top-left-radius: 4px;
3014
+ border-top-right-radius: 4px; }
3015
+
3016
+ .attr-list-group-item:last-child {
3017
+ margin-bottom: 0;
3018
+ border-bottom-right-radius: 4px;
3019
+ border-bottom-left-radius: 4px; }
3020
+
3021
+ a.attr-list-group-item, button.attr-list-group-item {
3022
+ color: #555; }
3023
+
3024
+ a.attr-list-group-item .attr-list-group-item-heading, button.attr-list-group-item .attr-list-group-item-heading {
3025
+ color: #333; }
3026
+
3027
+ a.attr-list-group-item:hover, button.attr-list-group-item:hover, a.attr-list-group-item:focus, button.attr-list-group-item:focus {
3028
+ color: #555;
3029
+ text-decoration: none;
3030
+ background-color: #f5f5f5; }
3031
+
3032
+ button.attr-list-group-item {
3033
+ width: 100%;
3034
+ text-align: left; }
3035
+
3036
+ .attr-list-group-item.attr-disabled, .attr-list-group-item.attr-disabled:hover, .attr-list-group-item.attr-disabled:focus {
3037
+ color: #777;
3038
+ cursor: not-allowed;
3039
+ background-color: #eee; }
3040
+
3041
+ .attr-list-group-item.attr-disabled .attr-list-group-item-heading, .attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading, .attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading {
3042
+ color: inherit; }
3043
+
3044
+ .attr-list-group-item.attr-disabled .attr-list-group-item-text, .attr-list-group-item.attr-disabled:hover .attr-list-group-item-text, .attr-list-group-item.attr-disabled:focus .attr-list-group-item-text {
3045
+ color: #777; }
3046
+
3047
+ .attr-list-group-item.attr-active, .attr-list-group-item.attr-active:hover, .attr-list-group-item.attr-active:focus {
3048
+ z-index: 2;
3049
+ color: #fff;
3050
+ background-color: #337ab7;
3051
+ border-color: #337ab7; }
3052
+
3053
+ .attr-list-group-item.attr-active .attr-list-group-item-heading, .attr-list-group-item.attr-active:hover .attr-list-group-item-heading, .attr-list-group-item.attr-active:focus .attr-list-group-item-heading, .attr-list-group-item.attr-active .attr-list-group-item-heading > small, .attr-list-group-item.attr-active:hover .attr-list-group-item-heading > small, .attr-list-group-item.attr-active:focus .attr-list-group-item-heading > small, .attr-list-group-item.attr-active .attr-list-group-item-heading > .attr-small, .attr-list-group-item.attr-active:hover .attr-list-group-item-heading > .attr-small, .attr-list-group-item.attr-active:focus .attr-list-group-item-heading > .attr-small {
3054
+ color: inherit; }
3055
+
3056
+ .attr-list-group-item.attr-active .attr-list-group-item-text, .attr-list-group-item.attr-active:hover .attr-list-group-item-text, .attr-list-group-item.attr-active:focus .attr-list-group-item-text {
3057
+ color: #c7ddef; }
3058
+
3059
+ .attr-list-group-item-success {
3060
+ color: #3c763d;
3061
+ background-color: #dff0d8; }
3062
+
3063
+ a.attr-list-group-item-success, button.attr-list-group-item-success {
3064
+ color: #3c763d; }
3065
+
3066
+ a.attr-list-group-item-success .attr-list-group-item-heading, button.attr-list-group-item-success .attr-list-group-item-heading {
3067
+ color: inherit; }
3068
+
3069
+ a.attr-list-group-item-success:hover, button.attr-list-group-item-success:hover, a.attr-list-group-item-success:focus, button.attr-list-group-item-success:focus {
3070
+ color: #3c763d;
3071
+ background-color: #d0e9c6; }
3072
+
3073
+ a.attr-list-group-item-success.attr-active, button.attr-list-group-item-success.attr-active, a.attr-list-group-item-success.attr-active:hover, button.attr-list-group-item-success.attr-active:hover, a.attr-list-group-item-success.attr-active:focus, button.attr-list-group-item-success.attr-active:focus {
3074
+ color: #fff;
3075
+ background-color: #3c763d;
3076
+ border-color: #3c763d; }
3077
+
3078
+ .attr-list-group-item-info {
3079
+ color: #31708f;
3080
+ background-color: #d9edf7; }
3081
+
3082
+ a.attr-list-group-item-info, button.attr-list-group-item-info {
3083
+ color: #31708f; }
3084
+
3085
+ a.attr-list-group-item-info .attr-list-group-item-heading, button.attr-list-group-item-info .attr-list-group-item-heading {
3086
+ color: inherit; }
3087
+
3088
+ a.attr-list-group-item-info:hover, button.attr-list-group-item-info:hover, a.attr-list-group-item-info:focus, button.attr-list-group-item-info:focus {
3089
+ color: #31708f;
3090
+ background-color: #c4e3f3; }
3091
+
3092
+ a.attr-list-group-item-info.attr-active, button.attr-list-group-item-info.attr-active, a.attr-list-group-item-info.attr-active:hover, button.attr-list-group-item-info.attr-active:hover, a.attr-list-group-item-info.attr-active:focus, button.attr-list-group-item-info.attr-active:focus {
3093
+ color: #fff;
3094
+ background-color: #31708f;
3095
+ border-color: #31708f; }
3096
+
3097
+ .attr-list-group-item-warning {
3098
+ color: #8a6d3b;
3099
+ background-color: #fcf8e3; }
3100
+
3101
+ a.attr-list-group-item-warning, button.attr-list-group-item-warning {
3102
+ color: #8a6d3b; }
3103
+
3104
+ a.attr-list-group-item-warning .attr-list-group-item-heading, button.attr-list-group-item-warning .attr-list-group-item-heading {
3105
+ color: inherit; }
3106
+
3107
+ a.attr-list-group-item-warning:hover, button.attr-list-group-item-warning:hover, a.attr-list-group-item-warning:focus, button.attr-list-group-item-warning:focus {
3108
+ color: #8a6d3b;
3109
+ background-color: #faf2cc; }
3110
+
3111
+ a.attr-list-group-item-warning.attr-active, button.attr-list-group-item-warning.attr-active, a.attr-list-group-item-warning.attr-active:hover, button.attr-list-group-item-warning.attr-active:hover, a.attr-list-group-item-warning.attr-active:focus, button.attr-list-group-item-warning.attr-active:focus {
3112
+ color: #fff;
3113
+ background-color: #8a6d3b;
3114
+ border-color: #8a6d3b; }
3115
+
3116
+ .attr-list-group-item-danger {
3117
+ color: #a94442;
3118
+ background-color: #f2dede; }
3119
+
3120
+ a.attr-list-group-item-danger, button.attr-list-group-item-danger {
3121
+ color: #a94442; }
3122
+
3123
+ a.attr-list-group-item-danger .attr-list-group-item-heading, button.attr-list-group-item-danger .attr-list-group-item-heading {
3124
+ color: inherit; }
3125
+
3126
+ a.attr-list-group-item-danger:hover, button.attr-list-group-item-danger:hover, a.attr-list-group-item-danger:focus, button.attr-list-group-item-danger:focus {
3127
+ color: #a94442;
3128
+ background-color: #ebcccc; }
3129
+
3130
+ a.attr-list-group-item-danger.attr-active, button.attr-list-group-item-danger.attr-active, a.attr-list-group-item-danger.attr-active:hover, button.attr-list-group-item-danger.attr-active:hover, a.attr-list-group-item-danger.attr-active:focus, button.attr-list-group-item-danger.attr-active:focus {
3131
+ color: #fff;
3132
+ background-color: #a94442;
3133
+ border-color: #a94442; }
3134
+
3135
+ .attr-list-group-item-heading {
3136
+ margin-top: 0;
3137
+ margin-bottom: 5px; }
3138
+
3139
+ .attr-list-group-item-text {
3140
+ margin-bottom: 0;
3141
+ line-height: 1.3; }
3142
+
3143
+ .attr-panel {
3144
+ margin-bottom: 20px;
3145
+ background-color: #fff;
3146
+ border: 1px solid transparent;
3147
+ border-radius: 4px;
3148
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
3149
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
3150
+
3151
+ .attr-panel-body {
3152
+ padding: 15px; }
3153
+
3154
+ .attr-panel-heading {
3155
+ padding: 10px 15px;
3156
+ border-bottom: 1px solid transparent;
3157
+ border-top-left-radius: 3px;
3158
+ border-top-right-radius: 3px; }
3159
+
3160
+ .attr-panel-heading > .attr-dropdown .attr-dropdown-toggle {
3161
+ color: inherit; }
3162
+
3163
+ .attr-panel-title {
3164
+ margin-top: 0;
3165
+ margin-bottom: 0;
3166
+ font-size: 16px;
3167
+ color: inherit; }
3168
+
3169
+ .attr-panel-title > a, .attr-panel-title > small, .attr-panel-title > .attr-small, .attr-panel-title > small > a, .attr-panel-title > .attr-small > a {
3170
+ color: inherit; }
3171
+
3172
+ .attr-panel-footer {
3173
+ padding: 10px 15px;
3174
+ background-color: #f5f5f5;
3175
+ border-top: 1px solid #ddd;
3176
+ border-bottom-right-radius: 3px;
3177
+ border-bottom-left-radius: 3px; }
3178
+
3179
+ .attr-panel > .attr-list-group, .attr-panel > .attr-panel-collapse > .attr-list-group {
3180
+ margin-bottom: 0; }
3181
+
3182
+ .attr-panel > .attr-list-group .attr-list-group-item, .attr-panel > .attr-panel-collapse > .attr-list-group .attr-list-group-item {
3183
+ border-width: 1px 0;
3184
+ border-radius: 0; }
3185
+
3186
+ .attr-panel > .attr-list-group:first-child .attr-list-group-item:first-child, .attr-panel > .attr-panel-collapse > .attr-list-group:first-child .attr-list-group-item:first-child {
3187
+ border-top: 0;
3188
+ border-top-left-radius: 3px;
3189
+ border-top-right-radius: 3px; }
3190
+
3191
+ .attr-panel > .attr-list-group:last-child .attr-list-group-item:last-child, .attr-panel > .attr-panel-collapse > .attr-list-group:last-child .attr-list-group-item:last-child {
3192
+ border-bottom: 0;
3193
+ border-bottom-right-radius: 3px;
3194
+ border-bottom-left-radius: 3px; }
3195
+
3196
+ .attr-panel > .attr-panel-heading + .attr-panel-collapse > .attr-list-group .attr-list-group-item:first-child {
3197
+ border-top-left-radius: 0;
3198
+ border-top-right-radius: 0; }
3199
+
3200
+ .attr-panel-heading + .attr-list-group .attr-list-group-item:first-child {
3201
+ border-top-width: 0; }
3202
+
3203
+ .attr-list-group + .attr-panel-footer {
3204
+ border-top-width: 0; }
3205
+
3206
+ .attr-panel > .attr-table, .attr-panel > .attr-table-responsive > .attr-table, .attr-panel > .attr-panel-collapse > .attr-table {
3207
+ margin-bottom: 0; }
3208
+
3209
+ .attr-panel > .attr-table caption, .attr-panel > .attr-table-responsive > .attr-table caption, .attr-panel > .attr-panel-collapse > .attr-table caption {
3210
+ padding-right: 15px;
3211
+ padding-left: 15px; }
3212
+
3213
+ .attr-panel > .attr-table:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child {
3214
+ border-top-left-radius: 3px;
3215
+ border-top-right-radius: 3px; }
3216
+
3217
+ .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child {
3218
+ border-top-left-radius: 3px;
3219
+ border-top-right-radius: 3px; }
3220
+
3221
+ .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child td:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child td:first-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child td:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child td:first-child, .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child th:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child th:first-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child th:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child th:first-child {
3222
+ border-top-left-radius: 3px; }
3223
+
3224
+ .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child td:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child td:last-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child td:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child td:last-child, .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child th:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child th:last-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child th:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child th:last-child {
3225
+ border-top-right-radius: 3px; }
3226
+
3227
+ .attr-panel > .attr-table:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child {
3228
+ border-bottom-right-radius: 3px;
3229
+ border-bottom-left-radius: 3px; }
3230
+
3231
+ .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child {
3232
+ border-bottom-right-radius: 3px;
3233
+ border-bottom-left-radius: 3px; }
3234
+
3235
+ .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child td:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child td:first-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child td:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child td:first-child, .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child th:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child th:first-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child th:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child th:first-child {
3236
+ border-bottom-left-radius: 3px; }
3237
+
3238
+ .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child td:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child td:last-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child td:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child td:last-child, .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child th:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child th:last-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child th:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child th:last-child {
3239
+ border-bottom-right-radius: 3px; }
3240
+
3241
+ .attr-panel > .attr-panel-body + .attr-table, .attr-panel > .attr-panel-body + .attr-table-responsive, .attr-panel > .attr-table + .attr-panel-body, .attr-panel > .attr-table-responsive + .attr-panel-body {
3242
+ border-top: 1px solid #ddd; }
3243
+
3244
+ .attr-panel > .attr-table > tbody:first-child > tr:first-child th, .attr-panel > .attr-table > tbody:first-child > tr:first-child td {
3245
+ border-top: 0; }
3246
+
3247
+ .attr-panel > .attr-table-bordered, .attr-panel > .attr-table-responsive > .attr-table-bordered {
3248
+ border: 0; }
3249
+
3250
+ .attr-panel > .attr-table-bordered > thead > tr > th:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > th:first-child, .attr-panel > .attr-table-bordered > tbody > tr > th:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > th:first-child, .attr-panel > .attr-table-bordered > tfoot > tr > th:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:first-child, .attr-panel > .attr-table-bordered > thead > tr > td:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > td:first-child, .attr-panel > .attr-table-bordered > tbody > tr > td:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > td:first-child, .attr-panel > .attr-table-bordered > tfoot > tr > td:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:first-child {
3251
+ border-left: 0; }
3252
+
3253
+ .attr-panel > .attr-table-bordered > thead > tr > th:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > th:last-child, .attr-panel > .attr-table-bordered > tbody > tr > th:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > th:last-child, .attr-panel > .attr-table-bordered > tfoot > tr > th:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:last-child, .attr-panel > .attr-table-bordered > thead > tr > td:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > td:last-child, .attr-panel > .attr-table-bordered > tbody > tr > td:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > td:last-child, .attr-panel > .attr-table-bordered > tfoot > tr > td:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:last-child {
3254
+ border-right: 0; }
3255
+
3256
+ .attr-panel > .attr-table-bordered > thead > tr:first-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr:first-child > td, .attr-panel > .attr-table-bordered > tbody > tr:first-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:first-child > td, .attr-panel > .attr-table-bordered > thead > tr:first-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr:first-child > th, .attr-panel > .attr-table-bordered > tbody > tr:first-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:first-child > th {
3257
+ border-bottom: 0; }
3258
+
3259
+ .attr-panel > .attr-table-bordered > tbody > tr:last-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > td, .attr-panel > .attr-table-bordered > tfoot > tr:last-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > td, .attr-panel > .attr-table-bordered > tbody > tr:last-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > th, .attr-panel > .attr-table-bordered > tfoot > tr:last-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > th {
3260
+ border-bottom: 0; }
3261
+
3262
+ .attr-panel > .attr-table-responsive {
3263
+ margin-bottom: 0;
3264
+ border: 0; }
3265
+
3266
+ .attr-panel-group {
3267
+ margin-bottom: 20px; }
3268
+
3269
+ .attr-panel-group .attr-panel {
3270
+ margin-bottom: 0;
3271
+ border-radius: 4px; }
3272
+
3273
+ .attr-panel-group .attr-panel + .attr-panel {
3274
+ margin-top: 5px; }
3275
+
3276
+ .attr-panel-group .attr-panel-heading {
3277
+ border-bottom: 0; }
3278
+
3279
+ .attr-panel-group .attr-panel-heading + .attr-panel-collapse > .attr-panel-body, .attr-panel-group .attr-panel-heading + .attr-panel-collapse > .attr-list-group {
3280
+ border-top: 1px solid #ddd; }
3281
+
3282
+ .attr-panel-group .attr-panel-footer {
3283
+ border-top: 0; }
3284
+
3285
+ .attr-panel-group .attr-panel-footer + .attr-panel-collapse .attr-panel-body {
3286
+ border-bottom: 1px solid #ddd; }
3287
+
3288
+ .attr-panel-default {
3289
+ border-color: #ddd; }
3290
+
3291
+ .attr-panel-default > .attr-panel-heading {
3292
+ color: #333;
3293
+ background-color: #f5f5f5;
3294
+ border-color: #ddd; }
3295
+
3296
+ .attr-panel-default > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3297
+ border-top-color: #ddd; }
3298
+
3299
+ .attr-panel-default > .attr-panel-heading .attr-badge {
3300
+ color: #f5f5f5;
3301
+ background-color: #333; }
3302
+
3303
+ .attr-panel-default > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3304
+ border-bottom-color: #ddd; }
3305
+
3306
+ .attr-panel-primary {
3307
+ border-color: #337ab7; }
3308
+
3309
+ .attr-panel-primary > .attr-panel-heading {
3310
+ color: #fff;
3311
+ background-color: #337ab7;
3312
+ border-color: #337ab7; }
3313
+
3314
+ .attr-panel-primary > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3315
+ border-top-color: #337ab7; }
3316
+
3317
+ .attr-panel-primary > .attr-panel-heading .attr-badge {
3318
+ color: #337ab7;
3319
+ background-color: #fff; }
3320
+
3321
+ .attr-panel-primary > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3322
+ border-bottom-color: #337ab7; }
3323
+
3324
+ .attr-panel-success {
3325
+ border-color: #d6e9c6; }
3326
+
3327
+ .attr-panel-success > .attr-panel-heading {
3328
+ color: #3c763d;
3329
+ background-color: #dff0d8;
3330
+ border-color: #d6e9c6; }
3331
+
3332
+ .attr-panel-success > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3333
+ border-top-color: #d6e9c6; }
3334
+
3335
+ .attr-panel-success > .attr-panel-heading .attr-badge {
3336
+ color: #dff0d8;
3337
+ background-color: #3c763d; }
3338
+
3339
+ .attr-panel-success > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3340
+ border-bottom-color: #d6e9c6; }
3341
+
3342
+ .attr-panel-info {
3343
+ border-color: #bce8f1; }
3344
+
3345
+ .attr-panel-info > .attr-panel-heading {
3346
+ color: #31708f;
3347
+ background-color: #d9edf7;
3348
+ border-color: #bce8f1; }
3349
+
3350
+ .attr-panel-info > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3351
+ border-top-color: #bce8f1; }
3352
+
3353
+ .attr-panel-info > .attr-panel-heading .attr-badge {
3354
+ color: #d9edf7;
3355
+ background-color: #31708f; }
3356
+
3357
+ .attr-panel-info > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3358
+ border-bottom-color: #bce8f1; }
3359
+
3360
+ .attr-panel-warning {
3361
+ border-color: #faebcc; }
3362
+
3363
+ .attr-panel-warning > .attr-panel-heading {
3364
+ color: #8a6d3b;
3365
+ background-color: #fcf8e3;
3366
+ border-color: #faebcc; }
3367
+
3368
+ .attr-panel-warning > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3369
+ border-top-color: #faebcc; }
3370
+
3371
+ .attr-panel-warning > .attr-panel-heading .attr-badge {
3372
+ color: #fcf8e3;
3373
+ background-color: #8a6d3b; }
3374
+
3375
+ .attr-panel-warning > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3376
+ border-bottom-color: #faebcc; }
3377
+
3378
+ .attr-panel-danger {
3379
+ border-color: #ebccd1; }
3380
+
3381
+ .attr-panel-danger > .attr-panel-heading {
3382
+ color: #a94442;
3383
+ background-color: #f2dede;
3384
+ border-color: #ebccd1; }
3385
+
3386
+ .attr-panel-danger > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3387
+ border-top-color: #ebccd1; }
3388
+
3389
+ .attr-panel-danger > .attr-panel-heading .attr-badge {
3390
+ color: #f2dede;
3391
+ background-color: #a94442; }
3392
+
3393
+ .attr-panel-danger > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3394
+ border-bottom-color: #ebccd1; }
3395
+
3396
+ .attr-embed-responsive {
3397
+ position: relative;
3398
+ display: block;
3399
+ height: 0;
3400
+ padding: 0;
3401
+ overflow: hidden; }
3402
+
3403
+ .attr-embed-responsive .attr-embed-responsive-item, .attr-embed-responsive iframe, .attr-embed-responsive embed, .attr-embed-responsive object, .attr-embed-responsive video {
3404
+ position: absolute;
3405
+ top: 0;
3406
+ bottom: 0;
3407
+ left: 0;
3408
+ width: 100%;
3409
+ height: 100%;
3410
+ border: 0; }
3411
+
3412
+ .attr-embed-responsive-16by9 {
3413
+ padding-bottom: 56.25%; }
3414
+
3415
+ .attr-embed-responsive-4by3 {
3416
+ padding-bottom: 75%; }
3417
+
3418
+ .attr-well {
3419
+ min-height: 20px;
3420
+ padding: 19px;
3421
+ margin-bottom: 20px;
3422
+ background-color: #f5f5f5;
3423
+ border: 1px solid #e3e3e3;
3424
+ border-radius: 4px;
3425
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
3426
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
3427
+
3428
+ .attr-well blockquote {
3429
+ border-color: #ddd;
3430
+ border-color: rgba(0, 0, 0, 0.15); }
3431
+
3432
+ .attr-well-lg {
3433
+ padding: 24px;
3434
+ border-radius: 6px; }
3435
+
3436
+ .attr-well-sm {
3437
+ padding: 9px;
3438
+ border-radius: 3px; }
3439
+
3440
+ .attr-close {
3441
+ float: right;
3442
+ font-size: 21px;
3443
+ font-weight: bold;
3444
+ line-height: 1;
3445
+ color: #000;
3446
+ text-shadow: 0 1px 0 #fff;
3447
+ filter: alpha(opacity=20);
3448
+ opacity: .2; }
3449
+
3450
+ .attr-close:hover, .attr-close:focus {
3451
+ color: #000;
3452
+ text-decoration: none;
3453
+ cursor: pointer;
3454
+ filter: alpha(opacity=50);
3455
+ opacity: .5; }
3456
+
3457
+ button.attr-close {
3458
+ -webkit-appearance: none;
3459
+ padding: 0;
3460
+ cursor: pointer;
3461
+ background: transparent;
3462
+ border: 0; }
3463
+
3464
+ .attr-modal-open {
3465
+ overflow: hidden; }
3466
+
3467
+ .attr-modal {
3468
+ position: fixed;
3469
+ top: 0;
3470
+ right: 0;
3471
+ bottom: 0;
3472
+ left: 0;
3473
+ z-index: 1050;
3474
+ display: none;
3475
+ overflow: hidden;
3476
+ -webkit-overflow-scrolling: touch;
3477
+ outline: 0; }
3478
+
3479
+ .attr-modal.attr-fade .attr-modal-dialog {
3480
+ -webkit-transition: -webkit-transform .3s ease-out;
3481
+ -o-transition: -o-transform .3s ease-out;
3482
+ transition: -webkit-transform .3s ease-out;
3483
+ -o-transition: transform .3s ease-out;
3484
+ transition: transform .3s ease-out;
3485
+ transition: transform .3s ease-out, -webkit-transform .3s ease-out;
3486
+ -webkit-transform: translate(0, -25%);
3487
+ -ms-transform: translate(0, -25%);
3488
+ -o-transform: translate(0, -25%);
3489
+ transform: translate(0, -25%); }
3490
+
3491
+ .attr-modal.attr-in .attr-modal-dialog {
3492
+ -webkit-transform: translate(0, 0);
3493
+ -ms-transform: translate(0, 0);
3494
+ -o-transform: translate(0, 0);
3495
+ transform: translate(0, 0); }
3496
+
3497
+ .attr-modal-open .attr-modal {
3498
+ overflow-x: hidden;
3499
+ overflow-y: auto; }
3500
+
3501
+ .attr-modal-dialog {
3502
+ position: relative;
3503
+ width: auto;
3504
+ margin: 10px; }
3505
+
3506
+ .attr-modal-content {
3507
+ position: relative;
3508
+ background-color: #fff;
3509
+ -webkit-background-clip: padding-box;
3510
+ background-clip: padding-box;
3511
+ border: 1px solid #999;
3512
+ border: 1px solid rgba(0, 0, 0, 0.2);
3513
+ border-radius: 6px;
3514
+ outline: 0;
3515
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3516
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }
3517
+
3518
+ .attr-modal-backdrop {
3519
+ position: fixed;
3520
+ top: 0;
3521
+ right: 0;
3522
+ bottom: 0;
3523
+ left: 0;
3524
+ z-index: 1040;
3525
+ background-color: #000; }
3526
+
3527
+ .attr-modal-backdrop.attr-fade {
3528
+ filter: alpha(opacity=0);
3529
+ opacity: 0; }
3530
+
3531
+ .attr-modal-backdrop.attr-in {
3532
+ filter: alpha(opacity=50);
3533
+ opacity: .5; }
3534
+
3535
+ .attr-modal-header {
3536
+ padding: 15px;
3537
+ border-bottom: 1px solid #e5e5e5; }
3538
+
3539
+ .attr-modal-header .attr-close {
3540
+ margin-top: -2px; }
3541
+
3542
+ .attr-modal-title {
3543
+ margin: 0;
3544
+ line-height: 1.42857143; }
3545
+
3546
+ .attr-modal-body {
3547
+ position: relative;
3548
+ padding: 15px; }
3549
+
3550
+ .attr-modal-footer {
3551
+ padding: 15px;
3552
+ text-align: right;
3553
+ border-top: 1px solid #e5e5e5; }
3554
+
3555
+ .attr-modal-footer .attr-btn + .attr-btn {
3556
+ margin-bottom: 0;
3557
+ margin-left: 5px; }
3558
+
3559
+ .attr-modal-footer .attr-btn-group .attr-btn + .attr-btn {
3560
+ margin-left: -1px; }
3561
+
3562
+ .attr-modal-footer .attr-btn-block + .attr-btn-block {
3563
+ margin-left: 0; }
3564
+
3565
+ .attr-modal-scrollbar-measure {
3566
+ position: absolute;
3567
+ top: -9999px;
3568
+ width: 50px;
3569
+ height: 50px;
3570
+ overflow: scroll; }
3571
+
3572
+ @media (min-width: 768px) {
3573
+ .attr-modal-dialog {
3574
+ width: 600px;
3575
+ margin: 30px auto; }
3576
+ .attr-modal-content {
3577
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3578
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
3579
+ .attr-modal-sm {
3580
+ width: 300px; } }
3581
+
3582
+ @media (min-width: 992px) {
3583
+ .attr-modal-lg {
3584
+ width: 900px; } }
3585
+
3586
+ .attr-tooltip {
3587
+ position: absolute;
3588
+ z-index: 1070;
3589
+ display: block;
3590
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
3591
+ font-size: 12px;
3592
+ font-style: normal;
3593
+ font-weight: normal;
3594
+ line-height: 1.42857143;
3595
+ text-align: left;
3596
+ text-align: start;
3597
+ text-decoration: none;
3598
+ text-shadow: none;
3599
+ text-transform: none;
3600
+ letter-spacing: normal;
3601
+ word-break: normal;
3602
+ word-spacing: normal;
3603
+ word-wrap: normal;
3604
+ white-space: normal;
3605
+ filter: alpha(opacity=0);
3606
+ opacity: 0;
3607
+ line-break: auto; }
3608
+
3609
+ .attr-tooltip.attr-in {
3610
+ filter: alpha(opacity=90);
3611
+ opacity: .9; }
3612
+
3613
+ .attr-tooltip.attr-top {
3614
+ padding: 5px 0;
3615
+ margin-top: -3px; }
3616
+
3617
+ .attr-tooltip.attr-right {
3618
+ padding: 0 5px;
3619
+ margin-left: 3px; }
3620
+
3621
+ .attr-tooltip.attr-bottom {
3622
+ padding: 5px 0;
3623
+ margin-top: 3px; }
3624
+
3625
+ .attr-tooltip.attr-left {
3626
+ padding: 0 5px;
3627
+ margin-left: -3px; }
3628
+
3629
+ .attr-tooltip-inner {
3630
+ max-width: 200px;
3631
+ padding: 3px 8px;
3632
+ color: #fff;
3633
+ text-align: center;
3634
+ background-color: #000;
3635
+ border-radius: 4px; }
3636
+
3637
+ .attr-tooltip-arrow {
3638
+ position: absolute;
3639
+ width: 0;
3640
+ height: 0;
3641
+ border-color: transparent;
3642
+ border-style: solid; }
3643
+
3644
+ .attr-tooltip.attr-top .attr-tooltip-arrow {
3645
+ bottom: 0;
3646
+ left: 50%;
3647
+ margin-left: -5px;
3648
+ border-width: 5px 5px 0;
3649
+ border-top-color: #000; }
3650
+
3651
+ .attr-tooltip.attr-top-left .attr-tooltip-arrow {
3652
+ right: 5px;
3653
+ bottom: 0;
3654
+ margin-bottom: -5px;
3655
+ border-width: 5px 5px 0;
3656
+ border-top-color: #000; }
3657
+
3658
+ .attr-tooltip.attr-top-right .attr-tooltip-arrow {
3659
+ bottom: 0;
3660
+ left: 5px;
3661
+ margin-bottom: -5px;
3662
+ border-width: 5px 5px 0;
3663
+ border-top-color: #000; }
3664
+
3665
+ .attr-tooltip.attr-right .attr-tooltip-arrow {
3666
+ top: 50%;
3667
+ left: 0;
3668
+ margin-top: -5px;
3669
+ border-width: 5px 5px 5px 0;
3670
+ border-right-color: #000; }
3671
+
3672
+ .attr-tooltip.attr-left .attr-tooltip-arrow {
3673
+ top: 50%;
3674
+ right: 0;
3675
+ margin-top: -5px;
3676
+ border-width: 5px 0 5px 5px;
3677
+ border-left-color: #000; }
3678
+
3679
+ .attr-tooltip.attr-bottom .attr-tooltip-arrow {
3680
+ top: 0;
3681
+ left: 50%;
3682
+ margin-left: -5px;
3683
+ border-width: 0 5px 5px;
3684
+ border-bottom-color: #000; }
3685
+
3686
+ .attr-tooltip.attr-bottom-left .attr-tooltip-arrow {
3687
+ top: 0;
3688
+ right: 5px;
3689
+ margin-top: -5px;
3690
+ border-width: 0 5px 5px;
3691
+ border-bottom-color: #000; }
3692
+
3693
+ .attr-tooltip.attr-bottom-right .attr-tooltip-arrow {
3694
+ top: 0;
3695
+ left: 5px;
3696
+ margin-top: -5px;
3697
+ border-width: 0 5px 5px;
3698
+ border-bottom-color: #000; }
3699
+
3700
+ .attr-popover {
3701
+ position: absolute;
3702
+ top: 0;
3703
+ left: 0;
3704
+ z-index: 1060;
3705
+ display: none;
3706
+ max-width: 276px;
3707
+ padding: 1px;
3708
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
3709
+ font-size: 14px;
3710
+ font-style: normal;
3711
+ font-weight: normal;
3712
+ line-height: 1.42857143;
3713
+ text-align: left;
3714
+ text-align: start;
3715
+ text-decoration: none;
3716
+ text-shadow: none;
3717
+ text-transform: none;
3718
+ letter-spacing: normal;
3719
+ word-break: normal;
3720
+ word-spacing: normal;
3721
+ word-wrap: normal;
3722
+ white-space: normal;
3723
+ background-color: #fff;
3724
+ -webkit-background-clip: padding-box;
3725
+ background-clip: padding-box;
3726
+ border: 1px solid #ccc;
3727
+ border: 1px solid rgba(0, 0, 0, 0.2);
3728
+ border-radius: 6px;
3729
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3730
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3731
+ line-break: auto; }
3732
+
3733
+ .attr-popover.attr-top {
3734
+ margin-top: -10px; }
3735
+
3736
+ .attr-popover.attr-right {
3737
+ margin-left: 10px; }
3738
+
3739
+ .attr-popover.attr-bottom {
3740
+ margin-top: 10px; }
3741
+
3742
+ .attr-popover.attr-left {
3743
+ margin-left: -10px; }
3744
+
3745
+ .attr-popover-title {
3746
+ padding: 8px 14px;
3747
+ margin: 0;
3748
+ font-size: 14px;
3749
+ background-color: #f7f7f7;
3750
+ border-bottom: 1px solid #ebebeb;
3751
+ border-radius: 5px 5px 0 0; }
3752
+
3753
+ .attr-popover-content {
3754
+ padding: 9px 14px; }
3755
+
3756
+ .attr-popover > .attr-arrow, .attr-popover > .attr-arrow:after {
3757
+ position: absolute;
3758
+ display: block;
3759
+ width: 0;
3760
+ height: 0;
3761
+ border-color: transparent;
3762
+ border-style: solid; }
3763
+
3764
+ .attr-popover > .attr-arrow {
3765
+ border-width: 11px; }
3766
+
3767
+ .attr-popover > .attr-arrow:after {
3768
+ content: "";
3769
+ border-width: 10px; }
3770
+
3771
+ .attr-popover.attr-top > .attr-arrow {
3772
+ bottom: -11px;
3773
+ left: 50%;
3774
+ margin-left: -11px;
3775
+ border-top-color: #999;
3776
+ border-top-color: rgba(0, 0, 0, 0.25);
3777
+ border-bottom-width: 0; }
3778
+
3779
+ .attr-popover.attr-top > .attr-arrow:after {
3780
+ bottom: 1px;
3781
+ margin-left: -10px;
3782
+ content: " ";
3783
+ border-top-color: #fff;
3784
+ border-bottom-width: 0; }
3785
+
3786
+ .attr-popover.attr-right > .attr-arrow {
3787
+ top: 50%;
3788
+ left: -11px;
3789
+ margin-top: -11px;
3790
+ border-right-color: #999;
3791
+ border-right-color: rgba(0, 0, 0, 0.25);
3792
+ border-left-width: 0; }
3793
+
3794
+ .attr-popover.attr-right > .attr-arrow:after {
3795
+ bottom: -10px;
3796
+ left: 1px;
3797
+ content: " ";
3798
+ border-right-color: #fff;
3799
+ border-left-width: 0; }
3800
+
3801
+ .attr-popover.attr-bottom > .attr-arrow {
3802
+ top: -11px;
3803
+ left: 50%;
3804
+ margin-left: -11px;
3805
+ border-top-width: 0;
3806
+ border-bottom-color: #999;
3807
+ border-bottom-color: rgba(0, 0, 0, 0.25); }
3808
+
3809
+ .attr-popover.attr-bottom > .attr-arrow:after {
3810
+ top: 1px;
3811
+ margin-left: -10px;
3812
+ content: " ";
3813
+ border-top-width: 0;
3814
+ border-bottom-color: #fff; }
3815
+
3816
+ .attr-popover.attr-left > .attr-arrow {
3817
+ top: 50%;
3818
+ right: -11px;
3819
+ margin-top: -11px;
3820
+ border-right-width: 0;
3821
+ border-left-color: #999;
3822
+ border-left-color: rgba(0, 0, 0, 0.25); }
3823
+
3824
+ .attr-popover.attr-left > .attr-arrow:after {
3825
+ right: 1px;
3826
+ bottom: -10px;
3827
+ content: " ";
3828
+ border-right-width: 0;
3829
+ border-left-color: #fff; }
3830
+
3831
+ .attr-carousel {
3832
+ position: relative; }
3833
+
3834
+ .attr-carousel-inner {
3835
+ position: relative;
3836
+ width: 100%;
3837
+ overflow: hidden; }
3838
+
3839
+ .attr-carousel-inner > .attr-item {
3840
+ position: relative;
3841
+ display: none;
3842
+ -webkit-transition: .6s ease-in-out left;
3843
+ -o-transition: .6s ease-in-out left;
3844
+ transition: .6s ease-in-out left; }
3845
+
3846
+ .attr-carousel-inner > .attr-item > img, .attr-carousel-inner > .attr-item > a > img {
3847
+ line-height: 1; }
3848
+
3849
+ @media all and (transform-3d), (-webkit-transform-3d) {
3850
+ .attr-carousel-inner > .attr-item {
3851
+ -webkit-transition: -webkit-transform .6s ease-in-out;
3852
+ -o-transition: -o-transform .6s ease-in-out;
3853
+ transition: -webkit-transform .6s ease-in-out;
3854
+ -o-transition: transform .6s ease-in-out;
3855
+ transition: transform .6s ease-in-out;
3856
+ transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
3857
+ -webkit-backface-visibility: hidden;
3858
+ backface-visibility: hidden;
3859
+ -webkit-perspective: 1000px;
3860
+ perspective: 1000px; }
3861
+ .attr-carousel-inner > .attr-item.attr-next, .attr-carousel-inner > .attr-item.attr-active.attr-right {
3862
+ left: 0;
3863
+ -webkit-transform: translate3d(100%, 0, 0);
3864
+ transform: translate3d(100%, 0, 0); }
3865
+ .attr-carousel-inner > .attr-item.attr-prev, .attr-carousel-inner > .attr-item.attr-active.attr-left {
3866
+ left: 0;
3867
+ -webkit-transform: translate3d(-100%, 0, 0);
3868
+ transform: translate3d(-100%, 0, 0); }
3869
+ .attr-carousel-inner > .attr-item.attr-next.attr-left, .attr-carousel-inner > .attr-item.attr-prev.attr-right, .attr-carousel-inner > .attr-item.attr-active {
3870
+ left: 0;
3871
+ -webkit-transform: translate3d(0, 0, 0);
3872
+ transform: translate3d(0, 0, 0); } }
3873
+
3874
+ .attr-carousel-inner > .attr-active, .attr-carousel-inner > .attr-next, .attr-carousel-inner > .attr-prev {
3875
+ display: block; }
3876
+
3877
+ .attr-carousel-inner > .attr-active {
3878
+ left: 0; }
3879
+
3880
+ .attr-carousel-inner > .attr-next, .attr-carousel-inner > .attr-prev {
3881
+ position: absolute;
3882
+ top: 0;
3883
+ width: 100%; }
3884
+
3885
+ .attr-carousel-inner > .attr-next {
3886
+ left: 100%; }
3887
+
3888
+ .attr-carousel-inner > .attr-prev {
3889
+ left: -100%; }
3890
+
3891
+ .attr-carousel-inner > .attr-next.attr-left, .attr-carousel-inner > .attr-prev.attr-right {
3892
+ left: 0; }
3893
+
3894
+ .attr-carousel-inner > .attr-active.attr-left {
3895
+ left: -100%; }
3896
+
3897
+ .attr-carousel-inner > .attr-active.attr-right {
3898
+ left: 100%; }
3899
+
3900
+ .attr-carousel-control {
3901
+ position: absolute;
3902
+ top: 0;
3903
+ bottom: 0;
3904
+ left: 0;
3905
+ width: 15%;
3906
+ font-size: 20px;
3907
+ color: #fff;
3908
+ text-align: center;
3909
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
3910
+ background-color: rgba(0, 0, 0, 0);
3911
+ filter: alpha(opacity=50);
3912
+ opacity: .5; }
3913
+
3914
+ .attr-carousel-control.attr-left {
3915
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3916
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3917
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
3918
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3919
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
3920
+ background-repeat: repeat-x; }
3921
+
3922
+ .attr-carousel-control.attr-right {
3923
+ right: 0;
3924
+ left: auto;
3925
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3926
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3927
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
3928
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3929
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
3930
+ background-repeat: repeat-x; }
3931
+
3932
+ .attr-carousel-control:hover, .attr-carousel-control:focus {
3933
+ color: #fff;
3934
+ text-decoration: none;
3935
+ filter: alpha(opacity=90);
3936
+ outline: 0;
3937
+ opacity: .9; }
3938
+
3939
+ .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next, .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-glyphicon-chevron-right {
3940
+ position: absolute;
3941
+ top: 50%;
3942
+ z-index: 5;
3943
+ display: inline-block;
3944
+ margin-top: -10px; }
3945
+
3946
+ .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-glyphicon-chevron-left {
3947
+ left: 50%;
3948
+ margin-left: -10px; }
3949
+
3950
+ .attr-carousel-control .attr-icon-next, .attr-carousel-control .attr-glyphicon-chevron-right {
3951
+ right: 50%;
3952
+ margin-right: -10px; }
3953
+
3954
+ .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next {
3955
+ width: 20px;
3956
+ height: 20px;
3957
+ font-family: serif;
3958
+ line-height: 1; }
3959
+
3960
+ .attr-carousel-control .attr-icon-prev:before {
3961
+ content: '\2039'; }
3962
+
3963
+ .attr-carousel-control .attr-icon-next:before {
3964
+ content: '\203a'; }
3965
+
3966
+ .attr-carousel-indicators {
3967
+ position: absolute;
3968
+ bottom: 10px;
3969
+ left: 50%;
3970
+ z-index: 15;
3971
+ width: 60%;
3972
+ padding-left: 0;
3973
+ margin-left: -30%;
3974
+ text-align: center;
3975
+ list-style: none; }
3976
+
3977
+ .attr-carousel-indicators li {
3978
+ display: inline-block;
3979
+ width: 10px;
3980
+ height: 10px;
3981
+ margin: 1px;
3982
+ text-indent: -999px;
3983
+ cursor: pointer;
3984
+ background-color: #000 \9;
3985
+ background-color: rgba(0, 0, 0, 0);
3986
+ border: 1px solid #fff;
3987
+ border-radius: 10px; }
3988
+
3989
+ .attr-carousel-indicators .attr-active {
3990
+ width: 12px;
3991
+ height: 12px;
3992
+ margin: 0;
3993
+ background-color: #fff; }
3994
+
3995
+ .attr-carousel-caption {
3996
+ position: absolute;
3997
+ right: 15%;
3998
+ bottom: 20px;
3999
+ left: 15%;
4000
+ z-index: 10;
4001
+ padding-top: 20px;
4002
+ padding-bottom: 20px;
4003
+ color: #fff;
4004
+ text-align: center;
4005
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
4006
+
4007
+ .attr-carousel-caption .attr-btn {
4008
+ text-shadow: none; }
4009
+
4010
+ @media screen and (min-width: 768px) {
4011
+ .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-glyphicon-chevron-right, .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next {
4012
+ width: 30px;
4013
+ height: 30px;
4014
+ margin-top: -10px;
4015
+ font-size: 30px; }
4016
+ .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-icon-prev {
4017
+ margin-left: -10px; }
4018
+ .attr-carousel-control .attr-glyphicon-chevron-right, .attr-carousel-control .attr-icon-next {
4019
+ margin-right: -10px; }
4020
+ .attr-carousel-caption {
4021
+ right: 20%;
4022
+ left: 20%;
4023
+ padding-bottom: 30px; }
4024
+ .attr-carousel-indicators {
4025
+ bottom: 20px; } }
4026
+
4027
+ .attr-clearfix:before, .attr-clearfix:after, .attr-dl-horizontal dd:before, .attr-dl-horizontal dd:after, .attr-container:before, .attr-container:after, .attr-container-fluid:before, .attr-container-fluid:after, .attr-row:before, .attr-row:after, .attr-form-horizontal .attr-form-group:before, .attr-form-horizontal .attr-form-group:after, .attr-btn-toolbar:before, .attr-btn-toolbar:after, .attr-btn-group-vertical > .attr-btn-group:before, .attr-btn-group-vertical > .attr-btn-group:after, .attr-nav:before, .attr-nav:after, .attr-navbar:before, .attr-navbar:after, .attr-navbar-header:before, .attr-navbar-header:after, .attr-navbar-collapse:before, .attr-navbar-collapse:after, .attr-pager:before, .attr-pager:after, .attr-panel-body:before, .attr-panel-body:after, .attr-modal-header:before, .attr-modal-header:after, .attr-modal-footer:before, .attr-modal-footer:after {
4028
+ display: table;
4029
+ content: " "; }
4030
+
4031
+ .attr-clearfix:after, .attr-dl-horizontal dd:after, .attr-container:after, .attr-container-fluid:after, .attr-row:after, .attr-form-horizontal .attr-form-group:after, .attr-btn-toolbar:after, .attr-btn-group-vertical > .attr-btn-group:after, .attr-nav:after, .attr-navbar:after, .attr-navbar-header:after, .attr-navbar-collapse:after, .attr-pager:after, .attr-panel-body:after, .attr-modal-header:after, .attr-modal-footer:after {
4032
+ clear: both; }
4033
+
4034
+ .attr-center-block {
4035
+ display: block;
4036
+ margin-right: auto;
4037
+ margin-left: auto; }
4038
+
4039
+ .attr-pull-right {
4040
+ float: right !important; }
4041
+
4042
+ .attr-pull-left {
4043
+ float: left !important; }
4044
+
4045
+ .attr-hide {
4046
+ display: none !important; }
4047
+
4048
+ .attr-show {
4049
+ display: block !important; }
4050
+
4051
+ .attr-invisible {
4052
+ visibility: hidden; }
4053
+
4054
+ .attr-text-hide {
4055
+ font: 0/0 a;
4056
+ color: transparent;
4057
+ text-shadow: none;
4058
+ background-color: transparent;
4059
+ border: 0; }
4060
+
4061
+ .attr-hidden {
4062
+ display: none !important; }
4063
+
4064
+ .attr-affix {
4065
+ position: fixed; }
4066
+
4067
+ @-ms-viewport {
4068
+ width: device-width; }
4069
+
4070
+ .attr-visible-xs, .attr-visible-sm, .attr-visible-md, .attr-visible-lg {
4071
+ display: none !important; }
4072
+
4073
+ .attr-visible-xs-block, .attr-visible-xs-inline, .attr-visible-xs-inline-block, .attr-visible-sm-block, .attr-visible-sm-inline, .attr-visible-sm-inline-block, .attr-visible-md-block, .attr-visible-md-inline, .attr-visible-md-inline-block, .attr-visible-lg-block, .attr-visible-lg-inline, .attr-visible-lg-inline-block {
4074
+ display: none !important; }
4075
+
4076
+ @media (max-width: 767px) {
4077
+ .attr-visible-xs {
4078
+ display: block !important; }
4079
+ table.attr-visible-xs {
4080
+ display: table !important; }
4081
+ tr.attr-visible-xs {
4082
+ display: table-row !important; }
4083
+ th.attr-visible-xs, td.attr-visible-xs {
4084
+ display: table-cell !important; } }
4085
+
4086
+ @media (max-width: 767px) {
4087
+ .attr-visible-xs-block {
4088
+ display: block !important; } }
4089
+
4090
+ @media (max-width: 767px) {
4091
+ .attr-visible-xs-inline {
4092
+ display: inline !important; } }
4093
+
4094
+ @media (max-width: 767px) {
4095
+ .attr-visible-xs-inline-block {
4096
+ display: inline-block !important; } }
4097
+
4098
+ @media (min-width: 768px) and (max-width: 991px) {
4099
+ .attr-visible-sm {
4100
+ display: block !important; }
4101
+ table.attr-visible-sm {
4102
+ display: table !important; }
4103
+ tr.attr-visible-sm {
4104
+ display: table-row !important; }
4105
+ th.attr-visible-sm, td.attr-visible-sm {
4106
+ display: table-cell !important; } }
4107
+
4108
+ @media (min-width: 768px) and (max-width: 991px) {
4109
+ .attr-visible-sm-block {
4110
+ display: block !important; } }
4111
+
4112
+ @media (min-width: 768px) and (max-width: 991px) {
4113
+ .attr-visible-sm-inline {
4114
+ display: inline !important; } }
4115
+
4116
+ @media (min-width: 768px) and (max-width: 991px) {
4117
+ .attr-visible-sm-inline-block {
4118
+ display: inline-block !important; } }
4119
+
4120
+ @media (min-width: 992px) and (max-width: 1199px) {
4121
+ .attr-visible-md {
4122
+ display: block !important; }
4123
+ table.attr-visible-md {
4124
+ display: table !important; }
4125
+ tr.attr-visible-md {
4126
+ display: table-row !important; }
4127
+ th.attr-visible-md, td.attr-visible-md {
4128
+ display: table-cell !important; } }
4129
+
4130
+ @media (min-width: 992px) and (max-width: 1199px) {
4131
+ .attr-visible-md-block {
4132
+ display: block !important; } }
4133
+
4134
+ @media (min-width: 992px) and (max-width: 1199px) {
4135
+ .attr-visible-md-inline {
4136
+ display: inline !important; } }
4137
+
4138
+ @media (min-width: 992px) and (max-width: 1199px) {
4139
+ .attr-visible-md-inline-block {
4140
+ display: inline-block !important; } }
4141
+
4142
+ @media (min-width: 1200px) {
4143
+ .attr-visible-lg {
4144
+ display: block !important; }
4145
+ table.attr-visible-lg {
4146
+ display: table !important; }
4147
+ tr.attr-visible-lg {
4148
+ display: table-row !important; }
4149
+ th.attr-visible-lg, td.attr-visible-lg {
4150
+ display: table-cell !important; } }
4151
+
4152
+ @media (min-width: 1200px) {
4153
+ .attr-visible-lg-block {
4154
+ display: block !important; } }
4155
+
4156
+ @media (min-width: 1200px) {
4157
+ .attr-visible-lg-inline {
4158
+ display: inline !important; } }
4159
+
4160
+ @media (min-width: 1200px) {
4161
+ .attr-visible-lg-inline-block {
4162
+ display: inline-block !important; } }
4163
+
4164
+ @media (max-width: 767px) {
4165
+ .attr-hidden-xs {
4166
+ display: none !important; } }
4167
+
4168
+ @media (min-width: 768px) and (max-width: 991px) {
4169
+ .attr-hidden-sm {
4170
+ display: none !important; } }
4171
+
4172
+ @media (min-width: 992px) and (max-width: 1199px) {
4173
+ .attr-hidden-md {
4174
+ display: none !important; } }
4175
+
4176
+ @media (min-width: 1200px) {
4177
+ .attr-hidden-lg {
4178
+ display: none !important; } }
4179
+
4180
+ .attr-visible-print {
4181
+ display: none !important; }
4182
+
4183
+ @media print {
4184
+ .attr-visible-print {
4185
+ display: block !important; }
4186
+ table.attr-visible-print {
4187
+ display: table !important; }
4188
+ tr.attr-visible-print {
4189
+ display: table-row !important; }
4190
+ th.attr-visible-print, td.attr-visible-print {
4191
+ display: table-cell !important; } }
4192
+
4193
+ .attr-visible-print-block {
4194
+ display: none !important; }
4195
+
4196
+ @media print {
4197
+ .attr-visible-print-block {
4198
+ display: block !important; } }
4199
+
4200
+ .attr-visible-print-inline {
4201
+ display: none !important; }
4202
+
4203
+ @media print {
4204
+ .attr-visible-print-inline {
4205
+ display: inline !important; } }
4206
+
4207
+ .attr-visible-print-inline-block {
4208
+ display: none !important; }
4209
+
4210
+ @media print {
4211
+ .attr-visible-print-inline-block {
4212
+ display: inline-block !important; } }
4213
+
4214
+ @media print {
4215
+ .attr-hidden-print {
4216
+ display: none !important; } }
libs/framework/assets/css/bootstrap/utilities/_align.css ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .align-baseline {
2
+ vertical-align: baseline !important; }
3
+
4
+ .align-top {
5
+ vertical-align: top !important; }
6
+
7
+ .align-middle {
8
+ vertical-align: middle !important; }
9
+
10
+ .align-bottom {
11
+ vertical-align: bottom !important; }
12
+
13
+ .align-text-bottom {
14
+ vertical-align: text-bottom !important; }
15
+
16
+ .align-text-top {
17
+ vertical-align: text-top !important; }
libs/framework/assets/css/bootstrap/utilities/_visibility.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ .visible {
2
+ visibility: visible !important; }
3
+
4
+ .invisible {
5
+ visibility: hidden !important; }
libs/framework/assets/css/customizer.css ADDED
@@ -0,0 +1,623 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* ==========================================================================
2
+ CSS for Customizer Custom Controls
3
+ ========================================================================== */
4
+
5
+ /* ==========================================================================
6
+ Standard Selection
7
+ ========================================================================== */
8
+ .customize-control select,
9
+ .select2-container--default .selection .select2-selection--single {
10
+ border: none;
11
+ background: #fcfcff;
12
+ position: relative;
13
+ border-radius: 0;
14
+ height: 27px;
15
+ line-height: 27px;
16
+ outline: none;
17
+ -webkit-box-shadow: none;
18
+ box-shadow: none;
19
+ }
20
+
21
+ .wp-customizer .select2-container--default .selection .select2-selection--multiple {
22
+ border: none;
23
+ background: #fcfcff;
24
+ border-radius: 0;
25
+ height: auto;
26
+ outline: none;
27
+ -webkit-box-shadow: none;
28
+ box-shadow: none;
29
+ }
30
+
31
+ .wp-customizer .select2-container--default .select2-selection--multiple .select2-selection__rendered {
32
+ width: 95%;
33
+ }
34
+
35
+ .wp-customizer .select2-container--default .select2-selection--multiple .select2-selection__clear {
36
+ position: absolute;
37
+ right: 0;
38
+ }
39
+
40
+ .wp-customizer .select2-container .select2-dropdown {
41
+ z-index: 900000;
42
+ }
43
+
44
+ .customize-control select:active,
45
+ .customize-control select:focus {
46
+ outline: none;
47
+ -webkit-box-shadow: none;
48
+ box-shadow: none;
49
+ }
50
+
51
+ /* ==========================================================================
52
+ Standard Input
53
+ ========================================================================== */
54
+ input[type="text"],
55
+ input[type="number"],
56
+ input[type="url"],
57
+ input[type="email"],
58
+ input[type="date"] {
59
+ background: #fcfcff;
60
+ position: relative;
61
+ border-radius: 0;
62
+ border: 1px solid #eee;
63
+ height: 27px;
64
+ line-height: 27px;
65
+ outline: none;
66
+ -webkit-box-shadow: none;
67
+ box-shadow: none;
68
+ }
69
+
70
+ input[type="text"]:active,
71
+ input[type="text"]:focus,
72
+ input[type="number"]:active,
73
+ input[type="number"]:focus {
74
+ outline: none;
75
+ -webkit-box-shadow: none;
76
+ box-shadow: none;
77
+ }
78
+
79
+ /* ==========================================================================
80
+ Simple Notice
81
+ ========================================================================== */
82
+
83
+ .simple-notice-custom-control .customize-control-description {
84
+ line-height: 1.6
85
+ }
86
+
87
+ .simple-notice-custom-control code {
88
+ font-size: 90%;
89
+ padding: 2px 4px;
90
+ }
91
+
92
+ /* ==========================================================================
93
+ Textarea/TinyMCE
94
+ ========================================================================== */
95
+ .tinymce-control textarea {
96
+ width: 100%;
97
+ padding: 10px;
98
+ }
99
+
100
+ /* ==========================================================================
101
+ Text Radio Buttons
102
+ ========================================================================== */
103
+ .text_radio_button_control:after {
104
+ content: " ";
105
+ display: block;
106
+ clear: both;
107
+ }
108
+ .text_radio_button_control .radio-buttons {
109
+ display: inline-block;
110
+ border: 1px solid #f9f9fe;
111
+ }
112
+ .text_radio_button_control .radio-button-label {
113
+ cursor: pointer;
114
+ float: left;
115
+ }
116
+ .text_radio_button_control .radio-button-label > input {
117
+ display: none;
118
+ }
119
+ .text_radio_button_control .radio-button-label span {
120
+ cursor: pointer;
121
+ font-weight: 500;
122
+ border: 2px solid #f9f9fe;
123
+ margin: 0;
124
+ background-color: #eee;
125
+ padding: 5px 15px;
126
+ display: inline-block;
127
+ }
128
+ .text_radio_button_control .radio-button-label span:hover {
129
+ background-color: rgba(255, 255, 255, .2);
130
+ color: #2885bb;
131
+ }
132
+ .text_radio_button_control .radio-button-label > input:checked + span {
133
+ background-color: #2084bd;
134
+ color: #fff;
135
+ }
136
+ .text_radio_button_control .radio-button-label > input:checked + span:hover {
137
+ color: #fff;
138
+ }
139
+
140
+ /* ==========================================================================
141
+ Image Radio Buttons
142
+ ========================================================================== */
143
+ .image_radio_button_control .radio-button-label > input {
144
+ display: none;
145
+ }
146
+ .image_radio_button_control .radio-button-label > img {
147
+ cursor: pointer;
148
+ border: 3px solid #ddd;
149
+ }
150
+ .image_radio_button_control .radio-button-label > input:checked + img {
151
+ border: 3px solid #2885bb;
152
+ }
153
+
154
+ /* ==========================================================================
155
+ Image Checkboxes
156
+ ========================================================================== */
157
+ .image_checkbox_control .checkbox-label > input {
158
+ display: none;
159
+ }
160
+ .image_checkbox_control .checkbox-label > img {
161
+ cursor: pointer;
162
+ border: 3px solid #ddd;
163
+ }
164
+ .image_checkbox_control .checkbox-label > input:checked + img {
165
+ border: 3px solid #2885bb;
166
+ }
167
+
168
+ /* ==========================================================================
169
+ Slider
170
+ ========================================================================== */
171
+ .slider-custom-control {
172
+ margin-bottom: 30px;
173
+ }
174
+ .slider-custom-control input[type=number]::-webkit-inner-spin-button,
175
+ .slider-custom-control input[type=number]::-webkit-outer-spin-button {
176
+ -webkit-appearance: none;
177
+ margin: 0;
178
+ }
179
+ .slider-custom-control input[type=number] {
180
+ -moz-appearance: textfield;
181
+ }
182
+ .slider-custom-control .customize-control-title {
183
+ display: inline-block;
184
+ }
185
+ .slider-custom-control input[type=number] {
186
+ text-align: right;
187
+ width: 50px;
188
+ float: right;
189
+ }
190
+ .slider-custom-control .slider {
191
+ width: 85%;
192
+ float: left;
193
+ margin: 20px 0 10px;
194
+ }
195
+ .slider-custom-control .slider-reset {
196
+ float: right;
197
+ cursor: pointer;
198
+ }
199
+ .slider-custom-control .slider-value {
200
+ border: none;
201
+ text-align: right;
202
+ width: 50px;
203
+ margin-right: 5px;
204
+ }
205
+ .slider-custom-control .slider-value,
206
+ .slider-custom-control .slider-unit {
207
+ float: right;
208
+ }
209
+ .slider-custom-control .ui-widget.ui-widget-content {
210
+ border: 1px solid #f4f4f4;
211
+ }
212
+ .slider-custom-control .ui-corner-all,
213
+ .slider-custom-control .ui-corner-bottom,
214
+ .slider-custom-control .ui-corner-right,
215
+ .slider-custom-control .ui-corner-br {
216
+ border-bottom-right-radius: 3px;
217
+ }
218
+ .slider-custom-control .ui-corner-all,
219
+ .slider-custom-control .ui-corner-bottom,
220
+ .slider-custom-control .ui-corner-left,
221
+ .slider-custom-control .ui-corner-bl {
222
+ border-bottom-left-radius: 3px;
223
+ }
224
+ .slider-custom-control .ui-corner-all,
225
+ .slider-custom-control .ui-corner-top,
226
+ .slider-custom-control .ui-corner-right,
227
+ .slider-custom-control .ui-corner-tr {
228
+ border-top-right-radius: 3px;
229
+ }
230
+ .slider-custom-control .ui-corner-all,
231
+ .slider-custom-control .ui-corner-top,
232
+ .slider-custom-control .ui-corner-left,
233
+ .slider-custom-control .ui-corner-tl {
234
+ border-top-left-radius: 3px;
235
+ }
236
+ .slider-custom-control .ui-widget-content {
237
+ background: #f4f4f4 none repeat scroll 0 0;
238
+ color: #333;
239
+ }
240
+ .slider-custom-control .ui-slider-horizontal {
241
+ height: 3px;
242
+ }
243
+ .slider-custom-control .ui-slider {
244
+ position: relative;
245
+ text-align: left;
246
+ }
247
+ .slider-custom-control .ui-state-default,
248
+ .slider-custom-control .ui-widget-content .ui-state-default,
249
+ .slider-custom-control .ui-widget-header .ui-state-default,
250
+ .slider-custom-control .ui-button,
251
+ .slider-custom-control .ui-button.ui-state-disabled:hover,
252
+ .slider-custom-control .ui-button.ui-state-disabled:active {
253
+ background: #2885bb none repeat scroll 0 0;
254
+ border: 1px solid #2885bb;
255
+ color: #454545;
256
+ font-weight: normal;
257
+ }
258
+ .slider-custom-control .ui-slider-horizontal .ui-slider-handle {
259
+ margin-left: -7px;
260
+ top: -7px;
261
+ border-radius: 50%;
262
+ }
263
+ .slider-custom-control .ui-slider .ui-slider-handle {
264
+ cursor: pointer;
265
+ height: 14px;
266
+ position: absolute;
267
+ width: 14px;
268
+ z-index: 2;
269
+ }
270
+ .slider-custom-control .dashicons-image-rotate {
271
+ margin-top: 10px;
272
+ color: #d4d4d4;
273
+ size: 16px;
274
+ }
275
+ .slider-custom-control .dashicons-image-rotate:hover {
276
+ color: #a7a7a7;
277
+ }
278
+
279
+ /* ==========================================================================
280
+ Toggle Switch
281
+ ========================================================================== */
282
+ .toggle-switch-control .customize-control-title {
283
+ display: inline-block;
284
+ }
285
+
286
+ .toggle-switch {
287
+ position: relative;
288
+ width: 64px;
289
+ -webkit-user-select: none;
290
+ -moz-user-select: none;
291
+ -ms-user-select: none;
292
+ float: right;
293
+ }
294
+
295
+ .toggle-switch .toggle-switch-checkbox {
296
+ display: none;
297
+ }
298
+
299
+ .toggle-switch .toggle-switch-label {
300
+ display: block;
301
+ overflow: hidden;
302
+ cursor: pointer;
303
+ border: 2px solid #ddd;
304
+ border-radius: 20px;
305
+ padding: 0;
306
+ margin: 0;
307
+ }
308
+
309
+ .toggle-switch-inner {
310
+ display: block;
311
+ width: 200%;
312
+ margin-left: -100%;
313
+ transition: margin 0.3s ease-in 0s;
314
+ }
315
+
316
+ .toggle-switch-inner:before,
317
+ .toggle-switch-inner:after {
318
+ display: block;
319
+ float: left;
320
+ width: 50%;
321
+ height: 22px;
322
+ padding: 0;
323
+ line-height: 22px;
324
+ font-size: 14px;
325
+ color: white;
326
+ font-family: Trebuchet, Arial, sans-serif;
327
+ font-weight: bold;
328
+ box-sizing: border-box;
329
+ }
330
+
331
+ .toggle-switch-inner:before {
332
+ content: "ON";
333
+ padding-left: 8px;
334
+ background-color: #2885bb;
335
+ color: #FFFFFF;
336
+ }
337
+
338
+ .toggle-switch-inner:after {
339
+ content: "OFF";
340
+ padding-right: 8px;
341
+ background-color: #EEEEEE;
342
+ color: #999999;
343
+ text-align: right;
344
+ }
345
+
346
+ .toggle-switch-switch {
347
+ display: block;
348
+ width: 16px;
349
+ margin: 3px;
350
+ background: #FFFFFF;
351
+ position: absolute;
352
+ top: 0;
353
+ bottom: 0;
354
+ right: 38px;
355
+ border: 2px solid #ddd;
356
+ border-radius: 20px;
357
+ transition: all 0.3s ease-in 0s;
358
+ }
359
+
360
+ .toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-inner {
361
+ margin-left: 0;
362
+ }
363
+
364
+ .toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
365
+ right: 0px;
366
+ }
367
+
368
+ /* ==========================================================================
369
+ Sortable Repeater
370
+ ========================================================================== */
371
+ .sortable {
372
+ list-style-type: none;
373
+ margin: 0;
374
+ padding: 0;
375
+ }
376
+ .sortable input[type="text"] {
377
+ margin: 5px 5px 5px 0;
378
+ width: 80%;
379
+ }
380
+ .sortable div {
381
+ cursor: move;
382
+ }
383
+ .customize-control-sortable-repeater-delete {
384
+ color: #d4d4d4;
385
+ }
386
+ .customize-control-sortable-repeater-delete:hover {
387
+ color: #f00;
388
+ }
389
+ .customize-control-sortable-repeater-delete .dashicons-no-alt {
390
+ text-decoration: none;
391
+ margin: 8px 0 0 0;
392
+ font-weight: 600;
393
+ }
394
+ .customize-control-sortable-repeater-delete:active,
395
+ .customize-control-sortable-repeater-delete:focus {
396
+ outline: none;
397
+ -webkit-box-shadow: none;
398
+ box-shadow: none;
399
+ }
400
+ .repeater .dashicons-sort {
401
+ margin: 8px 5px 0 5px;
402
+ color: #d4d4d4;
403
+ }
404
+ .repeater .dashicons-sort:hover {
405
+ color: #a7a7a7;
406
+ }
407
+
408
+ /* ==========================================================================
409
+ Single Accordion
410
+ ========================================================================== */
411
+ .single-accordion-toggle {
412
+ font-size: 14px;
413
+ font-weight: 600;
414
+ line-height: 24px;
415
+ padding: 10px 5px 5px 0;
416
+ cursor: pointer;
417
+ }
418
+ .accordion-icon-toggle {
419
+ font-size: 18px;
420
+ margin-left: 5px;
421
+ margin-top: 5px;
422
+ -webkit-transition: -webkit-transform 0.3s ease-in-out;
423
+ -moz-transition: -moz-transform 0.3s ease-in-out;
424
+ -o-transition: -o-transform 0.3s ease-in-out;
425
+ transition: transform 0.3s ease-in-out;
426
+ }
427
+ .single-accordion-toggle-rotate .accordion-icon-toggle {
428
+ filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=-0.5);
429
+ -webkit-transform: rotate(-45deg);
430
+ -moz-transform: rotate(-45deg);
431
+ -ms-transform: rotate(-45deg);
432
+ -o-transform: rotate(-45deg);
433
+ transform: rotate(-45deg);
434
+ display: inline-block;
435
+ }
436
+ .single-accordion {
437
+ display: none;
438
+ }
439
+ .single-accordion ul {
440
+ margin: 0;
441
+ padding: 0;
442
+ }
443
+ .single-accordion li {
444
+ background-color: #e4e4e4;
445
+ color: #888;
446
+ width: 115px;
447
+ display: inline-block;
448
+ padding: 5px;
449
+ margin: 5px;
450
+ text-align: center;
451
+ }
452
+ .single-accordion li i {
453
+ margin-left: 5px;
454
+ }
455
+
456
+ /* ==========================================================================
457
+ Alpha Color Picker
458
+ ========================================================================== */
459
+ .customize-control-alpha-color .wp-picker-container .iris-picker {
460
+ border-bottom:none;
461
+ }
462
+
463
+ .customize-control-alpha-color .wp-picker-container {
464
+ max-width: 257px;
465
+ }
466
+
467
+ .customize-control-alpha-color .wp-picker-open + .wp-picker-input-wrap {
468
+ width: 100%;
469
+ }
470
+
471
+ .customize-control-alpha-color .wp-picker-input-wrap input[type="text"].wp-color-picker.alpha-color-control {
472
+ float: left;
473
+ width: 195px;
474
+ }
475
+
476
+ .customize-control-alpha-color .wp-picker-input-wrap .button {
477
+ margin-left: 0;
478
+ float: right;
479
+ }
480
+
481
+ .wp-picker-container .wp-picker-open ~ .wp-picker-holder .alpha-color-picker-container {
482
+ display: block;
483
+ }
484
+
485
+ .alpha-color-picker-container {
486
+ border: 1px solid #dfdfdf;
487
+ border-top: none;
488
+ display: none;
489
+ background: #FFF;
490
+ padding: 0 11px 10px;
491
+ position: relative;
492
+ }
493
+
494
+ .alpha-color-picker-container .ui-widget-content,
495
+ .alpha-color-picker-container .ui-widget-header,
496
+ .alpha-color-picker-wrap .ui-state-focus {
497
+ background: transparent;
498
+ border: none;
499
+ }
500
+
501
+ .alpha-color-picker-wrap a.iris-square-value:focus {
502
+ -webkit-box-shadow: none;
503
+ box-shadow: none;
504
+ }
505
+
506
+ .alpha-color-picker-container .ui-slider {
507
+ position: relative;
508
+ z-index: 1;
509
+ height: 24px;
510
+ text-align: center;
511
+ margin: 0 auto;
512
+ width: 88%;
513
+ width: calc( 100% - 28px );
514
+ }
515
+
516
+ .alpha-color-picker-container .ui-slider-handle,
517
+ .alpha-color-picker-container .ui-widget-content .ui-state-default {
518
+ color: #777;
519
+ background-color: #FFF;
520
+ text-shadow: 0 1px 0 #FFF;
521
+ text-decoration: none;
522
+ position: absolute;
523
+ z-index: 2;
524
+ box-shadow: 0 1px 2px rgba(0,0,0,0.2);
525
+ border: 1px solid #aaa;
526
+ -webkit-border-radius: 4px;
527
+ -moz-border-radius: 4px;
528
+ border-radius: 4px;
529
+ margin-top: -2px;
530
+ top: 0;
531
+ height: 26px;
532
+ width: 26px;
533
+ cursor: ew-resize;
534
+ font-size: 0;
535
+ padding: 0;
536
+ line-height: 27px;
537
+ margin-left: -14px;
538
+ }
539
+
540
+ .alpha-color-picker-container .ui-slider-handle.show-opacity {
541
+ font-size: 12px;
542
+ }
543
+
544
+ .alpha-color-picker-container .click-zone {
545
+ width: 14px;
546
+ height: 24px;
547
+ display: block;
548
+ position: absolute;
549
+ left: 10px;
550
+ }
551
+
552
+ .alpha-color-picker-container .max-click-zone {
553
+ right: 10px;
554
+ left: auto;
555
+ }
556
+
557
+ .alpha-color-picker-container .transparency {
558
+ height: 24px;
559
+ width: 100%;
560
+ background-color: #FFF;
561
+ background-image: url(../images/color-picker-transparency-grid.png);
562
+ box-shadow: 0 0 5px rgba(0,0,0,0.4) inset;
563
+ -webkit-border-radius: 3px;
564
+ -moz-border-radius: 3px;
565
+ border-radius: 3px;
566
+ padding: 0;
567
+ margin-top: -24px;
568
+ }
569
+
570
+ @media only screen and (max-width: 782px) {
571
+ .customize-control-alpha-color .wp-picker-input-wrap input[type="text"].wp-color-picker.alpha-color-control {
572
+ width: 184px;
573
+ }
574
+ }
575
+
576
+ @media only screen and (max-width: 640px) {
577
+ .customize-control-alpha-color .wp-picker-input-wrap input[type="text"].wp-color-picker.alpha-color-control {
578
+ width: 172px;
579
+ height: 33px;
580
+ }
581
+ }
582
+
583
+ /* ==========================================================================
584
+ Alpha Color Picker & Standard Color Picker
585
+ ========================================================================== */
586
+ .customize-control-color .wp-color-result,
587
+ .customize-control-alpha-color .wp-color-result {
588
+ border: none;
589
+ box-shadow: none;
590
+ }
591
+
592
+ .customize-control-color .wp-color-result:after,
593
+ .customize-control-alpha-color .wp-color-result:after {
594
+ border: none;
595
+ }
596
+
597
+ .customize-control-color .wp-color-result .wp-color-result-text,
598
+ .customize-control-alpha-color .wp-color-result .wp-color-result-text {
599
+ line-height: 24px;
600
+ border-left: none;
601
+ }
602
+
603
+ .wp-picker-holder .iris-picker .iris-palette {
604
+ box-shadow: none;
605
+ }
606
+
607
+ .wp-picker-container .iris-picker,
608
+ .wp-picker-container .alpha-color-picker-container {
609
+ border-radius: 0;
610
+ border: none;
611
+ }
612
+
613
+ .wp-picker-container .alpha-color-picker-container {
614
+ width: 233px;
615
+ }
616
+
617
+ /* ==========================================================================
618
+ Google Fonts Select
619
+ ========================================================================== */
620
+ .google_fonts_select_control .google-fonts,
621
+ .google_fonts_select_control .weight-style {
622
+ margin-bottom: 10px;
623
+ }
libs/framework/assets/css/framework.css ADDED
@@ -0,0 +1 @@
 
1
+ .attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail>img,.attr-thumbnail a>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:normal;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-md-1,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-sm-1,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-xs-1,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.attr-checkbox-inline input[type=checkbox],.attr-checkbox input[type=checkbox],.attr-radio-inline input[type=radio],.attr-radio input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-checkbox label,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-radio-inline label,.attr-has-success.attr-radio label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-checkbox label,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-radio-inline label,.attr-has-warning.attr-radio label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-checkbox label,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-radio-inline label,.attr-has-error.attr-radio label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:normal;color:#337ab7;border-radius:0}.attr-btn-link,.attr-btn-link.attr-active,.attr-btn-link:active,.attr-btn-link[disabled],fieldset[disabled] .attr-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.attr-btn-link,.attr-btn-link:active,.attr-btn-link:focus,.attr-btn-link:hover{border-color:transparent}.attr-btn-link:focus,.attr-btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.attr-btn-link[disabled]:focus,.attr-btn-link[disabled]:hover,fieldset[disabled] .attr-btn-link:focus,fieldset[disabled] .attr-btn-link:hover{color:#777;text-decoration:none}.attr-btn-group-lg>.attr-btn,.attr-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-btn-group-sm>.attr-btn,.attr-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-group-xs>.attr-btn,.attr-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-block{display:block;width:100%}.attr-btn-block+.attr-btn-block{margin-top:5px}input[type=button].attr-btn-block,input[type=reset].attr-btn-block,input[type=submit].attr-btn-block{width:100%}.attr-fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.attr-fade.attr-in{opacity:1}.attr-collapse{display:none}.attr-collapse.attr-in{display:block}tr.attr-collapse.attr-in{display:table-row}tbody.attr-collapse.attr-in{display:table-row-group}.attr-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility}.attr-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.attr-dropdown,.attr-dropup{position:relative}.attr-dropdown-toggle:focus{outline:0}.attr-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);box-shadow:0 6px 12px rgba(0, 0, 0, 0.175)}.attr-dropdown-menu.attr-pull-right{right:0;left:auto}.attr-dropdown-menu .attr-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.attr-dropdown-menu>li>a:focus,.attr-dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.attr-dropdown-menu>.attr-active>a,.attr-dropdown-menu>.attr-active>a:focus,.attr-dropdown-menu>.attr-active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.attr-dropdown-menu>.attr-disabled>a,.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{color:#777}.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.attr-open>.attr-dropdown-menu{display:block}.attr-open>a{outline:0}.attr-dropdown-menu-right{right:0;left:auto}.attr-dropdown-menu-left{right:auto;left:0}.attr-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.attr-dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.attr-pull-right>.attr-dropdown-menu{right:0;left:auto}.attr-dropup .attr-caret,.attr-navbar-fixed-bottom .attr-dropdown .attr-caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.attr-dropup .attr-dropdown-menu,.attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.attr-navbar-right .attr-dropdown-menu{right:0;left:auto}.attr-navbar-right .attr-dropdown-menu-left{right:auto;left:0}}.attr-btn-group,.attr-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.attr-btn-group-vertical>.attr-btn,.attr-btn-group>.attr-btn{position:relative;float:left}.attr-btn-group-vertical>.attr-btn.attr-active,.attr-btn-group-vertical>.attr-btn:active,.attr-btn-group-vertical>.attr-btn:focus,.attr-btn-group-vertical>.attr-btn:hover,.attr-btn-group>.attr-btn.attr-active,.attr-btn-group>.attr-btn:active,.attr-btn-group>.attr-btn:focus,.attr-btn-group>.attr-btn:hover{z-index:2}.attr-btn-group .attr-btn+.attr-btn,.attr-btn-group .attr-btn+.attr-btn-group,.attr-btn-group .attr-btn-group+.attr-btn,.attr-btn-group .attr-btn-group+.attr-btn-group{margin-left:-1px}.attr-btn-toolbar{margin-left:-5px}.attr-btn-toolbar .attr-btn,.attr-btn-toolbar .attr-btn-group,.attr-btn-toolbar .attr-input-group{float:left}.attr-btn-toolbar>.attr-btn,.attr-btn-toolbar>.attr-btn-group,.attr-btn-toolbar>.attr-input-group{margin-left:5px}.attr-btn-group>.attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle){border-radius:0}.attr-btn-group>.attr-btn:first-child{margin-left:0}.attr-btn-group>.attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn:last-child:not(:first-child),.attr-btn-group>.attr-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group>.attr-btn-group{float:left}.attr-btn-group>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group .attr-dropdown-toggle:active,.attr-btn-group.attr-open .attr-dropdown-toggle{outline:0}.attr-btn-group>.attr-btn+.attr-dropdown-toggle{padding-right:8px;padding-left:8px}.attr-btn-group>.attr-btn-lg+.attr-dropdown-toggle{padding-right:12px;padding-left:12px}.attr-btn-group.attr-open .attr-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link{-webkit-box-shadow:none;box-shadow:none}.attr-btn .attr-caret{margin-left:0}.attr-btn-lg .attr-caret{border-width:5px 5px 0;border-bottom-width:0}.attr-dropup .attr-btn-lg .attr-caret{border-width:0 5px 5px}.attr-btn-group-vertical>.attr-btn,.attr-btn-group-vertical>.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group>.attr-btn{display:block;float:none;width:100%;max-width:100%}.attr-btn-group-vertical>.attr-btn-group>.attr-btn{float:none}.attr-btn-group-vertical>.attr-btn+.attr-btn,.attr-btn-group-vertical>.attr-btn+.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group+.attr-btn,.attr-btn-group-vertical>.attr-btn-group+.attr-btn-group{margin-top:-1px;margin-left:0}.attr-btn-group-vertical>.attr-btn:not(:first-child):not(:last-child){border-radius:0}.attr-btn-group-vertical>.attr-btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.attr-btn-group-vertical>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.attr-btn-group-justified>.attr-btn,.attr-btn-group-justified>.attr-btn-group{display:table-cell;float:none;width:1%}.attr-btn-group-justified>.attr-btn-group .attr-btn{width:100%}.attr-btn-group-justified>.attr-btn-group .attr-dropdown-menu{left:auto}[data-attr-toggle=buttons]>.attr-btn-group>.attr-btn input[type=checkbox],[data-attr-toggle=buttons]>.attr-btn-group>.attr-btn input[type=radio],[data-attr-toggle=buttons]>.attr-btn input[type=checkbox],[data-attr-toggle=buttons]>.attr-btn input[type=radio]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.attr-input-group{position:relative;display:table;border-collapse:separate}.attr-input-group[class*=attr-col-]{float:none;padding-right:0;padding-left:0}.attr-input-group .attr-form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.attr-input-group .attr-form-control:focus{z-index:3}.attr-input-group-lg>.attr-form-control,.attr-input-group-lg>.attr-input-group-addon,.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-group-lg>.attr-form-control,select.attr-input-group-lg>.attr-input-group-addon,select.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;line-height:46px}select[multiple].attr-input-group-lg>.attr-form-control,select[multiple].attr-input-group-lg>.attr-input-group-addon,select[multiple].attr-input-group-lg>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-lg>.attr-form-control,textarea.attr-input-group-lg>.attr-input-group-addon,textarea.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-sm>.attr-form-control,.attr-input-group-sm>.attr-input-group-addon,.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-group-sm>.attr-form-control,select.attr-input-group-sm>.attr-input-group-addon,select.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;line-height:30px}select[multiple].attr-input-group-sm>.attr-form-control,select[multiple].attr-input-group-sm>.attr-input-group-addon,select[multiple].attr-input-group-sm>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-sm>.attr-form-control,textarea.attr-input-group-sm>.attr-input-group-addon,textarea.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-addon,.attr-input-group-btn,.attr-input-group .attr-form-control{display:table-cell}.attr-input-group-addon:not(:first-child):not(:last-child),.attr-input-group-btn:not(:first-child):not(:last-child),.attr-input-group .attr-form-control:not(:first-child):not(:last-child){border-radius:0}.attr-input-group-addon,.attr-input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.attr-input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.attr-input-group-addon.attr-input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.attr-input-group-addon.attr-input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.attr-input-group-addon input[type=checkbox],.attr-input-group-addon input[type=radio]{margin-top:0}.attr-input-group-addon:first-child,.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:first-child>.attr-dropdown-toggle,.attr-input-group-btn:last-child>.attr-btn-group:not(:last-child)>.attr-btn,.attr-input-group-btn:last-child>.attr-btn:not(:last-child):not(.attr-dropdown-toggle),.attr-input-group .attr-form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.attr-input-group-addon:first-child{border-right:0}.attr-input-group-addon:last-child,.attr-input-group-btn:first-child>.attr-btn-group:not(:first-child)>.attr-btn,.attr-input-group-btn:first-child>.attr-btn:not(:first-child),.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:last-child>.attr-dropdown-toggle,.attr-input-group .attr-form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-input-group-addon:last-child{border-left:0}.attr-input-group-btn{position:relative;font-size:0;white-space:nowrap}.attr-input-group-btn>.attr-btn{position:relative}.attr-input-group-btn>.attr-btn+.attr-btn{margin-left:-1px}.attr-input-group-btn>.attr-btn:active,.attr-input-group-btn>.attr-btn:focus,.attr-input-group-btn>.attr-btn:hover{z-index:2}.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group{margin-right:-1px}.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group{z-index:2;margin-left:-1px}.attr-nav{padding-left:0;margin-bottom:0;list-style:none}.attr-nav>li{position:relative;display:block}.attr-nav>li>a{position:relative;display:block;padding:10px 15px}.attr-nav>li>a:focus,.attr-nav>li>a:hover{text-decoration:none;background-color:#eee}.attr-nav>li.attr-disabled>a{color:#777}.attr-nav>li.attr-disabled>a:focus,.attr-nav>li.attr-disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.attr-nav .attr-open>a,.attr-nav .attr-open>a:focus,.attr-nav .attr-open>a:hover{background-color:#eee;border-color:#337ab7}.attr-nav .attr-nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-nav>li>a>img{max-width:none}.attr-nav-tabs{border-bottom:1px solid #ddd}.attr-nav-tabs>li{float:left;margin-bottom:-1px}.attr-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.attr-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.attr-nav-tabs.attr-nav-justified{width:100%;border-bottom:0}.attr-nav-tabs.attr-nav-justified>li{float:none}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-tabs.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs.attr-nav-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-nav-pills>li{float:left}.attr-nav-pills>li>a{border-radius:4px}.attr-nav-pills>li+li{margin-left:2px}.attr-nav-pills>li.attr-active>a,.attr-nav-pills>li.attr-active>a:focus,.attr-nav-pills>li.attr-active>a:hover{color:#fff;background-color:#337ab7}.attr-nav-stacked>li{float:none}.attr-nav-stacked>li+li{margin-top:2px;margin-left:0}.attr-nav-justified{width:100%}.attr-nav-justified>li{float:none}.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs-justified{border-bottom:0}.attr-nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-tab-content>.attr-tab-pane{display:none}.attr-tab-content>.attr-active{display:block}.attr-nav-tabs .attr-dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.attr-navbar{border-radius:4px}}@media (min-width:768px){.attr-navbar-header{float:left}}.attr-navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1)}.attr-navbar-collapse.attr-in{overflow-y:auto}@media (min-width:768px){.attr-navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-collapse.attr-collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.attr-navbar-collapse.attr-in{overflow-y:visible}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse,.attr-navbar-static-top .attr-navbar-collapse{padding-right:0;padding-left:0}}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:200px}}.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:0;margin-left:0}}.attr-navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.attr-navbar-static-top{border-radius:0}}.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{border-radius:0}}.attr-navbar-fixed-top{top:0;border-width:0 0 1px}.attr-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.attr-navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.attr-navbar-brand:focus,.attr-navbar-brand:hover{text-decoration:none}.attr-navbar-brand>img{display:block}@media (min-width:768px){.attr-navbar>.attr-container-fluid .attr-navbar-brand,.attr-navbar>.attr-container .attr-navbar-brand{margin-left:-15px}}.attr-navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.attr-navbar-toggle:focus{outline:0}.attr-navbar-toggle .attr-icon-bar{display:block;width:22px;height:2px;border-radius:1px}.attr-navbar-toggle .attr-icon-bar+.attr-icon-bar{margin-top:4px}@media (min-width:768px){.attr-navbar-toggle{display:none}}.attr-navbar-nav{margin:7.5px -15px}.attr-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.attr-navbar-nav .attr-open .attr-dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{padding:5px 15px 5px 25px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{line-height:20px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.attr-navbar-nav{float:left;margin:0}.attr-navbar-nav>li{float:left}.attr-navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.attr-navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1)}@media (min-width:768px){.attr-navbar-form .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-navbar-form .attr-form-control-static{display:inline-block}.attr-navbar-form .attr-input-group{display:inline-table;vertical-align:middle}.attr-navbar-form .attr-input-group .attr-form-control,.attr-navbar-form .attr-input-group .attr-input-group-addon,.attr-navbar-form .attr-input-group .attr-input-group-btn{width:auto}.attr-navbar-form .attr-input-group>.attr-form-control{width:100%}.attr-navbar-form .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox,.attr-navbar-form .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox label,.attr-navbar-form .attr-radio label{padding-left:0}.attr-navbar-form .attr-checkbox input[type=checkbox],.attr-navbar-form .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-navbar-form .attr-has-feedback .attr-form-control-feedback{top:0}}@media (max-width:767px){.attr-navbar-form .attr-form-group{margin-bottom:5px}.attr-navbar-form .attr-form-group:last-child{margin-bottom:0}}@media (min-width:768px){.attr-navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.attr-navbar-nav>li>.attr-dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar-fixed-bottom .attr-navbar-nav>li>.attr-dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-navbar-btn{margin-top:8px;margin-bottom:8px}.attr-navbar-btn.attr-btn-sm{margin-top:10px;margin-bottom:10px}.attr-navbar-btn.attr-btn-xs{margin-top:14px;margin-bottom:14px}.attr-navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.attr-navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.attr-navbar-left{float:left!important}.attr-navbar-right{float:right!important;margin-right:-15px}.attr-navbar-right~.attr-navbar-right{margin-right:0}}.attr-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.attr-navbar-default .attr-navbar-brand{color:#777}.attr-navbar-default .attr-navbar-brand:focus,.attr-navbar-default .attr-navbar-brand:hover{color:#5e5e5e;background-color:transparent}.attr-navbar-default .attr-navbar-text{color:#777}.attr-navbar-default .attr-navbar-nav>li>a{color:#777}.attr-navbar-default .attr-navbar-nav>li>a:focus,.attr-navbar-default .attr-navbar-nav>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav>.attr-active>a,.attr-navbar-default .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:hover{color:#ccc;background-color:transparent}.attr-navbar-default .attr-navbar-toggle{border-color:#ddd}.attr-navbar-default .attr-navbar-toggle:focus,.attr-navbar-default .attr-navbar-toggle:hover{background-color:#ddd}.attr-navbar-default .attr-navbar-toggle .attr-icon-bar{background-color:#888}.attr-navbar-default .attr-navbar-collapse,.attr-navbar-default .attr-navbar-form{border-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-open>a,.attr-navbar-default .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#777}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#ccc;background-color:transparent}}.attr-navbar-default .attr-navbar-link{color:#777}.attr-navbar-default .attr-navbar-link:hover{color:#333}.attr-navbar-default .attr-btn-link{color:#777}.attr-navbar-default .attr-btn-link:focus,.attr-navbar-default .attr-btn-link:hover{color:#333}.attr-navbar-default .attr-btn-link[disabled]:focus,.attr-navbar-default .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-default .attr-btn-link:focus,fieldset[disabled] .attr-navbar-default .attr-btn-link:hover{color:#ccc}.attr-navbar-inverse{background-color:#222;border-color:#080808}.attr-navbar-inverse .attr-navbar-brand{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-brand:focus,.attr-navbar-inverse .attr-navbar-brand:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-text{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a:focus,.attr-navbar-inverse .attr-navbar-nav>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:hover{color:#444;background-color:transparent}.attr-navbar-inverse .attr-navbar-toggle{border-color:#333}.attr-navbar-inverse .attr-navbar-toggle:focus,.attr-navbar-inverse .attr-navbar-toggle:hover{background-color:#333}.attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar{background-color:#fff}.attr-navbar-inverse .attr-navbar-collapse,.attr-navbar-inverse .attr-navbar-form{border-color:#101010}.attr-navbar-inverse .attr-navbar-nav>.attr-open>a,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-dropdown-header{border-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider{background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#444;background-color:transparent}}.attr-navbar-inverse .attr-navbar-link{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link{color:#9d9d9d}.attr-navbar-inverse .attr-btn-link:focus,.attr-navbar-inverse .attr-btn-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link[disabled]:focus,.attr-navbar-inverse .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover{color:#444}.attr-breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.attr-breadcrumb>li{display:inline-block}.attr-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.attr-breadcrumb>.attr-active{color:#777}.attr-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.attr-pagination>li{display:inline}.attr-pagination>li>a,.attr-pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.attr-pagination>li:first-child>a,.attr-pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.attr-pagination>li:last-child>a,.attr-pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.attr-pagination>li>a:focus,.attr-pagination>li>a:hover,.attr-pagination>li>span:focus,.attr-pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.attr-pagination>.attr-active>a,.attr-pagination>.attr-active>a:focus,.attr-pagination>.attr-active>a:hover,.attr-pagination>.attr-active>span,.attr-pagination>.attr-active>span:focus,.attr-pagination>.attr-active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.attr-pagination>.attr-disabled>a,.attr-pagination>.attr-disabled>a:focus,.attr-pagination>.attr-disabled>a:hover,.attr-pagination>.attr-disabled>span,.attr-pagination>.attr-disabled>span:focus,.attr-pagination>.attr-disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.attr-pagination-lg>li>a,.attr-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.attr-pagination-lg>li:first-child>a,.attr-pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.attr-pagination-lg>li:last-child>a,.attr-pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.attr-pagination-sm>li>a,.attr-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.attr-pagination-sm>li:first-child>a,.attr-pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.attr-pagination-sm>li:last-child>a,.attr-pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.attr-pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.attr-pager li{display:inline}.attr-pager li>a,.attr-pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.attr-pager li>a:focus,.attr-pager li>a:hover{text-decoration:none;background-color:#eee}.attr-pager .attr-next>a,.attr-pager .attr-next>span{float:right}.attr-pager .attr-previous>a,.attr-pager .attr-previous>span{float:left}.attr-pager .attr-disabled>a,.attr-pager .attr-disabled>a:focus,.attr-pager .attr-disabled>a:hover,.attr-pager .attr-disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.attr-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.attr-label:focus,a.attr-label:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-label:empty{display:none}.attr-btn .attr-label{position:relative;top:-1px}.attr-label-default{background-color:#777}.attr-label-default[href]:focus,.attr-label-default[href]:hover{background-color:#5e5e5e}.attr-label-primary{background-color:#337ab7}.attr-label-primary[href]:focus,.attr-label-primary[href]:hover{background-color:#286090}.attr-label-success{background-color:#5cb85c}.attr-label-success[href]:focus,.attr-label-success[href]:hover{background-color:#449d44}.attr-label-info{background-color:#5bc0de}.attr-label-info[href]:focus,.attr-label-info[href]:hover{background-color:#31b0d5}.attr-label-warning{background-color:#f0ad4e}.attr-label-warning[href]:focus,.attr-label-warning[href]:hover{background-color:#ec971f}.attr-label-danger{background-color:#d9534f}.attr-label-danger[href]:focus,.attr-label-danger[href]:hover{background-color:#c9302c}.attr-badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.attr-badge:empty{display:none}.attr-btn .attr-badge{position:relative;top:-1px}.attr-btn-group-xs>.attr-btn .attr-badge,.attr-btn-xs .attr-badge{top:0;padding:1px 5px}a.attr-badge:focus,a.attr-badge:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-list-group-item.attr-active>.attr-badge,.attr-nav-pills>.attr-active>a>.attr-badge{color:#337ab7;background-color:#fff}.attr-list-group-item>.attr-badge{float:right}.attr-list-group-item>.attr-badge+.attr-badge{margin-right:5px}.attr-nav-pills>li>a>.attr-badge{margin-left:3px}.attr-jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.attr-jumbotron .attr-h1,.attr-jumbotron h1{color:inherit}.attr-jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.attr-jumbotron>hr{border-top-color:#d5d5d5}.attr-container-fluid .attr-jumbotron,.attr-container .attr-jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.attr-jumbotron .attr-container{max-width:100%}@media screen and (min-width:768px){.attr-jumbotron{padding-top:48px;padding-bottom:48px}.attr-container-fluid .attr-jumbotron,.attr-container .attr-jumbotron{padding-right:60px;padding-left:60px}.attr-jumbotron .attr-h1,.attr-jumbotron h1{font-size:63px}}.attr-thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.attr-thumbnail>img,.attr-thumbnail a>img{margin-right:auto;margin-left:auto}a.attr-thumbnail.attr-active,a.attr-thumbnail:focus,a.attr-thumbnail:hover{border-color:#337ab7}.attr-thumbnail .attr-caption{padding:9px;color:#333}.attr-alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.attr-alert h4{margin-top:0;color:inherit}.attr-alert .attr-alert-link{font-weight:bold}.attr-alert>p,.attr-alert>ul{margin-bottom:0}.attr-alert>p+p{margin-top:5px}.attr-alert-dismissable,.attr-alert-dismissible{padding-right:35px}.attr-alert-dismissable .attr-close,.attr-alert-dismissible .attr-close{position:relative;top:-2px;right:-21px;color:inherit}.attr-alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-alert-success hr{border-top-color:#c9e2b3}.attr-alert-success .attr-alert-link{color:#2b542c}.attr-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-alert-info hr{border-top-color:#a6e1ec}.attr-alert-info .attr-alert-link{color:#245269}.attr-alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-alert-warning hr{border-top-color:#f7e1b5}.attr-alert-warning .attr-alert-link{color:#66512c}.attr-alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-alert-danger hr{border-top-color:#e4b9c0}.attr-alert-danger .attr-alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.attr-progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1)}.attr-progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.attr-progress-bar-striped,.attr-progress-striped .attr-progress-bar{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.attr-progress-bar.attr-active,.attr-progress.attr-active .attr-progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.attr-progress-bar-success{background-color:#5cb85c}.attr-progress-striped .attr-progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-progress-bar-info{background-color:#5bc0de}.attr-progress-striped .attr-progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-progress-bar-warning{background-color:#f0ad4e}.attr-progress-striped .attr-progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-progress-bar-danger{background-color:#d9534f}.attr-progress-striped .attr-progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-media{margin-top:15px}.attr-media:first-child{margin-top:0}.attr-media,.attr-media-body{overflow:hidden;zoom:1}.attr-media-body{width:10000px}.attr-media-object{display:block}.attr-media-object.attr-img-thumbnail{max-width:none}.attr-media-right,.attr-media>.attr-pull-right{padding-left:10px}.attr-media-left,.attr-media>.attr-pull-left{padding-right:10px}.attr-media-body,.attr-media-left,.attr-media-right{display:table-cell;vertical-align:top}.attr-media-middle{vertical-align:middle}.attr-media-bottom{vertical-align:bottom}.attr-media-heading{margin-top:0;margin-bottom:5px}.attr-media-list{padding-left:0;list-style:none}.attr-list-group{padding-left:0;margin-bottom:20px}.attr-list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.attr-list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.attr-list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.attr-list-group-item,button.attr-list-group-item{color:#555}a.attr-list-group-item .attr-list-group-item-heading,button.attr-list-group-item .attr-list-group-item-heading{color:#333}a.attr-list-group-item:focus,a.attr-list-group-item:hover,button.attr-list-group-item:focus,button.attr-list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.attr-list-group-item{width:100%;text-align:left}.attr-list-group-item.attr-disabled,.attr-list-group-item.attr-disabled:focus,.attr-list-group-item.attr-disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.attr-list-group-item.attr-disabled .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading{color:inherit}.attr-list-group-item.attr-disabled .attr-list-group-item-text,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-text,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-text{color:#777}.attr-list-group-item.attr-active,.attr-list-group-item.attr-active:focus,.attr-list-group-item.attr-active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-list-group-item.attr-active .attr-list-group-item-heading,.attr-list-group-item.attr-active .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>small{color:inherit}.attr-list-group-item.attr-active .attr-list-group-item-text,.attr-list-group-item.attr-active:focus .attr-list-group-item-text,.attr-list-group-item.attr-active:hover .attr-list-group-item-text{color:#c7ddef}.attr-list-group-item-success{color:#3c763d;background-color:#dff0d8}a.attr-list-group-item-success,button.attr-list-group-item-success{color:#3c763d}a.attr-list-group-item-success .attr-list-group-item-heading,button.attr-list-group-item-success .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-success:focus,a.attr-list-group-item-success:hover,button.attr-list-group-item-success:focus,button.attr-list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.attr-list-group-item-success.attr-active,a.attr-list-group-item-success.attr-active:focus,a.attr-list-group-item-success.attr-active:hover,button.attr-list-group-item-success.attr-active,button.attr-list-group-item-success.attr-active:focus,button.attr-list-group-item-success.attr-active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.attr-list-group-item-info{color:#31708f;background-color:#d9edf7}a.attr-list-group-item-info,button.attr-list-group-item-info{color:#31708f}a.attr-list-group-item-info .attr-list-group-item-heading,button.attr-list-group-item-info .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-info:focus,a.attr-list-group-item-info:hover,button.attr-list-group-item-info:focus,button.attr-list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.attr-list-group-item-info.attr-active,a.attr-list-group-item-info.attr-active:focus,a.attr-list-group-item-info.attr-active:hover,button.attr-list-group-item-info.attr-active,button.attr-list-group-item-info.attr-active:focus,button.attr-list-group-item-info.attr-active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.attr-list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.attr-list-group-item-warning,button.attr-list-group-item-warning{color:#8a6d3b}a.attr-list-group-item-warning .attr-list-group-item-heading,button.attr-list-group-item-warning .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-warning:focus,a.attr-list-group-item-warning:hover,button.attr-list-group-item-warning:focus,button.attr-list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.attr-list-group-item-warning.attr-active,a.attr-list-group-item-warning.attr-active:focus,a.attr-list-group-item-warning.attr-active:hover,button.attr-list-group-item-warning.attr-active,button.attr-list-group-item-warning.attr-active:focus,button.attr-list-group-item-warning.attr-active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.attr-list-group-item-danger{color:#a94442;background-color:#f2dede}a.attr-list-group-item-danger,button.attr-list-group-item-danger{color:#a94442}a.attr-list-group-item-danger .attr-list-group-item-heading,button.attr-list-group-item-danger .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-danger:focus,a.attr-list-group-item-danger:hover,button.attr-list-group-item-danger:focus,button.attr-list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.attr-list-group-item-danger.attr-active,a.attr-list-group-item-danger.attr-active:focus,a.attr-list-group-item-danger.attr-active:hover,button.attr-list-group-item-danger.attr-active,button.attr-list-group-item-danger.attr-active:focus,button.attr-list-group-item-danger.attr-active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.attr-list-group-item-heading{margin-top:0;margin-bottom:5px}.attr-list-group-item-text{margin-bottom:0;line-height:1.3}.attr-panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:0 1px 1px rgba(0, 0, 0, 0.05)}.attr-panel-body{padding:15px}.attr-panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel-heading>.attr-dropdown .attr-dropdown-toggle{color:inherit}.attr-panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.attr-panel-title>.attr-small,.attr-panel-title>.attr-small>a,.attr-panel-title>a,.attr-panel-title>small,.attr-panel-title>small>a{color:inherit}.attr-panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-list-group,.attr-panel>.attr-panel-collapse>.attr-list-group{margin-bottom:0}.attr-panel>.attr-list-group .attr-list-group-item,.attr-panel>.attr-panel-collapse>.attr-list-group .attr-list-group-item{border-width:1px 0;border-radius:0}.attr-panel>.attr-list-group:first-child .attr-list-group-item:first-child,.attr-panel>.attr-panel-collapse>.attr-list-group:first-child .attr-list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-list-group:last-child .attr-list-group-item:last-child,.attr-panel>.attr-panel-collapse>.attr-list-group:last-child .attr-list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-panel-heading+.attr-panel-collapse>.attr-list-group .attr-list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-panel-heading+.attr-list-group .attr-list-group-item:first-child{border-top-width:0}.attr-list-group+.attr-panel-footer{border-top-width:0}.attr-panel>.attr-panel-collapse>.attr-table,.attr-panel>.attr-table,.attr-panel>.attr-table-responsive>.attr-table{margin-bottom:0}.attr-panel>.attr-panel-collapse>.attr-table caption,.attr-panel>.attr-table-responsive>.attr-table caption,.attr-panel>.attr-table caption{padding-right:15px;padding-left:15px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child,.attr-panel>.attr-table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child,.attr-panel>.attr-table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.attr-panel>.attr-panel-body+.attr-table,.attr-panel>.attr-panel-body+.attr-table-responsive,.attr-panel>.attr-table+.attr-panel-body,.attr-panel>.attr-table-responsive+.attr-panel-body{border-top:1px solid #ddd}.attr-panel>.attr-table>tbody:first-child>tr:first-child td,.attr-panel>.attr-table>tbody:first-child>tr:first-child th{border-top:0}.attr-panel>.attr-table-bordered,.attr-panel>.attr-table-responsive>.attr-table-bordered{border:0}.attr-panel>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-bordered>thead>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-panel>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-bordered>thead>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-panel>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-bordered>thead>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>th{border-bottom:0}.attr-panel>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}.attr-panel>.attr-table-responsive{margin-bottom:0;border:0}.attr-panel-group{margin-bottom:20px}.attr-panel-group .attr-panel{margin-bottom:0;border-radius:4px}.attr-panel-group .attr-panel+.attr-panel{margin-top:5px}.attr-panel-group .attr-panel-heading{border-bottom:0}.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-list-group,.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top:1px solid #ddd}.attr-panel-group .attr-panel-footer{border-top:0}.attr-panel-group .attr-panel-footer+.attr-panel-collapse .attr-panel-body{border-bottom:1px solid #ddd}.attr-panel-default{border-color:#ddd}.attr-panel-default>.attr-panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.attr-panel-default>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ddd}.attr-panel-default>.attr-panel-heading .attr-badge{color:#f5f5f5;background-color:#333}.attr-panel-default>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ddd}.attr-panel-primary{border-color:#337ab7}.attr-panel-primary>.attr-panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-panel-primary>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#337ab7}.attr-panel-primary>.attr-panel-heading .attr-badge{color:#337ab7;background-color:#fff}.attr-panel-primary>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#337ab7}.attr-panel-success{border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#d6e9c6}.attr-panel-success>.attr-panel-heading .attr-badge{color:#dff0d8;background-color:#3c763d}.attr-panel-success>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#d6e9c6}.attr-panel-info{border-color:#bce8f1}.attr-panel-info>.attr-panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-panel-info>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#bce8f1}.attr-panel-info>.attr-panel-heading .attr-badge{color:#d9edf7;background-color:#31708f}.attr-panel-info>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#bce8f1}.attr-panel-warning{border-color:#faebcc}.attr-panel-warning>.attr-panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-panel-warning>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#faebcc}.attr-panel-warning>.attr-panel-heading .attr-badge{color:#fcf8e3;background-color:#8a6d3b}.attr-panel-warning>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#faebcc}.attr-panel-danger{border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ebccd1}.attr-panel-danger>.attr-panel-heading .attr-badge{color:#f2dede;background-color:#a94442}.attr-panel-danger>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ebccd1}.attr-embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.attr-embed-responsive .attr-embed-responsive-item,.attr-embed-responsive embed,.attr-embed-responsive iframe,.attr-embed-responsive object,.attr-embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.attr-embed-responsive-16by9{padding-bottom:56.25%}.attr-embed-responsive-4by3{padding-bottom:75%}.attr-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)}.attr-well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15)}.attr-well-lg{padding:24px;border-radius:6px}.attr-well-sm{padding:9px;border-radius:3px}.attr-close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.attr-close:focus,.attr-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.attr-close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;border:0}.attr-modal-open{overflow:hidden}.attr-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.attr-modal.attr-fade .attr-modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out, -webkit-transform .3s ease-out;-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%)}.attr-modal.attr-in .attr-modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.attr-modal-open .attr-modal{overflow-x:hidden;overflow-y:auto}.attr-modal-dialog{position:relative;width:auto;margin:10px}.attr-modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, 0.5);box-shadow:0 3px 9px rgba(0, 0, 0, 0.5)}.attr-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.attr-modal-backdrop.attr-fade{filter:alpha(opacity=0);opacity:0}.attr-modal-backdrop.attr-in{filter:alpha(opacity=50);opacity:.5}.attr-modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.attr-modal-header .attr-close{margin-top:-2px}.attr-modal-title{margin:0;line-height:1.42857143}.attr-modal-body{position:relative;padding:15px}.attr-modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.attr-modal-footer .attr-btn+.attr-btn{margin-bottom:0;margin-left:5px}.attr-modal-footer .attr-btn-group .attr-btn+.attr-btn{margin-left:-1px}.attr-modal-footer .attr-btn-block+.attr-btn-block{margin-left:0}.attr-modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.attr-modal-dialog{width:600px;margin:30px auto}.attr-modal-content{-webkit-box-shadow:0 5px 15px rgba(0, 0, 0, 0.5);box-shadow:0 5px 15px rgba(0, 0, 0, 0.5)}.attr-modal-sm{width:300px}}@media (min-width:992px){.attr-modal-lg{width:900px}}.attr-tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:normal;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.attr-tooltip.attr-in{filter:alpha(opacity=90);opacity:.9}.attr-tooltip.attr-top{padding:5px 0;margin-top:-3px}.attr-tooltip.attr-right{padding:0 5px;margin-left:3px}.attr-tooltip.attr-bottom{padding:5px 0;margin-top:3px}.attr-tooltip.attr-left{padding:0 5px;margin-left:-3px}.attr-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.attr-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.attr-tooltip.attr-top .attr-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-left .attr-tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-right .attr-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-right .attr-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.attr-tooltip.attr-left .attr-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.attr-tooltip.attr-bottom .attr-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-left .attr-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-right .attr-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);line-break:auto}.attr-popover.attr-top{margin-top:-10px}.attr-popover.attr-right{margin-left:10px}.attr-popover.attr-bottom{margin-top:10px}.attr-popover.attr-left{margin-left:-10px}.attr-popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.attr-popover-content{padding:9px 14px}.attr-popover>.attr-arrow,.attr-popover>.attr-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.attr-popover>.attr-arrow{border-width:11px}.attr-popover>.attr-arrow:after{content:"";border-width:10px}.attr-popover.attr-top>.attr-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);border-bottom-width:0}.attr-popover.attr-top>.attr-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.attr-popover.attr-right>.attr-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);border-left-width:0}.attr-popover.attr-right>.attr-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.attr-popover.attr-bottom>.attr-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25)}.attr-popover.attr-bottom>.attr-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.attr-popover.attr-left>.attr-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25)}.attr-popover.attr-left>.attr-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.attr-carousel{position:relative}.attr-carousel-inner{position:relative;width:100%;overflow:hidden}.attr-carousel-inner>.attr-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img{line-height:1}@media (-webkit-transform-3d),(transform-3d){.attr-carousel-inner>.attr-item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out, -webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.attr-carousel-inner>.attr-item.attr-active.attr-right,.attr-carousel-inner>.attr-item.attr-next{left:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}.attr-carousel-inner>.attr-item.attr-active.attr-left,.attr-carousel-inner>.attr-item.attr-prev{left:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}.attr-carousel-inner>.attr-item.attr-active,.attr-carousel-inner>.attr-item.attr-next.attr-left,.attr-carousel-inner>.attr-item.attr-prev.attr-right{left:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}.attr-carousel-inner>.attr-active,.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{display:block}.attr-carousel-inner>.attr-active{left:0}.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{position:absolute;top:0;width:100%}.attr-carousel-inner>.attr-next{left:100%}.attr-carousel-inner>.attr-prev{left:-100%}.attr-carousel-inner>.attr-next.attr-left,.attr-carousel-inner>.attr-prev.attr-right{left:0}.attr-carousel-inner>.attr-active.attr-left{left:-100%}.attr-carousel-inner>.attr-active.attr-right{left:100%}.attr-carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0, 0, 0, 0.6);background-color:rgba(0, 0, 0, 0);filter:alpha(opacity=50);opacity:.5}.attr-carousel-control.attr-left{background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.attr-carousel-control.attr-right{right:0;left:auto;background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.attr-carousel-control:focus,.attr-carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{left:50%;margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{right:50%;margin-right:-10px}.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.attr-carousel-control .attr-icon-prev:before{content:'\2039'}.attr-carousel-control .attr-icon-next:before{content:'\203a'}.attr-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.attr-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000;background-color:rgba(0, 0, 0, 0);border:1px solid #fff;border-radius:10px}.attr-carousel-indicators .attr-active{width:12px;height:12px;margin:0;background-color:#fff}.attr-carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0, 0, 0, 0.6)}.attr-carousel-caption .attr-btn{text-shadow:none}@media screen and (min-width:768px){.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{margin-right:-10px}.attr-carousel-caption{right:20%;left:20%;padding-bottom:30px}.attr-carousel-indicators{bottom:20px}}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-group-vertical>.attr-btn-group:before,.attr-btn-toolbar:after,.attr-btn-toolbar:before,.attr-clearfix:after,.attr-clearfix:before,.attr-container-fluid:after,.attr-container-fluid:before,.attr-container:after,.attr-container:before,.attr-dl-horizontal dd:after,.attr-dl-horizontal dd:before,.attr-form-horizontal .attr-form-group:after,.attr-form-horizontal .attr-form-group:before,.attr-modal-footer:after,.attr-modal-footer:before,.attr-modal-header:after,.attr-modal-header:before,.attr-nav:after,.attr-nav:before,.attr-navbar-collapse:after,.attr-navbar-collapse:before,.attr-navbar-header:after,.attr-navbar-header:before,.attr-navbar:after,.attr-navbar:before,.attr-pager:after,.attr-pager:before,.attr-panel-body:after,.attr-panel-body:before,.attr-row:after,.attr-row:before{display:table;content:" "}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-toolbar:after,.attr-clearfix:after,.attr-container-fluid:after,.attr-container:after,.attr-dl-horizontal dd:after,.attr-form-horizontal .attr-form-group:after,.attr-modal-footer:after,.attr-modal-header:after,.attr-nav:after,.attr-navbar-collapse:after,.attr-navbar-header:after,.attr-navbar:after,.attr-pager:after,.attr-panel-body:after,.attr-row:after{clear:both}.attr-center-block{display:block;margin-right:auto;margin-left:auto}.attr-pull-right{float:right!important}.attr-pull-left{float:left!important}.attr-hide{display:none!important}.attr-show{display:block!important}.attr-invisible{visibility:hidden}.attr-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.attr-hidden{display:none!important}.attr-affix{position:fixed}@-ms-viewport{width:device-width}.attr-visible-lg,.attr-visible-md,.attr-visible-sm,.attr-visible-xs{display:none!important}.attr-visible-lg-block,.attr-visible-lg-inline,.attr-visible-lg-inline-block,.attr-visible-md-block,.attr-visible-md-inline,.attr-visible-md-inline-block,.attr-visible-sm-block,.attr-visible-sm-inline,.attr-visible-sm-inline-block,.attr-visible-xs-block,.attr-visible-xs-inline,.attr-visible-xs-inline-block{display:none!important}@media (max-width:767px){.attr-visible-xs{display:block!important}table.attr-visible-xs{display:table!important}tr.attr-visible-xs{display:table-row!important}td.attr-visible-xs,th.attr-visible-xs{display:table-cell!important}}@media (max-width:767px){.attr-visible-xs-block{display:block!important}}@media (max-width:767px){.attr-visible-xs-inline{display:inline!important}}@media (max-width:767px){.attr-visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm{display:block!important}table.attr-visible-sm{display:table!important}tr.attr-visible-sm{display:table-row!important}td.attr-visible-sm,th.attr-visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md{display:block!important}table.attr-visible-md{display:table!important}tr.attr-visible-md{display:table-row!important}td.attr-visible-md,th.attr-visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.attr-visible-lg{display:block!important}table.attr-visible-lg{display:table!important}tr.attr-visible-lg{display:table-row!important}td.attr-visible-lg,th.attr-visible-lg{display:table-cell!important}}@media (min-width:1200px){.attr-visible-lg-block{display:block!important}}@media (min-width:1200px){.attr-visible-lg-inline{display:inline!important}}@media (min-width:1200px){.attr-visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.attr-hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.attr-hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.attr-hidden-md{display:none!important}}@media (min-width:1200px){.attr-hidden-lg{display:none!important}}.attr-visible-print{display:none!important}@media print{.attr-visible-print{display:block!important}table.attr-visible-print{display:table!important}tr.attr-visible-print{display:table-row!important}td.attr-visible-print,th.attr-visible-print{display:table-cell!important}}.attr-visible-print-block{display:none!important}@media print{.attr-visible-print-block{display:block!important}}.attr-visible-print-inline{display:none!important}@media print{.attr-visible-print-inline{display:inline!important}}.attr-visible-print-inline-block{display:none!important}@media print{.attr-visible-print-inline-block{display:inline-block!important}}@media print{.attr-hidden-print{display:none!important}}.attr-nav-tabs .ekit-admin-nav-link{display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border-top:1px solid #E0E4E9;border-left:2px solid transparent;-webkit-transition:all 100ms ease-out;-o-transition:all 100ms ease-out;transition:all 100ms ease-out;background-color:#f1f1f1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease;border-radius:0px}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-title{font-size:.8125rem;font-weight:bold;color:#121116;display:block;margin-bottom:2px;line-height:1}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-subtitle{color:#72777C;font-size:.8125rem;-webkit-transition:all 150ms ease-out;-o-transition:all 150ms ease-out;transition:all 150ms ease-out}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-tab-icon{color:#72777C;font-size:1.4375rem;-webkit-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease}.attr-nav-tabs .attr-active>a,.attr-nav-tabs>li>a:focus,.attr-nav-tabs>li>a:hover{background-color:#FFFFFF;border-left-color:#f2295b}.attr-nav-tabs .attr-active>a .ekit-admin-tab-icon,.attr-nav-tabs .attr-active>a .ekit-admin-title,.attr-nav-tabs>li>a:focus .ekit-admin-tab-icon,.attr-nav-tabs>li>a:focus .ekit-admin-title,.attr-nav-tabs>li>a:hover .ekit-admin-tab-icon,.attr-nav-tabs>li>a:hover .ekit-admin-title{color:#f2295b}.ekit-admin-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:9px;border-bottom:1px solid #E0E4E9;margin-bottom:8px}.ekit-admin-header-title{font-size:1rem;font-weight:bold;color:#f2295b;margin-bottom:0}.ekit-admin-help{color:#0073aa;font-weight:bold;font-size:.75rem}.ekit-admin-help>i{padding-right:5px}.ekit-admin-input-switch{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1;-ms-flex-item-align:end;align-self:flex-end}.ekit-admin-input-switch .ekit-admin-control-input:checked~.ekit-admin-control-label .ekit-admin-control-label-switch:after{left:30px;background-color:#f2295b;color:#f2295b}.ekit-admin-input-switch .ekit-admin-control-input:checked~.ekit-admin-control-label .ekit-admin-control-label-switch:before{border-color:#f2295b;text-indent:52px}.ekit-admin-input-switch .ekit-admin-control-label{cursor:pointer;margin-bottom:0px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ekit-admin-input-switch .ekit-admin-control-label-switch{position:relative;overflow:hidden;width:52px;height:26px;display:inline-block;margin-left:10px}.ekit-admin-input-switch .ekit-admin-control-label-switch:after,.ekit-admin-input-switch .ekit-admin-control-label-switch:before{position:absolute;-webkit-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);-o-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);font-weight:700;font-size:.6875rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box}.ekit-admin-input-switch .ekit-admin-control-label-switch:before{content:attr(data-inactive);top:0;left:0;width:100%;height:100%;background-color:#FFFFFF;border:#444444 solid 1px;border-radius:26px;text-indent:24px}.ekit-admin-input-switch .ekit-admin-control-label-switch:after{position:absolute;top:4px;left:4px;display:block;content:attr(data-active);width:18px;height:18px;background-color:#444444;border-radius:100%;-webkit-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);-o-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);text-indent:-22px;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-admin-input-switch .ekit-admin-control-input{opacity:0;z-index:-1;position:absolute}.ekit-admin-section-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative;border-bottom:1px solid #E0E4E9;padding-bottom:24px;margin-bottom:48px}.ekit-admin-section-header:before{content:'';position:absolute;display:block;width:48px;height:2px;bottom:-1px;left:0;background:#f2295b}.ekit-admin-section-heaer-title{position:relative;font-size:1.625rem;font-weight:600;margin-bottom:0;line-height:1}.ekit-admin-section-heaer-title:before{content:"\f15b";font-family:"FontAwesome";display:inline-block;width:48px;height:48px;line-height:48px;margin-right:24px;background-color:#fee9ee;color:#f2295b;text-align:center;border-radius:3px;vertical-align:middle;font-size:20px}.ekit-admin-fields-container{font-size:.875rem;color:#666}.custom-control .custom-control-label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;color:#121116;font-size:.875rem}.custom-control .custom-control-input:checked~.custom-control-label:before{border-color:#19073B;background-color:#19073B;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.custom-control .custom-control-input:checked~.custom-control-label:after{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.custom-control .custom-control-input .custom-control-label:after,.custom-control .custom-control-input .custom-control-label:before{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease}.custom-control .custom-control-input .custom-control-label:after{background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.ekit-admin-fields-container-fieldset{margin-top:16px}.attr-nav-tabs{margin-top:0px}.attr-nav-tabs>li{width:100%}.attr-nav-tabs>li>a{margin-right:0px}@media (max-width:320px){:root{font-size:13px}}@media (max-width:480px){:root{font-size:14px}}@media (max-width:991px){:root{font-size:13px}.section-padding{padding:75px 0}.section-padding-medium{padding:60px 0}.section-padding-medium-bottom{padding-bottom:60px}.section-padding-medium-top{padding-top:60px}}
libs/framework/assets/css/frontend-style.css ADDED
File without changes
libs/framework/assets/images/banner_dashboard.png ADDED
Binary file
libs/framework/assets/images/elements_kit_logo_black.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1372.8 400" fill="#f2295b"><path d="M359.5 6.7c3.4-4 8.4-6.5 13.6-6.7 5.3-.2 10.4 1.9 14.1 5.7l35.9 36.9c6.7 6.9 7.1 17.7.9 25.1L330.2 179c-9.3 11-9.3 27.1-.1 38.2L427.4 334c6.2 7.4 5.6 18.5-1.3 25.3l-35.2 34.6c-3.2 3.2-9.6 6.1-14.2 6.1h-.4c-5.2-.2-10-2.6-13.4-6.5L236 239.9c-20-24.2-20-59.2-.1-83.4L359.5 6.7zm-136 383.1H15a14.98 14.98 0 0 1-15-15v-53.2a14.98 14.98 0 0 1 15-15h208.5a14.98 14.98 0 0 1 15 15v53.2c0 8.2-6.7 15-15 15zm0-296.5H15a14.98 14.98 0 0 1-15-15V25.1a14.98 14.98 0 0 1 15-15h208.5a14.98 14.98 0 0 1 15 15v53.2a14.98 14.98 0 0 1-15 15zm-82.3 148.2H15a14.98 14.98 0 0 1-15-15v-53.2a14.98 14.98 0 0 1 15-15h126.2a14.98 14.98 0 0 1 15 15v53.2a14.98 14.98 0 0 1-15 15zm432.6-137.1V75.5h-49.2l14.5 29 34.7-.1zm18.5 36.3H519l.2-104h73.3l-.2-26H487.8v155.9h104.4v-25.9zm44-130H607l-.2 155.9h29.6V10.7zm109.6 59.7c-5.2-5.2-11.3-9.3-18.3-12.4-7-3-14.4-4.6-22.3-4.6-8 0-15.5 1.5-22.6 4.6a57.39 57.39 0 0 0-18.4 12.4c-5.2 5.2-9.3 11.3-12.4 18.3-3 7-4.6 14.5-4.6 22.5 0 7.9 1.5 15.3 4.6 22.3a58.06 58.06 0 0 0 12.4 18.3c5.2 5.2 11.3 9.3 18.4 12.3 7 3 14.6 4.5 22.6 4.5 9.2 0 17.9-2.1 26.2-6.3 8.2-4.2 15-10 20.4-17.5l.4-.4-25.8-11.4-.4-.2-.2.2c-3 3.9-6.1 6.4-9.5 7.5s-7 1.7-11 1.7c-4.5 0-8.5-1-12-3-3.6-2-6.6-4.5-9.1-7.4a31.85 31.85 0 0 1-5.8-9.9c-1.3-3.6-2-7.1-2-10.5 0-4.4.7-8.5 2.2-12.3s3.5-7 6.1-9.8c2.6-2.7 5.7-4.9 9.2-6.5 3.6-1.6 7.3-2.4 11.3-2.4 6.5 0 12.2 2 17 6s8.3 9.1 10.3 15.4h-42.3l14.3 22.7h56.5l.2-.4c.9-4 1.3-8.2 1.3-12.5 0-8-1.5-15.5-4.6-22.5-2.8-7.5-6.9-13.5-12.1-18.7zm178.1-2c-3-4.5-6.9-8-11.7-10.8s-10.7-4.1-17.7-4.1c-5.8 0-11.3 1.4-16.6 4.2s-10 6.9-14.1 12.4c-.6.7-1.2 1.6-1.8 2.7-2.8-5.4-6.8-10-12-13.7s-12-5.5-20.3-5.5c-7.7 0-14.8 2.5-21.2 7.5 0 0-2.8 1.4-5.1 3v-8.7h-29.6v111.3h29.6V94.4c2.8-5.5 8-11.7 16.9-11.8 2.7 0 5.1.4 7.2 1.3 2.2.9 4 2.2 5.7 3.8 1.6 1.6 2.9 3.5 3.8 5.6s1.3 4.3 1.3 6.7v66.5H868V100c0-4.8 1.7-8.9 5.1-12.4s7.6-5.3 12.5-5.3c2.4 0 4.6.5 6.8 1.4 2.2 1 4 2.3 5.6 3.9s2.8 3.5 3.7 5.6 1.3 4.3 1.3 6.7l-.2 66.5h29.6v-66.3c0-5.6-.7-11.2-2-16.8-1.3-5.5-3.4-10.5-6.4-14.9zm118 2c-5.2-5.2-11.3-9.3-18.3-12.4-7-3-14.4-4.6-22.3-4.6-8 0-15.5 1.5-22.6 4.6a57.39 57.39 0 0 0-18.4 12.4c-5.2 5.2-9.3 11.3-12.4 18.3-3 7-4.6 14.5-4.6 22.5 0 7.9 1.5 15.3 4.6 22.3a58.06 58.06 0 0 0 12.4 18.3c5.2 5.2 11.3 9.3 18.4 12.3 7 3 14.6 4.5 22.6 4.5 9.2 0 17.9-2.1 26.2-6.3 8.2-4.2 15-10 20.4-17.5l.4-.4-25.8-11.4-.4-.2-.2.2c-3 3.9-6.1 6.4-9.5 7.5s-7 1.7-11 1.7c-4.5 0-8.5-1-12-3-3.6-2-6.6-4.5-9.1-7.4a31.85 31.85 0 0 1-5.8-9.9c-1.3-3.6-2-7.1-2-10.5 0-4.4.7-8.5 2.2-12.3s3.5-7 6.1-9.8c2.6-2.7 5.7-4.9 9.2-6.5 3.6-1.6 7.3-2.4 11.3-2.4 6.5 0 12.2 2 17 6s8.3 9.1 10.3 15.4h-42.3l14.3 22.7h56.5l.2-.4c.9-4 1.3-8.2 1.3-12.5 0-8-1.5-15.5-4.6-22.5-2.8-7.5-6.9-13.5-12.1-18.7zm28-15.2h30.3v111.3H1070V55.2zm102.9 12.9c-7.6-9.8-20.3-14.7-38.1-14.7-11.6 0-21.2 3.5-28.9 10.4l-.2.2 10.9 19.2.2.2v-.2c4.5-2.2 9.3-3.3 14.5-3.3 5.5 0 9.7.8 12.7 2.5 3 1.6 5.1 3.9 6.4 6.8s2.1 6.3 2.3 10c.2 3.8.3 7.8.3 11.9v55.4h30.3v-55.2c0-10.2-.8-18.8-2.4-25.8s-4.3-12.8-8-17.4zm69.8 69.1c-2.4-2.4-3.7-5.3-3.7-8.7v-102h-29.6v40.3h-16v24.7h16v33.4c0 5.8 1.1 11.2 3.3 16.3s5.2 9.5 9 13.3 8.2 6.8 13.4 8.9c5.1 2.1 10.6 3.2 16.4 3.2h21.6v-25.8h-21.6c-3.4-.1-6.4-1.3-8.8-3.6zm13.9-45.7h16.5V66.8h-30.3l13.8 24.7zm113.7 28.6c-1.7-3.3-4.1-6.2-7.1-8.6s-6.6-4.4-10.7-6.1-8.6-3.4-13.5-5c-.4-.2-.9-.3-1.4-.4s-1-.2-1.4-.2c-2.2-.7-4.5-1.6-6.8-2.4-2.3-.9-4.4-1.8-6.2-2.8-1.9-1-3.4-2-4.6-3.1s-1.8-2.3-1.8-3.7c0-1.8.4-3.2 1.1-4.1.7-1 1.7-1.7 2.8-2.3s2.3-1 3.7-1.1c1.3-.2 2.5-.2 3.6-.2 5.6 0 11 1 16 3s9.3 4.7 12.7 8.1l.2.2 13.6-24.7v-.4c-6.2-4.2-13.1-7.3-20.3-9.5-7.3-2.2-14.5-3.2-21.6-3.2-6.1 0-11.7.8-16.7 2.5-5.1 1.7-9.3 4.1-12.9 7.2s-6.3 6.8-8.2 11.1-2.9 9-2.9 14.2v.4c0 5.9 1.2 10.8 3.4 14.5 2.3 3.8 5.2 6.9 8.8 9.3s7.6 4.4 12 5.8c4.5 1.4 8.9 2.7 13.4 3.9a8.3 8.3 0 0 0 2.1.6 8.3 8.3 0 0 1 2.1.6c3.9 1.2 7.2 2.4 10 3.8 2.8 1.3 4.2 3.3 4.2 6 0 5.6-4.4 8.4-13.1 8.4-6.4 0-12.4-1.2-18-3.7s-10.7-6.1-15.1-10.8l-.2-.2-15.1 23.9-.2.2.2.2c7.1 5.4 14.8 9.5 22.9 12.5 8.2 2.9 16.5 4.4 24.9 4.4 13.5 0 24-3.2 31.5-9.6s11.3-15.2 11.3-26.5v-.3c-.2-4.6-1-8.5-2.7-11.9zm-850 181.6v-68.4h-32.5v155.9h32.5v-36.3l92.2-119.6h-39.9l-52.3 68.4zm22.8 48.8l29.6 38.7h39.9l-56.8-73.7-12.7 35zm81.7-117.2h29.6v26h-29.6v-26zm0 44.6h29.6v111.3h-29.6V277.9zm90 81.9c-2.5-2.4-3.7-5.3-3.7-8.7v-102h-29.6v40.3h-16v24.7h16v33.4c0 5.8 1.1 11.2 3.3 16.3s5.2 9.5 9 13.3 8.2 6.8 13.4 8.9c5.1 2.1 10.6 3.2 16.4 3.2h21.6v-25.8h-21.6c-3.4 0-6.3-1.2-8.8-3.6zm13.9-45.6h16.5v-24.7h-30.3l13.8 24.7z"/></svg>
libs/framework/assets/images/favicon.png ADDED
Binary file
libs/framework/assets/images/favicon.svg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 18 16.7" enable-background="new 0 0 18 16.7" xml:space="preserve">
5
+ <g>
6
+ <path fill="#FFFFFF" d="M15,0.3C15.1,0.1,15.3,0,15.6,0c0.2,0,0.4,0.1,0.6,0.2l1.5,1.5c0.3,0.3,0.3,0.7,0,1l-3.9,4.6
7
+ c-0.4,0.5-0.4,1.1,0,1.6l4.1,4.9c0.3,0.3,0.2,0.8,0,1.1l-1.5,1.4c-0.1,0.1-0.4,0.3-0.6,0.3h0c-0.2,0-0.4-0.1-0.6-0.3L9.8,10
8
+ C9,9,9,7.5,9.8,6.5C9.8,6.5,15,0.3,15,0.3z M9.3,16.2H0.6C0.3,16.2,0,16,0,15.6v-2.2c0-0.3,0.3-0.6,0.6-0.6h8.7
9
+ c0.3,0,0.6,0.3,0.6,0.6v2.2C9.9,16,9.7,16.2,9.3,16.2z M9.3,3.9H0.6C0.3,3.9,0,3.6,0,3.3V1c0-0.3,0.3-0.6,0.6-0.6h8.7
10
+ c0.3,0,0.6,0.3,0.6,0.6v2.2C9.9,3.6,9.7,3.9,9.3,3.9z M5.9,10.1H0.6C0.3,10.1,0,9.8,0,9.4V7.2c0-0.3,0.3-0.6,0.6-0.6h5.3
11
+ c0.3,0,0.6,0.3,0.6,0.6v2.2C6.5,9.8,6.2,10.1,5.9,10.1z"/>
12
+ </g>
13
+ </svg>
libs/framework/assets/images/go-pro-feature.png ADDED
Binary file
libs/framework/assets/images/icon.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 139"><path fill="#ffffff" d="M124.9 2.3c1.2-1.4 2.9-2.2 4.7-2.3 1.8-.1 3.6.6 4.9 2L147 14.8c2.3 2.4 2.5 6.1.3 8.7l-32.6 38.7c-3.2 3.8-3.2 9.4 0 13.3l33.8 40.6c2.1 2.6 2 6.4-.4 8.8l-12.2 12c-1.1 1.1-3.3 2.1-4.9 2.1h-.1c-1.8-.1-3.5-.9-4.7-2.3L82 83.4c-7-8.4-7-20.6 0-29l42.9-52.1zM77.7 135.4H5.2c-2.9 0-5.2-2.3-5.2-5.2v-18.5c0-2.9 2.3-5.2 5.2-5.2h72.5c2.9 0 5.2 2.3 5.2 5.2v18.5c0 2.9-2.3 5.2-5.2 5.2zM77.7 32.4H5.2c-2.9 0-5.2-2.3-5.2-5.2V8.7c0-2.9 2.3-5.2 5.2-5.2h72.5c2.9 0 5.2 2.3 5.2 5.2v18.5c0 2.9-2.3 5.2-5.2 5.2zM49.1 83.9H5.2c-2.9 0-5.2-2.3-5.2-5.2V60.2C0 57.4 2.3 55 5.2 55h43.9c2.9 0 5.2 2.3 5.2 5.2v18.5c0 2.9-2.4 5.2-5.2 5.2z"/></svg>
libs/framework/assets/images/loader-krasi.gif ADDED
Binary file
libs/framework/assets/js/admin-script.js ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function ($) {
2
+ "use strict";
3
+
4
+ function EkitAdminonHashChange() {
5
+ var hash = window.location.hash;
6
+ if (hash) {
7
+ // using ES6 template string syntax
8
+ $(`${hash}-tab`).trigger('click');
9
+ }
10
+ }
11
+ EkitAdminonHashChange();
12
+
13
+ $('#ekit-admin-settings-form').on('submit', function(e){
14
+ var form = $(this);
15
+ var btn = form.find('.ekit-admin-settings-form-submit');
16
+ var formdata = form.serialize();
17
+ form.addClass('is-loading');
18
+ btn.attr("disabled", true);
19
+
20
+ $.post( ajaxurl + '?action=ekit_admin_action', formdata, function( data ) {
21
+ form.removeClass('is-loading');
22
+ btn.removeAttr("disabled");
23
+ show_header_footer_menu();
24
+ });
25
+
26
+ e.preventDefault();
27
+ });
28
+
29
+ $('.ekit-content-type-pro ').on( 'click', function(e){
30
+ e.preventDefault();
31
+ });
32
+
33
+ // only for header footer module
34
+ function show_header_footer_menu(){
35
+ var checked = $('#ekit-admin-switch__module__list____header-footer').prop('checked');
36
+ var menu_html = $('#elementskit-template-admin-menu').html();
37
+ var menu_parent = $('#toplevel_page_elementskit .wp-submenu');
38
+ var menu_item = menu_parent.find('a[href="edit.php?post_type=elementskit_template"]');
39
+
40
+ if(checked == true){
41
+ if(menu_item.length > 0 || menu_parent.attr('item-added') == 'y'){
42
+ menu_item.parent().show();
43
+ }else{
44
+ menu_parent.find('li.wp-first-item').after(menu_html);
45
+ menu_parent.attr('item-added', 'y');
46
+ }
47
+ }else{
48
+ menu_item.parent().hide();
49
+ }
50
+ };
51
+
52
+ $('#elementskit_go_pro_modal').on('show.bs.modal', function(){
53
+ var myModal = $(this);
54
+ clearTimeout(myModal.data('hideInterval'));
55
+ myModal.data('hideInterval', setTimeout(function(){
56
+ myModal.find('.close').click();
57
+ }, 5000));
58
+ });
59
+
60
+ }); // end ready function
libs/framework/assets/js/core-ui.min.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*!
2
+ * Core Admin UI
3
+ */
4
+ if("undefined"==typeof jQuery)throw new Error("JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(t){"use strict";function e(){var t=document.createElement("attrui"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}t.fn.emulateTransitionEnd=function(e){var i=!1,o=this;t(this).one("bsTransitionEnd",function(){i=!0});var n=function(){i||t(o).trigger(t.support.transition.end)};return setTimeout(n,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var i=t(this),n=i.data("bs.attr-alert");n||i.data("bs.alert",n=new o(this)),"string"==typeof e&&n[e].call(i)})}var i='[data-dismiss="alert"]',o=function(e){t(e).on("click",i,this.close)};o.VERSION="3.3.7",o.TRANSITION_DURATION=150,o.prototype.close=function(e){function i(){a.detach().trigger("closed.bs.attr-alert").remove()}var n=t(this),s=n.attr("data-target");s||(s=n.attr("href"),s=s&&s.replace(/.*(?=#[^\s]*$)/,""));var a=t("#"===s?[]:s);e&&e.preventDefault(),a.length||(a=n.closest(".attr-alert")),a.trigger(e=t.Event("close.bs.attr-alert")),e.isDefaultPrevented()||(a.removeClass("attr-in"),t.support.transition&&a.hasClass("attr-fade")?a.one("bsTransitionEnd",i).emulateTransitionEnd(o.TRANSITION_DURATION):i())};var n=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=o,t.fn.alert.noConflict=function(){return t.fn.alert=n,this},t(document).on("click.bs.alert.data-api",i,o.prototype.close)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.button"),s="object"==typeof e&&e;n||o.data("bs.button",n=new i(this,s)),"toggle"==e?n.toggle():e&&n.setState(e)})}var i=function(e,o){this.$element=t(e),this.options=t.extend({},i.DEFAULTS,o),this.isLoading=!1};i.VERSION="3.3.7",i.DEFAULTS={loadingText:"loading..."},i.prototype.setState=function(e){var i="disabled",o=this.$element,n=o.is("input")?"val":"html",s=o.data();e+="Text",null==s.resetText&&o.data("resetText",o[n]()),setTimeout(t.proxy(function(){o[n](null==s[e]?this.options[e]:s[e]),"loadingText"==e?(this.isLoading=!0,o.addClass("attr-"+i).attr(i,i).prop(i,!0)):this.isLoading&&(this.isLoading=!1,o.removeClass("attr-"+i).removeAttr(i).prop(i,!1))},this),0)},i.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-attr-toggle="buttons"]');if(e.length){var i=this.$element.find("input");"radio"==i.prop("type")?(i.prop("checked")&&(t=!1),e.find(".attr-active").removeClass("attr-active"),this.$element.addClass("attr-active")):"checkbox"==i.prop("type")&&(i.prop("checked")!==this.$element.hasClass("attr-active")&&(t=!1),this.$element.toggleClass("attr-active")),i.prop("checked",this.$element.hasClass("attr-active")),t&&i.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("attr-active")),this.$element.toggleClass("attr-active")};var o=t.fn.button;t.fn.button=e,t.fn.button.Constructor=i,t.fn.button.noConflict=function(){return t.fn.button=o,this},t(document).on("click.bs.button.data-api",'[data-attr-toggle^="button"]',function(i){var o=t(i.target).closest(".attr-btn");e.call(o,"toggle"),t(i.target).is('input[type="radio"], input[type="checkbox"]')||(i.preventDefault(),o.is("input,button")?o.trigger("focus"):o.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-attr-toggle^="button"]',function(e){t(e.target).closest(".attr-btn").toggleClass("attr-focus",/^focus(in)?$/.test(e.type))})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.attr-carousel"),s=t.extend({},i.DEFAULTS,o.data(),"object"==typeof e&&e),a="string"==typeof e?e:s.slide;n||o.data("bs.carousel",n=new i(this,s)),"number"==typeof e?n.to(e):a?n[a]():s.interval&&n.pause().cycle()})}var i=function(e,i){this.$element=t(e),this.$indicators=this.$element.find(".attr-carousel-indicators"),this.options=i,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};i.VERSION="3.3.7",i.TRANSITION_DURATION=600,i.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},i.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},i.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},i.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".attr-item"),this.$items.index(t||this.$active)},i.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e),o="prev"==t&&0===i||"next"==t&&i==this.$items.length-1;if(o&&!this.options.wrap)return e;var n="prev"==t?-1:1,s=(i+n)%this.$items.length;return this.$items.eq(s)},i.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".attr-item.attr-active"));if(!(t>this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",this.$items.eq(t))},i.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".attr-next, .attr-prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},i.prototype.next=function(){if(!this.sliding)return this.slide("next")},i.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},i.prototype.slide=function(e,o){var n=this.$element.find(".attr-item.attr-active"),s=o||this.getItemForDirection(e,n),a=this.interval,r="next"==e?"left":"right",l=this;if(s.hasClass("attr-active"))return this.sliding=!1;var h=s[0],d=t.Event("slide.bs.carousel",{relatedTarget:h,direction:r});if(this.$element.trigger(d),!d.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".attr-active").removeClass("attr-active");var p=t(this.$indicators.children()[this.getItemIndex(s)]);p&&p.addClass("attr-active")}var c=t.Event("slid.bs.carousel",{relatedTarget:h,direction:r});return t.support.transition&&this.$element.hasClass("slide")?(s.addClass("attr-"+e),s[0].offsetWidth,n.addClass("attr-"+r),s.addClass("attr-"+r),n.one("bsTransitionEnd",function(){s.removeClass(["attr-"+e,"attr-"+r].join(" ")).addClass("attr-active"),n.removeClass(["attr-active","attr-"+r].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(c)},0)}).emulateTransitionEnd(i.TRANSITION_DURATION)):(n.removeClass("attr-active"),s.addClass("attr-active"),this.sliding=!1,this.$element.trigger(c)),a&&this.cycle(),this}};var o=t.fn.carousel;t.fn.carousel=e,t.fn.carousel.Constructor=i,t.fn.carousel.noConflict=function(){return t.fn.carousel=o,this};var n=function(i){var o,n=t(this),s=t(n.attr("data-target")||(o=n.attr("href"))&&o.replace(/.*(?=#[^\s]+$)/,""));if(s.hasClass("attr-carousel")){var a=t.extend({},s.data(),n.data()),r=n.attr("data-slide-to");r&&(a.interval=!1),e.call(s,a),r&&s.data("bs.attr-carousel").to(r),i.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",n).on("click.bs.carousel.data-api","[data-slide-to]",n),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var i=t(this);e.call(i,i.data())})})}(jQuery),+function(t){"use strict";function e(e){var i,o=e.attr("data-target")||(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,"");return t(o)}function i(e){return this.each(function(){var i=t(this),n=i.data("bs.attr-collapse"),s=t.extend({},o.DEFAULTS,i.data(),"object"==typeof e&&e);!n&&s.toggle&&/show|hide/.test(e)&&(s.toggle=!1),n||i.data("bs.collapse",n=new o(this,s)),"string"==typeof e&&n[e]()})}var o=function(e,i){this.$element=t(e),this.options=t.extend({},o.DEFAULTS,i),this.$trigger=t('[data-attr-toggle="collapse"][href="#'+e.id+'"],[data-attr-toggle="collapse"][data-target="#'+e.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};o.VERSION="3.3.7",o.TRANSITION_DURATION=350,o.DEFAULTS={toggle:!0},o.prototype.dimension=function(){var t=this.$element.hasClass("width");return t?"width":"height"},o.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("attr-in")){var e,n=this.$parent&&this.$parent.children(".attr-panel").children(".attr-in, .attr-collapsing");if(!(n&&n.length&&(e=n.data("bs.attr-collapse"),e&&e.transitioning))){var s=t.Event("show.bs.attr-collapse");if(this.$element.trigger(s),!s.isDefaultPrevented()){n&&n.length&&(i.call(n,"hide"),e||n.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("attr-collapse").addClass("attr-collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("attr-collapsed").attr("aria-expanded",!0),this.transitioning=1;var r=function(){this.$element.removeClass("attr-collapsing").addClass("attr-collapse attr-in")[a](""),this.transitioning=0,this.$element.trigger("shown.bs.attr-collapse")};if(!t.support.transition)return r.call(this);var l=t.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",t.proxy(r,this)).emulateTransitionEnd(o.TRANSITION_DURATION)[a](this.$element[0][l])}}}},o.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("attr-in")){var e=t.Event("hide.bs.attr-collapse");if(this.$element.trigger(e),!e.isDefaultPrevented()){var i=this.dimension();this.$element[i](this.$element[i]())[0].offsetHeight,this.$element.addClass("attr-collapsing").removeClass("attr-collapse attr-in").attr("aria-expanded",!1),this.$trigger.addClass("attr-collapsed").attr("aria-expanded",!1),this.transitioning=1;var n=function(){this.transitioning=0,this.$element.removeClass("attr-collapsing").addClass("attr-collapse").trigger("hidden.bs.attr-collapse")};return t.support.transition?void this.$element[i](0).one("bsTransitionEnd",t.proxy(n,this)).emulateTransitionEnd(o.TRANSITION_DURATION):n.call(this)}}},o.prototype.toggle=function(){this[this.$element.hasClass("attr-in")?"hide":"show"]()},o.prototype.getParent=function(){return t(this.options.parent).find('[data-attr-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(i,o){var n=t(o);this.addAriaAndCollapsedClass(e(n),n)},this)).end()},o.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("attr-in");t.attr("aria-expanded",i),e.toggleClass("attr-collapsed",!i).attr("aria-expanded",i)};var n=t.fn.collapse;t.fn.collapse=i,t.fn.collapse.Constructor=o,t.fn.collapse.noConflict=function(){return t.fn.collapse=n,this},t(document).on("click.bs.collapse.data-api",'[data-attr-toggle="collapse"]',function(o){var n=t(this);n.attr("data-target")||o.preventDefault();var s=e(n),a=s.data("bs.attr-collapse"),r=a?"toggle":n.data();i.call(s,r)})}(jQuery),+function(t){"use strict";function e(e){var i=e.attr("data-target");i||(i=e.attr("href"),i=i&&/#[A-Za-z]/.test(i)&&i.replace(/.*(?=#[^\s]*$)/,""));var o=i&&t(i);return o&&o.length?o:e.parent()}function i(i){i&&3===i.which||(t(n).remove(),t(s).each(function(){var o=t(this),n=e(o),s={relatedTarget:this};n.hasClass("attr-open")&&(i&&"click"==i.type&&/input|textarea/i.test(i.target.tagName)&&t.contains(n[0],i.target)||(n.trigger(i=t.Event("hide.bs.dropdown",s)),i.isDefaultPrevented()||(o.attr("aria-expanded","false"),n.removeClass("attr-open").trigger(t.Event("hidden.bs.dropdown",s)))))}))}function o(e){return this.each(function(){var i=t(this),o=i.data("bs.attr-dropdown");o||i.data("bs.dropdown",o=new a(this)),"string"==typeof e&&o[e].call(i)})}var n=".dropdown-backdrop",s='[data-attr-toggle="dropdown"]',a=function(e){t(e).on("click.bs.dropdown",this.toggle)};a.VERSION="3.3.7",a.prototype.toggle=function(o){var n=t(this);if(!n.is(".attr-disabled, :disabled")){var s=e(n),a=s.hasClass("attr-open");if(i(),!a){"ontouchstart"in document.documentElement&&!s.closest(".attr-navbar-nav").length&&t(document.createElement("div")).addClass("attr-dropdown-backdrop").insertAfter(t(this)).on("click",i);var r={relatedTarget:this};if(s.trigger(o=t.Event("show.bs.dropdown",r)),o.isDefaultPrevented())return;n.trigger("focus").attr("aria-expanded","true"),s.toggleClass("attr-open").trigger(t.Event("shown.bs.dropdown",r))}return!1}},a.prototype.keydown=function(i){if(/(38|40|27|32)/.test(i.which)&&!/input|textarea/i.test(i.target.tagName)){var o=t(this);if(i.preventDefault(),i.stopPropagation(),!o.is(".attr-disabled, :disabled")){var n=e(o),a=n.hasClass("attr-open");if(!a&&27!=i.which||a&&27==i.which)return 27==i.which&&n.find(s).trigger("focus"),o.trigger("click");var r=" li:not(.attr-disabled):visible a",l=n.find(".dropdown-menu"+r);if(l.length){var h=l.index(i.target);38==i.which&&h>0&&h--,40==i.which&&h<l.length-1&&h++,~h||(h=0),l.eq(h).trigger("focus")}}}};var r=t.fn.dropdown;t.fn.dropdown=o,t.fn.dropdown.Constructor=a,t.fn.dropdown.noConflict=function(){return t.fn.dropdown=r,this},t(document).on("click.bs.dropdown.data-api",i).on("click.bs.dropdown.data-api",".dropdown form",function(t){t.stopPropagation()}).on("click.bs.dropdown.data-api",s,a.prototype.toggle).on("keydown.bs.dropdown.data-api",s,a.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",a.prototype.keydown)}(jQuery),+function(t){"use strict";function e(e,o){return this.each(function(){var n=t(this),s=n.data("bs.attr-modal"),a=t.extend({},i.DEFAULTS,n.data(),"object"==typeof e&&e);s||n.data("bs.modal",s=new i(this,a)),"string"==typeof e?s[e](o):a.show&&s.show(o)})}var i=function(e,i){this.options=i,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".attr-modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".attr-modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.attr-modal")},this))};i.VERSION="3.3.7",i.TRANSITION_DURATION=300,i.BACKDROP_TRANSITION_DURATION=150,i.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},i.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},i.prototype.show=function(e){var o=this,n=t.Event("show.bs.modal",{relatedTarget:e});this.$element.trigger(n),this.isShown||n.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("attr-modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){o.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(o.$element)&&(o.ignoreBackdropClick=!0)})}),this.backdrop(function(){var n=t.support.transition&&o.$element.hasClass("attr-fade");o.$element.parent().length||o.$element.appendTo(o.$body),o.$element.show().scrollTop(0),o.adjustDialog(),n&&o.$element[0].offsetWidth,o.$element.addClass("attr-in"),o.enforceFocus();var s=t.Event("shown.bs.modal",{relatedTarget:e});n?o.$dialog.one("bsTransitionEnd",function(){o.$element.trigger("focus").trigger(s)}).emulateTransitionEnd(i.TRANSITION_DURATION):o.$element.trigger("focus").trigger(s)}))},i.prototype.hide=function(e){e&&e.preventDefault(),e=t.Event("hide.bs.attr-modal"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("attr-in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("attr-fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(i.TRANSITION_DURATION):this.hideModal())},i.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},i.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},i.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},i.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("attr-modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.attr-modal")})},i.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},i.prototype.backdrop=function(e){var o=this,n=this.$element.hasClass("attr-fade")?"attr-fade":"";if(this.isShown&&this.options.backdrop){var s=t.support.transition&&n;if(this.$backdrop=t(document.createElement("div")).addClass("modal-backdrop "+n).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),s&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("attr-in"),!e)return;s?this.$backdrop.one("bsTransitionEnd",e).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):e()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("attr-in");var a=function(){o.removeBackdrop(),e&&e()};t.support.transition&&this.$element.hasClass("attr-fade")?this.$backdrop.one("bsTransitionEnd",a).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):a()}else e&&e()},i.prototype.handleUpdate=function(){this.adjustDialog()},i.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},i.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},i.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth<t,this.scrollbarWidth=this.measureScrollbar()},i.prototype.setScrollbar=function(){var t=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",t+this.scrollbarWidth)},i.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},i.prototype.measureScrollbar=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",this.$body.append(t);var e=t.offsetWidth-t.clientWidth;return this.$body[0].removeChild(t),e};var o=t.fn.modal;t.fn.modal=e,t.fn.modal.Constructor=i,t.fn.modal.noConflict=function(){return t.fn.modal=o,this},t(document).on("click.bs.modal.data-api",'[data-attr-toggle="modal"]',function(i){var o=t(this),n=o.attr("href"),s=t(o.attr("data-target")||n&&n.replace(/.*(?=#[^\s]+$)/,"")),a=s.data("bs.attr-modal")?"toggle":t.extend({remote:!/#/.test(n)&&n},s.data(),o.data());o.is("a")&&i.preventDefault(),s.one("show.bs.modal",function(t){t.isDefaultPrevented()||s.one("hidden.bs.modal",function(){o.is(":visible")&&o.trigger("focus")})}),e.call(s,a,this)})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.attr-tooltip"),s="object"==typeof e&&e;!n&&/destroy|hide/.test(e)||(n||o.data("bs.tooltip",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",t,e)};i.VERSION="3.3.7",i.TRANSITION_DURATION=150,i.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="attr-tooltip" role="tooltip"><div class="attr-tooltip-arrow"></div><div class="attr-tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},i.prototype.init=function(e,i,o){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(o),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var n=this.options.trigger.split(" "),s=n.length;s--;){var a=n[s];if("click"==a)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=a){var r="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(r+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},i.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,o){i[t]!=o&&(e[t]=o)}),e},i.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusin"==e.type?"focus":"hover"]=!0),i.tip().hasClass("attr-in")||"in"==i.hoverState?void(i.hoverState="in"):(clearTimeout(i.timeout),i.hoverState="in",i.options.delay&&i.options.delay.show?void(i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)):i.show())},i.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},i.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);if(i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusout"==e.type?"focus":"hover"]=!1),!i.isInStateTrue())return clearTimeout(i.timeout),i.hoverState="out",i.options.delay&&i.options.delay.hide?void(i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)):i.hide()},i.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var o=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!o)return;var n=this,s=this.tip(),a=this.getUID(this.type);this.setContent(),s.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&s.addClass("attr-fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,s[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,h=l.test(r);h&&(r=r.replace(l,"")||"top"),s.detach().css({top:0,left:0,display:"block"}).addClass("attr-"+r).data("bs."+this.type,this),this.options.container?s.appendTo(this.options.container):s.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var d=this.getPosition(),p=s[0].offsetWidth,c=s[0].offsetHeight;if(h){var f=r,u=this.getPosition(this.$viewport);r="bottom"==r&&d.bottom+c>u.bottom?"top":"top"==r&&d.top-c<u.top?"bottom":"right"==r&&d.right+p>u.width?"left":"left"==r&&d.left-p<u.left?"right":r,s.removeClass("attr-"+f).addClass("attr-"+r)}var g=this.getCalculatedOffset(r,d,p,c);this.applyPlacement(g,r);var m=function(){var t=n.hoverState;n.$element.trigger("shown.bs."+n.type),n.hoverState=null,"out"==t&&n.leave(n)};t.support.transition&&this.$tip.hasClass("attr-fade")?s.one("bsTransitionEnd",m).emulateTransitionEnd(i.TRANSITION_DURATION):m()}},i.prototype.applyPlacement=function(e,i){var o=this.tip(),n=o[0].offsetWidth,s=o[0].offsetHeight,a=parseInt(o.css("margin-top"),10),r=parseInt(o.css("margin-left"),10);isNaN(a)&&(a=0),isNaN(r)&&(r=0),e.top+=a,e.left+=r,t.offset.setOffset(o[0],t.extend({using:function(t){o.css({top:Math.round(t.top),left:Math.round(t.left)})}},e),0),o.addClass("attr-in");var l=o[0].offsetWidth,h=o[0].offsetHeight;"top"==i&&h!=s&&(e.top=e.top+s-h);var d=this.getViewportAdjustedDelta(i,e,l,h);d.left?e.left+=d.left:e.top+=d.top;var p=/top|bottom/.test(i),c=p?2*d.left-n+l:2*d.top-s+h,f=p?"offsetWidth":"offsetHeight";o.offset(e),this.replaceArrow(c,o[0][f],p)},i.prototype.replaceArrow=function(t,e,i){this.arrow().css(i?"left":"top",50*(1-t/e)+"%").css(i?"top":"left","")},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();t.find(".attr-tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("attr-fade attr-in attr-top attr-bottom attr-left attr-right")},i.prototype.hide=function(e){function o(){"in"!=n.hoverState&&s.detach(),n.$element&&n.$element.removeAttr("aria-describedby").trigger("hidden.bs."+n.type),e&&e()}var n=this,s=t(this.$tip),a=t.Event("hide.bs."+this.type);if(this.$element.trigger(a),!a.isDefaultPrevented())return s.removeClass("attr-in"),t.support.transition&&s.hasClass("attr-fade")?s.one("bsTransitionEnd",o).emulateTransitionEnd(i.TRANSITION_DURATION):o(),this.hoverState=null,this},i.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},i.prototype.hasContent=function(){return this.getTitle()},i.prototype.getPosition=function(e){e=e||this.$element;var i=e[0],o="BODY"==i.tagName,n=i.getBoundingClientRect();null==n.width&&(n=t.extend({},n,{width:n.right-n.left,height:n.bottom-n.top}));var s=window.SVGElement&&i instanceof window.SVGElement,a=o?{top:0,left:0}:s?null:e.offset(),r={scroll:o?document.documentElement.scrollTop||document.body.scrollTop:e.scrollTop()},l=o?{width:t(window).width(),height:t(window).height()}:null;return t.extend({},n,r,l,a)},i.prototype.getCalculatedOffset=function(t,e,i,o){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-i/2}:"top"==t?{top:e.top-o,left:e.left+e.width/2-i/2}:"left"==t?{top:e.top+e.height/2-o/2,left:e.left-i}:{top:e.top+e.height/2-o/2,left:e.left+e.width}},i.prototype.getViewportAdjustedDelta=function(t,e,i,o){var n={top:0,left:0};if(!this.$viewport)return n;var s=this.options.viewport&&this.options.viewport.padding||0,a=this.getPosition(this.$viewport);if(/right|left/.test(t)){var r=e.top-s-a.scroll,l=e.top+s-a.scroll+o;r<a.top?n.top=a.top-r:l>a.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;h<a.left?n.left=a.left-h:d>a.right&&(n.left=a.left+a.width-d)}return n},i.prototype.getTitle=function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},i.prototype.getUID=function(t){do t+=~~(1e6*Math.random());while(document.getElementById(t));return t},i.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".attr-tooltip-arrow")},i.prototype.enable=function(){this.enabled=!0},i.prototype.disable=function(){this.enabled=!1},i.prototype.toggleEnabled=function(){this.enabled=!this.enabled},i.prototype.toggle=function(e){var i=this;e&&(i=t(e.currentTarget).data("bs."+this.type),i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),e?(i.inState.click=!i.inState.click,i.isInStateTrue()?i.enter(i):i.leave(i)):i.tip().hasClass("attr-in")?i.leave(i):i.enter(i)},i.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})};var o=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=i,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.attr-popover"),s="object"==typeof e&&e;!n&&/destroy|hide/.test(e)||(n||o.data("bs.popover",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.init("popover",t,e)};if(!t.fn.tooltip)throw new Error("Popover requires tooltip.js");i.VERSION="3.3.7",i.DEFAULTS=t.extend({},t.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="attr-popover" role="tooltip"><div class="attr-arrow"></div><h3 class="attr-popover-title"></h3><div class="attr-popover-content"></div></div>'}),i.prototype=t.extend({},t.fn.tooltip.Constructor.prototype),i.prototype.constructor=i,i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();t.find(".attr-popover-title")[this.options.html?"html":"text"](e),t.find(".attr-popover-content").children().detach().end()[this.options.html?"string"==typeof i?"html":"append":"text"](i),t.removeClass("attr-fade attr-top attr-bottom attr-left attr-right attr-in"),t.find(".attr-popover-title").html()||t.find(".attr-popover-title").hide()},i.prototype.hasContent=function(){return this.getTitle()||this.getContent()},i.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".attr-arrow")};var o=t.fn.popover;t.fn.popover=e,t.fn.popover.Constructor=i,t.fn.popover.noConflict=function(){return t.fn.popover=o,this}}(jQuery),+function(t){"use strict";function e(i,o){this.$body=t(document.body),this.$scrollElement=t(t(i).is(document.body)?window:i),this.options=t.extend({},e.DEFAULTS,o),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",t.proxy(this.process,this)),this.refresh(),this.process()}function i(i){return this.each(function(){var o=t(this),n=o.data("bs.scrollspy"),s="object"==typeof i&&i;n||o.data("bs.scrollspy",n=new e(this,s)),"string"==typeof i&&n[i]()})}e.VERSION="3.3.7",e.DEFAULTS={offset:10},e.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},e.prototype.refresh=function(){var e=this,i="offset",o=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),t.isWindow(this.$scrollElement[0])||(i="position",o=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){
5
+ var e=t(this),n=e.data("target")||e.attr("href"),s=/^#./.test(n)&&t(n);return s&&s.length&&s.is(":visible")&&[[s[i]().top+o,n]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]),e.targets.push(this[1])})},e.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),e>=o)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e<n[0])return this.activeTarget=null,this.clear();for(t=n.length;t--;)a!=s[t]&&e>=n[t]&&(void 0===n[t+1]||e<n[t+1])&&this.activate(s[t])},e.prototype.activate=function(e){this.activeTarget=e,this.clear();var i=this.selector+'[data-target="'+e+'"],'+this.selector+'[href="'+e+'"]',o=t(i).parents("li").addClass("attr-active");o.parent(".attr-dropdown-menu").length&&(o=o.closest("li.attr-dropdown").addClass("attr-active")),o.trigger("activate.bs.scrollspy")},e.prototype.clear=function(){t(this.selector).parentsUntil(this.options.target,".active").removeClass("attr-active")};var o=t.fn.scrollspy;t.fn.scrollspy=i,t.fn.scrollspy.Constructor=e,t.fn.scrollspy.noConflict=function(){return t.fn.scrollspy=o,this},t(window).on("load.bs.scrollspy.data-api",function(){t('[data-spy="scroll"]').each(function(){var e=t(this);i.call(e,e.data())})})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tab");n||o.data("bs.tab",n=new i(this)),"string"==typeof e&&n[e]()})}var i=function(e){this.element=t(e)};i.VERSION="3.3.7",i.TRANSITION_DURATION=150,i.prototype.show=function(){var e=this.element,i=e.closest("ul:not(.attr-dropdown-menu)"),o=e.data("target");if(o||(o=e.attr("href"),o=o&&o.replace(/.*(?=#[^\s]*$)/,"")),!e.parent("li").hasClass("attr-active")){var n=i.find(".attr-active:last a"),s=t.Event("hide.bs.tab",{relatedTarget:e[0]}),a=t.Event("show.bs.tab",{relatedTarget:n[0]});if(n.trigger(s),e.trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){var r=t(o);this.activate(e.closest("li"),i),this.activate(r,r.parent(),function(){n.trigger({type:"hidden.bs.tab",relatedTarget:e[0]}),e.trigger({type:"shown.bs.tab",relatedTarget:n[0]})})}}},i.prototype.activate=function(e,o,n){function s(){a.removeClass("attr-active").find("> .attr-dropdown-menu > .attr-active").removeClass("attr-active").end().find('[data-attr-toggle="tab"]').attr("aria-expanded",!1),e.addClass("attr-active").find('[data-attr-toggle="tab"]').attr("aria-expanded",!0),r?(e[0].offsetWidth,e.addClass("attr-in")):e.removeClass("attr-fade"),e.parent(".attr-dropdown-menu").length&&e.closest("li.attr-dropdown").addClass("attr-active").end().find('[data-attr-toggle="tab"]').attr("aria-expanded",!0),n&&n()}var a=o.find("> .attr-active"),r=n&&t.support.transition&&(a.length&&a.hasClass("attr-fade")||!!o.find("> .attr-fade").length);a.length&&r?a.one("bsTransitionEnd",s).emulateTransitionEnd(i.TRANSITION_DURATION):s(),a.removeClass("attr-in")};var o=t.fn.tab;t.fn.tab=e,t.fn.tab.Constructor=i,t.fn.tab.noConflict=function(){return t.fn.tab=o,this};var n=function(i){i.preventDefault(),e.call(t(this),"show")};t(document).on("click.bs.tab.data-api",'[data-attr-toggle="tab"]',n).on("click.bs.tab.data-api",'[data-attr-toggle="pill"]',n)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.attr-affix"),s="object"==typeof e&&e;n||o.data("bs.affix",n=new i(this,s)),"string"==typeof e&&n[e]()})}var i=function(e,o){this.options=t.extend({},i.DEFAULTS,o),this.$target=t(this.options.target).on("scroll.bs.affix.data-api",t.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",t.proxy(this.checkPositionWithEventLoop,this)),this.$element=t(e),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};i.VERSION="3.3.7",i.RESET="affix affix-top affix-bottom",i.DEFAULTS={offset:0,target:window},i.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return n<i&&"top";if("bottom"==this.affixed)return null!=i?!(n+this.unpin<=s.top)&&"bottom":!(n+a<=t-o)&&"bottom";var r=null==this.affixed,l=r?n:s.top,h=r?a:e;return null!=i&&n<=i?"top":null!=o&&l+h>=t-o&&"bottom"},i.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(i.RESET).addClass("attr-affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},i.prototype.checkPositionWithEventLoop=function(){setTimeout(t.proxy(this.checkPosition,this),1)},i.prototype.checkPosition=function(){if(this.$element.is(":visible")){var e=this.$element.height(),o=this.options.offset,n=o.top,s=o.bottom,a=Math.max(t(document).height(),t(document.body).height());"object"!=typeof o&&(s=n=o),"function"==typeof n&&(n=o.top(this.$element)),"function"==typeof s&&(s=o.bottom(this.$element));var r=this.getState(a,e,n,s);if(this.affixed!=r){null!=this.unpin&&this.$element.css("top","");var l="affix"+(r?"-"+r:""),h=t.Event(l+".bs.affix");if(this.$element.trigger(h),h.isDefaultPrevented())return;this.affixed=r,this.unpin="bottom"==r?this.getPinnedOffset():null,this.$element.removeClass(i.RESET).addClass("attr-"+l).trigger(l.replace("affix","affixed")+".bs.affix")}"bottom"==r&&this.$element.offset({top:a-e-s})}};var o=t.fn.affix;t.fn.affix=e,t.fn.affix.Constructor=i,t.fn.affix.noConflict=function(){return t.fn.affix=o,this},t(window).on("load",function(){t('[data-spy="affix"]').each(function(){var i=t(this),o=i.data();o.offset=o.offset||{},null!=o.offsetBottom&&(o.offset.bottom=o.offsetBottom),null!=o.offsetTop&&(o.offset.top=o.offsetTop),e.call(i,o)})})}(jQuery);
libs/framework/assets/js/customizer-preview.js ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery( document ).ready(function($) {
2
+ // Append the search icon list item to the main nav
3
+ wp.customize('search_menu_icon', function(control) {
4
+ control.bind(function( controlValue ) {
5
+ if( controlValue == true ) {
6
+ // If the switch is on, add the search icon
7
+ $('.nav-menu').append('<li class="menu-item menu-item-search"><a href="#" class="nav-search"><i class="fa fa-search"></i></a></li>');
8
+ }
9
+ else {
10
+ // If the switch is off, remove the search icon
11
+ $('li.menu-item-search').remove();
12
+ }
13
+ });
14
+ });
15
+
16
+ // Change the font-size of the h1
17
+ wp.customize('sample_slider_control', function(control) {
18
+ control.bind(function( controlValue ) {
19
+ $('h1').css('font-size', controlValue + 'px');
20
+ });
21
+ });
22
+ });
libs/framework/assets/js/customizer.js ADDED
@@ -0,0 +1,607 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery( document ).ready(function($) {
2
+ "use strict";
3
+
4
+ /**
5
+ * Sortable Repeater Custom Control
6
+ *
7
+ * @author Anthony Hortin <http://maddisondesigns.com>
8
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
9
+ * @link https://github.com/maddisondesigns
10
+ */
11
+
12
+ // Update the values for all our input fields and initialise the sortable repeater
13
+ $('.sortable_repeater_control').each(function() {
14
+ // If there is an existing customizer value, populate our rows
15
+ var defaultValuesArray = $(this).find('.customize-control-sortable-repeater').val().split(',');
16
+ var numRepeaterItems = defaultValuesArray.length;
17
+
18
+ if(numRepeaterItems > 0) {
19
+ // Add the first item to our existing input field
20
+ $(this).find('.repeater-input').val(defaultValuesArray[0]);
21
+ // Create a new row for each new value
22
+ if(numRepeaterItems > 1) {
23
+ var i;
24
+ for (i = 1; i < numRepeaterItems; ++i) {
25
+ skyrocketAppendRow($(this), defaultValuesArray[i]);
26
+ }
27
+ }
28
+ }
29
+ });
30
+
31
+ // Make our Repeater fields sortable
32
+ $(this).find('.sortable').sortable({
33
+ update: function(event, ui) {
34
+ skyrocketGetAllInputs($(this).parent());
35
+ }
36
+ });
37
+
38
+ // Remove item starting from it's parent element
39
+ $('.sortable').on('click', '.customize-control-sortable-repeater-delete', function(event) {
40
+ event.preventDefault();
41
+ var numItems = $(this).parent().parent().find('.repeater').length;
42
+
43
+ if(numItems > 1) {
44
+ $(this).parent().slideUp('fast', function() {
45
+ var parentContainer = $(this).parent().parent();
46
+ $(this).remove();
47
+ skyrocketGetAllInputs(parentContainer);
48
+ })
49
+ }
50
+ else {
51
+ $(this).parent().find('.repeater-input').val('');
52
+ skyrocketGetAllInputs($(this).parent().parent().parent());
53
+ }
54
+ });
55
+
56
+ // Add new item
57
+ $('.customize-control-sortable-repeater-add').click(function(event) {
58
+ event.preventDefault();
59
+ skyrocketAppendRow($(this).parent());
60
+ skyrocketGetAllInputs($(this).parent());
61
+ });
62
+
63
+ // Refresh our hidden field if any fields change
64
+ $('.sortable').change(function() {
65
+ skyrocketGetAllInputs($(this).parent());
66
+ })
67
+
68
+ // Add https:// to the start of the URL if it doesn't have it
69
+ $('.sortable').on('blur', '.repeater-input', function() {
70
+ var url = $(this);
71
+ var val = url.val();
72
+ if(val && !val.match(/^.+:\/\/.*/)) {
73
+ // Important! Make sure to trigger change event so Customizer knows it has to save the field
74
+ url.val('https://' + val).trigger('change');
75
+ }
76
+ });
77
+
78
+ // Append a new row to our list of elements
79
+ function skyrocketAppendRow($element, defaultValue = '') {
80
+ var newRow = '<div class="repeater" style="display:none"><input type="text" value="' + defaultValue + '" class="repeater-input" placeholder="https://" /><span class="dashicons dashicons-sort"></span><a class="customize-control-sortable-repeater-delete" href="#"><span class="dashicons dashicons-no-alt"></span></a></div>';
81
+
82
+ $element.find('.sortable').append(newRow);
83
+ $element.find('.sortable').find('.repeater:last').slideDown('slow', function(){
84
+ $(this).find('input').focus();
85
+ });
86
+ }
87
+
88
+ // Get the values from the repeater input fields and add to our hidden field
89
+ function skyrocketGetAllInputs($element) {
90
+ var inputValues = $element.find('.repeater-input').map(function() {
91
+ return $(this).val();
92
+ }).toArray();
93
+ // Add all the values from our repeater fields to the hidden field (which is the one that actually gets saved)
94
+ $element.find('.customize-control-sortable-repeater').val(inputValues);
95
+ // Important! Make sure to trigger change event so Customizer knows it has to save the field
96
+ $element.find('.customize-control-sortable-repeater').trigger('change');
97
+ }
98
+
99
+ /**
100
+ * Slider Custom Control
101
+ *
102
+ * @author Anthony Hortin <http://maddisondesigns.com>
103
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
104
+ * @link https://github.com/maddisondesigns
105
+ */
106
+
107
+ // Set our slider defaults and initialise the slider
108
+ $('.slider-custom-control').each(function(){
109
+ var sliderValue = $(this).find('.customize-control-slider-value').val();
110
+ var newSlider = $(this).find('.slider');
111
+ var sliderMinValue = parseFloat(newSlider.attr('slider-min-value'));
112
+ var sliderMaxValue = parseFloat(newSlider.attr('slider-max-value'));
113
+ var sliderStepValue = parseFloat(newSlider.attr('slider-step-value'));
114
+
115
+ newSlider.slider({
116
+ value: sliderValue,
117
+ min: sliderMinValue,
118
+ max: sliderMaxValue,
119
+ step: sliderStepValue,
120
+ change: function(e,ui){
121
+ // Important! When slider stops moving make sure to trigger change event so Customizer knows it has to save the field
122
+ $(this).parent().find('.customize-control-slider-value').trigger('change');
123
+ }
124
+ });
125
+ });
126
+
127
+ // Change the value of the input field as the slider is moved
128
+ $('.slider').on('slide', function(event, ui) {
129
+ $(this).parent().find('.customize-control-slider-value').val(ui.value);
130
+ });
131
+
132
+ // Reset slider and input field back to the default value
133
+ $('.slider-reset').on('click', function() {
134
+ var resetValue = $(this).attr('slider-reset-value');
135
+ $(this).parent().find('.customize-control-slider-value').val(resetValue);
136
+ $(this).parent().find('.slider').slider('value', resetValue);
137
+ });
138
+
139
+ // Update slider if the input field loses focus as it's most likely changed
140
+ $('.customize-control-slider-value').blur(function() {
141
+ var resetValue = $(this).val();
142
+ var slider = $(this).parent().find('.slider');
143
+ var sliderMinValue = parseInt(slider.attr('slider-min-value'));
144
+ var sliderMaxValue = parseInt(slider.attr('slider-max-value'));
145
+
146
+ // Make sure our manual input value doesn't exceed the minimum & maxmium values
147
+ if(resetValue < sliderMinValue) {
148
+ resetValue = sliderMinValue;
149
+ $(this).val(resetValue);
150
+ }
151
+ if(resetValue > sliderMaxValue) {
152
+ resetValue = sliderMaxValue;
153
+ $(this).val(resetValue);
154
+ }
155
+ $(this).parent().find('.slider').slider('value', resetValue);
156
+ });
157
+
158
+ /**
159
+ * Single Accordion Custom Control
160
+ *
161
+ * @author Anthony Hortin <http://maddisondesigns.com>
162
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
163
+ * @link https://github.com/maddisondesigns
164
+ */
165
+
166
+ $('.single-accordion-toggle').click(function() {
167
+ var $accordionToggle = $(this);
168
+ $(this).parent().find('.single-accordion').slideToggle('slow', function() {
169
+ $accordionToggle.toggleClass('single-accordion-toggle-rotate', $(this).is(':visible'));
170
+ });
171
+ });
172
+
173
+ /**
174
+ * Image Check Box Custom Control
175
+ *
176
+ * @author Anthony Hortin <http://maddisondesigns.com>
177
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
178
+ * @link https://github.com/maddisondesigns
179
+ */
180
+
181
+ $('.multi-image-checkbox').on('change', function () {
182
+ getAllCheckboxes($(this).parent().parent());
183
+ });
184
+
185
+ // Get the values from the checkboxes and add to our hidden field
186
+ function getAllCheckboxes($element) {
187
+ var inputValues = $element.find('.multi-image-checkbox').map(function() {
188
+ if( $(this).is(':checked') ) {
189
+ return $(this).val();
190
+ // } else {
191
+ // return '';
192
+ }
193
+ }).toArray();
194
+ // Important! Make sure to trigger change event so Customizer knows it has to save the field
195
+ $element.find('.customize-control-multi-image-checkbox').val(inputValues).trigger('change');
196
+ }
197
+
198
+ /**
199
+ * Dropdown Select2 Custom Control
200
+ *
201
+ * @author Anthony Hortin <http://maddisondesigns.com>
202
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
203
+ * @link https://github.com/maddisondesigns
204
+ */
205
+
206
+ $('.customize-control-dropdown-select2').each(function(){
207
+ $('.customize-control-select2').select2({
208
+ allowClear: true
209
+ });
210
+ });
211
+
212
+ $(".customize-control-select2").on("change", function() {
213
+ var select2Val = $(this).val();
214
+ $(this).parent().find('.customize-control-dropdown-select2').val(select2Val).trigger('change');
215
+ });
216
+
217
+ /**
218
+ * Googe Font Select Custom Control
219
+ *
220
+ * @author Anthony Hortin <http://maddisondesigns.com>
221
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
222
+ * @link https://github.com/maddisondesigns
223
+ */
224
+
225
+ $('.google-fonts-list').each(function (i, obj) {
226
+ if (!$(obj).hasClass('select2-hidden-accessible')) {
227
+ $(obj).select2();
228
+ }
229
+ });
230
+
231
+ $('.google-fonts-list').on('change', function() {
232
+ var elementRegularWeight = $(this).parent().parent().find('.google-fonts-regularweight-style');
233
+ var elementItalicWeight = $(this).parent().parent().find('.google-fonts-italicweight-style');
234
+ var elementBoldWeight = $(this).parent().parent().find('.google-fonts-boldweight-style');
235
+ var selectedFont = $(this).val();
236
+ var customizerControlName = $(this).attr('control-name');
237
+ var elementItalicWeightCount = 0;
238
+ var elementBoldWeightCount = 0;
239
+
240
+ // Clear Weight/Style dropdowns
241
+ elementRegularWeight.empty();
242
+ elementItalicWeight.empty();
243
+ elementBoldWeight.empty();
244
+ // Make sure Italic & Bold dropdowns are enabled
245
+ elementItalicWeight.prop('disabled', false);
246
+ elementBoldWeight.prop('disabled', false);
247
+
248
+ // Get the Google Fonts control object
249
+ var bodyfontcontrol = _wpCustomizeSettings.controls[customizerControlName];
250
+
251
+ // Find the index of the selected font
252
+ var indexes = $.map(bodyfontcontrol.skyrocketfontslist, function(obj, index) {
253
+ if(obj.family === selectedFont) {
254
+ return index;
255
+ }
256
+ });
257
+ var index = indexes[0];
258
+
259
+ // For the selected Google font show the available weight/style variants
260
+ $.each(bodyfontcontrol.skyrocketfontslist[index].variants, function(val, text) {
261
+ elementRegularWeight.append(
262
+ $('<option></option>').val(text).html(text)
263
+ );
264
+ if (text.indexOf("italic") >= 0) {
265
+ elementItalicWeight.append(
266
+ $('<option></option>').val(text).html(text)
267
+ );
268
+ elementItalicWeightCount++;
269
+ } else {
270
+ elementBoldWeight.append(
271
+ $('<option></option>').val(text).html(text)
272
+ );
273
+ elementBoldWeightCount++;
274
+ }
275
+ });
276
+
277
+ if(elementItalicWeightCount == 0) {
278
+ elementItalicWeight.append(
279
+ $('<option></option>').val('').html('Not Available for this font')
280
+ );
281
+ elementItalicWeight.prop('disabled', 'disabled');
282
+ }
283
+ if(elementBoldWeightCount == 0) {
284
+ elementBoldWeight.append(
285
+ $('<option></option>').val('').html('Not Available for this font')
286
+ );
287
+ elementBoldWeight.prop('disabled', 'disabled');
288
+ }
289
+
290
+ // Update the font category based on the selected font
291
+ $(this).parent().parent().find('.google-fonts-category').val(bodyfontcontrol.skyrocketfontslist[index].category);
292
+
293
+ skyrocketGetAllSelects($(this).parent().parent());
294
+ });
295
+
296
+ $('.google_fonts_select_control select').on('change', function() {
297
+ skyrocketGetAllSelects($(this).parent().parent());
298
+ });
299
+
300
+ function skyrocketGetAllSelects($element) {
301
+ var selectedFont = {
302
+ font: $element.find('.google-fonts-list').val(),
303
+ regularweight: $element.find('.google-fonts-regularweight-style').val(),
304
+ italicweight: $element.find('.google-fonts-italicweight-style').val(),
305
+ boldweight: $element.find('.google-fonts-boldweight-style').val(),
306
+ category: $element.find('.google-fonts-category').val()
307
+ };
308
+
309
+ // Important! Make sure to trigger change event so Customizer knows it has to save the field
310
+ $element.find('.customize-control-google-font-selection').val(JSON.stringify(selectedFont)).trigger('change');
311
+ }
312
+
313
+ /**
314
+ * TinyMCE Custom Control
315
+ *
316
+ * @author Anthony Hortin <http://maddisondesigns.com>
317
+ * @license http://www.gnu.org/licenses/gpl-2.0.html
318
+ * @link https://github.com/maddisondesigns
319
+ */
320
+
321
+ $('.customize-control-tinymce-editor').each(function(){
322
+ // Get the toolbar strings that were passed from the PHP Class
323
+ var tinyMCEToolbar1String = _wpCustomizeSettings.controls[$(this).attr('id')].skyrockettinymcetoolbar1;
324
+ var tinyMCEToolbar2String = _wpCustomizeSettings.controls[$(this).attr('id')].skyrockettinymcetoolbar2;
325
+ var tinyMCEMediaButtons = _wpCustomizeSettings.controls[$(this).attr('id')].skyrocketmediabuttons;
326
+
327
+ wp.editor.initialize( $(this).attr('id'), {
328
+ tinymce: {
329
+ wpautop: true,
330
+ toolbar1: tinyMCEToolbar1String,
331
+ toolbar2: tinyMCEToolbar2String
332
+ },
333
+ quicktags: true,
334
+ mediaButtons: tinyMCEMediaButtons
335
+ });
336
+ });
337
+ $(document).on( 'tinymce-editor-init', function( event, editor ) {
338
+ editor.on('change', function(e) {
339
+ tinyMCE.triggerSave();
340
+ $('#'+editor.id).trigger('change');
341
+ });
342
+ });
343
+
344
+ /**
345
+ * Alpha Color Picker Custom Control
346
+ *
347
+ * @author Braad Martin <http://braadmartin.com>
348
+ * @license http://www.gnu.org/licenses/gpl-3.0.html
349
+ * @link https://github.com/BraadMartin/components/tree/master/customizer/alpha-color-picker
350
+ */
351
+
352
+ // Loop over each control and transform it into our color picker.
353
+ $( '.alpha-color-control' ).each( function() {
354
+
355
+ // Scope the vars.
356
+ var $control, startingColor, paletteInput, showOpacity, defaultColor, palette,
357
+ colorPickerOptions, $container, $alphaSlider, alphaVal, sliderOptions;
358
+
359
+ // Store the control instance.
360
+ $control = $( this );
361
+
362
+ // Get a clean starting value for the option.
363
+ startingColor = $control.val().replace( /\s+/g, '' );
364
+
365
+ // Get some data off the control.
366
+ paletteInput = $control.attr( 'data-palette' );
367
+ showOpacity = $control.attr( 'data-show-opacity' );
368
+ defaultColor = $control.attr( 'data-default-color' );
369
+
370
+ // Process the palette.
371
+ if ( paletteInput.indexOf( '|' ) !== -1 ) {
372
+ palette = paletteInput.split( '|' );
373
+ } else if ( 'false' == paletteInput ) {
374
+ palette = false;
375
+ } else {
376
+ palette = true;
377
+ }
378
+
379
+ // Set up the options that we'll pass to wpColorPicker().
380
+ colorPickerOptions = {
381
+ change: function( event, ui ) {
382
+ var key, value, alpha, $transparency;
383
+
384
+ key = $control.attr( 'data-customize-setting-link' );
385
+ value = $control.wpColorPicker( 'color' );
386
+
387
+ // Set the opacity value on the slider handle when the default color button is clicked.
388
+ if ( defaultColor == value ) {
389
+ alpha = acp_get_alpha_value_from_color( value );
390
+ $alphaSlider.find( '.ui-slider-handle' ).text( alpha );
391
+ }
392
+
393
+ // Send ajax request to wp.customize to trigger the Save action.
394
+ wp.customize( key, function( obj ) {
395
+ obj.set( value );
396
+ });
397
+
398
+ $transparency = $container.find( '.transparency' );
399
+
400
+ // Always show the background color of the opacity slider at 100% opacity.
401
+ $transparency.css( 'background-color', ui.color.toString( 'no-alpha' ) );
402
+ },
403
+ palettes: palette // Use the passed in palette.
404
+ };
405
+
406
+ // Create the colorpicker.
407
+ $control.wpColorPicker( colorPickerOptions );
408
+
409
+ $container = $control.parents( '.wp-picker-container:first' );
410
+
411
+ // Insert our opacity slider.
412
+ $( '<div class="alpha-color-picker-container">' +
413
+ '<div class="min-click-zone click-zone"></div>' +
414
+ '<div class="max-click-zone click-zone"></div>' +
415
+ '<div class="alpha-slider"></div>' +
416
+ '<div class="transparency"></div>' +
417
+ '</div>' ).appendTo( $container.find( '.wp-picker-holder' ) );
418
+
419
+ $alphaSlider = $container.find( '.alpha-slider' );
420
+
421
+ // If starting value is in format RGBa, grab the alpha channel.
422
+ alphaVal = acp_get_alpha_value_from_color( startingColor );
423
+
424
+ // Set up jQuery UI slider() options.
425
+ sliderOptions = {
426
+ create: function( event, ui ) {
427
+ var value = $( this ).slider( 'value' );
428
+
429
+ // Set up initial values.
430
+ $( this ).find( '.ui-slider-handle' ).text( value );
431
+ $( this ).siblings( '.transparency ').css( 'background-color', startingColor );
432
+ },
433
+ value: alphaVal,
434
+ range: 'max',
435
+ step: 1,
436
+ min: 0,
437
+ max: 100,
438
+ animate: 300
439
+ };
440
+
441
+ // Initialize jQuery UI slider with our options.
442
+ $alphaSlider.slider( sliderOptions );
443
+
444
+ // Maybe show the opacity on the handle.
445
+ if ( 'true' == showOpacity ) {
446
+ $alphaSlider.find( '.ui-slider-handle' ).addClass( 'show-opacity' );
447
+ }
448
+
449
+ // Bind event handlers for the click zones.
450
+ $container.find( '.min-click-zone' ).on( 'click', function() {
451
+ acp_update_alpha_value_on_color_control( 0, $control, $alphaSlider, true );
452
+ });
453
+ $container.find( '.max-click-zone' ).on( 'click', function() {
454
+ acp_update_alpha_value_on_color_control( 100, $control, $alphaSlider, true );
455
+ });
456
+
457
+ // Bind event handler for clicking on a palette color.
458
+ $container.find( '.iris-palette' ).on( 'click', function() {
459
+ var color, alpha;
460
+
461
+ color = $( this ).css( 'background-color' );
462
+ alpha = acp_get_alpha_value_from_color( color );
463
+
464
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
465
+
466
+ // Sometimes Iris doesn't set a perfect background-color on the palette,
467
+ // for example rgba(20, 80, 100, 0.3) becomes rgba(20, 80, 100, 0.298039).
468
+ // To compensante for this we round the opacity value on RGBa colors here
469
+ // and save it a second time to the color picker object.
470
+ if ( alpha != 100 ) {
471
+ color = color.replace( /[^,]+(?=\))/, ( alpha / 100 ).toFixed( 2 ) );
472
+ }
473
+
474
+ $control.wpColorPicker( 'color', color );
475
+ });
476
+
477
+ // Bind event handler for clicking on the 'Clear' button.
478
+ $container.find( '.button.wp-picker-clear' ).on( 'click', function() {
479
+ var key = $control.attr( 'data-customize-setting-link' );
480
+
481
+ // The #fff color is delibrate here. This sets the color picker to white instead of the
482
+ // defult black, which puts the color picker in a better place to visually represent empty.
483
+ $control.wpColorPicker( 'color', '#ffffff' );
484
+
485
+ // Set the actual option value to empty string.
486
+ wp.customize( key, function( obj ) {
487
+ obj.set( '' );
488
+ });
489
+
490
+ acp_update_alpha_value_on_alpha_slider( 100, $alphaSlider );
491
+ });
492
+
493
+ // Bind event handler for clicking on the 'Default' button.
494
+ $container.find( '.button.wp-picker-default' ).on( 'click', function() {
495
+ var alpha = acp_get_alpha_value_from_color( defaultColor );
496
+
497
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
498
+ });
499
+
500
+ // Bind event handler for typing or pasting into the input.
501
+ $control.on( 'input', function() {
502
+ var value = $( this ).val();
503
+ var alpha = acp_get_alpha_value_from_color( value );
504
+
505
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
506
+ });
507
+
508
+ // Update all the things when the slider is interacted with.
509
+ $alphaSlider.slider().on( 'slide', function( event, ui ) {
510
+ var alpha = parseFloat( ui.value ) / 100.0;
511
+
512
+ acp_update_alpha_value_on_color_control( alpha, $control, $alphaSlider, false );
513
+
514
+ // Change value shown on slider handle.
515
+ $( this ).find( '.ui-slider-handle' ).text( ui.value );
516
+ });
517
+
518
+ });
519
+
520
+ /**
521
+ * Override the stock color.js toString() method to add support for outputting RGBa or Hex.
522
+ */
523
+ Color.prototype.toString = function( flag ) {
524
+
525
+ // If our no-alpha flag has been passed in, output RGBa value with 100% opacity.
526
+ // This is used to set the background color on the opacity slider during color changes.
527
+ if ( 'no-alpha' == flag ) {
528
+ return this.toCSS( 'rgba', '1' ).replace( /\s+/g, '' );
529
+ }
530
+
531
+ // If we have a proper opacity value, output RGBa.
532
+ if ( 1 > this._alpha ) {
533
+ return this.toCSS( 'rgba', this._alpha ).replace( /\s+/g, '' );
534
+ }
535
+
536
+ // Proceed with stock color.js hex output.
537
+ var hex = parseInt( this._color, 10 ).toString( 16 );
538
+ if ( this.error ) { return ''; }
539
+ if ( hex.length < 6 ) {
540
+ for ( var i = 6 - hex.length - 1; i >= 0; i-- ) {
541
+ hex = '0' + hex;
542
+ }
543
+ }
544
+
545
+ return '#' + hex;
546
+ };
547
+
548
+ /**
549
+ * Given an RGBa, RGB, or hex color value, return the alpha channel value.
550
+ */
551
+ function acp_get_alpha_value_from_color( value ) {
552
+ var alphaVal;
553
+
554
+ // Remove all spaces from the passed in value to help our RGBa regex.
555
+ value = value.replace( / /g, '' );
556
+
557
+ if ( value.match( /rgba\(\d+\,\d+\,\d+\,([^\)]+)\)/ ) ) {
558
+ alphaVal = parseFloat( value.match( /rgba\(\d+\,\d+\,\d+\,([^\)]+)\)/ )[1] ).toFixed(2) * 100;
559
+ alphaVal = parseInt( alphaVal );
560
+ } else {
561
+ alphaVal = 100;
562
+ }
563
+
564
+ return alphaVal;
565
+ }
566
+
567
+ /**
568
+ * Force update the alpha value of the color picker object and maybe the alpha slider.
569
+ */
570
+ function acp_update_alpha_value_on_color_control( alpha, $control, $alphaSlider, update_slider ) {
571
+ var iris, colorPicker, color;
572
+
573
+ iris = $control.data( 'a8cIris' );
574
+ colorPicker = $control.data( 'wpWpColorPicker' );
575
+
576
+ // Set the alpha value on the Iris object.
577
+ iris._color._alpha = alpha;
578
+
579
+ // Store the new color value.
580
+ color = iris._color.toString();
581
+
582
+ // Set the value of the input.
583
+ $control.val( color );
584
+
585
+ // Update the background color of the color picker.
586
+ colorPicker.toggler.css({
587
+ 'background-color': color
588
+ });
589
+
590
+ // Maybe update the alpha slider itself.
591
+ if ( update_slider ) {
592
+ acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider );
593
+ }
594
+
595
+ // Update the color value of the color picker object.
596
+ $control.wpColorPicker( 'color', color );
597
+ }
598
+
599
+ /**
600
+ * Update the slider handle position and label.
601
+ */
602
+ function acp_update_alpha_value_on_alpha_slider( alpha, $alphaSlider ) {
603
+ $alphaSlider.slider( 'value', alpha );
604
+ $alphaSlider.find( '.ui-slider-handle' ).text( alpha.toString() );
605
+ }
606
+
607
+ });
libs/framework/assets/js/frontend-script.js ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ jQuery(document).ready(function ($) {
2
+ "use strict";
3
+ }); // end ready function
libs/framework/attr.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Libs\Framework;
3
+ use ElementsKit\Libs\Framework\Classes\Utils;
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ class Attr{
8
+
9
+ /**
10
+ * The class instance.
11
+ *
12
+ * @since 1.0.0
13
+ * @access public
14
+ * @static
15
+ *
16
+ * @var Attr
17
+ */
18
+ public static $instance = null;
19
+ public $utils;
20
+
21
+ public static function get_dir(){
22
+ return \ElementsKit::lib_dir() . 'framework/';
23
+ }
24
+
25
+ public static function get_url(){
26
+ return \ElementsKit::lib_url() . 'framework/';
27
+ }
28
+
29
+ public static function key(){
30
+ return 'elementskit';
31
+ }
32
+
33
+ public function __construct() {
34
+ $this->utils = Classes\Utils::instance();
35
+ new Classes\Ajax;
36
+
37
+
38
+
39
+ // register admin menus
40
+ add_action('admin_menu', [$this, 'register_settings_menus']);
41
+ add_action('admin_menu', [$this, 'register_support_menu'], 999);
42
+
43
+ // register js/ css
44
+ add_action( 'admin_enqueue_scripts', [$this, 'enqueue_scripts'] );
45
+
46
+ }
47
+
48
+ public function include_files(){
49
+
50
+ }
51
+
52
+ public function enqueue_scripts(){
53
+
54
+ }
55
+
56
+ public function register_settings_menus(){
57
+ // add_menu_page( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '', string $icon_url = '', int $position = null )
58
+
59
+ // dashboard, main menu
60
+ add_menu_page(
61
+ esc_html__( 'ElementsKit Settings', 'elementskit' ),
62
+ esc_html__( 'ElementsKit', 'elementskit' ),
63
+ 'manage_options',
64
+ self::key(),
65
+ [$this, 'register_settings_contents__settings'],
66
+ self::get_url() . 'assets/images/favicon.png',
67
+ 2
68
+ );
69
+
70
+ // add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function = '' )
71
+ //add_submenu_page( self::key(), 'ElementsKit Help', 'Help', 'manage_options', self::key().'-help', [$this, 'register_settings_contents__help'], 11);
72
+ }
73
+
74
+
75
+ public function register_support_menu(){
76
+ add_submenu_page( self::key(), esc_html__( 'Support', 'elementskit' ), esc_html__( 'Support', 'elementskit' ), 'manage_options', self::key().'-support', [$this, 'register_settings_contents__support'], 11);
77
+ }
78
+
79
+
80
+ public function register_settings_contents__settings(){
81
+ include self::get_dir() . 'pages/settings-init.php';
82
+ }
83
+
84
+ public function register_settings_contents__support(){
85
+ echo esc_html__('Please wait..', 'elementskit');
86
+ echo '
87
+ <script>
88
+ window.location.href = "https://go.wpmet.com/litesupport";
89
+ </script>
90
+ ';
91
+ }
92
+
93
+
94
+ /**
95
+ * Instance.
96
+ *
97
+ * Ensures only one instance of the class is loaded or can be loaded.
98
+ *
99
+ * @since 1.0.0
100
+ * @access public
101
+ * @static
102
+ *
103
+ * @return Build_Widgets An instance of the class.
104
+ */
105
+ public static function instance() {
106
+ if ( is_null( self::$instance ) ) {
107
+
108
+ // Fire the class instance
109
+ self::$instance = new self();
110
+ }
111
+
112
+ return self::$instance;
113
+ }
114
+ }
libs/framework/classes/ajax.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Libs\Framework\Classes;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Ajax{
7
+ private $utils;
8
+
9
+ public function __construct() {
10
+ add_action( 'wp_ajax_ekit_admin_action', [$this, 'elementskit_admin_action'] );
11
+ $this->utils = Utils::instance();
12
+ }
13
+
14
+
15
+ public function elementskit_admin_action() {
16
+ if(!current_user_can('edit_theme_options')){
17
+ wp_die(esc_html__('Permission deny.', 'elementskit'));
18
+ }
19
+ $this->utils->save_sanitized('widget_list', $_POST['widget_list']);
20
+ $this->utils->save_sanitized('module_list', $_POST['module_list']);
21
+ $this->utils->save_sanitized('user_data', $_POST['user_data']);
22
+
23
+ wp_die(); // this is required to terminate immediately and return a proper response
24
+ }
25
+
26
+ }
libs/framework/classes/customizer.php ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Libs\Framework\Classes;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Customizer {
7
+ public $attrInput = [
8
+ 'content' => [
9
+ 'type' => 'array',
10
+ ]
11
+ ];
12
+
13
+ public $getSettings = [];
14
+
15
+ public function init() {
16
+ add_action( 'init', [$this, 'register_block'] );
17
+ add_action( 'admin_enqueue_scripts', [$this, 'render_react_script'] );
18
+
19
+ }
20
+
21
+ public function get_name() {
22
+ return null;
23
+ }
24
+
25
+ public function get_title() {
26
+ return null;
27
+ }
28
+
29
+ public function get_icon() {
30
+ return null;
31
+ }
32
+
33
+ public function get_cateory() {
34
+ return 'common';
35
+ }
36
+
37
+ public function scripts() {
38
+ return null;
39
+ }
40
+
41
+ protected function register_controls() {
42
+
43
+ }
44
+
45
+ public function add_control($name, $attr){
46
+ $typeStr = explode('::', $attr['type']);
47
+ unset($attr['type']);
48
+ $fields = array_merge([
49
+ 'type' => $typeStr[1],
50
+ 'label' => $attr['title'],
51
+ 'placement' => isset($attr['placement']) ? $attr['placement'] : 'inspector',
52
+ ], $attr);
53
+
54
+ $this->attrInput[$name] = [
55
+ 'type' => $typeStr[0],
56
+ 'field' => $fields,
57
+ 'default' => isset($attr['default']) ? $attr['default'] : ''
58
+ ];
59
+ }
60
+
61
+ public function render_output($attr){
62
+ $this->getSettings = $attr;
63
+ ob_start();
64
+ $this->render();
65
+ $output = ob_get_contents();
66
+ ob_end_clean();
67
+
68
+ return $output;
69
+ }
70
+ public function render(){
71
+
72
+ }
73
+
74
+ public function register_block(){
75
+ $this->register_controls();
76
+ register_block_type( $this->get_name(), [
77
+ 'title' => $this->get_title(),
78
+ 'render_callback' => [$this, 'render_output'],
79
+ 'category' => $this->get_cateory(),
80
+ 'attributes' => $this->attrInput
81
+ ]);
82
+ }
83
+
84
+
85
+ public function render_react_script(){
86
+ wp_add_inline_script( 'vinkmag-gutenwarper-handeler', '
87
+ "use strict";
88
+
89
+ var registerBlockType = wp.blocks.registerBlockType;
90
+ var ServerSideRender = wp.components.ServerSideRender;
91
+
92
+ registerBlockType("'.$this->get_name().'", {
93
+ edit: function edit(props, gutenwarper) {
94
+ console.log(gutenwarper.inspectorControls);
95
+ return [
96
+ gutenwarper.inspectorControls,
97
+
98
+ React.createElement(ServerSideRender, {
99
+ block: "'.$this->get_name().'",
100
+ attributes: props.attributes,
101
+ })
102
+ ]
103
+ },
104
+ save: function save() {
105
+ return null;
106
+ }
107
+ });
108
+ ');
109
+ }
110
+
111
+ }
112
+
113
+
114
+ class GutenWarperRegisterer{
115
+ function register($klass){
116
+ $klass->init();
117
+ }
118
+ }
libs/framework/classes/utils.php ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Libs\Framework\Classes;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Utils{
7
+
8
+ public static $instance = null;
9
+ private static $key = 'elementskit_options';
10
+
11
+ public static function get_dir(){
12
+ return \ElementsKit::lib_dir() . 'framework/';
13
+ }
14
+
15
+ public static function get_url(){
16
+ return \ElementsKit::lib_url() . 'framework/';
17
+ }
18
+
19
+ public static function sanitize($value, $senitize_func = 'sanitize_text_field'){
20
+ $senitize_func = (in_array($senitize_func, [
21
+ 'sanitize_email',
22
+ 'sanitize_file_name',
23
+ 'sanitize_hex_color',
24
+ 'sanitize_hex_color_no_hash',
25
+ 'sanitize_html_class',
26
+ 'sanitize_key',
27
+ 'sanitize_meta',
28
+ 'sanitize_mime_type',
29
+ 'sanitize_sql_orderby',
30
+ 'sanitize_option',
31
+ 'sanitize_text_field',
32
+ 'sanitize_title',
33
+ 'sanitize_title_for_query',
34
+ 'sanitize_title_with_dashes',
35
+ 'sanitize_user',
36
+ 'esc_url_raw',
37
+ 'wp_filter_nohtml_kses',
38
+ ])) ? $senitize_func : 'sanitize_text_field';
39
+
40
+ if(!is_array($value)){
41
+ return $senitize_func($value);
42
+ }else{
43
+ return array_map(function($inner_value) use ($senitize_func){
44
+ return self::sanitize($inner_value, $senitize_func);
45
+ }, $value);
46
+ }
47
+ }
48
+
49
+ public function get_option($key, $default = ''){
50
+ $data_all = get_option(self::$key);
51
+ return (isset($data_all[$key]) && $data_all[$key] != '') ? $data_all[$key] : $default;
52
+ }
53
+
54
+ public function save_sanitized($key, $value = '', $senitize_func = 'sanitize_text_field'){
55
+ $data_all = get_option(self::$key);
56
+
57
+ $value = self::sanitize($value, $senitize_func);
58
+
59
+ $data_all[$key] = $value;
60
+ update_option('elementskit_options', $data_all);
61
+ }
62
+
63
+ public function input($input_options){
64
+ $defaults = [
65
+ 'type' => null,
66
+ 'name' => '',
67
+ 'value' => '',
68
+ 'class' => '',
69
+ 'label' => '',
70
+ 'info' => '',
71
+ 'options' => [],
72
+ ];
73
+ $input_options = array_merge($defaults, $input_options);
74
+ //d($input_options);
75
+ if(file_exists(self::get_dir() . 'controls/settings/' . $input_options['type'] . '.php')){
76
+ extract($input_options);
77
+ include self::get_dir() . 'controls/settings/' . $input_options['type'] . '.php';
78
+ }
79
+ }
80
+
81
+ public static function strify($str){
82
+ return strtolower(preg_replace("/[^A-Za-z0-9]/", "__", $str));
83
+ }
84
+
85
+ public static function instance() {
86
+ if ( is_null( self::$instance ) ) {
87
+
88
+ // Fire the class instance
89
+ self::$instance = new self();
90
+ }
91
+
92
+ return self::$instance;
93
+ }
94
+ }
libs/framework/controls/settings/image-choose.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="attr-input attr-input-image-choose <?php echo esc_attr($class); ?>">
2
+ <?php
3
+ // $options['large_img'] $options['icon'] $options['small_img'] self::strify($name) $label $value
4
+ // $options['checked'] true / false
5
+ ?>
6
+ <div class="ekit-admin-input-switch ekit-admin-card-shadow attr-card-body">
7
+ <input <?php echo esc_attr($options['checked'] === true ? 'checked' : ''); ?>
8
+ type="checkbox" value="<?php echo esc_attr($value); ?>"
9
+ class="ekit-admin-control-input"
10
+ name="<?php echo esc_attr($name); ?>"
11
+ id="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>"
12
+ >
13
+
14
+ <label class="ekit-admin-control-label" for="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>">
15
+ <?php echo esc_html($label); ?>
16
+ <span class="ekit-admin-control-label-switch" data-active="ON" data-inactive="OFF"></span>
17
+ </label>
18
+ </div>
19
+
20
+ </div>
libs/framework/controls/settings/switch.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="attr-input attr-input-switch <?php echo esc_attr($class); ?>">
2
+
3
+ <div class="ekit-admin-input-switch ekit-admin-card-shadow attr-card-body" <?php
4
+ // print_r($attributes);
5
+ if(isset($attributes) && is_array($attributes)){
6
+ foreach($attributes as $k => $v){
7
+ echo $k . '="'.$v.'"';
8
+ }
9
+ }
10
+ ?>>
11
+ <input <?php echo esc_attr($options['checked'] === true ? 'checked' : ''); ?>
12
+ type="checkbox" value="<?php echo esc_attr($value); ?>"
13
+ class="ekit-admin-control-input"
14
+ name="<?php echo esc_attr($name); ?>"
15
+ id="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>"
16
+ >
17
+
18
+ <label class="ekit-admin-control-label" for="ekit-admin-switch__<?php echo esc_attr(self::strify($name) . $value); ?>">
19
+ <?php echo esc_html($label); ?>
20
+ <span class="ekit-admin-control-label-switch" data-active="ON" data-inactive="OFF"></span>
21
+ </label>
22
+ </div>
23
+
24
+ </div>
libs/framework/controls/settings/text.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="form-group ekit-admin-input-text ekit-admin-input-text-<?php echo esc_attr(self::strify($name)); ?>">
2
+ <label for="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"><?php echo esc_html($label); ?></label>
3
+ <input
4
+ type="text"
5
+ class="attr-form-control"
6
+ id="ekit-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"
7
+ aria-describedby="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>"
8
+ placeholder="<?php echo esc_attr($placeholder); ?>"
9
+ name="<?php echo esc_attr($name); ?>"
10
+ value="<?php echo esc_attr($value); ?>"
11
+ >
12
+ <small id="ekit-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" class="form-text text-muted"><?php echo esc_html($info); ?></small>
13
+ </div>
libs/framework/pages/help.php ADDED
File without changes
libs/framework/pages/settings-dashboard.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="ekit-admin-card ekit-admin-card-shadow">
2
+ <img src="<?php echo self::get_url() . 'assets/images/banner_dashboard.png'; ?>" class="ekit-admin-dashboard-banner ekit-admin-card-shadow" />
3
+
4
+
5
+ <div class="attr-card-body">
6
+ <h3 class="attr-card-title"><?php esc_html_e('Documentation', 'elementskit'); ?></h3>
7
+ <p>
8
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit. Build awesome websites for you or your clients with ease.', 'elementskit'); ?>
9
+ </p>
10
+ <a href="https://go.wpmet.com/ekitdoc" class="attr-btn attr-btn-primary" target="_blank"><?php esc_html_e('Documentation', 'elementskit'); ?></a>
11
+ </div>
12
+ </div>
libs/framework/pages/settings-elements.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $widgets_all = \ElementsKit::default_widgets('pro');
3
+ $widgets_active = $this->utils->get_option('widget_list', $widgets_all);
4
+ $widgets_free = \ElementsKit::default_widgets('free');
5
+ ?>
6
+ <div class="ekit-admin-header">
7
+ <h2 class="ekit-admin-header-title"><?php esc_html_e('Active Widget List', 'elementskit'); ?></h2>
8
+ </div>
9
+ <div class="ekit-admin-fields-container">
10
+ <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the elements you are not using on your site. That will disable all associated assets of those widgets to improve your site loading.', 'elementskit'); ?></span>
11
+ <div class="ekit-admin-fields-container-fieldset">
12
+ <div class="attr-row">
13
+ <?php foreach($widgets_all as $widget): ?>
14
+ <div class="attr-col-md-6 attr-col-lg-4">
15
+ <?php
16
+ include_once \ElementsKit::widget_dir() . $widget .'/'. $widget . '-handler.php';
17
+ $widget_handler = '\ElementsKit\Elementskit_Widget_' . \ElementsKit\Utils::make_classname($widget) . '_Handler';
18
+ $widget_handler = new $widget_handler();
19
+ $pro = (in_array($widget, $widgets_free) && \ElementsKit::PACKAGE_TYPE == 'free') ? false : true;
20
+ $this->utils->input([
21
+ 'type' => 'switch',
22
+ 'name' => 'widget_list[]',
23
+ 'label' => str_replace('Ekit ', '', $widget_handler::get_title()),
24
+ 'value' => $widget,
25
+ 'class' => (($pro == false ) ? 'ekit-content-type-free' : 'ekit-content-type-pro'),
26
+ 'attributes' => (($pro == false ) ? [] : [
27
+ 'data-attr-toggle' => 'modal',
28
+ 'data-target' => '#elementskit_go_pro_modal'
29
+ ]),
30
+ 'options' => [
31
+ 'checked' => ((in_array($widget, $widgets_active) && $pro == false) ? true : false),
32
+ ]
33
+ ]);
34
+ ?>
35
+ </div>
36
+ <?php endforeach; ?>
37
+ </div>
38
+ </div>
39
+ </div>
40
+
libs/framework/pages/settings-init.php ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $sections = [
4
+ 'dashboard' => [
5
+ 'title' => esc_html__('Dashboard', 'elementskit'),
6
+ 'sub-title' => esc_html__('General info', 'elementskit'),
7
+ 'icon' => 'icon icon-home',
8
+ ],
9
+ 'elements' => [
10
+ 'title' => esc_html__('Elements', 'elementskit'),
11
+ 'sub-title' => esc_html__('Enable disable widgets', 'elementskit'),
12
+ 'icon' => 'icon icon-magic-wand',
13
+ ],
14
+ 'modules' => [
15
+ 'title' => esc_html__('Modules', 'elementskit'),
16
+ 'sub-title' => esc_html__('Enable disable modules', 'elementskit'),
17
+ 'icon' => 'icon icon-settings-2',
18
+ ],
19
+ 'userdata' => [
20
+ 'title' => esc_html__('User Data', 'elementskit'),
21
+ 'sub-title' => esc_html__('Data for fb, mailchimp etc', 'elementskit'),
22
+ 'icon' => 'icon icon-settings1',
23
+ ],
24
+ ];
25
+
26
+
27
+ ?>
28
+ <div class="ekit-wid-con">
29
+ <div class="ekit_container">
30
+ <form action="" method="POST" id="ekit-admin-settings-form">
31
+ <div class="attr-row ekit_tab_wraper_group">
32
+ <div class="attr-col-lg-3 attr-col-md-4">
33
+ <div class="ekit_logo">
34
+ <img src="<?php echo self::get_url() . 'assets/images/elements_kit_logo_black.svg'; ?>" height="40" />
35
+ </div>
36
+ <div class="ekit-admin-nav" id="v-elementskit-tab" role="tablist" aria-orientation="vertical">
37
+ <ul class="attr-nav attr-nav-tabs">
38
+ <?php foreach($sections as $section_key => $section): reset($sections);?>
39
+ <li role="presentation" class="<?php echo ($section_key !== key($sections)) ? : 'attr-active'; ?>">
40
+ <a class="ekit-admin-nav-link" id="v-elementskit-<?php echo esc_attr($section_key); ?>-tab" data-attr-toggle="pill" href="#v-elementskit-<?php echo esc_attr($section_key); ?>" role="tab"
41
+ aria-controls="v-elementskit-<?php echo esc_attr($section_key); ?>" data-attr-toggle="tab" role="tab">
42
+ <div class="ekit-admin-tab-content">
43
+ <span class="ekit-admin-title"><?php echo esc_html($section['title']); ?></span>
44
+ <span class="ekit-admin-subtitle"><?php echo esc_html($section['sub-title']); ?></span>
45
+ </div>
46
+ <div class="ekit-admin-tab-icon">
47
+ <i class="<?php echo esc_attr($section['icon']) ?>"></i>
48
+ </div>
49
+ </a>
50
+ </li>
51
+ <?php endforeach; ?>
52
+
53
+ <li role="presentation" class="ekit-go-pro-nav-tab">
54
+ <a class="ekit-admin-nav-link" id="v-elementskit-ekit-go-pro-nav-tab" href="https://go.wpmet.com/ekitpro" role="tab" target="_blank">
55
+ <div class="ekit-admin-tab-content">
56
+ <span class="ekit-admin-title"><?php echo esc_html__('Go Pro', 'elementskit'); ?></span>
57
+ <span class="ekit-admin-subtitle"><?php echo esc_html__('Get premium features', 'elementskit'); ?></span>
58
+ </div>
59
+ <div class="ekit-admin-tab-icon">
60
+ <img src="<?php echo self::get_url() . 'assets/images/loader-krasi.gif'; ?>" class="ekit-go-pro-gif" alt="elementskit go pro" />
61
+ </div>
62
+ </a>
63
+ </li>
64
+
65
+ </ul>
66
+ </div>
67
+ </div>
68
+ <div class="attr-col-lg-9 attr-col-md-8">
69
+ <div class="attr-tab-content" id="v-elementskit-tabContent">
70
+ <?php foreach($sections as $section_key => $section): reset($sections); ?>
71
+ <div class="attr-tab-pane <?php echo ($section_key !== key($sections)) ? : 'attr-active'; ?>" id="v-elementskit-<?php echo esc_attr($section_key); ?>" role="tabpanel" aria-labelledby="v-elementskit-tab-<?php echo esc_attr($section_key); ?>">
72
+ <div class="ekit-admin-section-header">
73
+ <h2 class="ekit-admin-section-heaer-title"><i class="<?php echo esc_attr($section['icon']) ?>"></i><?php echo esc_html($section['title']); ?></h2>
74
+ <div class="ekit-admin-input-switch">
75
+ <button class="attr-btn-primary attr-btn ekit-admin-settings-form-submit"><div class="ekit-spinner"></div><?php esc_html_e('Save Changes', 'elementskit'); ?></button>
76
+ </div>
77
+ </div>
78
+ <?php include self::get_dir() . 'pages/settings-' . $section_key . '.php'; ?>
79
+ </div>
80
+ <?php endforeach; ?>
81
+ </div>
82
+ </div>
83
+ </div>
84
+ </form>
85
+ </div>
86
+ </div>
libs/framework/pages/settings-modules.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $modules_all = \ElementsKit::default_modules('pro');
3
+ $modules_active = $this->utils->get_option('module_list', $modules_all);
4
+ $modules_free = \ElementsKit::default_modules('free');
5
+ ?>
6
+
7
+ <div class="ekit-admin-header">
8
+ <h2 class="ekit-admin-header-title"><?php esc_html_e('Active Module List', 'elementskit'); ?></h2>
9
+ </div>
10
+ <div class="ekit-admin-fields-container">
11
+ <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the modules you are not using on your site. That will disable all associated assets of those modules to improve your site loading.', 'elementskit'); ?></span>
12
+ <div class="ekit-admin-fields-container-fieldset">
13
+ <div class="attr-hidden" id="elementskit-template-admin-menu">
14
+ <li><a href="edit.php?post_type=elementskit_template"><?php esc_html_e('My Templates', 'elementskit'); ?></a></li>
15
+ </div>
16
+ <div class="attr-row">
17
+ <?php foreach($modules_all as $module): ?>
18
+ <div class="attr-col-md-6 attr-col-lg-4">
19
+ <?php
20
+ $pro = (in_array($module, $modules_free) && \ElementsKit::PACKAGE_TYPE == 'free') ? false : true;
21
+ $this->utils->input([
22
+ 'type' => 'switch',
23
+ 'name' => 'module_list[]',
24
+ 'value' => $module,
25
+ 'class' => (($pro == false) ? 'ekit-content-type-free' : 'ekit-content-type-pro'),
26
+ 'label' => ucwords(str_replace('-', ' ', $module)),
27
+ 'attributes' => (($pro == false ) ? [] : [
28
+ 'data-attr-toggle' => 'modal',
29
+ 'data-target' => '#elementskit_go_pro_modal'
30
+ ]),
31
+ 'options' => [
32
+ 'checked' => ((in_array($module, $modules_active) && $pro == false) ? true : false),
33
+ ]
34
+ ]);
35
+ ?>
36
+ </div>
37
+ <?php endforeach; ?>
38
+ </div>
39
+ </div>
40
+ </div>
libs/framework/pages/settings-userdata.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if(class_exists('\ElementsKit_Widget_Config')):
3
+ include(\ElementsKit_Widget_Config::instance()->get_dir() . 'libs/framework/pages/settings-userdata.php');
4
+ else:
5
+ $user_data = $this->utils->get_option('user_data', []);
6
+
7
+ ?>
8
+ <div class="ekit-admin-fields-container">
9
+ <!-- <span class="ekit-admin-fields-container-description"><?php esc_html_e('You can disable the modules you are not using on your site. That will disable all associated assets of those modules to improve your site loading.', 'elementskit'); ?></span> -->
10
+ <div class="ekit-admin-fields-container-fieldset-- xx">
11
+ <div class="panel-group attr-accordion" id="accordion" role="tablist" aria-multiselectable="true">
12
+ <div class="attr-panel ekit_accordion_card ekit-admin-card-shadow">
13
+ <div class="attr-panel-heading" role="tab" id="mail_chimp_data_headeing">
14
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="collapse" data-parent="#accordion"
15
+ href="#mail_chimp_data_control" aria-expanded="true"
16
+ aria-controls="mail_chimp_data_control">
17
+ <?php esc_html_e('Mail Chimp Data', 'elementskit'); ?>
18
+ </a>
19
+ </div>
20
+ <div id="mail_chimp_data_control" class="attr-panel-collapse attr-collapse" role="tabpanel"
21
+ aria-labelledby="mail_chimp_data_headeing">
22
+ <div class="attr-panel-body">
23
+ <?php
24
+ $this->utils->input([
25
+ 'type' => 'text',
26
+ 'name' => 'user_data[mail_chimp][token]',
27
+ 'label' => esc_html__('Token', 'elementskit'),
28
+ 'placeholder' => '24550c8cb06076751a80274a52878-us20',
29
+ 'value' => (!isset($user_data['mail_chimp']['token'])) ? '' : ($user_data['mail_chimp']['token'])
30
+ ]);
31
+ ?>
32
+ </div>
33
+ </div>
34
+ </div>
35
+ <div class="attr-panel ekit_accordion_card ekit-admin-card-shadow">
36
+ <div class="attr-panel-heading" role="tab" id="facebook_data_headeing">
37
+ <a class="attr-btn" role="button" data-attr-toggle="modal" data-target="#elementskit_go_pro_modal" href="#facebook_control_data"
38
+ aria-expanded="false" aria-controls="facebook_control_data">
39
+ <?php esc_html_e('Facebook User Data', 'elementskit'); ?>
40
+ </a>
41
+ </div>
42
+ </div>
43
+ <div class="attr-panel ekit_accordion_card ekit-admin-card-shadow">
44
+ <div class="attr-panel-heading" role="tab" id="twetter_data_headeing">
45
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"
46
+ href="#twitter_data_control" aria-expanded="false" aria-controls="twitter_data_control">
47
+ <?php esc_html_e('Twitter User Data', 'elementskit'); ?>
48
+ </a>
49
+ </div>
50
+ </div>
51
+ <div class="attr-panel ekit_accordion_card ekit-admin-card-shadow">
52
+ <div class="attr-panel-heading" role="tab" id="instagram_data_headeing">
53
+ <a class="attr-btn attr-collapsed" role="button" data-attr-toggle="modal" data-target="#elementskit_go_pro_modal"
54
+ href="#instagram_data_control" aria-expanded="false" aria-controls="instagram_data_control">
55
+ <?php esc_html_e('Instragram User Data', 'elementskit'); ?>
56
+ </a>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+
63
+ <?php endif; ?>
libs/pro-label/init.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Libs\Pro_Label;
3
+
4
+ class Init{
5
+ use Notice;
6
+
7
+ public function __construct(){
8
+ add_action( 'current_screen', [$this, 'hook_current_screen'] );
9
+
10
+ $activation_stamp = get_option('elementskit_lite_activation_stamp');
11
+ // if(date('d', ((time() + (3600 * 24 * 10)) - $activation_stamp)) > 10){
12
+ if(date('d', (time() - $activation_stamp)) > 10){
13
+ add_action( 'admin_notices', [$this, 'show_go_pro_notice'] );
14
+ }
15
+ }
16
+
17
+ public function hook_current_screen($screen){
18
+ if(!in_array($screen->id, ['nav-menus', 'toplevel_page_elementskit', 'edit-elementskit_template'])){
19
+ return;
20
+ }
21
+
22
+ //Plugin list links
23
+ add_filter('plugin_action_links_elementskit/elementskit-lite.php', [$this, 'insert_plugin_links']);
24
+ add_filter('plugin_row_meta', [$this, 'insert_plugin_row_meta'], 10, 2);
25
+ add_action('admin_footer', [$this, 'footer_alert_box']);
26
+ }
27
+ }
libs/pro-label/notice.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Libs\Pro_Label;
3
+
4
+ trait Notice{
5
+ /**
6
+ * Extending plugin links
7
+ *
8
+ * @since 1.1.2
9
+ */
10
+ public function insert_plugin_links($links)
11
+ {
12
+ $links[] = sprintf('<a href="'.admin_url().'admin.php?page=elementskit">' . esc_html__('Settings', 'elementskit') . '</a>');
13
+ $links[] = sprintf('<a href="https://go.wpmet.com/ekitpro" target="_blank" style="color: #39b54a; font-weight: bold;">' . esc_html__('Go Pro', 'elementskit') . '</a>');
14
+
15
+ return $links;
16
+ }
17
+
18
+ /**
19
+ * Extending plugin row meta
20
+ *
21
+ * @since 1.1.2
22
+ */
23
+ public function insert_plugin_row_meta($links, $file)
24
+ {
25
+ if($file == 'elementskit/elementskit-lite.php'){
26
+ $links[] = sprintf('<a href="https://go.wpmet.com/ekitdoc" target="_blank">' . esc_html__('Documentation', 'elementskit') . '</a>');
27
+ $links[] = sprintf('<a href="https://go.wpmet.com/ekityoutube" target="_blank">' . esc_html__('Video Tutorials', 'elementskit') . '</a>');
28
+ }
29
+ return $links;
30
+ }
31
+
32
+
33
+ public function footer_alert_box(){
34
+ include 'view-modal.php';
35
+ }
36
+
37
+ public function show_go_pro_notice(){
38
+
39
+ $btn['label'] = esc_html__('Go Pro Now', 'elementskit');
40
+ $btn['url'] = 'https://go.wpmet.com/ekitpro';
41
+
42
+
43
+ ob_start();
44
+ include 'view-notice.php';
45
+ $contents = ob_get_contents();
46
+ ob_clean();
47
+
48
+
49
+ \ElementsKit\Notice::push(
50
+ [
51
+ 'id' => 'elementskit-go-pro',
52
+ 'type' => 'success',
53
+ 'dismissible' => true,
54
+ 'btn' => $btn,
55
+ 'message' => $contents
56
+ ]
57
+ );
58
+ }
59
+ }
libs/pro-label/view-modal.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="attr-modal attr-fade ekit-wid-con" id="elementskit_go_pro_modal" tabindex="-1" role="dialog"
2
+ aria-labelledby="elementskit_go_pro_modalLabel">
3
+ <div class="attr-modal-dialog attr-modal-dialog-centered ekit-go-pro-con" role="document">
4
+ <div class="attr-modal-content">
5
+ <button type="button" class="close attr-hidden" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
6
+ <div class="attr-modal-body attr-text-center">
7
+ <i class="icon icon-information"></i>
8
+ <h2>Go Pro</h2>
9
+ <p>Purchase our <a href="https://go.wpmet.com/ekitpro">pro version</a> to unlock these premium features!</p>
10
+ </div>
11
+ </div>
12
+ </div>
13
+ </div>
libs/pro-label/view-notice.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <div class="ekit-go-pro-notice">
2
+ <h2>Thank you for using ElementsKit</h2>
3
+ <p>To take full advantages of Elementskit and get the outstanding readymade layouts, please buy <strong>pro version</strong>.</p>
4
+ </div>
license.txt ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <http://www.gnu.org/philosophy/why-not-lgpl.html>.
modules/controls/ajax-select2-api.php ADDED
@@ -0,0 +1,196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Controls_Ajax_Select2_Api extends Core\Handler_Api {
7
+
8
+ public function config(){
9
+ $this->prefix = 'ajaxselect2';
10
+ }
11
+
12
+
13
+ public function get_post_list(){
14
+
15
+ if(!current_user_can('edit_posts')){
16
+ return;
17
+ }
18
+
19
+ $query_args = [
20
+ 'post_type' => 'post',
21
+ 'post_status' => 'publish',
22
+ 'posts_per_page' => 15,
23
+ ];
24
+
25
+ if(isset($this->request['ids'])){
26
+ $ids = explode(',', $this->request['ids']);
27
+ $query_args['post__in'] = $ids;
28
+ }
29
+ if(isset($this->request['s'])){
30
+ $query_args['s'] = $this->request['s'];
31
+ }
32
+
33
+ $query = new \WP_Query($query_args);
34
+ $options = [];
35
+ if($query->have_posts()):
36
+ while ($query->have_posts()) {
37
+ $query->the_post();
38
+ $options[] = [ 'id' => get_the_ID(), 'text' => get_the_title() ];
39
+ }
40
+ endif;
41
+
42
+ return ['results' => $options];
43
+ wp_reset_postdata();
44
+ }
45
+
46
+ public function get_page_list(){
47
+ if(!current_user_can('edit_posts')){
48
+ return;
49
+ }
50
+ $query_args = [
51
+ 'post_type' => 'page',
52
+ 'post_status' => 'publish',
53
+ 'posts_per_page' => 15,
54
+ ];
55
+
56
+ if(isset($this->request['ids'])){
57
+ $ids = explode(',', $this->request['ids']);
58
+ $query_args['post__in'] = $ids;
59
+ }
60
+ if(isset($this->request['s'])){
61
+ $query_args['s'] = $this->request['s'];
62
+ }
63
+
64
+ $query = new \WP_Query($query_args);
65
+ $options = [];
66
+ if($query->have_posts()):
67
+ while ($query->have_posts()) {
68
+ $query->the_post();
69
+ $options[] = [ 'id' => get_the_ID(), 'text' => get_the_title() ];
70
+ }
71
+ endif;
72
+
73
+ return ['results' => $options];
74
+ wp_reset_postdata();
75
+ }
76
+
77
+ public function get_singular_list(){
78
+ $query_args = [
79
+ 'post_status' => 'publish',
80
+ 'posts_per_page' => 15,
81
+ 'post_type' => 'any'
82
+ ];
83
+
84
+ if(isset($this->request['ids'])){
85
+ $ids = explode(',', $this->request['ids']);
86
+ $query_args['post__in'] = $ids;
87
+ }
88
+ if(isset($this->request['s'])){
89
+ $query_args['s'] = $this->request['s'];
90
+ }
91
+
92
+ $query = new \WP_Query($query_args);
93
+ $options = [];
94
+ if($query->have_posts()):
95
+ while ($query->have_posts()) {
96
+ $query->the_post();
97
+ $options[] = [ 'id' => get_the_ID(), 'text' => get_the_title() ];
98
+ }
99
+ endif;
100
+
101
+ return ['results' => $options];
102
+ wp_reset_postdata();
103
+ }
104
+
105
+ public function get_category(){
106
+
107
+ $taxonomy = 'category';
108
+ $query_args = [
109
+ 'taxonomy' => ['category'], // taxonomy name
110
+ 'orderby' => 'name',
111
+ 'order' => 'DESC',
112
+ 'hide_empty' => true,
113
+ 'number' => 6
114
+ ];
115
+
116
+ if(isset($this->request['ids'])){
117
+ $ids = explode(',', $this->request['ids']);
118
+ $query_args['include'] = $ids;
119
+ }
120
+ if(isset($this->request['s'])){
121
+ $query_args['name__like'] = $this->request['s'];
122
+ }
123
+
124
+ $terms = get_terms( $query_args );
125
+
126
+
127
+ $options = [];
128
+ $count = count($terms);
129
+ if($count > 0):
130
+ foreach ($terms as $term) {
131
+ $options[] = [ 'id' => $term->term_id, 'text' => $term->name ];
132
+ }
133
+ endif;
134
+ return ['results' => $options];
135
+ }
136
+
137
+ public function get_product_list(){
138
+ $query_args = [
139
+ 'post_type' => 'product',
140
+ 'post_status' => 'publish',
141
+ 'posts_per_page' => 15,
142
+ ];
143
+
144
+ if(isset($this->request['ids'])){
145
+ $ids = explode(',', $this->request['ids']);
146
+ $query_args['post__in'] = $ids;
147
+ }
148
+ if(isset($this->request['s'])){
149
+ $query_args['s'] = $this->request['s'];
150
+ }
151
+
152
+ $query = new \WP_Query($query_args);
153
+ $options = [];
154
+ if($query->have_posts()):
155
+ while ($query->have_posts()) {
156
+ $query->the_post();
157
+ $options[] = [ 'id' => get_the_ID(), 'text' => get_the_title() ];
158
+ }
159
+ endif;
160
+
161
+ return ['results' => $options];
162
+ wp_reset_postdata();
163
+ }
164
+
165
+ public function get_product_cat(){
166
+ $query_args = [
167
+ 'taxonomy' => ['product_cat'], // taxonomy name
168
+ 'orderby' => 'name',
169
+ 'order' => 'DESC',
170
+ 'hide_empty' => false,
171
+ 'number' => 6
172
+ ];
173
+
174
+ if(isset($this->request['ids'])){
175
+ $ids = explode(',', $this->request['ids']);
176
+ $query_args['include'] = $ids;
177
+ }
178
+ if(isset($this->request['s'])){
179
+ $query_args['name__like'] = $this->request['s'];
180
+ }
181
+
182
+ $terms = get_terms( $query_args );
183
+
184
+
185
+ $options = [];
186
+ $count = count($terms);
187
+ if($count > 0):
188
+ foreach ($terms as $term) {
189
+ $options[] = [ 'id' => $term->term_id, 'text' => $term->name ];
190
+ }
191
+ endif;
192
+ return ['results' => $options];
193
+ }
194
+
195
+ }
196
+ new Controls_Ajax_Select2_Api();
modules/controls/ajax-select2.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit\Modules\Controls;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Ajax_Select2 extends \Elementor\Base_Data_Control {
7
+
8
+ public function get_api_url(){
9
+ return get_rest_url() . 'elementskit/v1';
10
+ }
11
+
12
+ /**
13
+ * Get select2 control type.
14
+ *
15
+ * Retrieve the control type, in this case `select2`.
16
+ *
17
+ * @since 1.0.0
18
+ * @access public
19
+ *
20
+ * @return string Control type.
21
+ */
22
+ public function get_type() {
23
+ return 'ajaxselect2';
24
+ }
25
+
26
+ /**
27
+ * Enqueue ontrol scripts and styles.
28
+ *
29
+ * @since 1.0.0
30
+ * @access public
31
+ */
32
+ public function enqueue() {
33
+ // script
34
+ wp_register_script( 'elementskit-js-ajaxchoose-control', Init::get_url() . 'assets/js/ajaxchoose.js' );
35
+ wp_enqueue_script( 'elementskit-js-ajaxchoose-control' );
36
+ }
37
+
38
+ /**
39
+ * Get select2 control default settings.
40
+ *
41
+ * Retrieve the default settings of the select2 control. Used to return the
42
+ * default settings while initializing the select2 control.
43
+ *
44
+ * @since 1.8.0
45
+ * @access protected
46
+ *
47
+ * @return array Control default settings.
48
+ */
49
+ protected function get_default_settings() {
50
+ return [
51
+ 'options' => [],
52
+ 'multiple' => false,
53
+ 'select2options' => [],
54
+ ];
55
+ }
56
+
57
+
58
+ /**
59
+ * Render select2 control output in the editor.
60
+ *
61
+ * Used to generate the control HTML in the editor using Underscore JS
62
+ * template. The variables for the class are available using `data` JS
63
+ * object.
64
+ *
65
+ * @since 1.0.0
66
+ * @access public
67
+ */
68
+ public function content_template() {
69
+ $control_uid = $this->get_control_uid();
70
+ ?>
71
+ <div class="elementor-control-field">
72
+ <label for="<?php echo esc_attr($control_uid); ?>" class="elementor-control-title">{{{ data.label }}}</label>
73
+ <div class="elementor-control-input-wrapper">
74
+ <# var multiple = ( data.multiple ) ? 'multiple' : ''; #>
75
+ <select
76
+ id="<?php echo esc_attr($control_uid); ?>"
77
+ class="elementor-megamenuajaxselect2"
78
+ type="megamenuajaxselect2" {{ multiple }}
79
+ data-setting="{{ data.name }}"
80
+ data-ajax-url="<?php echo esc_attr($this->get_api_url() . '/{{data.options}}/'); ?>"
81
+ >
82
+ </select>
83
+ </div>
84
+ </div>
85
+ <# if ( data.description ) { #>
86
+ <div class="elementor-control-field-description">{{{ data.description }}}</div>
87
+ <# } #>
88
+ <?php
89
+ }
90
+ }
modules/controls/assets/css/ekiticons.css ADDED
@@ -0,0 +1,3642 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Custom selected icons fro elementskit
3
+ */
4
+ @font-face {
5
+ font-family: 'elementskit';
6
+ src: url("../fonts/elementskit.ttf?y24e1e") format("truetype"), url("../fonts/elementskit.woff?y24e1e") format("woff"), url("../fonts/elementskit.svg?y24e1e#elementskit") format("svg");
7
+ font-weight: normal;
8
+ font-style: normal;
9
+ }
10
+
11
+ .fasicon, .icon, .icon:before {
12
+ font-family: 'elementskit' !important;
13
+ speak: none;
14
+ font-style: normal;
15
+ font-weight: normal;
16
+ font-variant: normal;
17
+ text-transform: none;
18
+ line-height: 1;
19
+ /* Better Font Rendering =========== */
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ }
23
+
24
+ .icon-home:before {
25
+ content: "\e800";
26
+ }
27
+
28
+ .icon-apartment1:before {
29
+ content: "\e801";
30
+ }
31
+
32
+ .icon-pencil:before {
33
+ content: "\e802";
34
+ }
35
+
36
+ .icon-magic-wand:before {
37
+ content: "\e803";
38
+ }
39
+
40
+ .icon-drop:before {
41
+ content: "\e804";
42
+ }
43
+
44
+ .icon-lighter:before {
45
+ content: "\e805";
46
+ }
47
+
48
+ .icon-poop:before {
49
+ content: "\e806";
50
+ }
51
+
52
+ .icon-sun:before {
53
+ content: "\e807";
54
+ }
55
+
56
+ .icon-moon:before {
57
+ content: "\e808";
58
+ }
59
+
60
+ .icon-cloud1:before {
61
+ content: "\e809";
62
+ }
63
+
64
+ .icon-cloud-upload:before {
65
+ content: "\e80a";
66
+ }
67
+
68
+ .icon-cloud-download:before {
69
+ content: "\e80b";
70
+ }
71
+
72
+ .icon-cloud-sync:before {
73
+ content: "\e80c";
74
+ }
75
+
76
+ .icon-cloud-check:before {
77
+ content: "\e80d";
78
+ }
79
+
80
+ .icon-database1:before {
81
+ content: "\e80e";
82
+ }
83
+
84
+ .icon-lock:before {
85
+ content: "\e80f";
86
+ }
87
+
88
+ .icon-cog:before {
89
+ content: "\e810";
90
+ }
91
+
92
+ .icon-trash:before {
93
+ content: "\e811";
94
+ }
95
+
96
+ .icon-dice:before {
97
+ content: "\e812";
98
+ }
99
+
100
+ .icon-heart1:before {
101
+ content: "\e813";
102
+ }
103
+
104
+ .icon-star1:before {
105
+ content: "\e814";
106
+ }
107
+
108
+ .icon-star-half:before {
109
+ content: "\e815";
110
+ }
111
+
112
+ .icon-star-empty:before {
113
+ content: "\e816";
114
+ }
115
+
116
+ .icon-flag:before {
117
+ content: "\e817";
118
+ }
119
+
120
+ .icon-envelope1:before {
121
+ content: "\e818";
122
+ }
123
+
124
+ .icon-paperclip:before {
125
+ content: "\e819";
126
+ }
127
+
128
+ .icon-inbox:before {
129
+ content: "\e81a";
130
+ }
131
+
132
+ .icon-eye:before {
133
+ content: "\e81b";
134
+ }
135
+
136
+ .icon-printer:before {
137
+ content: "\e81c";
138
+ }
139
+
140
+ .icon-file-empty:before {
141
+ content: "\e81d";
142
+ }
143
+
144
+ .icon-file-add:before {
145
+ content: "\e81e";
146
+ }
147
+
148
+ .icon-enter:before {
149
+ content: "\e81f";
150
+ }
151
+
152
+ .icon-exit:before {
153
+ content: "\e820";
154
+ }
155
+
156
+ .icon-graduation-hat:before {
157
+ content: "\e821";
158
+ }
159
+
160
+ .icon-license:before {
161
+ content: "\e822";
162
+ }
163
+
164
+ .icon-music-note:before {
165
+ content: "\e823";
166
+ }
167
+
168
+ .icon-film-play:before {
169
+ content: "\e824";
170
+ }
171
+
172
+ .icon-camera-video:before {
173
+ content: "\e825";
174
+ }
175
+
176
+ .icon-camera:before {
177
+ content: "\e826";
178
+ }
179
+
180
+ .icon-picture:before {
181
+ content: "\e827";
182
+ }
183
+
184
+ .icon-book:before {
185
+ content: "\e828";
186
+ }
187
+
188
+ .icon-bookmark:before {
189
+ content: "\e829";
190
+ }
191
+
192
+ .icon-user:before {
193
+ content: "\e82a";
194
+ }
195
+
196
+ .icon-users:before {
197
+ content: "\e82b";
198
+ }
199
+
200
+ .icon-shirt:before {
201
+ content: "\e82c";
202
+ }
203
+
204
+ .icon-store:before {
205
+ content: "\e82d";
206
+ }
207
+
208
+ .icon-cart2:before {
209
+ content: "\e82e";
210
+ }
211
+
212
+ .icon-tag:before {
213
+ content: "\e82f";
214
+ }
215
+
216
+ .icon-phone-handset:before {
217
+ content: "\e830";
218
+ }
219
+
220
+ .icon-phone:before {
221
+ content: "\e831";
222
+ }
223
+
224
+ .icon-pushpin:before {
225
+ content: "\e832";
226
+ }
227
+
228
+ .icon-map-marker:before {
229
+ content: "\e833";
230
+ }
231
+
232
+ .icon-map:before {
233
+ content: "\e834";
234
+ }
235
+
236
+ .icon-location:before {
237
+ content: "\e835";
238
+ }
239
+
240
+ .icon-calendar-full:before {
241
+ content: "\e836";
242
+ }
243
+
244
+ .icon-keyboard:before {
245
+ content: "\e837";
246
+ }
247
+
248
+ .icon-spell-check:before {
249
+ content: "\e838";
250
+ }
251
+
252
+ .icon-screen:before {
253
+ content: "\e839";
254
+ }
255
+
256
+ .icon-smartphone:before {
257
+ content: "\e83a";
258
+ }
259
+
260
+ .icon-tablet:before {
261
+ content: "\e83b";
262
+ }
263
+
264
+ .icon-laptop:before {
265
+ content: "\e83c";
266
+ }
267
+
268
+ .icon-laptop-phone:before {
269
+ content: "\e83d";
270
+ }
271
+
272
+ .icon-power-switch:before {
273
+ content: "\e83e";
274
+ }
275
+
276
+ .icon-bubble:before {
277
+ content: "\e83f";
278
+ }
279
+
280
+ .icon-heart-pulse:before {
281
+ content: "\e840";
282
+ }
283
+
284
+ .icon-construction:before {
285
+ content: "\e841";
286
+ }
287
+
288
+ .icon-pie-chart:before {
289
+ content: "\e842";
290
+ }
291
+
292
+ .icon-chart-bars:before {
293
+ content: "\e843";
294
+ }
295
+
296
+ .icon-gift1:before {
297
+ content: "\e844";
298
+ }
299
+
300
+ .icon-diamond1:before {
301
+ content: "\e845";
302
+ }
303
+
304
+ .icon-dinner:before {
305
+ content: "\e847";
306
+ }
307
+
308
+ .icon-coffee-cup:before {
309
+ content: "\e848";
310
+ }
311
+
312
+ .icon-leaf:before {
313
+ content: "\e849";
314
+ }
315
+
316
+ .icon-paw:before {
317
+ content: "\e84a";
318
+ }
319
+
320
+ .icon-rocket:before {
321
+ content: "\e84b";
322
+ }
323
+
324
+ .icon-briefcase:before {
325
+ content: "\e84c";
326
+ }
327
+
328
+ .icon-bus:before {
329
+ content: "\e84d";
330
+ }
331
+
332
+ .icon-car1:before {
333
+ content: "\e84e";
334
+ }
335
+
336
+ .icon-train:before {
337
+ content: "\e84f";
338
+ }
339
+
340
+ .icon-bicycle:before {
341
+ content: "\e850";
342
+ }
343
+
344
+ .icon-wheelchair:before {
345
+ content: "\e851";
346
+ }
347
+
348
+ .icon-select:before {
349
+ content: "\e852";
350
+ }
351
+
352
+ .icon-earth:before {
353
+ content: "\e853";
354
+ }
355
+
356
+ .icon-smile:before {
357
+ content: "\e854";
358
+ }
359
+
360
+ .icon-sad:before {
361
+ content: "\e855";
362
+ }
363
+
364
+ .icon-neutral:before {
365
+ content: "\e856";
366
+ }
367
+
368
+ .icon-mustache:before {
369
+ content: "\e857";
370
+ }
371
+
372
+ .icon-alarm:before {
373
+ content: "\e858";
374
+ }
375
+
376
+ .icon-bullhorn:before {
377
+ content: "\e859";
378
+ }
379
+
380
+ .icon-volume-high:before {
381
+ content: "\e85a";
382
+ }
383
+
384
+ .icon-volume-medium:before {
385
+ content: "\e85b";
386
+ }
387
+
388
+ .icon-volume-low:before {
389
+ content: "\e85c";
390
+ }
391
+
392
+ .icon-volume:before {
393
+ content: "\e85d";
394
+ }
395
+
396
+ .icon-mic:before {
397
+ content: "\e85e";
398
+ }
399
+
400
+ .icon-hourglass:before {
401
+ content: "\e85f";
402
+ }
403
+
404
+ .icon-undo:before {
405
+ content: "\e860";
406
+ }
407
+
408
+ .icon-redo:before {
409
+ content: "\e861";
410
+ }
411
+
412
+ .icon-sync:before {
413
+ content: "\e862";
414
+ }
415
+
416
+ .icon-history:before {
417
+ content: "\e863";
418
+ }
419
+
420
+ .icon-clock1:before {
421
+ content: "\e864";
422
+ }
423
+
424
+ .icon-download:before {
425
+ content: "\e865";
426
+ }
427
+
428
+ .icon-upload:before {
429
+ content: "\e866";
430
+ }
431
+
432
+ .icon-enter-down:before {
433
+ content: "\e867";
434
+ }
435
+
436
+ .icon-exit-up:before {
437
+ content: "\e868";
438
+ }
439
+
440
+ .icon-bug:before {
441
+ content: "\e869";
442
+ }
443
+
444
+ .icon-code:before {
445
+ content: "\e86a";
446
+ }
447
+
448
+ .icon-link:before {
449
+ content: "\e86b";
450
+ }
451
+
452
+ .icon-unlink:before {
453
+ content: "\e86c";
454
+ }
455
+
456
+ .icon-thumbs-up:before {
457
+ content: "\e86d";
458
+ }
459
+
460
+ .icon-thumbs-down:before {
461
+ content: "\e86e";
462
+ }
463
+
464
+ .icon-magnifier:before {
465
+ content: "\e86f";
466
+ }
467
+
468
+ .icon-cross:before {
469
+ content: "\e870";
470
+ }
471
+
472
+ .icon-chevron-up:before {
473
+ content: "\e873";
474
+ }
475
+
476
+ .icon-chevron-down:before {
477
+ content: "\e874";
478
+ }
479
+
480
+ .icon-chevron-left:before {
481
+ content: "\e875";
482
+ }
483
+
484
+ .icon-chevron-right:before {
485
+ content: "\e876";
486
+ }
487
+
488
+ .icon-arrow-up:before {
489
+ content: "\e877";
490
+ }
491
+
492
+ .icon-arrow-down:before {
493
+ content: "\e878";
494
+ }
495
+
496
+ .icon-arrow-left:before {
497
+ content: "\e879";
498
+ }
499
+
500
+ .icon-arrow-right:before {
501
+ content: "\e87a";
502
+ }
503
+
504
+ .icon-right-arrow:before {
505
+ content: "\e9c5";
506
+ }
507
+
508
+ .icon-left-arrow:before {
509
+ content: "\e94a";
510
+ }
511
+
512
+ .icon-download-arrow:before {
513
+ content: "\e94b";
514
+ }
515
+
516
+ .icon-up-arrow:before {
517
+ content: "\e9c3";
518
+ }
519
+
520
+ .icon-arrows:before {
521
+ content: "\e9c4";
522
+ }
523
+
524
+ .icon-double-angle-pointing-to-right:before {
525
+ content: "\e949";
526
+ }
527
+
528
+ .icon-double-left-chevron:before {
529
+ content: "\e948";
530
+ }
531
+
532
+ .icon-left-arrow2:before {
533
+ content: "\e94c";
534
+ }
535
+
536
+ .icon-right-arrow2:before {
537
+ content: "\e94d";
538
+ }
539
+
540
+ .icon-warning:before {
541
+ content: "\e87c";
542
+ }
543
+
544
+ .icon-down-arrow1:before {
545
+ content: "\e994";
546
+ }
547
+
548
+ .icon-up-arrow1:before {
549
+ content: "\e995";
550
+ }
551
+
552
+ .icon-right-arrow1:before {
553
+ content: "\e996";
554
+ }
555
+
556
+ .icon-left-arrows:before {
557
+ content: "\e997";
558
+ }
559
+
560
+ .icon-question-circle:before {
561
+ content: "\e87d";
562
+ }
563
+
564
+ .icon-menu-circle:before {
565
+ content: "\e87e";
566
+ }
567
+
568
+ .icon-checkmark-circle:before {
569
+ content: "\e87f";
570
+ }
571
+
572
+ .icon-cross-circle:before {
573
+ content: "\e880";
574
+ }
575
+
576
+ .icon-plus-circle:before {
577
+ content: "\e881";
578
+ }
579
+
580
+ .icon-move:before {
581
+ content: "\e87b";
582
+ }
583
+
584
+ .icon-circle-minus:before {
585
+ content: "\e882";
586
+ }
587
+
588
+ .icon-arrow-up-circle:before {
589
+ content: "\e883";
590
+ }
591
+
592
+ .icon-arrow-down-circle:before {
593
+ content: "\e884";
594
+ }
595
+
596
+ .icon-arrow-left-circle:before {
597
+ content: "\e885";
598
+ }
599
+
600
+ .icon-arrow-right-circle:before {
601
+ content: "\e886";
602
+ }
603
+
604
+ .icon-chevron-up-circle:before {
605
+ content: "\e887";
606
+ }
607
+
608
+ .icon-chevron-down-circle:before {
609
+ content: "\e888";
610
+ }
611
+
612
+ .icon-chevron-left-circle:before {
613
+ content: "\e889";
614
+ }
615
+
616
+ .icon-chevron-right-circle:before {
617
+ content: "\e88a";
618
+ }
619
+
620
+ .icon-crop:before {
621
+ content: "\e88b";
622
+ }
623
+
624
+ .icon-frame-expand:before {
625
+ content: "\e88c";
626
+ }
627
+
628
+ .icon-frame-contract:before {
629
+ content: "\e88d";
630
+ }
631
+
632
+ .icon-layers:before {
633
+ content: "\e88e";
634
+ }
635
+
636
+ .icon-funnel:before {
637
+ content: "\e88f";
638
+ }
639
+
640
+ .icon-text-format:before {
641
+ content: "\e890";
642
+ }
643
+
644
+ .icon-text-size:before {
645
+ content: "\e892";
646
+ }
647
+
648
+ .icon-bold:before {
649
+ content: "\e893";
650
+ }
651
+
652
+ .icon-italic:before {
653
+ content: "\e894";
654
+ }
655
+
656
+ .icon-underline:before {
657
+ content: "\e895";
658
+ }
659
+
660
+ .icon-strikethrough:before {
661
+ content: "\e896";
662
+ }
663
+
664
+ .icon-highlight:before {
665
+ content: "\e897";
666
+ }
667
+
668
+ .icon-text-align-left:before {
669
+ content: "\e898";
670
+ }
671
+
672
+ .icon-text-align-center:before {
673
+ content: "\e899";
674
+ }
675
+
676
+ .icon-text-align-right:before {
677
+ content: "\e89a";
678
+ }
679
+
680
+ .icon-text-align-justify:before {
681
+ content: "\e89b";
682
+ }
683
+
684
+ .icon-line-spacing:before {
685
+ content: "\e89c";
686
+ }
687
+
688
+ .icon-indent-increase:before {
689
+ content: "\e89d";
690
+ }
691
+
692
+ .icon-indent-decrease:before {
693
+ content: "\e89e";
694
+ }
695
+
696
+ .icon-page-break:before {
697
+ content: "\e8a2";
698
+ }
699
+
700
+ .icon-hand:before {
701
+ content: "\e8a5";
702
+ }
703
+
704
+ .icon-pointer-up:before {
705
+ content: "\e8a6";
706
+ }
707
+
708
+ .icon-pointer-right:before {
709
+ content: "\e8a7";
710
+ }
711
+
712
+ .icon-pointer-down:before {
713
+ content: "\e8a8";
714
+ }
715
+
716
+ .icon-pointer-left:before {
717
+ content: "\e8a9";
718
+ }
719
+
720
+ .icon-burger:before {
721
+ content: "\e94e";
722
+ }
723
+
724
+ .icon-cakes:before {
725
+ content: "\e94f";
726
+ }
727
+
728
+ .icon-cheese:before {
729
+ content: "\e950";
730
+ }
731
+
732
+ .icon-drink-glass:before {
733
+ content: "\e951";
734
+ }
735
+
736
+ .icon-pizza:before {
737
+ content: "\e952";
738
+ }
739
+
740
+ .icon-vplay:before {
741
+ content: "\e953";
742
+ }
743
+
744
+ .icon-newsletter:before {
745
+ content: "\e954";
746
+ }
747
+
748
+ .icon-coins-2:before {
749
+ content: "\e955";
750
+ }
751
+
752
+ .icon-commerce-2:before {
753
+ content: "\e956";
754
+ }
755
+
756
+ .icon-monitor:before {
757
+ content: "\e957";
758
+ }
759
+
760
+ .icon-business:before {
761
+ content: "\e958";
762
+ }
763
+
764
+ .icon-graphic-2:before {
765
+ content: "\e959";
766
+ }
767
+
768
+ .icon-commerce-1:before {
769
+ content: "\e95a";
770
+ }
771
+
772
+ .icon-hammer:before {
773
+ content: "\e95b";
774
+ }
775
+
776
+ .icon-justice-1:before {
777
+ content: "\e95c";
778
+ }
779
+
780
+ .icon-line:before {
781
+ content: "\e95d";
782
+ }
783
+
784
+ .icon-money-3:before {
785
+ content: "\e95e";
786
+ }
787
+
788
+ .icon-commerce:before {
789
+ content: "\e95f";
790
+ }
791
+
792
+ .icon-agenda:before {
793
+ content: "\e960";
794
+ }
795
+
796
+ .icon-justice:before {
797
+ content: "\e961";
798
+ }
799
+
800
+ .icon-technology:before {
801
+ content: "\e962";
802
+ }
803
+
804
+ .icon-coins-1:before {
805
+ content: "\e963";
806
+ }
807
+
808
+ .icon-bank:before {
809
+ content: "\e964";
810
+ }
811
+
812
+ .icon-calculator:before {
813
+ content: "\e965";
814
+ }
815
+
816
+ .icon-soundcloud:before {
817
+ content: "\e966";
818
+ }
819
+
820
+ .icon-chart2:before {
821
+ content: "\e967";
822
+ }
823
+
824
+ .icon-checked:before {
825
+ content: "\e968";
826
+ }
827
+
828
+ .icon-clock11:before {
829
+ content: "\e969";
830
+ }
831
+
832
+ .icon-comment2:before {
833
+ content: "\e96a";
834
+ }
835
+
836
+ .icon-comments:before {
837
+ content: "\e96b";
838
+ }
839
+
840
+ .icon-consult:before {
841
+ content: "\e96c";
842
+ }
843
+
844
+ .icon-consut2:before {
845
+ content: "\e96d";
846
+ }
847
+
848
+ .icon-deal:before {
849
+ content: "\e96e";
850
+ }
851
+
852
+ .icon-envelope11:before {
853
+ content: "\e96f";
854
+ }
855
+
856
+ .icon-folder:before {
857
+ content: "\e970";
858
+ }
859
+
860
+ .icon-folder2:before {
861
+ content: "\ea6a";
862
+ }
863
+
864
+ .icon-invest:before {
865
+ content: "\e971";
866
+ }
867
+
868
+ .icon-loan:before {
869
+ content: "\e972";
870
+ }
871
+
872
+ .icon-menu1:before {
873
+ content: "\e871";
874
+ }
875
+
876
+ .icon-list1:before {
877
+ content: "\e872";
878
+ }
879
+
880
+ .icon-map-marker1:before {
881
+ content: "\e973";
882
+ }
883
+
884
+ .icon-mutual-fund:before {
885
+ content: "\e974";
886
+ }
887
+
888
+ .icon-google-plus:before {
889
+ content: "\e975";
890
+ }
891
+
892
+ .icon-phone1:before {
893
+ content: "\e976";
894
+ }
895
+
896
+ .icon-pie-chart1:before {
897
+ content: "\e977";
898
+ }
899
+
900
+ .icon-play:before {
901
+ content: "\e978";
902
+ }
903
+
904
+ .icon-savings:before {
905
+ content: "\e979";
906
+ }
907
+
908
+ .icon-search2:before {
909
+ content: "\e97a";
910
+ }
911
+
912
+ .icon-tag1:before {
913
+ content: "\e97b";
914
+ }
915
+
916
+ .icon-tags:before {
917
+ content: "\e97c";
918
+ }
919
+
920
+ .icon-instagram1:before {
921
+ content: "\e97d";
922
+ }
923
+
924
+ .icon-quote:before {
925
+ content: "\e97e";
926
+ }
927
+
928
+ .icon-arrow-point-to-down:before {
929
+ content: "\e97f";
930
+ }
931
+
932
+ .icon-play-button:before {
933
+ content: "\e980";
934
+ }
935
+
936
+ .icon-minus:before {
937
+ content: "\e981";
938
+ }
939
+
940
+ .icon-plus:before {
941
+ content: "\e982";
942
+ }
943
+
944
+ .icon-tick:before {
945
+ content: "\e983";
946
+ }
947
+
948
+ .icon-check:before {
949
+ content: "\eaaf";
950
+ }
951
+
952
+ .icon-edit:before {
953
+ content: "\e984";
954
+ }
955
+
956
+ .icon-reply:before {
957
+ content: "\e985";
958
+ }
959
+
960
+ .icon-cogwheel-outline:before {
961
+ content: "\e986";
962
+ }
963
+
964
+ .icon-abacus:before {
965
+ content: "\e987";
966
+ }
967
+
968
+ .icon-abacus1:before {
969
+ content: "\e988";
970
+ }
971
+
972
+ .icon-agenda1:before {
973
+ content: "\e989";
974
+ }
975
+
976
+ .icon-shopping-basket:before {
977
+ content: "\e98a";
978
+ }
979
+
980
+ .icon-users1:before {
981
+ content: "\e98b";
982
+ }
983
+
984
+ .icon-man:before {
985
+ content: "\e98c";
986
+ }
987
+
988
+ .icon-support1:before {
989
+ content: "\e98d";
990
+ }
991
+
992
+ .icon-favorites:before {
993
+ content: "\e98e";
994
+ }
995
+
996
+ .icon-calendar:before {
997
+ content: "\e98f";
998
+ }
999
+
1000
+ .icon-paper-plane:before {
1001
+ content: "\e990";
1002
+ }
1003
+
1004
+ .icon-placeholder:before {
1005
+ content: "\e991";
1006
+ }
1007
+
1008
+ .icon-phone-call:before {
1009
+ content: "\e992";
1010
+ }
1011
+
1012
+ .icon-contact:before {
1013
+ content: "\e993";
1014
+ }
1015
+
1016
+ .icon-email:before {
1017
+ content: "\e998";
1018
+ }
1019
+
1020
+ .icon-internet:before {
1021
+ content: "\e999";
1022
+ }
1023
+
1024
+ .icon-quote1:before {
1025
+ content: "\e99a";
1026
+ }
1027
+
1028
+ .icon-medical:before {
1029
+ content: "\e99b";
1030
+ }
1031
+
1032
+ .icon-eye1:before {
1033
+ content: "\e99c";
1034
+ }
1035
+
1036
+ .icon-full-screen:before {
1037
+ content: "\e99d";
1038
+ }
1039
+
1040
+ .icon-tools:before {
1041
+ content: "\e99e";
1042
+ }
1043
+
1044
+ .icon-pie-chart2:before {
1045
+ content: "\e99f";
1046
+ }
1047
+
1048
+ .icon-diamond11:before {
1049
+ content: "\e9a0";
1050
+ }
1051
+
1052
+ .icon-valentines-heart:before {
1053
+ content: "\e9a1";
1054
+ }
1055
+
1056
+ .icon-like:before {
1057
+ content: "\e9a2";
1058
+ }
1059
+
1060
+ .icon-team:before {
1061
+ content: "\e9a3";
1062
+ }
1063
+
1064
+ .icon-tshirt:before {
1065
+ content: "\e9a4";
1066
+ }
1067
+
1068
+ .icon-cancel:before {
1069
+ content: "\e9a5";
1070
+ }
1071
+
1072
+ .icon-drink:before {
1073
+ content: "\e9a6";
1074
+ }
1075
+
1076
+ .icon-home1:before {
1077
+ content: "\e9a7";
1078
+ }
1079
+
1080
+ .icon-music:before {
1081
+ content: "\e9a8";
1082
+ }
1083
+
1084
+ .icon-rich:before {
1085
+ content: "\e9a9";
1086
+ }
1087
+
1088
+ .icon-brush:before {
1089
+ content: "\e9aa";
1090
+ }
1091
+
1092
+ .icon-opposite-way:before {
1093
+ content: "\e9ab";
1094
+ }
1095
+
1096
+ .icon-cloud-computing1:before {
1097
+ content: "\e9ac";
1098
+ }
1099
+
1100
+ .icon-technology-1:before {
1101
+ content: "\e9ad";
1102
+ }
1103
+
1104
+ .icon-rotate:before {
1105
+ content: "\e9ae";
1106
+ }
1107
+
1108
+ .icon-medical1:before {
1109
+ content: "\e9af";
1110
+ }
1111
+
1112
+ .icon-flash-1:before {
1113
+ content: "\e9b0";
1114
+ }
1115
+
1116
+ .icon-flash:before {
1117
+ content: "\e9b1";
1118
+ }
1119
+
1120
+ .icon-uturn:before {
1121
+ content: "\e9b2";
1122
+ }
1123
+
1124
+ .icon-down-arrow:before {
1125
+ content: "\e9b3";
1126
+ }
1127
+
1128
+ .icon-hours-support:before {
1129
+ content: "\e9b4";
1130
+ }
1131
+
1132
+ .icon-bag:before {
1133
+ content: "\e9b5";
1134
+ }
1135
+
1136
+ .icon-photo-camera:before {
1137
+ content: "\e9b6";
1138
+ }
1139
+
1140
+ .icon-school:before {
1141
+ content: "\e9b7";
1142
+ }
1143
+
1144
+ .icon-settings:before {
1145
+ content: "\e9b8";
1146
+ }
1147
+
1148
+ .icon-smartphone1:before {
1149
+ content: "\e9b9";
1150
+ }
1151
+
1152
+ .icon-technology-11:before {
1153
+ content: "\e9ba";
1154
+ }
1155
+
1156
+ .icon-tool:before {
1157
+ content: "\e9bb";
1158
+ }
1159
+
1160
+ .icon-business1:before {
1161
+ content: "\e9bc";
1162
+ }
1163
+
1164
+ .icon-shuffle-arrow:before {
1165
+ content: "\e9bd";
1166
+ }
1167
+
1168
+ .icon-van-1:before {
1169
+ content: "\e9be";
1170
+ }
1171
+
1172
+ .icon-van:before {
1173
+ content: "\e9bf";
1174
+ }
1175
+
1176
+ .icon-vegetables:before {
1177
+ content: "\e9c0";
1178
+ }
1179
+
1180
+ .icon-women:before {
1181
+ content: "\e9c1";
1182
+ }
1183
+
1184
+ .icon-vintage:before {
1185
+ content: "\e9c2";
1186
+ }
1187
+
1188
+ .icon-team-1:before {
1189
+ content: "\e9c6";
1190
+ }
1191
+
1192
+ .icon-team1:before {
1193
+ content: "\e9c7";
1194
+ }
1195
+
1196
+ .icon-apple:before {
1197
+ content: "\e9c9";
1198
+ }
1199
+
1200
+ .icon-watch:before {
1201
+ content: "\e9ca";
1202
+ }
1203
+
1204
+ .icon-cogwheel:before {
1205
+ content: "\e9cb";
1206
+ }
1207
+
1208
+ .icon-light-bulb:before {
1209
+ content: "\e9cc";
1210
+ }
1211
+
1212
+ .icon-light-bulb-1:before {
1213
+ content: "\e9cd";
1214
+ }
1215
+
1216
+ .icon-heart-shape-outline:before {
1217
+ content: "\e9ce";
1218
+ }
1219
+
1220
+ .icon-online-shopping-cart:before {
1221
+ content: "\e9cf";
1222
+ }
1223
+
1224
+ .icon-shopping-cart1:before {
1225
+ content: "\e9d0";
1226
+ }
1227
+
1228
+ .icon-star2:before {
1229
+ content: "\e9d1";
1230
+ }
1231
+
1232
+ .icon-star-1:before {
1233
+ content: "\e9d2";
1234
+ }
1235
+
1236
+ .icon-favorite1:before {
1237
+ content: "\e9d3";
1238
+ }
1239
+
1240
+ .icon-agenda2:before {
1241
+ content: "\e9d4";
1242
+ }
1243
+
1244
+ .icon-agenda-1:before {
1245
+ content: "\e9d5";
1246
+ }
1247
+
1248
+ .icon-alarm-clock:before {
1249
+ content: "\e9d6";
1250
+ }
1251
+
1252
+ .icon-alarm-clock1:before {
1253
+ content: "\e9d7";
1254
+ }
1255
+
1256
+ .icon-atomic:before {
1257
+ content: "\e9d8";
1258
+ }
1259
+
1260
+ .icon-auction:before {
1261
+ content: "\e9d9";
1262
+ }
1263
+
1264
+ .icon-balance:before {
1265
+ content: "\e9da";
1266
+ }
1267
+
1268
+ .icon-balance1:before {
1269
+ content: "\e9db";
1270
+ }
1271
+
1272
+ .icon-bank1:before {
1273
+ content: "\e9dc";
1274
+ }
1275
+
1276
+ .icon-bar-chart:before {
1277
+ content: "\e9dd";
1278
+ }
1279
+
1280
+ .icon-barrier:before {
1281
+ content: "\e9de";
1282
+ }
1283
+
1284
+ .icon-battery:before {
1285
+ content: "\e9df";
1286
+ }
1287
+
1288
+ .icon-battery-1:before {
1289
+ content: "\e9e0";
1290
+ }
1291
+
1292
+ .icon-bell:before {
1293
+ content: "\e9e1";
1294
+ }
1295
+
1296
+ .icon-bluetooth:before {
1297
+ content: "\e9e2";
1298
+ }
1299
+
1300
+ .icon-book1:before {
1301
+ content: "\e9e3";
1302
+ }
1303
+
1304
+ .icon-briefcase1:before {
1305
+ content: "\e9e4";
1306
+ }
1307
+
1308
+ .icon-briefcase-1:before {
1309
+ content: "\e9e5";
1310
+ }
1311
+
1312
+ .icon-briefcase-2:before {
1313
+ content: "\e9e6";
1314
+ }
1315
+
1316
+ .icon-calculator1:before {
1317
+ content: "\e9e7";
1318
+ }
1319
+
1320
+ .icon-calculator2:before {
1321
+ content: "\e9e8";
1322
+ }
1323
+
1324
+ .icon-calculator-1:before {
1325
+ content: "\e9e9";
1326
+ }
1327
+
1328
+ .icon-calendar1:before {
1329
+ content: "\e9ea";
1330
+ }
1331
+
1332
+ .icon-calendar2:before {
1333
+ content: "\e9eb";
1334
+ }
1335
+
1336
+ .icon-calendar-1:before {
1337
+ content: "\e9ec";
1338
+ }
1339
+
1340
+ .icon-calendar-page-empty:before {
1341
+ content: "\eaac";
1342
+ }
1343
+
1344
+ .icon-calendar3:before {
1345
+ content: "\eb9c";
1346
+ }
1347
+
1348
+ .icon-car11:before {
1349
+ content: "\e9ed";
1350
+ }
1351
+
1352
+ .icon-carrier:before {
1353
+ content: "\e9ee";
1354
+ }
1355
+
1356
+ .icon-cash:before {
1357
+ content: "\e9ef";
1358
+ }
1359
+
1360
+ .icon-chat:before {
1361
+ content: "\e9f0";
1362
+ }
1363
+
1364
+ .icon-chat-1:before {
1365
+ content: "\e9f1";
1366
+ }
1367
+
1368
+ .icon-checked1:before {
1369
+ content: "\e9f2";
1370
+ }
1371
+
1372
+ .icon-clip:before {
1373
+ content: "\e9f3";
1374
+ }
1375
+
1376
+ .icon-clip1:before {
1377
+ content: "\e9f4";
1378
+ }
1379
+
1380
+ .icon-clipboard1:before {
1381
+ content: "\e9f5";
1382
+ }
1383
+
1384
+ .icon-clipboard11:before {
1385
+ content: "\e9f6";
1386
+ }
1387
+
1388
+ .icon-clock2:before {
1389
+ content: "\e9f7";
1390
+ }
1391
+
1392
+ .icon-clock-1:before {
1393
+ content: "\e9f8";
1394
+ }
1395
+
1396
+ .icon-cloud11:before {
1397
+ content: "\e9f9";
1398
+ }
1399
+
1400
+ .icon-cloud-computing11:before {
1401
+ content: "\e9fa";
1402
+ }
1403
+
1404
+ .icon-cloud-computing-1:before {
1405
+ content: "\e9fb";
1406
+ }
1407
+
1408
+ .icon-cogwheel1:before {
1409
+ content: "\e9fc";
1410
+ }
1411
+
1412
+ .icon-coins1:before {
1413
+ content: "\e9fd";
1414
+ }
1415
+
1416
+ .icon-compass:before {
1417
+ content: "\e9fe";
1418
+ }
1419
+
1420
+ .icon-contract:before {
1421
+ content: "\e9ff";
1422
+ }
1423
+
1424
+ .icon-conversation:before {
1425
+ content: "\ea00";
1426
+ }
1427
+
1428
+ .icon-crane1:before {
1429
+ content: "\ea01";
1430
+ }
1431
+
1432
+ .icon-crane-2:before {
1433
+ content: "\ea02";
1434
+ }
1435
+
1436
+ .icon-credit-card:before {
1437
+ content: "\ea03";
1438
+ }
1439
+
1440
+ .icon-credit-card1:before {
1441
+ content: "\ea04";
1442
+ }
1443
+
1444
+ .icon-cursor:before {
1445
+ content: "\ea05";
1446
+ }
1447
+
1448
+ .icon-customer-service:before {
1449
+ content: "\ea06";
1450
+ }
1451
+
1452
+ .icon-cutlery:before {
1453
+ content: "\ea07";
1454
+ }
1455
+
1456
+ .icon-dart-board:before {
1457
+ content: "\ea08";
1458
+ }
1459
+
1460
+ .icon-decision-making:before {
1461
+ content: "\ea09";
1462
+ }
1463
+
1464
+ .icon-desk-chair:before {
1465
+ content: "\ea0a";
1466
+ }
1467
+
1468
+ .icon-desk-lamp:before {
1469
+ content: "\ea0b";
1470
+ }
1471
+
1472
+ .icon-diamond2:before {
1473
+ content: "\ea0c";
1474
+ }
1475
+
1476
+ .icon-direction:before {
1477
+ content: "\ea0d";
1478
+ }
1479
+
1480
+ .icon-document:before {
1481
+ content: "\ea0e";
1482
+ }
1483
+
1484
+ .icon-dollar-bill:before {
1485
+ content: "\ea0f";
1486
+ }
1487
+
1488
+ .icon-download1:before {
1489
+ content: "\ea10";
1490
+ }
1491
+
1492
+ .icon-edit1:before {
1493
+ content: "\ea11";
1494
+ }
1495
+
1496
+ .icon-email1:before {
1497
+ content: "\ea12";
1498
+ }
1499
+
1500
+ .icon-envelope2:before {
1501
+ content: "\ea13";
1502
+ }
1503
+
1504
+ .icon-envelope3:before {
1505
+ content: "\ea14";
1506
+ }
1507
+
1508
+ .icon-eraser:before {
1509
+ content: "\ea15";
1510
+ }
1511
+
1512
+ .icon-eye2:before {
1513
+ content: "\ea16";
1514
+ }
1515
+
1516
+ .icon-factory:before {
1517
+ content: "\ea17";
1518
+ }
1519
+
1520
+ .icon-fast-forward:before {
1521
+ content: "\ea18";
1522
+ }
1523
+
1524
+ .icon-favorites1:before {
1525
+ content: "\ea19";
1526
+ }
1527
+
1528
+ .icon-file:before {
1529
+ content: "\ea1a";
1530
+ }
1531
+
1532
+ .icon-file-1:before {
1533
+ content: "\ea1b";
1534
+ }
1535
+
1536
+ .icon-file-2:before {
1537
+ content: "\ea1c";
1538
+ }
1539
+
1540
+ .icon-file-3:before {
1541
+ content: "\ea1d";
1542
+ }
1543
+
1544
+ .icon-filter:before {
1545
+ content: "\ea1e";
1546
+ }
1547
+
1548
+ .icon-finance-book:before {
1549
+ content: "\ea1f";
1550
+ }
1551
+
1552
+ .icon-flag1:before {
1553
+ content: "\ea20";
1554
+ }
1555
+
1556
+ .icon-folder1:before {
1557
+ content: "\ea21";
1558
+ }
1559
+
1560
+ .icon-folder-1:before {
1561
+ content: "\ea22";
1562
+ }
1563
+
1564
+ .icon-folders:before {
1565
+ content: "\ea23";
1566
+ }
1567
+
1568
+ .icon-folders1:before {
1569
+ content: "\ea24";
1570
+ }
1571
+
1572
+ .icon-gamepad:before {
1573
+ content: "\ea25";
1574
+ }
1575
+
1576
+ .icon-gift11:before {
1577
+ content: "\ea26";
1578
+ }
1579
+
1580
+ .icon-growth:before {
1581
+ content: "\ea27";
1582
+ }
1583
+
1584
+ .icon-heart11:before {
1585
+ content: "\ea28";
1586
+ }
1587
+
1588
+ .icon-home2:before {
1589
+ content: "\ea29";
1590
+ }
1591
+
1592
+ .icon-house:before {
1593
+ content: "\ea2a";
1594
+ }
1595
+
1596
+ .icon-house-1:before {
1597
+ content: "\ea2b";
1598
+ }
1599
+
1600
+ .icon-house-2:before {
1601
+ content: "\ea2c";
1602
+ }
1603
+
1604
+ .icon-id-card:before {
1605
+ content: "\ea2d";
1606
+ }
1607
+
1608
+ .icon-id-card1:before {
1609
+ content: "\ea2e";
1610
+ }
1611
+
1612
+ .icon-id-card-1:before {
1613
+ content: "\ea2f";
1614
+ }
1615
+
1616
+ .icon-idea1:before {
1617
+ content: "\ea30";
1618
+ }
1619
+
1620
+ .icon-image:before {
1621
+ content: "\ea31";
1622
+ }
1623
+
1624
+ .icon-improvement:before {
1625
+ content: "\ea32";
1626
+ }
1627
+
1628
+ .icon-inbox1:before {
1629
+ content: "\ea33";
1630
+ }
1631
+
1632
+ .icon-information:before {
1633
+ content: "\ea34";
1634
+ }
1635
+
1636
+ .icon-key:before {
1637
+ content: "\ea35";
1638
+ }
1639
+
1640
+ .icon-key1:before {
1641
+ content: "\ea36";
1642
+ }
1643
+
1644
+ .icon-laptop1:before {
1645
+ content: "\ea37";
1646
+ }
1647
+
1648
+ .icon-layers1:before {
1649
+ content: "\ea38";
1650
+ }
1651
+
1652
+ .icon-light-bulb1:before {
1653
+ content: "\ea39";
1654
+ }
1655
+
1656
+ .icon-like1:before {
1657
+ content: "\ea3a";
1658
+ }
1659
+
1660
+ .icon-line-chart1:before {
1661
+ content: "\ea3b";
1662
+ }
1663
+
1664
+ .icon-mail:before {
1665
+ content: "\ea3c";
1666
+ }
1667
+
1668
+ .icon-manager:before {
1669
+ content: "\ea3d";
1670
+ }
1671
+
1672
+ .icon-map1:before {
1673
+ content: "\ea3e";
1674
+ }
1675
+
1676
+ .icon-medal1:before {
1677
+ content: "\ea3f";
1678
+ }
1679
+
1680
+ .icon-megaphone:before {
1681
+ content: "\ea40";
1682
+ }
1683
+
1684
+ .icon-megaphone1:before {
1685
+ content: "\ea41";
1686
+ }
1687
+
1688
+ .icon-message:before {
1689
+ content: "\ea42";
1690
+ }
1691
+
1692
+ .icon-message-1:before {
1693
+ content: "\ea43";
1694
+ }
1695
+
1696
+ .icon-message-2:before {
1697
+ content: "\ea44";
1698
+ }
1699
+
1700
+ .icon-microphone:before {
1701
+ content: "\ea45";
1702
+ }
1703
+
1704
+ .icon-money1:before {
1705
+ content: "\ea46";
1706
+ }
1707
+
1708
+ .icon-money-bag1:before {
1709
+ content: "\ea47";
1710
+ }
1711
+
1712
+ .icon-monitor1:before {
1713
+ content: "\ea48";
1714
+ }
1715
+
1716
+ .icon-music1:before {
1717
+ content: "\ea49";
1718
+ }
1719
+
1720
+ .icon-next:before {
1721
+ content: "\ea4a";
1722
+ }
1723
+
1724
+ .icon-open-book1:before {
1725
+ content: "\ea4b";
1726
+ }
1727
+
1728
+ .icon-padlock:before {
1729
+ content: "\ea4c";
1730
+ }
1731
+
1732
+ .icon-padlock-1:before {
1733
+ content: "\ea4d";
1734
+ }
1735
+
1736
+ .icon-paint-brush:before {
1737
+ content: "\ea4e";
1738
+ }
1739
+
1740
+ .icon-pause:before {
1741
+ content: "\ea4f";
1742
+ }
1743
+
1744
+ .icon-pen:before {
1745
+ content: "\ea50";
1746
+ }
1747
+
1748
+ .icon-pencil1:before {
1749
+ content: "\ea51";
1750
+ }
1751
+
1752
+ .icon-percentage:before {
1753
+ content: "\ea52";
1754
+ }
1755
+
1756
+ .icon-phone-call1:before {
1757
+ content: "\ea53";
1758
+ }
1759
+
1760
+ .icon-phone-call2:before {
1761
+ content: "\ea54";
1762
+ }
1763
+
1764
+ .icon-photo-camera1:before {
1765
+ content: "\ea55";
1766
+ }
1767
+
1768
+ .icon-pie-chart3:before {
1769
+ content: "\ea56";
1770
+ }
1771
+
1772
+ .icon-pipe:before {
1773
+ content: "\ea57";
1774
+ }
1775
+
1776
+ .icon-placeholder1:before {
1777
+ content: "\ea58";
1778
+ }
1779
+
1780
+ .icon-placeholder2:before {
1781
+ content: "\ea59";
1782
+ }
1783
+
1784
+ .icon-planet-earth:before {
1785
+ content: "\ea5a";
1786
+ }
1787
+
1788
+ .icon-play-button1:before {
1789
+ content: "\ea5b";
1790
+ }
1791
+
1792
+ .icon-power-button:before {
1793
+ content: "\ea5c";
1794
+ }
1795
+
1796
+ .icon-presentation:before {
1797
+ content: "\ea5d";
1798
+ }
1799
+
1800
+ .icon-presentation1:before {
1801
+ content: "\ea5e";
1802
+ }
1803
+
1804
+ .icon-printer1:before {
1805
+ content: "\ea5f";
1806
+ }
1807
+
1808
+ .icon-push-pin:before {
1809
+ content: "\ea60";
1810
+ }
1811
+
1812
+ .icon-push-pin1:before {
1813
+ content: "\ea61";
1814
+ }
1815
+
1816
+ .icon-refresh:before {
1817
+ content: "\ea62";
1818
+ }
1819
+
1820
+ .icon-reload:before {
1821
+ content: "\ea63";
1822
+ }
1823
+
1824
+ .icon-return:before {
1825
+ content: "\ea64";
1826
+ }
1827
+
1828
+ .icon-rocket-ship:before {
1829
+ content: "\ea65";
1830
+ }
1831
+
1832
+ .icon-rss1:before {
1833
+ content: "\ea66";
1834
+ }
1835
+
1836
+ .icon-safebox:before {
1837
+ content: "\ea67";
1838
+ }
1839
+
1840
+ .icon-safebox1:before {
1841
+ content: "\ea68";
1842
+ }
1843
+
1844
+ .icon-settings1:before {
1845
+ content: "\ea69";
1846
+ }
1847
+
1848
+ .icon-settings-2:before {
1849
+ content: "\ea6b";
1850
+ }
1851
+
1852
+ .icon-sewing-machine:before {
1853
+ content: "\ea6c";
1854
+ }
1855
+
1856
+ .icon-share2:before {
1857
+ content: "\ea6d";
1858
+ }
1859
+
1860
+ .icon-shield1:before {
1861
+ content: "\ea6e";
1862
+ }
1863
+
1864
+ .icon-shield11:before {
1865
+ content: "\ea6f";
1866
+ }
1867
+
1868
+ .icon-shopping:before {
1869
+ content: "\ea70";
1870
+ }
1871
+
1872
+ .icon-shopping-bag:before {
1873
+ content: "\ea71";
1874
+ }
1875
+
1876
+ .icon-shopping-bag-1:before {
1877
+ content: "\ea72";
1878
+ }
1879
+
1880
+ .icon-shopping-bag-2:before {
1881
+ content: "\ea73";
1882
+ }
1883
+
1884
+ .icon-shopping-cart11:before {
1885
+ content: "\ea74";
1886
+ }
1887
+
1888
+ .icon-shopping-cart2:before {
1889
+ content: "\ea75";
1890
+ }
1891
+
1892
+ .icon-shopping-cart-1:before {
1893
+ content: "\ea76";
1894
+ }
1895
+
1896
+ .icon-shopping-cart-2:before {
1897
+ content: "\ea77";
1898
+ }
1899
+
1900
+ .icon-shopping-cart-3:before {
1901
+ content: "\ea78";
1902
+ }
1903
+
1904
+ .icon-smartphone2:before {
1905
+ content: "\ea79";
1906
+ }
1907
+
1908
+ .icon-speaker:before {
1909
+ content: "\ea7a";
1910
+ }
1911
+
1912
+ .icon-speakers:before {
1913
+ content: "\ea7b";
1914
+ }
1915
+
1916
+ .icon-stats:before {
1917
+ content: "\ea7c";
1918
+ }
1919
+
1920
+ .icon-stats-1:before {
1921
+ content: "\ea7d";
1922
+ }
1923
+
1924
+ .icon-stats-2:before {
1925
+ content: "\ea7e";
1926
+ }
1927
+
1928
+ .icon-stats-3:before {
1929
+ content: "\ea7f";
1930
+ }
1931
+
1932
+ .icon-stats-4:before {
1933
+ content: "\ea80";
1934
+ }
1935
+
1936
+ .icon-stats-5:before {
1937
+ content: "\ea81";
1938
+ }
1939
+
1940
+ .icon-stats-6:before {
1941
+ content: "\ea82";
1942
+ }
1943
+
1944
+ .icon-sticky-note:before {
1945
+ content: "\ea83";
1946
+ }
1947
+
1948
+ .icon-store1:before {
1949
+ content: "\ea84";
1950
+ }
1951
+
1952
+ .icon-store-1:before {
1953
+ content: "\ea85";
1954
+ }
1955
+
1956
+ .icon-suitcase:before {
1957
+ content: "\ea86";
1958
+ }
1959
+
1960
+ .icon-suitcase-1:before {
1961
+ content: "\ea87";
1962
+ }
1963
+
1964
+ .icon-tag2:before {
1965
+ content: "\ea88";
1966
+ }
1967
+
1968
+ .icon-target:before {
1969
+ content: "\ea89";
1970
+ }
1971
+
1972
+ .icon-team2:before {
1973
+ content: "\ea8a";
1974
+ }
1975
+
1976
+ .icon-tie:before {
1977
+ content: "\ea8b";
1978
+ }
1979
+
1980
+ .icon-trash1:before {
1981
+ content: "\ea8c";
1982
+ }
1983
+
1984
+ .icon-trolley:before {
1985
+ content: "\ea8d";
1986
+ }
1987
+
1988
+ .icon-trolley-1:before {
1989
+ content: "\ea8e";
1990
+ }
1991
+
1992
+ .icon-trolley-2:before {
1993
+ content: "\ea8f";
1994
+ }
1995
+
1996
+ .icon-trophy1:before {
1997
+ content: "\ea90";
1998
+ }
1999
+
2000
+ .icon-truck1:before {
2001
+ content: "\ea91";
2002
+ }
2003
+
2004
+ .icon-truck-1:before {
2005
+ content: "\ea92";
2006
+ }
2007
+
2008
+ .icon-truck-2:before {
2009
+ content: "\ea93";
2010
+ }
2011
+
2012
+ .icon-umbrella:before {
2013
+ content: "\ea94";
2014
+ }
2015
+
2016
+ .icon-upload1:before {
2017
+ content: "\ea95";
2018
+ }
2019
+
2020
+ .icon-user1:before {
2021
+ content: "\ea96";
2022
+ }
2023
+
2024
+ .icon-user-1:before {
2025
+ content: "\ea97";
2026
+ }
2027
+
2028
+ .icon-user-2:before {
2029
+ content: "\ea98";
2030
+ }
2031
+
2032
+ .icon-user-3:before {
2033
+ content: "\ea99";
2034
+ }
2035
+
2036
+ .icon-users2:before {
2037
+ content: "\ea9a";
2038
+ }
2039
+
2040
+ .icon-video-camera:before {
2041
+ content: "\ea9b";
2042
+ }
2043
+
2044
+ .icon-voucher:before {
2045
+ content: "\ea9c";
2046
+ }
2047
+
2048
+ .icon-voucher-1:before {
2049
+ content: "\ea9d";
2050
+ }
2051
+
2052
+ .icon-voucher-2:before {
2053
+ content: "\ea9e";
2054
+ }
2055
+
2056
+ .icon-voucher-3:before {
2057
+ content: "\ea9f";
2058
+ }
2059
+
2060
+ .icon-voucher-4:before {
2061
+ content: "\eaa0";
2062
+ }
2063
+
2064
+ .icon-wallet:before {
2065
+ content: "\eaa1";
2066
+ }
2067
+
2068
+ .icon-wallet1:before {
2069
+ content: "\eaa2";
2070
+ }
2071
+
2072
+ .icon-wifi:before {
2073
+ content: "\eaa3";
2074
+ }
2075
+
2076
+ .icon-worker:before {
2077
+ content: "\eaa4";
2078
+ }
2079
+
2080
+ .icon-zoom-in:before {
2081
+ content: "\eaa5";
2082
+ }
2083
+
2084
+ .icon-zoom-out:before {
2085
+ content: "\eaa6";
2086
+ }
2087
+
2088
+ .icon-burger-menu:before {
2089
+ content: "\eab8";
2090
+ }
2091
+
2092
+ .icon-squares:before {
2093
+ content: "\eaa7";
2094
+ }
2095
+
2096
+ .icon-options:before {
2097
+ content: "\eaa8";
2098
+ }
2099
+
2100
+ .icon-apps:before {
2101
+ content: "\eaa9";
2102
+ }
2103
+
2104
+ .icon-menu-11:before {
2105
+ content: "\eaaa";
2106
+ }
2107
+
2108
+ .icon-menu11:before {
2109
+ content: "\eaab";
2110
+ }
2111
+
2112
+ .icon-back_up:before {
2113
+ content: "\eaad";
2114
+ }
2115
+
2116
+ .icon-cart11:before {
2117
+ content: "\eaae";
2118
+ }
2119
+
2120
+ .icon-checkmark:before {
2121
+ content: "\eab0";
2122
+ }
2123
+
2124
+ .icon-dollar:before {
2125
+ content: "\eab1";
2126
+ }
2127
+
2128
+ .icon-domian:before {
2129
+ content: "\eab2";
2130
+ }
2131
+
2132
+ .icon-hosting1:before {
2133
+ content: "\eab3";
2134
+ }
2135
+
2136
+ .icon-key2:before {
2137
+ content: "\eab4";
2138
+ }
2139
+
2140
+ .icon-migration:before {
2141
+ content: "\eab5";
2142
+ }
2143
+
2144
+ .icon-play1:before {
2145
+ content: "\eab6";
2146
+ }
2147
+
2148
+ .icon-quote2:before {
2149
+ content: "\eab7";
2150
+ }
2151
+
2152
+ .icon-api_setup:before {
2153
+ content: "\eab9";
2154
+ }
2155
+
2156
+ .icon-coin:before {
2157
+ content: "\eaba";
2158
+ }
2159
+
2160
+ .icon-hand_shake:before {
2161
+ content: "\eabb";
2162
+ }
2163
+
2164
+ .icon-idea_generate:before {
2165
+ content: "\eabc";
2166
+ }
2167
+
2168
+ .icon-page_search:before {
2169
+ content: "\eabd";
2170
+ }
2171
+
2172
+ .icon-pen_shape:before {
2173
+ content: "\eabe";
2174
+ }
2175
+
2176
+ .icon-pencil_art:before {
2177
+ content: "\eabf";
2178
+ }
2179
+
2180
+ .icon-review:before {
2181
+ content: "\eac0";
2182
+ }
2183
+
2184
+ .icon-star:before {
2185
+ content: "\eac1";
2186
+ }
2187
+
2188
+ .icon-timing:before {
2189
+ content: "\eac2";
2190
+ }
2191
+
2192
+ .icon-trophy:before {
2193
+ content: "\eac3";
2194
+ }
2195
+
2196
+ .icon-communication:before {
2197
+ content: "\eac4";
2198
+ }
2199
+
2200
+ .icon-money-bag2:before {
2201
+ content: "\eac5";
2202
+ }
2203
+
2204
+ .icon-dentist:before {
2205
+ content: "\eac6";
2206
+ }
2207
+
2208
+ .icon-bill:before {
2209
+ content: "\eac7";
2210
+ }
2211
+
2212
+ .icon-label:before {
2213
+ content: "\eac8";
2214
+ }
2215
+
2216
+ .icon-money:before {
2217
+ content: "\eac9";
2218
+ }
2219
+
2220
+ .icon-shield:before {
2221
+ content: "\eaca";
2222
+ }
2223
+
2224
+ .icon-support:before {
2225
+ content: "\eacb";
2226
+ }
2227
+
2228
+ .icon-one:before {
2229
+ content: "\eacc";
2230
+ }
2231
+
2232
+ .icon-clock:before {
2233
+ content: "\eacd";
2234
+ }
2235
+
2236
+ .icon-cart:before {
2237
+ content: "\eace";
2238
+ }
2239
+
2240
+ .icon-globe:before {
2241
+ content: "\eacf";
2242
+ }
2243
+
2244
+ .icon-tooth:before {
2245
+ content: "\ead0";
2246
+ }
2247
+
2248
+ .icon-tooth-1:before {
2249
+ content: "\ead1";
2250
+ }
2251
+
2252
+ .icon-tooth-2:before {
2253
+ content: "\ead2";
2254
+ }
2255
+
2256
+ .icon-brain:before {
2257
+ content: "\ead3";
2258
+ }
2259
+
2260
+ .icon-view:before {
2261
+ content: "\ead4";
2262
+ }
2263
+
2264
+ .icon-doctor:before {
2265
+ content: "\ead5";
2266
+ }
2267
+
2268
+ .icon-heart:before {
2269
+ content: "\ead6";
2270
+ }
2271
+
2272
+ .icon-medicine:before {
2273
+ content: "\ead7";
2274
+ }
2275
+
2276
+ .icon-stethoscope:before {
2277
+ content: "\ead8";
2278
+ }
2279
+
2280
+ .icon-hospital:before {
2281
+ content: "\ead9";
2282
+ }
2283
+
2284
+ .icon-clipboard:before {
2285
+ content: "\eada";
2286
+ }
2287
+
2288
+ .icon-medicine-1:before {
2289
+ content: "\eadb";
2290
+ }
2291
+
2292
+ .icon-hospital-1:before {
2293
+ content: "\eadc";
2294
+ }
2295
+
2296
+ .icon-customer-support:before {
2297
+ content: "\eadd";
2298
+ }
2299
+
2300
+ .icon-brickwall:before {
2301
+ content: "\eade";
2302
+ }
2303
+
2304
+ .icon-crane2:before {
2305
+ content: "\eadf";
2306
+ }
2307
+
2308
+ .icon-valve:before {
2309
+ content: "\eae1";
2310
+ }
2311
+
2312
+ .icon-safety:before {
2313
+ content: "\eae2";
2314
+ }
2315
+
2316
+ .icon-energy-saving:before {
2317
+ content: "\eae3";
2318
+ }
2319
+
2320
+ .icon-paint-roller:before {
2321
+ content: "\eae4";
2322
+ }
2323
+
2324
+ .icon-paint-brushes:before {
2325
+ content: "\eae5";
2326
+ }
2327
+
2328
+ .icon-construction-tool-vehicle-with-crane-lifting-materials:before {
2329
+ content: "\eae6";
2330
+ }
2331
+
2332
+ .icon-trowel:before {
2333
+ content: "\eae7";
2334
+ }
2335
+
2336
+ .icon-bucket:before {
2337
+ content: "\eae8";
2338
+ }
2339
+
2340
+ .icon-smart:before {
2341
+ content: "\eae9";
2342
+ }
2343
+
2344
+ .icon-repair:before {
2345
+ content: "\eaea";
2346
+ }
2347
+
2348
+ .icon-saw:before {
2349
+ content: "\eaeb";
2350
+ }
2351
+
2352
+ .icon-cutter:before {
2353
+ content: "\eaec";
2354
+ }
2355
+
2356
+ .icon-plier:before {
2357
+ content: "\eaed";
2358
+ }
2359
+
2360
+ .icon-drill:before {
2361
+ content: "\eaee";
2362
+ }
2363
+
2364
+ .icon-save-money:before {
2365
+ content: "\eaef";
2366
+ }
2367
+
2368
+ .icon-planting:before {
2369
+ content: "\eaf0";
2370
+ }
2371
+
2372
+ .icon-line-chart:before {
2373
+ content: "\eaf1";
2374
+ }
2375
+
2376
+ .icon-open-book:before {
2377
+ content: "\eaf2";
2378
+ }
2379
+
2380
+ .icon-money-bag3:before {
2381
+ content: "\eaf3";
2382
+ }
2383
+
2384
+ .icon-server:before {
2385
+ content: "\eaf4";
2386
+ }
2387
+
2388
+ .icon-server-1:before {
2389
+ content: "\eaf5";
2390
+ }
2391
+
2392
+ .icon-server-2:before {
2393
+ content: "\eaf6";
2394
+ }
2395
+
2396
+ .icon-cloud-computing:before {
2397
+ content: "\eaf7";
2398
+ }
2399
+
2400
+ .icon-cloud:before {
2401
+ content: "\eaf8";
2402
+ }
2403
+
2404
+ .icon-database:before {
2405
+ content: "\eaf9";
2406
+ }
2407
+
2408
+ .icon-computer:before {
2409
+ content: "\eafa";
2410
+ }
2411
+
2412
+ .icon-server-3:before {
2413
+ content: "\eafb";
2414
+ }
2415
+
2416
+ .icon-server-4:before {
2417
+ content: "\eafc";
2418
+ }
2419
+
2420
+ .icon-server-5:before {
2421
+ content: "\eafd";
2422
+ }
2423
+
2424
+ .icon-server-6:before {
2425
+ content: "\eafe";
2426
+ }
2427
+
2428
+ .icon-server-7:before {
2429
+ content: "\eaff";
2430
+ }
2431
+
2432
+ .icon-cloud-1:before {
2433
+ content: "\eb00";
2434
+ }
2435
+
2436
+ .icon-server-8:before {
2437
+ content: "\eb01";
2438
+ }
2439
+
2440
+ .icon-business-and-finance:before {
2441
+ content: "\eb02";
2442
+ }
2443
+
2444
+ .icon-cloud-2:before {
2445
+ content: "\eb03";
2446
+ }
2447
+
2448
+ .icon-server-9:before {
2449
+ content: "\eb04";
2450
+ }
2451
+
2452
+ .icon-hosting:before {
2453
+ content: "\eb05";
2454
+ }
2455
+
2456
+ .icon-car:before {
2457
+ content: "\eb06";
2458
+ }
2459
+
2460
+ .icon-car-frontal-view:before {
2461
+ content: "\eb07";
2462
+ }
2463
+
2464
+ .icon-car-1:before {
2465
+ content: "\eb08";
2466
+ }
2467
+
2468
+ .icon-racing:before {
2469
+ content: "\eb09";
2470
+ }
2471
+
2472
+ .icon-car-wheel:before {
2473
+ content: "\eb0a";
2474
+ }
2475
+
2476
+ .icon-steering-wheel:before {
2477
+ content: "\eb0b";
2478
+ }
2479
+
2480
+ .icon-frontal-taxi-cab:before {
2481
+ content: "\eb0c";
2482
+ }
2483
+
2484
+ .icon-taxi:before {
2485
+ content: "\eb0d";
2486
+ }
2487
+
2488
+ .icon-cosmetics:before {
2489
+ content: "\eb0e";
2490
+ }
2491
+
2492
+ .icon-flower:before {
2493
+ content: "\eb0f";
2494
+ }
2495
+
2496
+ .icon-mirror:before {
2497
+ content: "\eb10";
2498
+ }
2499
+
2500
+ .icon-itunes:before {
2501
+ content: "\eb6b";
2502
+ }
2503
+
2504
+ .icon-salon:before {
2505
+ content: "\eb11";
2506
+ }
2507
+
2508
+ .icon-hair-dryer:before {
2509
+ content: "\eb12";
2510
+ }
2511
+
2512
+ .icon-shampoo:before {
2513
+ content: "\eb13";
2514
+ }
2515
+
2516
+ .icon-download-button:before {
2517
+ content: "\e90b";
2518
+ }
2519
+
2520
+ .icon-list:before {
2521
+ content: "\eb14";
2522
+ }
2523
+
2524
+ .icon-loupe:before {
2525
+ content: "\eb15";
2526
+ }
2527
+
2528
+ .icon-search:before {
2529
+ content: "\eb16";
2530
+ }
2531
+
2532
+ .icon-search-1:before {
2533
+ content: "\eb17";
2534
+ }
2535
+
2536
+ .icon-shopping-cart:before {
2537
+ content: "\eb18";
2538
+ }
2539
+
2540
+ .icon-menu:before {
2541
+ content: "\eb19";
2542
+ }
2543
+
2544
+ .icon-menu-1:before {
2545
+ content: "\eb1a";
2546
+ }
2547
+
2548
+ .icon-menu-button-of-three-horizontal-lines:before {
2549
+ content: "\eb1b";
2550
+ }
2551
+
2552
+ .icon-menu-2:before {
2553
+ content: "\eb1c";
2554
+ }
2555
+
2556
+ .icon-menu-3:before {
2557
+ content: "\eb1d";
2558
+ }
2559
+
2560
+ .icon-menu-5:before {
2561
+ content: "\eb1f";
2562
+ }
2563
+
2564
+ .icon-menu-button:before {
2565
+ content: "\eb20";
2566
+ }
2567
+
2568
+ .icon-list-1:before {
2569
+ content: "\eb21";
2570
+ }
2571
+
2572
+ .icon-menu-6:before {
2573
+ content: "\eb22";
2574
+ }
2575
+
2576
+ .icon-menu-7:before {
2577
+ content: "\eb23";
2578
+ }
2579
+
2580
+ .icon-menu-8:before {
2581
+ content: "\eb24";
2582
+ }
2583
+
2584
+ .icon-list-2:before {
2585
+ content: "\eb25";
2586
+ }
2587
+
2588
+ .icon-dot:before {
2589
+ content: "\eb26";
2590
+ }
2591
+
2592
+ .icon-menu-9:before {
2593
+ content: "\eb27";
2594
+ }
2595
+
2596
+ .icon-search11:before {
2597
+ content: "\eb28";
2598
+ }
2599
+
2600
+ .icon-search-minus:before {
2601
+ content: "\eb29";
2602
+ }
2603
+
2604
+ .icon-search-11:before {
2605
+ content: "\eb2a";
2606
+ }
2607
+
2608
+ .icon-search-2:before {
2609
+ content: "\eb2b";
2610
+ }
2611
+
2612
+ .icon-search-3:before {
2613
+ content: "\eb2c";
2614
+ }
2615
+
2616
+ .icon-magnifying-glass-search:before {
2617
+ content: "\eb2d";
2618
+ }
2619
+
2620
+ .icon-loupe1:before {
2621
+ content: "\eb2e";
2622
+ }
2623
+
2624
+ .icon-speed:before {
2625
+ content: "\eb2f";
2626
+ }
2627
+
2628
+ .icon-search21:before {
2629
+ content: "\eb30";
2630
+ }
2631
+
2632
+ .icon-search-4:before {
2633
+ content: "\eb31";
2634
+ }
2635
+
2636
+ .icon-search-5:before {
2637
+ content: "\eb32";
2638
+ }
2639
+
2640
+ .icon-detective:before {
2641
+ content: "\eb33";
2642
+ }
2643
+
2644
+ .icon-cart1:before {
2645
+ content: "\eb34";
2646
+ }
2647
+
2648
+ .icon-buying-on-smartphone:before {
2649
+ content: "\eb35";
2650
+ }
2651
+
2652
+ .icon-badge:before {
2653
+ content: "\eb36";
2654
+ }
2655
+
2656
+ .icon-basket1:before {
2657
+ content: "\eb37";
2658
+ }
2659
+
2660
+ .icon-commerce-and-shopping:before {
2661
+ content: "\eb38";
2662
+ }
2663
+
2664
+ .icon-comment:before {
2665
+ content: "\eb39";
2666
+ }
2667
+
2668
+ .icon-comment-1:before {
2669
+ content: "\eb3a";
2670
+ }
2671
+
2672
+ .icon-share:before {
2673
+ content: "\eb3b";
2674
+ }
2675
+
2676
+ .icon-share-1:before {
2677
+ content: "\eb3c";
2678
+ }
2679
+
2680
+ .icon-share-2:before {
2681
+ content: "\eb3d";
2682
+ }
2683
+
2684
+ .icon-share-3:before {
2685
+ content: "\eb3e";
2686
+ }
2687
+
2688
+ .icon-comment1:before {
2689
+ content: "\eb3f";
2690
+ }
2691
+
2692
+ .icon-favorite:before {
2693
+ content: "\eb40";
2694
+ }
2695
+
2696
+ .icon-retweet:before {
2697
+ content: "\eb41";
2698
+ }
2699
+
2700
+ .icon-share1:before {
2701
+ content: "\eb42";
2702
+ }
2703
+
2704
+ .icon-facebook:before {
2705
+ content: "\eb43";
2706
+ }
2707
+
2708
+ .icon-twitter:before {
2709
+ content: "\eb44";
2710
+ }
2711
+
2712
+ .icon-linkedin:before {
2713
+ content: "\eb45";
2714
+ }
2715
+
2716
+ .icon-whatsapp-1:before {
2717
+ content: "\eb46";
2718
+ }
2719
+
2720
+ .icon-dribbble:before {
2721
+ content: "\eb47";
2722
+ }
2723
+
2724
+ .icon-facebook-2:before {
2725
+ content: "\eb48";
2726
+ }
2727
+
2728
+ .icon-twitter1:before {
2729
+ content: "\eb49";
2730
+ }
2731
+
2732
+ .icon-vk:before {
2733
+ content: "\eb4a";
2734
+ }
2735
+
2736
+ .icon-youtube-v:before {
2737
+ content: "\eb4b";
2738
+ }
2739
+
2740
+ .icon-vimeo:before {
2741
+ content: "\eae0";
2742
+ }
2743
+
2744
+ .icon-youtube:before {
2745
+ content: "\eb4c";
2746
+ }
2747
+
2748
+ .icon-snapchat-1:before {
2749
+ content: "\eb4d";
2750
+ }
2751
+
2752
+ .icon-behance:before {
2753
+ content: "\eb4e";
2754
+ }
2755
+
2756
+ .icon-github:before {
2757
+ content: "\eb4f";
2758
+ }
2759
+
2760
+ .icon-pinterest:before {
2761
+ content: "\eb50";
2762
+ }
2763
+
2764
+ .icon-spotify:before {
2765
+ content: "\eb51";
2766
+ }
2767
+
2768
+ .icon-soundcloud-1:before {
2769
+ content: "\eb52";
2770
+ }
2771
+
2772
+ .icon-skype-1:before {
2773
+ content: "\eb53";
2774
+ }
2775
+
2776
+ .icon-rss:before {
2777
+ content: "\eb54";
2778
+ }
2779
+
2780
+ .icon-reddit-1:before {
2781
+ content: "\eb55";
2782
+ }
2783
+
2784
+ .icon-dribbble-1:before {
2785
+ content: "\eb56";
2786
+ }
2787
+
2788
+ .icon-wordpress-1:before {
2789
+ content: "\eb57";
2790
+ }
2791
+
2792
+ .icon-logo:before {
2793
+ content: "\eb58";
2794
+ }
2795
+
2796
+ .icon-dropbox-1:before {
2797
+ content: "\eb59";
2798
+ }
2799
+
2800
+ .icon-blogger-1:before {
2801
+ content: "\eb5a";
2802
+ }
2803
+
2804
+ .icon-photo:before {
2805
+ content: "\eb5b";
2806
+ }
2807
+
2808
+ .icon-hangouts:before {
2809
+ content: "\eb5c";
2810
+ }
2811
+
2812
+ .icon-xing:before {
2813
+ content: "\eb5d";
2814
+ }
2815
+
2816
+ .icon-myspace:before {
2817
+ content: "\eb5e";
2818
+ }
2819
+
2820
+ .icon-flickr-1:before {
2821
+ content: "\eb5f";
2822
+ }
2823
+
2824
+ .icon-envato:before {
2825
+ content: "\eb60";
2826
+ }
2827
+
2828
+ .icon-picasa-1:before {
2829
+ content: "\eb61";
2830
+ }
2831
+
2832
+ .icon-wattpad:before {
2833
+ content: "\eb62";
2834
+ }
2835
+
2836
+ .icon-emoji:before {
2837
+ content: "\eb63";
2838
+ }
2839
+
2840
+ .icon-deviantart-1:before {
2841
+ content: "\eb64";
2842
+ }
2843
+
2844
+ .icon-yahoo-1:before {
2845
+ content: "\eb65";
2846
+ }
2847
+
2848
+ .icon-vine-1:before {
2849
+ content: "\eb66";
2850
+ }
2851
+
2852
+ .icon-delicious:before {
2853
+ content: "\eb67";
2854
+ }
2855
+
2856
+ .icon-kickstarter-1:before {
2857
+ content: "\eb68";
2858
+ }
2859
+
2860
+ .icon-stumbleupon-1:before {
2861
+ content: "\eb69";
2862
+ }
2863
+
2864
+ .icon-brands-and-logotypes:before {
2865
+ content: "\eb6a";
2866
+ }
2867
+
2868
+ .icon-instagram-1:before {
2869
+ content: "\eb6c";
2870
+ }
2871
+
2872
+ .icon-facebook-1:before {
2873
+ content: "\eb6d";
2874
+ }
2875
+
2876
+ .icon-instagram-2:before {
2877
+ content: "\eb6e";
2878
+ }
2879
+
2880
+ .icon-twitter-1:before {
2881
+ content: "\eb6f";
2882
+ }
2883
+
2884
+ .icon-whatsapp-2:before {
2885
+ content: "\eb70";
2886
+ }
2887
+
2888
+ .icon-youtube-1:before {
2889
+ content: "\eb71";
2890
+ }
2891
+
2892
+ .icon-linkedin-1:before {
2893
+ content: "\eb72";
2894
+ }
2895
+
2896
+ .icon-telegram:before {
2897
+ content: "\eb73";
2898
+ }
2899
+
2900
+ .icon-github-1:before {
2901
+ content: "\eb74";
2902
+ }
2903
+
2904
+ .icon-vk-1:before {
2905
+ content: "\eb75";
2906
+ }
2907
+
2908
+ .icon-pinterest-1:before {
2909
+ content: "\eb76";
2910
+ }
2911
+
2912
+ .icon-rss-1:before {
2913
+ content: "\eb77";
2914
+ }
2915
+
2916
+ .icon-twitch:before {
2917
+ content: "\eb78";
2918
+ }
2919
+
2920
+ .icon-snapchat-2:before {
2921
+ content: "\eb79";
2922
+ }
2923
+
2924
+ .icon-skype-2:before {
2925
+ content: "\eb7a";
2926
+ }
2927
+
2928
+ .icon-behance-2:before {
2929
+ content: "\eb7b";
2930
+ }
2931
+
2932
+ .icon-spotify-1:before {
2933
+ content: "\eb7c";
2934
+ }
2935
+
2936
+ .icon-periscope:before {
2937
+ content: "\eb7d";
2938
+ }
2939
+
2940
+ .icon-dribbble-2:before {
2941
+ content: "\eb7e";
2942
+ }
2943
+
2944
+ .icon-tumblr-1:before {
2945
+ content: "\eb7f";
2946
+ }
2947
+
2948
+ .icon-soundcloud-2:before {
2949
+ content: "\eb80";
2950
+ }
2951
+
2952
+ .icon-google-drive-1:before {
2953
+ content: "\eb81";
2954
+ }
2955
+
2956
+ .icon-dropbox-2:before {
2957
+ content: "\eb82";
2958
+ }
2959
+
2960
+ .icon-reddit-2:before {
2961
+ content: "\eb83";
2962
+ }
2963
+
2964
+ .icon-html:before {
2965
+ content: "\eb84";
2966
+ }
2967
+
2968
+ .icon-vimeo-1:before {
2969
+ content: "\eb85";
2970
+ }
2971
+
2972
+ .icon-hangout:before {
2973
+ content: "\eb86";
2974
+ }
2975
+
2976
+ .icon-blogger-2:before {
2977
+ content: "\eb87";
2978
+ }
2979
+
2980
+ .icon-yahoo-2:before {
2981
+ content: "\eb88";
2982
+ }
2983
+
2984
+ .icon-path:before {
2985
+ content: "\eb89";
2986
+ }
2987
+
2988
+ .icon-yelp-1:before {
2989
+ content: "\eb8a";
2990
+ }
2991
+
2992
+ .icon-slideshare:before {
2993
+ content: "\eb8b";
2994
+ }
2995
+
2996
+ .icon-picasa-2:before {
2997
+ content: "\eb8c";
2998
+ }
2999
+
3000
+ .icon-myspace-1:before {
3001
+ content: "\eb8d";
3002
+ }
3003
+
3004
+ .icon-flickr-2:before {
3005
+ content: "\eb8e";
3006
+ }
3007
+
3008
+ .icon-xing-1:before {
3009
+ content: "\eb8f";
3010
+ }
3011
+
3012
+ .icon-envato-1:before {
3013
+ content: "\eb90";
3014
+ }
3015
+
3016
+ .icon-swarm:before {
3017
+ content: "\eb91";
3018
+ }
3019
+
3020
+ .icon-wattpad-1:before {
3021
+ content: "\eb92";
3022
+ }
3023
+
3024
+ .icon-foursquare:before {
3025
+ content: "\eb93";
3026
+ }
3027
+
3028
+ .icon-deviantart-2:before {
3029
+ content: "\eb94";
3030
+ }
3031
+
3032
+ .icon-kickstarter-2:before {
3033
+ content: "\eb95";
3034
+ }
3035
+
3036
+ .icon-delicious-1:before {
3037
+ content: "\eb96";
3038
+ }
3039
+
3040
+ .icon-vine-2:before {
3041
+ content: "\eb97";
3042
+ }
3043
+
3044
+ .icon-digg:before {
3045
+ content: "\eb98";
3046
+ }
3047
+
3048
+ .icon-bebo:before {
3049
+ content: "\eb99";
3050
+ }
3051
+
3052
+ .icon-stumbleupon-2:before {
3053
+ content: "\eb9a";
3054
+ }
3055
+
3056
+ .icon-forrst:before {
3057
+ content: "\eb9b";
3058
+ }
3059
+
3060
+ .icon-eye3:before {
3061
+ content: "\eb9d";
3062
+ }
3063
+
3064
+ .icon-microscope:before {
3065
+ content: "\eb9e";
3066
+ }
3067
+
3068
+ .icon-Anti-Lock:before {
3069
+ content: "\eb9f";
3070
+ }
3071
+
3072
+ .icon-apartment:before {
3073
+ content: "\eba0";
3074
+ }
3075
+
3076
+ .icon-app:before {
3077
+ content: "\eba2";
3078
+ }
3079
+
3080
+ .icon-Aroma:before {
3081
+ content: "\eba3";
3082
+ }
3083
+
3084
+ .icon-bamboo-Leaf:before {
3085
+ content: "\eba5";
3086
+ }
3087
+
3088
+ .icon-basket:before {
3089
+ content: "\eba6";
3090
+ }
3091
+
3092
+ .icon-Battery:before {
3093
+ content: "\eba7";
3094
+ }
3095
+
3096
+ .icon-Bettery:before {
3097
+ content: "\eba8";
3098
+ }
3099
+
3100
+ .icon-building:before {
3101
+ content: "\eba9";
3102
+ }
3103
+
3104
+ .icon-car-2:before {
3105
+ content: "\ebaa";
3106
+ }
3107
+
3108
+ .icon-Car:before {
3109
+ content: "\ebab";
3110
+ }
3111
+
3112
+ .icon-Child:before {
3113
+ content: "\ebac";
3114
+ }
3115
+
3116
+ .icon-cityscape:before {
3117
+ content: "\ebad";
3118
+ }
3119
+
3120
+ .icon-cleaner:before {
3121
+ content: "\ebae";
3122
+ }
3123
+
3124
+ .icon-Coffee-cup:before {
3125
+ content: "\ebaf";
3126
+ }
3127
+
3128
+ .icon-coins:before {
3129
+ content: "\ebb0";
3130
+ }
3131
+
3132
+ .icon-Computer:before {
3133
+ content: "\ebb1";
3134
+ }
3135
+
3136
+ .icon-Consultancy:before {
3137
+ content: "\ebb2";
3138
+ }
3139
+
3140
+ .icon-cottage:before {
3141
+ content: "\ebb3";
3142
+ }
3143
+
3144
+ .icon-crane:before {
3145
+ content: "\ebb4";
3146
+ }
3147
+
3148
+ .icon-Custom-api:before {
3149
+ content: "\ebb5";
3150
+ }
3151
+
3152
+ .icon-customer-support-2:before {
3153
+ content: "\ebb6";
3154
+ }
3155
+
3156
+ .icon-Design-2:before {
3157
+ content: "\ebb7";
3158
+ }
3159
+
3160
+ .icon-Design-3:before {
3161
+ content: "\ebb8";
3162
+ }
3163
+
3164
+ .icon-design:before {
3165
+ content: "\ebb9";
3166
+ }
3167
+
3168
+ .icon-diamond:before {
3169
+ content: "\ebba";
3170
+ }
3171
+
3172
+ .icon-diploma:before {
3173
+ content: "\ebbb";
3174
+ }
3175
+
3176
+ .icon-Document-Search:before {
3177
+ content: "\ebbc";
3178
+ }
3179
+
3180
+ .icon-Download:before {
3181
+ content: "\ebbd";
3182
+ }
3183
+
3184
+ .icon-drilling:before {
3185
+ content: "\ebbe";
3186
+ }
3187
+
3188
+ .icon-engine:before {
3189
+ content: "\ebbf";
3190
+ }
3191
+
3192
+ .icon-engineer:before {
3193
+ content: "\ebc0";
3194
+ }
3195
+
3196
+ .icon-envelope:before {
3197
+ content: "\ebc1";
3198
+ }
3199
+
3200
+ .icon-Family:before {
3201
+ content: "\ebc2";
3202
+ }
3203
+
3204
+ .icon-friendship:before {
3205
+ content: "\ebc3";
3206
+ }
3207
+
3208
+ .icon-gift:before {
3209
+ content: "\ebc4";
3210
+ }
3211
+
3212
+ .icon-graph-2:before {
3213
+ content: "\ebc5";
3214
+ }
3215
+
3216
+ .icon-graph:before {
3217
+ content: "\ebc6";
3218
+ }
3219
+
3220
+ .icon-hamburger-2:before {
3221
+ content: "\ebc7";
3222
+ }
3223
+
3224
+ .icon-handshake:before {
3225
+ content: "\ebc8";
3226
+ }
3227
+
3228
+ .icon-Helmet:before {
3229
+ content: "\ebc9";
3230
+ }
3231
+
3232
+ .icon-hot-Stone-2:before {
3233
+ content: "\ebca";
3234
+ }
3235
+
3236
+ .icon-hot-stone:before {
3237
+ content: "\ebcb";
3238
+ }
3239
+
3240
+ .icon-idea:before {
3241
+ content: "\ebcc";
3242
+ }
3243
+
3244
+ .icon-Leaf:before {
3245
+ content: "\ebcd";
3246
+ }
3247
+
3248
+ .icon-management:before {
3249
+ content: "\ebce";
3250
+ }
3251
+
3252
+ .icon-Massage-table:before {
3253
+ content: "\ebcf";
3254
+ }
3255
+
3256
+ .icon-Mechanic:before {
3257
+ content: "\ebd0";
3258
+ }
3259
+
3260
+ .icon-Money-2:before {
3261
+ content: "\ebd2";
3262
+ }
3263
+
3264
+ .icon-money-bag:before {
3265
+ content: "\ebd3";
3266
+ }
3267
+
3268
+ .icon-Money:before {
3269
+ content: "\ebd4";
3270
+ }
3271
+
3272
+ .icon-oil-bottle:before {
3273
+ content: "\ebd5";
3274
+ }
3275
+
3276
+ .icon-Physiotherapy:before {
3277
+ content: "\ebd6";
3278
+ }
3279
+
3280
+ .icon-Profile:before {
3281
+ content: "\ebd7";
3282
+ }
3283
+
3284
+ .icon-Rating:before {
3285
+ content: "\ebd8";
3286
+ }
3287
+
3288
+ .icon-right-mark:before {
3289
+ content: "\ebd9";
3290
+ }
3291
+
3292
+ .icon-rings:before {
3293
+ content: "\ebda";
3294
+ }
3295
+
3296
+ .icon-Safe-house:before {
3297
+ content: "\ebdb";
3298
+ }
3299
+
3300
+ .icon-Scan:before {
3301
+ content: "\ebdc";
3302
+ }
3303
+
3304
+ .icon-social-care:before {
3305
+ content: "\ebdd";
3306
+ }
3307
+
3308
+ .icon-Speed-Clock:before {
3309
+ content: "\ebde";
3310
+ }
3311
+
3312
+ .icon-stopwatch:before {
3313
+ content: "\ebdf";
3314
+ }
3315
+
3316
+ .icon-Support-2:before {
3317
+ content: "\ebe0";
3318
+ }
3319
+
3320
+ .icon-target-2:before {
3321
+ content: "\ebe1";
3322
+ }
3323
+
3324
+ .icon-Target:before {
3325
+ content: "\ebe2";
3326
+ }
3327
+
3328
+ .icon-tripod:before {
3329
+ content: "\ebe3";
3330
+ }
3331
+
3332
+ .icon-truck:before {
3333
+ content: "\ebe4";
3334
+ }
3335
+
3336
+ .icon-university:before {
3337
+ content: "\ebe5";
3338
+ }
3339
+
3340
+ .icon-User:before {
3341
+ content: "\ebe6";
3342
+ }
3343
+
3344
+ .icon-Web-Portals:before {
3345
+ content: "\ebe7";
3346
+ }
3347
+
3348
+ .icon-window:before {
3349
+ content: "\ebe8";
3350
+ }
3351
+
3352
+ .icon-ek_line_icon:before {
3353
+ content: "\ebe9";
3354
+ }
3355
+
3356
+ .icon-ek_stroke_icon:before {
3357
+ content: "\eba1";
3358
+ }
3359
+
3360
+ .icon-ekit:before {
3361
+ content: "\e947";
3362
+ }
3363
+
3364
+ .icon-elements-kit-logo:before {
3365
+ content: "\e90d";
3366
+ }
3367
+
3368
+ .icon-degree-image:before {
3369
+ content: "\e900";
3370
+ }
3371
+
3372
+ .icon-accordion:before {
3373
+ content: "\e901";
3374
+ }
3375
+
3376
+ .icon-animated-flip-box:before {
3377
+ content: "\e902";
3378
+ }
3379
+
3380
+ .icon-animated-text:before {
3381
+ content: "\e903";
3382
+ }
3383
+
3384
+ .icon-brands:before {
3385
+ content: "\e904";
3386
+ }
3387
+
3388
+ .icon-business-hour:before {
3389
+ content: "\e905";
3390
+ }
3391
+
3392
+ .icon-button:before {
3393
+ content: "\e906";
3394
+ }
3395
+
3396
+ .icon-carousel:before {
3397
+ content: "\e907";
3398
+ }
3399
+
3400
+ .icon-Circle-progress:before {
3401
+ content: "\e908";
3402
+ }
3403
+
3404
+ .icon-contact-form:before {
3405
+ content: "\e909";
3406
+ }
3407
+
3408
+ .icon-countdown-timer:before {
3409
+ content: "\e90a";
3410
+ }
3411
+
3412
+ .icon-dropbar:before {
3413
+ content: "\e90c";
3414
+ }
3415
+
3416
+ .icon-faq:before {
3417
+ content: "\e90e";
3418
+ }
3419
+
3420
+ .icon-full-width-scroll:before {
3421
+ content: "\e90f";
3422
+ }
3423
+
3424
+ .icon-google-map:before {
3425
+ content: "\e910";
3426
+ }
3427
+
3428
+ .icon-heading-style:before {
3429
+ content: "\e911";
3430
+ }
3431
+
3432
+ .icon-help-desk:before {
3433
+ content: "\e912";
3434
+ }
3435
+
3436
+ .icon-horizontal-timeline:before {
3437
+ content: "\e913";
3438
+ }
3439
+
3440
+ .icon-iframe:before {
3441
+ content: "\e914";
3442
+ }
3443
+
3444
+ .icon-image-comparison:before {
3445
+ content: "\e915";
3446
+ }
3447
+
3448
+ .icon-image-gallery:before {
3449
+ content: "\e916";
3450
+ }
3451
+
3452
+ .icon-image-justify:before {
3453
+ content: "\e917";
3454
+ }
3455
+
3456
+ .icon-image-magnifier:before {
3457
+ content: "\e918";
3458
+ }
3459
+
3460
+ .icon-image-masonry:before {
3461
+ content: "\e919";
3462
+ }
3463
+
3464
+ .icon-inline-svg:before {
3465
+ content: "\e91a";
3466
+ }
3467
+
3468
+ .icon-instagram:before {
3469
+ content: "\e91b";
3470
+ }
3471
+
3472
+ .icon-listing:before {
3473
+ content: "\e91c";
3474
+ }
3475
+
3476
+ .icon-music-player:before {
3477
+ content: "\e91d";
3478
+ }
3479
+
3480
+ .icon-news-ticker:before {
3481
+ content: "\e91e";
3482
+ }
3483
+
3484
+ .icon-off-canvus-menu:before {
3485
+ content: "\e91f";
3486
+ }
3487
+
3488
+ .icon-parallax:before {
3489
+ content: "\e920";
3490
+ }
3491
+
3492
+ .icon-portfolio:before {
3493
+ content: "\e921";
3494
+ }
3495
+
3496
+ .icon-post-banner:before {
3497
+ content: "\e922";
3498
+ }
3499
+
3500
+ .icon-post-carousel:before {
3501
+ content: "\e923";
3502
+ }
3503
+
3504
+ .icon-post-grid:before {
3505
+ content: "\e924";
3506
+ }
3507
+
3508
+ .icon-post-slider:before {
3509
+ content: "\e925";
3510
+ }
3511
+
3512
+ .icon-pricing-list:before {
3513
+ content: "\e926";
3514
+ }
3515
+
3516
+ .icon-pricing-table:before {
3517
+ content: "\e927";
3518
+ }
3519
+
3520
+ .icon-product-featured:before {
3521
+ content: "\e928";
3522
+ }
3523
+
3524
+ .icon-product-image:before {
3525
+ content: "\e929";
3526
+ }
3527
+
3528
+ .icon-product-recent:before {
3529
+ content: "\e92a";
3530
+ }
3531
+
3532
+ .icon-product-sale:before {
3533
+ content: "\e92b";
3534
+ }
3535
+
3536
+ .icon-product-top-rated:before {
3537
+ content: "\e92c";
3538
+ }
3539
+
3540
+ .icon-product-top-seller:before {
3541
+ content: "\e92d";
3542
+ }
3543
+
3544
+ .icon-progress-bar:before {
3545
+ content: "\e92e";
3546
+ }
3547
+
3548
+ .icon-protected-content-v2:before {
3549
+ content: "\e92f";
3550
+ }
3551
+
3552
+ .icon-protected-content-v3:before {
3553
+ content: "\e930";
3554
+ }
3555
+
3556
+ .icon-protected-content:before {
3557
+ content: "\e931";
3558
+ }
3559
+
3560
+ .icon-qr_code:before {
3561
+ content: "\e932";
3562
+ }
3563
+
3564
+ .icon-scroll-button:before {
3565
+ content: "\e933";
3566
+ }
3567
+
3568
+ .icon-search1:before {
3569
+ content: "\e934";
3570
+ }
3571
+
3572
+ .icon-service:before {
3573
+ content: "\e935";
3574
+ }
3575
+
3576
+ .icon-slider-image:before {
3577
+ content: "\e936";
3578
+ }
3579
+
3580
+ .icon-social-share:before {
3581
+ content: "\e937";
3582
+ }
3583
+
3584
+ .icon-subscribe:before {
3585
+ content: "\e938";
3586
+ }
3587
+
3588
+ .icon-tab:before {
3589
+ content: "\e939";
3590
+ }
3591
+
3592
+ .icon-table:before {
3593
+ content: "\e93a";
3594
+ }
3595
+
3596
+ .icon-team-join:before {
3597
+ content: "\e93b";
3598
+ }
3599
+
3600
+ .icon-team-member:before {
3601
+ content: "\e93c";
3602
+ }
3603
+
3604
+ .icon-testimonial-carousel:before {
3605
+ content: "\e93d";
3606
+ }
3607
+
3608
+ .icon-testimonial-grid:before {
3609
+ content: "\e93e";
3610
+ }
3611
+
3612
+ .icon-testimonial-quote:before {
3613
+ content: "\e93f";
3614
+ }
3615
+
3616
+ .icon-testimonial-slider:before {
3617
+ content: "\e940";
3618
+ }
3619
+
3620
+ .icon-toggle:before {
3621
+ content: "\e941";
3622
+ }
3623
+
3624
+ .icon-user-login:before {
3625
+ content: "\e942";
3626
+ }
3627
+
3628
+ .icon-user-registration:before {
3629
+ content: "\e943";
3630
+ }
3631
+
3632
+ .icon-vertical-timeline:before {
3633
+ content: "\e944";
3634
+ }
3635
+
3636
+ .icon-video-player:before {
3637
+ content: "\e945";
3638
+ }
3639
+
3640
+ .icon-weather:before {
3641
+ content: "\e946";
3642
+ }
modules/controls/assets/css/imagechoose.css ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .elementor-image-choices{
2
+ margin: 0 0 -2px 0;
3
+ }
4
+ .elementor-image-choices img {
5
+ max-width: 100%;
6
+ height: auto;
7
+ border: 0;
8
+ display: block;
9
+ }
10
+ .elementor-image-choices:after{
11
+ content: "";
12
+ clear: both;
13
+ display: block;
14
+ }
15
+ .image-choose-label-block{
16
+ float: left;
17
+ margin: 0 0 2px 0;
18
+ }
19
+ .image-choose-label-block .imagesmall{
20
+ width: 100%;
21
+ height: auto;
22
+ display: block;
23
+ cursor: pointer;
24
+ }
25
+ .image-choose-label-block .imagelarge{
26
+ position: fixed;
27
+ margin-bottom: 5px;
28
+ display: block;
29
+ z-index: 99999;
30
+ visibility: hidden;
31
+ opacity: 0;
32
+ transition: opacity 200ms linear;
33
+ border: 5px solid #222;
34
+ }
35
+ .image-choose-label-block .imagelarge:after{
36
+ position: absolute;
37
+ left: -5px;
38
+ top: -15px;
39
+ content: '';
40
+ width: 0;
41
+ height: 0;
42
+ border-bottom: 10px solid #222;
43
+ border-right: 20px solid transparent;
44
+ }
45
+ .image-choose-label-block .imagelarge.preview-top{
46
+ transform: translateY(-100%);
47
+ }
48
+ .image-choose-label-block .imagelarge.preview-top:after{
49
+ bottom: -15px;
50
+ top: auto;
51
+ border-bottom: 0;
52
+ border-top: 10px solid #222;
53
+ border-right: 20px solid transparent;
54
+ }
55
+
56
+ .image-choose-label-block:hover .imagelarge{
57
+ visibility: visible;
58
+ opacity: 1;
59
+ }
60
+
61
+ .image-choose-label-block input{
62
+ display: none!important;
63
+ }
64
+ .elementor-image-choices-label{
65
+ display: block;
66
+ }
67
+ .elementor-image-choices .elementor-image-choices-label{
68
+ border: 3px solid rgba(0, 0, 0, 0.08);
69
+ padding: 2px;
70
+ }
71
+ .elementor-image-choices input.checked+.elementor-image-choices-label{
72
+ border: 3px solid #a4afb7;
73
+ }
modules/controls/assets/css/widgetarea-editor.css ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* editor file */
2
+
3
+ .widgetarea_warper_edit {
4
+ display: none;
5
+ position: absolute;
6
+ top: 0;
7
+ right: 0;
8
+ color: #fff;
9
+ background: #71d7f7;
10
+ line-height: 1;
11
+ padding: 7px 8px;
12
+ font-size: 11px;
13
+ border-bottom-left-radius: 3px;
14
+ cursor: pointer;
15
+ z-index: 99999;
16
+ }
17
+
18
+ .widgetarea_warper_editable {
19
+ min-height: 30px;
20
+ min-width: 100px;
21
+ position: relative;
22
+ }
23
+
24
+ .widgetarea_iframe_modal {
25
+ display: none;
26
+ }
27
+
28
+ .widgetarea_iframe_modal .dialog-widget-content {
29
+ position: static !important;
30
+ margin-top: 10px;
31
+ }
32
+
33
+ .elementor-editor-active .widgetarea_warper_editable:hover {
34
+ outline: 1px solid #71d7f7;
35
+ }
36
+
37
+ .elementor-editor-active .widgetarea_warper_editable:hover>.widgetarea_warper_edit {
38
+ display: block;
39
+ }
40
+
41
+ .elementor-editor-active .widgetarea_warper_editable .widgetarea_warper_editable .widgetarea_warper_edit {
42
+ display: none!important;
43
+ }
modules/controls/assets/css/widgetarea-inspactor.css ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* modal css */
2
+ .widgetarea_warper_editable {
3
+ position: relative; }
4
+ .widgetarea_warper_editable:hover {
5
+ outline: 1px solid #71d7f7; }
6
+ .widgetarea_warper_editable:hover .widgetarea_warper_edit {
7
+ display: block; }
8
+
9
+ .widgetarea_iframe_modal {
10
+ display: none; }
11
+ .widgetarea_iframe_modal .dialog-message {
12
+ position: relative; }
13
+ .widgetarea_iframe_modal iframe {
14
+ position: absolute;
15
+ top: 0;
16
+ bottom: 0;
17
+ right: 0;
18
+ left: 0;
19
+ width: 100%;
20
+ height: 100%; }
21
+ .widgetarea_iframe_modal .dialog-widget-content {
22
+ position: static !important;
23
+ margin-top: 10px; }
24
+
25
+ .widgetarea_warper_edit {
26
+ display: none;
27
+ position: absolute;
28
+ top: 0;
29
+ right: 0;
30
+ color: #fff;
31
+ background: #71d7f7;
32
+ line-height: 1;
33
+ padding: 7px 8px;
34
+ font-size: 11px;
35
+ border-bottom-left-radius: 3px;
36
+ cursor: pointer; }
37
+
38
+ .elementskit-dynamic-content-modal .dialog-widget-content {
39
+ max-width: 90% !important;
40
+ margin-top: 20px !important;
41
+ margin-bottom: 20px !important; }
42
+
43
+ .elementor-device-desktop #elementor-preview-responsive-wrapper {
44
+ min-width: auto !important; }
45
+
46
+ .elementskit-dynamic-content-modal .dialog-message {
47
+ overflow: unset !important; }
modules/controls/assets/fonts/elementskit.svg ADDED
@@ -0,0 +1,933 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>
5
+ <json>
6
+ <![CDATA[
7
+ {
8
+ "fontFamily": "elementskit",
9
+ "majorVersion": 1,
10
+ "minorVersion": 0,
11
+ "fontURL": "https://agencify.com",
12
+ "designerURL": "https://xpeedstudio.com",
13
+ "version": "Version 1.0",
14
+ "fontId": "elementskit",
15
+ "psName": "elementskit",
16
+ "subFamily": "Regular",
17
+ "fullName": "elementskit",
18
+ "description": "Font generated by IcoMoon."
19
+ }
20
+ ]]>
21
+ </json>
22
+ </metadata>
23
+ <defs>
24
+ <font id="elementskit" horiz-adv-x="1024">
25
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
26
+ <missing-glyph horiz-adv-x="1024" />
27
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
28
+ <glyph unicode="&#xe800;" glyph-name="home" data-tags="home" d="M1017.382 337.174l-452.050 499.634c-14.051 15.533-32.992 24.086-53.333 24.086-0.002 0 0 0 0 0-20.339 0-39.282-8.555-53.334-24.086l-452.050-499.634c-9.485-10.485-8.675-26.674 1.808-36.158 4.899-4.432 11.043-6.616 17.168-6.616 6.982 0 13.938 2.838 18.992 8.426l109.016 120.491v-410.517c0-42.347 34.453-76.8 76.8-76.8h563.2c42.347 0 76.8 34.453 76.8 76.8v410.517l109.018-120.493c9.485-10.483 25.674-11.296 36.158-1.808 10.483 9.485 11.293 25.675 1.806 36.158zM614.4-12.8h-204.8v230.4c0 14.115 11.485 25.6 25.6 25.6h153.6c14.115 0 25.6-11.485 25.6-25.6v-230.4zM819.2 12.8c0-14.115-11.485-25.6-25.6-25.6h-128v230.4c0 42.349-34.451 76.8-76.8 76.8h-153.6c-42.347 0-76.8-34.451-76.8-76.8v-230.4h-128c-14.115 0-25.6 11.485-25.6 25.6v467.106l291.832 322.552c4.222 4.667 9.68 7.237 15.368 7.237s11.146-2.57 15.366-7.235l291.834-322.552v-467.107z" />
29
+ <glyph unicode="&#xe801;" glyph-name="apartment1" data-tags="apartment" d="M716.8 652.8h51.2v-51.2h-51.2v51.2zM716.8 550.4h51.2v-51.2h-51.2v51.2zM716.8 448h51.2v-51.2h-51.2v51.2zM716.8 345.6h51.2v-51.2h-51.2v51.2zM716.8 140.8h51.2v-51.2h-51.2v51.2zM716.8 243.2h51.2v-51.2h-51.2v51.2zM307.2 652.8h51.2v-51.2h-51.2v51.2zM307.2 550.4h51.2v-51.2h-51.2v51.2zM307.2 448h51.2v-51.2h-51.2v51.2zM307.2 345.6h51.2v-51.2h-51.2v51.2zM307.2 140.8h51.2v-51.2h-51.2v51.2zM307.2 243.2h51.2v-51.2h-51.2v51.2zM204.8 652.8h51.2v-51.2h-51.2v51.2zM204.8 550.4h51.2v-51.2h-51.2v51.2zM204.8 448h51.2v-51.2h-51.2v51.2zM204.8 345.6h51.2v-51.2h-51.2v51.2zM204.8 140.8h51.2v-51.2h-51.2v51.2zM204.8 243.2h51.2v-51.2h-51.2v51.2zM409.6 652.8h51.2v-51.2h-51.2v51.2zM409.6 550.4h51.2v-51.2h-51.2v51.2zM409.6 448h51.2v-51.2h-51.2v51.2zM409.6 345.6h51.2v-51.2h-51.2v51.2zM409.6 140.8h51.2v-51.2h-51.2v51.2zM409.6 243.2h51.2v-51.2h-51.2v51.2zM947.2-12.8h-25.6v691.2c0 39.058-29.024 79.326-66.077 91.677l-241.123 80.374v83.949c0 8.093-3.827 15.709-10.318 20.539-6.493 4.829-14.888 6.306-22.637 3.981l-462.96-138.886c-37.73-11.32-67.285-51.043-67.285-90.434v-742.4h-25.6c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h921.6c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6zM839.333 721.504c16.259-5.419 31.067-25.965 31.067-43.104v-691.2h-256v809.282l224.933-74.978zM102.4 729.6c0 16.827 14.678 36.557 30.797 41.392l430.003 129.002v-912.794h-460.8v742.4z" />
30
+ <glyph unicode="&#xe802;" glyph-name="pencil" data-tags="pencil" d="M978.101 914.102c-28.77 28.768-67.018 44.611-107.701 44.611-40.685 0-78.933-15.843-107.701-44.611l-652.8-652.8c-2.645-2.645-4.678-5.837-5.957-9.354l-102.4-281.6c-3.4-9.347-1.077-19.818 5.957-26.85 4.885-4.888 11.43-7.499 18.104-7.499 2.933 0 5.891 0.502 8.744 1.541l281.6 102.4c3.515 1.28 6.709 3.312 9.354 5.958l652.8 652.8c28.768 28.768 44.613 67.018 44.613 107.702s-15.843 78.933-44.613 107.701zM293.114 86.117l-224.709-81.71 81.712 224.707 566.683 566.683 142.997-142.997-566.683-566.683zM941.899 734.902l-45.899-45.899-142.997 142.997 45.899 45.899c19.098 19.098 44.49 29.614 71.498 29.614s52.4-10.518 71.499-29.616c19.098-19.098 29.616-44.49 29.616-71.498s-10.52-52.4-29.616-71.498z" />
31
+ <glyph unicode="&#xe803;" glyph-name="magic-wand" data-tags="magic-wand" d="M588.8 601.6c-14.139 0-25.6 11.462-25.6 25.6 0 70.579-57.421 128-128 128-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6c70.579 0 128 57.421 128 128 0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6c0-70.579 57.421-128 128-128 14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6c-70.579 0-128-57.421-128-128 0-14.138-11.461-25.6-25.6-25.6zM527.426 780.8c25.11-15.136 46.238-36.264 61.374-61.376 15.136 25.112 36.264 46.24 61.376 61.376-25.112 15.136-46.24 36.264-61.376 61.376-15.136-25.112-36.264-46.24-61.374-61.376zM76.8 448c-14.138 0-25.6 11.462-25.6 25.6 0 14.115-11.485 25.6-25.6 25.6-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6c14.115 0 25.6 11.485 25.6 25.6 0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6c0-14.115 11.485-25.6 25.6-25.6 14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6c-14.115 0-25.6-11.485-25.6-25.6 0-14.138-11.462-25.6-25.6-25.6zM929.101 143.904l-541.995 541.994c-14.466 14.466-33.752 22.432-54.306 22.432s-39.84-7.966-54.306-22.432l-29.992-29.992c-14.466-14.466-22.432-33.752-22.432-54.306s7.966-39.84 22.432-54.306l541.994-541.992c14.464-14.466 33.75-22.434 54.304-22.434s39.84 7.965 54.306 22.434l29.994 29.992c14.466 14.464 22.432 33.752 22.432 54.304s-7.965 39.842-22.43 54.306zM284.706 619.702l29.992 29.992c4.795 4.795 11.224 7.435 18.102 7.435s13.307-2.64 18.102-7.435l73.691-73.693-66.197-66.197-73.691 73.691c-9.982 9.984-9.982 26.224 0 36.206zM892.894 71.498l-29.994-29.992c-4.794-4.794-11.224-7.434-18.099-7.434s-13.306 2.64-18.099 7.434l-432.102 432.099 66.197 66.195 432.098-432.099c9.981-9.981 9.981-26.222 0-36.203zM179.2 704c-14.138 0-25.6 11.462-25.6 25.6 0 42.347-34.453 76.8-76.8 76.8-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6c42.347 0 76.8 34.453 76.8 76.8 0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6c0-42.347 34.453-76.8 76.8-76.8 14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6c-42.347 0-76.8-34.453-76.8-76.8 0-14.138-11.462-25.6-25.6-25.6zM153.52 832c9.725-7.304 18.376-15.957 25.68-25.68 7.304 9.725 15.957 18.376 25.68 25.68-9.725 7.304-18.376 15.957-25.68 25.68-7.304-9.723-15.957-18.376-25.68-25.68zM179.2 192c-14.138 0-25.6 11.461-25.6 25.6 0 42.347-34.453 76.8-76.8 76.8-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6c42.347 0 76.8 34.453 76.8 76.8 0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6c0-42.347 34.453-76.8 76.8-76.8 14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6c-42.347 0-76.8-34.453-76.8-76.8 0-14.139-11.462-25.6-25.6-25.6zM153.52 320c9.725-7.302 18.376-15.957 25.68-25.68 7.304 9.723 15.957 18.374 25.68 25.68-9.725 7.302-18.376 15.957-25.68 25.68-7.304-9.723-15.957-18.378-25.68-25.68z" />
32
+ <glyph unicode="&#xe804;" glyph-name="drop" data-tags="drop" d="M512-64c-82.619 0-159.64 33.55-216.877 94.472-58.013 61.747-89.962 146.387-89.963 238.328 0 150.678 66.979 258.499 137.893 372.653 54.789 88.197 111.443 179.397 144.248 299.683 3.038 11.138 13.155 18.864 24.699 18.864s21.661-7.726 24.699-18.864c32.813-120.317 89.56-211.536 144.438-299.752 71-114.131 138.062-221.933 138.062-372.584 0-92.131-31.749-176.763-89.395-238.301-57.085-60.938-134.437-94.499-217.805-94.499zM512.003 851.792c-34.509-90.949-80.589-165.125-125.459-237.355-69.856-112.451-130.184-209.566-130.184-345.635 0-160.539 109.902-281.6 255.64-281.6 145.944 0 256 121.061 256 281.6 0 136.027-60.4 233.117-130.338 345.539-44.95 72.254-91.112 146.461-125.659 237.451z" />
33
+ <glyph unicode="&#xe805;" glyph-name="lighter" data-tags="lighter" d="M896 499.2h-35.328l-43.786 88.186c-4.325 8.707-13.208 14.214-22.93 14.214h-205.157c-14.139 0-25.6-11.462-25.6-25.6v-76.8h-62.021l-197.41 341.922c-7.069 12.243-22.725 16.443-34.97 9.37l-177.362-102.4c-12.245-7.069-16.44-22.726-9.37-34.97l204.8-354.723c4.742-8.213 13.346-12.805 22.194-12.805 4.342 0 8.746 1.107 12.776 3.434l138.962 80.23v-416.458c0-14.139 11.462-25.6 25.6-25.6h409.6c14.139 0 25.6 11.461 25.6 25.6v460.8c0 14.139-11.461 25.6-25.6 25.6zM870.4 192h-51.2v153.6h51.2v-153.6zM614.4 550.4h163.686l25.422-51.2h-189.109v51.2zM318.408 406.168l-179.2 310.382 133.021 76.8 179.2-310.382-133.021-76.8zM512 38.4v409.6h332.638c0.061 0 0.12-0.006 0.181-0.006 0.035 0 0.074 0.006 0.11 0.006h25.47v-51.2h-76.8c-14.139 0-25.6-11.461-25.6-25.6v-204.8c0-14.139 11.461-25.6 25.6-25.6h76.8v-102.4h-358.4zM793.6 652.8c-38.41 0-57.083 18.142-65.984 33.363-16.923 28.938-14.094 72.59 8.654 133.448 15.293 40.915 34.219 74.72 35.018 76.139 4.534 8.061 13.064 13.050 22.312 13.050s17.778-4.989 22.312-13.050c0.798-1.419 19.725-35.224 35.018-76.139 22.749-60.859 25.578-104.51 8.654-133.448-8.901-15.221-27.574-33.363-65.984-33.363zM793.602 824.856c-3.232-7.454-6.502-15.461-9.581-23.73-23.218-62.379-15.211-83.984-12.205-89.12 1.282-2.19 4.685-8.006 21.784-8.006 17.101 0 20.506 5.821 21.787 8.011 3.021 5.165 11.050 26.891-12.418 89.674-3.021 8.085-6.214 15.894-9.368 23.171z" />
34
+ <glyph unicode="&#xe806;" glyph-name="poop" data-tags="poop" d="M873.333 278.893c-3.966 2.246-8.048 4.443-12.222 6.6 48.915 38.344 60.49 80.262 60.49 111.307 0 72.674-61.078 135.928-162.541 174.525 5.875 17.965 8.941 36.88 8.941 55.875 0 98.811-80.389 179.2-179.2 179.2-35.035 0-76.8 8.883-76.8 51.2 0 23.198 29.574 48.541 39.872 55.547 9.354 6.28 13.501 17.936 10.218 28.712s-13.224 18.141-24.49 18.141c-80.245 0-162.696-26.368-226.211-72.346-32.41-23.461-58.131-50.595-76.45-80.65-19.998-32.814-30.139-67.47-30.139-103.005 0-14.744 1.243-29.392 3.608-43.797-43.469-20.992-80.192-48.712-107.018-80.933-32.835-39.437-50.19-84.83-50.19-131.27 0-27.966 6.277-56.472 18.206-84.035-45.49-43.71-69.406-93.979-69.406-146.365 0-78.094 52.608-150.328 148.133-203.397 90.773-50.43 210.906-78.203 338.267-78.203 130.957 0 249.787 17.029 334.603 47.949 125.461 45.738 151.797 110.542 151.797 156.851 0 37.291-17.256 91.518-99.467 138.093zM803.466 32.051c-79.336-28.923-191.939-44.851-317.066-44.851-118.806 0-230.107 25.485-313.402 71.76-78.542 43.634-121.798 99.974-121.798 158.64 0 40.826 21.002 74.779 44.366 99.936 5.885-8.378 12.307-16.573 19.277-24.526 40.771-46.536 97.469-82.053 159.65-100.005 2.371-0.685 4.762-1.011 7.112-1.011 11.114 0 21.347 7.294 24.584 18.504 3.922 13.584-3.91 27.774-17.494 31.698-106.206 30.662-186.294 119.141-186.294 205.805 0 62.675 45.037 122.826 119.269 161.555 26.826-73.859 83.443-135.219 153.798-160.091 2.822-0.998 5.701-1.47 8.533-1.47 10.544 0 20.421 6.566 24.136 17.074 4.712 13.33-2.274 27.957-15.603 32.669-77.837 27.517-136.533 116.192-136.533 206.264 0 51.818 30.333 102.312 85.411 142.179 38.090 27.571 84.11 46.995 131.971 56.328-7.397-13.192-12.582-28.349-12.582-44.907 0-49.502 33.626-102.4 128-102.4 70.579 0 128-57.421 128-128 0-13.867-2.157-27.296-6.403-40.131-20.886 5.683-43.034 10.453-66.326 14.205-13.955 2.246-27.098-7.245-29.346-21.203-2.246-13.958 7.245-27.098 21.205-29.346 71.034-11.442 131.246-33.152 174.128-62.787 27.528-19.022 60.342-50.277 60.342-91.138 0-33.022-21.93-62.36-65.202-87.318-46.827 16.661-101.688 28.875-162.229 35.946-14.043 1.654-26.758-8.413-28.397-22.456s8.414-26.758 22.456-28.397c86.328-10.085 159.312-30.91 211.066-60.23 33.534-18.995 73.506-50.645 73.506-93.544 0-54.286-64.242-89.101-118.134-108.749z" />
35
+ <glyph unicode="&#xe807;" glyph-name="sun" data-tags="sun" d="M486.4 192.378c-126.834 0-230.022 103.187-230.022 230.022s103.189 230.022 230.022 230.022 230.022-103.189 230.022-230.022-103.189-230.022-230.022-230.022zM486.4 601.222c-98.603 0-178.822-80.219-178.822-178.822s80.219-178.822 178.822-178.822 178.822 80.219 178.822 178.822-80.219 178.822-178.822 178.822zM486.4 704c-14.138 0-25.6 11.462-25.6 25.6v153.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-153.6c0-14.138-11.462-25.6-25.6-25.6zM486.4-64c-14.138 0-25.6 11.461-25.6 25.6v153.6c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-153.6c0-14.139-11.462-25.6-25.6-25.6zM179.2 396.8h-153.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h153.6c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM947.2 396.8h-153.6c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h153.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM230.4 652.8c-6.552 0-13.102 2.499-18.101 7.498l-102.4 102.4c-9.998 9.998-9.998 26.206 0 36.203s26.206 9.998 36.203 0l102.4-102.4c9.998-9.998 9.998-26.206 0-36.203-4.998-4.998-11.55-7.498-18.102-7.498zM128 38.4c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l102.4 102.4c9.997 9.997 26.206 9.997 36.203 0s9.998-26.206 0-36.203l-102.4-102.4c-5-5-11.55-7.499-18.102-7.499zM844.8 38.4c-6.552 0-13.102 2.499-18.101 7.499l-102.4 102.4c-9.998 9.997-9.998 26.206 0 36.203 9.997 9.997 26.206 9.997 36.203 0l102.4-102.4c9.998-9.997 9.998-26.206 0-36.203-5-5-11.55-7.499-18.102-7.499zM742.4 652.8c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l102.4 102.4c9.997 9.998 26.206 9.998 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-102.4-102.4c-5-5-11.55-7.499-18.102-7.499z" />
36
+ <glyph unicode="&#xe808;" glyph-name="moon" data-tags="moon" d="M524.8-64c-140.179 0-271.968 54.589-371.090 153.71s-153.71 230.91-153.71 371.090c0 115.242 37 224.010 106.997 314.546 33.528 43.365 73.674 81.155 119.325 112.323 46.050 31.44 96.664 55.424 150.437 71.285 9.819 2.901 20.424-0.336 26.957-8.222s7.738-18.906 3.064-28.016c-33.006-64.339-48.379-125.702-48.379-193.115 0-239.97 195.23-435.2 435.2-435.2 67.414 0 128.776 15.371 193.115 48.378 9.107 4.674 20.13 3.469 28.016-3.064s11.12-17.134 8.224-26.957c-15.861-53.773-39.845-104.387-71.286-150.435-31.166-45.65-68.958-85.797-112.323-119.325-90.536-69.998-199.306-106.997-314.546-106.997zM336.397 890.104c-172.741-73.982-285.197-240.059-285.197-429.304 0-261.144 212.456-473.6 473.6-473.6 189.234 0 355.314 112.475 429.304 285.197-52.406-19.598-105.373-29.197-160.504-29.197-129.922 0-252.067 50.594-343.936 142.462-91.869 91.87-142.464 214.016-142.464 343.938 0 55.131 9.6 108.098 29.197 160.504z" />
37
+ <glyph unicode="&#xe809;" glyph-name="cloud1" data-tags="cloud" d="M819.52 140.8h-512.32c-169.39 0-307.2 137.81-307.2 307.2s137.81 307.2 307.2 307.2c82.034 0 160.589-32.917 218.104-90.866 4.483 9.947 10.048 19.469 16.643 28.403 28.87 39.112 75.093 62.462 123.653 62.462 84.696 0 153.6-68.904 153.6-153.6 0-17.957-3.118-35.523-9.096-52.051 3.126 0.142 6.267 0.211 9.416 0.211 112.75 0 204.48-91.73 204.48-204.48s-91.73-204.48-204.48-204.48zM307.2 704c-141.158 0-256-114.84-256-256s114.842-256 256-256h512.32c84.518 0 153.28 68.762 153.28 153.28s-68.762 153.28-153.28 153.28c-18.128 0-35.794-3.101-52.507-9.222-11.166-4.088-23.677 0.050-30.202 9.989s-5.349 23.064 2.842 31.685c18.28 19.235 28.347 44.307 28.347 70.589 0 56.464-45.936 102.4-102.4 102.4-32.858 0-62.912-15.187-82.456-41.667-11.798-15.986-18.669-34.707-19.867-54.138-0.67-10.85-8.117-20.096-18.574-23.054-10.462-2.966-21.648 1.006-27.906 9.891-5.632 7.997-11.73 15.701-18.126 22.902-48.587 54.696-118.374 86.066-191.47 86.066z" />
38
+ <glyph unicode="&#xe80a;" glyph-name="cloud-upload" data-tags="cloud-upload" d="M819.52 140.8h-179.52c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h179.52c84.518 0 153.28 68.762 153.28 153.28s-68.762 153.28-153.28 153.28c-18.005 0-35.626-3.086-52.368-9.173-11.168-4.056-23.654 0.099-30.163 10.035-6.507 9.938-5.323 23.048 2.859 31.659 18.154 19.106 28.152 44.15 28.152 70.518 0 56.464-45.936 102.4-102.4 102.4-32.858 0-62.912-15.187-82.456-41.667-11.704-15.859-18.533-34.638-19.746-54.307-0.67-10.867-8.141-20.122-18.622-23.069s-21.682 1.059-27.915 9.984l-0.238 0.342c-5.49 7.795-11.549 15.443-17.952 22.653-48.587 54.694-118.374 86.064-191.47 86.064-141.158 0-256-114.842-256-256 0-141.16 114.842-256 256-256h128c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6h-128c-169.39 0-307.2 137.81-307.2 307.2s137.81 307.2 307.2 307.2c82.050 0 160.621-32.933 218.142-90.901 4.47 9.989 10.026 19.52 16.608 28.438 28.867 39.112 75.090 62.462 123.65 62.462 84.696 0 153.6-68.904 153.6-153.6 0-17.976-3.099-35.542-9.035-52.050 3.11 0.139 6.23 0.21 9.357 0.21 112.75 0 204.48-91.73 204.48-204.48-0.002-112.75-91.731-204.48-204.482-204.48zM658.101 338.101l-102.4 102.4c-9.997 9.997-26.206 9.997-36.203 0l-102.4-102.4c-9.997-9.997-9.997-26.206 0-36.203s26.206-9.997 36.205 0l58.698 58.698v-194.195c0-14.139 11.461-25.6 25.6-25.6s25.6 11.461 25.6 25.6v194.195l58.699-58.698c4.998-4.998 11.549-7.498 18.101-7.498s13.102 2.499 18.101 7.499c9.998 9.997 9.998 26.205 0 36.202z" />
39
+ <glyph unicode="&#xe80b;" glyph-name="cloud-download" data-tags="cloud-download" d="M819.52 140.8h-128.32c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h128.32c84.518 0 153.28 68.762 153.28 153.28s-68.762 153.28-153.28 153.28c-18.005 0-35.626-3.086-52.368-9.173-11.168-4.056-23.654 0.099-30.163 10.035-6.507 9.938-5.323 23.048 2.859 31.659 18.154 19.106 28.152 44.15 28.152 70.518 0 56.464-45.936 102.4-102.4 102.4-32.858 0-62.912-15.187-82.456-41.667-11.704-15.859-18.533-34.638-19.746-54.307-0.67-10.867-8.141-20.122-18.622-23.069s-21.682 1.059-27.915 9.984l-0.238 0.342c-5.49 7.795-11.549 15.443-17.952 22.653-48.587 54.694-118.374 86.064-191.47 86.064-141.158 0-256-114.842-256-256 0-141.16 114.842-256 256-256h76.8c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6h-76.8c-169.39 0-307.2 137.81-307.2 307.2s137.81 307.2 307.2 307.2c82.050 0 160.621-32.933 218.142-90.901 4.47 9.989 10.026 19.52 16.608 28.438 28.867 39.112 75.090 62.462 123.65 62.462 84.696 0 153.6-68.904 153.6-153.6 0-17.976-3.099-35.542-9.035-52.050 3.11 0.139 6.23 0.21 9.357 0.21 112.75 0 204.48-91.73 204.48-204.48-0.002-112.75-91.731-204.48-204.482-204.48zM658.101 286.901c-9.997 9.997-26.206 9.997-36.203 0l-58.698-58.696v194.195c0 14.139-11.461 25.6-25.6 25.6s-25.6-11.461-25.6-25.6v-194.195l-58.698 58.698c-9.998 9.997-26.206 9.997-36.205 0-9.997-9.997-9.997-26.206 0-36.203l102.4-102.4c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.101 7.499l102.4 102.4c9.998 9.997 9.998 26.205 0 36.202z" />
40
+ <glyph unicode="&#xe80c;" glyph-name="cloud-sync" data-tags="cloud-sync" d="M819.52 549.76c-3.126 0-6.245-0.070-9.357-0.21 5.938 16.507 9.037 34.074 9.037 52.050 0 84.696-68.904 153.6-153.6 153.6-48.56 0-94.782-23.35-123.65-62.462-6.582-8.918-12.138-18.451-16.608-28.44-57.522 57.97-136.093 90.902-218.142 90.902-169.39 0-307.2-137.81-307.2-307.2s137.81-307.2 307.2-307.2h512.32c112.75 0 204.48 91.73 204.48 204.48s-91.73 204.48-204.48 204.48zM819.52 192h-512.32c-141.158 0-256 114.84-256 256 0 141.158 114.842 256 256 256 73.096 0 142.883-31.37 191.469-86.066 6.403-7.21 12.462-14.858 17.952-22.653l0.238-0.342c6.234-8.923 17.427-12.93 27.915-9.984 10.482 2.947 17.952 12.202 18.622 23.069 1.213 19.669 8.040 38.448 19.746 54.307 19.546 26.482 49.6 41.669 82.458 41.669 56.464 0 102.4-45.936 102.4-102.4 0-26.368-9.998-51.413-28.152-70.518-8.182-8.611-9.366-21.722-2.859-31.659s18.994-14.093 30.163-10.035c16.746 6.086 34.365 9.173 52.368 9.173 84.518 0 153.28-68.762 153.28-153.28s-68.762-153.28-153.28-153.28zM327.867 347.682c-6.749-1.381-13.702-2.082-20.667-2.082-56.464 0-102.4 45.936-102.4 102.4v14.997l7.499-7.499c4.998-4.998 11.549-7.498 18.101-7.498s13.102 2.499 18.101 7.499c9.998 9.997 9.998 26.206 0 36.203l-51.2 51.2c-9.997 9.998-26.206 9.998-36.203 0l-51.2-51.2c-9.998-9.997-9.998-26.206 0-36.203 9.997-9.998 26.206-9.998 36.203 0l7.499 7.498v-14.997c0-84.696 68.904-153.6 153.6-153.6 10.405 0 20.81 1.050 30.928 3.118 13.853 2.834 22.784 16.362 19.95 30.213s-16.352 22.773-30.211 19.95zM468.299 440.501l-7.499-7.498v14.997c0 84.696-68.904 153.6-153.6 153.6-10.403 0-20.81-1.050-30.928-3.12-13.851-2.834-22.782-16.36-19.949-30.211s16.36-22.784 30.211-19.949c6.749 1.381 13.701 2.080 20.667 2.080 56.464 0 102.4-45.936 102.4-102.4v-14.997l-7.499 7.499c-9.997 9.997-26.206 9.997-36.203 0-9.998-9.997-9.998-26.206 0-36.203l51.2-51.2c4.998-5 11.549-7.499 18.101-7.499s13.102 2.499 18.101 7.499l51.2 51.2c9.998 9.997 9.998 26.206 0 36.203-9.997 9.997-26.205 9.997-36.202-0.002z" />
41
+ <glyph unicode="&#xe80d;" glyph-name="cloud-check" data-tags="cloud-check" d="M819.2 140.8h-486.4c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h486.4c84.696 0 153.6 68.904 153.6 153.6s-68.904 153.6-153.6 153.6c-17.576 0-34.797-2.936-51.181-8.726-11.101-3.922-23.451 0.234-29.922 10.075-6.469 9.84-5.389 22.827 2.616 31.464 17.595 18.986 27.286 43.699 27.286 69.587 0 56.464-45.936 102.4-102.4 102.4-53.997 0-98.888-42.162-102.198-95.986-0.667-10.858-8.125-20.107-18.594-23.064-10.474-2.96-21.664 1.027-27.912 9.93-47.957 68.326-126.347 109.12-209.696 109.12-141.158 0-256-114.84-256-256 0-7.77 0.352-15.611 1.045-23.301 1.269-14.082-9.117-26.525-23.198-27.795-14.080-1.278-26.525 9.117-27.795 23.198-0.83 9.211-1.251 18.598-1.251 27.898 0 169.39 137.81 307.2 307.2 307.2 82.483 0 160.917-33.286 218.149-90.933 24.093 53.746 78.16 90.933 140.251 90.933 84.696 0 153.6-68.904 153.6-153.6 0-17.71-3.024-35.056-8.818-51.386 2.931 0.123 5.87 0.186 8.818 0.186 112.926 0 204.8-91.874 204.8-204.8s-91.874-204.8-204.8-204.8zM179.2 166.4c-6.552 0-13.102 2.499-18.102 7.499l-102.4 102.4c-9.997 9.997-9.997 26.206 0 36.203s26.206 9.997 36.205 0l84.298-84.298 237.898 237.898c9.998 9.997 26.206 9.997 36.205 0 9.997-9.997 9.997-26.206 0-36.203l-256-256c-5-5-11.55-7.499-18.102-7.499z" />
42
+ <glyph unicode="&#xe80e;" glyph-name="database1" data-tags="database" d="M925.040 877.621c-25.429 16.701-61.077 31.488-105.955 43.955-89.2 24.778-207.35 38.424-332.685 38.424s-243.485-13.646-332.686-38.424c-44.877-12.467-80.526-27.254-105.955-43.955-31.69-20.813-47.758-44.774-47.758-71.221v-614.4c0-26.446 16.069-50.41 47.758-71.222 25.429-16.701 61.077-31.488 105.955-43.954 89.202-24.779 207.352-38.424 332.686-38.424s243.485 13.645 332.686 38.426c44.878 12.466 80.526 27.253 105.955 43.954 31.69 20.811 47.758 44.774 47.758 71.221v614.4c0 26.446-16.069 50.408-47.76 71.221zM167.418 872.243c84.864 23.574 198.149 36.557 318.982 36.557s234.117-12.982 318.982-36.557c91.928-25.536 116.218-54.235 116.218-65.843s-24.29-40.307-116.218-65.843c-84.866-23.574-198.149-36.557-318.982-36.557s-234.118 12.982-318.982 36.557c-91.928 25.536-116.218 54.235-116.218 65.843s24.29 40.307 116.218 65.843zM805.382 126.157c-84.866-23.574-198.149-36.557-318.982-36.557s-234.117 12.982-318.982 36.557c-91.928 25.536-116.218 54.235-116.218 65.843v131.389c25.168-15.803 59.611-29.846 102.514-41.765 89.202-24.779 207.352-38.424 332.686-38.424s243.485 13.645 332.686 38.426c42.902 11.917 77.347 25.962 102.514 41.765v-131.39c0-11.608-24.29-40.307-116.218-65.843zM805.382 330.957c-84.866-23.574-198.149-36.557-318.982-36.557s-234.117 12.982-318.982 36.557c-91.928 25.536-116.218 54.235-116.218 65.843v131.39c25.168-15.803 59.611-29.848 102.514-41.766 89.202-24.778 207.352-38.424 332.686-38.424s243.485 13.646 332.686 38.424c42.902 11.918 77.347 25.963 102.514 41.766v-131.39c0-11.608-24.29-40.307-116.218-65.843zM805.382 535.757c-84.866-23.574-198.149-36.557-318.982-36.557s-234.117 12.982-318.982 36.557c-91.928 25.536-116.218 54.235-116.218 65.843v131.39c25.168-15.803 59.611-29.848 102.514-41.766 89.202-24.778 207.352-38.424 332.686-38.424s243.485 13.646 332.686 38.424c42.902 11.918 77.347 25.963 102.514 41.766v-131.39c0-11.608-24.29-40.307-116.218-65.843z" />
43
+ <glyph unicode="&#xe80f;" glyph-name="lock" data-tags="lock" d="M742.4 550.4h-25.6v76.8c0 127.043-103.357 230.4-230.4 230.4s-230.4-103.357-230.4-230.4v-76.8h-25.6c-42.347 0-76.8-34.453-76.8-76.8v-409.6c0-42.347 34.453-76.8 76.8-76.8h512c42.347 0 76.8 34.453 76.8 76.8v409.6c0 42.347-34.453 76.8-76.8 76.8zM307.2 627.2c0 98.811 80.389 179.2 179.2 179.2s179.2-80.389 179.2-179.2v-76.8h-358.4v76.8zM768 64c0-14.115-11.485-25.6-25.6-25.6h-512c-14.115 0-25.6 11.485-25.6 25.6v409.6c0 14.115 11.485 25.6 25.6 25.6h512c14.115 0 25.6-11.485 25.6-25.6v-409.6z" />
44
+ <glyph unicode="&#xe810;" glyph-name="cog" data-tags="cog" d="M390.71-48.755c-2.109 0-4.248 0.262-6.378 0.81-45.976 11.803-90.149 30.042-131.291 54.21-11.923 7.003-16.13 22.21-9.501 34.344 8.15 14.925 12.459 31.866 12.459 48.992 0 56.464-45.936 102.4-102.4 102.4-17.125 0-34.066-4.309-48.992-12.459-12.133-6.627-27.339-2.421-34.342 9.501-24.17 41.142-42.408 85.315-54.211 131.293-3.333 12.989 3.92 26.349 16.629 30.629 41.699 14.037 69.717 53.034 69.717 97.037s-28.018 83-69.718 97.040c-12.707 4.278-19.962 17.638-16.627 30.627 11.803 45.976 30.042 90.149 54.211 131.291 7.003 11.923 22.21 16.13 34.344 9.501 14.923-8.15 31.864-12.459 48.99-12.459 56.464 0 102.4 45.936 102.4 102.4 0 17.126-4.309 34.067-12.459 48.99-6.629 12.134-2.422 27.341 9.501 34.344 41.141 24.168 85.314 42.408 131.291 54.211 12.994 3.334 26.349-3.92 30.627-16.627 14.040-41.701 53.037-69.718 97.040-69.718s83 28.018 97.038 69.717c4.28 12.71 17.645 19.965 30.629 16.629 45.976-11.802 90.15-30.042 131.293-54.211 11.922-7.003 16.128-22.208 9.501-34.342-8.152-14.926-12.461-31.867-12.461-48.992 0-56.464 45.936-102.4 102.4-102.4 17.126 0 34.067 4.309 48.992 12.459 12.138 6.629 27.341 2.421 34.344-9.501 24.166-41.141 42.406-85.314 54.21-131.291 3.334-12.989-3.918-26.349-16.627-30.627-41.701-14.040-69.718-53.037-69.718-97.040s28.018-83 69.718-97.038c12.707-4.28 19.962-17.638 16.627-30.629-11.803-45.976-30.042-90.15-54.21-131.291-7.005-11.925-22.208-16.128-34.344-9.502-14.926 8.152-31.867 12.461-48.992 12.461-56.464 0-102.4-45.936-102.4-102.4 0-17.125 4.309-34.066 12.461-48.992 6.627-12.136 2.421-27.341-9.502-34.344-41.141-24.166-85.314-42.406-131.291-54.21-12.992-3.336-26.349 3.918-30.629 16.627-14.038 41.701-53.035 69.718-97.038 69.718s-83-28.018-97.040-69.718c-3.578-10.624-13.502-17.437-24.25-17.437zM512 89.6c57.715 0 109.693-32.138 135.917-82.029 26.637 8.218 52.507 18.875 77.299 31.846-5.541 16.077-8.416 33.075-8.416 50.182 0 84.696 68.904 153.6 153.6 153.6 17.107 0 34.106-2.875 50.181-8.418 12.971 24.792 23.63 50.662 31.846 77.299-49.89 26.226-82.027 78.203-82.027 135.918s32.138 109.691 82.029 135.918c-8.218 26.637-18.875 52.506-31.846 77.299-16.077-5.542-33.074-8.418-50.182-8.418-84.696 0-153.6 68.904-153.6 153.6 0 17.107 2.875 34.106 8.418 50.181-24.792 12.971-50.662 23.63-77.299 31.846-26.226-49.89-78.203-82.027-135.918-82.027s-109.691 32.138-135.917 82.027c-26.637-8.216-52.507-18.874-77.299-31.846 5.542-16.075 8.416-33.072 8.416-50.181 0-84.696-68.904-153.6-153.6-153.6-17.109 0-34.106 2.874-50.181 8.418-12.973-24.794-23.63-50.662-31.846-77.299 49.89-26.227 82.027-78.203 82.027-135.918s-32.138-109.693-82.027-135.917c8.216-26.637 18.875-52.507 31.846-77.299 16.075 5.541 33.074 8.416 50.181 8.416 84.696 0 153.6-68.904 153.6-153.6 0-17.109-2.875-34.106-8.418-50.181 24.794-12.971 50.662-23.63 77.299-31.846 26.227 49.89 78.203 82.027 135.918 82.027zM512 294.4c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6zM512 550.4c-56.464 0-102.4-45.936-102.4-102.4s45.936-102.4 102.4-102.4c56.464 0 102.4 45.936 102.4 102.4s-45.936 102.4-102.4 102.4z" />
45
+ <glyph unicode="&#xe811;" glyph-name="trash" data-tags="trash" d="M793.6 857.6h-179.2v25.6c0 42.347-34.453 76.8-76.8 76.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-25.6h-179.2c-42.347 0-76.8-34.453-76.8-76.8v-51.2c0-33.373 21.403-61.829 51.2-72.397v-644.403c0-42.349 34.453-76.8 76.8-76.8h512c42.349 0 76.8 34.451 76.8 76.8v644.403c29.797 10.568 51.2 39.024 51.2 72.397v51.2c0 42.347-34.451 76.8-76.8 76.8zM409.6 883.2c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-25.6h-153.6v25.6zM742.4-12.8h-512c-14.115 0-25.6 11.485-25.6 25.6v640h563.2v-640c0-14.115-11.485-25.6-25.6-25.6zM819.2 729.6c0-14.115-11.485-25.6-25.6-25.6h-614.4c-14.115 0-25.6 11.485-25.6 25.6v51.2c0 14.115 11.485 25.6 25.6 25.6h614.4c14.115 0 25.6-11.485 25.6-25.6v-51.2zM640 601.6c-14.139 0-25.6-11.462-25.6-25.6v-512c0-14.139 11.461-25.6 25.6-25.6s25.6 11.461 25.6 25.6v512c0 14.138-11.461 25.6-25.6 25.6zM486.4 601.6c-14.138 0-25.6-11.462-25.6-25.6v-512c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v512c0 14.138-11.462 25.6-25.6 25.6zM332.8 601.6c-14.138 0-25.6-11.462-25.6-25.6v-512c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v512c0 14.138-11.462 25.6-25.6 25.6z" />
46
+ <glyph unicode="&#xe812;" glyph-name="dice" data-tags="dice" d="M281.6 140.8c-42.347 0-76.8 34.451-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.453-76.8-76.8-76.8zM281.6 243.2c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM281.6 345.6c-42.347 0-76.8 34.451-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.453-76.8-76.8-76.8zM281.6 448c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM281.6 550.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM281.6 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM691.2 550.4c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM691.2 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM691.2 345.6c-42.349 0-76.8 34.451-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.451-76.8-76.8-76.8zM691.2 448c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM691.2 140.8c-42.349 0-76.8 34.451-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.451-76.8-76.8-76.8zM691.2 243.2c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM793.6-12.8h-614.4c-70.579 0-128 57.421-128 128v614.4c0 70.579 57.421 128 128 128h614.4c70.579 0 128-57.421 128-128v-614.4c0-70.579-57.421-128-128-128zM179.2 806.4c-42.347 0-76.8-34.453-76.8-76.8v-614.4c0-42.349 34.453-76.8 76.8-76.8h614.4c42.349 0 76.8 34.451 76.8 76.8v614.4c0 42.347-34.451 76.8-76.8 76.8h-614.4z" />
47
+ <glyph unicode="&#xe813;" glyph-name="heart1" data-tags="heart" d="M486.4-12.8c-4.283 0-8.566 1.074-12.434 3.222-4.808 2.67-119.088 66.624-235.122 171.376-68.643 61.97-123.467 125.363-162.944 188.418-50.365 80.443-75.901 160.715-75.901 238.584 0 148.218 120.582 268.8 268.8 268.8 50.173 0 103.462-18.805 150.051-52.952 27.251-19.973 50.442-44.043 67.549-69.606 17.107 25.565 40.299 49.634 67.55 69.606 46.589 34.147 99.878 52.952 150.050 52.952 148.218 0 268.8-120.582 268.8-268.8 0-77.869-25.538-158.141-75.901-238.584-39.478-63.054-94.301-126.446-162.944-188.418-116.034-104.754-230.314-168.706-235.122-171.376-3.867-2.149-8.15-3.222-12.434-3.222zM268.8 806.4c-119.986 0-217.6-97.614-217.6-217.6 0-155.624 120.302-297.077 221.224-388.338 90.131-81.504 181.44-138.658 213.976-158.042 32.536 19.384 123.845 76.538 213.976 158.042 100.922 91.261 221.224 232.714 221.224 388.338 0 119.986-97.616 217.6-217.6 217.6-87.187 0-171.856-71.725-193.314-136.096-3.485-10.453-13.267-17.504-24.286-17.504s-20.802 7.051-24.286 17.504c-21.456 64.371-106.125 136.096-193.314 136.096z" />
48
+ <glyph unicode="&#xe814;" glyph-name="star1" data-tags="star1" d="M793.598-12.8c-4.205 0-8.422 1.034-12.258 3.126l-269.341 146.912-269.341-146.912c-8.598-4.691-19.118-4.061-27.098 1.613-7.981 5.677-12.022 15.41-10.413 25.069l49.034 294.206-195.483 195.485c-6.781 6.781-9.203 16.782-6.277 25.914s10.712 15.862 20.17 17.438l294.341 49.058 122.17 244.339c4.336 8.674 13.2 14.152 22.898 14.152s18.562-5.478 22.898-14.152l122.17-244.339 294.341-49.058c9.459-1.576 17.243-8.307 20.17-17.438s0.504-19.133-6.277-25.914l-195.483-195.485 49.034-294.206c1.61-9.659-2.434-19.392-10.413-25.069-4.419-3.144-9.621-4.739-14.84-4.739zM512 192c4.219 0 8.437-1.042 12.259-3.126l235.445-128.426-42.557 255.344c-1.36 8.155 1.302 16.464 7.15 22.309l169.626 169.626-258.131 43.022c-8.080 1.346-15.027 6.477-18.69 13.803l-105.102 210.205-105.102-210.205c-3.664-7.326-10.61-12.458-18.69-13.803l-258.131-43.022 169.624-169.626c5.846-5.845 8.509-14.155 7.15-22.309l-42.557-255.344 235.446 128.426c3.821 2.085 8.040 3.126 12.259 3.126z" />
49
+ <glyph unicode="&#xe815;" glyph-name="star-half" data-tags="star-half" d="M793.598-12.8c-4.205 0-8.422 1.034-12.256 3.126l-153.595 83.778c-12.413 6.768-16.986 22.32-10.218 34.731 6.77 12.414 22.322 16.992 34.733 10.216l107.442-58.603-8.424 50.542c-2.325 13.947 7.098 27.136 21.042 29.461 13.941 2.33 27.136-7.096 29.461-21.042l17.067-102.4c1.611-9.661-2.434-19.394-10.413-25.070-4.418-3.144-9.619-4.739-14.838-4.739zM759.434 191.995c-12.29 0-23.134 8.875-25.221 21.397l-17.066 102.4c-1.36 8.155 1.302 16.464 7.15 22.309l51.2 51.2c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-41.885-41.885 14.899-89.406c2.325-13.946-7.098-27.136-21.043-29.459-1.422-0.237-2.838-0.35-4.238-0.352zM896 448c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l16.024 16.026-104.53 17.422c-13.947 2.325-23.368 15.514-21.043 29.461s15.533 23.368 29.459 21.043l153.6-25.6c9.459-1.576 17.243-8.307 20.17-17.438s0.504-19.133-6.277-25.914l-51.2-51.2c-5-5.003-11.55-7.502-18.102-7.502zM691.232 541.864c-1.398 0-2.814 0.115-4.238 0.352l-51.2 8.533c-8.080 1.346-15.027 6.477-18.69 13.802l-51.2 102.395c-6.323 12.646-1.198 28.024 11.448 34.346 12.643 6.323 28.024 1.197 34.346-11.448l45.37-90.736 38.341-6.39c13.947-2.325 23.368-15.514 21.043-29.461-2.085-12.518-12.933-21.392-25.219-21.392zM230.402-12.8c-5.221 0-10.421 1.595-14.842 4.739-7.981 5.677-12.022 15.41-10.413 25.069l49.034 294.206-195.482 195.485c-6.781 6.781-9.203 16.782-6.277 25.914s10.71 15.862 20.17 17.438l294.341 49.058 122.17 244.339c4.336 8.674 13.202 14.152 22.898 14.152 0 0 0 0 0 0 9.698 0 18.562-5.478 22.898-14.152l25.6-51.2c6.322-12.646 1.195-28.024-11.45-34.346-12.646-6.325-28.024-1.198-34.347 11.45l-2.701 5.403-105.101-210.203c-3.664-7.326-10.61-12.458-18.69-13.803l-258.133-43.022 169.626-169.626c5.846-5.845 8.509-14.155 7.149-22.309l-42.557-255.344 235.446 128.426c7.642 4.17 16.875 4.166 24.518 0l25.603-13.966c12.411-6.77 16.984-22.32 10.214-34.733-6.77-12.411-22.318-16.984-34.733-10.214l-13.344 7.278-269.341-146.912c-3.835-2.093-8.053-3.126-12.258-3.126z" />
50
+ <glyph unicode="&#xe816;" glyph-name="star-empty" data-tags="star-empty" d="M281.57 533.33c-12.29 0-23.134 8.874-25.221 21.395-2.325 13.946 7.098 27.136 21.043 29.461l89.541 14.923 19.77 39.539c6.323 12.646 21.701 17.773 34.346 11.45 12.646-6.323 17.771-21.701 11.45-34.346l-25.6-51.2c-3.664-7.326-10.61-12.458-18.69-13.803l-102.4-17.067c-1.424-0.237-2.842-0.352-4.238-0.352zM128 448c-6.552 0-13.102 2.499-18.101 7.499l-51.2 51.2c-6.781 6.781-9.203 16.782-6.277 25.914s10.71 15.862 20.17 17.438l102.4 17.067c13.957 2.326 27.136-7.099 29.461-21.043 2.325-13.946-7.098-27.136-21.043-29.461l-53.331-8.89 16.024-16.026c9.998-9.997 9.998-26.206 0-36.203-5-4.997-11.55-7.496-18.102-7.496zM759.434 191.995c-12.29 0-23.134 8.875-25.221 21.397l-17.066 102.4c-1.36 8.155 1.302 16.464 7.15 22.309l51.2 51.2c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-41.885-41.885 14.899-89.406c2.325-13.946-7.098-27.136-21.043-29.459-1.422-0.237-2.838-0.352-4.238-0.352zM793.598-12.8c-4.205 0-8.422 1.034-12.256 3.126l-153.606 83.784c-12.413 6.768-16.986 22.32-10.216 34.731 6.766 12.414 22.32 16.99 34.731 10.216l107.453-58.61-8.424 50.542c-2.325 13.947 7.098 27.136 21.042 29.461 13.955 2.322 27.136-7.096 29.461-21.042l17.067-102.4c1.61-9.661-2.434-19.394-10.413-25.070-4.418-3.144-9.619-4.739-14.838-4.739zM273.098 243.195c-1.398 0-2.814 0.115-4.238 0.354-13.946 2.325-23.366 15.514-21.043 29.461l6.368 38.205-41.885 41.885c-9.998 9.997-9.998 26.206 0 36.203s26.206 9.997 36.203 0l51.2-51.2c5.846-5.845 8.509-14.155 7.15-22.31l-8.533-51.2c-2.088-12.522-12.934-21.397-25.222-21.397zM230.402-12.8c-5.221 0-10.421 1.595-14.842 4.739-7.981 5.677-12.022 15.41-10.413 25.069l25.6 153.598c2.325 13.947 15.514 23.368 29.461 21.043 13.946-2.323 23.366-15.514 21.043-29.459l-16.957-101.742 56.246 30.68c12.41 6.771 27.963 2.197 34.733-10.214 6.77-12.413 2.197-27.963-10.216-34.733l-102.4-55.854c-3.834-2.093-8.051-3.126-12.256-3.126zM435.222 98.904c-9.067 0-17.85 4.827-22.498 13.347-6.77 12.411-2.197 27.963 10.216 34.731l76.8 41.891c7.64 4.168 16.875 4.168 24.517 0l25.595-13.962c12.413-6.768 16.986-22.32 10.216-34.731-6.766-12.414-22.32-16.99-34.731-10.216l-13.338 7.274-64.541-35.203c-3.893-2.123-8.094-3.131-12.237-3.131zM896 448c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l16.024 16.026-104.53 17.422c-13.947 2.325-23.368 15.514-21.043 29.461s15.533 23.368 29.459 21.043l153.6-25.6c9.459-1.576 17.243-8.307 20.17-17.438s0.504-19.133-6.277-25.914l-51.2-51.2c-5-5.003-11.55-7.502-18.102-7.502zM691.234 541.862c-1.398 0-2.816 0.115-4.24 0.352l-51.202 8.533c-8.078 1.346-15.026 6.477-18.688 13.802l-51.2 102.395c-6.323 12.646-1.198 28.024 11.448 34.346 12.643 6.323 28.024 1.197 34.346-11.448l45.37-90.736 38.344-6.39c13.946-2.325 23.366-15.514 21.042-29.461-2.086-12.518-12.933-21.392-25.219-21.392zM460.779 703.995c-3.846 0-7.754 0.87-11.429 2.707-12.646 6.323-17.771 21.701-11.45 34.346l51.2 102.4c4.338 8.674 13.203 14.152 22.899 14.152 0 0 0 0 0 0 9.698 0 18.562-5.478 22.898-14.152l25.598-51.2c6.323-12.646 1.197-28.024-11.448-34.346-12.646-6.325-28.024-1.198-34.346 11.45l-2.702 5.403-28.301-56.603c-4.486-8.971-13.53-14.157-22.92-14.157z" />
51
+ <glyph unicode="&#xe817;" glyph-name="flag" data-tags="flag" d="M76.8-12.8c-14.138 0-25.6 11.461-25.6 25.6v768c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-768c0-14.139-11.462-25.6-25.6-25.6zM179.181 447.998c-5.346 0-10.734 1.667-15.341 5.122-11.31 8.483-13.603 24.53-5.12 35.838 3.45 4.6 85.789 112.64 199.68 112.64 86.715 0 144.038-30.666 194.614-57.722 44.813-23.973 83.515-44.677 138.186-44.677 112.246 0 192.389 106.49 238.093 190.344-35.736-20.317-81.411-36.744-135.693-36.744-113.005 0-171.389 58.386-222.901 109.899-50.925 50.922-94.902 94.901-186.699 94.901-113.883 0-183.629-91.238-184.32-92.16-8.483-11.31-24.53-13.603-35.84-5.12s-13.603 24.53-5.12 35.84c3.45 4.6 86.080 112.64 225.28 112.64 113.003 0 171.389-58.386 222.901-109.899 50.925-50.922 94.904-94.901 186.699-94.901 113.883 0 183.629 91.238 184.32 92.16 7.534 10.043 21.238 13.141 32.362 7.315 11.122-5.827 16.374-18.861 12.405-30.771-1.090-3.269-27.288-80.958-79.786-159.704-31.341-47.011-65.638-84.654-101.941-111.88-46.997-35.248-97.384-53.12-149.76-53.12-67.504 0-115.715 25.79-162.338 50.733-49.669 26.57-96.582 51.667-170.462 51.667-88.576 0-158.029-91.238-158.72-92.16-5.029-6.706-12.717-10.242-20.499-10.242z" />
52
+ <glyph unicode="&#xe818;" glyph-name="envelope1" data-tags="envelope" d="M896 652.8h-819.2c-42.347 0-76.8-34.453-76.8-76.8v-460.8c0-42.349 34.453-76.8 76.8-76.8h819.2c42.349 0 76.8 34.451 76.8 76.8v460.8c0 42.347-34.451 76.8-76.8 76.8zM896 601.6c1.514 0 2.99-0.158 4.434-0.411l-385.632-257.090c-14.862-9.907-41.938-9.907-56.802 0l-385.634 257.090c1.443 0.253 2.92 0.411 4.434 0.411h819.2zM896 89.6h-819.2c-14.115 0-25.6 11.485-25.6 25.6v438.566l378.4-252.267c15.925-10.618 36.363-15.925 56.8-15.925s40.877 5.307 56.802 15.925l378.398 252.267v-438.566c0-14.115-11.485-25.6-25.6-25.6z" />
53
+ <glyph unicode="&#xe819;" glyph-name="paperclip" data-tags="paperclip" d="M486.4-64c-127.043 0-230.4 103.357-230.4 230.4v614.4c0 98.811 80.389 179.2 179.2 179.2s179.2-80.389 179.2-179.2v-563.2c0-70.579-57.421-128-128-128s-128 57.421-128 128v307.2c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-307.2c0-42.349 34.453-76.8 76.8-76.8 42.349 0 76.8 34.451 76.8 76.8v563.2c0 70.579-57.421 128-128 128s-128-57.421-128-128v-614.4c0-98.811 80.389-179.2 179.2-179.2s179.2 80.389 179.2 179.2v358.4c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-358.4c0-127.043-103.357-230.4-230.4-230.4z" />
54
+ <glyph unicode="&#xe81a;" glyph-name="inbox" data-tags="inbox" d="M1001.331 428.368l-138.157 315.786c-15.272 34.906-57.075 62.246-95.174 62.246h-512c-38.099 0-79.904-27.341-95.176-62.246l-138.157-315.786c-12.71-29.056-22.667-76.658-22.667-108.368v-204.8c0-42.349 34.453-76.8 76.8-76.8h870.4c42.349 0 76.8 34.451 76.8 76.8v204.8c0 31.714-9.958 79.314-22.669 108.368zM207.733 723.632c7.227 16.522 30.234 31.568 48.267 31.568h512c18.034 0 41.038-15.046 48.269-31.568l138.157-315.786c1.557-3.558 3.082-7.59 4.547-11.95-3.84 0.595-7.77 0.904-11.773 0.904h-307.2c-14.139 0-25.6-11.461-25.6-25.6v-25.6c0-56.464-45.936-102.4-102.4-102.4s-102.4 45.936-102.4 102.4v25.6c0 14.139-11.462 25.6-25.6 25.6h-307.2c-4.002 0-7.933-0.309-11.771-0.902 1.466 4.36 2.992 8.392 4.547 11.95l138.157 315.784zM972.8 115.2c0-14.115-11.485-25.6-25.6-25.6h-870.4c-14.115 0-25.6 11.485-25.6 25.6v204.8c0 14.115 11.485 25.6 25.6 25.6h281.6c0-84.696 68.904-153.6 153.6-153.6s153.6 68.904 153.6 153.6h281.6c14.115 0 25.6-11.485 25.6-25.6v-204.8z" />
55
+ <glyph unicode="&#xe81b;" glyph-name="eye" data-tags="eye" d="M1017.429 439.526c-2.429 2.698-60.515 66.826-151.349 131.706-53.587 38.277-107.499 68.826-160.234 90.8-66.837 27.848-132.056 41.968-193.846 41.968s-127.010-14.12-193.846-41.97c-52.736-21.973-106.646-52.523-160.234-90.8-90.832-64.878-148.92-129.006-151.349-131.704-8.763-9.736-8.763-24.515 0-34.251 2.429-2.699 60.517-66.827 151.349-131.707 53.587-38.277 107.498-68.827 160.234-90.8 66.837-27.848 132.056-41.968 193.846-41.968s127.010 14.12 193.846 41.968c52.734 21.973 106.645 52.523 160.234 90.8 90.834 64.88 148.92 129.008 151.349 131.706 8.762 9.736 8.762 24.517 0 34.253zM643.789 630.357c46.458-39.074 73.011-95.923 73.011-156.757 0-112.926-91.874-204.8-204.8-204.8-112.928 0-204.8 91.874-204.8 204.8 0 60.835 26.554 117.685 73.014 156.757 42.107 13.744 86.602 22.443 131.786 22.443 45.186 0 89.682-8.699 131.789-22.443zM835.418 314.587c-78.488-55.925-198.309-122.587-323.418-122.587s-244.93 66.662-323.416 122.587c-59.24 42.21-104.574 84.89-127.458 107.813 22.888 22.928 68.222 65.606 127.458 107.813 27.13 19.331 59.2 39.942 94.72 58.643-17.766-35.224-27.304-74.52-27.304-115.256 0-141.16 114.842-256 256-256 141.16 0 256 114.84 256 256 0 40.734-9.538 80.032-27.301 115.256 35.517-18.701 67.589-39.312 94.718-58.643 59.238-42.21 104.573-84.89 127.456-107.813-22.888-22.928-68.222-65.606-127.456-107.813z" />
56
+ <glyph unicode="&#xe81c;" glyph-name="printer" data-tags="printer" d="M947.2 755.2h-76.8v128c0 42.347-34.453 76.8-76.8 76.8h-563.2c-42.347 0-76.8-34.453-76.8-76.8v-128h-76.8c-42.347 0-76.8-34.453-76.8-76.8v-460.8c0-42.349 34.453-76.8 76.8-76.8h76.8v-128c0-42.347 34.453-76.8 76.8-76.8h563.2c42.347 0 76.8 34.453 76.8 76.8v128h76.8c42.349 0 76.8 34.451 76.8 76.8v460.8c0 42.347-34.451 76.8-76.8 76.8zM204.8 883.2c0 14.115 11.485 25.6 25.6 25.6h563.2c14.115 0 25.6-11.485 25.6-25.6v-128h-614.4v128zM793.6-12.8h-563.2c-14.115 0-25.6 11.485-25.6 25.6v332.8h614.4v-332.8c0-14.115-11.485-25.6-25.6-25.6zM972.8 217.6c0-14.115-11.485-25.6-25.6-25.6h-76.8v153.6h25.6c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-768c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h25.6v-153.6h-76.8c-14.115 0-25.6 11.485-25.6 25.6v460.8c0 14.115 11.485 25.6 25.6 25.6h870.4c14.115 0 25.6-11.485 25.6-25.6v-460.8zM742.4 243.2h-460.8c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h460.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4 140.8h-460.8c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h460.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4 38.4h-460.8c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h460.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 499.2c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM844.8 601.6c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6z" />
57
+ <glyph unicode="&#xe81d;" glyph-name="file-empty" data-tags="file-empty" d="M914.101 670.901l-230.4 230.4c-4.8 4.802-11.312 7.499-18.101 7.499h-486.4c-42.347 0-76.8-34.453-76.8-76.8v-819.2c0-42.349 34.453-76.8 76.8-76.8h665.6c42.349 0 76.8 34.451 76.8 76.8v640c0 6.79-2.698 13.301-7.499 18.101zM859.797 652.8h-168.597c-14.115 0-25.6 11.485-25.6 25.6v168.597l194.197-194.197zM870.4 12.8c0-14.115-11.485-25.6-25.6-25.6h-665.6c-14.115 0-25.6 11.485-25.6 25.6v819.2c0 14.115 11.485 25.6 25.6 25.6h435.2v-179.2c0-42.347 34.451-76.8 76.8-76.8h179.2v-588.8z" />
58
+ <glyph unicode="&#xe81e;" glyph-name="file-add" data-tags="file-add" d="M914.101 670.901l-230.4 230.4c-4.8 4.802-11.312 7.499-18.101 7.499h-486.4c-42.347 0-76.8-34.453-76.8-76.8v-819.2c0-42.349 34.453-76.8 76.8-76.8h665.6c42.349 0 76.8 34.451 76.8 76.8v640c0 6.79-2.698 13.301-7.499 18.101zM859.797 652.8h-168.597c-14.115 0-25.6 11.485-25.6 25.6v168.597l194.197-194.197zM844.8-12.8h-665.6c-14.115 0-25.6 11.485-25.6 25.6v819.2c0 14.115 11.485 25.6 25.6 25.6h435.2v-179.2c0-42.347 34.451-76.8 76.8-76.8h179.2v-588.8c0-14.115-11.485-25.6-25.6-25.6zM588.8 294.4h-128v128c0 14.139-11.462 25.6-25.6 25.6s-25.6-11.461-25.6-25.6v-128h-128c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h128v-128c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v128h128c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6z" />
59
+ <glyph unicode="&#xe81f;" glyph-name="enter" data-tags="enter" d="M896 857.6h-460.8c-42.347 0-76.8-34.453-76.8-76.8v-153.6c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v153.6c0 14.115 11.485 25.6 25.6 25.6h387.278l-196.702-84.301c-35.088-15.038-62.576-56.723-62.576-94.899v-486.4h-128c-14.115 0-25.6 11.485-25.6 25.6v153.6c0 14.139-11.462 25.6-25.6 25.6s-25.6-11.461-25.6-25.6v-153.6c0-42.347 34.453-76.8 76.8-76.8h128v-76.8c0-22.181 9.234-40.99 25.331-51.606 8.886-5.861 19.243-8.814 30.171-8.814 8.867 0 18.109 1.946 27.242 5.859l264.277 113.261c35.091 15.038 62.579 56.723 62.579 94.901v614.4c0 42.347-34.451 76.8-76.8 76.8zM921.6 166.4c0-17.963-15.035-40.765-31.546-47.838l-264.277-113.261c-4.912-2.107-8.163-1.955-9.062-1.363-0.894 0.59-2.315 3.518-2.315 8.862v614.4c0 17.962 15.035 40.763 31.546 47.838l273.043 117.019c1.672-3.4 2.611-7.221 2.611-11.258v-614.4zM427.701 491.701l-153.6 153.6c-9.997 9.998-26.206 9.998-36.203 0s-9.998-26.206 0-36.203l109.899-109.898h-322.197c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h322.197l-109.898-109.899c-9.998-9.997-9.998-26.206 0-36.203 4.998-4.998 11.549-7.498 18.101-7.498s13.102 2.499 18.101 7.499l153.6 153.6c9.998 9.997 9.998 26.205 0 36.202z" />
60
+ <glyph unicode="&#xe820;" glyph-name="exit" data-tags="exit" d="M588.8 550.4c14.139 0 25.6 11.462 25.6 25.6v204.8c0 42.347-34.451 76.8-76.8 76.8h-460.8c-42.347 0-76.8-34.453-76.8-76.8v-614.4c0-38.178 27.488-79.862 62.576-94.899l264.278-113.262c9.134-3.915 18.373-5.859 27.24-5.859 10.926 0.002 21.288 2.955 30.173 8.814 16.099 10.616 25.333 29.426 25.333 51.606v76.8h128c42.349 0 76.8 34.451 76.8 76.8v204.8c0 14.139-11.461 25.6-25.6 25.6s-25.6-11.461-25.6-25.6v-204.8c0-14.115-11.485-25.6-25.6-25.6h-128v486.4c0 38.176-27.488 79.861-62.576 94.899l-196.702 84.301h387.278c14.115 0 25.6-11.485 25.6-25.6v-204.8c0-14.138 11.461-25.6 25.6-25.6zM326.854 675.038c16.51-7.075 31.546-29.877 31.546-47.838v-614.4c0-5.344-1.421-8.272-2.317-8.862-0.898-0.589-4.15-0.742-9.061 1.362l-264.278 113.262c-16.509 7.074-31.544 29.875-31.544 47.838v614.4c0 4.037 0.939 7.859 2.611 11.258l273.043-117.019zM939.701 491.701l-153.6 153.6c-9.997 9.998-26.206 9.998-36.203 0-9.998-9.997-9.998-26.206 0-36.203l109.899-109.898h-322.197c-14.139 0-25.6-11.462-25.6-25.6s11.461-25.6 25.6-25.6h322.197l-109.899-109.899c-9.998-9.997-9.998-26.206 0-36.203 5-4.998 11.55-7.498 18.102-7.498s13.102 2.499 18.101 7.499l153.6 153.6c9.998 9.997 9.998 26.205 0 36.202z" />
61
+ <glyph unicode="&#xe821;" glyph-name="graduation-hat" data-tags="graduation-hat" d="M955.296 600.286l-460.8 153.6c-5.254 1.752-10.936 1.752-16.19 0l-460.8-153.6c-10.454-3.485-17.506-13.267-17.506-24.286s7.051-20.802 17.504-24.286l136.096-45.365v-135.149c0-6.789 2.698-13.301 7.499-18.101 4.486-4.488 112.346-109.899 325.301-109.899 77.454 0 149.712 13.941 214.766 41.434 13.024 5.504 19.118 20.523 13.616 33.547-5.504 13.024-20.525 19.117-33.547 13.616-58.714-24.816-124.266-37.397-194.835-37.397-99.586 0-172.84 25.781-216.758 47.41-32.53 16.019-54.259 32.203-64.842 40.926v106.547l273.504-91.168c2.627-0.877 5.362-1.314 8.096-1.314s5.467 0.437 8.096 1.314l273.504 91.168v-45.686c-29.797-10.568-51.2-39.024-51.2-72.397 0-31.269 18.792-58.213 45.666-70.181l-44.901-179.61c-1.91-7.648-0.194-15.75 4.658-21.965s12.294-9.845 20.178-9.845h102.4c7.883 0 15.326 3.632 20.178 9.845s6.568 14.315 4.658 21.965l-44.901 179.61c26.874 11.968 45.666 38.912 45.666 70.181 0 33.373-21.403 61.829-51.2 72.397v62.752l136.096 45.366c10.453 3.483 17.504 13.266 17.504 24.285s-7.051 20.802-17.504 24.286zM793.6 396.8c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6-25.6 11.485-25.6 25.6 11.485 25.6 25.6 25.6zM775.187 140.8l18.413 73.648 18.413-73.648h-36.826zM791.536 551.098l-300.928 50.155c-13.952 2.322-27.136-7.099-29.461-21.042-2.325-13.947 7.098-27.138 21.043-29.461l205.533-34.256-201.323-67.11-379.846 126.616 379.846 126.616 379.845-126.616-74.709-24.902z" />
62
+ <glyph unicode="&#xe822;" glyph-name="license" data-tags="license" d="M947.2 38.4h-870.4c-42.347 0-76.8 34.451-76.8 76.8v665.6c0 42.347 34.453 76.8 76.8 76.8h870.4c42.349 0 76.8-34.453 76.8-76.8v-665.6c0-42.349-34.451-76.8-76.8-76.8zM76.8 806.4c-14.115 0-25.6-11.485-25.6-25.6v-665.6c0-14.115 11.485-25.6 25.6-25.6h870.4c14.115 0 25.6 11.485 25.6 25.6v665.6c0 14.115-11.485 25.6-25.6 25.6h-870.4zM486.4 652.8h-307.2c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h307.2c14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6zM486.4 499.2h-307.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h307.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM486.4 396.8h-307.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h307.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM486.4 294.4h-307.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h307.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM435.2 192h-256c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h256c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM918.677 624.957l-41.646 30.258-15.909 48.957h-51.475l-41.646 30.258-41.645-30.258h-51.475l-15.909-48.957-41.646-30.258 15.909-48.957-15.909-48.957 41.646-30.259 6.752-20.774c-0.077-0.794-0.123-1.597-0.123-2.41v-256c0-10.355 6.237-19.69 15.803-23.651 9.568-3.965 20.578-1.77 27.899 5.55l58.698 58.698 58.699-58.699c4.898-4.899 11.443-7.501 18.107-7.499 3.298 0 6.624 0.637 9.79 1.949 9.566 3.963 15.803 13.298 15.803 23.653v256c0 0.813-0.046 1.616-0.122 2.41l6.752 20.774 41.646 30.259-15.91 48.957 15.91 48.957zM677.514 605.4l25.010 18.17 9.554 29.4h30.912l25.011 18.173 25.011-18.171h30.912l9.554-29.4 25.010-18.17-9.554-29.402 9.554-29.4-25.010-18.171-9.554-29.4h-30.912l-25.011-18.173-25.011 18.171h-30.912l-9.554 29.4-25.010 18.171 9.554 29.402-9.554 29.4zM786.101 312.501c-9.997 9.997-26.206 9.997-36.203 0l-33.098-33.098v168.426h9.555l41.645-30.258 41.645 30.256h9.555v-168.426l-33.099 33.099z" />
63
+ <glyph unicode="&#xe823;" glyph-name="music-note" data-tags="music-note" d="M1014.803 902.854c-5.826 4.864-13.509 6.891-20.982 5.533l-563.2-102.4c-12.173-2.213-21.021-12.816-21.021-25.187v-583.632c-6.986 4.722-14.629 9.181-22.936 13.336-42.166 21.085-97.662 32.696-156.264 32.696s-114.098-11.611-156.264-32.696c-47.806-23.902-74.136-57.749-74.136-95.304s26.33-71.402 74.136-95.304c42.166-21.085 97.662-32.696 156.264-32.696s114.098 11.611 156.264 32.696c47.806 23.902 74.136 57.749 74.136 95.304v516.294l512 94.549v-426.475c-6.984 4.722-14.629 9.182-22.936 13.336-42.166 21.085-97.662 32.696-156.264 32.696s-114.098-11.611-156.264-32.696c-47.808-23.902-74.136-57.749-74.136-95.304s26.328-71.402 74.136-95.304c42.166-21.085 97.662-32.696 156.264-32.696s114.098 11.611 156.264 32.696c47.808 23.902 74.136 57.749 74.136 95.304v665.6c0 7.59-3.368 14.79-9.197 19.654zM230.4 38.4c-102.563 0-179.2 40.547-179.2 76.8s76.637 76.8 179.2 76.8 179.2-40.547 179.2-76.8-76.637-76.8-179.2-76.8zM460.8 683.562v75.874l512 93.091v-74.416l-512-94.549zM793.6 140.8c-102.565 0-179.2 40.547-179.2 76.8s76.635 76.8 179.2 76.8c102.566 0 179.2-40.547 179.2-76.8s-76.634-76.8-179.2-76.8z" />
64
+ <glyph unicode="&#xe824;" glyph-name="film-play" data-tags="film-play" d="M383.997 192c-3.902 0-7.822 0.891-11.445 2.702-8.674 4.336-14.152 13.2-14.152 22.898v460.8c0 9.698 5.478 18.562 14.152 22.898 8.67 4.334 19.051 3.4 26.808-2.418l307.2-230.4c6.446-4.834 10.24-12.422 10.24-20.48s-3.794-15.645-10.24-20.48l-307.2-230.4c-4.517-3.387-9.923-5.12-15.363-5.12zM409.6 627.2v-358.4l238.933 179.2-238.933 179.2zM998.4 857.6h-972.8c-14.138 0-25.6-11.462-25.6-25.6v-768c0-14.139 11.462-25.6 25.6-25.6h972.8c14.139 0 25.6 11.461 25.6 25.6v768c0 14.138-11.461 25.6-25.6 25.6zM153.6 396.8h-102.4v102.4h102.4v-102.4zM153.6 550.4h-102.4v102.4h102.4v-102.4zM51.2 345.6h102.4v-102.4h-102.4v102.4zM204.8 806.4h614.4v-716.8h-614.4v716.8zM870.4 499.2h102.4v-102.4h-102.4v102.4zM870.4 550.4v102.4h102.4v-102.4h-102.4zM870.4 345.6h102.4v-102.4h-102.4v102.4zM972.8 704h-102.4v102.4h102.4v-102.4zM153.6 806.4v-102.4h-102.4v102.4h102.4zM51.2 192h102.4v-102.4h-102.4v102.4zM870.4 89.6v102.4h102.4v-102.4h-102.4z" />
65
+ <glyph unicode="&#xe825;" glyph-name="camera-video" data-tags="camera-video" d="M979.496 86.869c-0.003 0-0.005 0-0.008 0-12.378 0.002-24.846 4.957-37.059 14.725l-176.038 140.832c-28.272 22.613-49.59 66.97-49.59 103.174v153.6c0 36.203 21.318 80.56 49.589 103.174l176.037 140.83c12.216 9.773 24.686 14.726 37.066 14.726 22.155 0.002 44.509-16.675 44.509-53.931v-563.2c0-14.234-3.275-26.197-9.733-35.558-8.056-11.675-20.73-18.373-34.771-18.373zM972.8 701.936l-174.427-139.542c-15.896-12.717-30.373-42.837-30.373-63.194v-153.6c0-20.358 14.477-50.478 30.371-63.194l174.429-139.542v559.072zM588.8 89.6h-512c-42.347 0-76.8 34.453-76.8 76.8v512c0 42.347 34.453 76.8 76.8 76.8h512c42.347 0 76.8-34.453 76.8-76.8v-512c0-42.347-34.453-76.8-76.8-76.8zM76.8 704c-14.115 0-25.6-11.485-25.6-25.6v-512c0-14.115 11.485-25.6 25.6-25.6h512c14.115 0 25.6 11.485 25.6 25.6v512c0 14.115-11.485 25.6-25.6 25.6h-512z" />
66
+ <glyph unicode="&#xe826;" glyph-name="camera" data-tags="camera" d="M486.4 192c-127.043 0-230.4 103.357-230.4 230.4s103.357 230.4 230.4 230.4c127.043 0 230.4-103.357 230.4-230.4s-103.357-230.4-230.4-230.4zM486.4 601.6c-98.811 0-179.2-80.389-179.2-179.2s80.389-179.2 179.2-179.2 179.2 80.389 179.2 179.2-80.389 179.2-179.2 179.2zM896 38.4h-819.2c-42.347 0-76.8 34.451-76.8 76.8v512c0 42.347 34.453 76.8 76.8 76.8h76.8c21.246 0 54.278 13.682 69.302 28.706l29.992 29.992c24.914 24.915 70.272 43.702 105.506 43.702h256c35.235 0 80.594-18.789 105.506-43.702l29.992-29.99c15.024-15.026 48.056-28.707 69.302-28.707h76.8c42.349 0 76.8-34.453 76.8-76.8v-512c0-42.349-34.451-76.8-76.8-76.8zM76.8 652.8c-14.115 0-25.6-11.485-25.6-25.6v-512c0-14.115 11.485-25.6 25.6-25.6h819.2c14.115 0 25.6 11.485 25.6 25.6v512c0 14.115-11.485 25.6-25.6 25.6h-76.8c-35.235 0-80.594 18.789-105.506 43.702l-29.992 29.99c-15.024 15.026-48.056 28.707-69.302 28.707h-256c-21.246 0-54.278-13.682-69.302-28.706l-29.992-29.992c-24.914-24.915-70.272-43.702-105.506-43.702h-76.8z" />
67
+ <glyph unicode="&#xe827;" glyph-name="picture" data-tags="picture" d="M947.2-64h-870.4c-42.347 0-76.8 34.451-76.8 76.8v870.4c0 42.347 34.453 76.8 76.8 76.8h870.4c42.349 0 76.8-34.453 76.8-76.8v-870.4c0-42.349-34.451-76.8-76.8-76.8zM76.8 908.8c-14.115 0-25.6-11.485-25.6-25.6v-870.4c0-14.115 11.485-25.6 25.6-25.6h870.4c14.115 0 25.6 11.485 25.6 25.6v870.4c0 14.115-11.485 25.6-25.6 25.6h-870.4zM665.6 499.2c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4 102.4-45.936 102.4-102.4-45.936-102.4-102.4-102.4zM665.6 652.8c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2 51.2 22.968 51.2 51.2-22.968 51.2-51.2 51.2zM896 857.6h-768c-14.138 0-25.6-11.462-25.6-25.6v-614.4c0-14.139 11.462-25.6 25.6-25.6h768c14.139 0 25.6 11.461 25.6 25.6v614.4c0 14.138-11.461 25.6-25.6 25.6zM153.6 361.467l164.318 184.858c4.203 4.728 9.694 7.371 15.462 7.44 5.725 0.090 11.322-2.438 15.638-7.062l283.27-303.502h-478.69v118.267zM870.4 243.2h-168.075l-315.875 338.437c-14.269 15.288-33.312 23.605-53.691 23.325-20.354-0.246-39.214-8.992-53.107-24.621l-126.051-141.808v367.867h716.8v-563.2z" />
68
+ <glyph unicode="&#xe828;" glyph-name="book" data-tags="book" d="M742.4 38.4h-512c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 806.4c-14.139 0-25.6-11.462-25.6-25.6v-768c0-14.115-11.485-25.6-25.6-25.6h-563.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8h460.8c42.349 0 76.8 34.451 76.8 76.8v614.4c0 42.347-34.451 76.8-76.8 76.8h-512c-42.347 0-76.8-34.453-76.8-76.8v-768c0-70.579 57.421-128 128-128h563.2c42.349 0 76.8 34.451 76.8 76.8v768c0 14.138-11.461 25.6-25.6 25.6zM179.2 857.6h512c14.115 0 25.6-11.485 25.6-25.6v-614.4c0-14.115-11.485-25.6-25.6-25.6h-460.8c-28.794 0-55.392-9.563-76.8-25.67v665.67c0 14.115 11.485 25.6 25.6 25.6z" />
69
+ <glyph unicode="&#xe829;" glyph-name="bookmark" data-tags="bookmark" d="M793.605-64.002c-7.331 0-14.482 3.155-19.442 8.941l-287.763 335.723-287.763-335.723c-6.971-8.131-18.269-11.067-28.318-7.349-10.048 3.715-16.718 13.298-16.718 24.010v921.6c0 14.138 11.462 25.6 25.6 25.6h614.4c14.139 0 25.6-11.462 25.6-25.6v-921.6c0-10.712-6.67-20.294-16.718-24.010-2.899-1.074-5.904-1.592-8.877-1.592zM486.4 345.6c7.474 0 14.573-3.266 19.437-8.939l262.163-305.858v826.797h-563.2v-826.797l262.163 305.858c4.864 5.674 11.963 8.939 19.437 8.939z" />
70
+ <glyph unicode="&#xe82a;" glyph-name="user" data-tags="user" d="M486.4 396.8c-155.275 0-281.6 126.325-281.6 281.6s126.325 281.6 281.6 281.6 281.6-126.325 281.6-281.6-126.325-281.6-281.6-281.6zM486.4 908.8c-127.043 0-230.4-103.357-230.4-230.4s103.357-230.4 230.4-230.4c127.042 0 230.4 103.357 230.4 230.4s-103.358 230.4-230.4 230.4zM896-64h-819.2c-42.347 0-76.8 34.451-76.8 76.8 0 3.485 0.712 86.285 62.72 168.96 36.094 48.126 85.514 86.36 146.883 113.634 74.957 33.314 168.085 50.206 276.797 50.206 108.71 0 201.838-16.893 276.797-50.206 61.37-27.275 110.789-65.507 146.883-113.634 62.008-82.675 62.72-165.475 62.72-168.96 0-42.349-34.451-76.8-76.8-76.8zM486.4 294.4c-178.52 0-310.267-48.789-381-141.093-53.011-69.174-54.195-139.904-54.2-140.61 0-14.013 11.485-25.498 25.6-25.498h819.2c14.115 0 25.6 11.485 25.6 25.6-0.006 0.603-1.189 71.333-54.198 140.507-70.734 92.304-202.483 141.093-381.002 141.093z" />
71
+ <glyph unicode="&#xe82b;" glyph-name="users" data-tags="users" d="M947.2 38.4h-563.2c-42.347 0-76.8 34.453-76.8 76.8 0 2.461 0.538 60.952 47.331 118.544 26.883 33.088 63.541 59.31 108.952 77.941 54.856 22.504 122.858 33.915 202.117 33.915s147.261-11.411 202.117-33.915c45.411-18.63 82.067-44.853 108.952-77.941 46.794-57.592 47.331-116.083 47.331-118.544 0-42.347-34.453-76.8-76.8-76.8zM358.4 115.069c0.072-14.056 11.528-25.469 25.6-25.469h563.2c14.072 0 25.528 11.413 25.6 25.469-0.048 1.786-1.656 45.802-37.851 88.786-49.88 59.235-143.019 90.546-269.349 90.546s-219.469-31.31-269.349-90.546c-36.194-42.984-37.803-87-37.851-88.786zM665.6 396.8c-112.926 0-204.8 91.874-204.8 204.8 0 112.928 91.874 204.8 204.8 204.8s204.8-91.872 204.8-204.8c0-112.926-91.874-204.8-204.8-204.8zM665.6 755.2c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM230.4 38.4h-153.6c-42.347 0-76.8 34.451-76.8 76.8 0 1.915 0.386 47.446 33.92 92.16 19.373 25.832 45.778 46.299 78.483 60.834 39.126 17.389 87.438 26.206 143.597 26.206 9.16 0 18.232-0.235 26.962-0.701 14.118-0.754 24.954-12.81 24.2-26.928-0.752-14.117-12.781-24.96-26.928-24.2-7.826 0.418-15.979 0.629-24.234 0.629-199.366 0-204.666-121.826-204.8-128.131 0.072-14.054 11.528-25.469 25.6-25.469h153.6c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM256 345.6c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6zM256 601.6c-56.464 0-102.4-45.936-102.4-102.4s45.936-102.4 102.4-102.4 102.4 45.936 102.4 102.4c0 56.464-45.936 102.4-102.4 102.4z" />
72
+ <glyph unicode="&#xe82c;" glyph-name="shirt" data-tags="shirt" d="M691.2-12.8h-409.6c-42.347 0-76.8 34.451-76.8 76.8v476.482l-119.904-39.968c-13.414-4.472-27.91 2.778-32.381 16.19l-51.2 153.6c-4.029 12.086 1.442 25.296 12.837 30.994l307.2 153.6c7.936 3.968 17.36 3.542 24.907-1.122s12.141-12.904 12.141-21.776c0-70.579 57.421-128 128-128s128 57.421 128 128c0 8.872 4.594 17.112 12.141 21.776 7.547 4.666 16.971 5.090 24.907 1.122l307.2-153.6c11.395-5.698 16.867-18.907 12.837-30.994l-51.2-153.6c-4.47-13.411-18.966-20.662-32.381-16.19l-119.904 39.968v-476.482c0-42.349-34.451-76.8-76.8-76.8zM230.398 601.6c5.307 0 10.555-1.65 14.97-4.832 6.675-4.811 10.632-12.539 10.632-20.768v-512c0-14.115 11.485-25.6 25.6-25.6h409.6c14.115 0 25.6 11.485 25.6 25.6v512c0 8.229 3.957 15.957 10.632 20.768 6.677 4.811 15.258 6.123 23.064 3.518l129.314-43.104 36.083 108.25-254.624 127.312c-17.946-79.995-89.538-139.944-174.869-139.944-85.333 0-156.925 59.949-174.869 139.944l-254.624-127.312 36.083-108.25 129.314 43.104c2.645 0.88 5.378 1.314 8.094 1.314z" />
73
+ <glyph unicode="&#xe82d;" glyph-name="store" data-tags="store" d="M921.6 473.6v51.2c0 3.974-0.925 7.894-2.702 11.448l-102.4 204.8c-4.336 8.674-13.2 14.152-22.898 14.152h-614.4c-9.698 0-18.562-5.478-22.898-14.152l-102.4-204.8c-1.778-3.554-2.702-7.474-2.702-11.448v-51.2c0-41.786 20.131-78.955 51.2-102.33v-332.87h-25.6c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h819.2c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-25.598v332.87c31.067 23.376 51.198 60.544 51.198 102.33zM588.8 396.8c-42.347 0-76.8 34.453-76.8 76.8v25.6h153.6v-25.6c0-42.347-34.453-76.8-76.8-76.8zM102.4 473.6v25.6h153.6v-25.6c0-42.347-34.453-76.8-76.8-76.8s-76.8 34.453-76.8 76.8zM460.8 704v-153.6h-146.413l38.4 153.6h108.013zM620.013 704l38.4-153.6h-146.413v153.6h108.013zM307.2 499.2h153.6v-25.6c0-42.347-34.453-76.8-76.8-76.8s-76.8 34.453-76.8 76.8v25.6zM716.8 499.2h153.6v-25.6c0-42.347-34.453-76.8-76.8-76.8s-76.8 34.453-76.8 76.8v25.6zM854.578 550.4h-143.39l-38.4 153.6h104.99l76.8-153.6zM195.022 704h104.99l-38.4-153.6h-143.39l76.8 153.6zM153.6 348.174c8.274-1.686 16.835-2.574 25.6-2.574 41.827 0 79.029 20.168 102.4 51.29 23.371-31.122 60.573-51.29 102.4-51.29s79.029 20.168 102.4 51.29c18.474-24.598 45.589-42.354 76.8-48.714v-309.776h-409.6v309.774zM819.202 38.4h-204.802v309.774c31.211 6.362 58.325 24.115 76.8 48.714 23.371-31.12 60.573-51.288 102.4-51.288 8.766 0 17.326 0.89 25.602 2.576v-309.776zM716.8 217.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM230.4 192c-6.552 0-13.102 2.499-18.102 7.499-9.997 9.997-9.997 26.206 0 36.203l51.2 51.2c9.998 9.997 26.206 9.997 36.205 0 9.997-9.997 9.997-26.206 0-36.203l-51.2-51.2c-5-5-11.55-7.499-18.102-7.499zM281.6 89.6c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l153.6 153.6c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-153.6-153.6c-5-5-11.55-7.499-18.102-7.499zM435.2 89.6c-6.552 0-13.102 2.499-18.102 7.499-9.997 9.997-9.997 26.206 0 36.203l51.2 51.2c9.998 9.997 26.206 9.997 36.205 0s9.998-26.206 0-36.203l-51.2-51.2c-5-5-11.55-7.499-18.102-7.499z" />
74
+ <glyph unicode="&#xe82e;" glyph-name="cart2" data-tags="cart" d="M409.6-64c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4 102.4-45.936 102.4-102.4-45.936-102.4-102.4-102.4zM409.6 89.6c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2 51.2 22.968 51.2 51.2-22.968 51.2-51.2 51.2zM768-64c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4 102.4-45.936 102.4-102.4-45.936-102.4-102.4-102.4zM768 89.6c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2 51.2 22.968 51.2 51.2-22.968 51.2-51.2 51.2zM898.021 731.312c-12.859 15.181-32.258 23.888-53.221 23.888h-626.846l-5.085 30.506c-6.72 40.315-43.998 71.894-84.869 71.894h-51.2c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h51.2c15.722 0 31.781-13.603 34.366-29.112l85.566-513.395c6.718-40.314 43.997-71.893 84.867-71.893h512c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-512c-15.722 0-31.781 13.603-34.366 29.11l-12.63 75.784 510.206 44.366c39.69 3.451 75.907 36.938 82.458 76.234l34.366 206.194c3.448 20.677-1.952 41.243-14.813 56.424zM862.331 683.306l-34.366-206.194c-2.699-16.186-20.043-32.221-36.39-33.645l-514.214-44.714-50.874 305.246h618.314c5.968 0 10.995-2.054 14.155-5.782 3.157-3.73 4.357-9.024 3.376-14.912z" />
75
+ <glyph unicode="&#xe82f;" glyph-name="tag" data-tags="tag" d="M384-17.13c-20.554 0-39.84 7.966-54.306 22.43l-260.394 260.395c-14.466 14.464-22.432 33.75-22.432 54.304s7.966 39.84 22.434 54.306l439.594 439.592c24.91 24.914 70.269 43.702 105.504 43.702h230.4c42.349 0 76.8-34.453 76.8-76.8v-230.4c0-35.232-18.787-80.59-43.699-105.504l-439.595-439.595c-14.466-14.466-33.752-22.43-54.306-22.43zM614.4 806.4c-21.246 0-54.278-13.682-69.299-28.704l-439.595-439.595c-4.795-4.795-7.435-11.224-7.435-18.101s2.64-13.306 7.435-18.099l260.394-260.397c4.795-4.794 11.224-7.434 18.101-7.434s13.307 2.64 18.102 7.435l439.594 439.592c15.021 15.024 28.704 48.058 28.704 69.302v230.4c0 14.115-11.485 25.6-25.6 25.6h-230.4zM742.4 601.6c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM742.4 704c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6z" />
76
+ <glyph unicode="&#xe830;" glyph-name="phone-handset" data-tags="phone-handset" d="M819.2-64c-90.691 0-187.154 25.699-286.706 76.386-91.794 46.736-182.48 113.654-262.258 193.522-79.763 79.853-146.595 170.624-193.272 262.498-50.608 99.61-76.269 196.102-76.269 286.795 0 58.774 54.765 115.55 78.31 137.232 33.85 31.17 87.104 67.568 125.794 67.568 19.245 0 41.803-12.589 70.994-39.616 21.782-20.17 46.27-47.51 70.814-79.067 14.794-19.021 88.592-116.267 88.592-162.917 0-38.27-43.25-64.853-89.037-92.998-17.694-10.875-35.992-22.122-49.226-32.73-14.114-11.315-16.645-17.288-17.061-18.629 48.602-121.128 197.141-269.651 318.203-318.184 1.085 0.341 7.067 2.699 18.592 17.075 10.608 13.234 21.854 31.531 32.73 49.227 28.144 45.789 54.726 89.038 92.998 89.038 46.648 0 143.896-73.798 162.917-88.592 31.557-24.546 58.898-49.032 79.067-70.816 27.029-29.189 39.616-51.747 39.616-70.992 0-38.701-36.378-92.115-67.528-126.099-21.693-23.662-78.491-78.701-137.272-78.701zM204.477 908.797c-13.731-0.262-50.634-17.054-90.789-54.029-38.115-35.099-61.792-73.25-61.792-99.568 0-344.523 423.093-768 767.304-768 26.28 0 64.418 23.795 99.528 62.099 37.003 40.366 53.806 77.413 54.069 91.178-1.662 9.728-28.57 47.563-102.232 104.283-63.322 48.762-114.699 74.886-127.901 75.237-0.925-0.274-6.656-2.467-18.277-17.222-10.104-12.832-20.912-30.418-31.366-47.424-28.683-46.666-55.774-90.744-95.122-90.744-6.336 0-12.597 1.219-18.608 3.624-134.376 53.75-293.31 212.685-347.061 347.061-6.456 16.138-7.485 41.414 24.272 70.184 16.882 15.293 40.25 29.656 62.848 43.546 17.006 10.453 34.59 21.261 47.422 31.366 14.755 11.619 16.95 17.352 17.222 18.277-0.352 13.203-26.475 64.579-75.237 127.902-56.72 73.659-94.554 100.568-104.282 102.23z" />
77
+ <glyph unicode="&#xe831;" glyph-name="phone" data-tags="phone" d="M916.19 504.491c-53.283-0.002-149.901 19.214-180.016 49.326-18.466 18.466-22.854 41.64-26.381 60.262-4.344 22.931-6.95 29.755-17.010 34.077-46.194 19.853-112.456 31.238-181.8 31.238-68.621 0-134.16-11.189-179.81-30.699-9.939-4.248-12.499-11.050-16.741-33.938-3.459-18.672-7.765-41.91-26.234-60.381-16.814-16.813-51.976-28.36-78.512-35.086-34.218-8.674-70.85-13.646-100.502-13.646-33.982 0-56.965 6.461-70.258 19.755-20.021 20.019-32.797 47.4-35.050 75.12-1.901 23.365 2.6 57.979 34.824 90.205 52.315 52.315 122.699 93.11 209.195 121.253 79.549 25.882 170.093 39.562 261.842 39.562 92.378 0 183.67-13.848 264.006-40.048 87.304-28.472 158.35-69.688 211.163-122.499 53.766-53.765 40.451-125.102 0.629-164.928-13.173-13.17-35.856-19.571-69.347-19.573zM510.986 730.595c77.157 0 148.901-12.571 202.014-35.398 36.51-15.69 42.632-48 47.099-71.59 2.672-14.104 4.979-26.285 12.28-33.586 12.915-12.914 87.362-34.331 143.811-34.33 24.638 0 32.398 4.219 33.4 4.835 15.851 16.061 35.757 55.621-0.885 92.261-92.392 92.392-256.493 147.552-438.966 147.552-180.973 0-343.526-54.51-434.832-145.818-14.76-14.76-21.488-31.533-19.998-49.853 1.258-15.462 8.72-31.445 19.986-42.827 0.965-0.606 8.846-5 34.291-5 56.242 0 130.12 21.048 142.811 33.738 7.226 7.227 9.482 19.403 12.094 33.502 4.382 23.659 10.386 56.061 46.963 71.691 52.538 22.456 123.541 34.822 199.931 34.822zM844.8 38.4h-665.6c-34.347 0-66.043 13.509-89.248 38.040-23.206 24.531-34.936 56.928-33.032 91.222 0.218 3.928 6.024 97.307 65.029 191.453 34.904 55.694 81.181 100.088 137.541 131.946 69.658 39.374 154.613 59.339 252.51 59.339s182.853-19.965 252.509-59.339c56.363-31.858 102.637-76.251 137.542-131.946 59.005-94.146 64.811-187.525 65.030-191.453 1.904-34.296-9.827-66.691-33.034-91.222s-54.901-38.040-89.248-38.040zM512 499.2c-159.592 0-275.859-55.696-345.574-165.541-52.726-83.077-58.336-168.038-58.387-168.888-1.114-20.050 5.67-38.942 19.107-53.146s31.923-22.026 52.054-22.026h665.6c20.131 0 38.618 7.822 52.054 22.027 13.435 14.203 20.222 33.096 19.104 53.195-0.046 0.798-5.658 85.762-58.384 168.837-69.715 109.845-185.984 165.541-345.574 165.541zM512 140.8c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6zM512 396.8c-56.464 0-102.4-45.936-102.4-102.4s45.936-102.4 102.4-102.4c56.464 0 102.4 45.936 102.4 102.4s-45.936 102.4-102.4 102.4z" />
78
+ <glyph unicode="&#xe832;" glyph-name="pushpin" data-tags="pushpin" d="M921.6 612.203l-270.997 270.997c-9.65 9.65-22.507 14.965-36.203 14.965s-26.554-5.314-36.203-14.965l-14.997-14.997c-14.834-14.834-25.6-40.826-25.6-61.803v-51.2c0-7.288-5.45-20.446-10.603-25.6l-142.997-142.997c-5.152-5.154-18.312-10.603-25.6-10.603h-51.2c-20.978 0-46.97-10.766-61.803-25.6l-14.997-14.997c-19.963-19.963-19.963-52.443 0-72.406l79.534-79.534-253.426-329.453c-7.84-10.192-6.902-24.619 2.189-33.71 4.966-4.966 11.522-7.499 18.109-7.499 5.477 0 10.974 1.75 15.602 5.309l329.453 253.426 79.536-79.534c9.65-9.651 22.507-14.966 36.203-14.966s26.554 5.314 36.203 14.966l14.997 14.997c14.834 14.834 25.6 40.826 25.6 61.803v51.2c0 7.288 5.45 20.446 10.603 25.6l142.997 142.997c5.154 5.154 18.312 10.603 25.6 10.603h51.2c20.976 0 46.968 10.766 61.803 25.6l14.997 14.997c9.65 9.65 14.966 22.507 14.966 36.203s-5.317 26.554-14.966 36.203zM216.757 178.358l129.688 168.594 38.906-38.906-168.594-129.688zM870.4 561.003c-5.154-5.154-18.312-10.603-25.6-10.603h-51.2c-20.976 0-46.968-10.766-61.803-25.6l-142.997-142.997c-14.834-14.834-25.6-40.826-25.6-61.803v-51.2c0-7.288-5.45-20.446-10.603-25.6l-14.93-14.958c-0.006-0.003-0.032-0.008-0.067-0.008v-0.032l-270.997 270.998 14.998 14.998c5.152 5.154 18.312 10.603 25.6 10.603h51.2c20.978 0 46.97 10.766 61.803 25.6l142.995 142.995c14.834 14.834 25.6 40.826 25.6 61.803v51.2c0 7.288 5.45 20.446 10.603 25.6l14.997 14.997 270.997-270.997-14.997-14.997z" />
79
+ <glyph unicode="&#xe833;" glyph-name="map-marker" data-tags="map-marker" d="M512-64c-7.856 0-15.277 3.606-20.13 9.784-2.931 3.73-72.587 92.864-143.229 224.51-41.581 77.491-74.742 153.568-98.565 226.118-30.043 91.499-45.277 177.758-45.277 256.387 0 169.39 137.81 307.2 307.2 307.2s307.2-137.81 307.2-307.2c0-78.629-15.234-164.888-45.278-256.386-23.822-72.55-56.984-148.629-98.565-226.118-70.64-131.646-140.298-220.781-143.229-224.51-4.851-6.179-12.272-9.786-20.128-9.786zM512 908.8c-141.158 0-256-114.842-256-256 0-166.597 74.914-341.176 137.758-458.296 46.186-86.074 92.634-154.306 118.237-189.938 25.709 35.789 72.429 104.432 118.688 190.76 62.643 116.902 137.317 291.163 137.317 457.474 0 141.158-114.84 256-256 256zM512 499.2c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6zM512 755.2c-56.464 0-102.4-45.936-102.4-102.4s45.936-102.4 102.4-102.4c56.464 0 102.4 45.936 102.4 102.4s-45.936 102.4-102.4 102.4z" />
80
+ <glyph unicode="&#xe834;" glyph-name="map" data-tags="map" d="M960.659 904.976c-7.549 4.664-16.971 5.088-24.907 1.122l-295.752-147.875-295.752 147.875c-7.206 3.603-15.691 3.603-22.898 0l-307.2-153.6c-8.672-4.336-14.15-13.2-14.15-22.898v-768c0-8.872 4.594-17.112 12.141-21.776 4.11-2.541 8.779-3.824 13.461-3.824 3.912 0 7.834 0.898 11.446 2.702l295.752 147.875 295.752-147.875c7.206-3.603 15.693-3.603 22.899 0l307.2 153.6c8.674 4.336 14.152 13.2 14.152 22.898v768c-0.003 8.872-4.597 17.112-12.144 21.776zM307.2 131.022l-256-128v710.755l256 128v-710.755zM358.4 841.778l256-128v-710.757l-256 128v710.757zM921.6 131.022l-256-128v710.755l256 128v-710.755z" />
81
+ <glyph unicode="&#xe835;" glyph-name="location" data-tags="location" d="M435.202-64.002c-2.205 0-4.435 0.285-6.642 0.878-11.186 3.003-18.96 13.142-18.96 24.723v384h-384c-11.581 0-21.72 7.774-24.723 18.96-3.005 11.184 1.874 22.994 11.898 28.795l972.8 563.2c10.037 5.811 22.726 4.147 30.928-4.053 8.202-8.202 9.864-20.891 4.053-30.93l-563.2-972.8c-4.658-8.045-13.186-12.774-22.154-12.774zM120.912 396.8h314.288c14.138 0 25.6-11.461 25.6-25.6v-314.288l467.346 807.234-807.234-467.346z" />
82
+ <glyph unicode="&#xe836;" glyph-name="calendar-full" data-tags="calendar-full" d="M947.2 857.6h-128v25.6c0 14.138-11.461 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-25.6h-512v25.6c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-25.6h-128c-42.347 0-76.8-34.453-76.8-76.8v-716.8c0-42.349 34.453-76.8 76.8-76.8h870.4c42.349 0 76.8 34.451 76.8 76.8v716.8c0 42.347-34.451 76.8-76.8 76.8zM76.8 806.4h128v-76.8c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v76.8h512v-76.8c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v76.8h128c14.115 0 25.6-11.485 25.6-25.6v-128h-921.6v128c0 14.115 11.485 25.6 25.6 25.6zM947.2 38.4h-870.4c-14.115 0-25.6 11.485-25.6 25.6v537.6h921.6v-537.6c0-14.115-11.485-25.6-25.6-25.6zM384 448h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM537.6 448h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 448h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 448h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM230.4 345.6h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM384 345.6h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM537.6 345.6h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 345.6h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 345.6h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM230.4 243.2h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM384 243.2h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM537.6 243.2h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 243.2h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 243.2h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM230.4 140.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM384 140.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM537.6 140.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 140.8h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 140.8h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
83
+ <glyph unicode="&#xe837;" glyph-name="keyboard" data-tags="keyboard" d="M896 140.8h-819.2c-42.347 0-76.8 34.451-76.8 76.8v409.6c0 42.347 34.453 76.8 76.8 76.8h819.2c42.349 0 76.8-34.453 76.8-76.8v-409.6c0-42.349-34.451-76.8-76.8-76.8zM76.8 652.8c-14.115 0-25.6-11.485-25.6-25.6v-409.6c0-14.115 11.485-25.6 25.6-25.6h819.2c14.115 0 25.6 11.485 25.6 25.6v409.6c0 14.115-11.485 25.6-25.6 25.6h-819.2zM179.2 550.4h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM844.8 550.4h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM230.4 448h-102.4c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h102.4c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM179.2 243.2h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM588.8 243.2h-307.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h307.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4 243.2h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 345.6h-153.6c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h128v76.8c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-14.139-11.461-25.6-25.6-25.6zM281.6 345.6h-153.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h153.6c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM307.2 576c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM409.6 576c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM512 576c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM614.4 576c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM716.8 576c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM358.4 473.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM460.8 473.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM563.2 473.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM665.6 473.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM768 473.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM409.6 371.2c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM512 371.2c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM614.4 371.2c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6z" />
84
+ <glyph unicode="&#xe838;" glyph-name="spell-check" data-tags="spell-check" d="M230.4 243.2c-14.138 0-25.6-11.461-25.6-25.6v-0.070c-21.408 16.107-48.006 25.67-76.8 25.67-70.579 0-128-57.421-128-128s57.421-128 128-128c28.794 0 55.392 9.563 76.8 25.67v-0.070c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v204.8c0 14.139-11.462 25.6-25.6 25.6zM128 38.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM435.2 243.2c-28.794 0-55.392-9.563-76.8-25.67v204.87c0 14.139-11.462 25.6-25.6 25.6s-25.6-11.461-25.6-25.6v-409.6c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v0.070c21.408-16.107 48.006-25.67 76.8-25.67 70.579 0 128 57.421 128 128s-57.421 128-128 128zM435.2 38.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM742.4-12.8c-70.579 0-128 57.421-128 128s57.421 128 128 128c22.496 0 44.632-5.925 64.014-17.136 12.238-7.080 16.422-22.739 9.344-34.978-7.082-12.24-22.744-16.421-34.978-9.344-11.603 6.71-24.875 10.258-38.381 10.258-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8c13.509 0 26.782 3.547 38.382 10.258 12.235 7.078 27.898 2.899 34.978-9.341 7.080-12.237 2.899-27.899-9.341-34.978-19.382-11.213-41.52-17.139-64.019-17.139zM588.8 422.4c-6.552 0-13.102 2.499-18.101 7.499l-153.6 153.6c-9.997 9.998-9.997 26.206 0 36.205 9.998 9.997 26.206 9.997 36.205 0l135.496-135.499 340.299 340.298c9.997 9.997 26.206 9.997 36.203 0 9.998-9.998 9.998-26.206 0-36.205l-358.4-358.4c-5-4.998-11.55-7.498-18.102-7.498z" />
85
+ <glyph unicode="&#xe839;" glyph-name="screen" data-tags="screen" d="M896 857.6h-819.2c-42.347 0-76.8-34.453-76.8-76.8v-512c0-42.349 34.453-76.8 76.8-76.8h384v-102.4h-179.2c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h409.6c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-179.2v102.4h384c42.349 0 76.8 34.451 76.8 76.8v512c0 42.347-34.451 76.8-76.8 76.8zM921.6 268.8c0-14.115-11.485-25.6-25.6-25.6h-819.2c-14.115 0-25.6 11.485-25.6 25.6v512c0 14.115 11.485 25.6 25.6 25.6h819.2c14.115 0 25.6-11.485 25.6-25.6v-512z" />
86
+ <glyph unicode="&#xe83a;" glyph-name="smartphone" data-tags="smartphone" d="M537.6 38.4h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4-64h-460.8c-42.347 0-76.8 34.451-76.8 76.8v870.4c0 42.347 34.453 76.8 76.8 76.8h460.8c42.349 0 76.8-34.453 76.8-76.8v-870.4c0-42.349-34.451-76.8-76.8-76.8zM281.6 908.8c-14.115 0-25.6-11.485-25.6-25.6v-870.4c0-14.115 11.485-25.6 25.6-25.6h460.8c14.115 0 25.6 11.485 25.6 25.6v870.4c0 14.115-11.485 25.6-25.6 25.6h-460.8zM691.2 140.8h-358.4c-14.138 0-25.6 11.461-25.6 25.6v665.6c0 14.138 11.462 25.6 25.6 25.6h358.4c14.139 0 25.6-11.462 25.6-25.6v-665.6c0-14.139-11.461-25.6-25.6-25.6zM358.4 192h307.2v614.4h-307.2v-614.4z" />
87
+ <glyph unicode="&#xe83b;" glyph-name="tablet" data-tags="tablet" d="M844.8-64h-665.6c-42.347 0-76.8 34.451-76.8 76.8v870.4c0 42.347 34.453 76.8 76.8 76.8h665.6c42.349 0 76.8-34.453 76.8-76.8v-870.4c0-42.349-34.451-76.8-76.8-76.8zM179.2 908.8c-14.115 0-25.6-11.485-25.6-25.6v-870.4c0-14.115 11.485-25.6 25.6-25.6h665.6c14.115 0 25.6 11.485 25.6 25.6v870.4c0 14.115-11.485 25.6-25.6 25.6h-665.6zM537.6 38.4h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM793.6 140.8h-563.2c-14.138 0-25.6 11.461-25.6 25.6v665.6c0 14.138 11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.462 25.6-25.6v-665.6c0-14.139-11.461-25.6-25.6-25.6zM256 192h512v614.4h-512v-614.4z" />
88
+ <glyph unicode="&#xe83c;" glyph-name="laptop" data-tags="laptop" d="M179.2 243.2h665.6c42.349 0 76.8 34.451 76.8 76.8v409.6c0 42.347-34.451 76.8-76.8 76.8h-665.6c-42.347 0-76.8-34.453-76.8-76.8v-409.6c0-42.349 34.453-76.8 76.8-76.8zM153.6 729.6c0 14.115 11.485 25.6 25.6 25.6h665.6c14.115 0 25.6-11.485 25.6-25.6v-409.6c0-14.115-11.485-25.6-25.6-25.6h-665.6c-14.115 0-25.6 11.485-25.6 25.6v409.6zM998.4 192h-972.8c-14.138 0-25.6-11.461-25.6-25.6v-51.2c0-42.349 34.453-76.8 76.8-76.8h870.4c42.349 0 76.8 34.451 76.8 76.8v51.2c0 14.139-11.461 25.6-25.6 25.6zM947.2 89.6h-870.4c-14.115 0-25.6 11.485-25.6 25.6v25.6h921.6v-25.6c0-14.115-11.485-25.6-25.6-25.6z" />
89
+ <glyph unicode="&#xe83d;" glyph-name="laptop-phone" data-tags="laptop-phone" d="M588.8 243.2h-409.6c-42.347 0-76.8 34.451-76.8 76.8v409.6c0 42.347 34.453 76.8 76.8 76.8h665.6c42.349 0 76.8-34.453 76.8-76.8v-51.2c0-14.138-11.461-25.6-25.6-25.6s-25.6 11.462-25.6 25.6v51.2c0 14.115-11.485 25.6-25.6 25.6h-665.6c-14.115 0-25.6-11.485-25.6-25.6v-409.6c0-14.115 11.485-25.6 25.6-25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM588.8 38.4h-512c-42.347 0-76.8 34.453-76.8 76.8v51.2c0 14.139 11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6h-537.6v-25.6c0-14.115 11.485-25.6 25.6-25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM947.2 38.4h-204.8c-42.347 0-76.8 34.453-76.8 76.8v409.6c0 42.347 34.453 76.8 76.8 76.8h204.8c42.347 0 76.8-34.453 76.8-76.8v-409.6c0-42.347-34.453-76.8-76.8-76.8zM742.4 550.4c-14.115 0-25.6-11.485-25.6-25.6v-409.6c0-14.115 11.485-25.6 25.6-25.6h204.8c14.115 0 25.6 11.485 25.6 25.6v409.6c0 14.115-11.485 25.6-25.6 25.6h-204.8zM844.8 140.8c-6.736 0-13.328 2.736-18.098 7.504-4.766 4.768-7.502 11.36-7.502 18.096s2.736 13.344 7.502 18.098c4.754 4.766 11.362 7.502 18.098 7.502s13.344-2.736 18.096-7.502c4.768-4.754 7.504-11.346 7.504-18.098 0-6.736-2.736-13.344-7.504-18.096-4.768-4.768-11.36-7.504-18.096-7.504z" />
90
+ <glyph unicode="&#xe83e;" glyph-name="power-switch" data-tags="power-switch" d="M486.4 345.6c-14.138 0-25.6 11.461-25.6 25.6v460.8c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-460.8c0-14.139-11.462-25.6-25.6-25.6zM486.4-12.8c-102.57 0-199 39.944-271.53 112.47-72.528 72.528-112.47 168.96-112.47 271.53 0 84.395 26.859 164.478 77.674 231.594 49.15 64.915 118.979 113.394 196.624 136.501 13.55 4.034 27.805-3.683 31.838-17.234s-3.683-27.805-17.234-31.838c-139.955-41.654-237.702-172.84-237.702-319.022 0-183.506 149.294-332.8 332.8-332.8s332.8 149.294 332.8 332.8c0 146.187-97.75 277.374-237.71 319.024-13.552 4.034-21.267 18.288-17.234 31.838 4.032 13.552 18.29 21.267 31.837 17.235 77.646-23.106 147.48-71.582 196.632-136.499 50.816-67.115 77.675-147.202 77.675-231.598 0-102.57-39.942-199.002-112.47-271.53-72.528-72.526-168.96-112.47-271.53-112.47z" />
91
+ <glyph unicode="&#xe83f;" glyph-name="bubble" data-tags="bubble" d="M25.6-12.8c-11.507 0-21.6 7.677-24.67 18.766s1.634 22.864 11.501 28.784c86.57 51.942 122.485 127.414 135.218 162.755-94.088 72.048-147.648 171.746-147.648 276.094 0 52.704 13.23 103.755 39.323 151.736 24.902 45.794 60.406 86.806 105.526 121.899 91.504 71.17 212.802 110.365 341.55 110.365s250.046-39.195 341.552-110.366c45.118-35.093 80.624-76.104 105.526-121.899 26.091-47.979 39.322-99.030 39.322-151.734 0-52.702-13.23-103.755-39.322-151.736-24.902-45.794-60.408-86.806-105.526-121.899-91.506-71.17-212.803-110.365-341.552-110.365-52.907 0-104.8 6.627-154.437 19.707-21.974-14.637-63.040-40.605-112.086-65.005-76.163-37.89-141.528-57.102-194.277-57.102zM486.4 806.4c-239.97 0-435.2-149.294-435.2-332.8 0-92.946 51.432-182.379 141.107-245.368 8.797-6.178 12.795-17.194 10.013-27.576-5.984-22.325-26.363-83.597-80.878-142.734 66.659 23.341 138.424 63.832 191.434 100.286 6.296 4.328 14.197 5.621 21.544 3.52 48.558-13.888 99.691-20.928 151.981-20.928 239.97 0 435.2 149.294 435.2 332.8s-195.23 332.8-435.2 332.8z" />
92
+ <glyph unicode="&#xe840;" glyph-name="heart-pulse" data-tags="heart-pulse" d="M486.4-12.8c-4.283 0-8.566 1.074-12.432 3.222-5.954 3.307-147.285 82.464-274.914 208.987-10.040 9.954-10.11 26.163-0.157 36.203s26.163 10.11 36.203 0.157c101.349-100.472 214.307-171.323 251.293-193.35 37 22.054 150.123 93.045 251.304 193.352 10.042 9.952 26.248 9.882 36.205-0.158 9.954-10.040 9.883-26.25-0.158-36.205-127.629-126.52-268.958-205.678-274.912-208.986-3.866-2.149-8.149-3.222-12.432-3.222zM65.478 396.784c-9.61 0-18.821 5.437-23.182 14.709-28.066 59.659-42.296 119.314-42.296 177.307 0 148.218 120.582 268.8 268.8 268.8 50.173 0 103.461-18.805 150.051-52.952 27.251-19.973 50.442-44.043 67.549-69.606 17.107 25.565 40.299 49.634 67.55 69.606 46.589 34.147 99.878 52.952 150.050 52.952 148.218 0 268.8-120.582 268.8-268.8 0-57.992-14.23-117.645-42.294-177.301-6.018-12.794-21.267-18.29-34.061-12.267-12.794 6.018-18.286 21.267-12.269 34.061 24.834 52.786 37.424 105.107 37.424 155.507 0 119.986-97.616 217.6-217.6 217.6-87.187 0-171.856-71.725-193.314-136.096-3.485-10.453-13.267-17.504-24.286-17.504s-20.802 7.051-24.286 17.504c-21.456 64.371-106.125 136.096-193.314 136.096-119.986 0-217.6-97.614-217.6-217.6 0-50.4 12.592-102.723 37.426-155.512 6.019-12.794 0.526-28.043-12.267-34.061-3.522-1.659-7.23-2.443-10.88-2.443zM538.346 191.976c-0.232 0-0.456 0.002-0.678 0.006-10.35 0.218-29.122 5.598-38.552 39.194l-62.291 221.915-41.328-167.894c-8.106-32.933-26.902-39.813-37.387-40.982-10.483-1.173-30.334 1.397-45.504 31.733l-31.005 62.010c-1.475 2.952-2.85 4.834-3.893 6-0.171-0.229-0.355-0.483-0.546-0.765-18.939-27.816-61.053-48.792-97.962-48.792h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c21.554 0 47.152 13.942 55.638 26.408 11.397 16.739 28.026 25.638 45.629 24.48 19.142-1.286 36.246-14.274 46.928-35.634l22.781-45.562 47.93 194.71c8.069 32.784 24.658 39.907 37.15 40.109 12.512 0.24 29.302-6.379 38.43-38.888l65.763-234.286 60.323 184.738c10.504 32.168 29.779 37.707 40.334 38.144 10.542 0.435 30.224-3.482 43.357-34.672l37.062-88.026c6.946-16.496 29.573-31.522 47.474-31.522h76.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6h-76.8c-38.24 0-79.822 27.608-94.662 62.853l-30.301 71.968-65.208-199.699c-10.598-32.454-29-37.546-39.483-37.546z" />
93
+ <glyph unicode="&#xe841;" glyph-name="construction" data-tags="construction" d="M1024 704.008v76.792c0 14.138-11.461 25.6-25.6 25.6h-179.192c-0.005 0-0.011 0-0.016 0h-255.984c-0.005 0-0.011 0-0.016 0h-255.984c-0.005 0-0.011 0-0.016 0h-281.592c-14.138 0-25.6-11.462-25.6-25.6v-307.2c0-14.139 11.462-25.6 25.6-25.6h76.8v-307.2h-25.6c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h204.8c14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6h-25.6v153.6h512v-153.6h-25.6c-14.139 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6h204.8c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-25.6v307.2h76.8c14.139 0 25.6 11.461 25.6 25.6v230.392c0 0.005 0 0.011 0 0.016zM972.8 714.603l-215.403-215.403h-183.594l256 256h142.997v-40.597zM317.803 499.2l256 256h183.594l-256-256h-183.594zM61.803 499.2l256 256h183.594l-256-256h-183.594zM245.397 755.2l-194.197-194.197v194.197h194.197zM153.6 140.8v307.2h51.2v-307.2h-51.2zM256 345.6v102.4h512v-102.4h-512zM870.4 140.8h-51.2v307.2h51.2v-307.2zM829.803 499.2l142.997 142.997v-142.997h-142.997z" />
94
+ <glyph unicode="&#xe842;" glyph-name="pie-chart" data-tags="pie-chart" d="M435.2-64c-116.246 0-225.534 45.269-307.733 127.467s-127.467 191.488-127.467 307.733c0 116.246 45.269 225.534 127.467 307.733s191.486 127.467 307.733 127.467c14.138 0 25.6-11.462 25.6-25.6v-384h384c14.139 0 25.6-11.461 25.6-25.6 0-116.245-45.269-225.534-127.467-307.733s-191.488-127.467-307.733-127.467zM409.6 754.357c-199.842-13.226-358.4-180.026-358.4-383.157 0-211.739 172.262-384 384-384 203.131 0 369.931 158.558 383.157 358.4h-383.157c-14.138 0-25.6 11.461-25.6 25.6v383.157zM947.2 448h-409.6c-14.139 0-25.6 11.462-25.6 25.6v409.6c0 14.138 11.461 25.6 25.6 25.6 116.245 0 225.534-45.269 307.733-127.467s127.467-191.486 127.467-307.733c0-14.138-11.461-25.6-25.6-25.6zM563.2 499.2h357.557c-12.664 191.374-166.184 344.891-357.557 357.557v-357.557z" />
95
+ <glyph unicode="&#xe843;" glyph-name="chart-bars" data-tags="chart-bars" d="M896-64h-819.2c-42.347 0-76.8 34.451-76.8 76.8v819.2c0 42.347 34.453 76.8 76.8 76.8h819.2c42.349 0 76.8-34.453 76.8-76.8v-819.2c0-42.349-34.451-76.8-76.8-76.8zM76.8 857.6c-14.115 0-25.6-11.485-25.6-25.6v-819.2c0-14.115 11.485-25.6 25.6-25.6h819.2c14.115 0 25.6 11.485 25.6 25.6v819.2c0 14.115-11.485 25.6-25.6 25.6h-819.2zM332.8 89.6h-102.4c-14.138 0-25.6 11.461-25.6 25.6v460.8c0 14.138 11.462 25.6 25.6 25.6h102.4c14.138 0 25.6-11.462 25.6-25.6v-460.8c0-14.139-11.462-25.6-25.6-25.6zM256 140.8h51.2v409.6h-51.2v-409.6zM537.6 89.6h-102.4c-14.138 0-25.6 11.461-25.6 25.6v614.4c0 14.138 11.462 25.6 25.6 25.6h102.4c14.139 0 25.6-11.462 25.6-25.6v-614.4c0-14.139-11.461-25.6-25.6-25.6zM460.8 140.8h51.2v563.2h-51.2v-563.2zM742.4 89.6h-102.4c-14.139 0-25.6 11.461-25.6 25.6v256c0 14.139 11.461 25.6 25.6 25.6h102.4c14.139 0 25.6-11.461 25.6-25.6v-256c0-14.139-11.461-25.6-25.6-25.6zM665.6 140.8h51.2v204.8h-51.2v-204.8z" />
96
+ <glyph unicode="&#xe844;" glyph-name="gift1" data-tags="gift" d="M947.2 704h-153.67c16.107 21.408 25.67 48.006 25.67 76.8 0 70.579-57.421 128-128 128-71.181 0-130.869-56.381-160.112-89.987-17.707-20.35-32.954-42.136-44.686-63.208-11.733 21.070-26.981 42.858-44.688 63.208-29.245 33.606-88.931 89.987-160.114 89.987-70.579 0-128-57.421-128-128 0-28.794 9.563-55.392 25.669-76.8h-153.669c-14.138 0-25.6-11.462-25.6-25.6v-153.6c0-14.138 11.462-25.6 25.6-25.6h25.6v-486.4c0-42.349 34.453-76.8 76.8-76.8h716.8c42.349 0 76.8 34.451 76.8 76.8v486.4h25.6c14.139 0 25.6 11.462 25.6 25.6v153.6c0 14.138-11.461 25.6-25.6 25.6zM569.712 785.203c40.035 46.010 84.317 72.397 121.488 72.397 42.349 0 76.8-34.453 76.8-76.8s-34.451-76.8-76.8-76.8h-172.946c8.854 22.621 26.758 52.818 51.458 81.203zM563.2-12.8h-153.6v665.6h153.6v-665.6zM204.8 780.8c0 42.347 34.453 76.8 76.8 76.8 37.173 0 81.453-26.387 121.488-72.397 24.699-28.386 42.603-58.582 51.458-81.203h-172.946c-42.347 0-76.8 34.453-76.8 76.8zM51.2 652.8h307.2v-102.4h-307.2v102.4zM102.4 12.8v486.4h256v-512h-230.4c-14.115 0-25.6 11.485-25.6 25.6zM870.4 12.8c0-14.115-11.485-25.6-25.6-25.6h-230.4v512h256v-486.4zM921.6 550.4h-307.2v102.4h307.2v-102.4z" />
97
+ <glyph unicode="&#xe845;" glyph-name="diamond1" data-tags="diamond" d="M967.68 591.36l-153.6 204.8c-3.95 5.267-9.776 8.81-16.272 9.891l-307.2 51.2c-2.786 0.464-5.632 0.464-8.418 0l-307.2-51.2c-6.494-1.082-12.322-4.626-16.27-9.891l-153.6-204.8c-7.339-9.786-6.731-23.395 1.451-32.486l460.8-512c4.856-5.394 11.771-8.474 19.029-8.474s14.173 3.080 19.029 8.475l460.8 512c8.182 9.091 8.79 22.699 1.451 32.485zM654.65 601.6l-168.25-462.691-168.251 462.691h336.501zM343.405 652.8l142.995 142.995 142.995-142.995h-285.99zM560.989 793.616l189.349-31.558-63.115-94.674-126.234 126.232zM285.579 667.384l-63.117 94.674 189.349 31.558-126.232-126.232zM239.096 644.806l-152.813-30.563 91.688 122.25 61.125-91.686zM265.058 597.784l152.285-418.784-342.642 380.712 190.357 38.072zM707.744 597.784l190.357-38.072-342.643-380.712 152.286 418.784zM733.704 644.806l61.125 91.688 91.688-122.25-152.813 30.562z" />
98
+ <glyph unicode="&#xe847;" glyph-name="dinner" data-tags="dinner" d="M409.6 934.4c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6c0-66.843 12.915-122.715 23.293-167.608 10.112-43.749 18.099-78.302 6.637-92.718-9.525-11.978-36.712-18.942-80.938-20.778-0.114 8.314-0.189 16.669-0.19 25.109v204.795c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-204.803c0.002-8.426-0.072-16.768-0.182-25.069-44.099 1.898-71.219 8.901-80.76 20.893-11.52 14.477-3.542 49.086 6.557 92.902 10.328 44.818 23.184 100.594 23.184 167.277 0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6c0-60.859-12.131-113.488-21.878-155.776-13.198-57.259-23.622-102.485 3.27-136.283 19.97-25.096 56.374-37.542 119.458-40.192-5.741-142.84-26.443-265.747-43.589-367.451-22.816-135.354-37.888-224.77 0.605-270.298 15.934-18.845 39.531-28.4 70.134-28.4 30.608 0 54.208 9.558 70.147 28.406 38.52 45.554 23.438 135.051 0.611 270.526-17.126 101.638-37.808 224.466-43.584 367.184 63.213 2.57 99.656 14.973 119.629 40.090 26.837 33.747 16.395 78.923 3.173 136.117-9.79 42.358-21.976 95.074-21.976 156.077zM312.651-2.534c-3.726-4.406-11-10.266-31.051-10.266-20.045 0-27.312 5.854-31.035 10.258-23.154 27.384-7.426 120.69 10.786 228.728 6.581 39.038 13.68 81.157 20.28 126.326 6.589-45.082 13.672-87.115 20.238-126.090 18.224-108.144 33.962-201.544 10.782-228.957zM813.158 234.931c-20.104 119.326-45.13 267.832-45.158 443.472v255.997c0 11.608-7.811 21.763-19.032 24.742-11.218 2.979-23.035-1.963-28.795-12.042-103.387-180.926-154.437-457.246-156.562-468.922-1.358-7.469 0.667-15.155 5.533-20.982 4.866-5.829 12.064-9.197 19.654-9.197h114.443c-8.957-79.045-20.954-150.25-31.581-213.302-22.819-135.354-37.891-224.77 0.605-270.298 15.936-18.845 39.531-28.4 70.134-28.4 30.608 0 54.208 9.558 70.147 28.406 38.518 45.554 23.437 135.051 0.611 270.525zM620.062 499.2c12.688 59.962 45.166 198.998 96.738 323.424v-144.227c0.010-63.296-3.242-123.046-8.334-179.197h-88.403zM773.451-2.534c-3.726-4.406-11-10.266-31.051-10.266-20.043 0-27.312 5.854-31.034 10.258-23.157 27.384-7.429 120.691 10.784 228.73 6.581 39.038 13.68 81.155 20.28 126.326 6.589-45.083 13.674-87.118 20.238-126.093 18.224-108.144 33.963-201.542 10.782-228.955z" />
99
+ <glyph unicode="&#xe848;" glyph-name="coffee-cup" data-tags="coffee-cup" d="M512 192c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6zM512 448c-56.464 0-102.4-45.936-102.4-102.4s45.936-102.4 102.4-102.4c56.464 0 102.4 45.936 102.4 102.4s-45.936 102.4-102.4 102.4zM814.302 854.742l-9.050 36.195c-9.682 38.726-48.534 69.062-88.453 69.062h-409.6c-39.918 0-78.771-30.336-88.454-69.062l-9.048-36.195c-32.32-9.062-56.098-38.768-56.098-73.942v-51.2c0-33.925 22.118-62.762 52.685-72.899l46.133-645.853c2.947-41.272 39.008-74.848 80.382-74.848h358.4c41.376 0 77.435 33.576 80.382 74.846l46.131 645.853c30.568 10.139 52.686 38.976 52.686 72.901v51.2c0 35.174-23.778 64.88-56.098 73.942zM307.2 908.8h409.6c16.334 0 34.821-14.434 38.781-30.28l5.23-20.92h-497.622l5.23 20.92c3.96 15.846 22.446 30.28 38.781 30.28zM762.45 601.6h-500.898l-3.658 51.2h508.213l-3.658-51.2zM729.536 140.8h-435.070l-29.258 409.6h493.584l-29.256-409.6zM691.2-12.8h-358.4c-14.834 0-28.256 12.499-29.312 27.294l-5.365 75.106h427.755l-5.365-75.106c-1.058-14.795-14.48-27.294-29.314-27.294zM819.2 729.6c0-14.115-11.485-25.6-25.6-25.6h-563.2c-14.115 0-25.6 11.485-25.6 25.6v51.2c0 14.093 11.446 25.558 25.531 25.597 0.030 0 0.059-0.003 0.090-0.003 0.050 0 0.099 0.006 0.149 0.006h563.030c14.115 0 25.6-11.485 25.6-25.6v-51.2z" />
100
+ <glyph unicode="&#xe849;" glyph-name="leaf" data-tags="leaf" d="M1017.987 950.883c-4.862 5.779-12.030 9.115-19.582 9.117l-26.114 0.008c-258.027 0.091-461.854 0.163-611.93-35.728-80.627-19.283-142.987-48.411-190.643-89.051-51.387-43.819-86.445-101.243-107.178-175.549-13.771-49.363-20.213-138.478 6.96-227.178 10.043-32.787 25.696-63.682 46.584-92.093-62.246-97.517-116.085-226.014-116.085-378.81 0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6c0 235.789 139.654 410.651 222.901 493.899 59.741 59.739 127.301 110.166 195.378 145.824 63.373 33.195 123.933 51.477 170.522 51.477 14.139 0 25.6 11.462 25.6 25.6s-11.461 25.6-25.6 25.6c-55.506 0-122.686-19.822-194.278-57.323-72.603-38.030-144.467-91.621-207.822-154.976-26.726-26.726-58.899-62.346-90.824-105.994-12.403 19.496-21.998 40.173-28.619 61.79-25.597 83.555-16.19 164.038-6.597 198.422 73.206 262.397 351.32 263.072 855.925 262.89-60.16-321.93-172.331-530.309-333.613-619.571-149.582-82.786-298.008-37.613-354.877-14.346-12.005 4.912-24.051 10.949-35.802 17.944-12.147 7.227-27.858 3.243-35.091-8.904-7.232-12.149-3.245-27.859 8.902-35.093 13.923-8.288 28.256-15.464 42.602-21.334 31.843-13.027 83.144-29.706 146.704-35.184 14.034-1.21 27.928-1.814 41.672-1.814 75.189 0 145.893 18.077 210.682 53.934 82.37 45.587 153.675 119.736 211.938 220.384 68.315 118.018 119.699 274.534 152.723 465.205 1.29 7.443-0.774 15.074-5.637 20.853z" />
101
+ <glyph unicode="&#xe84a;" glyph-name="paw" data-tags="paw" d="M153.6 345.6c-57.421 0-102.4 67.712-102.4 154.155s44.979 154.155 102.4 154.155 102.4-67.712 102.4-154.155-44.979-154.155-102.4-154.155zM153.6 602.709c-24.168 0-51.2-44.030-51.2-102.955s27.032-102.954 51.2-102.954 51.2 44.030 51.2 102.955-27.032 102.954-51.2 102.954zM358.299 550.4c-57.365 0-102.299 67.469-102.299 153.6s44.934 153.6 102.299 153.6 102.299-67.469 102.299-153.6-44.934-153.6-102.299-153.6zM358.299 806.4c-24.122 0-51.099-43.792-51.099-102.4s26.978-102.4 51.099-102.4 51.099 43.792 51.099 102.4-26.978 102.4-51.099 102.4zM614.4 550.4c-57.421 0-102.4 67.469-102.4 153.6s44.979 153.6 102.4 153.6 102.4-67.469 102.4-153.6-44.979-153.6-102.4-153.6zM614.4 806.4c-24.168 0-51.2-43.792-51.2-102.4s27.032-102.4 51.2-102.4 51.2 43.792 51.2 102.4-27.032 102.4-51.2 102.4zM819.2 345.6c-57.421 0-102.4 67.712-102.4 154.155s44.979 154.155 102.4 154.155 102.4-67.712 102.4-154.155-44.979-154.155-102.4-154.155zM819.2 602.709c-24.168 0-51.2-44.030-51.2-102.955s27.032-102.954 51.2-102.954 51.2 44.030 51.2 102.955-27.032 102.954-51.2 102.954zM665.6 38.4c-44.434 0-74.482 15.032-100.99 28.293-24.573 12.291-45.792 22.907-78.21 22.907-32.298 0-53.52-10.606-78.093-22.888-26.555-13.27-56.654-28.312-101.107-28.312-28.446 0-55.258 15.501-73.557 42.53-32.104 47.421-32.619 119.362-1.413 197.378 56.152 140.381 148.794 220.893 254.17 220.893s198.018-80.512 254.168-220.893c31.206-78.018 30.693-149.958-1.413-197.378-18.298-27.029-45.109-42.53-73.555-42.53zM486.4 140.8c44.507 0 74.582-15.043 101.115-28.317 24.546-12.278 45.742-22.883 78.085-22.883 11.182 0 22.539 7.301 31.16 20.034 22.096 32.635 20.701 88.582-3.728 149.658-47.971 119.928-123.285 188.709-206.632 188.709-83.346 0-158.661-68.781-206.632-188.707-24.43-61.075-25.824-117.022-3.728-149.658 8.621-12.734 19.978-20.035 31.16-20.035 32.371 0 53.618 10.618 78.218 22.912 26.533 13.259 56.605 28.288 100.982 28.288z" />
102
+ <glyph unicode="&#xe84b;" glyph-name="rocket" data-tags="rocket" d="M691.2 499.2c-70.579 0-128 57.421-128 128s57.421 128 128 128 128-57.421 128-128-57.421-128-128-128zM691.2 704c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8 76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8zM25.603-64c-6.675 0-13.219 2.613-18.106 7.499-7.034 7.034-9.355 17.502-5.957 26.85 78.781 216.648 161.613 326.499 246.195 326.499 27.883 0 53.979-11.96 77.566-35.546 37.283-37.283 38.611-74.394 33.162-98.96-17.125-77.187-126.171-152.822-324.115-224.802-2.853-1.038-5.813-1.541-8.746-1.541zM247.736 245.646c-25.354 0-55.19-22.214-86.282-64.237-30.578-41.33-61.274-100.205-91.525-175.477 68.352 27.478 123.302 55.379 163.806 83.205 54.648 37.542 70.808 66.562 74.742 84.294 3.944 17.779-2.395 34.682-19.382 51.667-13.826 13.826-27.354 20.547-41.36 20.547zM998.4 960c-132.848 0-251.256-22.534-351.939-66.981-82.997-36.638-154.075-88.075-211.258-152.882-10.674-12.098-20.552-24.334-29.691-36.586-44.142-2.942-89.275-20.47-134.362-52.221-38.13-26.851-76.459-64.014-113.923-110.458-62.965-78.054-101.706-154.987-103.325-158.226-5.605-11.211-2.25-24.814 7.904-32.166 4.501-3.258 9.758-4.856 14.992-4.856 6.573 0 13.109 2.52 18.064 7.434 0.243 0.24 24.714 24.299 66.469 47.926 34.41 19.474 87.461 42.336 151.613 46.384 16.219-41.541 62.662-91.181 84.954-113.47 22.291-22.291 71.931-68.734 113.472-84.955-4.046-64.152-26.91-117.202-46.382-151.611-23.629-41.757-47.686-66.227-47.89-66.432-8.878-8.878-10.006-22.885-2.666-33.070 4.952-6.87 12.77-10.634 20.782-10.634 3.867 0 7.779 0.877 11.434 2.704 3.237 1.619 80.17 40.36 158.226 103.325 46.443 37.464 83.606 75.794 110.458 113.922 31.75 45.088 49.278 90.221 52.221 134.363 12.251 9.139 24.49 19.019 36.586 29.693 64.806 57.181 116.243 128.259 152.883 211.258 44.443 100.682 66.979 219.091 66.979 351.939v25.6h-25.6zM159.102 457.813c48.797 70.8 123.384 158.595 207.446 186.232-33.222-58.203-50.422-111.691-56.611-145.555-59.323-3.626-110.467-20.89-150.835-40.677zM521.87 95.219c19.762 40.35 36.995 91.453 40.619 150.718 33.859 6.187 87.336 23.384 145.528 56.597-27.658-83.92-115.381-158.49-186.147-207.315zM770.262 409.595c-106.48-93.952-216.794-115.195-232.662-115.195-0.102 0-10.581 0.23-38.867 20.136-19.728 13.883-42.682 33.618-64.63 55.566-21.95 21.95-41.683 44.902-55.566 64.632-19.906 28.285-20.136 38.763-20.136 38.866 0 15.869 21.243 126.182 115.197 232.662 112.416 127.406 284.533 197.059 498.894 202.227-5.17-214.358-74.822-386.477-202.229-498.894z" />
103
+ <glyph unicode="&#xe84c;" glyph-name="briefcase" data-tags="briefcase" d="M947.2 704h-230.4v76.8c0 42.347-34.453 76.8-76.8 76.8h-256c-42.347 0-76.8-34.453-76.8-76.8v-76.8h-230.4c-42.347 0-76.8-34.453-76.8-76.8v-563.2c0-42.349 34.453-76.8 76.8-76.8h870.4c42.349 0 76.8 34.451 76.8 76.8v563.2c0 42.347-34.451 76.8-76.8 76.8zM358.4 780.8c0 14.115 11.485 25.6 25.6 25.6h256c14.115 0 25.6-11.485 25.6-25.6v-76.8h-307.2v76.8zM76.8 652.8h870.4c14.115 0 25.6-11.485 25.6-25.6v-384h-102.4v25.6c0 14.139-11.461 25.6-25.6 25.6h-102.4c-14.139 0-25.6-11.461-25.6-25.6v-25.6h-409.6v25.6c0 14.139-11.462 25.6-25.6 25.6h-102.4c-14.138 0-25.6-11.461-25.6-25.6v-25.6h-102.4v384c0 14.115 11.485 25.6 25.6 25.6zM819.2 243.2v-51.2h-51.2v51.2h51.2zM256 243.2v-51.2h-51.2v51.2h51.2zM947.2 38.4h-870.4c-14.115 0-25.6 11.485-25.6 25.6v128h102.4v-25.6c0-14.139 11.462-25.6 25.6-25.6h102.4c14.138 0 25.6 11.461 25.6 25.6v25.6h409.6v-25.6c0-14.139 11.461-25.6 25.6-25.6h102.4c14.139 0 25.6 11.461 25.6 25.6v25.6h102.4v-128c0-14.115-11.485-25.6-25.6-25.6z" />
104
+ <glyph unicode="&#xe84d;" glyph-name="bus" data-tags="bus" d="M281.6 140.8c-42.347 0-76.8 34.451-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.453-76.8-76.8-76.8zM281.6 243.2c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM742.4 140.8c-42.349 0-76.8 34.451-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.451-76.8-76.8-76.8zM742.4 243.2c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM691.2 704h-358.4c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h358.4c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM793.6 652.8h-563.2c-14.138 0-25.6-11.462-25.6-25.6v-256c0-14.139 11.462-25.6 25.6-25.6h255.89c0.030 0 0.059-0.003 0.088-0.003 0.034 0 0.069 0.003 0.102 0.003h255.81c0.030 0 0.058-0.003 0.088-0.003 0.034 0 0.069 0.003 0.102 0.003h51.12c14.139 0 25.6 11.461 25.6 25.6v256c0 14.138-11.461 25.6-25.6 25.6zM256 601.6h512v-204.8h-17.85l-147.15 98.101c-11.763 7.84-27.658 4.664-35.501-7.101-7.843-11.763-4.664-27.658 7.101-35.501l83.25-55.499h-163.699l-147.15 98.101c-11.763 7.84-27.659 4.664-35.501-7.101-7.842-11.763-4.664-27.658 7.101-35.501l83.25-55.499h-145.85v204.8zM799.514 868.723c-69.808 26.594-166.541 40.077-287.514 40.077s-217.706-13.483-287.514-40.077c-100.906-38.44-122.086-96.874-122.086-139.123v-563.2c0-61.814 44.045-113.531 102.4-125.426v-53.774c0-28.232 22.968-51.2 51.2-51.2h51.2c28.232 0 51.2 22.968 51.2 51.2v51.2h307.2v-51.2c0-28.232 22.968-51.2 51.2-51.2h51.2c28.232 0 51.2 22.968 51.2 51.2v53.774c58.355 11.894 102.4 63.611 102.4 125.426v563.2c0 42.25-21.181 100.683-122.086 139.123zM307.2-12.8h-51.2v51.2h51.2v-51.2zM716.8-12.8v51.2h51.2v-51.2h-51.2zM870.4 166.4c0-42.349-34.451-76.8-76.8-76.8h-563.2c-42.347 0-76.8 34.451-76.8 76.8v563.2c0 38.040 29.982 68.75 89.114 91.277 63.064 24.024 156.182 36.723 269.286 36.723s206.224-12.699 269.286-36.723c59.131-22.526 89.114-53.237 89.114-91.277v-563.2z" />
105
+ <glyph unicode="&#xe84e;" glyph-name="car1" data-tags="car" d="M281.6 140.8c-42.347 0-76.8 34.451-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.453-76.8-76.8-76.8zM281.6 243.2c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM742.4 140.8c-42.349 0-76.8 34.451-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.451-76.8-76.8-76.8zM742.4 243.2c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM868.256 350.358c-6.646 40.557-28.301 164.576-51.76 211.491-15.627 31.256-55.694 55.139-119.088 70.987-51.496 12.874-117.342 19.963-185.408 19.963s-133.912-7.090-185.408-19.965c-63.394-15.848-103.461-39.733-119.090-70.987-23.458-46.915-45.112-170.933-51.758-211.491-35.778-24.512-53.344-59.99-53.344-107.157v-128c0-33.373 21.403-61.829 51.2-72.397v-55.603c0-28.232 22.968-51.2 51.2-51.2h51.2c28.232 0 51.2 22.968 51.2 51.2v51.2h409.6v-51.2c0-28.232 22.968-51.2 51.2-51.2h51.2c28.232 0 51.2 22.968 51.2 51.2v55.603c29.797 10.566 51.2 39.024 51.2 72.397v128c0 47.166-17.566 82.645-53.344 107.158zM253.298 538.952c15.186 30.37 111.014 62.648 258.702 62.648s243.517-32.278 258.702-62.648c14.718-29.437 31.026-107.306 41.139-162.966-4.998 1.472-10.166 2.845-15.512 4.118-13.656 3.251-28.434 5.862-44.2 7.971l-148.421 106.334c-11.494 8.237-27.485 5.59-35.72-5.901-8.234-11.493-5.592-27.485 5.901-35.72l80.166-57.435c-43.517 1.443-91.251 1.446-142.056 1.446-5.998 0-11.942 0-17.854-0.003l-147.146 98.102c-11.765 7.843-27.658 4.664-35.501-7.099s-4.666-27.658 7.099-35.501l84.178-56.122c-68.654-1.237-128.362-4.946-175.107-16.075-5.347-1.274-10.517-2.648-15.517-4.12 10.115 55.654 26.418 133.515 41.146 162.97zM256-12.8h-51.2v51.2h51.2v-51.2zM768-12.8v51.2h51.2v-51.2h-51.2zM870.4 115.2c0-14.115-11.485-25.6-25.6-25.6h-665.6c-14.115 0-25.6 11.485-25.6 25.6v128c0 47.331 24.896 72.565 85.93 87.098 64.275 15.302 160.757 15.302 272.47 15.302s208.194 0 272.47-15.302c61.034-14.533 85.93-39.766 85.93-87.098v-128z" />
106
+ <glyph unicode="&#xe84f;" glyph-name="train" data-tags="train" d="M742.4 192h-512c-70.579 0-128 57.421-128 128v512c0 70.579 57.421 128 128 128h512c70.579 0 128-57.421 128-128v-512c0-70.579-57.421-128-128-128zM230.4 908.8c-42.347 0-76.8-34.453-76.8-76.8v-512c0-42.349 34.453-76.8 76.8-76.8h512c42.349 0 76.8 34.451 76.8 76.8v512c0 42.347-34.451 76.8-76.8 76.8h-512zM970.098-26.952l-102.4 204.8c-6.32 12.645-21.696 17.77-34.346 11.448-12.645-6.322-17.771-21.699-11.448-34.346l7.075-14.152h-685.157l7.075 14.152c6.323 12.645 1.197 28.024-11.45 34.346-12.645 6.322-28.024 1.198-34.346-11.448l-102.4-204.8c-6.323-12.645-1.197-28.024 11.45-34.346 3.675-1.837 7.581-2.709 11.429-2.709 9.39 0 18.432 5.187 22.917 14.158l18.525 37.048h838.757l18.525-37.048c4.485-8.971 13.525-14.158 22.917-14.158 3.846 0 7.754 0.872 11.429 2.709 12.645 6.323 17.771 21.701 11.448 34.346zM92.622 38.4l25.6 51.2h736.357l25.6-51.2h-787.557zM281.6 294.4c-42.347 0-76.8 34.451-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.453-76.8-76.8-76.8zM281.6 396.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM691.2 294.4c-42.349 0-76.8 34.451-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.451-76.8-76.8-76.8zM691.2 396.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM640 806.4h-307.2c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h307.2c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4 755.2h-512c-14.138 0-25.6-11.462-25.6-25.6v-204.8c0-14.138 11.462-25.6 25.6-25.6h512c14.139 0 25.6 11.462 25.6 25.6v204.8c0 14.138-11.461 25.6-25.6 25.6zM256 704h204.8v-153.6h-204.8v153.6zM716.8 550.4h-204.8v153.6h204.8v-153.6z" />
107
+ <glyph unicode="&#xe850;" glyph-name="bicycle" data-tags="bicycle" d="M281.6 499.098c-42.405 0-76.902 34.499-76.902 76.902s34.499 76.902 76.902 76.902 76.902-34.499 76.902-76.902-34.498-76.902-76.902-76.902zM281.6 601.702c-14.173 0-25.702-11.531-25.702-25.702s11.531-25.702 25.702-25.702 25.702 11.531 25.702 25.702-11.53 25.702-25.702 25.702zM486.4 89.6c-14.138 0-25.6 11.461-25.6 25.6v153.498c0 39.531 29.77 79.022 67.774 89.902l76.795 21.984-166.909 111.274-87.56-87.56c-4.8-4.802-11.312-7.499-18.101-7.499h-102.502c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h91.899l94.901 94.901c8.629 8.629 22.149 9.966 32.302 3.2l187.798-125.2c28.149-18.765 28.066-40.824 26.723-49.437s-7.974-29.653-40.498-38.966l-80.758-23.118c-16.048-4.595-30.666-23.986-30.666-40.68v-153.498c0-14.139-11.462-25.6-25.6-25.6zM768-64c-112.926 0-204.8 91.874-204.8 204.8s91.874 204.8 204.8 204.8 204.8-91.874 204.8-204.8-91.874-204.8-204.8-204.8zM768 294.4c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM204.749-64c-112.899 0-204.749 91.85-204.749 204.749s91.85 204.749 204.749 204.749 204.749-91.85 204.749-204.749-91.851-204.749-204.749-204.749zM204.749 294.298c-84.667 0-153.549-68.882-153.549-153.549s68.882-153.549 153.549-153.549 153.549 68.882 153.549 153.549-68.882 153.549-153.549 153.549z" />
108
+ <glyph unicode="&#xe851;" glyph-name="wheelchair" data-tags="wheelchair" d="M914.101 286.901c-9.997 9.997-26.206 9.997-36.203 0l-33.344-33.342-139.749 135.987c-0.082 0.078-0.17 0.144-0.251 0.222-0.366 0.346-0.746 0.67-1.13 0.994-0.282 0.235-0.56 0.478-0.848 0.701-0.33 0.254-0.674 0.488-1.016 0.726-0.362 0.251-0.718 0.507-1.090 0.739-0.288 0.178-0.586 0.336-0.88 0.502-0.434 0.246-0.864 0.498-1.309 0.715-0.282 0.139-0.573 0.258-0.861 0.386-0.461 0.206-0.92 0.419-1.389 0.597-0.347 0.131-0.701 0.234-1.054 0.352-0.418 0.138-0.832 0.286-1.254 0.4-0.45 0.125-0.909 0.216-1.366 0.314-0.336 0.072-0.667 0.158-1.005 0.218-0.518 0.091-1.043 0.146-1.57 0.205-0.29 0.032-0.576 0.077-0.867 0.099-0.51 0.038-1.029 0.045-1.546 0.053-0.32 0.005-0.64 0.021-0.962 0.014-0.45-0.010-0.902-0.048-1.355-0.083-0.402-0.030-0.803-0.054-1.203-0.102-0.374-0.046-0.749-0.114-1.123-0.178-0.483-0.080-0.965-0.165-1.442-0.272-0.114-0.026-0.229-0.035-0.342-0.064l-201.984-48.779c-5.45-1.314-10.174-0.683-13.304 1.781-3.13 2.467-4.854 6.91-4.854 12.515v86.4h179.2c14.139 0 25.6 11.462 25.6 25.6s-11.461 25.6-25.6 25.6h-179.2v156.176c8.275-1.686 16.834-2.576 25.6-2.576 70.579 0 128 57.421 128 128s-57.421 128-128 128-128-57.421-128-128c0-41.786 20.131-78.954 51.2-102.331v-316.869c0-21.32 8.888-40.544 24.386-52.744 11.181-8.802 25.104-13.402 39.779-13.4 5.664 0 11.442 0.686 17.214 2.080l188.248 45.462 147.72-143.746c4.971-4.838 11.413-7.253 17.851-7.253 6.555 0 13.109 2.502 18.102 7.499l51.2 51.2c9.998 9.997 9.998 26.205 0 36.202zM486.4 857.6c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8zM384-64c-183.506 0-332.8 149.294-332.8 332.8 0 79.186 28.286 155.91 79.65 216.043 50.784 59.454 121 99.285 197.712 112.155 13.947 2.336 27.144-7.069 29.483-21.011 2.339-13.944-7.067-27.144-21.011-29.483-135.955-22.81-234.634-139.602-234.634-277.704 0-155.275 126.325-281.6 281.6-281.6 138.104 0 254.898 98.678 277.706 234.635 2.339 13.944 15.541 23.347 29.483 21.011 13.944-2.339 23.35-15.539 21.011-29.483-12.87-76.712-52.701-146.93-112.155-197.714-60.133-51.362-136.858-79.65-216.045-79.65z" />
109
+ <glyph unicode="&#xe852;" glyph-name="select" data-tags="select" d="M281.6 192h-204.8c-42.347 0-76.8 34.451-76.8 76.8v614.4c0 42.347 34.453 76.8 76.8 76.8h716.8c42.349 0 76.8-34.453 76.8-76.8v-358.4c0-14.138-11.461-25.6-25.6-25.6s-25.6 11.462-25.6 25.6v358.4c0 14.115-11.485 25.6-25.6 25.6h-716.8c-14.115 0-25.6-11.485-25.6-25.6v-614.4c0-14.115 11.485-25.6 25.6-25.6h204.8c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM665.608-64.006c-10.16 0-19.773 6.090-23.776 16.099l-86.882 217.203-151.685-173.354c-7.022-8.027-18.285-10.859-28.269-7.106-9.986 3.75-16.597 13.298-16.597 23.963v768c0 10.133 5.976 19.312 15.243 23.411 9.266 4.101 20.078 2.347 27.576-4.469l563.2-512c7.827-7.114 10.472-18.309 6.658-28.173s-13.301-16.37-23.877-16.37h-218.187l88.357-220.893c5.251-13.128-1.134-28.027-14.261-33.277l-128-51.2c-3.118-1.246-6.338-1.837-9.501-1.837zM563.198 243.2c1.432 0 2.874-0.12 4.31-0.366 8.781-1.501 16.152-7.456 19.459-15.726l92.893-232.232 80.462 32.184-92.893 232.232c-3.155 7.888-2.192 16.826 2.57 23.859s12.704 11.25 21.2 11.25h189.782l-471.382 428.53v-641.997l134.334 153.525c4.904 5.606 11.954 8.742 19.264 8.742z" />
110
+ <glyph unicode="&#xe853;" glyph-name="earth" data-tags="earth" d="M874.038 810.038c-96.704 96.704-225.278 149.962-362.038 149.962s-265.334-53.258-362.038-149.962c-96.704-96.704-149.962-225.278-149.962-362.038s53.258-265.334 149.962-362.038c96.704-96.704 225.278-149.962 362.038-149.962s265.334 53.258 362.038 149.962c96.704 96.704 149.962 225.278 149.962 362.038s-53.258 265.334-149.962 362.038zM941.918 613.822c-9.989 17.987-35.050 26.512-67.853 37.661-35.182 11.957-47.608 48.122-61.994 89.997-12.49 36.35-25.398 73.874-56.069 97.238 83.898-52.584 149.733-131.406 185.915-224.896zM798.235 438.243c3.872-34.683 7.875-70.546-35.163-118.874-11.629-13.056-18.44-31.238-25.653-50.49-16.701-44.582-32.486-86.709-99.642-87.325-1.882 2.262-7.242 10.734-11.981 37.533-4.366 24.698-6.886 56.606-9.555 90.389-4.093 51.834-8.731 110.582-21.544 159.32-16.382 62.325-43.867 99.141-84.026 112.554-17.522 5.853-35.411 8.698-54.693 8.698-14.211 0-27.125-1.522-38.517-2.864-8.875-1.045-17.258-2.034-24.341-2.034 0 0-0.002 0-0.003 0-11.987 0-25.573 0-42.278 38.29-24.021 55.053-6.304 143.267 64.202 189.787 38.661 25.509 65.336 36.392 89.2 36.392 19.026 0 39.581-6.622 68.73-22.146 34.418-18.33 61.379-20.68 81.026-20.68 7.789 0 14.85 0.419 21.682 0.826 5.726 0.339 11.134 0.661 16.139 0.661 11.259 0 20.387-1.467 31.088-8.776 19.723-13.472 29.936-43.195 40.747-74.664 16.392-47.715 34.973-101.798 93.941-121.837 7.925-2.693 21.576-7.333 31.216-11.366-8.328-8.608-22.285-21.067-35.92-33.24-8.808-7.862-18.789-16.773-29.851-26.858-31.965-29.133-28.16-63.221-24.803-93.296zM51.25 451.93c5.52-0.992 11.493-2.141 17.605-3.446 28.776-6.141 42.235-11.686 48.117-14.798-2.706-5.277-8.187-13.056-11.81-18.195-12.669-17.976-28.435-40.349-22.437-64.984 4.046-16.618 0.632-37.032-5.248-55.883-16.994 48.005-26.277 99.624-26.277 153.378 0 1.314 0.038 2.618 0.050 3.93zM512-12.8c-175.379 0-328.173 98.494-406.014 243.062 13.422 25.554 38.314 82.054 26.68 131.547 0.806 4.97 9.248 16.95 14.349 24.186 13.874 19.688 31.141 44.189 18.35 70.152-8.976 18.222-32.957 30.534-80.181 41.17-10.939 2.464-21.594 4.47-30.65 6.019 27.424 228.090 222.107 405.464 457.466 405.464 80.776 0 156.749-20.918 222.83-57.582-16.33 7.134-31.154 8.266-43.014 8.266-6.523 0-12.957-0.382-19.176-0.752-6.085-0.362-12.374-0.734-18.645-0.734-14.542 0-32.682 1.742-56.958 14.67-37.056 19.734-64.808 28.155-92.795 28.155-34.635 0-69.744-13.414-117.397-44.856-41.197-27.181-72.229-68.779-87.381-117.133-14.779-47.166-13.2-95.418 4.448-135.867 20.824-47.728 48.336-69.013 89.203-69.014 0.003 0 0.003 0 0.006 0 10.090 0 19.923 1.158 30.333 2.386 10.482 1.235 21.32 2.512 32.525 2.512 13.869 0 26.094-1.926 38.472-6.061 22.488-7.512 39.082-32.701 50.728-77.008 11.648-44.31 16.098-100.638 20.021-150.334 3.274-41.454 6.366-80.61 13.176-110.126 4.136-17.923 9.494-31.538 16.379-41.621 10.283-15.058 25.032-23.35 41.526-23.35 45.269 0 81.429 14.594 107.47 43.374 21.659 23.934 32.722 53.466 41.613 77.194 5.245 14.003 10.67 28.482 15.941 34.402 58.219 65.373 52.203 119.258 47.813 158.603-3.226 28.888-3.285 39.123 8.408 49.781 10.864 9.904 20.741 18.722 29.454 26.499 18.568 16.576 31.984 28.554 41.397 38.83 6.464 7.058 21.603 23.584 17.395 44.28-0.037 0.184-0.088 0.358-0.126 0.539 17.558-48.701 27.154-101.174 27.154-155.851 0-254.086-206.714-460.8-460.8-460.8z" />
111
+ <glyph unicode="&#xe854;" glyph-name="smile" data-tags="smile" d="M486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2zM332.8 550.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM332.8 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM640 550.4c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM640 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM486.4 89.6c-183.506 0-332.8 149.294-332.8 332.8 0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6c0-155.275 126.325-281.6 281.6-281.6s281.6 126.325 281.6 281.6c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6c0-183.506-149.294-332.8-332.8-332.8z" />
112
+ <glyph unicode="&#xe855;" glyph-name="sad" data-tags="sad" d="M486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2zM332.8 550.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM332.8 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM640 550.4c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM640 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM281.562 191.998c-5.352 0-10.747 1.672-15.355 5.133-11.304 8.491-13.586 24.539-5.094 35.843 25.686 34.195 59.344 62.531 97.338 81.941 39.858 20.362 82.907 30.685 127.95 30.685s88.091-10.323 127.949-30.685c37.992-19.408 71.653-47.742 97.339-81.938 8.491-11.304 6.211-27.352-5.094-35.843-11.307-8.493-27.352-6.21-35.843 5.094-44 58.576-111.194 92.171-184.35 92.171s-140.35-33.597-184.35-92.174c-5.029-6.696-12.712-10.227-20.488-10.227z" />
113
+ <glyph unicode="&#xe856;" glyph-name="neutral" data-tags="neutral" d="M486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2zM691.2 294.4h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM640 550.4c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM640 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM332.8 550.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM332.8 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6z" />
114
+ <glyph unicode="&#xe857;" glyph-name="mustache" data-tags="mustache" d="M486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2zM332.8 550.4c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM332.8 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM640 550.4c-42.349 0-76.8 34.453-76.8 76.8s34.451 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.451-76.8-76.8-76.8zM640 652.8c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM815.258 333.648c-5.658 8.979-16.27 13.53-26.678 11.454-9.582-1.917-18.819-2.888-27.454-2.888-0.002 0-0.006 0-0.010 0-44.645 0.003-71.763 25.77-100.47 53.053-27.28 25.925-55.49 52.733-97.445 52.733-30.563 0-58.021-13.475-76.8-34.776-18.779 21.301-46.237 34.776-76.8 34.776-41.954 0-70.163-26.808-97.443-52.733-28.709-27.283-55.826-53.051-100.47-53.051-8.643 0-17.883 0.97-27.466 2.888-10.402 2.083-21.019-2.475-26.678-11.454s-5.19-20.517 1.178-29.008c59.243-78.992 135.293-95.573 188.658-95.573 31.79 0 57.109 5.984 69.373 9.552 27.166 7.902 52.106 27.757 69.648 52.627 17.542-24.87 42.482-44.723 69.648-52.627 12.266-3.566 37.587-9.554 69.374-9.552 53.366 0.002 129.416 16.584 188.656 95.573 6.371 8.49 6.84 20.029 1.181 29.006zM402.45 267.781c-9.646-2.806-29.63-7.514-55.070-7.514-29.939 0-69.050 6.722-105.958 33.501 47.877 9.141 79.642 39.328 106.006 64.384 25.213 23.962 41.706 38.648 62.173 38.648 28.232 0 51.2-22.968 51.2-51.2 0-31.275-28.358-69.094-58.35-77.819zM625.422 260.267c-25.437-0.002-45.424 4.706-55.070 7.514-29.994 8.725-58.352 46.544-58.352 77.819 0 28.232 22.968 51.2 51.2 51.2 20.469 0 36.962-14.686 62.176-38.646 26.365-25.053 58.13-55.238 106.005-64.382-36.907-26.781-76.019-33.504-105.958-33.504z" />
115
+ <glyph unicode="&#xe858;" glyph-name="alarm" data-tags="alarm" d="M860.171 186.85c-58.576 44-92.171 111.194-92.171 184.35v153.6c0 128.661-86.733 237.442-204.798 270.954l-0.002 36.246c0 42.347-34.451 76.8-76.8 76.8-42.347 0-76.8-34.453-76.8-76.8v-36.245c-118.067-33.512-204.8-142.294-204.8-270.955v-153.6c0-73.157-33.595-140.349-92.171-184.35-8.808-6.616-12.395-18.125-8.907-28.573 3.486-10.448 13.267-17.496 24.283-17.496h232.982c-1.709-8.384-2.587-16.955-2.587-25.581 0-70.579 57.421-128 128-128s128 57.421 128 128c0 8.626-0.878 17.197-2.584 25.581h232.981c11.016 0 20.795 7.046 24.283 17.496s-0.101 21.957-8.909 28.573zM460.8 832c0 14.115 11.485 25.6 25.6 25.6s25.6-11.485 25.6-25.6v-26.774c-8.435 0.763-16.97 1.176-25.6 1.176s-17.166-0.413-25.6-1.176v26.774zM563.2 115.2c0-42.347-34.453-76.8-76.8-76.8s-76.8 34.453-76.8 76.8c0 8.76 1.515 17.411 4.394 25.581h144.813c2.878-8.168 4.394-16.821 4.394-25.581zM191.571 191.981c13.075 15.826 24.437 33.051 33.744 51.27 20.362 39.858 30.685 82.906 30.685 127.949v153.6c0 127.043 103.357 230.4 230.4 230.4s230.4-103.357 230.4-230.4v-153.6c0-45.043 10.323-88.091 30.685-127.949 9.307-18.219 20.669-35.445 33.744-51.27h-589.658z" />
116
+ <glyph unicode="&#xe859;" glyph-name="bullhorn" data-tags="bullhorn" d="M992.694 801.318c-29.611 88.835-68.928 107.482-96.694 107.482-0.584 0-1.176-0.011-1.771-0.029-28.322-0.598-78.627-15.33-153.997-37.41-157.898-46.258-396.514-116.162-637.832-116.162-58.378 0-102.4-77.038-102.4-179.2s44.022-179.2 102.4-179.2c18.891 0 37.765-0.429 56.584-1.24l85.306-339.347c9.73-38.699 48.608-69.013 88.51-69.013h67.2c22.17 0 40.986 9.23 51.622 25.322 10.635 16.091 11.75 37.019 3.061 57.416l-131.926 309.634c160.552-23.672 308.307-66.95 417.474-98.931 75.37-22.082 125.675-36.813 153.997-37.411 0.595-0.018 1.187-0.029 1.771-0.029 27.766 0 67.083 18.646 96.694 107.482 20.19 60.563 31.307 140.582 31.307 225.318 0 84.734-11.117 164.755-31.306 225.318zM819.2 576c0 26.266 1.122 51.965 3.285 76.616 26.291-2.642 47.915-36.642 47.915-76.616s-21.624-73.974-47.915-76.616c-2.163 24.651-3.285 50.35-3.285 76.616zM51.2 576c0 78.136 30.325 128 51.2 128 58.117 0 115.915 3.888 172.422 10.445-12.142-38.794-18.822-86.912-18.822-138.445 0-51.549 6.68-99.658 18.821-138.443-56.507 6.555-114.306 10.443-172.421 10.443-20.875 0-51.2 49.864-51.2 128zM407.579 49.869c2.099-4.928 1.93-8.208 1.328-9.117s-3.55-2.352-8.907-2.352h-67.2c-16.349 0-34.869 14.44-38.856 30.296l-81.33 323.53c17.157-1.379 34.235-3.046 51.213-4.966l143.752-337.39zM332.24 429.949c-15.587 35.173-25.040 89.509-25.040 146.051 0 57.422 9.238 110.73 25.011 146.046 163.054 24.2 312.094 67.861 422.414 100.179 21.243 6.224 41.526 12.165 59.938 17.344-5.285-11.019-10.402-23.686-15.256-38.253-20.19-60.562-31.307-140.582-31.307-225.317s11.117-164.755 31.306-225.318c4.854-14.566 9.971-27.234 15.256-38.253-18.411 5.181-38.694 11.122-59.938 17.346-110.314 32.317-259.341 75.974-422.384 100.174zM944.122 366.872c-19.107-57.325-39.832-72.472-48.122-72.472s-29.014 15.147-48.122 72.472c-8.024 24.069-14.48 51.678-19.222 81.701 24.888 2.87 48.298 16.95 65.33 39.658 17.808 23.744 27.614 54.914 27.614 87.77 0 32.854-9.806 64.026-27.614 87.768-17.034 22.709-40.442 36.789-65.33 39.659 4.742 30.024 11.198 57.632 19.222 81.699 19.109 57.326 39.832 72.474 48.122 72.474s29.013-15.147 48.122-72.472c18.494-55.482 28.678-129.75 28.678-209.128s-10.184-153.646-28.678-209.128z" />
117
+ <glyph unicode="&#xe85a;" glyph-name="volume-high" data-tags="volume-high" d="M699.050 198.107c-7.438 0-14.816 3.227-19.875 9.446-8.922 10.968-7.262 27.093 3.704 36.014 54.096 44.003 85.122 109.187 85.122 178.832s-31.026 134.827-85.12 178.834c-10.968 8.922-12.627 25.046-3.704 36.014s25.046 12.626 36.014 3.702c66.099-53.771 104.010-133.43 104.010-218.55 0-85.122-37.91-164.779-104.011-218.55-4.749-3.862-10.462-5.742-16.139-5.742zM795.915 78.893c-7.438 0-14.814 3.227-19.875 9.446-8.922 10.966-7.264 27.091 3.704 36.014 90.152 73.338 141.856 181.971 141.856 298.046 0 116.077-51.704 224.71-141.854 298.046-10.968 8.922-12.627 25.046-3.704 36.013 8.92 10.968 25.045 12.627 36.014 3.704 102.155-83.101 160.744-206.211 160.744-337.763 0-131.55-58.589-254.661-160.746-337.766-4.747-3.861-10.462-5.741-16.139-5.741zM602.19 317.323c-7.438 0-14.814 3.227-19.875 9.446-8.922 10.966-7.264 27.093 3.704 36.014 18.037 14.672 28.381 36.4 28.381 59.616 0 23.218-10.346 44.949-28.382 59.621-10.966 8.922-12.627 25.046-3.704 36.014s25.045 12.626 36.014 3.704c30.040-24.44 47.272-60.645 47.272-99.339 0-38.691-17.23-74.898-47.27-99.334-4.747-3.861-10.462-5.742-16.139-5.742zM417.291 795.784c-12.64 0-25.318-5.33-37.682-15.838l-209.819-178.346h-92.99c-42.347 0-76.8-34.453-76.8-76.8v-204.8c0-42.349 34.453-76.8 76.8-76.8h92.989l209.821-178.346c12.363-10.509 25.040-15.838 37.68-15.838 0 0 0 0 0.002 0 13.931 0 26.429 6.762 34.288 18.55 6.118 9.178 9.221 20.898 9.221 34.834v640c0 36.877-21.853 53.384-43.509 53.384zM51.2 320v204.8c0 14.115 11.485 25.6 25.6 25.6h76.8v-256h-76.8c-14.115 0-25.6 11.485-25.6 25.6zM409.6 106.558l-204.8 174.080v283.523l204.8 174.078v-631.682z" />
118
+ <glyph unicode="&#xe85b;" glyph-name="volume-medium" data-tags="volume-medium" d="M699.050 198.107c-7.438 0-14.816 3.227-19.875 9.446-8.922 10.968-7.262 27.093 3.704 36.014 54.096 44.003 85.122 109.187 85.122 178.832s-31.026 134.827-85.12 178.834c-10.968 8.922-12.627 25.046-3.704 36.014s25.046 12.626 36.014 3.702c66.099-53.771 104.010-133.43 104.010-218.55 0-85.122-37.91-164.779-104.011-218.55-4.749-3.862-10.462-5.742-16.139-5.742zM602.19 317.323c-7.438 0-14.814 3.227-19.875 9.446-8.922 10.966-7.264 27.093 3.704 36.014 18.037 14.672 28.381 36.4 28.381 59.616 0 23.218-10.346 44.949-28.382 59.621-10.966 8.922-12.627 25.046-3.704 36.014s25.045 12.626 36.014 3.704c30.040-24.44 47.272-60.645 47.272-99.339 0-38.691-17.23-74.898-47.27-99.334-4.747-3.861-10.462-5.742-16.139-5.742zM417.291 795.784c-12.64 0-25.318-5.33-37.682-15.838l-209.819-178.346h-92.99c-42.347 0-76.8-34.453-76.8-76.8v-204.8c0-42.349 34.453-76.8 76.8-76.8h92.989l209.821-178.346c12.363-10.509 25.040-15.838 37.68-15.838 0 0 0 0 0.002 0 13.931 0 26.429 6.762 34.288 18.55 6.118 9.178 9.221 20.898 9.221 34.834v640c0 36.877-21.853 53.384-43.509 53.384zM51.2 320v204.8c0 14.115 11.485 25.6 25.6 25.6h76.8v-256h-76.8c-14.115 0-25.6 11.485-25.6 25.6zM409.6 106.558l-204.8 174.080v283.523l204.8 174.078v-631.682z" />
119
+ <glyph unicode="&#xe85c;" glyph-name="volume-low" data-tags="volume-low" d="M602.19 317.323c-7.438 0-14.814 3.227-19.875 9.446-8.922 10.966-7.264 27.093 3.704 36.014 18.037 14.672 28.381 36.4 28.381 59.616 0 23.218-10.346 44.949-28.382 59.621-10.966 8.922-12.627 25.046-3.704 36.014s25.045 12.626 36.014 3.704c30.040-24.44 47.272-60.645 47.272-99.339 0-38.691-17.23-74.898-47.27-99.334-4.747-3.861-10.462-5.742-16.139-5.742zM417.291 795.784c-12.64 0-25.318-5.33-37.682-15.838l-209.819-178.346h-92.99c-42.347 0-76.8-34.453-76.8-76.8v-204.8c0-42.349 34.453-76.8 76.8-76.8h92.989l209.821-178.346c12.363-10.509 25.040-15.838 37.68-15.838 0 0 0 0 0.002 0 13.931 0 26.429 6.762 34.288 18.55 6.118 9.178 9.221 20.898 9.221 34.834v640c0 36.877-21.853 53.384-43.509 53.384zM51.2 320v204.8c0 14.115 11.485 25.6 25.6 25.6h76.8v-256h-76.8c-14.115 0-25.6 11.485-25.6 25.6zM409.6 106.558l-204.8 174.080v283.523l204.8 174.078v-631.682z" />
120
+ <glyph unicode="&#xe85d;" glyph-name="volume" data-tags="volume" d="M417.291 795.784c-12.64 0-25.318-5.33-37.682-15.838l-209.819-178.346h-92.99c-42.347 0-76.8-34.453-76.8-76.8v-204.8c0-42.349 34.453-76.8 76.8-76.8h92.989l209.821-178.346c12.363-10.509 25.040-15.838 37.68-15.838 0 0 0 0 0.002 0 13.931 0 26.429 6.762 34.288 18.55 6.118 9.178 9.221 20.898 9.221 34.834v640c0 36.877-21.853 53.384-43.509 53.384zM51.2 320v204.8c0 14.115 11.485 25.6 25.6 25.6h76.8v-256h-76.8c-14.115 0-25.6 11.485-25.6 25.6zM409.6 106.558l-204.8 174.080v283.523l204.8 174.078v-631.682z" />
121
+ <glyph unicode="&#xe85e;" glyph-name="mic" data-tags="mic" d="M486.4 243.2c-98.811 0-179.2 80.389-179.2 179.2v307.2c0 98.811 80.389 179.2 179.2 179.2s179.2-80.389 179.2-179.2v-307.2c0-98.811-80.389-179.2-179.2-179.2zM486.4 857.6c-70.579 0-128-57.421-128-128v-307.2c0-70.579 57.421-128 128-128s128 57.421 128 128v307.2c0 70.579-57.421 128-128 128zM819.2 422.4c0 14.139-11.461 25.6-25.6 25.6s-25.6-11.461-25.6-25.6c0-155.275-126.325-281.6-281.6-281.6s-281.6 126.325-281.6 281.6c0 14.139-11.462 25.6-25.6 25.6s-25.6-11.461-25.6-25.6c0-174.894 135.608-318.71 307.2-331.826v-103.374h-76.8c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h204.8c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-76.8v103.374c171.59 13.115 307.2 156.931 307.2 331.826z" />
122
+ <glyph unicode="&#xe85f;" glyph-name="hourglass" data-tags="hourglass" d="M819.2 780.8v25.6c0 20.061-12.354 37.533-36.715 51.933-17.598 10.402-42.042 19.557-72.651 27.21-59.995 14.997-139.344 23.258-223.434 23.258-84.088 0-163.438-8.261-223.432-23.259-30.61-7.653-55.053-16.806-72.653-27.21-24.362-14.398-36.715-31.87-36.715-51.931v-25.6c0-134.691 81.574-255.944 204.795-307.288v-102.222c-123.221-51.346-204.795-172.598-204.795-307.29v-25.6c0-20.059 12.354-37.533 36.715-51.933 17.6-10.402 42.043-19.557 72.653-27.21 59.994-14.998 139.344-23.258 223.432-23.258 84.090 0 163.438 8.259 223.434 23.258 30.61 7.653 55.053 16.808 72.651 27.21 24.362 14.4 36.715 31.874 36.715 51.933v25.6c0 134.691-81.573 255.944-204.794 307.29v102.222c123.221 51.344 204.794 172.597 204.794 307.288zM287.322 838.691c54.56 12.194 125.261 18.909 199.078 18.909 73.819 0 144.52-6.715 199.080-18.909 58.867-13.157 76.701-27.336 81.366-32.291-4.666-4.955-22.499-19.134-81.366-32.291-54.56-12.194-125.261-18.909-199.080-18.909-73.818 0-144.518 6.715-199.078 18.909-58.869 13.157-76.702 27.336-81.37 32.291 4.667 4.955 22.501 19.134 81.37 32.291zM580.275 329.582c112.285-39.69 187.725-146.419 187.725-265.582v-24.238c-2.141-2.909-16.598-18.92-82.52-33.653-54.56-12.194-125.261-18.909-199.080-18.909-73.818 0-144.52 6.715-199.078 18.907-65.915 14.731-80.378 30.741-82.522 33.653v24.24c0 119.163 75.442 225.893 187.726 265.582 10.229 3.616 17.067 13.286 17.067 24.136v137.363c0 10.85-6.838 20.522-17.069 24.136-101.195 35.768-172.453 125.992-185.544 230.693 15.342-6.923 34.075-13.174 55.986-18.653 59.995-14.997 139.346-23.258 223.434-23.258 84.090 0 163.438 8.261 223.434 23.259 21.91 5.477 40.642 11.73 55.986 18.653-13.093-104.699-84.35-194.923-185.544-230.693-10.23-3.616-17.069-13.288-17.069-24.136v-137.363c0-10.851 6.838-20.522 17.069-24.138zM699.734 113.736c-115.798 40.933-187.734 139.586-187.734 257.464v154.872c30.741 3.022 60.315 11.496 88.202 25.355 12.661 6.293 17.824 21.658 11.531 34.318s-21.658 17.826-34.318 11.531c-28.408-14.118-59.030-21.277-91.014-21.277s-62.605 7.158-91.013 21.278c-12.659 6.29-28.026 1.13-34.318-11.531s-1.13-28.026 11.531-34.318c27.885-13.859 57.461-22.333 88.2-25.355v-154.874c0-117.878-71.936-216.531-187.734-257.464-10.762-3.803-17.706-14.272-17.022-25.666 0.682-11.394 8.826-20.96 19.963-23.453 50.294-11.254 126.824-26.218 210.394-26.218s160.099 14.963 210.394 26.218c11.139 2.494 19.282 12.059 19.965 23.453 0.68 11.394-6.261 21.862-17.024 25.666zM486.4 89.6c-44.885 0-87.093 4.464-124.762 10.478 34.070 21.573 63.706 48.766 87.586 80.626 15.019 20.035 27.45 41.557 37.174 64.211 9.726-22.654 22.155-44.174 37.174-64.211 23.88-31.858 53.515-59.051 87.586-80.626-37.666-6.014-79.874-10.478-124.758-10.478z" />
123
+ <glyph unicode="&#xe860;" glyph-name="undo" data-tags="undo" d="M896.533 730.133c-82.198 82.198-191.488 127.467-307.733 127.467s-225.534-45.269-307.733-127.467-127.467-191.486-127.467-307.733v-66.197l-109.899 109.899c-9.997 9.997-26.206 9.997-36.203 0s-9.998-26.206 0-36.203l153.6-153.6c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.101 7.499l153.6 153.6c9.998 9.997 9.998 26.206 0 36.203s-26.206 9.997-36.203 0l-109.898-109.899v66.197c0 211.738 172.262 384 384 384 211.739 0 384-172.262 384-384s-172.261-384-384-384c-14.139 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6c116.245 0 225.534 45.269 307.733 127.467s127.467 191.488 127.467 307.733c0 116.246-45.269 225.534-127.467 307.733z" />
124
+ <glyph unicode="&#xe861;" glyph-name="redo" data-tags="redo" d="M127.467 730.133c82.198 82.198 191.488 127.467 307.733 127.467 116.246 0 225.534-45.269 307.733-127.467s127.467-191.486 127.467-307.733v-66.197l109.899 109.899c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-153.6-153.6c-5-5-11.55-7.499-18.102-7.499s-13.102 2.499-18.101 7.499l-153.6 153.6c-9.998 9.997-9.998 26.206 0 36.203 9.997 9.997 26.206 9.997 36.203 0l109.898-109.899v66.197c0 211.738-172.262 384-384 384-211.739 0-384-172.262-384-384s172.261-384 384-384c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6c-116.245 0-225.534 45.269-307.733 127.467s-127.467 191.488-127.467 307.733c0 116.246 45.269 225.534 127.467 307.733z" />
125
+ <glyph unicode="&#xe862;" glyph-name="sync" data-tags="sync" d="M1016.501 517.302c-9.997 9.997-26.206 9.997-36.203 0l-58.832-58.832c-2.63 105.486-44.947 204.27-119.835 279.16-77.362 77.365-180.222 119.97-289.63 119.97-152.28 0-291.122-83.699-362.342-218.435-6.606-12.499-1.83-27.989 10.669-34.597 12.498-6.606 27.989-1.83 34.597 10.669 62.33 117.914 183.826 191.163 317.077 191.163 194.014 0 352.501-154.966 358.224-347.619l-58.522 58.522c-9.997 9.997-26.206 9.997-36.203 0-9.998-9.998-9.998-26.206 0-36.205l102.4-102.4c4.998-4.998 11.549-7.498 18.101-7.498s13.102 2.499 18.101 7.499l102.4 102.4c9.998 9.997 9.998 26.205 0 36.203zM863.674 291.434c-12.502 6.603-27.99 1.832-34.597-10.669-62.328-117.915-183.826-191.165-317.077-191.165-194.016 0-352.502 154.966-358.224 347.621l58.522-58.522c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.102 7.499c9.997 9.997 9.997 26.206 0 36.203l-102.4 102.4c-9.998 9.997-26.206 9.997-36.205 0l-102.4-102.4c-9.997-9.997-9.997-26.206 0-36.203s26.206-9.997 36.205 0l58.83 58.832c2.63-105.488 44.946-204.272 119.835-279.162 77.365-77.363 180.224-119.97 289.632-119.97 152.28 0 291.12 83.699 362.342 218.435 6.608 12.501 1.829 27.99-10.669 34.598z" />
126
+ <glyph unicode="&#xe863;" glyph-name="history" data-tags="history" d="M874.038 810.038c-96.704 96.704-225.278 149.962-362.038 149.962-158.432 0-305.912-72.984-402.094-194.938v66.938c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-152.154c0-11.71 7.946-21.928 19.296-24.811 4.941-1.256 9.979-0.979 14.555 0.581v-0.003l146.096 49.754c13.384 4.558 20.538 19.102 15.979 32.486s-19.099 20.539-32.486 15.979l-76.304-25.987c86.443 113.066 221.208 180.955 366.158 180.955 254.086 0 460.8-206.714 460.8-460.8s-206.714-460.8-460.8-460.8c-169.778 0-325.323 92.936-405.938 242.541-6.706 12.446-22.235 17.099-34.68 10.392s-17.099-22.234-10.394-34.68c89.56-166.205 262.378-269.453 451.011-269.453 136.76 0 265.334 53.258 362.038 149.962s149.962 225.278 149.962 362.038c0 136.76-53.258 265.334-149.962 362.038zM512 422.4c-4.277 0-8.558 1.069-12.432 3.222l-230.4 128c-12.36 6.866-16.813 22.451-9.946 34.81s22.451 16.813 34.81 9.946l217.080-120.6 268.744 171.021c11.925 7.59 27.75 4.078 35.342-7.854 7.59-11.928 4.074-27.75-7.854-35.341l-281.6-179.2c-4.182-2.662-8.962-4.003-13.744-4.003z" />
127
+ <glyph unicode="&#xe864;" glyph-name="clock1" data-tags="clock" d="M835.574 83.829c88.534 91.234 137.226 211.154 137.226 338.571 0 121.352-44.152 235.912-124.834 325.36l35.234 35.237 33.101-33.099c4.997-4.998 11.547-7.498 18.099-7.498s13.102 2.499 18.099 7.499c10 9.997 10 26.206 0 36.203l-102.4 102.4c-9.995 9.998-26.208 9.998-36.205 0s-9.998-26.206 0-36.203l33.102-33.099-35.237-35.235c-89.45 80.683-204.008 124.835-325.36 124.835s-235.91-44.152-325.36-124.835l-35.237 35.235 33.098 33.098c9.998 9.997 9.998 26.206 0 36.203s-26.206 9.998-36.203 0l-102.4-102.4c-9.998-9.997-9.998-26.206 0-36.203 5-4.998 11.55-7.498 18.102-7.498s13.102 2.499 18.101 7.499l33.099 33.098 35.237-35.237c-80.685-89.45-124.837-204.008-124.837-325.36 0-127.418 48.691-247.336 137.226-338.57l-104.128-104.125c-9.998-9.997-9.998-26.21 0-36.205 5-5.002 11.55-7.501 18.102-7.501s13.102 2.499 18.101 7.501l105.448 105.446c87.304-73.114 196.41-112.947 311.651-112.947s224.349 39.834 311.651 112.946l105.443-105.445c5-5 11.554-7.501 18.102-7.501s13.102 2.499 18.099 7.501c10 9.995 10 26.208 0 36.205l-104.122 104.123zM51.2 422.4c0 239.97 195.23 435.2 435.2 435.2s435.2-195.23 435.2-435.2c0-239.97-195.23-435.2-435.2-435.2s-435.2 195.23-435.2 435.2zM774.611 588.8c-7.069 12.245-22.728 16.435-34.966 9.37l-251.917-145.445-196.344 137.482c-11.582 8.11-27.547 5.294-35.654-6.286-8.11-11.582-5.294-27.546 6.286-35.654l209.702-146.834c0.042-0.030 0.085-0.053 0.126-0.082 0.448-0.309 0.906-0.603 1.37-0.883 0.106-0.064 0.21-0.13 0.315-0.192 0.458-0.264 0.923-0.512 1.394-0.75 0.102-0.051 0.203-0.11 0.307-0.163 0.518-0.25 1.046-0.485 1.579-0.699 0.328-0.133 0.659-0.246 0.99-0.366 0.219-0.075 0.435-0.16 0.656-0.232 0.36-0.117 0.722-0.222 1.085-0.322 0.2-0.056 0.4-0.109 0.6-0.163 0.366-0.091 0.733-0.174 1.101-0.251 0.213-0.042 0.426-0.083 0.64-0.12 0.355-0.064 0.71-0.125 1.067-0.171 0.258-0.035 0.515-0.059 0.774-0.090 0.315-0.034 0.629-0.070 0.944-0.091 0.466-0.034 0.933-0.045 1.4-0.053 0.104 0 0.208-0.011 0.314-0.011 0.005 0 0.011 0.002 0.016 0.002 0.010 0 0.021-0.002 0.030-0.002 0.957 0 1.917 0.062 2.875 0.171 0.045 0.003 0.091 0.006 0.134 0.013 0.93 0.109 1.854 0.28 2.776 0.496 0.086 0.021 0.173 0.035 0.259 0.059 0.867 0.213 1.728 0.472 2.579 0.779 0.146 0.050 0.29 0.104 0.434 0.163 0.795 0.302 1.581 0.637 2.358 1.029 0.184 0.094 0.365 0.197 0.549 0.294 0.269 0.144 0.542 0.278 0.81 0.434l266.043 153.6c12.24 7.069 16.435 22.725 9.366 34.97z" />
128
+ <glyph unicode="&#xe865;" glyph-name="download" data-tags="download" d="M760.499 466.099c-9.995 9.997-26.206 9.997-36.203 0l-212.296-212.294v578.195c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-578.195l-212.298 212.294c-9.998 9.997-26.206 9.997-36.205 0-9.997-9.995-9.997-26.206 0-36.203l256-256c5-4.997 11.55-7.496 18.102-7.496s13.102 2.499 18.102 7.501l256 256c9.997 9.995 9.997 26.203-0.003 36.198zM896-12.8h-819.2c-42.347 0-76.8 34.451-76.8 76.8v102.4c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-14.115 11.485-25.6 25.6-25.6h819.2c14.115 0 25.6 11.485 25.6 25.6v102.4c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-42.349-34.451-76.8-76.8-76.8z" />
129
+ <glyph unicode="&#xe866;" glyph-name="upload" data-tags="upload" d="M896-12.8h-819.2c-42.347 0-76.8 34.451-76.8 76.8v102.4c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-14.115 11.485-25.6 25.6-25.6h819.2c14.115 0 25.6 11.485 25.6 25.6v102.4c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-42.349-34.451-76.8-76.8-76.8zM760.501 517.302l-256 256c-9.998 9.997-26.206 9.997-36.205 0l-256-256c-9.997-9.998-9.997-26.206 0-36.203s26.206-9.997 36.205 0l212.299 212.298v-526.997c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v526.997l212.299-212.298c4.998-5 11.549-7.499 18.101-7.499s13.102 2.499 18.101 7.499c9.998 9.997 9.998 26.205 0 36.203z" />
130
+ <glyph unicode="&#xe867;" glyph-name="enter-down" data-tags="enter-down" d="M658.101 363.701c-9.997 9.997-26.206 9.997-36.203 0l-109.898-109.898v629.397c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-629.397l-109.899 109.899c-9.997 9.997-26.206 9.997-36.203 0-9.998-9.997-9.998-26.206 0-36.203l153.6-153.6c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.101 7.499l153.6 153.6c9.998 9.997 9.998 26.205 0 36.202zM793.6-64h-614.4c-42.347 0-76.8 34.451-76.8 76.8v512c0 42.347 34.453 76.8 76.8 76.8h204.8c14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6h-204.8c-14.115 0-25.6-11.485-25.6-25.6v-512c0-14.115 11.485-25.6 25.6-25.6h614.4c14.115 0 25.6 11.485 25.6 25.6v512c0 14.115-11.485 25.6-25.6 25.6h-204.8c-14.139 0-25.6 11.462-25.6 25.6s11.461 25.6 25.6 25.6h204.8c42.349 0 76.8-34.453 76.8-76.8v-512c0-42.349-34.451-76.8-76.8-76.8z" />
131
+ <glyph unicode="&#xe868;" glyph-name="exit-up" data-tags="exit-up" d="M793.6-64h-614.4c-42.347 0-76.8 34.453-76.8 76.8v512c0 42.347 34.453 76.8 76.8 76.8h204.8c14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6h-204.8c-14.115 0-25.6-11.485-25.6-25.6v-512c0-14.115 11.485-25.6 25.6-25.6h614.4c14.115 0 25.6 11.485 25.6 25.6v512c0 14.115-11.485 25.6-25.6 25.6h-204.8c-14.139 0-25.6 11.462-25.6 25.6s11.461 25.6 25.6 25.6h204.8c42.347 0 76.8-34.453 76.8-76.8v-512c0-42.347-34.453-76.8-76.8-76.8zM658.099 773.301l-153.6 153.6c-9.997 9.998-26.206 9.998-36.203 0l-153.6-153.6c-9.998-9.997-9.998-26.206 0-36.203s26.206-9.998 36.203 0l109.901 109.899v-578.197c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v578.197l109.901-109.898c4.997-5 11.547-7.499 18.099-7.499s13.102 2.499 18.099 7.499c10 9.997 10 26.205 0 36.202z" />
132
+ <glyph unicode="&#xe869;" glyph-name="bug" data-tags="bug" d="M896 345.6h-77.544c-3.19 56.282-16.878 110.243-39.965 158.814 53.056 15.624 91.909 64.739 91.909 122.786 0 14.138-11.461 25.6-25.6 25.6s-25.6-11.462-25.6-25.6c0-38.984-29.205-71.254-66.88-76.138-8.928 13.632-18.678 26.68-29.259 39.026-5.515 6.435-11.203 12.6-17.032 18.525 7.147 22.477 10.771 45.877 10.771 69.787 0 127.043-103.357 230.4-230.4 230.4s-230.4-103.357-230.4-230.4c0-23.909 3.624-47.309 10.77-69.787-5.829-5.923-11.515-12.090-17.032-18.525-10.582-12.346-20.331-25.394-29.259-39.026-37.674 4.883-66.878 37.154-66.878 76.138 0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6c0-58.046 38.853-107.162 91.907-122.784-23.086-48.573-36.773-102.534-39.965-158.816h-77.542c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h77.544c3.19-56.283 16.878-110.243 39.965-158.816-53.056-15.622-91.909-64.738-91.909-122.784 0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6c0 38.984 29.205 71.254 66.88 76.138 8.928-13.632 18.677-26.68 29.259-39.026 62.965-73.458 147.013-113.912 236.661-113.912s173.698 40.454 236.661 113.912c10.581 12.346 20.331 25.394 29.258 39.026 37.677-4.883 66.882-37.152 66.882-76.138 0-14.139 11.461-25.6 25.6-25.6s25.6 11.461 25.6 25.6c0 58.046-38.853 107.163-91.907 122.784 23.086 48.571 36.773 102.533 39.965 158.816h77.542c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6zM486.4 857.6c98.811 0 179.2-80.389 179.2-179.2 0-10.986-0.99-21.824-2.933-32.458-52.312 37.811-112.885 58.058-176.267 58.058s-123.955-20.246-176.267-58.058c-1.942 10.634-2.933 21.472-2.933 32.458 0 98.811 80.389 179.2 179.2 179.2zM204.8 320c0 173.306 112.678 316.072 256 331.41v-662.821c-143.322 15.339-256 158.106-256 331.411zM512-11.411v662.821c143.322-15.338 256-158.104 256-331.41s-112.678-316.072-256-331.411z" />
133
+ <glyph unicode="&#xe86a;" glyph-name="code" data-tags="code" d="M256 192c-6.552 0-13.102 2.499-18.101 7.499l-204.8 204.8c-9.998 9.997-9.998 26.206 0 36.203l204.8 204.8c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-186.699-186.699 186.698-186.699c9.998-9.997 9.998-26.206 0-36.203-4.998-4.998-11.549-7.498-18.101-7.498zM768 192c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l186.698 186.698-186.698 186.699c-9.998 9.997-9.998 26.206 0 36.203 9.997 9.997 26.206 9.997 36.203 0l204.8-204.8c9.998-9.997 9.998-26.206 0-36.203l-204.8-204.8c-5-5-11.55-7.499-18.102-7.499zM383.976 191.997c-4.634 0-9.325 1.258-13.544 3.894-11.989 7.494-15.634 23.288-8.141 35.278l256 409.6c7.493 11.984 23.283 15.634 35.278 8.141 11.989-7.494 15.634-23.288 8.141-35.278l-256-409.6c-4.858-7.77-13.202-12.035-21.734-12.035z" />
134
+ <glyph unicode="&#xe86b;" glyph-name="link" data-tags="link" d="M546.917 294.488c-48.275 0-96.55 18.376-133.301 55.128-9.998 9.997-9.998 26.206 0 36.203s26.205 9.997 36.203 0c53.539-53.541 140.656-53.541 194.197 0l186.166 186.166c53.539 53.539 53.539 140.656 0 194.197-53.541 53.539-140.656 53.538-194.197 0l-157.082-157.083c-9.998-9.997-26.206-9.997-36.203 0-9.998 9.998-9.998 26.206 0 36.205l157.083 157.083c73.502 73.501 193.101 73.501 266.603 0s73.502-193.101 0-266.603l-186.168-186.168c-36.752-36.752-85.027-55.128-133.302-55.128zM239.717-12.712c-48.275 0-96.55 18.376-133.302 55.128-73.501 73.502-73.501 193.101 0 266.603l186.166 186.166c73.501 73.501 193.101 73.501 266.603 0 9.998-9.998 9.998-26.206 0-36.203-9.997-9.998-26.206-9.998-36.203 0-53.541 53.541-140.656 53.541-194.197 0l-186.165-186.166c-53.539-53.541-53.539-140.656 0-194.197s140.656-53.541 194.195 0l157.083 157.083c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-157.083-157.083c-36.75-36.752-85.026-55.128-133.301-55.128z" />
135
+ <glyph unicode="&#xe86c;" glyph-name="unlink" data-tags="unlink" d="M691.2 371.2c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l157.083 157.083c25.936 25.936 40.221 60.421 40.221 97.099s-14.285 71.162-40.221 97.098c-53.539 53.538-140.654 53.541-194.197 0l-157.083-157.082c-9.997-9.998-26.206-9.998-36.203 0-9.998 9.997-9.998 26.206 0 36.203l157.083 157.083c73.504 73.502 193.104 73.499 266.603 0 35.608-35.606 55.218-82.947 55.218-133.302s-19.61-97.696-55.218-133.302l-157.083-157.082c-5-5.002-11.55-7.501-18.102-7.501zM239.717-12.802c-50.355 0-97.696 19.61-133.302 55.218-73.501 73.501-73.501 193.101 0 266.603l157.083 157.083c9.997 9.998 26.206 9.998 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-157.082-157.083c-53.538-53.541-53.538-140.658 0-194.197 25.936-25.936 60.419-40.221 97.098-40.221s71.162 14.285 97.098 40.221l157.083 157.083c9.997 9.997 26.206 9.997 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-157.083-157.083c-35.605-35.608-82.946-55.218-133.301-55.218zM281.6 601.6c-6.552 0-13.102 2.499-18.101 7.499l-102.4 102.4c-9.998 9.997-9.998 26.206 0 36.203 9.997 9.998 26.206 9.998 36.203 0l102.4-102.4c9.998-9.997 9.998-26.206 0-36.203-5-5-11.55-7.499-18.102-7.499zM384 652.8c-14.138 0-25.6 11.462-25.6 25.6v153.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-153.6c0-14.138-11.462-25.6-25.6-25.6zM230.4 499.2h-153.6c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h153.6c14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6zM793.6 89.6c-6.552 0-13.102 2.499-18.101 7.499l-102.4 102.4c-9.998 9.997-9.998 26.206 0 36.203 9.997 9.997 26.206 9.997 36.203 0l102.4-102.4c9.998-9.997 9.998-26.206 0-36.203-5-5-11.55-7.499-18.102-7.499zM896.002 294.4h-153.602c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h153.602c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM588.8-12.8c-14.139 0-25.6 11.461-25.6 25.6v153.6c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-153.6c0-14.139-11.461-25.6-25.6-25.6z" />
136
+ <glyph unicode="&#xe86d;" glyph-name="thumbs-up" data-tags="thumbs-up" d="M968.517 386.149c22.662 26.155 35.565 69.381 35.565 110.541 0 27.17-5.899 50.974-17.056 68.842-14.526 23.259-37.762 36.069-65.426 36.069h-134.053c72.966 132.683 91.408 232.587 54.766 297.302-25.534 45.096-72.366 61.098-104.714 61.098-12.811 0-23.65-9.469-25.368-22.165-9.147-67.554-60.811-148.131-141.742-221.074-77.518-69.869-172.765-125.768-270.642-159.208-12.317 26.010-38.811 44.046-69.448 44.046h-153.6c-42.347 0-76.8-34.453-76.8-76.8v-460.8c0-42.347 34.453-76.8 76.8-76.8h153.6c32.437 0 60.222 20.226 71.459 48.718 100.421-12.57 138.195-32.754 174.794-52.314 45.802-24.482 89.062-47.605 230.547-47.605 36.854 0 71.587 9.624 97.8 27.101 25.61 17.074 41.968 41.006 47.4 68.755 20.414 8.283 38.544 27.426 52.454 55.893 13.53 27.688 22.272 63.077 22.272 90.166 0 5.069-0.296 9.726-0.89 14.014 12.944 9.528 24.56 24.243 34.152 43.592 13.837 27.912 22.099 62.866 22.099 93.494 0 21.694-4.027 39.802-11.968 53.822-0.645 1.128-1.312 2.234-2.003 3.31zM230.4 38.4h-153.6c-14.115 0-25.6 11.485-25.6 25.6v460.8c0 14.115 11.485 25.6 25.6 25.6h153.6c14.115 0 25.6-11.485 25.6-25.6v-460.738c0-0.022 0-0.043 0-0.066-0.002-14.114-11.486-25.597-25.6-25.597zM938.944 433.986c-7.739-15.546-15.57-21.186-18.944-21.186-14.139 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6c2.149 0 3.699 0 5.971-4.008 3.378-5.965 5.315-16.382 5.315-28.582 0-22.77-6.427-49.883-16.771-70.754-10.131-20.437-20.451-27.856-24.915-27.856-14.139 0-25.6-11.461-25.6-25.6 0-9.067 4.715-17.034 11.827-21.582 1.581-16.206-5.976-59.629-25.627-87.947-7.438-10.722-15.238-16.87-21.4-16.87-14.139 0-25.6-11.461-25.6-25.6 0-45.072-49.765-65.6-96-65.6-128.659 0-164.691 19.259-206.413 41.56-38.992 20.84-82.864 44.29-193.587 58.085v419.179c107.558 35.258 212.589 96.114 297.566 172.704 81.554 73.502 135.12 152.979 153.286 226.603 13.933-4.477 29.651-13.896 39.706-31.656 17.096-30.192 29.896-107.299-76.43-284.506-4.746-7.909-4.87-17.758-0.325-25.784s13.053-12.987 22.277-12.987h178.32c10.17 0 16.749-3.586 21.998-11.99 5.986-9.586 9.283-24.402 9.283-41.72 0-21.733-5.211-45.174-13.938-62.702z" />
137
+ <glyph unicode="&#xe86e;" glyph-name="thumbs-down" data-tags="thumbs-down" d="M968.517 509.851c22.662-26.155 35.565-69.381 35.565-110.541 0-27.17-5.899-50.974-17.056-68.842-14.526-23.259-37.762-36.069-65.426-36.069h-134.053c72.966-132.683 91.408-232.587 54.766-297.302-25.534-45.096-72.366-61.098-104.714-61.098-12.811 0-23.65 9.469-25.368 22.165-9.147 67.554-60.811 148.131-141.742 221.074-77.518 69.869-172.765 125.768-270.642 159.208-12.317-26.010-38.811-44.046-69.448-44.046h-153.6c-42.347 0-76.8 34.453-76.8 76.8v460.8c0 42.347 34.453 76.8 76.8 76.8h153.6c32.437 0 60.222-20.226 71.459-48.718 100.421 12.57 138.195 32.754 174.794 52.314 45.802 24.482 89.062 47.605 230.547 47.605 36.854 0 71.587-9.624 97.8-27.101 25.61-17.074 41.968-41.006 47.4-68.755 20.414-8.283 38.544-27.426 52.454-55.893 13.53-27.688 22.272-63.077 22.272-90.166 0-5.069-0.296-9.726-0.89-14.014 12.944-9.528 24.56-24.243 34.152-43.592 13.837-27.912 22.099-62.866 22.099-93.494 0-21.694-4.027-39.802-11.968-53.822-0.645-1.128-1.312-2.234-2.003-3.31zM230.4 857.6h-153.6c-14.115 0-25.6-11.485-25.6-25.6v-460.8c0-14.115 11.485-25.6 25.6-25.6h153.6c14.115 0 25.6 11.485 25.6 25.6v460.738c0 0.022 0 0.043 0 0.066-0.002 14.114-11.486 25.597-25.6 25.597zM938.944 462.014c-7.739 15.546-15.57 21.186-18.944 21.186-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6c2.149 0 3.699 0 5.971 4.008 3.378 5.965 5.315 16.382 5.315 28.582 0 22.77-6.427 49.883-16.771 70.754-10.131 20.437-20.451 27.856-24.915 27.856-14.139 0-25.6 11.461-25.6 25.6 0 9.067 4.715 17.034 11.827 21.582 1.581 16.206-5.976 59.629-25.627 87.947-7.438 10.722-15.238 16.87-21.4 16.87-14.139 0-25.6 11.461-25.6 25.6 0 45.072-49.765 65.6-96 65.6-128.659 0-164.691-19.259-206.413-41.56-38.992-20.84-82.864-44.29-193.587-58.085v-419.179c107.558-35.258 212.589-96.114 297.566-172.704 81.554-73.502 135.12-152.979 153.286-226.603 13.933 4.477 29.651 13.896 39.706 31.656 17.096 30.192 29.896 107.299-76.43 284.506-4.746 7.909-4.87 17.758-0.325 25.784s13.053 12.987 22.277 12.987h178.32c10.17 0 16.749 3.586 21.998 11.99 5.986 9.586 9.283 24.402 9.283 41.72 0 21.733-5.211 45.174-13.938 62.702z" />
138
+ <glyph unicode="&#xe86f;" glyph-name="magnifier" data-tags="magnifier" d="M966.070-21.101l-304.302 331.965c68.573 71.754 106.232 165.549 106.232 265.136 0 102.57-39.942 199-112.47 271.53s-168.96 112.47-271.53 112.47-199-39.942-271.53-112.47-112.47-168.96-112.47-271.53 39.942-199.002 112.47-271.53 168.96-112.47 271.53-112.47c88.362 0 172.152 29.667 240.043 84.248l304.285-331.947c5.050-5.507 11.954-8.301 18.878-8.301 6.179 0 12.378 2.226 17.293 6.728 10.421 9.555 11.126 25.749 1.571 36.171zM51.2 576c0 183.506 149.294 332.8 332.8 332.8s332.8-149.294 332.8-332.8-149.294-332.8-332.8-332.8-332.8 149.294-332.8 332.8z" />
139
+ <glyph unicode="&#xe870;" glyph-name="cross" data-tags="cross" d="M548.203 422.4l289.099 289.098c9.998 9.998 9.998 26.206 0 36.205-9.997 9.997-26.206 9.997-36.203 0l-289.099-289.099-289.098 289.099c-9.998 9.997-26.206 9.997-36.205 0-9.997-9.998-9.997-26.206 0-36.205l289.099-289.098-289.099-289.099c-9.997-9.997-9.997-26.206 0-36.203 5-4.998 11.55-7.498 18.102-7.498s13.102 2.499 18.102 7.499l289.098 289.098 289.099-289.099c4.998-4.998 11.549-7.498 18.101-7.498s13.102 2.499 18.101 7.499c9.998 9.997 9.998 26.206 0 36.203l-289.098 289.098z" />
140
+ <glyph unicode="&#xe871;" glyph-name="menu1" data-tags="menu" d="M896 652.8h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 140.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
141
+ <glyph unicode="&#xe872;" glyph-name="list1" data-tags="list" d="M998.4 140.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM998.4 396.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM998.4 652.8h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM76.8 601.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8zM76.8 704c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM76.8 345.6c-42.347 0-76.8 34.451-76.8 76.8 0 42.347 34.453 76.8 76.8 76.8s76.8-34.453 76.8-76.8c0-42.349-34.453-76.8-76.8-76.8zM76.8 448c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6zM76.8 89.6c-42.347 0-76.8 34.451-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.451 76.8-76.8-34.453-76.8-76.8-76.8zM76.8 192c-14.115 0-25.6-11.485-25.6-25.6s11.485-25.6 25.6-25.6 25.6 11.485 25.6 25.6-11.485 25.6-25.6 25.6z" />
142
+ <glyph unicode="&#xe873;" glyph-name="chevron-up" data-tags="chevron-up" d="M0 192c0-6.552 2.499-13.102 7.499-18.101 9.997-9.998 26.206-9.998 36.203 0l442.698 442.698 442.699-442.698c9.997-9.998 26.206-9.998 36.203 0s9.998 26.206 0 36.203l-460.8 460.8c-9.997 9.998-26.206 9.998-36.203 0l-460.8-460.8c-5-5-7.499-11.55-7.499-18.102z" />
143
+ <glyph unicode="&#xe874;" glyph-name="chevron-down" data-tags="chevron-down" d="M0 652.8c0 6.552 2.499 13.102 7.499 18.101 9.997 9.998 26.206 9.998 36.203 0l442.698-442.698 442.699 442.698c9.997 9.998 26.206 9.998 36.203 0s9.998-26.206 0-36.203l-460.8-460.8c-9.997-9.998-26.206-9.998-36.203 0l-460.8 460.8c-5 5-7.499 11.55-7.499 18.102z" />
144
+ <glyph unicode="&#xe875;" glyph-name="chevron-left" data-tags="chevron-left" d="M716.8-64c6.552 0 13.102 2.499 18.101 7.499 9.998 9.997 9.998 26.206 0 36.203l-442.698 442.698 442.698 442.699c9.998 9.997 9.998 26.206 0 36.203s-26.206 9.998-36.203 0l-460.8-460.8c-9.998-9.997-9.998-26.206 0-36.203l460.8-460.8c5-5 11.55-7.499 18.102-7.499z" />
145
+ <glyph unicode="&#xe876;" glyph-name="chevron-right" data-tags="chevron-right" d="M256-64c-6.552 0-13.102 2.499-18.101 7.499-9.998 9.997-9.998 26.206 0 36.203l442.698 442.698-442.698 442.699c-9.998 9.997-9.998 26.206 0 36.203s26.206 9.998 36.203 0l460.8-460.8c9.998-9.997 9.998-26.206 0-36.203l-460.8-460.8c-5-5-11.55-7.499-18.102-7.499z" />
146
+ <glyph unicode="&#xe877;" glyph-name="arrow-up" data-tags="arrow-up" d="M468.299 926.901l-307.2-307.2c-9.997-9.997-9.997-26.206 0-36.203s26.206-9.998 36.205 0l263.496 263.498v-834.195c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v834.195l263.499-263.496c9.997-9.998 26.206-9.998 36.203 0 4.998 4.998 7.498 11.549 7.498 18.101s-2.499 13.102-7.499 18.101l-307.2 307.2c-9.997 9.998-26.205 9.998-36.202 0z" />
147
+ <glyph unicode="&#xe878;" glyph-name="arrow-down" data-tags="arrow-down" d="M504.501-30.901l307.2 307.2c9.997 9.997 9.997 26.206 0 36.203-9.998 9.998-26.206 9.998-36.205 0l-263.496-263.498v834.195c0 14.138-11.461 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-834.195l-263.499 263.496c-9.997 9.998-26.206 9.998-36.203 0-4.998-4.998-7.498-11.549-7.498-18.101s2.499-13.102 7.499-18.101l307.2-307.2c9.997-9.998 26.205-9.998 36.202 0z" />
148
+ <glyph unicode="&#xe879;" glyph-name="arrow-left" data-tags="arrow-left" d="M33.099 440.501l307.2 307.2c9.997 9.997 26.206 9.997 36.203 0 9.998-9.998 9.998-26.206 0-36.205l-263.498-263.496h834.195c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6h-834.195l263.496-263.499c9.998-9.997 9.998-26.206 0-36.203-4.998-4.998-11.549-7.498-18.101-7.498s-13.102 2.499-18.101 7.499l-307.2 307.2c-9.998 9.997-9.998 26.205 0 36.202z" />
149
+ <glyph unicode="&#xe87a;" glyph-name="arrow-right" data-tags="arrow-right" d="M990.901 440.501l-307.2 307.2c-9.997 9.997-26.206 9.997-36.203 0-9.998-9.998-9.998-26.206 0-36.205l263.498-263.496h-834.195c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h834.195l-263.496-263.499c-9.998-9.997-9.998-26.206 0-36.203 4.998-4.998 11.549-7.498 18.101-7.498s13.102 2.499 18.101 7.499l307.2 307.2c9.998 9.997 9.998 26.205 0 36.202z" />
150
+ <glyph unicode="&#xe87b;" glyph-name="move" data-tags="move" d="M939.701 440.501l-153.6 153.6c-9.997 9.998-26.206 9.998-36.203 0-9.998-9.997-9.998-26.206 0-36.203l109.899-109.898h-347.797v347.797l109.899-109.898c4.998-5 11.549-7.499 18.101-7.499s13.102 2.499 18.101 7.499c9.998 9.997 9.998 26.206 0 36.203l-153.6 153.6c-9.997 9.998-26.206 9.998-36.203 0l-153.6-153.6c-9.998-9.997-9.998-26.206 0-36.203s26.206-9.998 36.203 0l109.899 109.898v-347.797h-347.797l109.898 109.899c9.998 9.997 9.998 26.206 0 36.203-9.997 9.998-26.206 9.998-36.203 0l-153.6-153.6c-9.998-9.997-9.998-26.206 0-36.203l153.6-153.6c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.101 7.499c9.998 9.997 9.998 26.206 0 36.203l-109.898 109.898h347.797v-347.797l-109.899 109.899c-9.997 9.997-26.206 9.997-36.203 0-9.998-9.997-9.998-26.206 0-36.203l153.6-153.6c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.101 7.499l153.6 153.6c9.998 9.997 9.998 26.206 0 36.203-9.997 9.997-26.206 9.997-36.203 0l-109.898-109.899v347.797h347.797l-109.899-109.899c-9.998-9.997-9.998-26.206 0-36.203 5-4.998 11.55-7.498 18.102-7.498s13.102 2.499 18.101 7.499l153.6 153.6c9.998 9.997 9.998 26.205 0 36.202z" />
151
+ <glyph unicode="&#xe87c;" glyph-name="warning" data-tags="warning" d="M947.2-12.8h-921.6c-9.094 0-17.507 4.826-22.099 12.677s-4.672 17.547-0.214 25.474l460.8 819.2c4.536 8.061 13.066 13.050 22.314 13.050s17.778-4.989 22.312-13.050l460.8-819.2c4.459-7.926 4.376-17.624-0.214-25.474-4.592-7.851-13.002-12.677-22.098-12.677zM69.371 38.4h834.056l-417.027 741.382-417.029-741.382zM486.4 243.2c-14.138 0-25.6 11.461-25.6 25.6v256c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-256c0-14.139-11.462-25.6-25.6-25.6zM486.4 89.6c-14.138 0-25.6 11.461-25.6 25.6v51.2c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-51.2c0-14.139-11.462-25.6-25.6-25.6z" />
152
+ <glyph unicode="&#xe87d;" glyph-name="question-circle" data-tags="question-circle" d="M830.338 766.336c-91.869 91.869-214.016 142.464-343.938 142.464s-252.067-50.595-343.936-142.464-142.464-214.014-142.464-343.936 50.595-252.069 142.464-343.938 214.014-142.462 343.936-142.462 252.069 50.594 343.938 142.462 142.462 214.016 142.462 343.938-50.594 252.067-142.462 343.936zM486.4-12.8c-239.97 0-435.2 195.23-435.2 435.2s195.23 435.2 435.2 435.2c239.97 0 435.2-195.23 435.2-435.2s-195.23-435.2-435.2-435.2zM486.4 192c-14.138 0-25.6 11.461-25.6 25.6v102.4c0 14.139 11.462 25.6 25.6 25.6 98.811 0 179.2 80.389 179.2 179.2s-80.389 179.2-179.2 179.2-179.2-80.389-179.2-179.2c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 127.043 103.357 230.4 230.4 230.4 127.042 0 230.4-103.357 230.4-230.4 0-118.389-89.763-216.211-204.8-228.987v-78.213c0-14.139-11.462-25.6-25.6-25.6zM486.4 38.4c-0.002 0 0 0 0 0-14.139 0-25.6 11.462-25.6 25.6v51.2c0 14.138 11.462 25.6 25.6 25.6 0 0 0 0 0 0 14.139 0 25.6-11.462 25.6-25.6v-51.2c0-14.138-11.464-25.6-25.6-25.6z" />
153
+ <glyph unicode="&#xe87e;" glyph-name="menu-circle" data-tags="menu-circle" d="M486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2zM742.4 550.4h-512c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4 396.8h-512c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM742.4 243.2h-512c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
154
+ <glyph unicode="&#xe87f;" glyph-name="checkmark-circle" data-tags="checkmark-circle" d="M486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2zM384 217.6c-6.552 0-13.102 2.499-18.102 7.499l-153.6 153.6c-9.997 9.997-9.997 26.206 0 36.203 9.998 9.997 26.206 9.997 36.205 0l135.498-135.498 340.299 340.298c9.997 9.997 26.206 9.997 36.203 0 9.998-9.998 9.998-26.206 0-36.205l-358.4-358.4c-5-4.998-11.55-7.498-18.102-7.498z" />
155
+ <glyph unicode="&#xe880;" glyph-name="cross-circle" data-tags="cross-circle" d="M733.808 236.734l-208.874 185.666 208.874 185.667c10.566 9.394 11.518 25.574 2.126 36.141-9.394 10.566-25.574 11.522-36.142 2.126l-213.392-189.682-213.392 189.68c-10.568 9.392-26.749 8.44-36.141-2.126-9.394-10.566-8.442-26.749 2.126-36.141l208.874-185.666-208.875-185.666c-10.566-9.394-11.518-25.574-2.126-36.142 5.059-5.691 12.085-8.592 19.142-8.592 6.048 0 12.122 2.131 16.998 6.466l213.394 189.683 213.392-189.683c4.878-4.334 10.949-6.466 16.998-6.466 7.058 0 14.086 2.902 19.144 8.592 9.392 10.568 8.44 26.749-2.126 36.142zM486.4-64c-129.922 0-252.067 50.594-343.936 142.464s-142.464 214.014-142.464 343.936c0 129.923 50.595 252.067 142.464 343.936s214.013 142.464 343.936 142.464c129.922 0 252.067-50.595 343.936-142.464s142.464-214.014 142.464-343.936-50.594-252.067-142.464-343.936c-91.869-91.87-214.014-142.464-343.936-142.464zM486.4 857.6c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2z" />
156
+ <glyph unicode="&#xe881;" glyph-name="plus-circle" data-tags="plus-circle" d="M830.338 766.336c-91.869 91.869-214.016 142.464-343.938 142.464s-252.067-50.595-343.936-142.464-142.464-214.014-142.464-343.936 50.595-252.069 142.464-343.938 214.014-142.462 343.936-142.462 252.069 50.594 343.938 142.462 142.462 214.016 142.462 343.938-50.594 252.067-142.462 343.936zM486.4-12.8c-239.97 0-435.2 195.23-435.2 435.2s195.23 435.2 435.2 435.2c239.97 0 435.2-195.23 435.2-435.2s-195.23-435.2-435.2-435.2zM793.6 448h-281.6v281.6c0 14.138-11.462 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-281.6h-281.6c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h281.6v-281.6c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v281.6h281.6c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6z" />
157
+ <glyph unicode="&#xe882;" glyph-name="circle-minus" data-tags="circle-minus" d="M830.338 766.336c-91.869 91.869-214.016 142.464-343.938 142.464s-252.067-50.595-343.936-142.464-142.464-214.014-142.464-343.936 50.595-252.069 142.464-343.938 214.014-142.462 343.936-142.462 252.069 50.594 343.938 142.462 142.462 214.016 142.462 343.938-50.594 252.067-142.462 343.936zM486.4-12.8c-239.97 0-435.2 195.23-435.2 435.2s195.23 435.2 435.2 435.2c239.97 0 435.2-195.23 435.2-435.2s-195.23-435.2-435.2-435.2zM793.6 396.8h-614.4c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h614.4c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
158
+ <glyph unicode="&#xe883;" glyph-name="arrow-up-circle" data-tags="arrow-up-circle" d="M142.464 766.338c-91.869-91.869-142.464-214.016-142.464-343.938s50.595-252.067 142.464-343.936 214.014-142.464 343.936-142.464 252.069 50.595 343.938 142.464 142.462 214.014 142.462 343.936-50.594 252.069-142.462 343.938-214.016 142.462-343.938 142.462-252.067-50.594-343.936-142.462zM921.6 422.4c0-239.97-195.23-435.2-435.2-435.2s-435.2 195.23-435.2 435.2c0 239.97 195.23 435.2 435.2 435.2s435.2-195.23 435.2-435.2zM468.301 722.099l-204.8-204.8c-9.998-9.995-9.998-26.206 0-36.203 9.997-9.998 26.206-9.998 36.203 0l161.096 161.101v-526.997c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v526.997l161.101-161.096c9.995-9.998 26.206-9.998 36.203 0 4.997 4.997 7.496 11.547 7.496 18.099s-2.499 13.102-7.501 18.099l-204.8 204.8c-9.997 10-26.202 10-36.198 0z" />
159
+ <glyph unicode="&#xe884;" glyph-name="arrow-down-circle" data-tags="arrow-down-circle" d="M830.336 78.462c91.869 91.869 142.464 214.016 142.464 343.938s-50.595 252.067-142.464 343.936-214.014 142.464-343.936 142.464-252.069-50.595-343.938-142.464-142.462-214.014-142.462-343.936 50.594-252.069 142.462-343.938 214.016-142.462 343.938-142.462 252.067 50.594 343.936 142.462zM51.2 422.4c0 239.97 195.23 435.2 435.2 435.2s435.2-195.23 435.2-435.2c0-239.97-195.23-435.2-435.2-435.2s-435.2 195.23-435.2 435.2zM504.499 122.701l204.8 204.8c9.998 9.995 9.998 26.206 0 36.203-9.997 9.998-26.206 9.998-36.203 0l-161.096-161.101v526.997c0 14.138-11.461 25.6-25.6 25.6s-25.6-11.462-25.6-25.6v-526.997l-161.101 161.096c-9.995 9.998-26.206 9.998-36.203 0-4.997-4.997-7.496-11.547-7.496-18.099s2.499-13.102 7.501-18.099l204.8-204.8c9.997-10 26.202-10 36.198 0z" />
160
+ <glyph unicode="&#xe885;" glyph-name="arrow-left-circle" data-tags="arrow-left-circle" d="M142.462 766.336c91.869 91.869 214.016 142.464 343.938 142.464s252.067-50.595 343.936-142.464 142.464-214.014 142.464-343.936-50.595-252.069-142.464-343.938-214.014-142.462-343.936-142.462-252.069 50.594-343.938 142.462-142.462 214.016-142.462 343.938 50.594 252.067 142.462 343.936zM486.4-12.8c239.97 0 435.2 195.23 435.2 435.2s-195.23 435.2-435.2 435.2c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2zM186.701 440.499l204.8 204.8c9.995 9.998 26.206 9.998 36.203 0 9.998-9.997 9.998-26.206 0-36.203l-161.101-161.096h526.997c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6h-526.997l161.096-161.101c9.998-9.995 9.998-26.206 0-36.203-4.997-4.997-11.547-7.496-18.099-7.496s-13.102 2.499-18.099 7.501l-204.8 204.8c-10 9.997-10 26.202 0 36.198z" />
161
+ <glyph unicode="&#xe886;" glyph-name="arrow-right-circle" data-tags="arrow-right-circle" d="M830.338 766.336c-91.869 91.869-214.016 142.464-343.938 142.464s-252.067-50.595-343.936-142.464-142.464-214.014-142.464-343.936 50.595-252.069 142.464-343.938 214.014-142.462 343.936-142.462 252.069 50.594 343.938 142.462 142.462 214.016 142.462 343.938-50.594 252.067-142.462 343.936zM486.4-12.8c-239.97 0-435.2 195.23-435.2 435.2s195.23 435.2 435.2 435.2c239.97 0 435.2-195.23 435.2-435.2s-195.23-435.2-435.2-435.2zM786.099 440.499l-204.8 204.8c-9.995 9.998-26.206 9.998-36.203 0-9.998-9.997-9.998-26.206 0-36.203l161.101-161.096h-526.997c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h526.997l-161.096-161.101c-9.998-9.995-9.998-26.206 0-36.203 4.997-4.997 11.547-7.496 18.099-7.496s13.102 2.499 18.099 7.501l204.8 204.8c10 9.997 10 26.202 0 36.198z" />
162
+ <glyph unicode="&#xe887;" glyph-name="chevron-up-circle" data-tags="chevron-up-circle" d="M142.464 766.338c-91.869-91.869-142.464-214.016-142.464-343.938s50.595-252.067 142.464-343.936 214.014-142.464 343.936-142.464 252.069 50.595 343.938 142.464 142.462 214.014 142.462 343.936-50.594 252.069-142.462 343.938-214.016 142.462-343.938 142.462-252.067-50.594-343.936-142.462zM921.6 422.4c0-239.97-195.23-435.2-435.2-435.2s-435.2 195.23-435.2 435.2c0 239.97 195.23 435.2 435.2 435.2s435.2-195.23 435.2-435.2zM768 345.6c0-6.552-2.499-13.102-7.499-18.102-9.997-9.997-26.206-9.997-36.203 0l-237.898 237.898-237.898-237.898c-9.998-9.997-26.206-9.997-36.205 0-9.997 9.998-9.997 26.206 0 36.205l256 256c9.997 9.998 26.206 9.998 36.203 0l256-256c5-5 7.499-11.55 7.499-18.102z" />
163
+ <glyph unicode="&#xe888;" glyph-name="chevron-down-circle" data-tags="chevron-down-circle" d="M830.336 78.462c91.869 91.869 142.464 214.016 142.464 343.938s-50.595 252.067-142.464 343.936-214.014 142.464-343.936 142.464-252.069-50.595-343.938-142.464-142.462-214.014-142.462-343.936 50.594-252.069 142.462-343.938 214.016-142.462 343.938-142.462 252.067 50.594 343.936 142.462zM51.2 422.4c0 239.97 195.23 435.2 435.2 435.2s435.2-195.23 435.2-435.2c0-239.97-195.23-435.2-435.2-435.2s-435.2 195.23-435.2 435.2zM204.8 499.2c0 6.552 2.499 13.102 7.499 18.102 9.997 9.997 26.206 9.997 36.203 0l237.898-237.898 237.898 237.898c9.998 9.997 26.206 9.997 36.205 0 9.997-9.998 9.997-26.206 0-36.205l-256-256c-9.997-9.998-26.206-9.998-36.203 0l-256 256c-5 5-7.499 11.55-7.499 18.102z" />
164
+ <glyph unicode="&#xe889;" glyph-name="chevron-left-circle" data-tags="chevron-left-circle" d="M142.462 766.336c91.869 91.869 214.016 142.464 343.938 142.464s252.067-50.595 343.936-142.464 142.464-214.014 142.464-343.936-50.595-252.069-142.464-343.938-214.014-142.462-343.936-142.462-252.069 50.594-343.938 142.462-142.462 214.016-142.462 343.938 50.594 252.067 142.462 343.936zM486.4-12.8c239.97 0 435.2 195.23 435.2 435.2s-195.23 435.2-435.2 435.2c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2zM563.2 140.8c6.552 0 13.102 2.499 18.102 7.499 9.997 9.997 9.997 26.206 0 36.203l-237.898 237.898 237.898 237.898c9.997 9.998 9.997 26.206 0 36.205-9.998 9.997-26.206 9.997-36.205 0l-256-256c-9.998-9.997-9.998-26.206 0-36.203l256-256c5-5 11.55-7.499 18.102-7.499z" />
165
+ <glyph unicode="&#xe88a;" glyph-name="chevron-right-circle" data-tags="chevron-right-circle" d="M830.338 766.336c-91.869 91.869-214.016 142.464-343.938 142.464s-252.067-50.595-343.936-142.464-142.464-214.014-142.464-343.936 50.595-252.069 142.464-343.938 214.014-142.462 343.936-142.462 252.069 50.594 343.938 142.462 142.462 214.016 142.462 343.938-50.594 252.067-142.462 343.936zM486.4-12.8c-239.97 0-435.2 195.23-435.2 435.2s195.23 435.2 435.2 435.2c239.97 0 435.2-195.23 435.2-435.2s-195.23-435.2-435.2-435.2zM409.6 140.8c-6.552 0-13.102 2.499-18.102 7.499-9.997 9.997-9.997 26.206 0 36.203l237.898 237.898-237.898 237.898c-9.997 9.998-9.997 26.206 0 36.205 9.998 9.997 26.206 9.997 36.205 0l256-256c9.998-9.997 9.998-26.206 0-36.203l-256-256c-5-5-11.55-7.499-18.102-7.499z" />
166
+ <glyph unicode="&#xe88b;" glyph-name="crop" data-tags="crop" d="M998.4 192h-153.6c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h153.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM640 192h-358.4c-14.138 0-25.6 11.461-25.6 25.6v358.4c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-332.8h332.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM281.6 755.2c-14.138 0-25.6 11.462-25.6 25.6v153.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-153.6c0-14.138-11.462-25.6-25.6-25.6zM742.4-64c-14.139 0-25.6 11.461-25.6 25.6v691.2h-691.2c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h716.8c14.139 0 25.6-11.462 25.6-25.6v-716.8c0-14.139-11.461-25.6-25.6-25.6z" />
167
+ <glyph unicode="&#xe88c;" glyph-name="frame-expand" data-tags="frame-expand" d="M947.2 601.6c-14.139 0-25.6 11.462-25.6 25.6v102.4c0 14.115-11.485 25.6-25.6 25.6h-102.4c-14.139 0-25.6 11.462-25.6 25.6s11.461 25.6 25.6 25.6h102.4c42.349 0 76.8-34.453 76.8-76.8v-102.4c0-14.138-11.461-25.6-25.6-25.6zM25.6 601.6c-14.138 0-25.6 11.462-25.6 25.6v102.4c0 42.347 34.453 76.8 76.8 76.8h102.4c14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6h-102.4c-14.115 0-25.6-11.485-25.6-25.6v-102.4c0-14.138-11.462-25.6-25.6-25.6zM179.2 38.4h-102.4c-42.347 0-76.8 34.451-76.8 76.8v102.4c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-14.115 11.485-25.6 25.6-25.6h102.4c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM896 38.4h-102.4c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h102.4c14.115 0 25.6 11.485 25.6 25.6v102.4c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-102.4c0-42.349-34.451-76.8-76.8-76.8z" />
168
+ <glyph unicode="&#xe88d;" glyph-name="frame-contract" data-tags="frame-contract" d="M742.4 499.2h-102.4c-42.349 0-76.8 34.451-76.8 76.8v102.4c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-102.4c0-14.115 11.485-25.6 25.6-25.6h102.4c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM332.8 499.2h-102.4c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h102.4c14.115 0 25.6 11.485 25.6 25.6v102.4c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-102.4c0-42.349-34.453-76.8-76.8-76.8zM588.8 140.8c-14.139 0-25.6 11.461-25.6 25.6v102.4c0 42.349 34.451 76.8 76.8 76.8h102.4c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6h-102.4c-14.115 0-25.6-11.485-25.6-25.6v-102.4c0-14.139-11.461-25.6-25.6-25.6zM384 140.8c-14.138 0-25.6 11.461-25.6 25.6v102.4c0 14.115-11.485 25.6-25.6 25.6h-102.4c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h102.4c42.347 0 76.8-34.451 76.8-76.8v-102.4c0-14.139-11.462-25.6-25.6-25.6z" />
169
+ <glyph unicode="&#xe88e;" glyph-name="layers" data-tags="layers" d="M512 345.6c-3.379 0-6.758 0.669-9.934 2.006l-486.4 204.8c-9.493 3.997-15.666 13.293-15.666 23.594s6.173 19.597 15.666 23.594l486.4 204.8c6.354 2.675 13.517 2.675 19.869 0l486.4-204.8c9.493-3.997 15.666-13.293 15.666-23.594s-6.173-19.597-15.666-23.594l-486.4-204.8c-3.176-1.338-6.555-2.006-9.934-2.006zM91.57 576l420.43-177.024 420.43 177.024-420.43 177.024-420.43-177.024zM512 192c-3.379 0-6.758 0.669-9.934 2.006l-486.4 204.8c-13.030 5.486-19.146 20.498-13.659 33.528s20.498 19.146 33.528 13.659l476.466-200.618 476.466 200.618c13.029 5.483 28.042-0.63 33.528-13.659 5.488-13.032-0.63-28.042-13.659-33.528l-486.4-204.8c-3.176-1.338-6.555-2.006-9.934-2.006zM512 38.4c-3.379 0-6.758 0.669-9.934 2.006l-486.4 204.8c-13.030 5.486-19.146 20.498-13.659 33.528s20.498 19.144 33.528 13.659l476.466-200.618 476.466 200.618c13.029 5.483 28.042-0.63 33.528-13.659 5.488-13.032-0.63-28.042-13.659-33.528l-486.4-204.8c-3.176-1.338-6.555-2.006-9.934-2.006z" />
170
+ <glyph unicode="&#xe88f;" glyph-name="funnel" data-tags="funnel" d="M830.966 790.672c-20.294 13.707-48.59 25.803-84.106 35.95-69.917 19.976-162.418 30.978-260.461 30.978-98.045 0-190.544-11.002-260.461-30.978-35.515-10.147-63.813-22.243-84.104-35.95-32.594-22.016-39.435-45.363-39.435-61.072v-25.6c0-21.894 16.451-58.026 32.701-82.4l250.398-375.598c12.838-19.259 24.101-56.456 24.101-79.602v-153.6c0-8.872 4.594-17.112 12.141-21.776 4.11-2.541 8.778-3.824 13.459-3.824 3.912 0 7.835 0.898 11.448 2.702l102.4 51.2c8.674 4.336 14.152 13.2 14.152 22.898v102.4c0 23.146 11.262 60.342 24.099 79.602l250.4 375.598c16.251 24.373 32.701 60.504 32.701 82.4v25.6c0 15.709-6.842 39.056-39.434 61.072zM240.005 777.394c65.47 18.706 152.974 29.006 246.395 29.006s180.925-10.301 246.394-29.006c70.533-20.154 86.406-41.798 86.406-47.794s-15.874-27.64-86.406-47.794c-65.469-18.706-152.973-29.006-246.394-29.006s-180.925 10.301-246.395 29.006c-70.531 20.154-86.405 41.798-86.405 47.794s15.874 27.64 86.405 47.794zM544.701 274.402c-18.338-27.504-32.701-74.946-32.701-108.002v-86.578l-51.2-25.6v112.178c0 33.056-14.363 80.496-32.701 108.002l-249.859 374.79c14.035-5.997 29.966-11.549 47.699-16.614 69.917-19.976 162.416-30.978 260.461-30.978 98.043 0 190.544 11.002 260.459 30.978 17.733 5.067 33.666 10.619 47.702 16.616l-249.861-374.792z" />
171
+ <glyph unicode="&#xe890;" glyph-name="text-format" data-tags="text-format" d="M844.8-12.8h-716.8c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h716.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM817.13 176.485l-131.562 306.978c-0.032 0.075-0.064 0.149-0.098 0.224l-175.539 409.598c-4.035 9.413-13.291 15.515-23.531 15.515s-19.496-6.102-23.531-15.515l-175.539-409.594c-0.034-0.078-0.067-0.155-0.099-0.232l-131.562-306.974c-5.568-12.995 0.451-28.045 13.446-33.614 12.992-5.57 28.045 0.451 33.614 13.445l125.008 291.685h317.325l125.008-291.685c4.16-9.707 13.61-15.523 23.542-15.522 3.365 0 6.784 0.667 10.072 2.077 12.995 5.568 19.016 20.619 13.445 33.614zM349.68 499.2l136.72 319.013 136.72-319.013h-273.44z" />
172
+ <glyph unicode="&#xe892;" glyph-name="text-size" data-tags="text-size" d="M356.331 125.285l-65.734 153.381c-0.030 0.072-0.061 0.144-0.093 0.216l-87.773 204.803c-4.035 9.413-13.291 15.515-23.531 15.515s-19.496-6.102-23.531-15.515l-87.771-204.803c-0.032-0.072-0.062-0.144-0.093-0.216l-65.736-153.381c-5.568-12.995 0.451-28.045 13.446-33.614 12.997-5.57 28.046 0.451 33.614 13.445l59.179 138.085h141.781l59.179-138.085c4.162-9.707 13.61-15.523 23.542-15.522 3.363 0 6.784 0.667 10.072 2.077 12.997 5.568 19.016 20.619 13.448 33.614zM130.251 294.4l48.949 114.213 48.949-114.213h-97.898zM1022.032 125.046l-106.669 256.003c-0.029 0.069-0.056 0.138-0.085 0.205l-149.246 358.192c-3.976 9.539-13.298 15.754-23.632 15.754s-19.656-6.214-23.632-15.754l-149.243-358.184c-0.032-0.075-0.061-0.149-0.093-0.222l-106.664-255.994c-5.438-13.051 0.733-28.038 13.784-33.478 13.048-5.435 28.040 0.734 33.477 13.784l100.104 240.248h264.533l100.102-240.246c4.098-9.832 13.616-15.76 23.642-15.76 3.282 0 6.618 0.634 9.835 1.974 13.053 5.44 19.224 20.427 13.787 33.478zM631.467 396.8l110.933 266.24 110.933-266.24h-221.866z" />
173
+ <glyph unicode="&#xe893;" glyph-name="bold" data-tags="bold" d="M512 499.2h-128c-14.138 0-25.6 11.461-25.6 25.6v153.6c0 14.138 11.462 25.6 25.6 25.6h128c56.464 0 102.4-45.936 102.4-102.4s-45.936-102.4-102.4-102.4zM409.6 550.4h102.4c28.232 0 51.2 22.968 51.2 51.2s-22.968 51.2-51.2 51.2h-102.4v-102.4zM563.2 192h-179.2c-14.138 0-25.6 11.461-25.6 25.6v153.6c0 14.139 11.462 25.6 25.6 25.6h179.2c56.464 0 102.4-45.936 102.4-102.4s-45.936-102.4-102.4-102.4zM409.6 243.2h153.6c28.232 0 51.2 22.968 51.2 51.2s-22.968 51.2-51.2 51.2h-153.6v-102.4zM563.2 38.4h-281.6c-42.347 0-76.8 34.451-76.8 76.8v665.6c0 42.347 34.453 76.8 76.8 76.8h230.4c141.16 0 256-114.842 256-256 0-42.208-10.328-83.355-30.035-120.251 51.886-48.382 81.235-115.346 81.235-186.949 0-141.16-114.84-256-256-256zM281.6 806.4c-14.115 0-25.6-11.485-25.6-25.6v-665.6c0-14.115 11.485-25.6 25.6-25.6h281.6c112.926 0 204.8 91.874 204.8 204.8 0 63.322-28.72 122.125-78.797 161.334-10.797 8.453-12.966 23.842-5.134 34.917 21.416 33.088 32.731 71.43 32.731 110.949 0 112.928-91.874 204.8-204.8 204.8h-230.4z" />
174
+ <glyph unicode="&#xe894;" glyph-name="italic" data-tags="italic" d="M793.6 857.6h-204.829c-0.070 0-0.142 0-0.213 0h-204.558c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h173.573l-143.362-716.8h-183.811c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h204.733c0.032 0 0.064-0.005 0.096-0.005 0.035 0 0.070 0.005 0.107 0.005h204.664c14.139 0 25.6 11.461 25.6 25.6s-11.461 25.6-25.6 25.6h-173.573l143.36 716.8h183.813c14.139 0 25.6 11.462 25.6 25.6s-11.461 25.6-25.6 25.6z" />
175
+ <glyph unicode="&#xe895;" glyph-name="underline" data-tags="underline" d="M742.4 38.4h-460.8c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h460.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM512 192c-141.158 0-256 114.84-256 256v384c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-384c0-112.926 91.872-204.8 204.8-204.8 112.926 0 204.8 91.874 204.8 204.8v384c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-384c0-141.16-114.84-256-256-256z" />
176
+ <glyph unicode="&#xe896;" glyph-name="strikethrough" data-tags="strikethrough" d="M844.8 857.6h-716.8c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h332.8v-230.4c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v230.4h332.8c14.139 0 25.6 11.462 25.6 25.6s-11.461 25.6-25.6 25.6zM486.4 38.4c-14.138 0-25.6 11.461-25.6 25.6v204.8c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-204.8c0-14.139-11.462-25.6-25.6-25.6zM947.2 345.6h-921.6c-14.138 0-25.6 11.461-25.6 25.6v102.4c0 14.139 11.462 25.6 25.6 25.6h921.6c14.139 0 25.6-11.461 25.6-25.6v-102.4c0-14.139-11.461-25.6-25.6-25.6zM51.2 396.8h870.4v51.2h-870.4v-51.2z" />
177
+ <glyph unicode="&#xe897;" glyph-name="highlight" data-tags="highlight" d="M1016.501 466.101c-9.997 9.998-26.206 9.998-36.203 0l-183.592-183.592c-29.944-29.944-78.669-29.944-108.613 0l-239.184 239.186c-14.426 14.426-22.37 33.712-22.37 54.306s7.944 39.88 22.37 54.306l183.592 183.594c9.998 9.997 9.998 26.206 0 36.203-9.997 9.998-26.206 9.998-36.203 0l-183.592-183.594c-24.096-24.096-37.366-56.238-37.366-90.509 0-14.605 2.432-28.818 7.064-42.192l-374.906-374.907c-4.8-4.8-7.498-11.312-7.498-18.101v-76.8c0-14.139 11.462-25.6 25.6-25.6h486.4c6.789 0 13.301 2.698 18.101 7.499l170.104 170.104c13.374-4.634 27.587-7.064 42.194-7.064 34.27 0 66.414 13.27 90.509 37.366l183.592 183.592c10 9.998 10 26.206 0.002 36.203zM501.397 89.6h-450.197v40.595l358.477 358.477c1-1.069 1.99-2.142 3.030-3.181l239.184-239.184c1.038-1.038 2.112-2.032 3.182-3.030l-153.677-153.677z" />
178
+ <glyph unicode="&#xe898;" glyph-name="text-align-left" data-tags="text-align-left" d="M896 704h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 550.4h-563.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 243.2h-563.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 89.6h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
179
+ <glyph unicode="&#xe899;" glyph-name="text-align-center" data-tags="text-align-center" d="M896 704h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM793.6 550.4h-563.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM793.6 243.2h-563.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 89.6h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
180
+ <glyph unicode="&#xe89a;" glyph-name="text-align-right" data-tags="text-align-right" d="M896 704h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM896 550.4h-563.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 243.2h-563.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h563.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 89.6h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
181
+ <glyph unicode="&#xe89b;" glyph-name="text-align-justify" data-tags="text-align-justify" d="M896 704h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM896 550.4h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 243.2h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 89.6h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z" />
182
+ <glyph unicode="&#xe89c;" glyph-name="line-spacing" data-tags="line-spacing" d="M947.2 704h-512c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM947.2 499.2h-512c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM947.2 294.4h-512c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM947.2 89.6h-512c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h512c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM263.498 261.301l-58.698-58.696v439.592l58.698-58.698c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.102 7.499c9.997 9.997 9.997 26.206 0 36.203l-102.4 102.4c-9.998 9.997-26.206 9.997-36.205 0l-102.4-102.4c-9.997-9.998-9.997-26.206 0-36.203 9.998-9.997 26.206-9.997 36.205 0l58.698 58.698v-439.592l-58.698 58.698c-9.998 9.997-26.206 9.997-36.205 0-9.997-9.997-9.997-26.206 0-36.203l102.4-102.4c5-5 11.55-7.499 18.102-7.499s13.102 2.499 18.102 7.499l102.4 102.4c9.997 9.997 9.997 26.206 0 36.203s-26.206 9.997-36.205-0.002z" />
183
+ <glyph unicode="&#xe89d;" glyph-name="indent-increase" data-tags="indent-increase" d="M896 704h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM896 550.4h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 243.2h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 89.6h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM127.997 243.2c-3.902 0-7.822 0.891-11.445 2.702-8.674 4.336-14.152 13.2-14.152 22.898v307.2c0 9.698 5.478 18.562 14.152 22.898 8.67 4.336 19.053 3.403 26.808-2.418l204.8-153.6c6.446-4.834 10.24-12.422 10.24-20.48s-3.794-15.645-10.24-20.48l-204.8-153.6c-4.517-3.387-9.923-5.12-15.363-5.12zM153.6 524.8v-204.8l136.533 102.4-136.533 102.4z" />
184
+ <glyph unicode="&#xe89e;" glyph-name="indent-decrease" data-tags="indent-decrease" d="M896 704h-768c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6zM896 550.4h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 396.8h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 243.2h-409.6c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h409.6c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM896 89.6h-768c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h768c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM332.803 243.2c-5.44 0-10.846 1.731-15.363 5.12l-204.8 153.6c-6.446 4.834-10.24 12.422-10.24 20.48s3.794 15.645 10.24 20.48l204.8 153.6c7.758 5.819 18.136 6.757 26.808 2.418 8.674-4.336 14.152-13.2 14.152-22.898v-307.2c0-9.698-5.478-18.562-14.152-22.898-3.621-1.81-7.542-2.702-11.445-2.702zM170.667 422.4l136.533-102.4v204.8l-136.533-102.4z" />
185
+ <glyph unicode="&#xe8a2;" glyph-name="page-break" data-tags="page-break" d="M896 499.2h-768c-42.347 0-76.8 34.453-76.8 76.8v307.2c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-307.2c0-14.115 11.485-25.6 25.6-25.6h768c14.115 0 25.6 11.485 25.6 25.6v307.2c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-307.2c0-42.347-34.451-76.8-76.8-76.8zM76.8 396.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM230.4 396.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM384 396.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6zM537.6 396.8h-51.2c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM691.2 396.8h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM844.8 396.8h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM998.4 396.8h-51.2c-14.139 0-25.6 11.461-25.6 25.6s11.461 25.6 25.6 25.6h51.2c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6zM947.2-64c-14.139 0-25.6 11.461-25.6 25.6v307.2c0 14.115-11.485 25.6-25.6 25.6h-768c-14.115 0-25.6-11.485-25.6-25.6v-307.2c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6v307.2c0 42.349 34.453 76.8 76.8 76.8h768c42.349 0 76.8-34.451 76.8-76.8v-307.2c0-14.139-11.461-25.6-25.6-25.6z" />
186
+ <glyph unicode="&#xe8a5;" glyph-name="hand" data-tags="hand" d="M870.4 755.2c-18.645 0-36.126-5.034-51.2-13.776v64.976c0 56.464-45.936 102.4-102.4 102.4-21.072 0-40.674-6.403-56.973-17.358-14.008 39.88-52.021 68.558-96.627 68.558s-82.619-28.678-96.627-68.558c-16.299 10.955-35.901 17.358-56.973 17.358-56.464 0-102.4-45.936-102.4-102.4v-377.52l-68.909 119.446c-13.366 24.326-35.163 41.645-61.405 48.782-25.56 6.949-52.146 3.272-74.858-10.357-46.461-27.877-64.138-90.819-39.442-140.37 1.514-3.101 34.213-70.024 136.17-273.938 48.010-96.021 100.704-164.653 156.619-203.994 43.896-30.886 74.195-32.451 79.824-32.451h256c43.573 0 84.085 14.166 120.41 42.109 34.146 26.266 63.782 64.232 88.088 112.842 47.824 95.65 73.102 227.966 73.102 382.65v179.2c0 56.464-45.936 102.4-102.4 102.4zM921.6 473.6c0-146.774-23.41-271.174-67.698-359.752-28.888-57.776-80.565-126.648-162.702-126.648h-255.49c-2.016 0.173-23.546 2.565-56.067 26.894-32.41 24.246-82.155 75.373-135.091 181.246-103.789 207.579-135.685 272.947-135.995 273.584-0.037 0.077-0.075 0.154-0.114 0.23-12.87 25.742-3.744 59.49 19.928 73.694 10.645 6.387 23.102 8.11 35.080 4.853 12.766-3.47 23.438-12.059 30.051-24.182 0.098-0.179 0.198-0.357 0.301-0.534l79.899-138.498c16.349-29.842 34.723-42.405 54.622-37.328 19.955 5.088 30.075 25.019 30.075 59.24v400c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-332.8c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v384c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-384c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v332.8c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-384c0-14.139 11.461-25.6 25.6-25.6s25.6 11.461 25.6 25.6v230.4c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-179.2z" />
187
+ <glyph unicode="&#xe8a6;" glyph-name="pointer-up" data-tags="pointer-up" d="M870.4 550.4c-21.072 0-40.674-6.403-56.973-17.358-14.008 39.88-52.021 68.558-96.627 68.558-21.072 0-40.674-6.403-56.973-17.358-14.008 39.88-52.021 68.558-96.627 68.558-18.645 0-36.125-5.034-51.2-13.776v167.376c0 56.464-45.936 102.4-102.4 102.4s-102.4-45.936-102.4-102.4v-377.52l-68.909 119.446c-13.366 24.326-35.163 41.645-61.405 48.782-25.56 6.949-52.146 3.272-74.858-10.357-46.461-27.877-64.138-90.819-39.442-140.37 1.514-3.101 34.213-70.024 136.17-273.938 48.010-96.021 100.704-164.653 156.619-203.994 43.896-30.886 74.195-32.451 79.824-32.451h256c43.41 0 83.571 12.566 119.371 37.352 34.603 23.957 64.469 58.984 88.768 104.11 48.059 89.251 73.461 217.381 73.461 370.538 0 56.464-45.936 102.4-102.4 102.4zM854.259 101.738c-28.134-52.251-79.262-114.538-163.059-114.538h-255.49c-2.016 0.173-23.546 2.565-56.067 26.894-32.41 24.246-82.155 75.373-135.091 181.246-103.789 207.579-135.685 272.947-135.995 273.584-0.037 0.077-0.075 0.154-0.114 0.23-12.87 25.742-3.744 59.49 19.928 73.694 10.645 6.387 23.102 8.11 35.080 4.853 12.766-3.47 23.438-12.059 30.051-24.182 0.098-0.179 0.198-0.357 0.301-0.534l79.899-138.498c16.349-29.842 34.723-42.405 54.622-37.328 19.955 5.088 30.075 25.019 30.075 59.24v400c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-332.8c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v76.8c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-76.8c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v25.6c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2v-76.8c0-14.139 11.461-25.6 25.6-25.6s25.6 11.461 25.6 25.6v25.6c0 28.232 22.968 51.2 51.2 51.2s51.2-22.968 51.2-51.2c0-144.712-23.286-264.448-67.341-346.262z" />
188
+ <glyph unicode="&#xe8a7;" glyph-name="pointer-right" data-tags="pointer-right" d="M614.4 89.6c0 21.072-6.403 40.674-17.358 56.973 39.88 14.008 68.558 52.021 68.558 96.627 0 21.072-6.403 40.674-17.358 56.973 39.88 14.008 68.558 52.021 68.558 96.627 0 18.645-5.034 36.125-13.776 51.2h167.376c56.464 0 102.4 45.936 102.4 102.4s-45.936 102.4-102.4 102.4h-377.52l119.446 68.909c24.326 13.366 41.645 35.163 48.782 61.405 6.949 25.56 3.272 52.146-10.357 74.858-27.877 46.461-90.819 64.138-140.37 39.442-3.101-1.514-70.024-34.213-273.938-136.17-96.021-48.010-164.653-100.704-203.994-156.619-30.886-43.896-32.451-74.195-32.451-79.824v-256c0-43.41 12.566-83.571 37.352-119.371 23.957-34.603 58.984-64.469 104.11-88.768 89.251-48.059 217.381-73.461 370.538-73.461 56.464 0 102.4 45.936 102.4 102.4zM165.738 105.741c-52.251 28.134-114.538 79.262-114.538 163.059v255.49c0.173 2.016 2.565 23.546 26.894 56.067 24.246 32.41 75.373 82.155 181.246 135.091 207.579 103.789 272.947 135.685 273.584 135.995 0.077 0.037 0.154 0.075 0.23 0.114 25.742 12.87 59.49 3.744 73.694-19.928 6.387-10.645 8.11-23.102 4.853-35.080-3.47-12.766-12.059-23.438-24.182-30.051-0.179-0.098-0.357-0.198-0.534-0.301l-138.498-79.899c-29.842-16.349-42.405-34.723-37.328-54.622 5.088-19.955 25.019-30.075 59.24-30.075h400c28.232 0 51.2-22.968 51.2-51.2s-22.968-51.2-51.2-51.2h-332.8c-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6h76.8c28.232 0 51.2-22.968 51.2-51.2s-22.968-51.2-51.2-51.2h-76.8c-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6h25.6c28.232 0 51.2-22.968 51.2-51.2s-22.968-51.2-51.2-51.2h-76.8c-14.139 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6h25.6c28.232 0 51.2-22.968 51.2-51.2s-22.968-51.2-51.2-51.2c-144.712 0-264.448 23.286-346.262 67.341z" />
189
+ <glyph unicode="&#xe8a8;" glyph-name="pointer-down" data-tags="pointer-down" d="M870.4 345.6c-21.072 0-40.674 6.403-56.973 17.358-14.008-39.88-52.021-68.558-96.627-68.558-21.072 0-40.674 6.403-56.973 17.358-14.008-39.88-52.021-68.558-96.627-68.558-18.645 0-36.125 5.034-51.2 13.776v-167.376c0-56.464-45.936-102.4-102.4-102.4s-102.4 45.936-102.4 102.4v377.52l-68.909-119.446c-13.366-24.326-35.163-41.645-61.405-48.782-25.56-6.949-52.146-3.272-74.858 10.357-46.461 27.877-64.138 90.819-39.442 140.37 1.514 3.101 34.213 70.024 136.17 273.938 48.010 96.021 100.704 164.653 156.619 203.994 43.896 30.886 74.195 32.451 79.824 32.451h256c43.41 0 83.571-12.566 119.371-37.352 34.603-23.957 64.469-58.984 88.768-104.11 48.059-89.251 73.461-217.381 73.461-370.538 0-56.464-45.936-102.4-102.4-102.4zM854.259 794.262c-28.134 52.251-79.262 114.538-163.059 114.538h-255.49c-2.016-0.173-23.546-2.565-56.067-26.894-32.41-24.246-82.155-75.373-135.091-181.246-103.789-207.579-135.685-272.947-135.995-273.584-0.037-0.077-0.075-0.154-0.114-0.23-12.87-25.742-3.744-59.49 19.928-73.694 10.645-6.387 23.102-8.11 35.080-4.853 12.766 3.47 23.438 12.059 30.051 24.182 0.098 0.179 0.198 0.357 0.301 0.534l79.899 138.498c16.349 29.842 34.723 42.405 54.622 37.328 19.955-5.088 30.075-25.019 30.075-59.24v-400c0-28.232 22.968-51.2 51.2-51.2s51.2 22.968 51.2 51.2v332.8c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-76.8c0-28.232 22.968-51.2 51.2-51.2s51.2 22.968 51.2 51.2v76.8c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6v-25.6c0-28.232 22.968-51.2 51.2-51.2s51.2 22.968 51.2 51.2v76.8c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-25.6c0-28.232 22.968-51.2 51.2-51.2s51.2 22.968 51.2 51.2c0 144.712-23.286 264.448-67.341 346.262z" />
190
+ <glyph unicode="&#xe8a9;" glyph-name="pointer-left" data-tags="pointer-left" d="M409.6 89.6c0 21.072 6.403 40.674 17.358 56.973-39.88 14.008-68.558 52.021-68.558 96.627 0 21.072 6.403 40.674 17.358 56.973-39.88 14.008-68.558 52.021-68.558 96.627 0 18.645 5.034 36.125 13.776 51.2h-167.376c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4h377.52l-119.446 68.909c-24.326 13.366-41.645 35.163-48.782 61.405-6.949 25.56-3.272 52.146 10.357 74.858 27.877 46.461 90.819 64.138 140.37 39.442 3.101-1.514 70.024-34.213 273.938-136.17 96.021-48.010 164.653-100.704 203.994-156.619 30.886-43.896 32.451-74.195 32.451-79.824v-256c0-43.41-12.566-83.571-37.352-119.371-23.957-34.603-58.984-64.469-104.11-88.768-89.251-48.059-217.381-73.461-370.538-73.461-56.464 0-102.4 45.936-102.4 102.4zM858.262 105.741c52.251 28.134 114.538 79.262 114.538 163.059v255.49c-0.173 2.016-2.565 23.546-26.894 56.067-24.246 32.41-75.373 82.155-181.246 135.091-207.579 103.789-272.947 135.685-273.584 135.995-0.077 0.037-0.154 0.075-0.23 0.114-25.742 12.87-59.49 3.744-73.694-19.928-6.387-10.645-8.11-23.102-4.853-35.080 3.47-12.766 12.059-23.438 24.182-30.051 0.179-0.098 0.357-0.198 0.534-0.301l138.498-79.899c29.842-16.349 42.405-34.723 37.328-54.622-5.088-19.955-25.019-30.075-59.24-30.075h-400c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2h332.8c14.138 0 25.6-11.462 25.6-25.6s-11.462-25.6-25.6-25.6h-76.8c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2h76.8c14.138 0 25.6-11.461 25.6-25.6s-11.462-25.6-25.6-25.6h-25.6c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2h76.8c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6h-25.6c-28.232 0-51.2-22.968-51.2-51.2s22.968-51.2 51.2-51.2c144.712 0 264.448 23.286 346.262 67.341z" />
191
+ <glyph unicode="&#xe900;" glyph-name="degree-image" data-tags="degree-image" horiz-adv-x="1229" d="M1228.8 365.58c0 74.927-92.41 142.361-252.254 184.82v272.234c0 74.927-62.439 137.366-137.366 137.366h-457.054c-74.927 0-137.366-62.439-137.366-137.366v-274.732c-154.849-42.459-244.761-109.893-244.761-182.322 0-74.927 89.912-139.863 244.761-182.322v-109.893c0-74.927 62.439-137.366 137.366-137.366h454.556c74.927 0 137.366 62.439 137.366 137.366v107.395c154.849 39.961 254.751 107.395 254.751 184.82zM24.976 365.58c0 59.941 82.42 117.385 219.785 157.346v-314.693c-137.366 39.961-219.785 97.405-219.785 157.346zM949.073 73.366c0-62.439-49.951-112.39-112.39-112.39h-454.556c-62.439 0-112.39 49.951-112.39 112.39v749.268c0 62.439 49.951 112.39 112.39 112.39h454.556c62.439 0 112.39-49.951 112.39-112.39v-282.224c0 0 0-2.498 0-2.498v-339.668c-89.912-22.478-199.805-34.966-314.693-37.463l47.454 47.454c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-77.424-77.424 77.424-77.424c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-47.454 47.454c117.385 2.498 224.78 14.985 314.693 37.463v-99.902zM974.049 205.737v319.688c142.361-39.961 227.278-97.405 227.278-159.844 2.498-64.937-87.415-122.38-227.278-159.844zM861.659 403.044v119.883c0 17.483-7.493 34.966-19.98 49.951l-69.932 74.927-137.366-169.834-99.902 84.917-164.839-157.346c-7.493-7.493-9.99-19.98-7.493-29.971 4.995-9.99 14.985-17.483 27.473-17.483h419.59c32.468-4.995 52.449 17.483 52.449 44.956zM389.62 380.566c0 2.498 0 2.498 0 4.995l147.356 142.361 102.4-84.917 134.868 167.337 49.951-54.946c7.493-9.99 12.488-19.98 12.488-32.468v-119.883c0-12.488-9.99-24.976-24.976-24.976h-419.59c0 0-2.498 2.498-2.498 2.498zM474.537 597.854c34.966 0 64.937 29.971 64.937 64.937s-29.971 62.439-64.937 62.439c-34.966 0-64.937-29.971-64.937-64.937s29.971-62.439 64.937-62.439zM474.537 700.254c22.478 0 39.961-17.483 39.961-39.961s-17.483-39.961-39.961-39.961-39.961 17.483-39.961 39.961 17.483 39.961 39.961 39.961z" />
192
+ <glyph unicode="&#xe901;" glyph-name="accordion" data-tags="accordion" horiz-adv-x="1196" d="M1086.439 865.093c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-44.956-42.459-42.459 42.459c-4.995 4.995-12.488 4.995-17.483 0s-4.995-12.488 0-17.483l62.439-62.439 59.941 62.439zM774.244 530.42c37.463 0 69.932 29.971 69.932 69.932s-29.971 69.932-69.932 69.932-69.932-29.971-69.932-69.932 32.468-69.932 69.932-69.932zM774.244 642.81c24.976 0 44.956-19.98 44.956-44.956s-19.98-42.459-44.956-42.459-44.956 19.98-44.956 44.956 19.98 42.459 44.956 42.459zM1108.917 960h-671.844c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h671.844c34.966 0 62.439-27.473 62.439-62.439v-117.385h-1146.38v117.385c0 34.966 27.473 62.439 62.439 62.439h142.361c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-9.99 12.488h-144.859c-47.454 0-87.415-39.961-87.415-87.415v-524.488c0-2.498 0-2.498 0-4.995 0 0 0-2.498 0-2.498v-152.351c0-2.498 0-4.995 0-7.493s0-2.498 0-4.995v-152.351c0-47.454 39.961-87.415 87.415-87.415h766.751c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-766.751c-34.966 0-62.439 27.473-62.439 62.439v104.898c14.985-17.483 37.463-27.473 62.439-27.473h187.317c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-187.317c-34.966 0-62.439 27.473-62.439 62.439v97.405c14.985-14.985 37.463-24.976 62.439-24.976h626.888c0 0 0 0 0 0h394.615c24.976 0 47.454 9.99 62.439 27.473v-97.405c0-34.966-27.473-62.439-62.439-62.439h-674.341c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h674.341c24.976 0 47.454 9.99 62.439 27.473v-104.898c0-34.966-27.473-62.439-62.439-62.439h-82.42c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h82.42c47.454 0 87.415 39.961 87.415 87.415v152.351c0 2.498 0 2.498 0 4.995s0 4.995 0 7.493v152.351c0 0 0 2.498 0 2.498 0 2.498 0 2.498 0 4.995v521.99c0 47.454-37.463 87.415-87.415 87.415zM1108.917 285.659h-404.605c0 0 0 0 0 0h-32.468l174.829 167.337 112.39-94.907 147.356 182.322 69.932-74.927v-117.385c-4.995-32.468-32.468-62.439-67.434-62.439zM1171.356 502.946l-69.932 77.424-149.854-184.82-109.893 92.41-209.795-199.805h-544.468c-34.966-2.498-62.439 24.976-62.439 59.941v382.127h1146.38v-227.278z" />
193
+ <glyph unicode="&#xe902;" glyph-name="animated-flip-box" data-tags="animated-flip-box" horiz-adv-x="1229" d="M447.063 542.907h304.702c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-304.702c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488zM447.063 435.512h229.776c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-9.99 12.488h-229.776c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 9.99-12.488zM601.912 340.605c0 7.493-4.995 12.488-12.488 12.488h-142.361c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h142.361c7.493 0 12.488 4.995 12.488 12.488zM1228.8 365.58c0 74.927-92.41 142.361-252.254 184.82v272.234c0 74.927-62.439 137.366-137.366 137.366h-457.054c-74.927 0-137.366-62.439-137.366-137.366v-274.732c-154.849-42.459-244.761-109.893-244.761-182.322 0-74.927 89.912-139.863 244.761-182.322v-109.893c0-74.927 62.439-137.366 137.366-137.366h454.556c74.927 0 137.366 62.439 137.366 137.366v107.395c154.849 39.961 254.751 107.395 254.751 184.82zM24.976 365.58c0 59.941 82.42 117.385 219.785 157.346v-314.693c-137.366 39.961-219.785 97.405-219.785 157.346zM949.073 73.366c0-62.439-49.951-112.39-112.39-112.39h-454.556c-62.439 0-112.39 49.951-112.39 112.39v749.268c0 62.439 49.951 112.39 112.39 112.39h454.556c62.439 0 112.39-49.951 112.39-112.39v-282.224c0 0 0-2.498 0-2.498v-339.668c-89.912-22.478-199.805-34.966-314.693-37.463l47.454 47.454c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-77.424-77.424 77.424-77.424c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-47.454 47.454c117.385 2.498 224.78 14.985 314.693 37.463v-99.902zM974.049 205.737v319.688c142.361-39.961 227.278-97.405 227.278-159.844 2.498-64.937-87.415-122.38-227.278-159.844z" />
194
+ <glyph unicode="&#xe903;" glyph-name="animated-text" data-tags="animated-text" horiz-adv-x="1229" d="M1228.8 365.58c0 74.927-92.41 142.361-252.254 184.82v272.234c0 74.927-62.439 137.366-137.366 137.366h-457.054c-74.927 0-137.366-62.439-137.366-137.366v-274.732c-154.849-42.459-244.761-109.893-244.761-182.322 0-74.927 89.912-139.863 244.761-182.322v-109.893c0-74.927 62.439-137.366 137.366-137.366h454.556c74.927 0 137.366 62.439 137.366 137.366v107.395c154.849 39.961 254.751 107.395 254.751 184.82zM24.976 365.58c0 59.941 82.42 117.385 219.785 157.346v-314.693c-137.366 39.961-219.785 97.405-219.785 157.346zM949.073 73.366c0-62.439-49.951-112.39-112.39-112.39h-454.556c-62.439 0-112.39 49.951-112.39 112.39v749.268c0 62.439 49.951 112.39 112.39 112.39h454.556c62.439 0 112.39-49.951 112.39-112.39v-282.224c0 0 0-2.498 0-2.498v-339.668c-89.912-22.478-199.805-34.966-314.693-37.463l47.454 47.454c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-77.424-77.424 77.424-77.424c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-47.454 47.454c117.385 2.498 224.78 14.985 314.693 37.463v-99.902zM974.049 205.737v319.688c142.361-39.961 227.278-97.405 227.278-159.844 2.498-64.937-87.415-122.38-227.278-159.844zM656.859 400.546c0-12.488 4.995-22.478 7.493-32.468h37.463c-4.995 9.99-7.493 19.98-9.99 32.468-2.498 9.99-2.498 37.463-2.498 77.424v59.941c0 24.976-2.498 42.459-4.995 54.946s-12.488 22.478-24.976 32.468c-12.488 7.493-29.971 12.488-52.449 12.488-29.971 0-49.951-7.493-67.434-19.98s-24.976-32.468-29.971-62.439l34.966-4.995c4.995 19.98 9.99 32.468 17.483 39.961s19.98 9.99 37.463 9.99c19.98 0 32.468-4.995 42.459-14.985 7.493-7.493 9.99-19.98 9.99-37.463v-12.488c-12.488-4.995-34.966-12.488-64.937-14.985-22.478-2.498-37.463-7.493-49.951-14.985s-19.98-14.985-24.976-27.473c-7.493-12.488-9.99-24.976-9.99-39.961 0-22.478 7.493-39.961 19.98-54.946 12.488-12.488 32.468-19.98 54.946-19.98 14.985 0 27.473 2.498 39.961 9.99 14.985 4.995 27.473 14.985 39.961 27.473zM554.459 410.537c-7.493 7.493-12.488 17.483-12.488 29.971 0 7.493 2.498 14.985 4.995 22.478 2.498 4.995 7.493 9.99 14.985 14.985 7.493 2.498 17.483 7.493 32.468 9.99 24.976 4.995 44.956 9.99 59.941 17.483v-19.98c0-22.478-2.498-37.463-7.493-49.951s-12.488-19.98-24.976-27.473c-9.99-7.493-22.478-9.99-34.966-9.99-14.985 0-24.976 4.995-32.468 12.488z" />
195
+ <glyph unicode="&#xe904;" glyph-name="brands" data-tags="brands" d="M731.785 730.224c37.463 0 67.434 29.971 67.434 67.434s-29.971 67.434-67.434 67.434-67.434-29.971-67.434-67.434c0-37.463 29.971-67.434 67.434-67.434zM731.785 837.62c22.478 0 42.459-17.483 42.459-42.459 0-22.478-17.483-42.459-42.459-42.459s-42.459 17.483-42.459 42.459c0 24.976 19.98 42.459 42.459 42.459zM412.098 283.161c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-194.81 194.81c-4.995 4.995-12.488 4.995-17.483 0s-4.995-12.488 0-17.483l192.312-194.81zM314.693 248.195c2.498 0 7.493 0 9.99 2.498 4.995 4.995 4.995 12.488 0 17.483l-119.883 119.883c-4.995 4.995-12.488 4.995-17.483 0s-4.995-12.488 0-17.483l119.883-119.883c2.498-2.498 4.995-2.498 7.493-2.498zM1021.502 695.259c0 72.429-57.444 132.371-129.873 134.868-2.498 72.429-62.439 129.873-137.366 129.873h-232.273c-37.463 0-72.429-14.985-97.405-39.961l-384.624-387.122c-24.976-24.976-39.961-59.941-39.961-97.405s14.985-72.429 39.961-97.405l234.771-234.771c2.498-2.498 4.995-4.995 9.99-7.493 0-2.498 2.498-2.498 2.498-4.995l117.385-117.385c24.976-24.976 59.941-39.961 97.405-39.961 0 0 0 0 0 0 37.463 0 72.429 14.985 97.405 39.961l384.624 387.122c24.976 24.976 39.961 62.439 39.961 97.405l-2.498 237.268zM57.444 358.088c-22.478 22.478-32.468 49.951-32.468 79.922s12.488 57.444 32.468 79.922l387.122 384.624c22.478 22.478 49.951 32.468 79.922 32.468h232.273c62.439 0 112.39-49.951 112.39-112.39l2.498-234.771c0-29.971-12.488-59.941-32.468-79.922l-387.122-384.624c-22.478-22.478-49.951-32.468-79.922-32.468 0 0 0 0 0 0-29.971 0-57.444 12.488-79.922 32.468l-234.771 234.771zM966.556 378.068l-387.122-384.624c-22.478-22.478-49.951-32.468-79.922-32.468 0 0 0 0 0 0-29.971 0-57.444 12.488-79.922 32.468l-69.932 72.429c7.493-2.498 14.985-2.498 22.478-2.498 0 0 0 0 0 0 37.463 0 72.429 14.985 97.405 39.961l384.624 384.624c24.976 24.976 39.961 62.439 39.961 97.405l-2.498 217.288c57.444-4.995 102.4-52.449 104.898-109.893l2.498-232.273c0-29.971-12.488-59.941-32.468-82.42zM454.556 517.932h29.971c0 0 2.498 0 2.498-2.498l14.985-24.976c4.995-7.493 14.985-12.488 22.478-12.488 0 0 2.498 0 2.498 0 9.99 0 19.98 7.493 22.478 17.483l9.99 27.473c0 0 0 2.498 2.498 2.498l27.473 7.493c9.99 2.498 17.483 9.99 19.98 19.98s-2.498 19.98-9.99 27.473l-22.478 17.483c0 0 0 2.498 0 2.498l2.498 29.971c0 9.99-4.995 19.98-14.985 24.976s-19.98 4.995-27.473-2.498l-24.976-14.985c0 0-2.498 0-2.498 0l-27.473 9.99c-9.99 4.995-19.98 2.498-29.971-4.995-7.493-7.493-9.99-17.483-7.493-27.473l7.493-29.971-19.98-22.478c-7.493-7.493-7.493-19.98-4.995-29.971 7.493-7.493 17.483-14.985 27.473-14.985zM454.556 547.902l17.483 22.478c4.995 7.493 7.493 14.985 4.995 24.976l-7.493 27.473c0 0 0 2.498 0 2.498s0 0 2.498 0c0 0 0 0 0 0l27.473-9.99c7.493-2.498 17.483-2.498 24.976 2.498l24.976 14.985h2.498c0 0 2.498 0 0-2.498l-2.498-29.971c0-9.99 2.498-17.483 9.99-22.478l22.478-17.483c0 0 0-2.498 0-2.498s0-2.498-2.498-2.498l-27.473-7.493c-9.99-2.498-14.985-9.99-19.98-17.483l-9.99-27.473c0 0 0-2.498-2.498-2.498 0 0-2.498 0-2.498 0l-14.985 24.976c-4.995 7.493-12.488 12.488-22.478 12.488h-29.971c0 0-2.498 0-2.498 2.498 4.995 4.995 4.995 7.493 7.493 7.493z" />
196
+ <glyph unicode="&#xe905;" glyph-name="business-hour" data-tags="business-hour" horiz-adv-x="480" d="M417.093 205.737h-19.98c7.493 9.99 12.488 22.478 12.488 37.463v247.259c0 34.966-27.473 62.439-62.439 62.439h-284.722c-34.966 0-62.439-27.473-62.439-62.439v-247.259c0-34.966 27.473-62.439 62.439-62.439h7.493v-244.761h274.732v77.424h72.429c34.966 0 62.439 27.473 62.439 62.439v67.434c0 34.966-27.473 62.439-62.439 62.439zM319.688-39.024h-99.902v294.712c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-294.712h-99.902v464.546c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-217.288h-7.493c-19.98 0-37.463 17.483-37.463 37.463v247.259c0 19.98 17.483 37.463 37.463 37.463h287.22c19.98 0 37.463-17.483 37.463-37.463v-247.259c0-19.98-17.483-37.463-37.463-37.463h-4.995v217.288c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-217.288h-22.478c-34.966 0-62.439-27.473-62.439-62.439v-67.434c0-34.966 27.473-62.439 62.439-62.439h22.478v-54.946zM454.556 78.361c0-19.98-17.483-37.463-37.463-37.463h-119.883c-19.98 0-37.463 17.483-37.463 37.463v67.434c0 19.98 17.483 37.463 37.463 37.463h119.883c19.98 0 37.463-17.483 37.463-37.463v-67.434zM204.8 590.361c102.4 0 184.82 82.42 184.82 184.82s-82.42 184.82-184.82 184.82-184.82-82.42-184.82-184.82 82.42-184.82 184.82-184.82zM204.8 935.024c87.415 0 159.844-72.429 159.844-159.844s-72.429-159.844-159.844-159.844-159.844 69.932-159.844 159.844 72.429 159.844 159.844 159.844zM304.702 737.717c0 7.493-4.995 12.488-12.488 12.488h-89.912v114.888c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-139.863h114.888c7.493 0 12.488 4.995 12.488 12.488z" />
197
+ <glyph unicode="&#xe906;" glyph-name="button" data-tags="button" horiz-adv-x="1636" d="M1396.622 661.333c0 164.978-133.689 298.667-298.667 298.667h-796.444c-167.822 0-301.511-133.689-301.511-298.667s133.689-301.511 298.667-301.511c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222c-150.756 0-270.222 122.311-270.222 273.067 0 147.911 122.311 270.222 270.222 270.222h796.444c150.756 0 270.222-122.311 270.222-270.222s-122.311-270.222-270.222-270.222h-614.4c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h617.244c164.978-2.844 298.667 130.844 298.667 298.667zM529.067 704h338.489c8.533 0 14.222 8.533 14.222 14.222s-5.689 14.222-14.222 14.222h-338.489c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222zM529.067 587.378h167.822c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222h-167.822c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222zM1541.689 132.267c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222l-133.689-2.844 2.844-133.689c0-8.533 5.689-14.222 14.222-14.222 0 0 0 0 0 0 8.533 0 14.222 5.689 14.222 14.222l-2.844 105.244 105.244 2.844zM1632.711-38.4l-133.689 128c-5.689 5.689-14.222 5.689-19.911 0s-5.689-14.222 0-19.911l133.689-128c2.844-5.689 5.689-5.689 8.533-5.689s8.533 2.844 11.378 5.689c5.689 5.689 5.689 14.222 0 19.911zM1464.889 211.911c8.533 0 14.222 5.689 14.222 14.222v28.444c0 8.533-5.689 14.222-14.222 14.222s-14.222-5.689-14.222-14.222v-28.444c0-8.533 8.533-14.222 14.222-14.222zM1388.089 257.422c-2.844 8.533-11.378 11.378-17.067 8.533s-11.378-11.378-8.533-17.067l14.222-39.822c2.844-5.689 8.533-8.533 14.222-8.533 2.844 0 2.844 0 5.689 0 8.533 2.844 11.378 11.378 8.533 17.067l-17.067 39.822zM1345.422 166.4l-36.978 11.378c-8.533 2.844-14.222-2.844-17.067-8.533-2.844-8.533 2.844-14.222 8.533-17.067l36.978-11.378c2.844 0 2.844 0 5.689 0 5.689 0 11.378 2.844 14.222 8.533 0 5.689-2.844 14.222-11.378 17.067zM1336.889 92.444h-31.289c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h31.289c0 0 0 0 0 0 8.533 0 14.222 5.689 14.222 14.222 0 5.689-5.689 14.222-14.222 14.222z" />
198
+ <glyph unicode="&#xe907;" glyph-name="carousel" data-tags="carousel" horiz-adv-x="3243" d="M228.302 802.203c-6.715 6.715-16.787 6.715-23.502 0l-204.8-181.298 204.8-184.656c3.357-3.357 6.715-3.357 10.072-3.357s10.072 3.357 13.43 6.715c6.715 6.715 6.715 16.787 0 23.502l-177.941 157.797 177.941 157.797c6.715 6.715 6.715 16.787 0 23.502zM3035.069 805.561c-6.715 6.715-16.787 6.715-23.502 0s-6.715-16.787 0-23.502l177.941-157.797-177.941-157.797c-6.715-6.715-6.715-16.787 0-23.502 3.357-3.357 6.715-6.715 13.43-6.715 3.357 0 6.715 0 10.072 3.357l204.8 184.656-204.8 181.298zM936.708 960h-345.81c-94.007 0-167.869-73.862-167.869-167.869v-345.81c0-94.007 73.862-167.869 167.869-167.869h345.81c94.007 0 167.869 73.862 167.869 167.869v345.81c0 94.007-77.22 167.869-167.869 167.869zM936.708 312.026h-345.81c-36.931 0-67.148 13.43-90.649 36.931l198.085 188.013 127.58-107.436 164.511 204.8 77.22-87.292c0 0 0 0 3.357 0v-100.721c0-73.862-60.433-134.295-134.295-134.295zM1071.003 600.761l-80.577 90.649-167.869-208.157-124.223 104.079-218.23-208.157c-13.43 20.144-20.144 47.003-20.144 73.862v339.095c0 73.862 60.433 134.295 134.295 134.295h342.452c73.862 0 134.295-60.433 134.295-134.295v-191.37zM621.115 788.774c-43.646 0-80.577-36.931-80.577-80.577s36.931-80.577 80.577-80.577 80.577 36.931 80.577 80.577c0 43.646-36.931 80.577-80.577 80.577zM621.115 657.836c-26.859 0-47.003 20.144-47.003 47.003s20.144 47.003 47.003 47.003 47.003-20.144 47.003-47.003-23.502-47.003-47.003-47.003zM1792.839 960h-342.452c-94.007 0-167.869-73.862-167.869-167.869v-345.81c0-94.007 73.862-167.869 167.869-167.869h345.81c94.007 0 167.869 73.862 167.869 167.869v345.81c-3.357 94.007-77.22 167.869-171.226 167.869zM1792.839 312.026h-342.452c-36.931 0-67.148 13.43-90.649 36.931l198.085 188.013 127.58-107.436 161.154 208.157 77.22-87.292c0 0 0 0 3.357 0v-100.721c0-77.22-60.433-137.652-134.295-137.652zM1927.134 600.761l-80.577 87.292-167.869-208.157-124.223 104.079-218.23-208.157c-13.43 20.144-20.144 47.003-20.144 70.505v345.81c0 73.862 60.433 134.295 134.295 134.295h342.452c73.862 0 134.295-60.433 134.295-134.295v-191.37zM1477.246 788.774c-43.646 0-80.577-36.931-80.577-80.577s36.931-80.577 80.577-80.577c43.646 0 80.577 36.931 80.577 80.577s-36.931 80.577-80.577 80.577zM1477.246 657.836c-26.859 0-47.003 20.144-47.003 47.003s20.144 47.003 47.003 47.003 47.003-20.144 47.003-47.003-20.144-47.003-47.003-47.003zM2648.97 960h-342.452c-94.007 0-167.869-73.862-167.869-167.869v-345.81c0-94.007 73.862-167.869 167.869-167.869h345.81c94.007 0 167.869 73.862 167.869 167.869v345.81c-3.357 94.007-77.22 167.869-171.226 167.869zM2648.97 312.026h-342.452c-36.931 0-67.148 13.43-90.649 36.931l198.085 188.013 127.58-107.436 164.511 204.8 77.22-87.292c0 0 0 0 3.357 0v-100.721c-3.357-73.862-60.433-134.295-137.652-134.295zM2783.266 600.761l-80.577 90.649-167.869-208.157-124.223 104.079-218.23-208.157c-13.43 20.144-20.144 47.003-20.144 70.505v342.452c0 73.862 60.433 134.295 134.295 134.295h342.452c73.862 0 134.295-60.433 134.295-134.295v-191.37zM2333.377 788.774c-43.646 0-80.577-36.931-80.577-80.577s36.931-80.577 80.577-80.577 80.577 36.931 80.577 80.577c0 43.646-36.931 80.577-80.577 80.577zM2333.377 657.836c-26.859 0-47.003 20.144-47.003 47.003s20.144 47.003 47.003 47.003c26.859 0 47.003-20.144 47.003-47.003s-20.144-47.003-47.003-47.003zM1551.108-30.426h-144.367c-10.072 0-16.787-6.715-16.787-16.787s6.715-16.787 16.787-16.787h144.367c10.072 0 16.787 6.715 16.787 16.787s-6.715 16.787-16.787 16.787zM1695.475-30.426h-23.502c-10.072 0-16.787-6.715-16.787-16.787s6.715-16.787 16.787-16.787h23.502c10.072 0 16.787 6.715 16.787 16.787s-6.715 16.787-16.787 16.787zM1836.485-30.426h-23.502c-10.072 0-16.787-6.715-16.787-16.787s6.715-16.787 16.787-16.787h23.502c10.072 0 16.787 6.715 16.787 16.787s-10.072 16.787-16.787 16.787z" />
199
+ <glyph unicode="&#xe908;" glyph-name="Circle-progress" data-tags="Circle-progress" horiz-adv-x="1593" d="M1580.956 425.522c-7.493 0-12.488-4.995-12.488-12.488 0-249.756-202.302-452.059-452.059-452.059s-452.059 202.302-452.059 452.059c0 244.761 194.81 442.068 434.576 452.059l-47.454-47.454c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498l77.424 77.424-77.424 77.424c-4.995 4.995-12.488 4.995-17.483 0s-4.995-12.488 0-17.483l49.951-49.951c-117.385-4.995-222.283-49.951-304.702-122.38-87.415 79.922-199.805 122.38-319.688 122.38-264.741 2.498-479.532-212.293-479.532-474.537 0-107.395 34.966-204.8 94.907-284.722 0 0 0-2.498 2.498-2.498 0 0 2.498 0 2.498-2.498 87.415-114.888 224.78-189.815 379.629-189.815 119.883 0 232.273 44.956 319.688 122.38 84.917-77.424 197.307-122.38 319.688-122.38 262.244 0 477.034 214.79 477.034 477.034-2.498 9.99-7.493 14.985-14.985 14.985zM464.546 865.093v-444.566l-357.151-267.239c-52.449 72.429-82.42 162.341-82.42 259.746 0 244.761 197.307 444.566 439.571 452.059zM122.38 133.307l367.141 274.732v457.054c107.395-2.498 209.795-42.459 289.717-114.888-87.415-87.415-139.863-204.8-139.863-337.171s52.449-249.756 139.863-337.171c-82.42-74.927-189.815-114.888-302.205-114.888-142.361 0-269.737 67.434-354.654 172.332zM1011.512 438.010c44.956 0 79.922 37.463 79.922 79.922s-37.463 79.922-79.922 79.922-79.922-37.463-79.922-79.922 34.966-79.922 79.922-79.922zM1011.512 575.376c29.971 0 54.946-24.976 54.946-54.946s-24.976-54.946-54.946-54.946-54.946 24.976-54.946 54.946c-2.498 29.971 22.478 54.946 54.946 54.946zM1221.307 388.059c-44.956 0-79.922-37.463-79.922-79.922s37.463-79.922 79.922-79.922 79.922 37.463 79.922 79.922-34.966 79.922-79.922 79.922zM1221.307 250.693c-29.971 0-54.946 24.976-54.946 54.946s24.976 54.946 54.946 54.946 54.946-24.976 54.946-54.946-22.478-54.946-54.946-54.946zM954.068 250.693c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498l309.698 309.698c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-312.195-309.698c-4.995-4.995-4.995-12.488 0-17.483z" />
200
+ <glyph unicode="&#xe909;" glyph-name="contact-form" data-tags="contact-form" horiz-adv-x="1371" d="M1215.587 877.419h-201.497c-9.91 0-16.516-6.606-16.516-16.516s6.606-16.516 16.516-16.516h201.497c66.065 0 122.219-52.852 122.219-122.219v-630.916c0-66.065-52.852-122.219-122.219-122.219h-1060.335c-66.065 0-122.219 52.852-122.219 122.219v630.916c0 66.065 52.852 122.219 122.219 122.219h594.581l-56.155-56.155c-6.606-6.606-6.606-16.516 0-23.123 0-3.303 6.606-6.606 9.91-6.606s9.91 0 13.213 3.303l92.49 99.097-95.794 95.794c-6.606 6.606-16.516 6.606-23.123 0s-6.606-16.516 0-23.123l56.155-56.155h-594.581c-82.581 0-151.948-69.368-151.948-155.252v-630.916c0-85.884 69.368-155.252 155.252-155.252h1060.335c85.884 0 155.252 69.368 155.252 155.252v630.916c0 85.884-69.368 155.252-155.252 155.252zM1205.677 702.348c-6.606 6.606-16.516 6.606-23.123 3.303l-323.716-274.168c-102.4-85.884-227.923-85.884-330.323-3.303l-343.535 277.471c-6.606 6.606-16.516 3.303-23.123-3.303-3.303-6.606-3.303-16.516 3.303-23.123l336.929-274.168-336.929-274.168c-6.606-6.606-6.606-16.516-3.303-23.123 3.303-3.303 9.91-6.606 13.213-6.606s6.606 0 9.91 3.303l343.535 280.774c0 0 0 0 0 0 49.548-36.335 105.703-52.852 161.858-52.852s109.006 16.516 161.858 52.852c3.303 0 3.303-3.303 6.606-3.303l323.716-274.168c3.303-3.303 6.606-3.303 9.91-3.303s9.91 3.303 13.213 6.606c6.606 6.606 6.606 16.516-3.303 23.123l-327.019 274.168 323.716 274.168c13.213 3.303 13.213 13.213 6.606 19.819z" />
201
+ <glyph unicode="&#xe90a;" glyph-name="countdown-timer" data-tags="countdown-timer" horiz-adv-x="908" d="M897.892 458.089c-25.222 113.498-90.798 209.34-186.64 274.916-68.099 45.399-146.286 68.099-226.995 70.621v128.631c0 0 0 2.522 0 2.522h126.108c7.567 0 12.611 5.044 12.611 12.611s-5.044 12.611-12.611 12.611h-282.483c-7.567 0-12.611-5.044-12.611-12.611s5.044-12.611 12.611-12.611h131.153c0 0 0-2.522 0-2.522v-131.153c-25.222 0-47.921-2.522-73.143-7.567-7.567-2.522-10.089-7.567-10.089-15.133 2.522-7.567 7.567-10.089 15.133-10.089 22.7 5.044 45.399 7.567 68.099 7.567v-47.921c0-7.567 5.044-12.611 12.611-12.611s12.611 5.044 12.611 12.611v47.921c75.665-2.522 148.808-22.7 211.862-65.576 90.798-60.532 153.852-151.33 176.552-257.261 5.044-22.7 7.567-47.921 7.567-70.621h-52.966c-7.567 0-12.611-5.044-12.611-12.611s5.044-12.611 12.611-12.611h52.966c-2.522-73.143-25.222-146.286-65.576-209.34-60.532-90.798-151.33-153.852-257.261-176.552-25.222-5.044-47.921-7.567-73.143-7.567v47.921c0 7.567-5.044 12.611-12.611 12.611s-12.611-5.044-12.611-12.611v-47.921c-181.596 5.044-343.015 136.197-383.369 322.837-5.044 22.7-7.567 47.921-7.567 70.621h50.443c7.567 0 12.611 5.044 12.611 12.611s-5.044 12.611-12.611 12.611h-50.443c2.522 58.010 15.133 113.498 40.355 166.463l25.222-65.576c2.522-5.044 7.567-7.567 12.611-7.567 2.522 0 2.522 0 5.044 0 7.567 2.522 10.089 10.089 7.567 17.655l-42.877 103.409-105.931-32.788c-7.567-2.522-10.089-10.089-7.567-15.133 2.522-7.567 10.089-10.089 15.133-7.567l70.621 22.7c-45.399-88.276-58.010-189.163-37.833-282.483 42.877-204.296 221.951-345.537 423.724-345.537 30.266 0 58.010 2.522 88.276 10.089 113.498 22.7 209.34 90.798 274.916 186.64 63.054 95.842 83.232 211.862 60.532 325.36zM312.749 210.916c2.522 0 5.044 0 7.567 2.522l118.542 108.453c10.089-7.567 20.177-10.089 32.788-10.089 32.788 0 60.532 27.744 60.532 60.532s-27.744 60.532-60.532 60.532-60.532-27.744-60.532-60.532c0-12.611 2.522-22.7 10.089-32.788l-118.542-105.931c-5.044-5.044-5.044-12.611 0-17.655 2.522-2.522 7.567-5.044 10.089-5.044zM474.167 407.645c20.177 0 35.31-15.133 35.31-35.31s-15.133-35.31-35.31-35.31c-20.177 0-35.31 15.133-35.31 35.31s15.133 35.31 35.31 35.31z" />
202
+ <glyph unicode="&#xe90b;" glyph-name="download-button" data-tags="download-button" horiz-adv-x="1338" d="M1156.129 847.69h-264.258c-9.91 0-16.516-6.606-16.516-16.516s6.606-16.516 16.516-16.516h264.258c79.277 0 145.342-66.065 145.342-145.342v-554.942c0-79.277-66.065-145.342-145.342-145.342h-977.755c-79.277 0-145.342 66.065-145.342 145.342v554.942c0 79.277 66.065 145.342 145.342 145.342h267.561c9.91 0 16.516 6.606 16.516 16.516s-6.606 16.516-16.516 16.516h-267.561c-99.097 0-178.374-79.277-178.374-178.374v-554.942c0-99.097 79.277-178.374 178.374-178.374h977.755c99.097 0 178.374 79.277 178.374 178.374v554.942c3.303 99.097-79.277 178.374-178.374 178.374zM667.252 391.845l135.432 135.432c6.606 6.606 6.606 16.516 0 23.123s-16.516 6.606-23.123 0l-95.794-95.794v488.877c0 9.91-6.606 16.516-16.516 16.516s-16.516-6.606-16.516-16.516v-488.877l-95.794 95.794c-6.606 6.606-16.516 6.606-23.123 0s-6.606-16.516 0-23.123l135.432-135.432zM386.477 246.503c0-9.91 6.606-16.516 16.516-16.516h531.819c9.91 0 16.516 6.606 16.516 16.516s-6.606 16.516-16.516 16.516h-531.819c-9.91 0-16.516-6.606-16.516-16.516z" />
203
+ <glyph unicode="&#xe90c;" glyph-name="dropbar" data-tags="dropbar" horiz-adv-x="997" d="M666.849 200.741h-337.171c-72.429 0-132.371-59.941-132.371-132.371s59.941-132.371 132.371-132.371c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488c-59.941 0-107.395 47.454-107.395 107.395s47.454 107.395 107.395 107.395h337.171c59.941 0 107.395-47.454 107.395-107.395s-47.454-107.395-107.395-107.395h-229.776c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h229.776c72.429 0 132.371 59.941 132.371 132.371s-59.941 132.371-132.371 132.371zM604.41 68.371c0 7.493-4.995 12.488-12.488 12.488h-187.317c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h187.317c4.995 0 12.488 4.995 12.488 12.488zM871.649 767.688c0 7.493-4.995 12.488-12.488 12.488h-369.639c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h369.639c7.493 0 12.488 4.995 12.488 12.488zM866.654 667.785c0 7.493-4.995 12.488-12.488 12.488h-364.644c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h364.644c7.493 0 12.488 4.995 12.488 12.488zM489.522 577.873c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h259.746c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-259.746zM984.039 810.146c7.493 0 12.488 4.995 12.488 12.488v59.941c0 42.459-34.966 77.424-77.424 77.424h-841.678c-42.459 0-77.424-34.966-77.424-77.424v-432.078c0-42.459 34.966-77.424 77.424-77.424h434.576l102.4-124.878c9.99-12.488 22.478-17.483 37.463-17.483s29.971 7.493 37.463 17.483l104.898 124.878c0 0 0 0 2.498 0h119.883c42.459 0 77.424 34.966 77.424 77.424v214.79c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-214.79c0-29.971-22.478-52.449-52.449-52.449h-117.385c0 0-2.498 0-2.498 0-4.995 2.498-9.99 0-14.985-2.498l-107.395-132.371c-9.99-12.488-27.473-12.488-37.463 0l-107.395 129.873c0 0 0 0 0 0s-2.498 0-2.498 2.498c0 0 0 0-2.498 0 0 0-2.498 0-2.498 0s-2.498 0-2.498 0c0 0 0 0 0 0h-442.068c-29.971 0-52.449 22.478-52.449 52.449v434.576c0 29.971 22.478 52.449 52.449 52.449h839.18c29.971 0 52.449-22.478 52.449-52.449v-59.941c2.498-7.493 7.493-12.488 14.985-12.488zM174.829 805.151c-24.976 0-42.459-19.98-42.459-42.459v-192.312c0-24.976 19.98-42.459 42.459-42.459h192.312c22.478 0 42.459 19.98 42.459 42.459v192.312c0 24.976-19.98 42.459-42.459 42.459h-192.312zM387.122 762.693v-192.312c0-9.99-7.493-17.483-17.483-17.483h-194.81c-9.99 0-17.483 7.493-17.483 17.483v192.312c0 9.99 7.493 17.483 17.483 17.483h192.312c9.99 0 19.98-7.493 19.98-17.483z" />
204
+ <glyph unicode="&#xe90d;" glyph-name="elements-kit-logo" data-tags="elements-kit-logo" horiz-adv-x="3599" d="M845.835 403.909c-23.395 28.794-23.395 70.186 0 97.181l239.353 286.144c16.197 17.996 14.397 46.791-1.8 64.787l-91.782 95.381c-8.998 8.998-23.395 14.397-35.993 14.397-14.397 0-26.995-7.199-34.193-17.996l-316.738-385.125c-50.39-61.188-50.39-151.17 0-214.158l323.937-392.323c8.998-8.998 21.596-16.197 34.193-16.197 0 0 0 0 1.8 0 10.798 0 28.794 7.199 35.993 16.197l89.982 88.183c17.996 17.996 19.796 46.791 3.599 64.787l-248.351 298.742zM556.091 175.353h-500.302c-30.594 0-55.789-25.195-55.789-55.789v-102.58c0-30.594 25.195-55.789 55.789-55.789h500.302c30.594 0 55.789 25.195 55.789 55.789v102.58c-1.8 30.594-25.195 55.789-55.789 55.789zM55.789 720.647h500.302c30.594 0 55.789 25.195 55.789 55.789v102.58c0 30.594-25.195 55.789-55.789 55.789h-500.302c-30.594 0-55.789-25.195-55.789-55.789v-102.58c0-30.594 25.195-55.789 55.789-55.789zM55.789 340.921h289.743c30.594 0 55.789 25.195 55.789 55.789v102.58c0 30.594-25.195 55.789-55.789 55.789h-289.743c-30.594 0-55.789-25.195-55.789-55.789v-102.58c0-30.594 25.195-55.789 55.789-55.789zM1547.698 884.415c8.998 0 14.397 1.8 19.796 7.199s7.199 10.798 7.199 19.796c0 8.998-3.599 14.397-7.199 19.796-5.399 5.399-12.598 7.199-19.796 7.199h-223.156c-8.998 0-14.397-3.599-19.796-8.998s-8.998-12.598-8.998-21.596v-334.735c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998h223.156c8.998 0 14.397 1.8 19.796 7.199s7.199 10.798 7.199 19.796c0 7.199-3.599 14.397-7.199 19.796-5.399 5.399-12.598 7.199-19.796 7.199h-194.362v116.977h138.573c7.199 0 14.397 1.8 19.796 7.199s8.998 10.798 8.998 19.796-3.599 14.397-8.998 19.796c-5.399 5.399-12.598 7.199-19.796 7.199h-138.573v115.178h194.362zM1742.060 573.076c0 8.998-1.8 14.397-7.199 19.796s-10.798 7.199-17.996 7.199h-12.598c-5.399 0-10.798 3.599-14.397 10.798s-7.199 17.996-7.199 28.794v269.947c0 8.998-3.599 14.397-7.199 19.796-5.399 5.399-12.598 7.199-19.796 7.199-8.998 0-14.397-1.8-19.796-7.199s-7.199-12.598-7.199-19.796v-269.947c0-17.996 3.599-34.193 8.998-48.591 7.199-14.397 16.197-25.195 26.995-34.193 12.598-7.199 25.195-12.598 39.592-12.598h1.8c10.798 0 19.796 1.8 25.195 7.199 7.199 5.399 10.798 12.598 10.798 21.596zM1961.617 807.030c-17.996 10.798-41.392 17.996-68.387 17.996s-50.39-5.399-70.186-17.996c-21.596-12.598-37.793-28.794-48.591-50.39s-17.996-44.991-17.996-71.986 5.399-52.19 17.996-71.986c12.598-21.596 30.594-37.793 52.19-50.39s46.791-17.996 73.786-17.996c16.197 0 32.394 3.599 48.591 8.998s30.594 12.598 43.192 21.596c5.399 5.399 8.998 10.798 8.998 17.996s-3.599 14.397-8.998 19.796c-3.599 3.599-10.798 5.399-16.197 5.399-7.199 0-12.598-1.8-17.996-5.399-7.199-5.399-16.197-8.998-25.195-12.598-10.798-3.599-19.796-5.399-30.594-5.399-23.395 0-44.991 7.199-61.188 19.796s-25.195 30.594-28.794 50.39h185.364c7.199 0 14.397 1.8 17.996 7.199 5.399 5.399 7.199 10.798 7.199 17.996 0 26.995-5.399 50.39-14.397 70.186-12.598 17.996-28.794 34.193-46.791 46.791zM1810.446 708.049c3.599 19.796 12.598 35.993 26.995 46.791 14.397 12.598 34.193 19.796 55.789 19.796s37.793-5.399 50.39-17.996c12.598-12.598 19.796-26.995 23.395-48.591h-156.569zM2366.538 825.026c-17.996 0-35.993-3.599-50.39-10.798s-25.195-16.197-35.993-26.995c-8.998 10.798-19.796 19.796-32.394 26.995-14.397 7.199-28.794 10.798-46.791 10.798-14.397 0-26.995-1.8-39.592-7.199-10.798-3.599-19.796-8.998-26.995-16.197-1.8 5.399-3.599 8.998-7.199 14.397-5.399 5.399-12.598 7.199-19.796 7.199-8.998 0-14.397-3.599-19.796-7.199-5.399-5.399-8.998-12.598-8.998-19.796v-221.357c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998c8.998 0 14.397 3.599 19.796 8.998s7.199 12.598 7.199 19.796v140.373c0 17.996 5.399 32.394 16.197 43.192s23.395 16.197 41.392 16.197c16.197 0 28.794-5.399 37.793-14.397s14.397-25.195 14.397-43.192v-142.172c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998c8.998 0 14.397 3.599 19.796 8.998s7.199 12.598 7.199 19.796v140.373c0 17.996 5.399 32.394 16.197 43.192s23.395 16.197 39.592 16.197c16.197 0 28.794-5.399 37.793-14.397s14.397-25.195 14.397-43.192v-142.172c0-8.998 1.8-14.397 8.998-19.796 5.399-5.399 12.598-8.998 19.796-8.998 8.998 0 14.397 1.8 19.796 8.998 5.399 5.399 7.199 12.598 7.199 19.796v142.172c0 34.193-8.998 61.188-26.995 80.984-16.197 16.197-39.592 26.995-70.186 26.995zM2733.666 807.030c-17.996 10.798-41.392 17.996-68.387 17.996s-50.39-5.399-70.186-17.996c-19.796-12.598-37.793-28.794-48.591-50.39s-17.996-44.991-17.996-71.986 7.199-52.19 17.996-71.986 28.794-37.793 52.19-50.39c21.596-12.598 46.791-17.996 73.786-17.996 16.197 0 32.394 3.599 48.591 8.998s30.594 12.598 43.192 21.596c5.399 5.399 8.998 10.798 8.998 17.996s-3.599 14.397-8.998 19.796c-3.599 3.599-8.998 5.399-16.197 5.399s-12.598-1.8-17.996-5.399c-7.199-5.399-14.397-8.998-25.195-12.598s-19.796-5.399-30.594-5.399c-25.195 0-44.991 7.199-61.188 19.796s-25.195 30.594-30.594 50.39h185.364c7.199 0 14.397 1.8 17.996 7.199 5.399 5.399 7.199 10.798 7.199 17.996 0 26.995-5.399 50.39-14.397 70.186-10.798 17.996-25.195 34.193-44.991 46.791zM2582.496 708.049c3.599 19.796 12.598 35.993 26.995 46.791 14.397 12.598 34.193 19.796 55.789 19.796s37.793-5.399 50.39-17.996c12.598-12.598 19.796-26.995 23.395-48.591h-156.569zM3052.204 808.83c-17.996 10.798-39.592 14.397-62.988 14.397-16.197 0-32.394-3.599-48.591-8.998-12.598-5.399-23.395-10.798-34.193-19.796 0 7.199-3.599 14.397-7.199 17.996-5.399 5.399-12.598 7.199-19.796 7.199-8.998 0-14.397-1.8-19.796-7.199s-8.998-12.598-8.998-19.796v-221.357c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998c8.998 0 16.197 3.599 19.796 8.998s7.199 12.598 7.199 19.796v140.373c0 10.798 3.599 21.596 8.998 30.594s14.397 16.197 25.195 21.596c10.798 5.399 23.395 8.998 35.993 8.998 23.395 0 41.392-7.199 55.789-19.796s19.796-32.394 19.796-59.388v-122.376c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998 14.397 3.599 19.796 8.998 8.998 12.598 8.998 19.796v122.376c0 26.995-5.399 50.39-16.197 70.186-7.199 19.796-23.395 34.193-41.392 44.991zM3307.754 600.070h-16.197c-8.998 0-17.996 3.599-23.395 12.598-7.199 8.998-10.798 17.996-10.798 30.594v118.777h39.592c7.199 0 14.397 1.8 17.996 7.199 5.399 5.399 7.199 10.798 7.199 16.197 0 7.199-1.8 14.397-7.199 17.996-5.399 5.399-10.798 7.199-17.996 7.199h-39.592v70.186c0 7.199-3.599 14.397-7.199 19.796s-12.598 7.199-19.796 7.199c-8.998 0-14.397-3.599-19.796-7.199-5.399-5.399-7.199-12.598-7.199-19.796v-68.387h-19.796c-7.199 0-14.397-1.8-17.996-7.199-5.399-5.399-7.199-10.798-7.199-17.996s1.8-12.598 7.199-17.996c5.399-5.399 10.798-7.199 17.996-7.199h19.796v-118.777c0-17.996 3.599-35.993 12.598-50.39s17.996-26.995 32.394-35.993c14.397-8.998 28.794-12.598 46.791-12.598h8.998c8.998 0 17.996 1.8 23.395 7.199s8.998 12.598 8.998 19.796c0 8.998-1.8 14.397-7.199 19.796-8.998 7.199-14.397 8.998-21.596 8.998zM3575.902 679.255c-14.397 12.598-41.392 23.395-77.385 30.594-17.996 3.599-30.594 7.199-39.592 10.798s-14.397 7.199-17.996 10.798c-3.599 3.599-3.599 8.998-3.599 14.397 0 8.998 3.599 14.397 12.598 17.996 8.998 5.399 21.596 7.199 35.993 7.199 12.598 0 23.395-1.8 32.394-5.399s17.996-8.998 25.195-16.197c7.199-7.199 16.197-10.798 25.195-10.798 7.199 0 10.798 1.8 16.197 5.399 7.199 5.399 8.998 10.798 8.998 17.996 0 5.399-1.8 12.598-7.199 17.996-10.798 12.598-23.395 23.395-41.392 28.794-17.996 7.199-37.793 10.798-59.388 10.798-17.996 0-34.193-3.599-50.39-8.998s-28.794-14.397-39.592-25.195c-10.798-12.598-14.397-26.995-14.397-43.192 0-41.392 32.394-68.387 97.181-80.984 23.395-5.399 41.392-10.798 50.39-16.197s14.397-14.397 14.397-23.395c0-8.998-5.399-16.197-14.397-23.395-10.798-5.399-23.395-8.998-43.192-8.998-14.397 0-26.995 1.8-39.592 7.199s-21.596 10.798-26.995 17.996c-12.598 12.598-25.195 14.397-39.592 1.8-7.199-5.399-10.798-12.598-10.798-21.596 0-7.199 1.8-12.598 7.199-17.996 10.798-10.798 26.995-21.596 48.591-28.794 19.796-7.199 41.392-10.798 64.787-10.798s43.192 3.599 59.388 10.798c16.197 7.199 28.794 17.996 37.793 30.594s12.598 26.995 12.598 43.192c0 26.995-7.199 43.192-23.395 57.589zM1560.295 333.722c0 7.199-1.8 12.598-7.199 17.996-3.599 5.399-10.798 7.199-17.996 7.199-3.599 0-8.998 0-12.598-1.8s-7.199-5.399-10.798-8.998l-158.369-158.369v140.373c0 7.199-3.599 14.397-8.998 19.796s-12.598 8.998-19.796 8.998c-7.199 0-14.397-3.599-19.796-8.998s-8.998-12.598-8.998-19.796v-334.735c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998c8.998 0 14.397 3.599 19.796 8.998s8.998 12.598 8.998 19.796v118.777l32.394 32.394 122.376-167.367c5.399-8.998 14.397-12.598 23.395-12.598 7.199 0 14.397 3.599 17.996 8.998 5.399 5.399 7.199 12.598 7.199 19.796s-1.8 12.598-5.399 17.996l-127.775 172.766 124.176 124.176c8.998 5.399 12.598 14.397 12.598 23.395zM1653.877 351.719c-8.998 0-17.996-3.599-25.195-10.798s-10.798-16.197-10.798-25.195c0-8.998 3.599-17.996 10.798-25.195s16.197-10.798 25.195-10.798c8.998 0 17.996 3.599 25.195 10.798s10.798 16.197 10.798 25.195c0 8.998-3.599 17.996-10.798 25.195s-14.397 10.798-25.195 10.798zM1653.877 241.94c-8.998 0-14.397-3.599-19.796-7.199-5.399-5.399-8.998-12.598-8.998-19.796v-221.357c0-8.998 3.599-14.397 8.998-19.796s12.598-8.998 19.796-8.998c8.998 0 14.397 3.599 19.796 8.998s7.199 12.598 7.199 19.796v219.557c0 8.998-1.8 16.197-7.199 19.796-3.599 5.399-10.798 8.998-19.796 8.998zM1889.631 20.583h-17.996c-8.998 0-17.996 3.599-25.195 12.598s-10.798 17.996-10.798 30.594v118.777h39.592c7.199 0 14.397 1.8 17.996 7.199s7.199 10.798 7.199 17.996c0 7.199-1.8 14.397-7.199 17.996s-10.798 7.199-17.996 7.199h-39.592v68.387c0 8.998-1.8 14.397-7.199 19.796s-12.598 7.199-19.796 7.199c-8.998 0-14.397-1.8-19.796-7.199s-7.199-12.598-7.199-19.796v-68.387h-19.796c-7.199 0-14.397-1.8-19.796-7.199s-7.199-10.798-7.199-17.996c0-7.199 1.8-12.598 7.199-17.996s10.798-7.199 19.796-7.199h19.796v-118.777c0-17.996 3.599-35.993 12.598-50.39 7.199-14.397 17.996-26.995 32.394-35.993s28.794-12.598 46.791-12.598h8.998c8.998 0 16.197 1.8 23.395 7.199 5.399 5.399 8.998 12.598 8.998 19.796s-1.8 14.397-7.199 19.796c-5.399 5.399-12.598 8.998-17.996 8.998z" />
205
+ <glyph unicode="&#xe90e;" glyph-name="faq" data-tags="faq" horiz-adv-x="1444" d="M512 960c-280.774 0-512-231.226-512-512 0-9.91 6.606-16.516 16.516-16.516s16.516 6.606 16.516 16.516c0 264.258 214.71 478.968 478.968 478.968s478.968-214.71 478.968-478.968v-478.968h-478.968c-175.071 0-336.929 95.794-419.51 251.045-3.303 6.606-13.213 9.91-23.123 6.606-6.606-3.303-9.91-13.213-6.606-23.123 89.187-165.161 260.955-267.561 449.239-267.561h512v512c0 280.774-231.226 512-512 512zM1407.174 632.981c-3.303 9.91-13.213 13.213-19.819 9.91-9.91-3.303-13.213-13.213-9.91-19.819 19.819-56.155 33.032-112.31 33.032-171.768 0-175.071-95.794-336.929-251.045-419.51-6.606-3.303-9.91-13.213-6.606-23.123 3.303-6.606 9.91-9.91 13.213-9.91s6.606 0 6.606 3.303c165.161 89.187 267.561 260.955 267.561 449.239 3.303 59.458-9.91 122.219-33.032 181.677zM888.568 926.968c132.129 9.91 264.258-33.032 360.052-122.219 3.303-3.303 6.606-3.303 9.91-3.303s9.91 3.303 13.213 6.606c6.606 6.606 6.606 16.516 0 23.123-105.703 95.794-244.439 142.039-386.477 128.826-9.91 0-16.516-9.91-16.516-16.516 3.303-13.213 13.213-19.819 19.819-16.516zM558.245 438.090c52.852 19.819 85.884 72.671 85.884 128.826 0 72.671-59.458 132.129-135.432 135.432-52.852 0-102.4-29.729-125.523-75.974-3.303-6.606 0-16.516 6.606-23.123 6.606-3.303 16.516 0 23.123 6.606 16.516 36.335 52.852 59.458 95.794 59.458 56.155 0 102.4-46.245 102.4-102.4 0-42.942-23.123-82.581-62.761-95.794-33.032-13.213-56.155-46.245-56.155-85.884v-39.639c0-9.91 6.606-16.516 16.516-16.516s16.516 6.606 16.516 16.516v39.639c-3.303 23.123 9.91 46.245 33.032 52.852zM505.394 263.019c-9.91 0-16.516-6.606-16.516-16.516v-33.032c0-9.91 6.606-16.516 16.516-16.516s16.516 6.606 16.516 16.516v33.032c0 6.606-6.606 16.516-16.516 16.516z" />
206
+ <glyph unicode="&#xe90f;" glyph-name="full-width-scroll" data-tags="full-width-scroll" horiz-adv-x="1139" d="M1126.4 413.034c-7.493 0-12.488-4.995-12.488-12.488v-97.405c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v97.405c0 4.995-7.493 12.488-12.488 12.488zM1126.4 510.439c-7.493 0-12.488-4.995-12.488-12.488v-17.483c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v17.483c0 7.493-7.493 12.488-12.488 12.488zM1126.4 607.844c-7.493 0-12.488-4.995-12.488-12.488v-17.483c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v17.483c0 4.995-7.493 12.488-12.488 12.488zM576.937 550.4c0 7.493-4.995 12.488-12.488 12.488h-417.093c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h417.093c4.995 0 12.488 4.995 12.488 12.488zM472.039 448c0 7.493-4.995 12.488-12.488 12.488h-312.195c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h312.195c4.995 0 12.488 4.995 12.488 12.488zM147.356 358.088c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h202.302c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-202.302zM836.683 750.205h-17.483v72.429c0 74.927-62.439 137.366-137.366 137.366h-412.098c-74.927 0-137.366-62.439-137.366-137.366 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 62.439 49.951 112.39 112.39 112.39h409.6c62.439 0 112.39-49.951 112.39-112.39v-72.429h-84.917c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h129.873c49.951 0 87.415-39.961 87.415-87.415v-377.132c0-49.951-39.961-87.415-87.415-87.415h-724.293c-47.454-2.498-87.415 37.463-87.415 87.415v374.634c0 49.951 39.961 87.415 87.415 87.415h377.132c7.493 0 12.488 4.995 12.488 12.488s-2.498 14.985-9.99 14.985h-379.629c-62.439 0-112.39-52.449-112.39-114.888v-374.634c0-62.439 49.951-112.39 112.39-112.39h721.795c62.439 0 112.39 49.951 112.39 112.39v374.634c2.498 62.439-47.454 114.888-109.893 114.888zM806.712 85.854c-7.493 0-12.488-4.995-12.488-12.488 0-62.439-49.951-112.39-112.39-112.39h-412.098c-62.439 0-112.39 49.951-112.39 112.39 0 7.493-7.493 12.488-12.488 12.488s-12.488-4.995-12.488-12.488c0-74.927 62.439-137.366 137.366-137.366h412.098c74.927 0 137.366 62.439 137.366 137.366 0 7.493-7.493 12.488-12.488 12.488zM531.98 75.863c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-39.961-39.961-39.961 39.961c-4.995 4.995-12.488 4.995-17.483 0s-4.995-12.488 0-17.483l57.444-57.444 57.444 57.444zM474.537 902.556l-57.444-57.444c-4.995-4.995-4.995-12.488 0-17.483s12.488-4.995 17.483 0l39.961 39.961 39.961-39.961c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-59.941 57.444z" />
207
+ <glyph unicode="&#xe910;" glyph-name="google-map" data-tags="google-map" horiz-adv-x="1374" d="M422.088 580.371c7.493 2.498 9.99 9.99 7.493 14.985-7.493 27.473-12.488 49.951-12.488 69.932 2.498 149.854 122.38 269.737 269.737 269.737s269.737-119.883 269.737-269.737c0-79.922-84.917-257.249-232.273-487.024-7.493-12.488-22.478-19.98-37.463-19.98v0c-14.985 0-29.971 7.493-37.463 19.98-42.459 67.434-104.898 167.337-152.351 264.741-2.498 4.995-9.99 7.493-17.483 4.995-4.995-2.498-7.493-9.99-4.995-17.483 49.951-97.405 112.39-199.805 154.849-267.239 12.488-19.98 34.966-32.468 57.444-32.468 0 0 0 0 0 0 22.478 0 44.956 12.488 57.444 32.468 87.415 137.366 234.771 384.624 234.771 502.010 2.498 162.341-129.873 294.712-292.215 294.712s-292.215-132.371-292.215-294.712c0-19.98 4.995-47.454 14.985-77.424 0-4.995 7.493-7.493 12.488-7.493zM816.702 665.288c0 72.429-57.444 129.873-129.873 129.873s-129.873-57.444-129.873-129.873c0-72.429 57.444-129.873 129.873-129.873 72.429 2.498 129.873 59.941 129.873 129.873zM581.932 665.288c0 57.444 47.454 104.898 104.898 104.898s104.898-47.454 104.898-104.898c0-57.444-47.454-104.898-104.898-104.898s-104.898 47.454-104.898 104.898zM1363.668 60.878l-142.361 252.254c-14.985 27.473-42.459 42.459-72.429 42.459h-149.854c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h149.854c22.478 0 39.961-12.488 52.449-29.971l24.976-44.956-124.878-139.863c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 4.995-2.498 7.493-2.498s7.493 2.498 9.99 4.995l117.385 132.371 102.4-184.82c9.99-17.483 9.99-39.961 0-57.444s-29.971-29.971-49.951-29.971h-1203.824c-19.98 0-37.463 9.99-49.951 27.473l457.054 124.878c7.493 2.498 9.99 7.493 9.99 14.985-2.498 7.493-7.493 9.99-14.985 9.99l-462.049-127.376c-2.498 12.488 0 24.976 7.493 37.463l142.361 252.254c9.99 17.483 29.971 29.971 52.449 29.971h122.38c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-124.878c-29.971 0-57.444-17.483-72.429-42.459l-142.361-252.254c-14.985-27.473-14.985-57.444 0-82.42s42.459-42.459 72.429-42.459h1206.322c29.971 0 57.444 14.985 72.429 42.459 17.483 24.976 17.483 57.444 2.498 82.42z" />
208
+ <glyph unicode="&#xe911;" glyph-name="heading-style" data-tags="heading-style" horiz-adv-x="902" d="M129.873 78.361c-4.995-4.995-4.995-12.488 0-17.483l39.961-39.961h-59.941c-47.454 0-84.917 39.961-84.917 84.917v681.834c0 47.454 37.463 87.415 84.917 87.415h397.112c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-397.112c-59.941 0-109.893-49.951-109.893-112.39v-681.834c0-59.941 49.951-109.893 109.893-109.893h59.941l-39.961-39.961c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 7.493-2.498 9.99-2.498s7.493 0 9.99 2.498l69.932 69.932-69.932 69.932c-7.493 4.995-14.985 4.995-19.98 0zM791.727 900.059h-92.41l39.961 39.961c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-69.932-69.932 69.932-69.932c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-42.459 39.961h92.41c47.454 0 84.917-37.463 84.917-84.917v-681.834c0-47.454-37.463-84.917-84.917-84.917h-437.073c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h437.073c59.941 0 109.893 49.951 109.893 109.893v679.337c0 62.439-49.951 112.39-109.893 112.39zM519.493 592.859c0 7.493-4.995 12.488-12.488 12.488h-242.263c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h242.263c4.995 0 12.488 7.493 12.488 12.488zM372.137 535.415v-232.273c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v232.273c0 7.493-4.995 12.488-12.488 12.488s-12.488-7.493-12.488-12.488zM484.527 470.478c0-7.493 4.995-12.488 12.488-12.488h139.863c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-139.863c-7.493 0-12.488-4.995-12.488-12.488zM554.459 423.024v-119.883c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v119.883c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488z" />
209
+ <glyph unicode="&#xe912;" glyph-name="help-desk" data-tags="help-desk" horiz-adv-x="1034" d="M886.634 350.595c-7.493 0-12.488-4.995-12.488-12.488v-309.698c0-37.463-29.971-69.932-69.932-69.932h-709.307c-39.961 2.498-69.932 32.468-69.932 72.429v689.327c0 39.961 29.971 69.932 69.932 69.932h119.883c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-119.883c-52.449 0-94.907-42.459-94.907-94.907v-691.824c0-49.951 42.459-92.41 94.907-92.41h711.805c52.449 0 94.907 42.459 94.907 94.907v307.2c-2.498 7.493-9.99 12.488-14.985 12.488zM939.083 960h-509.502c-52.449 0-94.907-42.459-94.907-94.907v-212.293c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v212.293c0 37.463 29.971 69.932 69.932 69.932h512c37.463 0 69.932-29.971 69.932-69.932v-332.176c0-37.463-29.971-69.932-69.932-69.932h-144.859l-172.332-157.346c-4.995-4.995-9.99-2.498-12.488-2.498s-7.493 2.498-7.493 9.99v152.351h-64.937c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h39.961v-127.376c0-14.985 7.493-27.473 22.478-32.468 4.995-2.498 9.99-2.498 14.985-2.498 9.99 0 17.483 2.498 24.976 9.99l162.341 152.351h137.366c52.449 0 94.907 42.459 94.907 94.907v329.678c-2.498 52.449-44.956 94.907-97.405 94.907zM262.244 333.112c-74.927-24.976-129.873-94.907-129.873-179.824 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 89.912 72.429 164.839 164.839 164.839s164.839-72.429 164.839-164.839c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 84.917-54.946 154.849-129.873 179.824 37.463 19.98 64.937 59.941 64.937 107.395 0 67.434-54.946 122.38-122.38 122.38s-122.38-54.946-122.38-122.38c-4.995-44.956 22.478-87.415 59.941-107.395zM322.185 537.912c54.946 0 97.405-44.956 97.405-97.405 0-54.946-44.956-97.405-97.405-97.405s-97.405 44.956-97.405 97.405c-2.498 54.946 42.459 97.405 97.405 97.405zM579.434 675.278c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-67.434c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h67.434zM721.795 675.278c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-67.434c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h67.434zM866.654 675.278c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-67.434c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h67.434z" />
210
+ <glyph unicode="&#xe913;" glyph-name="horizontal-timeline" data-tags="horizontal-timeline" horiz-adv-x="1331" d="M1318.712 35.902h-94.907c-4.995 42.459-42.459 74.927-84.917 74.927s-79.922-32.468-84.917-74.927h-277.229c0 0-2.498 0-2.498 0s-2.498 0-2.498 0c-7.493 0-12.488-4.995-12.488-12.488 0-34.966-27.473-62.439-62.439-62.439s-62.439 27.473-62.439 62.439 27.473 62.439 62.439 62.439c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488c-42.459 0-79.922-32.468-84.917-74.927h-272.234c-4.995 42.459-42.459 74.927-84.917 74.927s-79.922-32.468-84.917-74.927h-157.346c-7.493 0-12.488-7.493-12.488-12.488s4.995-12.488 12.488-12.488h157.346c4.995-42.459 42.459-74.927 84.917-74.927 7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488c-34.966 0-62.439 27.473-62.439 62.439s27.473 62.439 62.439 62.439c32.468 0 59.941-27.473 62.439-59.941 0 0 0 0 0 0 0-7.493 4.995-12.488 12.488-12.488h282.224c4.995-42.459 42.459-74.927 84.917-74.927s79.922 32.468 84.917 74.927h272.234c4.995-42.459 42.459-74.927 84.917-74.927 7.493 0 12.488 4.995 12.488 12.488s-4.995 9.99-12.488 9.99c-34.966 0-62.439 27.473-62.439 62.439s27.473 62.439 62.439 62.439c32.468 0 59.941-27.473 62.439-59.941 0 0 0 0 0 0 0-7.493 4.995-12.488 12.488-12.488h104.898c7.493 0 12.488 4.995 12.488 12.488s-4.995 9.99-12.488 9.99zM921.6 765.19c0 7.493-4.995 12.488-12.488 12.488h-374.634c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h374.634c7.493 0 12.488 4.995 12.488 12.488zM916.605 662.79c0 7.493-4.995 12.488-12.488 12.488h-369.639c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h369.639c7.493 0 12.488 7.493 12.488 12.488zM534.478 575.376c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h262.244c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-262.244zM119.883 365.58h442.068l104.898-127.376c9.99-12.488 22.478-17.483 37.463-17.483 0 0 0 0 0 0 14.985 0 29.971 7.493 37.463 17.483l104.898 127.376c0 0 0 0 2.498 0h119.883c42.459 0 77.424 34.966 77.424 77.424v219.785c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-219.785c0-29.971-24.976-52.449-52.449-52.449h-119.883c-2.498 0-2.498 0-2.498 0-4.995 2.498-9.99 0-12.488-4.995l-107.395-132.371c-4.995-4.995-12.488-9.99-19.98-9.99s-14.985 2.498-19.98 9.99l-112.39 132.371c0 0 0 0 0 0s0 0 0 0-2.498 2.498-2.498 2.498c0 0 0 0 0 0s-2.498 0-2.498 0c0 0 0 0 0 0h-449.561c-29.971 0-52.449 24.976-52.449 52.449v442.068c-2.498 27.473 22.478 52.449 52.449 52.449h849.171c29.971 0 52.449-24.976 52.449-52.449v-62.439c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v62.439c0 42.459-34.966 77.424-77.424 77.424h-849.171c-44.956 0-79.922-34.966-79.922-77.424v-437.073c0-44.956 34.966-79.922 79.922-79.922zM217.288 805.151c-22.478 0-42.459-19.98-42.459-44.956v-194.81c0-24.976 19.98-42.459 42.459-42.459h194.81c22.478 0 42.459 19.98 42.459 42.459v194.81c0 24.976-19.98 42.459-42.459 42.459h-194.81zM432.078 760.195v-194.81c0-9.99-7.493-17.483-17.483-17.483h-197.307c-9.99 0-17.483 7.493-17.483 17.483v194.81c0 9.99 7.493 17.483 17.483 17.483h194.81c9.99 2.498 19.98-7.493 19.98-17.483z" />
211
+ <glyph unicode="&#xe914;" glyph-name="iframe" data-tags="iframe" horiz-adv-x="887" d="M749.268 960h-611.902c-74.927 0-137.366-62.439-137.366-137.366v-142.361c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v142.361c0 62.439 49.951 112.39 112.39 112.39h611.902c62.439 0 112.39-49.951 112.39-112.39v-749.268c0-62.439-49.951-112.39-112.39-112.39h-611.902c-62.439 0-112.39 49.951-112.39 112.39v399.61c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-399.61c0-74.927 62.439-137.366 137.366-137.366h611.902c74.927 0 137.366 62.439 137.366 137.366v749.268c0 74.927-59.941 137.366-137.366 137.366zM244.761 113.327c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h204.8c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-204.8zM539.473 113.327c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h102.4c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-102.4zM474.537 877.58h-279.727c-62.439 0-112.39-49.951-112.39-112.39v-424.585c0-62.439 49.951-112.39 112.39-112.39h499.512c62.439 0 112.39 49.951 112.39 112.39v424.585c0 62.439-49.951 112.39-112.39 112.39h-84.917c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h84.917c47.454 0 87.415-39.961 87.415-87.415v-424.585c0-47.454-39.961-87.415-87.415-87.415h-499.512c-47.454 0-87.415 39.961-87.415 87.415v424.585c0 47.454 39.961 87.415 87.415 87.415h279.727c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM262.244 305.639c2.498-2.498 4.995-4.995 9.99-4.995 2.498 0 4.995 0 7.493 2.498l157.346 152.351 92.41-77.424 119.883 149.854 57.444-62.439c4.995-4.995 12.488-4.995 17.483 0s4.995 12.488 0 17.483l-74.927 84.917-122.38-152.351-89.912 74.927-174.829-167.337c-4.995-2.498-4.995-12.488 0-17.483zM439.571 580.371c0 32.468-27.473 59.941-59.941 59.941s-59.941-27.473-59.941-59.941c0-32.468 27.473-59.941 59.941-59.941 32.468 2.498 59.941 27.473 59.941 59.941zM347.161 580.371c0 19.98 14.985 34.966 34.966 34.966s34.966-14.985 34.966-34.966-14.985-34.966-34.966-34.966-34.966 17.483-34.966 34.966z" />
212
+ <glyph unicode="&#xe915;" glyph-name="image-comparison" data-tags="image-comparison" horiz-adv-x="1829" d="M1828.978 189.156v617.244c0 85.333-68.267 153.6-153.6 153.6h-238.933c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 11.378-14.222h238.933c68.267 0 125.156-56.889 125.156-125.156v-580.267l-85.333 93.867-182.044-227.556-133.689 113.778-253.156-241.778h-409.6v332.8c76.8 8.533 139.378 71.111 139.378 150.756s-59.733 145.067-139.378 150.756v332.8h398.222c8.533 0 14.222 5.689 14.222 14.222s-8.533 14.222-14.222 14.222h-978.489c-85.333 0-153.6-68.267-153.6-153.6v-716.8c0-85.333 68.267-153.6 153.6-153.6h324.267c8.533 0 14.222 5.689 14.222 14.222s-8.533 14.222-14.222 14.222h-324.267c-68.267 0-125.156 56.889-125.156 125.156v716.8c0 68.267 56.889 125.156 125.156 125.156h551.822v-332.8c-76.8-8.533-139.378-71.111-139.378-150.756s59.733-145.067 139.378-150.756v-347.022c0-8.533 5.689-14.222 14.222-14.222h955.733c85.333 0 153.6 68.267 153.6 153.6v99.556c0 0 0 0 0 0zM594.489 448c0 68.267 56.889 125.156 125.156 125.156s125.156-56.889 125.156-125.156c0-68.267-56.889-125.156-125.156-125.156s-125.156 56.889-125.156 125.156zM1675.378-35.556h-489.244l213.333 204.8 136.533-113.778 179.2 224.711 85.333-93.867v-93.867c0-71.111-56.889-128-125.156-128zM1314.133 260.267c45.511 0 82.489 36.978 82.489 82.489s-36.978 82.489-82.489 82.489-82.489-36.978-82.489-82.489 34.133-82.489 82.489-82.489zM1314.133 399.644c31.289 0 54.044-25.6 54.044-54.044 0-31.289-25.6-54.044-54.044-54.044-31.289 0-54.044 25.6-54.044 54.044-2.844 31.289 22.756 54.044 54.044 54.044zM739.556 374.044c2.844 0 8.533 0 11.378 2.844 5.689 5.689 5.689 14.222 0 19.911l-48.356 51.2 48.356 48.356c5.689 5.689 5.689 14.222 0 19.911s-14.222 5.689-19.911 0l-71.111-68.267 68.267-71.111c5.689-2.844 8.533-2.844 11.378-2.844z" />
213
+ <glyph unicode="&#xe916;" glyph-name="image-gallery" data-tags="image-gallery" horiz-adv-x="1603" d="M366.080 960h-286.72c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-35.84 79.36-79.36 79.36zM25.6 880.64c0 30.72 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-151.040l-51.2 53.76-110.080-135.68-79.36 69.12-148.48-143.36c-2.56 7.68-5.12 12.8-5.12 20.48v286.72zM366.080 540.16h-286.72c-12.8 0-23.040 5.12-33.28 12.8l133.12 128 81.92-69.12 107.52 133.12 48.64-53.76v-99.84c2.56-25.6-23.040-51.2-51.2-51.2zM128 739.84c30.72 0 53.76 25.6 53.76 53.76s-23.040 53.76-53.76 53.76-53.76-25.6-53.76-53.76 23.040-53.76 53.76-53.76zM128 821.76c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16-28.16 12.8-28.16 28.16 12.8 28.16 28.16 28.16zM944.64 960h-286.72c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-35.84 79.36-79.36 79.36zM998.4 593.92c0-28.16-23.040-53.76-53.76-53.76h-286.72c-28.16 0-53.76 23.040-53.76 53.76v286.72c0 28.16 23.040 53.76 53.76 53.76h286.72c30.72 0 53.76-23.040 53.76-53.76v-286.72zM1525.76 960h-289.28c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-33.28 79.36-76.8 79.36zM1185.28 880.64c0 28.16 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-151.040l-51.2 53.76-110.080-135.68-79.36 66.56-148.48-143.36c-2.56 5.12-5.12 12.8-5.12 20.48v289.28zM1525.76 540.16h-289.28c-12.8 0-23.040 5.12-33.28 12.8l133.12 128 81.92-69.12 107.52 133.12 48.64-53.76v-99.84c2.56-25.6-20.48-51.2-48.64-51.2zM1287.68 739.84c30.72 0 53.76 25.6 53.76 53.76s-25.6 53.76-53.76 53.76-53.76-25.6-53.76-53.76 23.040-53.76 53.76-53.76zM1287.68 821.76c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16-28.16 12.8-28.16 28.16 12.8 28.16 28.16 28.16zM366.080 381.44h-286.72c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-35.84 79.36-79.36 79.36zM419.84 15.36c0-28.16-23.040-53.76-53.76-53.76h-286.72c-30.72 0-53.76 23.040-53.76 53.76v286.72c0 28.16 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-286.72zM944.64 381.44h-286.72c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-35.84 79.36-79.36 79.36zM604.16 302.080c0 28.16 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-151.040l-51.2 53.76-110.080-135.68-79.36 66.56-148.48-143.36c-2.56 5.12-5.12 12.8-5.12 20.48v289.28zM944.64-38.4h-286.72c-12.8 0-23.040 5.12-33.28 12.8l133.12 128 81.92-69.12 107.52 133.12 48.64-53.76v-99.84c2.56-28.16-20.48-51.2-51.2-51.2zM706.56 158.72c30.72 0 53.76 25.6 53.76 53.76s-25.6 53.76-53.76 53.76c-30.72 0-53.76-25.6-53.76-53.76s25.6-53.76 53.76-53.76zM706.56 243.2c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16-28.16 12.8-28.16 28.16 12.8 28.16 28.16 28.16zM1525.76 381.44h-289.28c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-33.28 79.36-76.8 79.36zM1576.96 15.36c0-28.16-23.040-53.76-53.76-53.76h-286.72c-28.16 0-53.76 23.040-53.76 53.76v286.72c0 28.16 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-286.72z" />
214
+ <glyph unicode="&#xe917;" glyph-name="image-justify" data-tags="image-justify" horiz-adv-x="1603" d="M79.36 514.56h875.52c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-35.84 79.36-79.36 79.36h-875.52c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36zM954.88 540.16h-307.2l120.32 115.2 81.92-69.12 107.52 133.12 48.64-53.76v-71.68c2.56-28.16-23.040-53.76-51.2-53.76zM25.6 880.64c0 30.72 23.040 53.76 53.76 53.76h875.52c28.16 0 53.76-23.040 53.76-53.76v-176.64l-51.2 56.32-110.080-135.68-79.36 66.56-156.16-151.040h-532.48c-28.16 0-53.76 23.040-53.76 53.76v286.72zM716.8 714.24c30.72 0 53.76 25.6 53.76 53.76 0 30.72-25.6 53.76-53.76 53.76-30.72 0-53.76-25.6-53.76-53.76 0-30.72 23.040-53.76 53.76-53.76zM716.8 796.16c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16-28.16 12.8-28.16 28.16 12.8 28.16 28.16 28.16zM1525.76 960h-289.28c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-33.28 79.36-76.8 79.36zM1576.96 593.92c0-28.16-23.040-53.76-53.76-53.76h-286.72c-28.16 0-53.76 23.040-53.76 53.76v286.72c0 28.16 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-286.72zM1525.76 381.44h-878.080c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h875.52c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-33.28 79.36-76.8 79.36zM1576.96 15.36c0-28.16-23.040-53.76-53.76-53.76h-875.52c-28.16 0-53.76 23.040-53.76 53.76v286.72c0 28.16 23.040 53.76 53.76 53.76h875.52c28.16 0 53.76-23.040 53.76-53.76v-286.72zM366.080 381.44h-286.72c-43.52 0-79.36-35.84-79.36-79.36v-286.72c0-43.52 35.84-79.36 79.36-79.36h286.72c43.52 0 79.36 35.84 79.36 79.36v286.72c0 43.52-35.84 79.36-79.36 79.36zM25.6 302.080c0 28.16 23.040 53.76 53.76 53.76h286.72c28.16 0 53.76-23.040 53.76-53.76v-151.040l-51.2 53.76-110.080-135.68-79.36 69.12-148.48-143.36c-2.56 5.12-5.12 12.8-5.12 20.48v286.72zM366.080-38.4h-286.72c-12.8 0-23.040 5.12-33.28 12.8l133.12 128 81.92-69.12 107.52 133.12 48.64-53.76v-99.84c2.56-28.16-23.040-51.2-51.2-51.2zM128 158.72c30.72 0 53.76 25.6 53.76 53.76s-23.040 56.32-53.76 56.32-53.76-25.6-53.76-53.76 23.040-56.32 53.76-56.32zM128 243.2c15.36 0 28.16-12.8 28.16-28.16s-12.8-30.72-28.16-30.72-28.16 12.8-28.16 28.16 12.8 30.72 28.16 30.72z" />
215
+ <glyph unicode="&#xe918;" glyph-name="image-magnifier" data-tags="image-magnifier" horiz-adv-x="879" d="M879.141 183.259v299.707c0 64.937-52.449 119.883-119.883 119.883h-129.873c24.976 37.463 39.961 79.922 39.961 127.376 0 127.376-102.4 229.776-229.776 229.776s-229.776-102.4-229.776-229.776 102.4-229.776 229.776-229.776c67.434 0 129.873 29.971 172.332 77.424h147.356c52.449 0 94.907-42.459 94.907-94.907v-269.737l-84.917 92.41-179.824-219.785-129.873 109.893-244.761-234.771h-94.907c-52.449 0-94.907 42.459-94.907 94.907v427.083c0 52.449 42.459 94.907 94.907 94.907h29.971c7.493 0 12.488 4.995 12.488 12.488s-4.995 9.99-12.488 9.99h-29.971c-64.937 0-119.883-52.449-119.883-119.883v-427.083c0-64.937 52.449-117.385 119.883-117.385h99.902c0 0 0 0 0 0s0 0 2.498 0h539.473c64.937 0 119.883 52.449 119.883 119.883v124.878c-2.498 0-2.498 0-2.498 2.498zM439.571 522.927c-112.39 0-204.8 92.41-204.8 204.8s92.41 207.298 204.8 207.298 204.8-92.41 204.8-204.8-92.41-207.298-204.8-207.298zM759.259-39.024h-507.005l209.795 202.302 132.371-112.39 174.829 217.288 84.917-92.41v-122.38c0-49.951-42.459-92.41-94.907-92.41zM457.054 333.112c0 44.956-34.966 79.922-79.922 79.922s-79.922-34.966-79.922-79.922c0-44.956 34.966-79.922 79.922-79.922s79.922 34.966 79.922 79.922zM322.185 333.112c0 29.971 24.976 54.946 54.946 54.946s54.946-24.976 54.946-54.946-24.976-54.946-54.946-54.946c-29.971 0-54.946 24.976-54.946 54.946zM541.971 742.712h-92.41v89.912c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-89.912h-89.912c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h207.298c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM439.571 685.268c-7.493 0-12.488-4.995-12.488-12.488v-47.454c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v47.454c0 7.493-4.995 12.488-12.488 12.488z" />
216
+ <glyph unicode="&#xe919;" glyph-name="image-masonry" data-tags="image-masonry" horiz-adv-x="1580" d="M389.12 960h-309.76c-43.52 0-79.36-35.84-79.36-79.36v-473.6c0-43.52 35.84-79.36 79.36-79.36h312.32c43.52 0 79.36 35.84 79.36 79.36v473.6c-2.56 43.52-38.4 79.36-81.92 79.36zM25.6 880.64c0 30.72 23.040 53.76 53.76 53.76h312.32c28.16 0 53.76-23.040 53.76-53.76v-327.68l-53.76 58.88-115.2-143.36-84.48 71.68-158.72-151.040c-5.12 5.12-7.68 12.8-7.68 20.48v471.040zM389.12 355.84h-309.76c-12.8 0-25.6 5.12-33.28 12.8l143.36 138.24 87.040-74.24 112.64 140.8 53.76-58.88v-107.52c0-28.16-23.040-51.2-53.76-51.2zM135.68 568.32c30.72 0 56.32 25.6 56.32 56.32s-25.6 56.32-56.32 56.32-58.88-25.6-58.88-56.32 25.6-56.32 58.88-56.32zM135.68 655.36c17.92 0 30.72-12.8 30.72-30.72s-12.8-30.72-30.72-30.72c-17.92 0-30.72 12.8-30.72 30.72s12.8 30.72 30.72 30.72zM944.64 404.48h-309.76c-43.52 0-79.36-35.84-79.36-79.36v-312.32c0-43.52 35.84-79.36 79.36-79.36h312.32c43.52 0 79.36 35.84 79.36 79.36v312.32c-2.56 43.52-38.4 79.36-81.92 79.36zM998.4 12.8c0-28.16-23.040-53.76-53.76-53.76h-309.76c-28.16 0-53.76 23.040-53.76 53.76v312.32c0 28.16 23.040 53.76 53.76 53.76h312.32c28.16 0 53.76-23.040 53.76-53.76v-312.32zM389.12 243.2h-309.76c-43.52 0-79.36-35.84-79.36-79.36v-148.48c0-43.52 35.84-79.36 79.36-79.36h312.32c43.52 0 79.36 35.84 79.36 79.36v148.48c-2.56 43.52-38.4 79.36-81.92 79.36zM442.88 15.36c0-28.16-23.040-53.76-53.76-53.76h-309.76c-30.72 0-53.76 23.040-53.76 53.76v148.48c0 28.16 23.040 53.76 53.76 53.76h312.32c28.16 0 53.76-23.040 53.76-53.76v-148.48zM1502.72 565.76h-312.32c-43.52 0-79.36-35.84-79.36-79.36v-473.6c0-43.52 35.84-79.36 79.36-79.36h312.32c43.52 0 79.36 35.84 79.36 79.36v473.6c-2.56 43.52-35.84 79.36-79.36 79.36zM1139.2 486.4c0 28.16 23.040 53.76 53.76 53.76h312.32c28.16 0 53.76-23.040 53.76-53.76v-327.68l-53.76 58.88-115.2-143.36-84.48 71.68-158.72-151.040c-2.56 5.12-5.12 12.8-5.12 20.48v471.040zM1502.72-38.4h-312.32c-12.8 0-25.6 5.12-33.28 12.8l143.36 138.24 87.040-74.24 112.64 140.8 53.76-58.88v-107.52c0-28.16-23.040-51.2-51.2-51.2zM1246.72 171.52c30.72 0 56.32 25.6 56.32 56.32s-25.6 56.32-56.32 56.32-56.32-25.6-56.32-56.32 25.6-56.32 56.32-56.32zM1246.72 261.12c17.92 0 30.72-12.8 30.72-30.72s-12.8-30.72-30.72-30.72-30.72 12.8-30.72 30.72 15.36 30.72 30.72 30.72zM1502.72 960h-312.32c-43.52 0-79.36-35.84-79.36-79.36v-148.48c0-43.52 35.84-79.36 79.36-79.36h312.32c43.52 0 79.36 35.84 79.36 79.36v148.48c-2.56 43.52-35.84 79.36-79.36 79.36zM1553.92 732.16c0-28.16-23.040-53.76-53.76-53.76h-309.76c-28.16 0-53.76 23.040-53.76 53.76v148.48c0 28.16 23.040 53.76 53.76 53.76h312.32c28.16 0 53.76-23.040 53.76-53.76v-148.48zM944.64 960h-309.76c-43.52 0-79.36-35.84-79.36-79.36v-312.32c0-43.52 35.84-79.36 79.36-79.36h312.32c43.52 0 79.36 35.84 79.36 79.36v312.32c-2.56 43.52-38.4 79.36-81.92 79.36zM998.4 570.88c0-28.16-23.040-53.76-53.76-53.76h-309.76c-28.16 0-53.76 23.040-53.76 53.76v309.76c0 28.16 23.040 53.76 53.76 53.76h312.32c28.16 0 51.2-23.040 51.2-53.76v-309.76z" />
217
+ <glyph unicode="&#xe91a;" glyph-name="inline-svg" data-tags="inline-svg" horiz-adv-x="1959" d="M1777.135 305.961c-13.213 0-26.426 0-39.639-3.303-102.4 218.013-293.987 383.174-525.213 449.239h449.239c6.606-39.639 42.942-69.368 82.581-69.368 46.245 0 85.884 39.639 85.884 85.884s-39.639 85.884-85.884 85.884c-42.942 0-75.974-29.729-82.581-69.368h-498.787c-3.303 99.097-85.884 178.374-184.981 178.374s-178.374-79.277-184.981-178.374h-445.935c-6.606 36.335-42.942 66.065-82.581 66.065-46.245 0-85.884-39.639-85.884-85.884s39.639-82.581 85.884-82.581c42.942 0 75.974 29.729 82.581 69.368h399.69c-231.226-66.065-422.813-231.226-525.213-449.239-13.213 3.303-26.426 3.303-39.639 3.303-102.4 0-184.981-82.581-184.981-184.981s85.884-184.981 188.284-184.981 184.981 82.581 184.981 184.981c0 75.974-46.245 142.039-112.31 168.465 102.4 224.619 303.897 386.477 545.032 439.329 19.819-79.277 92.49-138.735 178.374-138.735s158.555 59.458 178.374 138.735c237.832-52.852 442.632-218.013 545.032-439.329-66.065-26.426-112.31-92.49-112.31-168.465 0-102.4 82.581-184.981 184.981-184.981s184.981 82.581 184.981 184.981-85.884 184.981-184.981 184.981zM1744.103 817.961c29.729 0 52.852-23.123 52.852-52.852s-23.123-52.852-52.852-52.852-52.852 23.123-52.852 52.852c3.303 29.729 26.426 52.852 52.852 52.852zM336.929 120.981c0-82.581-69.368-151.948-151.948-151.948s-151.948 69.368-151.948 151.948 69.368 151.948 151.948 151.948 151.948-69.368 151.948-151.948zM264.258 715.561c-29.729 0-52.852 23.123-52.852 52.852 0 26.426 23.123 49.548 52.852 49.548s49.548-23.123 52.852-49.548c0 0 0 0 0-3.303s0 0 0-3.303c-3.303-26.426-26.426-46.245-52.852-46.245zM981.058 623.071c-82.581 0-151.948 69.368-151.948 151.948s66.065 151.948 151.948 151.948 151.948-69.368 151.948-151.948-69.368-151.948-151.948-151.948zM1777.135-30.968c-82.581 0-151.948 69.368-151.948 151.948s69.368 151.948 151.948 151.948 151.948-69.368 151.948-151.948-69.368-151.948-151.948-151.948z" />
218
+ <glyph unicode="&#xe91b;" glyph-name="instagram" data-tags="instagram" d="M886.634-64h-749.268c-74.927 0-137.366 62.439-137.366 137.366v749.268c0 74.927 62.439 137.366 137.366 137.366h749.268c74.927 0 137.366-62.439 137.366-137.366v-749.268c0-74.927-62.439-137.366-137.366-137.366zM137.366 935.024c-62.439 0-112.39-49.951-112.39-112.39v-749.268c0-62.439 49.951-112.39 112.39-112.39h749.268c62.439 0 112.39 49.951 112.39 112.39v749.268c0 62.439-49.951 112.39-112.39 112.39h-749.268zM512 185.756c-144.859 0-262.244 117.385-262.244 262.244s117.385 262.244 262.244 262.244c144.859 0 262.244-117.385 262.244-262.244s-117.385-262.244-262.244-262.244zM512 685.268c-129.873 0-237.268-104.898-237.268-237.268s104.898-237.268 237.268-237.268 237.268 104.898 237.268 237.268-107.395 237.268-237.268 237.268zM829.19 680.273c-42.459 0-77.424 34.966-77.424 77.424s34.966 77.424 77.424 77.424 77.424-34.966 77.424-77.424c0-42.459-34.966-77.424-77.424-77.424zM829.19 810.146c-29.971 0-52.449-22.478-52.449-52.449s22.478-52.449 52.449-52.449 52.449 22.478 52.449 52.449c0 27.473-22.478 52.449-52.449 52.449z" />
219
+ <glyph unicode="&#xe91c;" glyph-name="listing" data-tags="listing" horiz-adv-x="1033" d="M369.778 820.622h648.533c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222h-648.533c-8.533 0-14.222-5.689-14.222-14.222s8.533-14.222 14.222-14.222zM125.156 960c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222c54.044 0 96.711-42.667 96.711-96.711s-42.667-96.711-96.711-96.711c-54.044 0-96.711 42.667-96.711 96.711 0 8.533-5.689 14.222-14.222 14.222s-14.222-5.689-14.222-14.222c0-68.267 56.889-125.156 125.156-125.156s125.156 56.889 125.156 125.156-56.889 125.156-125.156 125.156zM1018.311 462.222h-648.533c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h648.533c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM236.089 462.222c-8.533 0-14.222-5.689-14.222-14.222 0-54.044-42.667-96.711-96.711-96.711s-96.711 42.667-96.711 96.711c0 54.044 42.667 96.711 96.711 96.711 8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222c-68.267 0-125.156-56.889-125.156-125.156s56.889-125.156 125.156-125.156 125.156 56.889 125.156 125.156c0 8.533-5.689 14.222-14.222 14.222zM1018.311 75.378h-648.533c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h648.533c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM125.156 186.311c-68.267 0-125.156-56.889-125.156-125.156s56.889-125.156 125.156-125.156 125.156 56.889 125.156 125.156-56.889 125.156-125.156 125.156zM125.156-35.556c-54.044 0-96.711 42.667-96.711 96.711s42.667 96.711 96.711 96.711c54.044 0 96.711-42.667 96.711-96.711s-42.667-96.711-96.711-96.711z" />
220
+ <glyph unicode="&#xe91d;" glyph-name="music-player" data-tags="music-player" horiz-adv-x="982" d="M894.127 860.098c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488c32.468 0 59.941-27.473 59.941-59.941v-654.361c0-32.468-27.473-59.941-59.941-59.941h-57.444v297.21c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-337.171c0-32.468-27.473-59.941-59.941-59.941h-636.878c-49.951 0-89.912 39.961-89.912 89.912v794.224c0 49.951 39.961 89.912 89.912 89.912h609.405c49.951 0 89.912-39.961 89.912-89.912v-307.2c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v307.2c0 64.937-52.449 114.888-114.888 114.888h-609.405c-64.937 0-114.888-49.951-114.888-114.888v-796.722c0-62.439 49.951-112.39 114.888-112.39h639.376c47.454 0 84.917 37.463 84.917 84.917v14.985h57.444c47.454 0 84.917 37.463 84.917 84.917v654.361c0 47.454-39.961 84.917-87.415 84.917zM531.98 345.6c-44.956 0-79.922-34.966-79.922-79.922s34.966-79.922 79.922-79.922c44.956 0 79.922 34.966 79.922 79.922 0 0 0 2.498 0 2.498v292.215c0 17.483-9.99 34.966-24.976 42.459l-167.337 102.4c-12.488 7.493-27.473 7.493-39.961 0s-19.98-19.98-19.98-34.966v-207.298c-14.985 14.985-34.966 22.478-54.946 22.478-42.459 0-79.922-34.966-79.922-79.922s34.966-79.922 79.922-79.922c44.956 0 79.922 34.966 79.922 79.922 0 0 0 0 0 0v264.741c0 4.995 2.498 9.99 7.493 12.488 2.498 2.498 7.493 4.995 14.985 0l167.337-102.4c7.493-4.995 12.488-12.488 12.488-22.478v-234.771c-12.488 14.985-32.468 22.478-54.946 22.478zM304.702 350.595c-29.971 0-54.946 24.976-54.946 54.946s24.976 54.946 54.946 54.946 54.946-24.976 54.946-54.946c2.498-29.971-22.478-54.946-54.946-54.946zM531.98 210.732c-29.971 0-54.946 24.976-54.946 54.946s24.976 54.946 54.946 54.946c29.971 0 54.946-22.478 54.946-52.449v-2.498c0 0 0 0 0 0 0-29.971-22.478-54.946-54.946-54.946z" />
221
+ <glyph unicode="&#xe91e;" glyph-name="news-ticker" data-tags="news-ticker" horiz-adv-x="1309" d="M1098.724 611.286h-370.854c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838h370.854c8.303 0 13.838 5.535 13.838 13.838s-8.303 13.838-13.838 13.838zM727.87 450.768h177.124c8.303 0 13.838 5.535 13.838 13.838s-5.535 13.838-13.838 13.838h-177.124c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838zM1098.724 744.13h-370.854c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838h370.854c8.303 0 13.838 5.535 13.838 13.838s-8.303 13.838-13.838 13.838zM390.227 464.605c0 0 0-2.768 0 0 0-2.768 2.768-2.768 0 0 11.070-8.303 22.141-11.070 33.211-11.070h160.519c30.443 0 52.584 24.908 52.584 52.584v182.659c0 30.443-24.908 52.584-52.584 52.584h-160.519c-30.443 0-52.584-24.908-52.584-52.584v-185.427c0-13.838 8.303-30.443 19.373-38.746zM611.632 506.119c0-13.838-11.070-24.908-24.908-24.908h-160.519c0 0 0 0 0 0l182.659 224.173c2.768-2.768 2.768-8.303 2.768-13.838v-185.427zM398.53 688.778c0 13.838 11.070 24.908 24.908 24.908h157.751l-182.659-221.405c0 2.768-2.768 5.535-2.768 11.070v185.427zM1098.724 328.995h-370.854c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838h370.854c8.303 0 13.838 5.535 13.838 13.838s-8.303 13.838-13.838 13.838zM384.692 301.319h199.265c8.303 0 13.838 5.535 13.838 13.838s-5.535 13.838-13.838 13.838h-199.265c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838zM384.692 151.87h370.854c8.303 0 13.838 5.535 13.838 13.838s-5.535 13.838-13.838 13.838h-370.854c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838zM1098.724 179.546h-199.265c-8.303 0-13.838-5.535-13.838-13.838s5.535-13.838 13.838-13.838h199.265c8.303 0 13.838 5.535 13.838 13.838s-8.303 13.838-13.838 13.838zM188.195 434.162c8.303 0 13.838 5.535 13.838 13.838v359.784c0 69.189 55.351 124.541 124.541 124.541h523.070c8.303 0 13.838 5.535 13.838 13.838s-5.535 13.838-13.838 13.838h-523.070c-83.027 0-152.216-69.189-152.216-152.216v-359.784c0-8.303 5.535-13.838 13.838-13.838zM1156.843 960h-88.562c-8.303 0-16.605-5.535-16.605-13.838s8.303-13.838 13.838-13.838h88.562c69.189 0 124.541-55.351 124.541-124.541v-719.568c0-69.189-55.351-124.541-124.541-124.541h-830.27c-69.189 0-124.541 55.351-124.541 124.541v182.659c0 8.303-5.535 13.838-13.838 13.838s-13.838-5.535-13.838-13.838v-182.659c0-83.027 69.189-152.216 152.216-152.216h830.27c83.027 0 152.216 69.189 152.216 152.216v719.568c2.768 83.027-66.422 152.216-149.449 152.216zM152.216 821.622c8.303 0 13.838 5.535 13.838 13.838s-5.535 13.838-13.838 13.838c-83.027 0-152.216-69.189-152.216-152.216v-498.162c0-83.027 69.189-152.216 152.216-152.216 8.303 0 13.838 5.535 13.838 13.838s-5.535 13.838-13.838 13.838c-69.189 0-124.541 55.351-124.541 124.541v498.162c0 69.189 55.351 124.541 124.541 124.541z" />
222
+ <glyph unicode="&#xe91f;" glyph-name="off-canvus-menu" data-tags="off-canvus-menu" horiz-adv-x="967" d="M849.171 737.717c-4.995 4.995-12.488 4.995-17.483 2.498-4.995-4.995-4.995-12.488-2.498-17.483 72.429-82.42 112.39-189.815 112.39-299.707 0-252.254-204.8-459.551-459.551-459.551-252.254-2.498-457.054 202.302-457.054 457.054 0 252.254 204.8 457.054 459.551 457.054 54.946 0 107.395-9.99 157.346-27.473l-72.429-22.478c-7.493-2.498-9.99-9.99-7.493-14.985s7.493-9.99 12.488-9.99c0 0 2.498 0 2.498 0l112.39 32.468-32.468 112.39c-2.498 7.493-9.99 9.99-14.985 7.493-7.493-2.498-9.99-9.99-7.493-14.985l19.98-72.429c-54.946 19.98-109.893 29.971-169.834 29.971-267.239 4.995-484.527-212.293-484.527-477.034 0-267.239 217.288-484.527 484.527-484.527s484.527 217.288 484.527 484.527c-2.498 114.888-44.956 227.278-119.883 317.19zM656.859 555.395h-347.161c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h347.161c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM656.859 435.512h-347.161c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h347.161c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM656.859 315.629h-347.161c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h347.161c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488z" />
223
+ <glyph unicode="&#xe920;" glyph-name="parallax" data-tags="parallax" horiz-adv-x="1114" d="M1101.424 413.034c-7.493 0-12.488-4.995-12.488-12.488v-97.405c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v97.405c0 4.995-4.995 12.488-12.488 12.488zM1101.424 510.439c-7.493 0-12.488-4.995-12.488-12.488v-17.483c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v17.483c0 7.493-4.995 12.488-12.488 12.488zM1101.424 607.844c-7.493 0-12.488-4.995-12.488-12.488v-17.483c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v17.483c0 4.995-4.995 12.488-12.488 12.488zM439.571 492.956c0-39.961 32.468-69.932 72.429-69.932s72.429 32.468 72.429 69.932c0 39.961-32.468 72.429-72.429 72.429s-72.429-32.468-72.429-72.429zM556.956 492.956c0-24.976-19.98-44.956-44.956-44.956s-47.454 19.98-47.454 44.956 19.98 47.454 47.454 47.454 44.956-19.98 44.956-47.454zM684.332 113.327l-57.444-57.444c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498l27.473 27.473c-4.995-57.444-52.449-102.4-112.39-102.4h-292.215c-62.439 0-112.39 49.951-112.39 112.39v72.429h29.971c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-74.927c-47.454-2.498-87.415 37.463-87.415 87.415v374.634c0 49.951 39.961 87.415 87.415 87.415h439.571c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-439.571c-62.439 2.498-112.39-49.951-112.39-112.39v-374.634c0-62.439 49.951-114.888 112.39-114.888h17.483v-72.429c0-74.927 62.439-137.366 137.366-137.366h289.717c72.429 0 132.371 57.444 137.366 129.873l29.971-29.971c4.995-4.995 12.488-4.995 17.483 0s4.995 12.488 0 17.483l-57.444 59.941zM836.683 750.205h-17.483v72.429c0 74.927-62.439 137.366-137.366 137.366h-292.215c-72.429 0-132.371-57.444-137.366-127.376l-27.473 27.473c-4.995 4.995-12.488 4.995-17.483 0s-4.995-12.488 0-17.483l57.444-57.444 57.444 57.444c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-27.473-27.473c7.493 57.444 54.946 102.4 112.39 102.4h289.717c62.439 0 112.39-49.951 112.39-112.39v-72.429h-64.937c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h107.395c49.951 0 87.415-39.961 87.415-87.415v-242.263l-72.429 79.922-154.849-192.312-114.888 94.907-214.79-207.298h-57.444c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h526.985c62.439 0 112.39 49.951 112.39 112.39v377.132c2.498 62.439-47.454 114.888-109.893 114.888zM836.683 170.771h-432.078l179.824 172.332 117.385-97.405 152.351 189.815 72.429-77.424v-97.405c-2.498-49.951-42.459-89.912-89.912-89.912z" />
224
+ <glyph unicode="&#xe921;" glyph-name="portfolio" data-tags="portfolio" horiz-adv-x="1703" d="M801.717-39.024h-102.4c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h102.4c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488zM904.117-39.024h-17.483c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h17.483c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1004.020-39.024h-17.483c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h17.483c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM911.61 772.683h-479.532c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h477.034c9.99 0 14.985 7.493 14.985 12.488s-4.995 12.488-12.488 12.488zM779.239 645.307h-347.161c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h347.161c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1303.727 960h-904.117c-74.927 0-137.366-62.439-137.366-137.366v-504.507c0-74.927 62.439-137.366 137.366-137.366h904.117c74.927 0 137.366 62.439 137.366 137.366v504.507c0 74.927-62.439 137.366-137.366 137.366zM1303.727 205.737h-384.624l169.834 164.839 112.39-92.41 147.356 182.322 67.434-74.927v-64.937c0-64.937-49.951-114.888-112.39-114.888zM1416.117 418.029l-69.932 74.927-147.356-182.322-109.893 92.41-204.8-197.307h-484.527c-62.439 0-112.39 49.951-112.39 112.39v504.507c0 62.439 49.951 112.39 112.39 112.39h904.117c62.439 0 112.39-49.951 112.39-112.39v-404.605zM144.859 797.659h52.449c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488h-52.449c-79.922 0-144.859-64.937-144.859-142.361v-219.785c0-79.922 64.937-142.361 144.859-142.361h52.449c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-52.449c-67.434 0-119.883 52.449-119.883 117.385v217.288c0 67.434 52.449 119.883 119.883 119.883zM1560.976 822.634h-52.449c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h52.449c64.937 0 119.883-52.449 119.883-119.883v-217.288c0-64.937-52.449-117.385-119.883-117.385h-52.449c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h52.449c79.922 0 144.859 64.937 144.859 142.361v217.288c-2.498 79.922-67.434 144.859-144.859 144.859zM1021.502 582.868c-37.463 0-69.932-29.971-69.932-69.932s29.971-69.932 69.932-69.932 69.932 29.971 69.932 69.932-32.468 69.932-69.932 69.932zM1021.502 470.478c-24.976 0-44.956 19.98-44.956 44.956s19.98 44.956 44.956 44.956 44.956-19.98 44.956-44.956-22.478-44.956-44.956-44.956z" />
225
+ <glyph unicode="&#xe922;" glyph-name="post-banner" data-tags="post-banner" horiz-adv-x="1484" d="M179.824 732.722h384.624c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-384.624c-4.995 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488zM179.824 617.834h289.717c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-289.717c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488zM179.824 502.946h179.824c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-179.824c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488zM94.907 300.644h804.215c52.449 0 94.907 42.459 94.907 94.907v469.541c0 52.449-42.459 94.907-94.907 94.907h-804.215c-52.449 0-94.907-42.459-94.907-94.907v-467.044c0-54.946 42.459-97.405 94.907-97.405zM24.976 865.093c0 37.463 32.468 69.932 69.932 69.932h804.215c39.961 0 69.932-32.468 69.932-69.932v-467.044c0-39.961-32.468-69.932-69.932-69.932h-804.215c-39.961 0-69.932 32.468-69.932 69.932v467.044zM1413.62 205.737h-1343.688c-37.463 0-69.932-32.468-69.932-69.932v-127.376c0-39.961 32.468-72.429 69.932-72.429h1341.19c39.961 0 69.932 32.468 69.932 69.932v129.873c2.498 37.463-29.971 69.932-67.434 69.932zM1458.576 5.932c0-24.976-19.98-44.956-44.956-44.956h-1343.688c-24.976 0-44.956 19.98-44.956 44.956v129.873c0 24.976 19.98 44.956 44.956 44.956h1341.19c24.976 0 44.956-19.98 44.956-44.956v-129.873zM1398.634 695.259h-217.288c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h217.288c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1338.693 610.341h-159.844c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 14.985-12.488h159.844c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-14.985 12.488zM1251.278 522.927h-69.932c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h69.932c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1401.132 960h-227.278c-44.956 0-82.42-37.463-82.42-82.42v-494.517c0-44.956 37.463-82.42 82.42-82.42h229.776c22.478 0 42.459 7.493 59.941 24.976 14.985 14.985 24.976 37.463 24.976 57.444v494.517c-4.995 44.956-39.961 82.42-87.415 82.42zM1458.576 383.063c0-14.985-4.995-29.971-17.483-39.961-9.99-9.99-24.976-17.483-42.459-17.483h-224.78c-32.468 0-57.444 24.976-57.444 57.444v494.517c-2.498 32.468 24.976 57.444 57.444 57.444h229.776c32.468 0 57.444-24.976 57.444-57.444v-494.517z" />
226
+ <glyph unicode="&#xe923;" glyph-name="post-carousel" data-tags="post-carousel" horiz-adv-x="2384" d="M166.874 846.222c-5.057 5.057-12.642 5.057-17.699 0l-149.175-131.477 149.175-134.005c2.528-2.528 5.057-2.528 7.585-2.528s7.585 2.528 10.114 5.057c5.057 5.057 5.057 12.642 0 17.699l-128.948 113.778 128.948 113.778c5.057 5.057 5.057 12.642 0 17.699zM2235.101 848.751c-5.057 5.057-12.642 5.057-17.699 0s-5.057-12.642 0-17.699l128.948-113.778-128.948-113.778c-5.057-5.057-5.057-12.642 0-17.699 2.528-2.528 5.057-5.057 10.114-5.057 2.528 0 5.057 0 7.585 2.528l149.175 134.005-149.175 131.477zM670.025 960h-237.669c-70.795 0-126.42-55.625-126.42-126.42v-237.669c0-70.795 55.625-126.42 126.42-126.42h237.669c70.795 0 126.42 55.625 126.42 126.42v237.669c0 70.795-55.625 126.42-126.42 126.42zM670.025 494.775h-237.669c-25.284 0-50.568 10.114-68.267 27.812l141.59 134.005 91.022-75.852 118.835 146.647 55.625-60.681c0 0 0 0 0 0v-68.267c0-58.153-42.983-103.664-101.136-103.664zM771.16 702.104l-58.153 63.21-121.363-151.704-88.494 75.852-154.232-149.175c-10.114 15.17-15.17 35.398-15.17 55.625v237.669c0 55.625 45.511 101.136 101.136 101.136h237.669c55.625 0 101.136-45.511 101.136-101.136v-131.477zM447.526 836.109c-32.869 0-58.153-25.284-58.153-58.153s25.284-58.153 58.153-58.153 58.153 25.284 58.153 58.153-25.284 58.153-58.153 58.153zM447.526 742.558c-17.699 0-32.869 15.17-32.869 32.869s15.17 32.869 32.869 32.869c17.699 0 32.869-15.17 32.869-32.869s-15.17-32.869-32.869-32.869zM758.519 375.941h-439.941c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h439.941c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM652.326 292.504h-333.748c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h333.748c7.585 0 12.642 5.057 12.642 12.642s-7.585 12.642-12.642 12.642zM523.378 209.067h-204.8c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h204.8c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1309.709 960h-237.669c-70.795 0-126.42-55.625-126.42-126.42v-237.669c0-70.795 55.625-126.42 126.42-126.42h237.669c70.795 0 126.42 55.625 126.42 126.42v237.669c0 70.795-55.625 126.42-126.42 126.42zM1309.709 494.775h-237.669c-25.284 0-50.568 10.114-68.267 27.812l139.062 134.005 91.022-75.852 118.835 146.647 55.625-60.681c0 0 0 0 0 0v-68.267c2.528-58.153-40.454-103.664-98.607-103.664zM1410.844 702.104l-58.153 63.21-121.363-151.704-88.494 75.852-154.232-149.175c-10.114 15.17-15.17 35.398-15.17 55.625v237.669c0 55.625 45.511 101.136 101.136 101.136h237.669c55.625 0 101.136-45.511 101.136-101.136v-131.477zM1087.21 836.109c-32.869 0-58.153-25.284-58.153-58.153s25.284-58.153 58.153-58.153 58.153 25.284 58.153 58.153-25.284 58.153-58.153 58.153zM1087.21 742.558c-17.699 0-32.869 15.17-32.869 32.869s15.17 32.869 32.869 32.869c17.699 0 32.869-15.17 32.869-32.869 2.528-17.699-12.642-32.869-32.869-32.869zM1398.202 375.941h-439.941c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h439.941c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1292.010 292.504h-333.748c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h333.748c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1163.062 209.067h-204.8c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h204.8c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1951.921 960h-237.669c-70.795 0-126.42-55.625-126.42-126.42v-237.669c0-70.795 55.625-126.42 126.42-126.42h237.669c70.795 0 126.42 55.625 126.42 126.42v237.669c0 70.795-58.153 126.42-126.42 126.42zM1951.921 494.775h-237.669c-25.284 0-50.568 10.114-68.267 27.812l139.062 134.005 91.022-75.852 118.835 146.647 55.625-60.681c0 0 0 0 0 0v-68.267c2.528-58.153-42.983-103.664-98.607-103.664zM2053.057 702.104l-58.153 63.21-121.363-151.704-88.494 75.852-154.232-149.175c-10.114 15.17-15.17 35.398-15.17 55.625v237.669c0 55.625 45.511 101.136 101.136 101.136h237.669c55.625 0 101.136-45.511 101.136-101.136v-131.477zM1726.894 836.109c-32.869 0-58.153-25.284-58.153-58.153s25.284-58.153 58.153-58.153 58.153 25.284 58.153 58.153-25.284 58.153-58.153 58.153zM1726.894 742.558c-17.699 0-32.869 15.17-32.869 35.398 0 17.699 15.17 32.869 32.869 32.869s32.869-15.17 32.869-32.869c2.528-20.227-12.642-35.398-32.869-35.398zM2037.886 375.941h-439.941c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h439.941c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1931.694 292.504h-333.748c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h333.748c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1802.746 209.067h-204.8c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h204.8c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1140.306-38.716h-103.664c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h103.664c7.585 0 12.642 5.057 12.642 12.642s-5.057 12.642-12.642 12.642zM1246.499-38.716h-17.699c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h17.699c7.585 0 12.642 5.057 12.642 12.642s-7.585 12.642-12.642 12.642zM1347.635-38.716h-17.699c-7.585 0-12.642-5.057-12.642-12.642s5.057-12.642 12.642-12.642h17.699c7.585 0 12.642 5.057 12.642 12.642s-7.585 12.642-12.642 12.642z" />
227
+ <glyph unicode="&#xe924;" glyph-name="post-grid" data-tags="post-grid" horiz-adv-x="2429" d="M504.789 960h-360.563c-80.766 0-144.225-63.459-144.225-144.225v-360.563c0-31.73 11.538-63.459 31.73-86.535 0-2.885 2.885-5.769 2.885-5.769s2.885-2.885 5.769-2.885c25.961-28.845 63.459-46.152 106.727-46.152h360.563c80.766 0 144.225 63.459 144.225 144.225v357.679c-2.885 80.766-66.344 144.225-147.11 144.225zM504.789 339.831h-360.563c-31.73 0-57.69 11.538-77.882 31.73l196.146 190.377 121.149-100.958 158.648 196.146 74.997-83.651c0 0 2.885-2.885 2.885-2.885v-112.496c0-66.344-51.921-118.265-115.38-118.265zM620.169 608.090l-80.766 89.42-161.532-199.031-118.265 100.958-213.454-204.8c-11.538 17.307-17.307 37.499-17.307 60.575v360.563c0 63.459 51.921 115.38 115.38 115.38h360.563c63.459 0 115.38-51.921 115.38-115.38v-207.685zM187.493 792.699c-40.383 0-74.997-34.614-74.997-74.997s34.614-74.997 74.997-74.997 74.997 34.614 74.997 74.997-34.614 74.997-74.997 74.997zM187.493 671.549c-25.961 0-46.152 20.192-46.152 46.152s20.192 46.152 46.152 46.152 46.152-20.192 46.152-46.152-20.192-46.152-46.152-46.152zM582.67 184.068h-568.248c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h568.248c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423zM455.752 74.456h-441.33c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h441.33c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423zM285.566-35.155h-271.144c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h271.144c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423zM1396.101 960h-363.448c-80.766 0-144.225-63.459-144.225-144.225v-360.563c0-31.73 11.538-63.459 31.73-86.535 0-2.885 2.885-5.769 2.885-5.769s2.885-2.885 5.769-2.885c25.961-28.845 63.459-46.152 106.727-46.152h360.563c80.766 0 144.225 63.459 144.225 144.225v357.679c0 80.766-66.344 144.225-144.225 144.225zM1396.101 339.831h-363.448c-31.73 0-57.69 11.538-77.882 31.73l196.146 190.377 121.149-100.958 158.648 196.146 77.882-83.651c0 0 2.885-2.885 2.885-2.885v-112.496c0-66.344-51.921-118.265-115.38-118.265zM1511.482 608.090l-80.766 89.42-161.532-196.146-118.265 98.073-213.454-204.8c-11.538 17.307-17.307 37.499-17.307 60.575v360.563c0 63.459 51.921 115.38 115.38 115.38h360.563c63.459 0 115.38-51.921 115.38-115.38v-207.685zM1075.921 792.699c-40.383 0-74.997-34.614-74.997-74.997s34.614-74.997 74.997-74.997 74.997 34.614 74.997 74.997-31.73 74.997-74.997 74.997zM1075.921 671.549c-25.961 0-46.152 20.192-46.152 46.152s20.192 46.152 46.152 46.152 46.152-20.192 46.152-46.152-20.192-46.152-46.152-46.152zM1473.983 184.068h-571.132c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h568.248c8.654 0 14.423 5.769 14.423 14.423s-2.885 14.423-11.538 14.423zM1347.065 74.456h-444.214c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h441.33c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-11.538 14.423zM1176.879-35.155h-274.028c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h274.028c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423zM2284.53 960h-360.563c-80.766 0-144.225-63.459-144.225-144.225v-360.563c0-31.73 11.538-63.459 31.73-86.535 0-2.885 2.885-5.769 2.885-5.769s2.885-2.885 5.769-2.885c25.961-28.845 63.459-46.152 106.727-46.152h360.563c80.766 0 144.225 63.459 144.225 144.225v357.679c-2.885 80.766-66.344 144.225-147.11 144.225zM1808.586 815.775c0 63.459 51.921 115.38 115.38 115.38h360.563c63.459 0 115.38-51.921 115.38-115.38v-207.685l-80.766 89.42-161.532-199.031-118.265 98.073-213.454-204.8c-11.538 17.307-17.307 37.499-17.307 60.575v363.448zM2284.53 339.831h-360.563c-31.73 0-57.69 11.538-77.882 31.73l196.146 190.377 121.149-100.958 158.648 196.146 74.997-83.651c0 0 2.885-2.885 2.885-2.885v-112.496c0-66.344-51.921-118.265-115.38-118.265zM1967.234 642.704c40.383 0 74.997 34.614 74.997 74.997s-34.614 74.997-74.997 74.997-74.997-34.614-74.997-74.997 31.73-74.997 74.997-74.997zM1967.234 763.854c25.961 0 46.152-20.192 46.152-46.152s-20.192-46.152-46.152-46.152-46.152 20.192-46.152 46.152 20.192 46.152 46.152 46.152zM2362.411 184.068h-568.248c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h568.248c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423zM2235.493 74.456h-441.33c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h441.33c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423zM2065.307-35.155h-274.028c-8.654 0-14.423-5.769-14.423-14.423s5.769-14.423 14.423-14.423h274.028c8.654 0 14.423 5.769 14.423 14.423s-5.769 14.423-14.423 14.423z" />
228
+ <glyph unicode="&#xe925;" glyph-name="post-slider" data-tags="post-slider" horiz-adv-x="1703" d="M801.717-39.024h-102.4c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h102.4c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488zM904.117-39.024h-17.483c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h17.483c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1004.020-39.024h-17.483c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h17.483c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1121.405 710.244h-539.473c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h541.971c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-14.985 12.488zM1056.468 582.868h-409.6c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h409.6c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM979.044 455.493h-254.751c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h252.254c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-9.99 12.488zM1303.727 960h-904.117c-74.927 0-137.366-62.439-137.366-137.366v-504.507c0-74.927 62.439-137.366 137.366-137.366h904.117c74.927 0 137.366 62.439 137.366 137.366v504.507c0 74.927-62.439 137.366-137.366 137.366zM1416.117 318.127c0-62.439-49.951-112.39-112.39-112.39h-904.117c-62.439 0-112.39 49.951-112.39 112.39v504.507c0 62.439 49.951 112.39 112.39 112.39h904.117c62.439 0 112.39-49.951 112.39-112.39v-504.507zM144.859 797.659h52.449c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488h-52.449c-79.922 0-144.859-64.937-144.859-142.361v-219.785c0-79.922 64.937-142.361 144.859-142.361h52.449c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-52.449c-67.434 0-119.883 52.449-119.883 117.385v217.288c0 67.434 52.449 119.883 119.883 119.883zM1560.976 822.634h-52.449c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h52.449c64.937 0 119.883-52.449 119.883-119.883v-217.288c0-64.937-52.449-117.385-119.883-117.385h-52.449c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h52.449c79.922 0 144.859 64.937 144.859 142.361v217.288c-2.498 79.922-67.434 144.859-144.859 144.859z" />
229
+ <glyph unicode="&#xe926;" glyph-name="pricing-list" data-tags="pricing-list" horiz-adv-x="982" d="M894.127 860.098c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488c32.468 0 59.941-27.473 59.941-59.941v-654.361c0-32.468-27.473-59.941-59.941-59.941h-57.444v297.21c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-307.2c0-49.951-39.961-92.41-92.41-92.41h-601.912c-49.951 0-92.41 39.961-92.41 92.41v791.727c0 52.449 39.961 92.41 92.41 92.41h606.907c49.951 0 92.41-39.961 92.41-92.41v-304.702c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v304.702c0 64.937-52.449 117.385-117.385 117.385h-606.907c-64.937 0-117.385-52.449-117.385-117.385v-791.727c0-62.439 52.449-114.888 117.385-114.888h606.907c57.444 0 107.395 42.459 114.888 99.902h57.444c47.454 0 84.917 37.463 84.917 84.917v654.361c0 47.454-39.961 84.917-87.415 84.917zM237.268 722.732c17.483 0 34.966-14.985 34.966-34.966 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 27.473-19.98 52.449-47.454 57.444v22.478c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-22.478c-24.976-4.995-44.956-27.473-44.956-57.444 0-32.468 27.473-59.941 57.444-59.941 17.483 0 34.966-14.985 34.966-32.468s-14.985-34.966-34.966-34.966c-17.483 0-32.468 14.985-32.468 34.966 0 7.493-4.995 14.985-12.488 14.985s-12.488-4.995-12.488-12.488c0-27.473 19.98-52.449 44.956-57.444v-22.478c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v22.478c27.473 4.995 47.454 29.971 47.454 57.444 0 32.468-27.473 57.444-59.941 57.444-17.483 0-32.468 14.985-32.468 34.966s14.985 32.468 32.468 32.468zM646.868 655.298h-267.239c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h267.239c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM646.868 727.727h-267.239c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h267.239c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM379.629 557.893h132.371c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-132.371c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM237.268 333.112c17.483 0 34.966-14.985 34.966-34.966 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 27.473-19.98 52.449-47.454 57.444v22.478c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-22.478c-27.473-4.995-44.956-29.971-44.956-57.444 0-32.468 27.473-57.444 57.444-57.444 17.483 0 34.966-14.985 34.966-34.966 0-17.483-14.985-32.468-34.966-32.468-17.483 0-32.468 14.985-32.468 32.468 0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488c0-27.473 19.98-52.449 44.956-57.444v-22.478c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v22.478c27.473 4.995 47.454 29.971 47.454 57.444 0 32.468-27.473 59.941-59.941 59.941-17.483 0-32.468 14.985-32.468 32.468 0 19.98 14.985 34.966 32.468 34.966zM659.356 253.19c0 7.493-4.995 12.488-12.488 12.488h-267.239c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h267.239c7.493 0 12.488 4.995 12.488 12.488zM646.868 338.107h-267.239c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h267.239c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM379.629 193.249c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h132.371c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-132.371z" />
230
+ <glyph unicode="&#xe927;" glyph-name="pricing-table" data-tags="pricing-table" horiz-adv-x="1798" d="M574.439-64h654.361v1024h-654.361v-1024zM599.415 935.024h604.41v-974.049h-604.41v974.049zM1101.424 263.18h-399.61c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h399.61c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488zM1051.473 188.254h-302.205c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h302.205c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM994.029 113.327h-187.317c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h187.317c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM901.62 487.961c-32.468 0-59.941 27.473-59.941 59.941 0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488c0-42.459 32.468-77.424 72.429-84.917v-39.961c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v39.961c39.961 4.995 72.429 42.459 72.429 84.917 0 47.454-37.463 84.917-84.917 84.917-32.468 0-59.941 27.473-59.941 59.941s27.473 59.941 59.941 59.941c32.468 0 59.941-27.473 59.941-59.941 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 42.459-32.468 77.424-72.429 84.917v42.459c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-39.961c-39.961-4.995-72.429-42.459-72.429-84.917 0-47.454 37.463-84.917 84.917-84.917 32.468 0 59.941-27.473 59.941-59.941s-27.473-62.439-59.941-62.439zM1436.098 278.166h264.741c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-264.741c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM1650.888 228.215h-167.337c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h167.337c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1338.693 805.151v-714.302h459.551v714.302h-459.551zM1773.268 115.824h-409.6v664.351h409.6v-664.351zM1568.468 520.429c-14.985 0-24.976 12.488-24.976 24.976 0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488c0-22.478 17.483-42.459 37.463-49.951v-14.985c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v14.985c22.478 4.995 37.463 24.976 37.463 49.951 0 27.473-22.478 49.951-49.951 49.951-14.985 0-24.976 12.488-24.976 24.976 0 14.985 9.99 24.976 24.976 24.976 0 0 0 0 0 0s0 0 0 0c14.985 0 24.976-12.488 24.976-24.976 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 22.478-17.483 42.459-37.463 49.951v14.985c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-14.985c-22.478-4.995-37.463-24.976-37.463-49.951 0-27.473 22.478-49.951 49.951-49.951 14.985 0 24.976-12.488 24.976-24.976s-9.99-24.976-24.976-24.976zM362.146 303.141h-264.741c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h264.741c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM312.195 228.215h-167.337c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h167.337c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM0 90.849h459.551v714.302h-459.551v-714.302zM24.976 780.176h409.6v-664.351h-409.6v664.351zM229.776 520.429c-14.985 0-24.976 12.488-24.976 24.976 0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488c0-22.478 17.483-42.459 37.463-49.951v-14.985c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v14.985c22.478 4.995 37.463 24.976 37.463 49.951 0 27.473-22.478 49.951-49.951 49.951-14.985 0-24.976 12.488-24.976 24.976 0 14.985 9.99 24.976 24.976 24.976 0 0 0 0 0 0s0 0 0 0c14.985 0 24.976-12.488 24.976-24.976 0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488c0 22.478-17.483 42.459-37.463 49.951v14.985c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-14.985c-22.478-4.995-37.463-24.976-37.463-49.951 0-27.473 22.478-49.951 49.951-49.951 14.985 0 24.976-12.488 24.976-24.976s-9.99-24.976-24.976-24.976z" />
231
+ <glyph unicode="&#xe928;" glyph-name="product-featured" data-tags="product-featured" horiz-adv-x="1017" d="M969.187 384.467h-269.080l-37.372 82.219c-4.983 12.457-9.966 24.915-12.457 37.372 0 0 0 0 0 0 0 2.491 0 4.983-2.491 4.983-2.491 14.949-4.983 27.406-4.983 42.355 0 19.932 2.491 42.355 9.966 62.287 12.457 42.355 19.932 82.219 19.932 117.1 0 54.813 2.491 129.557 22.423 166.929 4.983 7.474 4.983 17.44 0 24.915-2.491 7.474-9.966 12.457-17.44 14.949l-87.202 22.423-2.491-9.966c-24.915-77.236-92.185-127.066-171.912-127.066s-149.489 49.83-171.912 127.066l-7.474 9.966-84.71-19.932c-9.966-2.491-14.949-7.474-19.932-14.949-2.491-7.474-2.491-17.44 0-24.915 19.932-37.372 22.423-112.117 22.423-166.929 0-34.881 7.474-74.745 19.932-117.1 7.474-19.932 9.966-42.355 9.966-62.287 0-29.898-7.474-59.796-17.44-87.202l-122.083-271.572c0 0 0 0 0 0l-39.864-82.219c-7.474-17.44-7.474-37.372 0-54.813s22.423-29.898 39.864-37.372c119.591-39.864 241.674-59.796 366.248-59.796 29.898 0 59.796 0 87.202 2.491 7.474 0 12.457 7.474 12.457 12.457 0 7.474-7.474 12.457-12.457 12.457-27.406-2.491-54.813-2.491-84.71-2.491-122.083 0-244.165 19.932-358.774 59.796-12.457 4.983-19.932 12.457-24.915 22.423s-4.983 24.915 0 34.881l37.372 82.219c0 0 0 0 0 0l122.083 271.572c4.983 12.457 9.966 24.915 12.457 34.881h97.168l-37.372-194.336c-2.491-7.474 2.491-12.457 9.966-14.949 0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966l39.864 199.319h181.878l39.864-199.319c0-4.983 7.474-9.966 12.457-9.966 0 0 2.491 0 2.491 0 7.474 2.491 9.966 7.474 9.966 14.949l-37.372 194.336h94.676c2.491-12.457 7.474-24.915 12.457-34.881l34.881-74.745c-19.932-4.983-34.881-24.915-34.881-47.338v-351.299c0-19.932 9.966-37.372 27.406-44.847s37.372-4.983 52.321 7.474l92.185 94.676c9.966 7.474 22.423 7.474 29.898 0l92.185-94.676c9.966-7.474 19.932-12.457 32.389-12.457 7.474 0 14.949 2.491 19.932 4.983 17.44 7.474 27.406 24.915 27.406 44.847v353.791c0 24.915-19.932 47.338-47.338 47.338zM156.964 912.662v2.491l64.779 14.949c0-2.491 2.491-4.983 2.491-9.966 2.491-4.983 4.983-9.966 7.474-14.949s4.983-7.474 7.474-9.966c2.491-7.474 7.474-12.457 9.966-17.44 2.491-2.491 4.983-4.983 7.474-7.474 4.983-4.983 9.966-9.966 12.457-14.949 2.491-2.491 4.983-4.983 7.474-4.983 4.983-4.983 9.966-9.966 17.44-14.949 2.491-2.491 4.983-2.491 4.983-4.983 7.474-4.983 12.457-7.474 19.932-12.457 0 0 2.491 0 2.491-2.491 27.406-12.457 57.304-19.932 87.202-19.932 42.355 0 82.219 12.457 117.1 34.881 0 0 2.491 0 2.491 2.491 7.474 4.983 14.949 9.966 19.932 17.44 0 0 2.491 2.491 2.491 2.491 9.966 7.474 14.949 12.457 22.423 19.932 2.491 2.491 2.491 4.983 4.983 4.983 4.983 4.983 7.474 12.457 12.457 17.44 2.491 2.491 4.983 4.983 4.983 9.966 2.491 4.983 4.983 9.966 7.474 17.44 0 2.491 2.491 4.983 4.983 7.474l67.27-14.949 2.491 12.457-2.491-14.949c-22.423-42.355-24.915-117.1-24.915-176.895 0-32.389-7.474-69.762-19.932-109.625-2.491-9.966-4.983-22.423-7.474-32.389h-416.078c0 7.474-2.491 17.44-7.474 29.898-12.457 39.864-19.932 77.236-19.932 109.625 2.491 62.287 0 137.032-22.423 179.387zM206.793 516.516c2.491 12.457 2.491 22.423 2.491 34.881 0 4.983 0 7.474 0 12.457h411.095c0-4.983 0-7.474 0-12.457 0-12.457 0-22.423 2.491-34.881h-416.078zM991.611-14.17c0-9.966-4.983-17.44-14.949-22.423-7.474-4.983-17.44-2.491-24.915 2.491l-92.185 97.168c-17.44 14.949-44.847 14.949-64.779 0l-92.185-94.676c-7.474-7.474-17.44-7.474-24.915-2.491-9.966 4.983-14.949 12.457-14.949 22.423v348.808c0 12.457 9.966 24.915 24.915 24.915h281.538c12.457 0 24.915-9.966 24.915-24.915v-351.299zM914.375 272.35h-176.895c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457h176.895c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457zM849.596 182.657h-112.117c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457h112.117c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457z" />
232
+ <glyph unicode="&#xe929;" glyph-name="product-image" data-tags="product-image" horiz-adv-x="852" d="M844.613 100.438l-161.946 356.282c-4.983 12.457-9.966 24.915-12.457 37.372 0 0 0 0 0 2.491s0 4.983-2.491 7.474c-2.491 14.949-4.983 27.406-4.983 42.355 0 22.423 2.491 42.355 9.966 64.779 9.966 29.898 19.932 74.745 19.932 122.083 0 54.813 2.491 132.049 22.423 171.912 4.983 7.474 4.983 17.44 0 24.915-2.491 7.474-9.966 12.457-17.44 14.949l-89.693 14.949-2.491-9.966c-24.915-77.236-94.676-129.557-176.895-129.557-39.864 0-79.727 12.457-109.625 34.881-32.389 22.423-57.304 54.813-69.762 92.185 0 0 0 0 0 2.491l-4.983 9.966-87.202-22.423c-7.474-2.491-12.457-7.474-17.44-14.949-2.491-7.474-2.491-17.44 0-24.915 22.423-37.372 24.915-114.608 24.915-169.421 0-44.847 9.966-92.185 19.932-122.083 7.474-19.932 9.966-42.355 9.966-64.779 0-29.898-7.474-59.796-19.932-87.202l-127.066-276.555c0 0 0 0 0 0l-42.355-94.676c-7.474-14.949-7.474-32.389 0-47.338s19.932-27.406 34.881-34.881c124.574-42.355 254.131-64.779 386.18-64.779 59.796 0 122.083 4.983 184.37 14.949 7.474 0 12.457 7.474 9.966 14.949 0 7.474-7.474 12.457-14.949 9.966-189.353-29.898-378.706-12.457-555.601 47.338-9.966 2.491-17.44 9.966-22.423 19.932-2.491 9.966-2.491 19.932 0 29.898l42.355 94.676c0 0 0 0 0 0l127.066 276.555c4.983 12.457 9.966 24.915 12.457 37.372h102.151l-39.864-199.319c-2.491-7.474 2.491-12.457 9.966-14.949 0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966l39.864 204.302h186.861l39.864-204.302c0-4.983 7.474-9.966 12.457-9.966 0 0 2.491 0 2.491 0 7.474 2.491 9.966 7.474 9.966 14.949l-39.864 199.319h99.659c2.491-12.457 7.474-24.915 12.457-37.372l161.946-356.282c4.983-12.457 4.983-27.406 0-42.355-4.983-12.457-14.949-22.423-29.898-27.406s-29.898-9.966-44.847-14.949c-7.474-2.491-9.966-9.966-7.474-14.949s7.474-9.966 12.457-9.966c0 0 2.491 0 2.491 0 14.949 4.983 32.389 9.966 47.338 14.949 19.932 7.474 34.881 22.423 44.847 39.864 7.474 24.915 7.474 47.338-2.491 67.27zM161.946 910.17c0 2.491 0 2.491 0 2.491l64.779 14.949c2.491-4.983 4.983-9.966 7.474-17.44 0-2.491 2.491-4.983 2.491-7.474 7.474-2.491 9.966-9.966 14.949-17.44 2.491-2.491 2.491-4.983 4.983-7.474 4.983-4.983 9.966-9.966 12.457-14.949 4.983-2.491 7.474-7.474 9.966-9.966 4.983-4.983 9.966-7.474 14.949-12.457 2.491-2.491 7.474-7.474 12.457-9.966s9.966-4.983 12.457-7.474c4.983-2.491 9.966-4.983 14.949-7.474 2.491-2.491 7.474-2.491 9.966-4.983 7.474-2.491 12.457-4.983 19.932-7.474 2.491 0 2.491 0 4.983 0 19.932-4.983 39.864-9.966 59.796-9.966 89.693 0 166.929 54.813 196.827 137.032 0 0 0 0 0 0l69.762-17.44c0 0 0-2.491 0-2.491-22.423-42.355-24.915-119.591-24.915-181.878 0-42.355-9.966-84.71-19.932-114.608-2.491-9.966-4.983-22.423-7.474-34.881h-428.535c-2.491 12.457-4.983 22.423-7.474 32.389-7.474 32.389-17.44 74.745-17.44 117.1 0 62.287-4.983 139.523-27.406 181.878zM214.268 506.55c2.491 12.457 2.491 24.915 2.491 34.881 0 4.983 0 9.966 0 12.457h423.552c0-4.983 0-9.966 0-12.457 0-12.457 0-24.915 2.491-37.372h-428.535z" />
233
+ <glyph unicode="&#xe92a;" glyph-name="product-recent" data-tags="product-recent" horiz-adv-x="1089" d="M1076.321 202.589c-7.474 0-12.457-4.983-12.457-12.457 0-127.066-102.151-229.217-229.217-229.217s-229.217 102.151-229.217 229.217c0 119.591 89.693 216.759 206.793 229.217l-12.457-12.457c-4.983-4.983-4.983-12.457 0-17.44 2.491-2.491 4.983-2.491 9.966-2.491 2.491 0 7.474 0 9.966 2.491l44.847 44.847-44.847 44.847c-4.983 4.983-12.457 4.983-17.44 0s-4.983-12.457 0-17.44l14.949-14.949c-47.338-4.983-92.185-19.932-127.066-47.338 0 0 0 0 0 0l-37.372 82.219c-4.983 12.457-9.966 24.915-12.457 37.372 0 0 0 0 0 0 0 2.491 0 4.983-2.491 4.983-2.491 12.457-4.983 27.406-4.983 39.864 0 19.932 2.491 42.355 9.966 59.796 9.966 27.406 19.932 69.762 19.932 114.608 0 52.321 2.491 124.574 22.423 161.946 4.983 7.474 4.983 17.44 0 24.915-2.491 7.474-9.966 12.457-17.44 14.949l-94.676 19.932-2.491-9.966c0 0 0 0 0 0-22.423-74.745-89.693-124.574-169.421-124.574-77.236 0-144.506 49.83-166.929 122.083l-4.983 12.457-12.457-4.983c0 0 0 0 0 0s0 0 0 0l-69.762-14.949c-9.966-2.491-14.949-7.474-19.932-14.949-2.491-7.474-2.491-17.44 2.491-24.915 19.932-34.881 19.932-109.625 19.932-161.946 0-47.338 12.457-92.185 19.932-114.608 7.474-19.932 9.966-39.864 9.966-59.796 0-29.898-7.474-57.304-17.44-84.71l-122.083-264.097c0 0 0 0 0 0l-34.881-74.745c-7.474-17.44-7.474-39.864 0-57.304s22.423-32.389 42.355-39.864c114.608-37.372 231.708-57.304 353.791-57.304 34.881 0 69.762 2.491 102.151 4.983 7.474 0 12.457 7.474 9.966 12.457 0 7.474-7.474 12.457-12.457 12.457-32.389-2.491-64.779-4.983-99.659-4.983-117.1 0-234.2 19.932-343.825 54.813-12.457 4.983-22.423 12.457-27.406 24.915s-4.983 24.915 0 37.372l34.881 74.745c0 0 0 0 0 0s0 0 0 0l119.591 264.097c4.983 12.457 9.966 22.423 12.457 34.881h94.676l-37.372-189.353c-2.491-7.474 2.491-12.457 9.966-14.949 0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966l37.372 194.336h176.895l37.372-194.336c0-4.983 7.474-9.966 12.457-9.966 0 0 2.491 0 2.491 0 7.474 2.491 9.966 7.474 9.966 14.949l-37.372 189.353h92.185c2.491-12.457 7.474-24.915 12.457-34.881l37.372-82.219c0-2.491 2.491-2.491 4.983-4.983-52.321-47.338-87.202-114.608-87.202-191.844 0-139.523 114.608-254.131 254.131-254.131s254.131 114.608 254.131 254.131c2.491 9.966-4.983 14.949-9.966 14.949zM151.981 912.662l-12.457-4.983 12.457 7.474 62.287 14.949c0-2.491 2.491-4.983 2.491-4.983 2.491-7.474 4.983-14.949 9.966-22.423 0-2.491 2.491-4.983 4.983-7.474 4.983-7.474 7.474-12.457 12.457-19.932 2.491-2.491 2.491-2.491 4.983-4.983 4.983-7.474 9.966-12.457 17.44-17.44 2.491-2.491 2.491-2.491 4.983-2.491 2.491-4.983 7.474-9.966 14.949-14.949 2.491 0 2.491-2.491 4.983-2.491 7.474-4.983 12.457-7.474 19.932-12.457 2.491 0 4.983-2.491 7.474-2.491 7.474-2.491 12.457-4.983 19.932-7.474 2.491 0 7.474-2.491 12.457-2.491 4.983-2.491 12.457-2.491 17.44-4.983 7.474-2.491 17.44-2.491 24.915-2.491 2.491 0 4.983 0 4.983 0s0 0 0 0 0 0 0 0c9.966 0 22.423 0 32.389 2.491 2.491 0 2.491 0 4.983 0 9.966 2.491 17.44 2.491 24.915 7.474 2.491 0 4.983 2.491 4.983 2.491 7.474 2.491 14.949 4.983 22.423 9.966 2.491 0 4.983 2.491 4.983 2.491 7.474 4.983 14.949 7.474 19.932 12.457 2.491 2.491 2.491 2.491 4.983 4.983 7.474 4.983 12.457 9.966 17.44 14.949 9.966 2.491 12.457 4.983 12.457 4.983 4.983 4.983 9.966 12.457 14.949 17.44 2.491 4.983 2.491 4.983 4.983 7.474 4.983 7.474 7.474 12.457 12.457 19.932 2.491 2.491 2.491 4.983 2.491 7.474 2.491 4.983 4.983 9.966 7.474 14.949l67.27-17.44c-22.423-39.864-24.915-114.608-24.915-174.404 0-44.847-12.457-87.202-17.44-107.134-2.491-9.966-4.983-19.932-7.474-32.389h-406.112c-2.491 12.457-4.983 22.423-7.474 32.389-7.474 22.423-19.932 64.779-19.932 107.134 0 59.796-2.491 134.54-22.423 174.404zM201.81 528.973c2.491 12.457 2.491 22.423 2.491 34.881 0 4.983 0 7.474 0 12.457h401.129c0-4.983 0-7.474 0-12.457 0-12.457 0-22.423 2.491-34.881h-406.112zM817.207 302.248c0 7.474-4.983 12.457-12.457 12.457s-12.457-4.983-12.457-12.457v-139.523c0 0 0 0 0 0s0-2.491 0-2.491c0 0 0-2.491 0-2.491s0-2.491 2.491-2.491c0 0 0 0 2.491-2.491 0 0 0 0 2.491-2.491 0 0 2.491 0 2.491 0s0 0 0 0l104.642-24.915c0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966 2.491 7.474-2.491 12.457-9.966 14.949l-94.676 22.423v129.557z" />
234
+ <glyph unicode="&#xe92b;" glyph-name="product-sale" data-tags="product-sale" horiz-adv-x="1089" d="M774.852 195.114c27.406 0 49.83 22.423 49.83 49.83s-22.423 49.83-49.83 49.83c-27.406 0-49.83-22.423-49.83-49.83s22.423-49.83 49.83-49.83zM774.852 272.35c14.949 0 24.915-12.457 24.915-24.915s-12.457-24.915-24.915-24.915-24.915 12.457-24.915 24.915 12.457 24.915 24.915 24.915zM891.951 180.165c-27.406 0-49.83-22.423-49.83-49.83s22.423-49.83 49.83-49.83c27.406 0 49.83 22.423 49.83 49.83 2.491 27.406-22.423 49.83-49.83 49.83zM891.951 102.929c-14.949 0-24.915 12.457-24.915 24.915s12.457 24.915 24.915 24.915 24.915-12.457 24.915-24.915-9.966-24.915-24.915-24.915zM739.971 92.964c2.491-2.491 4.983-2.491 9.966-2.491s7.474 0 9.966 2.491l171.912 169.421c4.983 4.983 4.983 12.457 0 17.44s-12.457 4.983-17.44 0l-171.912-169.421c-7.474-4.983-7.474-12.457-2.491-17.44zM1076.321 202.589c-7.474 0-12.457-4.983-12.457-12.457 0-127.066-102.151-229.217-229.217-229.217s-229.217 102.151-229.217 229.217c0 119.591 89.693 216.759 206.793 229.217l-14.949-12.457c-4.983-4.983-4.983-12.457 0-17.44 2.491-2.491 4.983-2.491 9.966-2.491 2.491 0 7.474 0 9.966 2.491l44.847 44.847-44.847 44.847c-4.983 4.983-12.457 4.983-17.44 0s-4.983-12.457 0-17.44l14.949-14.949c-47.338-4.983-92.185-19.932-127.066-47.338 0 0 0 0 0 0l-39.864 79.727c-4.983 12.457-9.966 24.915-12.457 37.372 0 0 0 0 0 0 0 2.491 0 4.983-2.491 4.983-2.491 12.457-4.983 27.406-4.983 39.864 0 19.932 2.491 42.355 9.966 59.796 9.966 27.406 19.932 69.762 19.932 114.608 0 52.321 2.491 124.574 22.423 161.946 4.983 7.474 4.983 17.44 0 24.915-2.491 7.474-9.966 12.457-17.44 14.949l-87.202 22.423-2.491-9.966c0 0 0 0 0 0-22.423-74.745-89.693-124.574-169.421-124.574-77.236 0-144.506 49.83-166.929 122.083l-4.983 12.457-12.457-4.983c0 0 0 0 0 0s0 0 0 0l-72.253-14.949c-7.474-2.491-14.949-7.474-17.44-14.949s-2.491-17.44 0-24.915c19.932-34.881 22.423-109.625 22.423-161.946 0-47.338 12.457-92.185 19.932-114.608 4.983-19.932 9.966-39.864 9.966-59.796 0-29.898-7.474-57.304-17.44-84.71l-122.083-264.097c0 0 0 0 0 0l-37.372-79.727c-7.474-17.44-7.474-37.372 0-54.813s22.423-29.898 39.864-37.372c114.608-39.864 236.691-59.796 358.774-59.796 37.372 0 72.253 2.491 109.625 4.983 7.474 0 12.457 7.474 9.966 12.457 0 7.474-7.474 12.457-12.457 9.966-34.881-2.491-69.762-4.983-107.134-4.983-119.591 0-236.691 19.932-348.808 57.304-12.457 4.983-19.932 12.457-24.915 22.423s-4.983 22.423 0 34.881l37.372 79.727c0 0 0 0 0 0l119.591 264.097c4.983 12.457 9.966 22.423 12.457 34.881h94.676l-37.372-189.353c-2.491-7.474 2.491-12.457 9.966-14.949 0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966l37.372 194.336h176.895l37.372-194.336c0-4.983 7.474-9.966 12.457-9.966 0 0 2.491 0 2.491 0 7.474 2.491 9.966 7.474 9.966 14.949l-37.372 189.353h92.185c2.491-12.457 7.474-24.915 12.457-34.881l37.372-82.219c0-2.491 2.491-2.491 4.983-4.983-52.321-47.338-87.202-114.608-87.202-191.844 0-139.523 114.608-254.131 254.131-254.131s254.131 114.608 254.131 254.131c0 12.457-4.983 17.44-12.457 17.44zM151.981 912.662l-9.966-4.983 12.457 7.474 62.287 14.949c0-2.491 2.491-2.491 2.491-4.983 2.491-7.474 4.983-14.949 7.474-22.423 0-2.491 2.491-4.983 4.983-7.474 2.491-4.983 7.474-9.966 12.457-17.44 0-2.491 2.491-2.491 4.983-4.983 4.983-7.474 9.966-12.457 17.44-17.44 2.491-2.491 2.491-2.491 4.983-2.491 2.491-7.474 9.966-12.457 17.44-17.44 2.491 0 2.491-2.491 4.983-2.491 7.474-4.983 12.457-7.474 19.932-12.457 2.491 0 4.983-2.491 7.474-2.491 7.474-2.491 12.457-4.983 19.932-7.474 2.491 0 7.474-2.491 9.966-2.491 4.983-2.491 12.457-2.491 19.932-4.983s17.44-2.491 24.915-2.491c2.491 0 4.983 0 4.983 0s0 0 0 0 0 0 0 0c9.966 0 22.423 0 32.389 2.491 2.491 0 2.491 0 4.983 0 9.966 2.491 17.44 2.491 24.915 7.474 2.491 0 4.983 2.491 4.983 2.491 7.474 2.491 14.949 4.983 22.423 9.966 2.491 0 4.983 2.491 4.983 2.491 7.474 4.983 14.949 7.474 19.932 12.457 2.491 2.491 4.983 2.491 4.983 4.983 4.983 4.983 12.457 9.966 17.44 14.949 7.474 2.491 9.966 4.983 12.457 4.983 4.983 4.983 9.966 12.457 14.949 17.44 2.491 4.983 2.491 4.983 4.983 7.474 4.983 7.474 7.474 12.457 12.457 19.932 0 2.491 2.491 4.983 2.491 7.474 2.491 4.983 4.983 9.966 7.474 14.949l67.27-17.44c-22.423-39.864-24.915-114.608-24.915-174.404 0-44.847-12.457-87.202-17.44-107.134-2.491-9.966-4.983-19.932-7.474-32.389h-408.603c0 12.457-2.491 22.423-7.474 32.389-7.474 22.423-17.44 64.779-17.44 107.134 0 59.796-2.491 134.54-24.915 174.404zM201.81 528.973c2.491 12.457 2.491 22.423 2.491 34.881 0 4.983 0 7.474 0 12.457h401.129c0-4.983 0-7.474 0-12.457 0-12.457 0-22.423 2.491-34.881h-406.112z" />
235
+ <glyph unicode="&#xe92c;" glyph-name="product-top-rated" data-tags="product-top-rated" horiz-adv-x="1089" d="M819.698 279.825l-37.372 14.949c-12.457 4.983-24.915 2.491-34.881-4.983s-12.457-22.423-9.966-34.881l9.966-37.372c0-2.491 0-4.983-2.491-7.474l-24.915-29.898c-7.474-9.966-9.966-22.423-4.983-34.881s17.44-19.932 29.898-19.932l39.864-2.491c2.491 0 4.983-2.491 7.474-4.983l19.932-34.881c4.983-9.966 17.44-14.949 27.406-14.949 0 0 2.491 0 2.491 0 12.457 0 22.423 9.966 27.406 22.423l14.949 37.372c0 2.491 2.491 4.983 4.983 4.983l39.864 9.966c12.457 2.491 22.423 12.457 24.915 24.915s-2.491 24.915-12.457 32.389l-29.898 24.915c-2.491 2.491-2.491 4.983-2.491 7.474l2.491 39.864c0 12.457-4.983 24.915-14.949 29.898-9.966 7.474-24.915 7.474-34.881 0l-32.389-22.423c-4.983-2.491-7.474-2.491-9.966 0zM872.019 279.825c4.983 2.491 7.474 0 9.966 0s4.983-2.491 4.983-7.474l-2.491-39.864c0-9.966 4.983-22.423 12.457-27.406l32.389-24.915c2.491-2.491 2.491-7.474 2.491-7.474s-2.491-4.983-4.983-7.474l-39.864-9.966c-9.966-2.491-19.932-9.966-22.423-19.932l-17.44-37.372c-2.491-4.983-4.983-4.983-7.474-4.983s-4.983 0-7.474 4.983l-22.423 34.881c-4.983 9.966-14.949 14.949-27.406 14.949l-39.864 2.491c-4.983 0-7.474 2.491-7.474 4.983s-2.491 4.983 2.491 9.966l24.915 29.898c7.474 7.474 9.966 19.932 7.474 29.898l-9.966 37.372c-2.491 4.983 2.491 7.474 2.491 7.474s2.491 2.491 4.983 2.491c0 0 2.491 0 2.491 0l37.372-14.949c9.966-4.983 22.423-2.491 29.898 2.491l34.881 19.932zM1076.321 202.589c-7.474 0-12.457-4.983-12.457-12.457 0-127.066-102.151-229.217-229.217-229.217s-229.217 102.151-229.217 229.217c0 119.591 89.693 216.759 206.793 229.217l-14.949-12.457c-4.983-4.983-4.983-12.457 0-17.44 2.491-2.491 4.983-2.491 9.966-2.491 2.491 0 7.474 0 9.966 2.491l44.847 44.847-44.847 44.847c-4.983 4.983-12.457 4.983-17.44 0s-4.983-12.457 0-17.44l14.949-14.949c-47.338-4.983-92.185-19.932-127.066-47.338 0 0 0 0 0 0l-39.864 79.727c-4.983 12.457-9.966 24.915-12.457 37.372 0 0 0 0 0 0 0 2.491 0 4.983-2.491 4.983-2.491 12.457-4.983 27.406-4.983 39.864 0 19.932 2.491 42.355 9.966 59.796 9.966 27.406 19.932 69.762 19.932 114.608 0 52.321 2.491 124.574 22.423 161.946 4.983 7.474 4.983 17.44 0 24.915-2.491 7.474-9.966 12.457-17.44 14.949l-87.202 22.423-2.491-9.966c0 0 0 0 0 0-22.423-74.745-89.693-124.574-169.421-124.574-77.236 0-144.506 49.83-166.929 122.083l-4.983 12.457-12.457-4.983c0 0 0 0 0 0s0 0 0 0l-72.253-14.949c-7.474-2.491-14.949-7.474-17.44-14.949s-2.491-17.44 0-24.915c19.932-34.881 22.423-109.625 22.423-161.946 0-47.338 12.457-92.185 19.932-114.608 4.983-19.932 9.966-39.864 9.966-59.796 0-29.898-7.474-57.304-17.44-84.71l-122.083-264.097c0 0 0 0 0 0l-37.372-79.727c-7.474-17.44-7.474-37.372 0-54.813s22.423-29.898 39.864-37.372c114.608-39.864 236.691-59.796 358.774-59.796 37.372 0 72.253 2.491 109.625 4.983 7.474 0 12.457 7.474 9.966 12.457 0 7.474-7.474 12.457-12.457 9.966-34.881-2.491-69.762-4.983-107.134-4.983-119.591 0-236.691 19.932-348.808 57.304-12.457 4.983-19.932 12.457-24.915 22.423s-4.983 22.423 0 34.881l37.372 79.727c0 0 0 0 0 0l119.591 264.097c4.983 12.457 9.966 22.423 12.457 34.881h94.676l-37.372-189.353c-2.491-7.474 2.491-12.457 9.966-14.949 0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966l37.372 194.336h176.895l37.372-194.336c0-4.983 7.474-9.966 12.457-9.966 0 0 2.491 0 2.491 0 7.474 2.491 9.966 7.474 9.966 14.949l-37.372 189.353h92.185c2.491-12.457 7.474-24.915 12.457-34.881l37.372-82.219c0-2.491 2.491-2.491 4.983-4.983-52.321-47.338-87.202-114.608-87.202-191.844 0-139.523 114.608-254.131 254.131-254.131s254.131 114.608 254.131 254.131c0 12.457-4.983 17.44-12.457 17.44zM151.981 912.662l-9.966-4.983 12.457 7.474 62.287 14.949c0-2.491 2.491-2.491 2.491-4.983 2.491-7.474 4.983-14.949 7.474-22.423 0-2.491 2.491-4.983 4.983-7.474 2.491-4.983 7.474-9.966 12.457-17.44 0-2.491 2.491-2.491 4.983-4.983 4.983-7.474 9.966-12.457 17.44-17.44 2.491-2.491 2.491-2.491 4.983-2.491 2.491-7.474 9.966-12.457 17.44-17.44 2.491 0 2.491-2.491 4.983-2.491 7.474-4.983 12.457-7.474 19.932-12.457 2.491 0 4.983-2.491 7.474-2.491 7.474-2.491 12.457-4.983 19.932-7.474 2.491 0 7.474-2.491 9.966-2.491 4.983-2.491 12.457-2.491 19.932-4.983s17.44-2.491 24.915-2.491c2.491 0 4.983 0 4.983 0s0 0 0 0 0 0 0 0c9.966 0 22.423 0 32.389 2.491 2.491 0 2.491 0 4.983 0 9.966 2.491 17.44 2.491 24.915 7.474 2.491 0 4.983 2.491 4.983 2.491 7.474 2.491 14.949 4.983 22.423 9.966 2.491 0 4.983 2.491 4.983 2.491 7.474 4.983 14.949 7.474 19.932 12.457 2.491 2.491 4.983 2.491 4.983 4.983 4.983 4.983 12.457 9.966 17.44 14.949 7.474 2.491 9.966 4.983 12.457 4.983 4.983 4.983 9.966 12.457 14.949 17.44 2.491 4.983 2.491 4.983 4.983 7.474 4.983 7.474 7.474 12.457 12.457 19.932 0 2.491 2.491 4.983 2.491 7.474 2.491 4.983 4.983 9.966 7.474 14.949l67.27-17.44c-22.423-39.864-24.915-114.608-24.915-174.404 0-44.847-12.457-87.202-17.44-107.134-2.491-9.966-4.983-19.932-7.474-32.389h-408.603c0 12.457-2.491 22.423-7.474 32.389-7.474 22.423-17.44 64.779-17.44 107.134 0 59.796-2.491 134.54-24.915 174.404zM201.81 528.973c2.491 12.457 2.491 22.423 2.491 34.881 0 4.983 0 7.474 0 12.457h401.129c0-4.983 0-7.474 0-12.457 0-12.457 0-22.423 2.491-34.881h-406.112z" />
236
+ <glyph unicode="&#xe92d;" glyph-name="product-top-seller" data-tags="product-top-seller" horiz-adv-x="964" d="M824.681 294.774h-159.455c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457h159.455c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457zM794.783 227.504h-102.151c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457h102.151c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457zM959.221 23.202l-74.745 127.066c22.423 29.898 37.372 67.27 37.372 109.625 0 97.168-79.727 179.387-179.387 179.387-29.898 0-57.304-7.474-82.219-19.932 0 0 0 0 0 0l-34.881 79.727c-4.983 12.457-9.966 22.423-12.457 34.881 0 0 0 0 0 0 0 2.491 0 4.983-2.491 4.983-2.491 12.457-4.983 24.915-4.983 39.864 0 19.932 2.491 39.864 9.966 59.796 7.474 27.406 19.932 69.762 19.932 112.117 0 49.83 2.491 122.083 19.932 156.964 4.983 7.474 4.983 14.949 0 22.423-2.491 7.474-9.966 12.457-17.44 14.949l-82.219 14.949-2.491-9.966c-22.423-72.253-87.202-119.591-161.946-119.591s-139.523 47.338-161.946 119.591l-4.983 9.966-79.727-19.932c-9.966-2.491-14.949-7.474-17.44-14.949-4.983-7.474-4.983-14.949 0-22.423 17.44-34.881 19.932-104.642 19.932-156.964 0-42.355 9.966-84.71 19.932-112.117 4.983-17.44 7.474-37.372 7.474-57.304 0-27.406-4.983-54.813-17.44-79.727l-114.608-256.623-34.881-79.727c-7.474-14.949-7.474-34.881 0-52.321s19.932-29.898 37.372-34.881c112.117-37.372 229.217-57.304 346.316-57.304 12.457 0 27.406 0 39.864 0 7.474 0 12.457 4.983 12.457 12.457s-7.474 12.457-12.457 12.457c-12.457 0-24.915 0-37.372 0-119.591 2.491-234.2 22.423-343.825 59.796-9.966 2.491-17.44 9.966-22.423 19.932s-4.983 19.932 0 29.898l37.372 79.727 114.608 254.131c4.983 9.966 9.966 22.423 12.457 32.389h92.185l-34.881-179.387c-2.491-7.474 2.491-12.457 9.966-14.949 0 0 2.491 0 2.491 0 4.983 0 9.966 4.983 12.457 9.966l37.372 186.861h169.421l37.372-186.861c0-4.983 7.474-9.966 12.457-9.966 0 0 2.491 0 2.491 0 7.474 2.491 9.966 7.474 9.966 14.949l-34.881 181.878h89.693c2.491-12.457 7.474-22.423 12.457-32.389l34.881-79.727c0 0 2.491-2.491 2.491-2.491-44.847-32.389-74.745-84.71-74.745-144.506 0-39.864 14.949-79.727 37.372-109.625l-74.745-127.066c-4.983-9.966-4.983-22.423 0-32.389 4.983-7.474 14.949-9.966 24.915-7.474l44.847 17.44 4.983-49.83c2.491-9.966 9.966-17.44 17.44-17.44 0 0 2.491 0 2.491 0 9.966 0 19.932 4.983 24.915 14.949l74.745 129.557c4.983 0 9.966 0 14.949 0s9.966 0 14.949 0l74.745-129.557c4.983-9.966 14.949-14.949 24.915-14.949 0 0 2.491 0 2.491 0 9.966 2.491 17.44 7.474 19.932 19.932l4.983 47.338 44.847-19.932c9.966-2.491 19.932 0 24.915 7.474 7.474 12.457 9.966 22.423 2.491 34.881zM149.489 915.153l59.796 14.949c0-2.491 2.491-4.983 4.983-7.474 0-7.474 2.491-12.457 4.983-14.949 2.491-4.983 4.983-9.966 7.474-12.457 2.491-4.983 4.983-9.966 9.966-14.949 2.491-2.491 4.983-7.474 7.474-9.966 4.983-4.983 7.474-9.966 12.457-12.457 2.491-2.491 4.983-4.983 7.474-7.474 4.983-4.983 9.966-7.474 14.949-12.457 2.491-2.491 4.983-2.491 7.474-4.983 4.983-4.983 12.457-7.474 17.44-9.966 2.491 0 2.491 0 4.983-2.491 24.915-12.457 52.321-17.44 82.219-17.44 27.406 2.491 57.304 7.474 82.219 19.932 0 0 2.491 0 2.491 2.491 7.474 2.491 12.457 7.474 19.932 12.457 2.491 2.491 4.983 2.491 4.983 2.491 4.983 4.983 9.966 7.474 14.949 12.457 2.491 2.491 4.983 4.983 7.474 4.983 4.983 4.983 9.966 9.966 12.457 14.949 2.491 2.491 4.983 4.983 7.474 7.474 4.983 4.983 7.474 9.966 12.457 14.949 2.491 2.491 4.983 7.474 7.474 9.966 2.491 4.983 4.983 9.966 7.474 14.949 0 2.491 2.491 4.983 2.491 7.474l62.287-17.44c-19.932-39.864-22.423-109.625-22.423-166.929 0-39.864-9.966-77.236-17.44-104.642-2.491-9.966-4.983-19.932-7.474-29.898h-391.163c-2.491 9.966-4.983 19.932-7.474 29.898-7.474 24.915-17.44 64.779-17.44 104.642 0 59.796-2.491 132.049-22.423 171.912zM196.827 543.922c2.491 9.966 2.491 22.423 2.491 32.389 0 4.983 0 7.474 0 9.966h386.18c0-4.983 0-7.474 0-9.966 0-9.966 0-22.423 2.491-32.389h-391.163zM630.345-36.594c0 0 0 0 0 0l-7.474 47.338c-2.491 7.474-4.983 12.457-9.966 14.949s-12.457 4.983-19.932 2.491l-44.847-17.44c0 0 0 0 0 0l69.762 119.591c22.423-22.423 49.83-37.372 82.219-44.847l-69.762-122.083zM590.482 259.893c0 84.71 69.762 154.472 154.472 154.472s154.472-69.762 154.472-154.472-69.762-154.472-154.472-154.472-154.472 69.762-154.472 154.472zM894.443 28.185c-7.474 2.491-12.457 2.491-17.44-2.491-4.983-2.491-9.966-7.474-12.457-17.44l-4.983-44.847c0 0 0 0 0 0l-69.762 122.083c29.898 7.474 59.796 22.423 82.219 44.847l69.762-119.591c0 0 0 0 0 0l-47.338 17.44z" />
237
+ <glyph unicode="&#xe92e;" glyph-name="progress-bar" data-tags="progress-bar" horiz-adv-x="1306" d="M634.38 822.634c37.463 0 67.434 29.971 67.434 67.434s-29.971 69.932-67.434 69.932-67.434-29.971-67.434-67.434 29.971-69.932 67.434-69.932zM634.38 935.024c24.976 0 42.459-19.98 42.459-42.459s-19.98-42.459-42.459-42.459-42.459 19.98-42.459 42.459 19.98 42.459 42.459 42.459zM809.21 787.668c-37.463 0-67.434-29.971-67.434-67.434s29.971-67.434 67.434-67.434 67.434 29.971 67.434 67.434-29.971 67.434-67.434 67.434zM809.21 675.278c-24.976 0-42.459 19.98-42.459 42.459s19.98 42.459 42.459 42.459c24.976 0 42.459-19.98 42.459-42.459s-19.98-42.459-42.459-42.459zM586.927 670.283c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498l249.756 252.254c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-252.254-252.254c-4.995-4.995-4.995-12.488 0-17.483zM94.907 293.151h1116.41c52.449 0 94.907 42.459 94.907 94.907s-42.459 94.907-94.907 94.907h-1116.41c-52.449 0-94.907-42.459-94.907-94.907s42.459-94.907 94.907-94.907zM94.907 457.99h1116.41c37.463 0 69.932-29.971 69.932-69.932s-29.971-69.932-69.932-69.932h-1116.41c-37.463 0-69.932 29.971-69.932 69.932s29.971 69.932 69.932 69.932zM741.776 375.571h252.254c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-252.254c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488zM87.415 375.571h566.946c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-566.946c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM1211.317 125.815h-1116.41c-52.449 0-94.907-42.459-94.907-94.907s42.459-94.907 94.907-94.907h1116.41c52.449 0 94.907 42.459 94.907 94.907s-42.459 94.907-94.907 94.907zM1211.317-39.024h-1116.41c-39.961 0-69.932 29.971-69.932 69.932 0 37.463 29.971 69.932 69.932 69.932h1116.41c37.463 0 69.932-29.971 69.932-69.932s-32.468-69.932-69.932-69.932zM816.702 43.395h-254.751c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h254.751c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM472.039 43.395h-384.624c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h384.624c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488z" />
238
+ <glyph unicode="&#xe92f;" glyph-name="protected-content-v2" data-tags="protected-content-v2" horiz-adv-x="887" d="M431.027 598.735v-132.049h-132.049c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457h291.504c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457h-132.049v132.049c0 7.474-4.983 12.457-12.457 12.457s-14.949-7.474-14.949-12.457zM443.484 386.959c-7.474 0-12.457-4.983-12.457-12.457v-67.27c0-7.474 4.983-12.457 12.457-12.457s12.457 4.983 12.457 12.457v67.27c0 4.983-4.983 12.457-12.457 12.457zM443.484 960l-443.484-256.623v-49.83c0-286.521 154.472-550.618 401.129-692.633l42.355-24.915 42.355 24.915c246.657 142.015 401.129 408.603 401.129 692.633v49.83l-443.484 256.623zM862.054 653.547c0-276.555-149.489-533.178-388.672-672.701l-29.898-17.44-29.898 17.44c-239.182 139.523-388.672 396.146-388.672 672.701v34.881l418.569 241.674 418.569-241.674v-34.881z" />
239
+ <glyph unicode="&#xe930;" glyph-name="protected-content-v3" data-tags="protected-content-v3" horiz-adv-x="887" d="M443.484 960l-443.484-256.623v-49.83c0-286.521 154.472-550.618 401.129-692.633l42.355-24.915 42.355 24.915c246.657 142.015 401.129 408.603 401.129 692.633v49.83l-443.484 256.623zM862.054 653.547c0-276.555-149.489-533.178-388.672-672.701l-29.898-17.44-29.898 17.44c-239.182 139.523-388.672 396.146-388.672 672.701v34.881l418.569 241.674 418.569-241.674v-34.881zM361.265 613.684v-39.864c0-7.474 4.983-12.457 12.457-12.457s12.457 4.983 12.457 12.457v39.864c0 14.949 12.457 27.406 27.406 27.406h62.287c14.949 0 27.406-12.457 27.406-27.406v-97.168h67.27c14.949 0 27.406-12.457 27.406-27.406v-159.455c0-14.949-12.457-27.406-27.406-27.406h-249.148c-14.949 0-27.406 12.457-27.406 27.406v159.455c0 14.949 12.457 27.406 27.406 27.406h134.54c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457h-134.54c-27.406 0-52.321-22.423-52.321-52.321v-159.455c0-27.406 22.423-52.321 52.321-52.321h249.148c27.406 0 52.321 22.423 52.321 52.321v159.455c0 27.406-22.423 52.321-52.321 52.321h-42.355v72.253c0 27.406-22.423 52.321-52.321 52.321h-62.287c-29.898-2.491-52.321-24.915-52.321-52.321zM443.484 421.839c-7.474 0-12.457-4.983-12.457-12.457v-57.304h12.457c32.389 0 57.304 24.915 57.304 57.304s-24.915 57.304-57.304 57.304-57.304-24.915-57.304-57.304c0-14.949 4.983-29.898 14.949-39.864 4.983-4.983 12.457-4.983 17.44 0s4.983 12.457 0 17.44c-4.983 4.983-7.474 12.457-7.474 22.423 0 17.44 14.949 32.389 32.389 32.389s32.389-14.949 32.389-32.389c0-14.949-7.474-24.915-19.932-29.898v29.898c0 7.474-4.983 12.457-12.457 12.457z" />
240
+ <glyph unicode="&#xe931;" glyph-name="protected-content" data-tags="protected-content" horiz-adv-x="887" d="M445.976 446.754c0 0 0 2.491-2.491 4.983 0 0 0-2.491 0-2.491l2.491-2.491zM261.606 618.667v-321.401c0-32.389 27.406-59.796 59.796-59.796h166.929c14.949 0 29.898 4.983 39.864 17.44l79.727 79.727c9.966 9.966 17.44 24.915 17.44 39.864v244.165c0 14.949-4.983 32.389-17.44 42.355-12.457 12.457-27.406 17.44-42.355 17.44h-246.657c-29.898 0-57.304-27.406-57.304-59.796zM592.973 643.582c7.474-7.474 9.966-14.949 9.966-24.915v-244.165c0-9.966-2.491-17.44-9.966-22.423l-79.727-79.727c-7.474-7.474-14.949-9.966-24.915-9.966h-166.929c-19.932 0-34.881 14.949-34.881 34.881v321.401c0 19.932 14.949 34.881 34.881 34.881h246.657c7.474 0 17.44-2.491 24.915-9.966zM348.808 536.448h191.844c7.474 0 12.457 4.983 12.457 12.457s-7.474 12.457-12.457 12.457h-191.844c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457zM348.808 469.178h191.844c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457h-191.844c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457zM348.808 404.399h191.844c7.474 0 12.457 4.983 12.457 12.457s-4.983 12.457-12.457 12.457h-191.844c-7.474 0-12.457-4.983-12.457-12.457s4.983-12.457 12.457-12.457zM443.484 960l-443.484-256.623v-49.83c0-286.521 154.472-550.618 401.129-692.633l42.355-24.915 42.355 24.915c246.657 142.015 401.129 408.603 401.129 692.633v49.83l-443.484 256.623zM862.054 653.547c0-276.555-149.489-533.178-388.672-672.701l-29.898-17.44-29.898 17.44c-239.182 139.523-388.672 396.146-388.672 672.701v34.881l418.569 241.674 418.569-241.674v-34.881z" />
241
+ <glyph unicode="&#xe932;" glyph-name="qr_code" data-tags="qr_code" horiz-adv-x="1022" d="M202.302 960h-117.385c-47.454 0-84.917-37.463-84.917-84.917v-117.385h202.302v202.302zM177.327 782.673h-152.351v92.41c0 32.468 27.473 59.941 59.941 59.941h92.41v-152.351zM12.488 595.356h177.327c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-177.327c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM1009.015 620.332h-177.327c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h177.327c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM349.659 300.644h-337.171c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h337.171c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM936.585 960h-117.385v-202.302h202.302v117.385c0 47.454-37.463 84.917-84.917 84.917zM996.527 782.673h-152.351v152.351h92.41c32.468 0 59.941-27.473 59.941-59.941v-92.41zM0 20.917c0-47.454 37.463-84.917 84.917-84.917h117.385v202.302h-202.302v-117.385zM24.976 113.327h152.351v-152.351h-92.41c-32.468 0-59.941 27.473-59.941 59.941v92.41zM1009.015-39.024h-177.327c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h177.327c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM684.332-39.024h-164.839v174.829c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-199.805h189.815c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM507.005 747.707c7.493 0 12.488 4.995 12.488 12.488v187.317c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-187.317c0-7.493 4.995-12.488 12.488-12.488zM12.488 435.512h482.029v-154.849c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v179.824h-507.005c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM497.015 610.341c0-7.493 4.995-12.488 12.488-12.488h177.327v349.659c0 7.493-7.493 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-324.683h-152.351c-7.493 0-12.488-4.995-12.488-12.488zM1009.015 140.8h-324.683v304.702c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-329.678h349.659c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM819.2 288.156c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v147.356h152.351v-147.356c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v172.332h-202.302v-172.332zM349.659 148.293c-7.493 0-12.488-4.995-12.488-12.488v-187.317c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v187.317c0 7.493-4.995 12.488-12.488 12.488zM349.659 595.356c7.493 0 12.488 4.995 12.488 12.488v339.668c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-339.668c0-7.493 7.493-12.488 12.488-12.488z" />
242
+ <glyph unicode="&#xe933;" glyph-name="scroll-button" data-tags="scroll-button" horiz-adv-x="982" d="M894.127 860.098c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488c32.468 0 59.941-27.473 59.941-59.941v-654.361c0-32.468-27.473-59.941-59.941-59.941h-57.444v297.21c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-337.171c0-32.468-27.473-59.941-59.941-59.941h-636.878c-49.951 0-89.912 39.961-89.912 89.912v794.224c0 49.951 39.961 89.912 89.912 89.912h609.405c49.951 0 89.912-39.961 89.912-89.912v-307.2c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v307.2c0 64.937-52.449 114.888-114.888 114.888h-609.405c-64.937 0-114.888-49.951-114.888-114.888v-796.722c0-62.439 49.951-112.39 114.888-112.39h639.376c47.454 0 84.917 37.463 84.917 84.917v14.985h57.444c47.454 0 84.917 37.463 84.917 84.917v654.361c0 47.454-39.961 84.917-87.415 84.917zM269.737 270.673c-4.995-4.995-4.995-12.488 0-17.483l147.356-147.356 147.356 147.356c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-127.376-127.376-127.376 127.376c-9.99 4.995-17.483 4.995-22.478 0zM561.951 642.81l-147.356 147.356-147.356-147.356c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498l127.376 127.376 127.376-127.376c4.995-4.995 12.488-4.995 17.483 0s7.493 12.488 2.498 17.483zM497.015 435.512c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-162.341c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h162.341z" />
243
+ <glyph unicode="&#xe934;" glyph-name="search1" data-tags="search" horiz-adv-x="982" d="M894.127 860.098c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488c32.468 0 59.941-27.473 59.941-59.941v-654.361c0-32.468-27.473-59.941-59.941-59.941h-57.444v297.21c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-337.171c0-32.468-27.473-59.941-59.941-59.941h-636.878c-49.951 0-89.912 39.961-89.912 89.912v794.224c0 49.951 39.961 89.912 89.912 89.912h609.405c49.951 0 89.912-39.961 89.912-89.912v-307.2c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v307.2c0 64.937-52.449 114.888-114.888 114.888h-609.405c-64.937 0-114.888-49.951-114.888-114.888v-796.722c0-62.439 49.951-112.39 114.888-112.39h639.376c47.454 0 84.917 37.463 84.917 84.917v14.985h57.444c47.454 0 84.917 37.463 84.917 84.917v654.361c0 47.454-39.961 84.917-87.415 84.917zM374.634 667.785c-89.912 0-162.341-72.429-162.341-162.341s72.429-162.341 162.341-162.341c39.961 0 77.424 14.985 104.898 39.961l152.351-152.351c2.498-2.498 4.995-2.498 9.99-2.498s7.493 0 9.99 2.498c4.995 4.995 4.995 12.488 0 17.483l-152.351 152.351c24.976 27.473 37.463 64.937 37.463 104.898-2.498 89.912-74.927 162.341-162.341 162.341zM374.634 370.576c-74.927 0-137.366 59.941-137.366 137.366 0 74.927 59.941 137.366 137.366 137.366s137.366-59.941 137.366-137.366c-2.498-77.424-62.439-137.366-137.366-137.366zM374.634 600.351c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488c27.473 0 49.951-14.985 62.439-39.961 2.498-4.995 7.493-7.493 12.488-7.493 2.498 0 2.498 0 4.995 0 4.995 2.498 9.99 9.99 4.995 17.483-17.483 32.468-49.951 54.946-84.917 54.946z" />
244
+ <glyph unicode="&#xe935;" glyph-name="service" data-tags="service" horiz-adv-x="1171" d="M1058.966 760.195h-946.576c-62.439 0-112.39-49.951-112.39-112.39v-137.366c0-29.971 19.98-54.946 47.454-59.941l352.156-82.42c7.493-2.498 12.488 2.498 14.985 9.99s-2.498 12.488-9.99 14.985l-349.659 79.922c-17.483 4.995-29.971 19.98-29.971 37.463v137.366c0 47.454 39.961 87.415 87.415 87.415h946.576c47.454 0 87.415-39.961 87.415-87.415v-137.366c0-17.483-12.488-32.468-29.971-37.463l-434.576-99.902v4.995c0 27.473-22.478 52.449-52.449 52.449h-92.41c-27.473 0-52.449-22.478-52.449-52.449v-92.41c0-27.473 22.478-52.449 52.449-52.449h92.41c27.473 0 52.449 22.478 52.449 52.449v62.439l439.571 99.902c27.473 7.493 47.454 32.468 47.454 59.941v137.366c2.498 64.937-47.454 114.888-109.893 114.888zM631.883 258.185h-32.468v72.429c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-9.99v-72.429h-37.463c-14.985 0-27.473 12.488-27.473 27.473v92.41c0 14.985 12.488 27.473 27.473 27.473h92.41c14.985 0 27.473-12.488 27.473-27.473v-19.98c0 0 0-2.498 0-2.498v-72.429c0-14.985-9.99-27.473-24.976-27.473zM1136.39 380.566c-7.493 0-12.488-4.995-12.488-12.488v-317.19c0-49.951-39.961-89.912-89.912-89.912h-894.127c-49.951 0-89.912 39.961-89.912 89.912v317.19c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-317.19c0-62.439 49.951-114.888 114.888-114.888h896.624c62.439 0 114.888 52.449 114.888 114.888v317.19c-2.498 7.493-7.493 12.488-14.985 12.488zM389.62 825.132c7.493 0 12.488 4.995 12.488 12.488v44.956c0 29.971 22.478 52.449 52.449 52.449h264.741c27.473 0 52.449-22.478 52.449-52.449v-44.956c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v44.956c0 42.459-34.966 77.424-77.424 77.424h-264.741c-42.459 0-77.424-34.966-77.424-77.424v-44.956c0-4.995 4.995-12.488 12.488-12.488z" />
245
+ <glyph unicode="&#xe936;" glyph-name="slider-image" data-tags="slider-image" horiz-adv-x="1703" d="M804.215 782.673c-54.946 0-99.902-44.956-99.902-99.902s44.956-99.902 99.902-99.902 99.902 44.956 99.902 99.902-44.956 99.902-99.902 99.902zM804.215 610.341c-39.961 0-74.927 32.468-74.927 74.927s32.468 74.927 74.927 74.927 74.927-32.468 74.927-74.927-34.966-74.927-74.927-74.927zM801.717-39.024h-102.4c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h102.4c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488zM904.117-39.024h-17.483c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h17.483c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1004.020-39.024h-17.483c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h17.483c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1303.727 960h-904.117c-74.927 0-137.366-62.439-137.366-137.366v-504.507c0-74.927 62.439-137.366 137.366-137.366h904.117c74.927 0 137.366 62.439 137.366 137.366v504.507c0 74.927-62.439 137.366-137.366 137.366zM1303.727 205.737h-671.844l277.229 267.239 169.834-142.361 224.78 277.229 109.893-122.38v-167.337c2.498-62.439-47.454-112.39-109.893-112.39zM1416.117 522.927l-112.39 122.38-227.278-282.224-167.337 139.863-312.195-299.707h-197.307c-62.439 0-112.39 49.951-112.39 112.39v507.005c0 62.439 49.951 112.39 112.39 112.39h904.117c62.439 0 112.39-49.951 112.39-112.39v-299.707zM144.859 797.659h52.449c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488h-52.449c-79.922 0-144.859-64.937-144.859-142.361v-219.785c0-79.922 64.937-142.361 144.859-142.361h52.449c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-52.449c-67.434 0-119.883 52.449-119.883 117.385v217.288c0 67.434 52.449 119.883 119.883 119.883zM1560.976 822.634h-52.449c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h52.449c64.937 0 119.883-52.449 119.883-119.883v-217.288c0-64.937-52.449-117.385-119.883-117.385h-52.449c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h52.449c79.922 0 144.859 64.937 144.859 142.361v217.288c-2.498 79.922-67.434 144.859-144.859 144.859z" />
246
+ <glyph unicode="&#xe937;" glyph-name="social-share" data-tags="social-share" horiz-adv-x="1012" d="M839.18 278.166c-69.932 0-132.371-42.459-157.346-104.898l-197.307 149.854c19.98 27.473 32.468 62.439 32.468 99.902 0 47.454-17.483 89.912-49.951 119.883l212.293 154.849c27.473-62.439 87.415-104.898 157.346-104.898 94.907 0 172.332 77.424 172.332 172.332s-77.424 172.332-172.332 172.332-169.834-77.424-169.834-172.332c0-14.985 2.498-29.971 4.995-42.459l-224.78-162.341c-29.971 22.478-64.937 34.966-102.4 34.966-94.907 0-172.332-77.424-172.332-172.332s77.424-172.332 172.332-172.332c47.454 0 89.912 19.98 122.38 52.449l204.8-154.849c-2.498-12.488-4.995-27.473-4.995-42.459 0-94.907 77.424-172.332 172.332-172.332s172.332 77.424 172.332 172.332-77.424 172.332-172.332 172.332zM839.18 912.546c79.922 0 147.356-64.937 147.356-147.356 0-79.922-64.937-147.356-147.356-147.356s-147.356 64.937-147.356 147.356c0 82.42 67.434 147.356 147.356 147.356zM344.663 278.166c-79.922 0-147.356 64.937-147.356 147.356 0 79.922 64.937 147.356 147.356 147.356 79.922 0 147.356-64.937 147.356-147.356 0-79.922-64.937-147.356-147.356-147.356zM839.18-39.024c-79.922 0-147.356 64.937-147.356 147.356 0 14.985 2.498 29.971 7.493 44.956 0 0 0 0 0 0 19.98 59.941 74.927 102.4 139.863 102.4 79.922 0 147.356-64.937 147.356-147.356s-67.434-147.356-147.356-147.356zM974.049 303.141c0 0 2.498 0 2.498 0 4.995 0 9.99 2.498 12.488 9.99 14.985 47.454 19.98 94.907 19.98 144.859 0 39.961-4.995 79.922-14.985 117.385-2.498 7.493-7.493 9.99-14.985 9.99-7.493-2.498-9.99-7.493-9.99-14.985 9.99-37.463 12.488-74.927 12.488-112.39 0-47.454-7.493-92.41-19.98-137.366 2.498-9.99 4.995-17.483 12.488-17.483zM619.395-11.551c-37.463-9.99-77.424-14.985-114.888-14.985-264.741 2.498-479.532 217.288-479.532 482.029s214.79 479.532 479.532 479.532c49.951 0 99.902-7.493 144.859-22.478 7.493-2.498 12.488 2.498 14.985 7.493s0 14.985-4.995 14.985c-49.951 14.985-99.902 24.976-152.351 24.976-279.727 0-507.005-227.278-507.005-504.507s227.278-504.507 504.507-504.507c39.961 0 82.42 4.995 122.38 14.985 7.493 2.498 9.99 7.493 9.99 14.985-2.498 4.995-9.99 9.99-17.483 7.493z" />
247
+ <glyph unicode="&#xe938;" glyph-name="subscribe" data-tags="subscribe" horiz-adv-x="1109" d="M984.039 695.259h-89.912c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h89.912c54.946 0 99.902-44.956 99.902-99.902v-509.502c0-54.946-44.956-99.902-99.902-99.902h-859.161c-54.946 0-99.902 44.956-99.902 99.902v512c0 54.946 44.956 99.902 99.902 99.902h149.854c9.99-137.366 127.376-247.259 267.239-247.259 147.356 0 267.239 119.883 267.239 267.239s-122.38 267.239-269.737 267.239c-144.859 0-264.741-117.385-267.239-264.741h-147.356c-67.434 0-124.878-54.946-124.878-124.878v-509.502c0-67.434 54.946-124.878 124.878-124.878h861.659c67.434 0 124.878 54.946 124.878 124.878v512c-2.498 67.434-57.444 122.38-127.376 122.38zM539.473 935.024c134.868 0 242.263-109.893 242.263-242.263s-109.893-242.263-242.263-242.263c-134.868 0-242.263 109.893-242.263 242.263s109.893 242.263 242.263 242.263zM974.049 515.434c4.995 4.995 4.995 12.488 2.498 17.483-4.995 4.995-12.488 4.995-17.483 2.498l-264.741-224.78c-82.42-69.932-184.82-69.932-269.737-2.498l-274.732 224.78c-4.995 4.995-12.488 2.498-17.483-2.498s-2.498-12.488 2.498-17.483l274.732-222.283-274.732-222.283c-4.995-4.995-4.995-12.488-2.498-17.483 2.498-2.498 4.995-4.995 9.99-4.995 2.498 0 4.995 0 7.493 2.498l277.229 224.78 2.498 2.498c39.961-27.473 84.917-42.459 129.873-42.459s89.912 14.985 129.873 42.459c2.498-2.498 2.498-2.498 4.995-4.995l264.741-222.283c2.498-2.498 4.995-2.498 7.493-2.498s7.493 2.498 9.99 4.995c4.995 4.995 4.995 12.488-2.498 17.483l-264.741 222.283c0 0 0 0 0 0s0 0 0 0l264.741 224.78zM464.546 605.346c7.493-9.99 17.483-14.985 29.971-14.985 0 0 0 0 2.498 0 9.99 0 22.478 4.995 29.971 12.488l149.854 149.854c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-149.854-149.854c-2.498-2.498-7.493-4.995-12.488-4.995s-9.99 2.498-12.488 4.995l-49.951 59.941c-4.995 4.995-12.488 4.995-17.483 2.498-4.995-4.995-4.995-12.488-2.498-17.483l49.951-59.941z" />
248
+ <glyph unicode="&#xe939;" glyph-name="tab" data-tags="tab" horiz-adv-x="1181" d="M1043.98 238.205v452.059c0 54.946-44.956 99.902-99.902 99.902h-149.854c-24.976 0-44.956 19.98-44.956 44.956v14.985c0 42.459-34.966 79.922-79.922 79.922h-152.351c-2.498 0-4.995 0-4.995-2.498-4.995 0-9.99 2.498-12.488 2.498h-152.351c-2.498 0-2.498 0-4.995 0-17.483 17.483-39.961 29.971-67.434 29.971h-182.322c-49.951 0-92.41-42.459-92.41-92.41v-719.298c0-54.946 44.956-99.902 99.902-99.902h784.234c17.483-64.937 74.927-112.39 147.356-112.39 82.42 0 152.351 67.434 152.351 152.351-2.498 77.424-62.439 142.361-139.863 149.854zM726.79 850.107v-17.483c0-17.483 4.995-32.468 14.985-44.956h-117.385c-24.976 0-44.956 19.98-44.956 44.956v17.483c0 19.98-7.493 39.961-22.478 54.946h114.888c29.971 0 54.946-24.976 54.946-54.946zM499.512 905.054c29.971 0 54.946-24.976 54.946-54.946v-17.483c0-17.483 4.995-32.468 14.985-44.956h-147.356c-29.971 0-54.946 24.976-54.946 54.946v24.976c0 14.985-2.498 27.473-7.493 37.463h139.863zM99.902 73.366c-42.459 0-74.927 32.468-74.927 74.927v467.044h639.376c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-639.376v227.278c0 37.463 29.971 67.434 67.434 67.434h182.322c37.463 0 67.434-29.971 67.434-67.434v-22.478c0-44.956 34.966-79.922 79.922-79.922h521.99c42.459 0 74.927-32.468 74.927-74.927v-49.951h-244.761c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h244.761v-377.132c-77.424-7.493-139.863-72.429-139.863-149.854 0-4.995 0-9.99 0-12.488h-779.239zM1031.493-39.024c-69.932 0-127.376 57.444-127.376 127.376s57.444 127.376 127.376 127.376 127.376-57.444 127.376-127.376-57.444-127.376-127.376-127.376zM1086.439 100.839h-42.459v42.459c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-42.459h-42.459c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h42.459v-42.459c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v42.459h42.459c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488zM234.771 815.141h-104.898c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h104.898c7.493 0 12.488 4.995 12.488 12.488s-7.493 12.488-12.488 12.488zM444.566 835.122h22.478c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-22.478c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM636.878 835.122h22.478c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-22.478c-4.995 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488zM866.654 470.478h-374.634c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h374.634c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM861.659 368.078h-369.639c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h369.639c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM754.263 268.176h-262.244c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h262.244c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM369.639 497.951h-194.81c-24.976 0-42.459-19.98-42.459-42.459v-194.81c0-24.976 19.98-42.459 42.459-42.459h194.81c24.976 0 42.459 19.98 42.459 42.459v194.81c0 22.478-19.98 42.459-42.459 42.459zM387.122 258.185c0-9.99-7.493-17.483-17.483-17.483h-194.81c-9.99 0-17.483 7.493-17.483 17.483v194.81c0 9.99 7.493 17.483 17.483 17.483h194.81c9.99 0 17.483-7.493 17.483-17.483v-194.81z" />
249
+ <glyph unicode="&#xe93a;" glyph-name="table" data-tags="table" d="M886.634 960h-482.029c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h94.907v-224.78h-474.537v112.39c0 62.439 49.951 112.39 112.39 112.39h94.907c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-94.907c-74.927 0-137.366-62.439-137.366-137.366v-746.771c0-74.927 62.439-137.366 137.366-137.366h122.38c0 0 0 0 0 0s0 0 0 0h247.259c0 0 0 0 0 0s0 0 0 0h247.259c0 0 0 0 0 0s0 0 0 0h122.38c74.927 0 137.366 62.439 137.366 137.366v746.771c9.99 74.927-52.449 137.366-127.376 137.366zM512 50.888c-7.493 0-12.488-4.995-12.488-12.488v-77.424h-224.78v224.78h224.78v-42.459c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v42.459h224.78v-224.78h-224.78v77.424c0 4.995-4.995 12.488-12.488 12.488zM262.244 293.151c-7.493 0-12.488-4.995-12.488-12.488v-69.932h-224.78v224.78h224.78v-47.454c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v47.454h224.78v-224.78h-224.78v69.932c0 4.995-4.995 12.488-12.488 12.488zM524.488 210.732v224.78h224.78v-224.78h-224.78zM761.756 612.839c7.493 0 12.488 4.995 12.488 12.488v59.941h224.78v-224.78h-224.78v57.444c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-57.444h-224.78v224.78h224.78v-59.941c0-7.493 4.995-12.488 12.488-12.488zM774.244 435.512h224.78v-224.78h-224.78v224.78zM524.488 935.024h362.146c62.439 0 112.39-49.951 112.39-112.39v-112.39h-474.537v224.78zM499.512 460.488h-224.78v224.78h224.78v-224.78zM249.756 685.268v-224.78h-224.78v224.78h224.78zM24.976 73.366v112.39h224.78v-224.78h-112.39c-62.439 0-112.39 49.951-112.39 112.39zM886.634-39.024h-112.39v224.78h224.78v-112.39c0-62.439-49.951-112.39-112.39-112.39z" />
250
+ <glyph unicode="&#xe93b;" glyph-name="team-join" data-tags="team-join" horiz-adv-x="894" d="M659.356 408.039c-129.873 0-237.268-104.898-237.268-237.268s104.898-237.268 237.268-237.268 237.268 104.898 237.268 237.268-107.395 237.268-237.268 237.268zM659.356-39.024c-117.385 0-212.293 94.907-212.293 212.293s94.907 212.293 212.293 212.293c117.385 0 212.293-94.907 212.293-212.293-2.498-117.385-97.405-212.293-212.293-212.293zM764.254 185.756h-94.907v94.907c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-94.907h-94.907c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h212.293c7.493 0 12.488 4.995 12.488 12.488s-2.498 12.488-9.99 12.488zM659.356 128.312c-7.493 0-12.488-4.995-12.488-12.488v-49.951c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v49.951c0 4.995-7.493 12.488-12.488 12.488zM327.18 577.873h7.493c42.459 0 79.922 14.985 109.893 44.956s44.956 67.434 44.956 109.893v72.429c0 84.917-69.932 154.849-154.849 154.849h-7.493c-84.917 0-154.849-69.932-154.849-154.849v-72.429c0-84.917 69.932-154.849 154.849-154.849zM197.307 805.151c0 72.429 57.444 129.873 129.873 129.873h7.493c72.429 0 129.873-57.444 129.873-129.873v-72.429c0-34.966-12.488-67.434-37.463-92.41s-57.444-37.463-92.41-37.463h-7.493c-72.429 0-129.873 57.444-129.873 129.873v72.429zM357.151 190.751h-332.176c0 2.498 0 4.995 0 9.99 0 167.337 137.366 304.702 304.702 304.702 69.932 0 139.863-24.976 194.81-69.932 4.995-4.995 12.488-2.498 17.483 2.498s2.498 12.488-2.498 17.483c-59.941 47.454-132.371 74.927-209.795 74.927-182.322-2.498-329.678-149.854-329.678-332.176 0-7.493 0-14.985 0-22.478v-12.488h354.654c7.493 0 12.488 4.995 12.488 12.488s-2.498 14.985-9.99 14.985z" />
251
+ <glyph unicode="&#xe93c;" glyph-name="team-member" data-tags="team-member" horiz-adv-x="1156" d="M402.107 685.268c-4.995 2.498-12.488 2.498-17.483-4.995-12.488-19.98-19.98-44.956-19.98-69.932 0-79.922 64.937-147.356 147.356-147.356s147.356 64.937 147.356 147.356c0 79.922-64.937 147.356-147.356 147.356-19.98 0-42.459-4.995-59.941-12.488-7.493-2.498-9.99-9.99-4.995-17.483 2.498-7.493 9.99-9.99 17.483-4.995 14.985 7.493 32.468 9.99 49.951 9.99 67.434 0 122.38-54.946 122.38-122.38s-54.946-122.38-122.38-122.38-122.38 54.946-122.38 122.38c0 19.98 4.995 42.459 14.985 59.941 2.498 4.995 0 12.488-4.995 14.985zM691.824 220.722c-4.995-4.995-7.493-12.488-2.498-17.483s12.488-7.493 17.483-2.498c7.493 4.995 14.985 9.99 19.98 14.985 22.478 17.483 27.473 47.454 12.488 72.429-47.454 82.42-134.868 129.873-229.776 129.873s-179.824-47.454-229.776-129.873c-14.985-22.478-7.493-54.946 12.488-72.429 62.439-49.951 134.868-74.927 214.79-74.927 34.966 0 69.932 4.995 102.4 14.985 7.493 2.498 9.99 9.99 7.493 14.985-2.498 7.493-9.99 9.99-14.985 7.493-29.971-9.99-62.439-14.985-94.907-14.985-72.429 0-142.361 24.976-199.805 69.932-12.488 9.99-14.985 27.473-7.493 39.961 44.956 72.429 122.38 117.385 207.298 117.385s162.341-44.956 207.298-117.385c7.493-12.488 4.995-29.971-7.493-39.961-2.498-4.995-7.493-9.99-14.985-12.488zM1156.371 263.18c0 77.424-62.439 137.366-137.366 137.366s-137.366-62.439-137.366-137.366c0-69.932 52.449-127.376 119.883-137.366v-52.449c0-62.439-49.951-112.39-112.39-112.39h-749.268c-64.937 0-114.888 49.951-114.888 112.39v749.268c0 62.439 49.951 112.39 112.39 112.39h749.268c62.439 0 112.39-49.951 112.39-112.39v-302.205c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v302.205c0 74.927-62.439 137.366-137.366 137.366h-749.268c-74.927 0-137.366-62.439-137.366-137.366v-749.268c0-74.927 62.439-137.366 137.366-137.366h749.268c74.927 0 137.366 62.439 137.366 137.366v52.449c72.429 2.498 132.371 64.937 132.371 137.366zM1016.507 150.79c-62.439 0-112.39 49.951-112.39 112.39s49.951 112.39 112.39 112.39 112.39-49.951 112.39-112.39-49.951-112.39-112.39-112.39zM1066.459 275.668h-37.463v37.463c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-37.463h-37.463c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h37.463v-37.463c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v37.463h37.463c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488z" />
252
+ <glyph unicode="&#xe93d;" glyph-name="testimonial-carousel" data-tags="testimonial-carousel" horiz-adv-x="1703" d="M801.717-64h-102.4c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h102.4c7.493 0 12.488-4.995 12.488-12.488s-7.493-12.488-12.488-12.488zM904.117-64h-17.483c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h17.483c7.493 0 12.488-4.995 12.488-12.488s-4.995-12.488-12.488-12.488zM1004.020-64h-17.483c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h17.483c7.493 0 12.488-4.995 12.488-12.488s-4.995-12.488-12.488-12.488zM1303.727 180.761h-569.444c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h569.444c62.439 0 112.39 49.951 112.39 112.39v504.507c0 62.439-49.951 112.39-112.39 112.39h-904.117c-62.439 0-112.39-49.951-112.39-112.39v-504.507c0-62.439 49.951-112.39 112.39-112.39h102.4c7.493 0 12.488-4.995 12.488-12.488s-4.995-12.488-12.488-12.488h-102.4c-74.927 0-137.366 62.439-137.366 137.366v504.507c0 74.927 62.439 137.366 137.366 137.366h904.117c74.927 0 137.366-62.439 137.366-137.366v-504.507c0-77.424-62.439-137.366-137.366-137.366zM197.307 318.127h-52.449c-79.922 0-144.859 64.937-144.859 142.361v217.288c0 79.922 64.937 144.859 144.859 144.859h52.449c7.493 0 12.488-4.995 12.488-12.488s-7.493-12.488-12.488-12.488h-52.449c-67.434 0-119.883-52.449-119.883-117.385v-219.785c0-64.937 52.449-117.385 119.883-117.385h52.449c7.493 0 12.488-4.995 12.488-12.488s-7.493-12.488-12.488-12.488zM1560.976 318.127h-52.449c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h52.449c64.937 0 119.883 52.449 119.883 117.385v217.288c0 64.937-52.449 119.883-119.883 119.883h-52.449c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h52.449c79.922 0 144.859-64.937 144.859-144.859v-217.288c-2.498-77.424-67.434-142.361-144.859-142.361zM1168.859 585.366h-332.176c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h334.673c7.493 0 12.488-4.995 12.488-12.488s-7.493-12.488-14.985-12.488zM996.527 490.459h-159.844c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h159.844c7.493 0 12.488-4.995 12.488-12.488s-4.995-12.488-12.488-12.488zM1168.859 680.273h-332.176c-7.493 0-12.488 4.995-12.488 12.488s4.995 12.488 12.488 12.488h334.673c7.493 0 12.488-4.995 12.488-12.488s-7.493-12.488-14.985-12.488zM589.424 405.541c-4.995 0-9.99 2.498-12.488 7.493-2.498 7.493 0 12.488 4.995 17.483 74.927 34.966 122.38 109.893 122.38 192.312 0 2.498 0 4.995 0 4.995v2.498c0 44.956-34.966 79.922-79.922 79.922s-79.922-34.966-79.922-79.922 34.966-79.922 79.922-79.922c12.488 0 27.473 2.498 37.463 9.99 4.995 2.498 12.488 0 17.483-4.995 2.498-4.995 0-12.488-4.995-17.483-14.985-7.493-32.468-12.488-49.951-12.488-57.444 0-104.898 47.454-104.898 104.898s47.454 104.898 107.395 104.898c57.444 0 104.898-47.454 104.898-104.898 0-4.995 0-7.493 0-9.99 0-89.912-52.449-174.829-137.366-212.293 0-2.498-2.498-2.498-4.995-2.498z" />
253
+ <glyph unicode="&#xe93e;" glyph-name="testimonial-grid" data-tags="testimonial-grid" horiz-adv-x="2423" d="M512 960h-355.556c-85.333 0-156.444-71.111-156.444-156.444v-73.956c0-8.533 5.689-14.222 14.222-14.222s14.222 5.689 14.222 14.222v73.956c0 71.111 56.889 128 128 128h355.556c71.111 0 128-56.889 128-128v-355.556c0-71.111-56.889-128-128-128h-355.556c-71.111 0-128 56.889-128 128v102.4c0 8.533-5.689 14.222-14.222 14.222s-14.222-5.689-14.222-14.222v-102.4c0-85.333 71.111-156.444 156.444-156.444h355.556c85.333 0 156.444 71.111 156.444 156.444v355.556c0 85.333-68.267 156.444-156.444 156.444zM588.8 123.733h-560.356c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h560.356c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM295.822-35.556h-267.378c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h267.378c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM287.289 462.222c-8.533-2.844-11.378-11.378-5.689-19.911 2.844-5.689 8.533-8.533 14.222-8.533 2.844 0 2.844 0 5.689 0 96.711 45.511 156.444 142.222 156.444 244.622 0 2.844 0 5.689 0 11.378 0 68.267-54.044 122.311-122.311 122.311-68.267 2.844-122.311-51.2-122.311-119.467s54.044-122.311 122.311-122.311c19.911 0 39.822 5.689 56.889 14.222 5.689 2.844 8.533 11.378 5.689 19.911-2.844 5.689-11.378 8.533-19.911 5.689-14.222-8.533-28.444-11.378-42.667-11.378-51.2 0-93.867 42.667-93.867 93.867s42.667 93.867 93.867 93.867c51.2 0 93.867-42.667 93.867-93.867v-2.844c0-2.844 0-2.844 0-5.689-2.844-93.867-56.889-182.044-142.222-221.867zM1390.933 960h-355.556c-85.333 0-156.444-71.111-156.444-156.444v-355.556c0-85.333 71.111-156.444 156.444-156.444h355.556c85.333 0 156.444 71.111 156.444 156.444v102.4c0 8.533-5.689 14.222-14.222 14.222s-14.222-5.689-14.222-14.222v-102.4c0-71.111-56.889-128-128-128h-355.556c-71.111 0-128 56.889-128 128v355.556c0 71.111 56.889 128 128 128h355.556c71.111 0 128-56.889 128-128v-73.956c0-8.533 5.689-14.222 14.222-14.222s14.222 5.689 14.222 14.222v73.956c0 85.333-71.111 156.444-156.444 156.444zM1467.733 123.733h-563.2c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h560.356c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-11.378 14.222zM1174.756-35.556h-270.222c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h270.222c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM1163.378 462.222c-8.533-2.844-11.378-11.378-5.689-19.911 2.844-5.689 8.533-8.533 14.222-8.533 2.844 0 2.844 0 5.689 0 96.711 45.511 156.444 142.222 156.444 244.622 0 2.844 0 5.689 0 11.378 0 68.267-54.044 122.311-122.311 122.311s-122.311-54.044-122.311-122.311 54.044-122.311 122.311-122.311c19.911 0 39.822 5.689 56.889 14.222 5.689 2.844 8.533 11.378 5.689 19.911-2.844 5.689-11.378 8.533-19.911 5.689-14.222-8.533-28.444-11.378-42.667-11.378-51.2 0-93.867 42.667-93.867 93.867s42.667 93.867 93.867 93.867 93.867-42.667 93.867-93.867v-2.844c0-2.844 0-2.844 0-5.689 0-91.022-56.889-179.2-142.222-219.022zM2267.022 960h-355.556c-85.333 0-156.444-71.111-156.444-156.444v-73.956c0-8.533 5.689-14.222 14.222-14.222s14.222 5.689 14.222 14.222v73.956c0 71.111 56.889 128 128 128h355.556c71.111 0 128-56.889 128-128v-355.556c0-71.111-56.889-128-128-128h-355.556c-71.111 0-128 56.889-128 128v102.4c0 8.533-5.689 14.222-14.222 14.222s-14.222-5.689-14.222-14.222v-102.4c0-85.333 71.111-156.444 156.444-156.444h355.556c85.333 0 156.444 71.111 156.444 156.444v355.556c0 85.333-71.111 156.444-156.444 156.444zM2343.822 123.733h-560.356c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h560.356c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM2050.844-35.556h-270.222c-8.533 0-14.222-5.689-14.222-14.222s5.689-14.222 14.222-14.222h270.222c8.533 0 14.222 5.689 14.222 14.222s-5.689 14.222-14.222 14.222zM2042.311 462.222c-8.533-2.844-11.378-11.378-5.689-19.911 2.844-5.689 8.533-8.533 14.222-8.533 2.844 0 2.844 0 5.689 0 96.711 45.511 156.444 142.222 156.444 244.622 0 2.844 0 5.689 0 11.378 0 68.267-54.044 122.311-122.311 122.311s-122.311-51.2-122.311-119.467 54.044-122.311 122.311-122.311c19.911 0 39.822 5.689 56.889 14.222 5.689 2.844 8.533 11.378 5.689 19.911-2.844 5.689-11.378 8.533-19.911 5.689-14.222-8.533-28.444-11.378-42.667-11.378-51.2 0-93.867 42.667-93.867 93.867s42.667 93.867 93.867 93.867c51.2 0 93.867-42.667 93.867-93.867v-2.844c0-2.844 0-2.844 0-5.689-2.844-93.867-56.889-182.044-142.222-221.867z" />
254
+ <glyph unicode="&#xe93f;" glyph-name="testimonial-quote" data-tags="testimonial-quote" horiz-adv-x="1440" d="M1440.206 639.587c0 178.374-142.039 320.413-317.11 320.413s-320.413-142.039-320.413-320.413 142.039-320.413 320.413-320.413c52.852 0 105.703 13.213 148.645 36.335 6.606 3.303 9.91 13.213 6.606 23.123-3.303 6.606-13.213 9.91-23.123 6.606-39.639-23.123-89.187-33.032-135.432-33.032-158.555 0-287.381 128.826-287.381 287.381s132.129 287.381 290.684 287.381 287.381-128.826 287.381-287.381v-9.91c0-6.606 0-9.91 0-16.516 0-274.168-161.858-528.516-412.903-644.129-9.91-3.303-13.213-13.213-6.606-23.123 3.303-6.606 9.91-9.91 16.516-9.91 3.303 0 3.303 0 6.606 0 260.955 122.219 429.419 386.477 429.419 673.858 0 6.606 0 13.213 0 19.819l-3.303 9.91zM320.413 960c-178.374 0-320.413-142.039-320.413-320.413 0-175.071 142.039-320.413 320.413-320.413 52.852 0 105.703 13.213 148.645 36.335 6.606 3.303 9.91 13.213 6.606 23.123s-13.213 9.91-23.123 6.606c-39.639-23.123-89.187-33.032-135.432-33.032-155.252 0-284.077 128.826-284.077 287.381s128.826 287.381 287.381 287.381c158.555 0 287.381-128.826 287.381-287.381v-9.91c0-6.606 0-9.91 0-16.516 0-274.168-161.858-528.516-412.903-644.129-9.91-3.303-13.213-13.213-6.606-23.123 0-6.606 6.606-9.91 13.213-9.91 3.303 0 3.303 0 6.606 0 260.955 122.219 429.419 386.477 429.419 673.858 0 6.606 0 13.213 0 19.819v9.91c3.303 175.071-142.039 320.413-317.11 320.413z" />
255
+ <glyph unicode="&#xe940;" glyph-name="testimonial-slider" data-tags="testimonial-slider" horiz-adv-x="982" d="M589.424 273.171c0 7.493-4.995 12.488-12.488 12.488h-334.673c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h334.673c4.995 0 12.488 7.493 12.488 12.488zM242.263 193.249c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h159.844c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-159.844zM382.127 423.024c-7.493-2.498-9.99-9.99-4.995-17.483 2.498-4.995 7.493-7.493 12.488-7.493 2.498 0 2.498 0 4.995 0 82.42 37.463 137.366 122.38 137.366 212.293 0 2.498 0 4.995 0 9.99 0 57.444-47.454 104.898-104.898 104.898s-104.898-47.454-104.898-104.898 47.454-104.898 104.898-104.898c17.483 0 34.966 4.995 49.951 12.488 4.995 2.498 7.493 9.99 4.995 17.483-2.498 4.995-9.99 7.493-17.483 4.995-12.488-4.995-24.976-9.99-37.463-9.99-44.956 0-79.922 34.966-79.922 79.922s34.966 79.922 79.922 79.922c44.956 0 79.922-34.966 79.922-79.922v-2.498c0-2.498 0-2.498 0-4.995-2.498-79.922-49.951-154.849-124.878-189.815zM894.127 860.098c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488c32.468 0 59.941-27.473 59.941-59.941v-654.361c0-32.468-27.473-59.941-59.941-59.941h-57.444v297.21c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-337.171c0-32.468-27.473-59.941-59.941-59.941h-636.878c-49.951 0-89.912 39.961-89.912 89.912v794.224c0 49.951 39.961 89.912 89.912 89.912h609.405c49.951 0 89.912-39.961 89.912-89.912v-307.2c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v307.2c0 64.937-52.449 114.888-114.888 114.888h-609.405c-64.937 0-114.888-49.951-114.888-114.888v-796.722c0-62.439 49.951-112.39 114.888-112.39h639.376c47.454 0 84.917 37.463 84.917 84.917v14.985h57.444c47.454 0 84.917 37.463 84.917 84.917v654.361c0 47.454-39.961 84.917-87.415 84.917z" />
256
+ <glyph unicode="&#xe941;" glyph-name="toggle" data-tags="toggle" horiz-adv-x="2307" d="M512 960c-281.319 0-512-230.681-512-512s230.681-512 512-512 512 230.681 512 512c0 281.319-230.681 512-512 512zM512-7.736c-253.187 0-455.736 202.549-455.736 455.736s202.549 455.736 455.736 455.736 455.736-202.549 455.736-455.736-202.549-455.736-455.736-455.736zM512 746.198c-16.879 0-28.132-11.253-28.132-28.132s11.253-28.132 28.132-28.132c135.033 0 241.934-106.901 241.934-241.934 0-16.879 11.253-28.132 28.132-28.132s28.132 11.253 28.132 28.132c0 163.165-135.033 298.198-298.198 298.198zM1969.231 785.582h-787.692c-16.879 0-28.132-11.253-28.132-28.132s11.253-28.132 28.132-28.132h787.692c157.538 0 281.319-129.407 281.319-281.319s-129.407-281.319-281.319-281.319h-787.692c-16.879 0-28.132-11.253-28.132-28.132s11.253-28.132 28.132-28.132h787.692c185.67 0 337.582 151.912 337.582 337.582s-151.912 337.582-337.582 337.582z" />
257
+ <glyph unicode="&#xe942;" glyph-name="user-login" data-tags="user-login" horiz-adv-x="967" d="M219.785 188.254c0-7.493 4.995-12.488 12.488-12.488 0 0 0 0 0 0 7.493 0 12.488 4.995 12.488 12.488 9.99 127.376 117.385 224.78 244.761 224.78 69.932 0 127.376 57.444 127.376 127.376s-57.444 127.376-127.376 127.376c-69.932 0-127.376-57.444-127.376-127.376 0-47.454 24.976-87.415 64.937-109.893-112.39-29.971-199.805-124.878-207.298-242.263zM384.624 537.912c0 57.444 44.956 102.4 102.4 102.4s102.4-44.956 102.4-102.4-44.956-102.4-102.4-102.4-102.4 47.454-102.4 102.4zM579.434 305.639c-4.995 37.463-39.961 67.434-79.922 67.434-44.956 0-79.922-34.966-79.922-79.922s34.966-79.922 79.922-79.922c39.961 0 72.429 29.971 79.922 67.434h52.449v-42.459c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v42.459h29.971v-24.976c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v24.976h27.473c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-159.844zM499.512 238.205c-29.971 0-54.946 24.976-54.946 54.946s24.976 54.946 54.946 54.946 54.946-24.976 54.946-54.946-24.976-54.946-54.946-54.946zM849.171 737.717c-4.995 4.995-12.488 4.995-17.483 2.498-4.995-4.995-4.995-12.488-2.498-17.483 72.429-82.42 112.39-189.815 112.39-299.707 0-252.254-204.8-459.551-459.551-459.551-252.254-2.498-457.054 202.302-457.054 457.054 0 252.254 204.8 457.054 459.551 457.054 54.946 0 107.395-9.99 157.346-27.473l-72.429-22.478c-7.493-2.498-9.99-9.99-7.493-14.985s7.493-9.99 12.488-9.99c0 0 2.498 0 2.498 0l112.39 32.468-32.468 112.39c-2.498 7.493-9.99 9.99-14.985 7.493-7.493-2.498-9.99-9.99-7.493-14.985l19.98-72.429c-54.946 19.98-109.893 29.971-169.834 29.971-267.239 4.995-484.527-212.293-484.527-477.034 0-267.239 217.288-484.527 484.527-484.527s484.527 217.288 484.527 484.527c-2.498 114.888-44.956 227.278-119.883 317.19z" />
258
+ <glyph unicode="&#xe943;" glyph-name="user-registration" data-tags="user-registration" horiz-adv-x="967" d="M849.171 737.717c-4.995 4.995-12.488 4.995-17.483 2.498-4.995-4.995-4.995-12.488-2.498-17.483 72.429-82.42 112.39-189.815 112.39-299.707 0-252.254-204.8-459.551-459.551-459.551-252.254-2.498-457.054 202.302-457.054 457.054 0 252.254 204.8 457.054 459.551 457.054 54.946 0 107.395-9.99 157.346-27.473l-72.429-22.478c-7.493-2.498-9.99-9.99-7.493-14.985s7.493-9.99 12.488-9.99c0 0 2.498 0 2.498 0l112.39 32.468-32.468 112.39c-2.498 7.493-9.99 9.99-14.985 7.493-7.493-2.498-9.99-9.99-7.493-14.985l19.98-72.429c-54.946 19.98-109.893 29.971-169.834 29.971-267.239 4.995-484.527-212.293-484.527-477.034 0-267.239 217.288-484.527 484.527-484.527s484.527 217.288 484.527 484.527c-2.498 114.888-44.956 227.278-119.883 317.19zM484.527 642.81l-37.463 17.483c-12.488 4.995-24.976 4.995-37.463 0s-19.98-14.985-24.976-27.473l-122.38-329.678 9.99-107.395c0-9.99 7.493-17.483 14.985-19.98 2.498 0 4.995-2.498 9.99-2.498s12.488 2.498 17.483 7.493l72.429 64.937 122.38 339.668c7.493 22.478-2.498 47.454-24.976 57.444zM484.527 592.859l-119.883-332.176-67.434-59.941-9.99 99.902 119.883 324.683c2.498 4.995 4.995 9.99 12.488 12.488 4.995 2.498 12.488 2.498 17.483 0l37.463-17.483c9.99-4.995 14.985-14.985 9.99-27.473zM559.454 490.459c0-7.493 4.995-12.488 12.488-12.488h119.883c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-119.883c-7.493 0-12.488-4.995-12.488-12.488zM691.824 410.537h-169.834c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h169.834c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM479.532 293.151h212.293c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-212.293c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488z" />
259
+ <glyph unicode="&#xe944;" glyph-name="vertical-timeline" data-tags="vertical-timeline" horiz-adv-x="1401" d="M1143.883 840.117h244.761c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-244.761c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM1143.883 757.698h239.766c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-239.766c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM1143.883 672.78h152.351c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-152.351c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488zM1038.985 885.073h-147.356c-24.976 0-42.459-19.98-42.459-42.459v-147.356c0-24.976 19.98-42.459 42.459-42.459h147.356c22.478 0 42.459 19.98 42.459 42.459v147.356c0 24.976-19.98 42.459-42.459 42.459zM1056.468 695.259c0-9.99-7.493-17.483-17.483-17.483h-147.356c-9.99 0-17.483 7.493-17.483 17.483v147.356c0 9.99 7.493 17.483 17.483 17.483h147.356c9.99 0 17.483-7.493 17.483-17.483v-147.356zM1388.644 223.22h-244.761c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h244.761c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1383.649 138.302h-239.766c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h239.766c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1296.234 55.883h-152.351c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h152.351c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM1038.985 243.2h-147.356c-24.976 0-42.459-19.98-42.459-42.459v-147.356c0-24.976 19.98-42.459 42.459-42.459h147.356c22.478 0 42.459 19.98 42.459 42.459v147.356c0 22.478-19.98 42.459-42.459 42.459zM1056.468 53.385c0-9.99-7.493-17.483-17.483-17.483h-147.356c-9.99 0-17.483 7.493-17.483 17.483v147.356c0 9.99 7.493 17.483 17.483 17.483h147.356c9.99 0 17.483-7.493 17.483-17.483v-147.356zM257.249 542.907h-244.761c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h244.761c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM257.249 460.488h-239.766c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h239.766c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM257.249 378.068h-152.351c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h152.351c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488zM509.502 565.385h-147.356c-24.976 0-42.459-19.98-42.459-42.459v-147.356c0-24.976 19.98-42.459 42.459-42.459h147.356c24.976 0 42.459 19.98 42.459 42.459v147.356c2.498 22.478-17.483 42.459-42.459 42.459zM529.483 373.073c0-9.99-7.493-17.483-17.483-17.483h-147.356c-9.99 0-17.483 7.493-17.483 17.483v147.356c0 9.99 7.493 17.483 17.483 17.483h147.356c9.99 0 17.483-7.493 17.483-17.483v-147.356zM774.244 757.698h29.971c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-29.971c-4.995 29.971-29.971 54.946-59.941 59.941v104.898c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-104.898c-34.966-4.995-62.439-34.966-62.439-72.429s27.473-67.434 62.439-72.429v-174.829c-29.971-4.995-54.946-29.971-59.941-59.941h-29.971c-7.493 0-12.488-4.995-12.488-12.488s4.995-14.985 12.488-14.985h29.971c4.995-29.971 29.971-54.946 59.941-59.941v-174.829c-34.966-4.995-62.439-34.966-62.439-72.429s27.473-67.434 62.439-72.429v-104.898c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v104.898c29.971 4.995 54.946 29.971 59.941 59.941h29.971c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-29.971c-4.995 29.971-29.971 54.946-59.941 59.941v174.829c34.966 4.995 62.439 34.966 62.439 72.429s-27.473 67.434-62.439 72.429v174.829c32.468 7.493 54.946 29.971 59.941 62.439zM654.361 770.185c0 27.473 22.478 49.951 49.951 49.951s49.951-22.478 49.951-49.951-22.478-49.951-49.951-49.951c-29.971 0-49.951 22.478-49.951 49.951zM751.766 125.815c0-27.473-22.478-49.951-49.951-49.951s-49.951 22.478-49.951 49.951 22.478 49.951 49.951 49.951c27.473 0 49.951-22.478 49.951-49.951zM751.766 448c0-27.473-22.478-49.951-49.951-49.951s-49.951 22.478-49.951 49.951c0 27.473 22.478 49.951 49.951 49.951s49.951-22.478 49.951-49.951z" />
260
+ <glyph unicode="&#xe945;" glyph-name="video-player" data-tags="video-player" horiz-adv-x="982" d="M894.127 860.098c-7.493 0-12.488-4.995-12.488-12.488s7.493-12.488 12.488-12.488c32.468 0 59.941-27.473 59.941-59.941v-654.361c0-32.468-27.473-59.941-59.941-59.941h-57.444v297.21c0 7.493-4.995 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-307.2c0-49.951-39.961-89.912-89.912-89.912h-606.907c-49.951 0-89.912 39.961-89.912 89.912v794.224c0 49.951 39.961 89.912 89.912 89.912h606.907c49.951 0 89.912-39.961 89.912-89.912v-304.702c0-7.493 4.995-12.488 12.488-12.488s12.488 4.995 12.488 12.488v304.702c0 64.937-52.449 114.888-114.888 114.888h-606.907c-62.439 0-114.888-52.449-114.888-114.888v-791.727c0-64.937 52.449-117.385 114.888-117.385h606.907c57.444 0 107.395 42.459 114.888 99.902h57.444c47.454 0 84.917 37.463 84.917 84.917v654.361c2.498 47.454-37.463 84.917-84.917 84.917zM132.371 128.312c0-7.493 4.995-12.488 12.488-12.488h104.898c4.995-24.976 27.473-44.956 54.946-44.956s49.951 19.98 54.946 44.956h327.18c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488h-327.18c-4.995 24.976-27.473 44.956-54.946 44.956s-49.951-19.98-54.946-44.956h-104.898c-7.493 0-12.488-4.995-12.488-12.488zM304.702 160.78c17.483 0 32.468-14.985 32.468-32.468s-14.985-32.468-32.468-32.468-29.971 14.985-29.971 32.468c0 17.483 12.488 32.468 29.971 32.468zM387.122 448c7.493 0 17.483 2.498 24.976 7.493l92.41 54.946c14.985 9.99 24.976 24.976 24.976 42.459s-9.99 32.468-24.976 42.459l-92.41 54.946c-14.985 9.99-32.468 9.99-49.951 0-14.985-9.99-24.976-24.976-24.976-42.459v-107.395c0-17.483 9.99-32.468 24.976-42.459 7.493-7.493 17.483-9.99 24.976-9.99zM364.644 605.346c0 7.493 4.995 17.483 12.488 19.98 2.498 2.498 7.493 2.498 12.488 2.498s7.493 0 12.488-2.498l92.41-54.946c7.493-4.995 12.488-12.488 12.488-19.98s-4.995-17.483-12.488-19.98l-94.907-54.946c-7.493-4.995-17.483-4.995-24.976 0s-12.488 12.488-12.488 19.98v109.893zM299.707 700.254c4.995 4.995 7.493 12.488 2.498 17.483s-12.488 7.493-17.483 2.498c-52.449-42.459-82.42-102.4-82.42-169.834 0-119.883 97.405-217.288 217.288-217.288s217.288 97.405 217.288 217.288c0 119.883-97.405 217.288-217.288 217.288-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488c107.395 0 192.312-87.415 192.312-192.312s-87.415-192.312-192.312-192.312c-107.395 0-192.312 87.415-192.312 192.312 0 59.941 24.976 114.888 72.429 149.854z" />
261
+ <glyph unicode="&#xe946;" glyph-name="weather" data-tags="weather" horiz-adv-x="1216" d="M986.537 527.922c-54.946 114.888-169.834 189.815-297.21 189.815-177.327 0-319.688-139.863-329.678-312.195-9.99 2.498-19.98 2.498-29.971 2.498-97.405 0-174.829-79.922-174.829-174.829 0-97.405 79.922-174.829 174.829-174.829h199.805c7.493 0 12.488 4.995 12.488 12.488s-4.995 12.488-12.488 12.488v0h-199.805c-82.42 0-149.854 67.434-149.854 149.854s67.434 149.854 149.854 149.854c12.488 0 24.976-2.498 37.463-7.493l14.985-4.995v17.483c0 167.337 137.366 304.702 304.702 304.702 114.888 0 219.785-64.937 272.234-167.337-64.937-4.995-122.38-37.463-162.341-87.415-4.995-4.995-2.498-12.488 2.498-17.483s12.488-2.498 17.483 2.498c39.961 49.951 97.405 79.922 162.341 79.922 0 0 0 0 2.498 0 0 0 0 0 0 0 114.888 0 209.795-94.907 209.795-209.795s-94.907-209.795-209.795-209.795h-119.883c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488v0h119.883c129.873 0 234.771 104.898 234.771 234.771 0 127.376-102.4 232.273-229.776 234.771zM249.756 452.995c2.498-2.498 4.995-2.498 7.493-2.498s7.493 2.498 9.99 4.995c4.995 4.995 2.498 12.488-2.498 17.483-39.961 29.971-59.941 74.927-59.941 124.878 0 87.415 72.429 159.844 159.844 159.844 39.961 0 79.922-14.985 107.395-42.459 4.995-4.995 12.488-4.995 17.483 0s4.995 12.488 0 17.483c-34.966 32.468-79.922 49.951-124.878 49.951-102.4 0-184.82-82.42-184.82-184.82 0-57.444 24.976-109.893 69.932-144.859zM204.8 452.995c-4.995 4.995-12.488 4.995-17.483 0l-94.907-84.917c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 4.995-4.995 9.99-4.995 2.498 0 4.995 0 7.493 2.498l94.907 87.415c4.995 4.995 4.995 12.488 0 17.483zM147.356 595.356c0 7.493-4.995 12.488-12.488 12.488h-122.38c-7.493 0-12.488-4.995-12.488-12.488s4.995-12.488 12.488-12.488h122.38c7.493 0 12.488 7.493 12.488 12.488zM194.81 747.707c2.498-2.498 4.995-4.995 9.99-4.995 2.498 0 4.995 0 7.493 2.498 4.995 4.995 4.995 12.488 0 17.483l-87.415 94.907c-4.995 4.995-12.488 4.995-17.483 0s-7.493-12.488-2.498-17.483l89.912-92.41zM362.146 810.146c4.995 0 12.488 7.493 12.488 12.488v124.878c0 7.493-7.493 12.488-12.488 12.488s-12.488-4.995-12.488-12.488v-124.878c0-4.995 4.995-12.488 12.488-12.488zM516.995 752.702c2.498 0 7.493 0 7.493 2.498l87.415 84.917c4.995 4.995 4.995 12.488 0 17.483s-12.488 4.995-17.483 0l-87.415-84.917c-4.995-4.995-4.995-12.488 0-17.483 2.498-2.498 4.995-2.498 9.99-2.498zM711.805 185.756c2.498 7.493 0 12.488-4.995 17.483-4.995 2.498-12.488 0-17.483-4.995l-77.424-164.839 112.39 37.463-44.956-117.385c-2.498-7.493 0-12.488 7.493-14.985 2.498 0 2.498 0 4.995 0 4.995 0 9.99 2.498 12.488 7.493l64.937 167.337-107.395-37.463 49.951 109.893z" />
262
+ <glyph unicode="&#xe947;" glyph-name="ekit" data-tags="ekit" horiz-adv-x="1106" d="M977.455-64c-7.447 0-14.895 3.724-22.342 11.171l-333.265 404.015c-46.545 57.716-46.545 141.498 0 197.353l327.68 400.291c5.585 7.447 13.033 11.171 20.48 11.171 9.309 0 18.618-3.724 24.204-9.309l94.953-98.676c9.309-11.171 11.171-29.789 1.862-40.96l-249.484-297.891c-29.789-35.375-29.789-87.505 0-124.742l256.931-307.2c11.171-11.171 9.309-29.789-1.862-42.822l-93.091-91.229c-3.724-3.724-16.756-9.309-22.342-9.309h-3.724zM39.098-37.935c-20.48 0-39.098 18.618-39.098 39.098v106.124c0 20.48 18.618 39.098 39.098 39.098h517.585c20.48 0 37.236-16.756 39.098-40.96v-104.262c0-20.48-18.618-39.098-39.098-39.098h-517.585zM39.098 747.753c-20.48 0-39.098 18.618-39.098 39.098v106.124c0 20.48 18.618 39.098 39.098 39.098h517.585c20.48 0 39.098-18.618 39.098-39.098v-106.124c0-20.48-18.618-39.098-39.098-39.098h-517.585zM39.098 354.909c-20.48 0-39.098 18.618-39.098 39.098v106.124c0 20.48 18.618 39.098 39.098 39.098h299.753c20.48 0 39.098-18.618 39.098-39.098v-106.124c0-20.48-18.618-39.098-39.098-39.098h-299.753z" />
263
+ <glyph unicode="&#xe948;" glyph-name="double-left-chevron" data-tags="double-left-chevron" d="M594.082 435.187l403.28 403.237c6.836 6.839 10.232 14.71 10.232 23.601 0 8.895-3.418 16.765-10.232 23.601l-51.313 51.306c-6.836 6.836-14.71 10.268-23.587 10.268-8.906 0-16.765-3.432-23.615-10.268l-478.158-478.14c-6.839-6.839-10.253-14.71-10.253-23.601 0-8.895 3.414-16.762 10.253-23.601l478.158-478.14c6.839-6.85 14.685-10.246 23.59-10.246s16.747 3.403 23.587 10.246l51.31 51.274c6.836 6.839 10.246 14.713 10.246 23.612 0 8.884-3.407 16.751-10.246 23.59l-403.251 403.262zM200.064 435.187l403.24 403.237c6.839 6.839 10.246 14.71 10.246 23.601 0 8.895-3.403 16.765-10.246 23.601l-51.285 51.306c-6.839 6.836-14.71 10.268-23.59 10.268-8.906 0-16.776-3.432-23.612-10.268l-478.162-478.14c-6.839-6.839-10.253-14.71-10.253-23.601 0-8.895 3.414-16.762 10.253-23.601l478.158-478.14c6.836-6.85 14.699-10.246 23.612-10.246 8.88 0 16.751 3.403 23.587 10.246l51.288 51.274c6.839 6.839 10.246 14.713 10.246 23.612 0 8.884-3.403 16.751-10.246 23.59l-403.237 403.262z" />
264
+ <glyph unicode="&#xe949;" glyph-name="double-angle-pointing-to-right" data-tags="double-angle-pointing-to-right" d="M997.33 458.804l-478.157 478.129c-6.825 6.835-14.695 10.267-23.59 10.267-8.884 0-16.743-3.432-23.582-10.267l-51.309-51.301c-6.839-6.839-10.253-14.695-10.253-23.6s3.414-16.761 10.253-23.6l403.248-403.238-403.245-403.248c-6.839-6.839-10.253-14.709-10.253-23.59 0-8.902 3.414-16.772 10.253-23.611l51.309-51.287c6.835-6.846 14.695-10.257 23.582-10.257 8.905 0 16.765 3.418 23.586 10.257l478.157 478.132c6.835 6.835 10.246 14.709 10.246 23.6s-3.411 16.761-10.246 23.615zM613.575 435.189c0 8.891-3.403 16.765-10.267 23.615l-478.125 478.129c-6.835 6.835-14.706 10.267-23.597 10.267s-16.765-3.432-23.6-10.267l-51.298-51.305c-6.85-6.839-10.264-14.695-10.264-23.6s3.414-16.761 10.264-23.6l403.238-403.238-403.238-403.245c-6.85-6.839-10.264-14.709-10.264-23.59 0-8.902 3.414-16.772 10.264-23.611l51.294-51.287c6.839-6.846 14.709-10.257 23.6-10.257s16.761 3.418 23.6 10.257l478.125 478.132c6.864 6.835 10.267 14.709 10.267 23.6z" />
265
+ <glyph unicode="&#xe94a;" glyph-name="left-arrow" data-tags="left-arrow" d="M334.018 784.337c14.436 14.436 37.164 14.436 51.6 0 13.949-13.949 13.949-37.164 0-51.080l-261.641-261.641h863.38c20.126 0 36.643-15.997 36.643-36.123s-16.517-36.643-36.643-36.643h-863.38l261.641-261.153c13.949-14.436 13.949-37.684 0-51.6-14.436-14.436-37.164-14.436-51.6 0l-323.581 323.581c-13.949 13.949-13.949 37.164 0 51.080l323.581 323.581z" />
266
+ <glyph unicode="&#xe94b;" glyph-name="download-arrow" data-tags="download-arrow" d="M861.547 257.377c13.955 14.443 13.955 37.181 0 51.625-14.443 13.955-37.702 13.955-51.625 0l-261.766-261.766v863.824c0 20.136-16.005 36.14-36.14 36.14s-36.661-16.005-36.661-36.14v-863.824l-261.245 261.766c-14.443 13.955-37.181 13.955-51.625 0-13.955-14.443-13.955-37.181 0-51.625l323.735-323.735c13.955-13.955 37.181-13.955 51.625 0l323.702 323.735z" />
267
+ <glyph unicode="&#xe94c;" glyph-name="left-arrow2" data-tags="left-arrow2" d="M728.6 440.2h-655.4l146.6 146.6c8.4 8.4 8.4 22 0 30.4s-22 8.4-30.4 0l-182.6-182.6c-4.2-4-6.8-9.6-6.8-15.6 0-6.2 2.6-11.8 6.8-15.6l182.6-182.6c4.2-4.2 9.6-6.4 15.2-6.4s11 2 15.2 6.4c8.4 8.4 8.4 22 0 30.4l-146.6 146.6h655.2c11.8 0 21.4 9.6 21.4 21.4 0.2 11.4-9.4 21-21.2 21zM1002.6 440.2h-177.2c-11.8 0-21.4-9.6-21.4-21.4s9.6-21.4 21.4-21.4h177.2c11.8 0 21.4 9.6 21.4 21.4-0.2 11.8-9.6 21.4-21.4 21.4z" />
268
+ <glyph unicode="&#xe94d;" glyph-name="right-arrow2" data-tags="right-arrow2" d="M1017.2 430.6l-182.6 182.6c-8.4 8.4-22 8.4-30.4 0s-8.4-22 0-30.4l146.6-146.6h-655.4c-11.8 0-21.4-9.6-21.2-21 0-11.8 9.6-21.4 21.4-21.4h655.2l-146.6-146.6c-8.4-8.4-8.4-22 0-30.4 4.2-4.4 9.6-6.4 15.2-6.4s11 2.2 15.2 6.4l182.6 182.6c4.2 3.8 6.8 9.4 6.8 15.6 0 6-2.6 11.6-6.8 15.6zM198.6 436.2h-177.2c-11.8 0-21.2-9.6-21.4-21.4 0-11.8 9.6-21.4 21.4-21.4h177.2c11.8 0 21.4 9.6 21.4 21.4s-9.6 21.4-21.4 21.4z" />
269
+ <glyph unicode="&#xe94e;" glyph-name="burger" data-tags="burger" d="M53.248 341.504c-31.744-37.888-25.6-81.92-25.6-83.968 1.024-6.144 6.144-11.264 12.288-11.264 15.36 0 25.6-2.048 34.816-5.12v-86.016c-12.288-4.096-22.528-11.264-30.72-21.504-13.312-15.36-18.432-35.84-15.36-56.32l8.192-47.104c9.216-54.272 57.344-94.208 114.688-94.208h719.872c57.344 0 105.472 39.936 114.688 94.208l8.192 47.104c3.072 19.456-2.048 39.936-15.36 56.32-9.216 10.24-20.48 18.432-33.792 22.528v83.968c9.216 4.096 20.48 6.144 37.888 6.144 6.144 0 11.264 4.096 12.288 9.216 5.12 19.456 4.096 56.32-24.576 86.016 30.72 11.264 52.224 39.936 52.224 72.704v33.792c0 34.816-28.672 62.464-60.416 73.728 4.096 3.072 8.192 6.144 12.288 9.216 31.744 29.696 48.128 78.848 48.128 144.384 0 81.92-44.032 156.672-122.88 209.92-69.632 48.128-162.816 74.752-254.976 74.752h-266.24c-92.16 0-186.368-26.624-256-73.728-78.848-53.248-122.88-128-122.88-209.92 0-66.56 16.384-115.712 48.128-145.408 4.096-4.096 8.192-7.168 12.288-10.24-31.744-10.24-60.416-37.888-60.416-72.704v-32.768c0-34.816 22.528-63.488 53.248-73.728zM542.72 158.208c-50.176 0-72.704-6.144-108.544-40.96l-50.176-48.128-50.176 49.152c-35.84 34.816-58.368 40.96-108.544 40.96h-121.856c-1.024 0-2.048 1.024-3.072 1.024v70.656c13.312-6.144 29.696-12.288 57.344-12.288 32.768 0 49.152 8.192 64.512 16.384 14.336 7.168 26.624 13.312 53.248 13.312s38.912-6.144 53.248-13.312c15.36-7.168 31.744-16.384 64.512-16.384s49.152 8.192 64.512 16.384c14.336 7.168 26.624 13.312 53.248 13.312s38.912-6.144 53.248-13.312c15.36-7.168 31.744-16.384 64.512-16.384s49.152 8.192 64.512 16.384c14.336 7.168 26.624 13.312 53.248 13.312s38.912-6.144 53.248-13.312c15.36-7.168 31.744-16.384 64.512-16.384 25.6 0 41.984 5.12 54.272 11.264v-69.632h-375.808zM969.728 81.408l-8.192-47.104c-7.168-41.984-45.056-72.704-90.112-72.704h-719.872c-45.056 0-82.944 30.72-90.112 72.704l-8.192 47.104c-2.048 12.288 1.024 25.6 9.216 34.816 9.216 9.216 19.456 15.36 30.72 16.384h131.072c44.032 0 60.416-4.096 91.136-33.792l59.392-57.344c2.048-2.048 6.144-4.096 9.216-4.096s6.144 1.024 9.216 4.096l59.392 57.344c30.72 29.696 47.104 33.792 91.136 33.792h388.096c11.264-2.048 22.528-7.168 29.696-16.384s10.24-21.504 8.192-34.816zM971.776 270.848c-25.6-2.048-39.936-9.216-53.248-15.36-14.336-7.168-26.624-13.312-53.248-13.312s-38.912 6.144-53.248 13.312c-15.36 7.168-31.744 16.384-64.512 16.384s-49.152-8.192-64.512-16.384c-14.336-7.168-26.624-13.312-53.248-13.312s-38.912 6.144-53.248 13.312c-15.36 7.168-31.744 16.384-64.512 16.384s-49.152-8.192-64.512-16.384c-14.336-7.168-26.624-13.312-53.248-13.312s-38.912 6.144-53.248 13.312c-15.36 7.168-31.744 16.384-64.512 16.384s-49.152-8.192-64.512-16.384c-14.336-7.168-26.624-13.312-53.248-13.312s-38.912 6.144-53.248 13.312c-13.312 6.144-27.648 13.312-52.224 15.36 1.024 15.36 5.12 43.008 31.744 65.536h850.944c33.792-19.456 36.864-50.176 35.84-65.536zM25.6 676.352c0 158.72 183.296 258.048 353.28 258.048h266.24c169.984 0 353.28-99.328 353.28-258.048 0-58.368-13.312-100.352-39.936-125.952s-57.344-23.552-59.392-23.552h-774.144c0 0-1.024 0-1.024 0s-1.024 0-1.024 0h-1.024c-7.168 0-33.792 2.048-56.32 23.552-26.624 24.576-39.936 67.584-39.936 125.952zM25.6 448c0 29.696 34.816 53.248 63.488 53.248h31.744c1.024 0 1.024 0 1.024 0h812.032c31.744 0 63.488-26.624 63.488-53.248v-32.768c0-28.672-24.576-52.224-54.272-52.224h-863.232c-29.696 0-54.272 23.552-54.272 52.224v32.768zM88.064 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288s-13.312-5.12-13.312-12.288v-34.816c0-7.168 6.144-13.312 13.312-13.312zM164.864 399.872c7.168 0 13.312 6.144 13.312 12.288v35.84c0 7.168-6.144 12.288-13.312 12.288s-12.288-6.144-12.288-12.288v-34.816c-1.024-7.168 5.12-13.312 12.288-13.312zM241.664 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288s-13.312-6.144-13.312-12.288v-34.816c0-7.168 6.144-13.312 13.312-13.312zM318.464 399.872c7.168 0 13.312 6.144 13.312 12.288v35.84c0 7.168-6.144 12.288-13.312 12.288s-12.288-6.144-12.288-12.288v-34.816c0-7.168 5.12-13.312 12.288-13.312zM395.264 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288s-12.288-6.144-12.288-12.288v-34.816c0-7.168 5.12-13.312 12.288-13.312zM472.064 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288-7.168 0-13.312-6.144-13.312-12.288v-34.816c1.024-7.168 6.144-13.312 13.312-13.312zM548.864 399.872c7.168 0 13.312 6.144 13.312 12.288v35.84c0 7.168-6.144 12.288-13.312 12.288s-12.288-6.144-12.288-12.288v-34.816c0-7.168 5.12-13.312 12.288-13.312zM625.664 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288-7.168 0-13.312-6.144-13.312-12.288v-34.816c1.024-7.168 6.144-13.312 13.312-13.312zM702.464 399.872c7.168 0 13.312 6.144 13.312 12.288v35.84c0 7.168-6.144 12.288-13.312 12.288s-12.288-6.144-12.288-12.288v-34.816c0-7.168 5.12-13.312 12.288-13.312zM779.264 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288s-13.312-6.144-13.312-12.288v-34.816c1.024-7.168 6.144-13.312 13.312-13.312zM856.064 399.872c7.168 0 13.312 6.144 13.312 12.288v35.84c0 7.168-6.144 12.288-13.312 12.288s-12.288-6.144-12.288-12.288v-34.816c0-7.168 5.12-13.312 12.288-13.312zM932.864 399.872c7.168 0 12.288 6.144 12.288 12.288v35.84c0 7.168-6.144 12.288-12.288 12.288s-12.288-6.144-12.288-12.288v-34.816c0-7.168 5.12-13.312 12.288-13.312z" />
270
+ <glyph unicode="&#xe94f;" glyph-name="cakes" data-tags="cakes" horiz-adv-x="1692" d="M624.64 398.848c-13.312 0-24.576-11.264-24.576-24.576v-36.864c0-13.312 11.264-24.576 24.576-24.576s24.576 11.264 24.576 24.576v36.864c0 13.312-11.264 24.576-24.576 24.576v0zM470.016 621.056c0-13.312 10.24-23.552 23.552-23.552s23.552 10.24 23.552 23.552c0 13.312-10.24 23.552-23.552 23.552-12.288 0-23.552-11.264-23.552-23.552v0zM920.576 354.816c-10.24 9.216-25.6 8.192-34.816-2.048-10.24-11.264-24.576-18.432-39.936-18.432s-29.696 6.144-39.936 18.432c-9.216 10.24-24.576 11.264-34.816 2.048s-11.264-24.576-2.048-34.816c19.456-22.528 47.104-34.816 76.8-34.816s57.344 12.288 76.8 34.816c9.216 10.24 8.192 25.6-2.048 34.816v0zM1181.696 678.4c0 13.312-10.24 23.552-23.552 23.552s-23.552-10.24-23.552-23.552c0-13.312 10.24-23.552 23.552-23.552s23.552 10.24 23.552 23.552v0zM1067.008 398.848c-13.312 0-24.576-11.264-24.576-24.576v-36.864c0-13.312 11.264-24.576 24.576-24.576s24.576 11.264 24.576 24.576v36.864c0 13.312-11.264 24.576-24.576 24.576v0zM1613.824 139.776h-35.84l-106.496 321.536c-12.288 36.864-39.936 64.512-75.776 75.776-5.12 48.128-24.576 93.184-55.296 130.048-21.504 25.6-48.128 45.056-77.824 58.368-27.648 99.328-119.808 168.96-224.256 168.96-15.36 0-29.696-1.024-45.056-4.096-55.296 45.056-125.952 69.632-197.632 69.632-60.416 0-119.808-17.408-171.008-49.152-11.264-7.168-15.36-22.528-7.168-33.792 7.168-11.264 22.528-15.36 33.792-7.168 43.008 27.648 93.184 41.984 144.384 41.984 62.464 0 121.856-20.48 169.984-60.416 10.24-8.192 23.552-11.264 35.84-9.216s24.576 4.096 36.864 4.096c81.92 0 154.624-55.296 176.128-134.144 4.096-13.312 13.312-24.576 26.624-30.72 23.552-11.264 45.056-26.624 62.464-46.080 22.528-25.6 36.864-57.344 41.984-91.136h-1002.496c-3.072 50.176 15.36 99.328 49.152 135.168 29.696 31.744 70.656 52.224 114.688 56.32 21.504 2.048 40.96 15.36 52.224 34.816 5.12 9.216 10.24 17.408 16.384 25.6 8.192 11.264 5.12 26.624-6.144 34.816s-26.624 5.12-34.816-6.144c-7.168-9.216-13.312-19.456-18.432-29.696-3.072-5.12-8.192-9.216-13.312-9.216-55.296-6.144-107.52-31.744-145.408-71.68-44.032-47.104-66.56-111.616-62.464-175.104-34.816-11.264-63.488-38.912-74.752-75.776l-107.52-323.584h-34.816c-43.008 0-77.824-34.816-77.824-77.824v-49.152c0-43.008 34.816-77.824 77.824-77.824h1170.432c13.312 0 24.576 11.264 24.576 24.576s-11.264 24.576-24.576 24.576h-1170.432c-15.36 0-27.648 12.288-27.648 27.648v49.152c0 15.36 12.288 27.648 27.648 27.648h1482.752c0 0 0 0 0 0s0 0 0 0h53.248c15.36 0 27.648-12.288 27.648-27.648v-49.152c0-15.36-12.288-27.648-27.648-27.648h-249.856c-13.312 0-24.576-11.264-24.576-24.576s11.264-24.576 24.576-24.576h249.856c43.008 0 77.824 34.816 77.824 77.824v49.152c0 43.008-34.816 77.824-77.824 77.824v0zM164.864 139.776l43.008 131.072c144.384 28.672 211.968-28.672 289.792-96.256 13.312-11.264 26.624-23.552 40.96-34.816h-373.76zM1068.032 139.776h-444.416c-34.816 21.504-64.512 47.104-93.184 72.704-75.776 65.536-154.624 133.12-304.128 111.616l39.936 121.856c8.192 25.6 30.72 44.032 57.344 47.104 0 0 1.024 0 1.024 0 2.048 0 5.12 0 7.168 0h1027.072c3.072 0 7.168 0 10.24-1.024 0 0 1.024 0 1.024 0 25.6-4.096 46.080-21.504 54.272-47.104l39.936-121.856c-150.528 21.504-228.352-46.080-304.128-111.616-27.648-24.576-58.368-50.176-92.16-71.68v0zM1152 139.776c14.336 11.264 27.648 23.552 40.96 34.816 77.824 67.584 145.408 124.928 289.792 96.256l43.008-131.072h-373.76zM829.44 810.496c0 13.312-10.24 23.552-23.552 23.552s-23.552-10.24-23.552-23.552c0-13.312 10.24-23.552 23.552-23.552 13.312-1.024 23.552 10.24 23.552 23.552v0zM973.824 605.696c0 13.312-10.24 23.552-23.552 23.552s-23.552-10.24-23.552-23.552c0-13.312 10.24-23.552 23.552-23.552s23.552 11.264 23.552 23.552v0z" />
271
+ <glyph unicode="&#xe950;" glyph-name="cheese" data-tags="cheese" d="M29.696 448c0 129.024 50.176 249.856 141.312 340.992s211.968 141.312 340.992 141.312c18.432 0 37.888-1.024 56.32-3.072-4.096-13.312-6.144-26.624-6.144-39.936 0-59.392 38.912-111.616 95.232-129.024 0-1.024 0-3.072 0-4.096 0-36.864 11.264-71.68 32.768-101.376 5.12-7.168 14.336-8.192 21.504-3.072s8.192 14.336 3.072 21.504c-17.408 24.576-26.624 53.248-26.624 83.968 0 4.096 0 9.216 1.024 14.336 1.024 8.192-4.096 14.336-12.288 16.384-48.128 9.216-83.968 52.224-83.968 102.4 0 16.384 3.072 31.744 10.24 46.080 2.048 4.096 2.048 9.216 0 13.312s-6.144 7.168-11.264 8.192c-26.624 2.048-53.248 4.096-79.872 4.096-137.216 0-265.216-53.248-362.496-149.504s-149.504-225.28-149.504-362.496c0-99.328 28.672-195.584 81.92-278.528 3.072-4.096 8.192-7.168 12.288-7.168 3.072 0 6.144 1.024 8.192 2.048 7.168 4.096 9.216 14.336 4.096 20.48-49.152 78.848-76.8 169.984-76.8 263.168zM1021.952 493.056c0 5.12-3.072 9.216-7.168 11.264s-9.216 3.072-13.312 1.024c-13.312-5.12-26.624-7.168-40.96-7.168-56.32 0-105.472 41.984-112.64 98.304-1.024 7.168-7.168 13.312-15.36 13.312 0 0 0 0 0 0s-1.024 0-1.024 0c-24.576 0-49.152 6.144-69.632 18.432-7.168 4.096-16.384 1.024-20.48-6.144s-1.024-16.384 6.144-20.48c22.528-12.288 47.104-19.456 73.728-21.504 13.312-64.512 71.68-111.616 139.264-111.616 11.264 0 21.504 1.024 32.768 4.096 0-8.192 1.024-16.384 1.024-23.552 0-129.024-50.176-249.856-141.312-340.992-91.136-92.16-211.968-142.336-340.992-142.336-141.312 0-275.456 62.464-367.616 169.984-5.12 6.144-15.36 7.168-21.504 2.048s-7.168-15.36-2.048-21.504c99.328-114.688 241.664-180.224 391.168-180.224 137.216 0 265.216 53.248 362.496 149.504s149.504 225.28 149.504 362.496c0 14.336-1.024 29.696-2.048 45.056zM201.728 441.856c-45.056 0-81.92-36.864-81.92-81.92s36.864-81.92 81.92-81.92c45.056 0 81.92 36.864 81.92 81.92s-36.864 81.92-81.92 81.92zM201.728 308.736c-28.672 0-51.2 23.552-51.2 51.2s23.552 51.2 51.2 51.2c28.672 0 51.2-23.552 51.2-51.2s-23.552-51.2-51.2-51.2zM455.68 629.248c45.056 0 81.92 36.864 81.92 81.92s-36.864 81.92-81.92 81.92c-45.056 0-81.92-36.864-81.92-81.92s36.864-81.92 81.92-81.92zM455.68 763.392c28.672 0 52.224-23.552 52.224-52.224s-23.552-52.224-52.224-52.224c-28.672 0-52.224 23.552-52.224 52.224s23.552 52.224 52.224 52.224zM436.224 369.152c34.816 0 63.488 28.672 63.488 63.488s-28.672 63.488-63.488 63.488c-34.816 0-63.488-28.672-63.488-63.488 1.024-34.816 28.672-63.488 63.488-63.488zM436.224 465.408c18.432 0 32.768-15.36 32.768-32.768s-15.36-32.768-32.768-32.768-32.768 15.36-32.768 32.768 15.36 32.768 32.768 32.768zM220.16 727.552c-34.816 0-63.488-28.672-63.488-63.488s28.672-63.488 63.488-63.488 63.488 28.672 63.488 63.488-28.672 63.488-63.488 63.488zM220.16 631.296c-18.432 0-32.768 15.36-32.768 32.768s15.36 32.768 32.768 32.768 32.768-15.36 32.768-32.768-15.36-32.768-32.768-32.768zM480.256 58.88c46.080 0 82.944 36.864 82.944 82.944s-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944 36.864-82.944 82.944-82.944zM480.256 194.048c28.672 0 53.248-23.552 53.248-53.248s-23.552-53.248-53.248-53.248-53.248 23.552-53.248 53.248 23.552 53.248 53.248 53.248zM674.816 259.584c0-34.816 28.672-62.464 62.464-62.464 34.816 0 62.464 27.648 62.464 62.464s-28.672 62.464-62.464 62.464c-34.816 1.024-62.464-27.648-62.464-62.464zM770.048 259.584c0-18.432-14.336-32.768-32.768-32.768s-32.768 14.336-32.768 32.768 14.336 32.768 32.768 32.768c17.408 0 32.768-14.336 32.768-32.768zM713.728 566.784c-48.128 0-87.040-38.912-87.040-87.040s38.912-87.040 87.040-87.040 87.040 38.912 87.040 87.040-39.936 87.040-87.040 87.040zM713.728 423.424c-30.72 0-56.32 25.6-56.32 56.32s25.6 56.32 56.32 56.32 56.32-25.6 56.32-56.32-25.6-56.32-56.32-56.32z" />
272
+ <glyph unicode="&#xe951;" glyph-name="drink-glass" data-tags="drink-glass" d="M512 858.624c7.168 0 13.312 6.144 13.312 12.288v75.776c-1.024 7.168-6.144 13.312-13.312 13.312s-13.312-6.144-13.312-13.312v-75.776c0-6.144 6.144-12.288 13.312-12.288zM577.536 840.192c2.048 0 4.096 1.024 6.144 2.048l65.536 37.888c6.144 3.072 8.192 11.264 5.12 17.408s-11.264 8.192-17.408 5.12l-65.536-37.888c-6.144-3.072-8.192-11.264-5.12-17.408 3.072-5.12 7.168-7.168 11.264-7.168zM374.784 879.104l65.536-37.888c2.048-1.024 4.096-2.048 6.144-2.048 4.096 0 9.216 2.048 11.264 6.144 3.072 6.144 1.024 14.336-5.12 17.408l-65.536 37.888c-6.144 3.072-14.336 1.024-17.408-5.12s-1.024-12.288 5.12-16.384zM9.216-4.608l207.872-58.368c1.024 0 2.048 0 3.072 0 5.12 0 10.24 4.096 12.288 9.216 2.048 7.168-2.048 14.336-9.216 15.36l-91.136 25.6 94.208 332.8c15.36-3.072 30.72-5.12 44.032-5.12 34.816 0 66.56 10.24 94.208 31.744 129.024 98.304 129.024 389.12 129.024 401.408 0 6.144-4.096 10.24-9.216 12.288l-274.432 76.8c-5.12 2.048-11.264-1.024-14.336-6.144-6.144-10.24-156.672-259.072-97.28-409.6 17.408-45.056 53.248-76.8 104.448-95.232l-94.208-333.824-92.16 25.6c-7.168 4.096-14.336 0-16.384-7.168s2.048-13.312 9.216-15.36zM211.968 810.496l256-71.68c0-19.456-2.048-67.584-10.24-122.88-69.632 20.48-102.4 41.984-137.216 63.488-33.792 22.528-69.632 45.056-142.336 66.56 14.336 29.696 27.648 52.224 33.792 64.512zM121.856 431.616c-32.768 83.968 8.192 205.824 46.080 290.816 71.68-20.48 104.448-41.984 139.264-64.512s71.68-46.080 146.432-67.584c-14.336-82.944-44.032-177.152-103.424-222.208-35.84-27.648-77.824-33.792-128-19.456-51.2 13.312-83.968 40.96-100.352 82.944zM658.432 346.624c27.648-21.504 59.392-31.744 94.208-31.744 14.336 0 28.672 2.048 44.032 5.12l95.232-332.8-91.136-25.6c-7.168-2.048-11.264-9.216-9.216-15.36s7.168-9.216 12.288-9.216c1.024 0 2.048 0 3.072 0l207.872 58.368c7.168 2.048 11.264 9.216 9.216 15.36-2.048 7.168-9.216 11.264-15.36 9.216l-92.16-25.6-94.208 333.824c51.2 17.408 86.016 49.152 104.448 95.232 59.392 150.528-91.136 399.36-97.28 409.6-3.072 5.12-9.216 7.168-14.336 6.144l-274.432-77.824c-5.12-2.048-9.216-6.144-9.216-12.288-1.024-13.312-1.024-304.128 126.976-402.432zM903.168 431.616c-16.384-41.984-49.152-69.632-100.352-83.968s-93.184-8.192-128 19.456c-59.392 45.056-89.088 139.264-103.424 222.208 75.776 22.528 111.616 45.056 146.432 67.584s67.584 44.032 139.264 64.512c37.888-83.968 78.848-206.848 46.080-289.792zM812.032 810.496c7.168-11.264 19.456-34.816 33.792-64.512-72.704-21.504-107.52-44.032-142.336-66.56s-67.584-43.008-137.216-63.488c-8.192 55.296-10.24 103.424-10.24 122.88l256 71.68z" />
273
+ <glyph unicode="&#xe952;" glyph-name="pizza" data-tags="pizza" d="M799.744 737.792c-126.976 126.976-254.976 201.728-380.928 221.184-26.624 4.096-52.224-10.24-61.44-34.816l-354.304-918.528c-7.168-19.456-3.072-39.936 11.264-54.272 10.24-10.24 22.528-15.36 35.84-15.36 6.144 0 12.288 1.024 18.432 3.072l919.552 355.328c25.6 9.216 39.936 34.816 35.84 61.44-19.456 123.904-94.208 252.928-224.256 381.952zM253.952 584.192c14.336-7.168 25.6-18.432 31.744-32.768 7.168-16.384 8.192-34.816 1.024-52.224-12.288-32.768-48.128-50.176-81.92-40.96l49.152 125.952zM60.416-36.352c-10.24-4.096-20.48-2.048-27.648 6.144-7.168 7.168-9.216 17.408-5.12 26.624l168.96 438.272c9.216-3.072 18.432-4.096 26.624-4.096 37.888 0 73.728 22.528 88.064 60.416 9.216 23.552 8.192 49.152-2.048 71.68-9.216 20.48-25.6 36.864-46.080 46.080l70.656 182.272c21.504-3.072 62.464-10.24 118.784-36.864-21.504-3.072-43.008-12.288-60.416-29.696-19.456-19.456-30.72-46.080-30.72-73.728s11.264-53.248 30.72-73.728c20.48-20.48 47.104-30.72 73.728-30.72s53.248 10.24 73.728 30.72c19.456 19.456 30.72 45.056 30.72 73.728 0 11.264-2.048 22.528-6.144 33.792 30.72-23.552 63.488-51.2 98.304-86.016 13.312-13.312 25.6-26.624 37.888-39.936-44.032 13.312-93.184 2.048-128-32.768-24.576-24.576-37.888-57.344-37.888-91.136 0-34.816 13.312-66.56 37.888-91.136 25.6-25.6 58.368-37.888 91.136-37.888s66.56 12.288 91.136 37.888v0c24.576 24.576 37.888 57.344 37.888 91.136 0 0 0 1.024 0 1.024 33.792-56.32 55.296-111.616 63.488-165.888l-236.544-91.136c5.12 11.264 8.192 24.576 8.192 36.864 0 23.552-9.216 46.080-26.624 63.488-34.816 34.816-92.16 34.816-126.976 0-17.408-17.408-26.624-38.912-26.624-63.488 0-23.552 9.216-46.080 26.624-63.488 8.192-8.192 17.408-14.336 27.648-18.432l-262.144-101.376c-17.408 36.864-60.416 54.272-99.328 38.912-19.456-8.192-34.816-22.528-43.008-41.984-7.168-17.408-8.192-35.84-3.072-54.272l-33.792-11.264zM520.192 596.48c-30.72-30.72-79.872-30.72-110.592 0-14.336 14.336-22.528 33.792-22.528 55.296 0 20.48 8.192 39.936 22.528 55.296 15.36 15.36 34.816 22.528 55.296 22.528s39.936-7.168 55.296-22.528c14.336-14.336 22.528-34.816 22.528-55.296 1.024-21.504-7.168-40.96-22.528-55.296zM735.232 361.984v0c-40.96-39.936-106.496-39.936-146.432 0-19.456 19.456-30.72 46.080-30.72 73.728s11.264 53.248 30.72 73.728c20.48 20.48 47.104 30.72 73.728 30.72s53.248-10.24 73.728-30.72c19.456-19.456 30.72-46.080 30.72-73.728-1.024-27.648-12.288-54.272-31.744-73.728zM491.52 170.496c-12.288 12.288-18.432 27.648-18.432 45.056s7.168 32.768 18.432 45.056c12.288 12.288 28.672 18.432 45.056 18.432s32.768-6.144 45.056-18.432c12.288-12.288 18.432-27.648 18.432-45.056s-6.144-32.768-18.432-45.056c-23.552-24.576-64.512-24.576-90.112 0zM119.808-13.824c-3.072 11.264-3.072 23.552 2.048 34.816 5.12 13.312 15.36 22.528 28.672 27.648 25.6 10.24 53.248-1.024 65.536-24.576l-96.256-37.888zM978.944 317.952l-99.328-37.888c-18.432 110.592-86.016 223.232-200.704 337.92-163.84 163.84-287.744 190.464-335.872 198.656l37.888 99.328c5.12 13.312 18.432 21.504 33.792 18.432 119.808-18.432 243.712-91.136 366.592-215.040 123.904-123.904 198.656-250.88 217.088-367.616 2.048-15.36-5.12-28.672-19.456-33.792zM260.096 115.2c23.552 0 47.104 9.216 64.512 26.624s26.624 39.936 26.624 64.512c0 24.576-9.216 47.104-26.624 64.512-35.84 35.84-94.208 35.84-130.048 0-17.408-17.408-26.624-39.936-26.624-64.512s9.216-47.104 26.624-64.512c18.432-17.408 41.984-26.624 65.536-26.624zM212.992 253.44c13.312 13.312 29.696 19.456 47.104 19.456s33.792-6.144 47.104-19.456c12.288-12.288 19.456-28.672 19.456-47.104 0-17.408-7.168-33.792-19.456-47.104v0c-25.6-25.6-67.584-25.6-93.184 0-12.288 12.288-19.456 28.672-19.456 47.104-1.024 18.432 6.144 34.816 18.432 47.104zM401.408 297.472c21.504 0 43.008 8.192 59.392 24.576 0 0 0 0 0 0 16.384 16.384 24.576 36.864 24.576 59.392s-9.216 44.032-24.576 59.392c-32.768 32.768-86.016 32.768-118.784 0-16.384-16.384-24.576-36.864-24.576-59.392s9.216-44.032 24.576-59.392c16.384-16.384 37.888-24.576 59.392-24.576zM360.448 422.4c11.264 11.264 26.624 17.408 40.96 17.408 15.36 0 29.696-6.144 40.96-17.408s17.408-25.6 17.408-40.96c0-15.36-6.144-30.72-17.408-40.96v0c-22.528-22.528-60.416-22.528-82.944 0-11.264 11.264-17.408 25.6-17.408 40.96 1.024 15.36 7.168 29.696 18.432 40.96zM126.976 111.104c2.048-5.12 7.168-8.192 12.288-8.192 1.024 0 3.072 0 4.096 1.024 7.168 2.048 10.24 9.216 8.192 16.384l-9.216 25.6c-2.048 7.168-9.216 10.24-16.384 8.192s-10.24-9.216-8.192-16.384l9.216-26.624zM241.664 350.72c2.048-5.12 7.168-8.192 12.288-8.192 1.024 0 3.072 0 4.096 1.024 7.168 2.048 10.24 9.216 8.192 16.384l-9.216 25.6c-2.048 7.168-9.216 10.24-16.384 8.192s-10.24-9.216-8.192-16.384l9.216-26.624zM702.464 246.272c2.048 0 3.072 0 5.12 1.024l25.6 11.264c6.144 3.072 9.216 10.24 6.144 16.384s-10.24 9.216-16.384 6.144l-25.6-11.264c-6.144-3.072-9.216-10.24-6.144-16.384 2.048-4.096 6.144-7.168 11.264-7.168zM408.576 187.904c-7.168 2.048-13.312-2.048-15.36-9.216l-7.168-27.648c-2.048-7.168 2.048-13.312 9.216-15.36 1.024 0 2.048 0 3.072 0 6.144 0 11.264 4.096 12.288 10.24l6.144 26.624c2.048 6.144-2.048 13.312-8.192 15.36zM360.448 518.656c2.048-2.048 6.144-4.096 9.216-4.096s6.144 1.024 9.216 4.096c5.12 5.12 5.12 13.312 0 18.432l-19.456 19.456c-5.12 5.12-13.312 5.12-18.432 0s-5.12-13.312 0-18.432l19.456-19.456zM471.040 476.672c2.048 0 4.096 0 6.144 1.024l24.576 12.288c6.144 3.072 9.216 11.264 6.144 17.408s-11.264 9.216-17.408 6.144l-24.576-12.288c-6.144-3.072-9.216-11.264-6.144-17.408 2.048-4.096 6.144-7.168 11.264-7.168z" />
274
+ <glyph unicode="&#xe953;" glyph-name="vplay" data-tags="vplay" horiz-adv-x="819" d="M409.6 881.664c189.719 0 344.064-154.345 344.064-344.064s-154.345-344.064-344.064-344.064-344.064 154.345-344.064 344.064 154.345 344.064 344.064 344.064zM409.6 906.24c-203.596 0-368.64-165.044-368.64-368.64s165.044-368.64 368.64-368.64 368.64 165.044 368.64 368.64-165.044 368.64-368.64 368.64v0zM355.066 683.991c-28.688 15.835-51.945 2.859-51.945-28.967v-234.832c0-31.842 23.257-44.802 51.945-28.975l213.238 117.711c28.697 15.835 28.697 41.517 0 57.352l-213.238 117.711z" />
275
+ <glyph unicode="&#xe954;" glyph-name="newsletter" data-tags="newsletter" horiz-adv-x="819" d="M484.86 787.055l-171.491 53.363 8.225 26.46 171.483-53.363-8.217-26.46zM675.987 669.016l-379.24 118.039 8.233 26.46 379.224-118.039-8.217-26.46zM238.534 599.951l171.491-53.398-8.242-26.469-171.491 53.398 8.242 26.469zM393.368 493.196l-8.225-26.466-171.512 53.303 8.225 26.466 171.512-53.303zM255.145 653.363l171.468-53.355-8.234-26.461-171.468 53.355 8.234 26.461zM288.36 760.13l379.236-118.045-8.236-26.461-379.236 118.045 8.236 26.461zM271.757 706.729l379.221-118-8.234-26.461-379.221 118 8.234 26.461zM786.26 787.53l-513.065 159.67-101.532-326.255-99.058-59.572v-435.888h657.31v435.192l-11.993 7.258 68.338 219.595zM702.21 165.036l-275.464 181.232 275.464 180.92v-362.152zM100.319 327.107v200.737l275.98-181.559-275.98-181.256v162.079zM594.231 489.423l-27.034-17.76-28.991 9.036c0.721 1.565 1.417 3.178 1.942 4.874 3.301 10.609 2.269 21.848-2.9 31.67-5.153 9.814-13.836 17.048-24.429 20.349-4.030 1.262-8.217 1.892-12.419 1.892-18.26 0-34.185-11.747-39.625-29.204-3.301-10.609-2.277-21.856 2.9-31.687 5.153-9.839 13.836-17.064 24.445-20.357 0.467-0.147 0.926-0.164 1.393-0.279l-13.263-42.615 3.514-1.081-6.742-4.432-49.005 15.245 41.607 133.726 136.937-42.607-8.331-26.771zM493.609 424.444l15.778 50.708 42.811-13.345-57.442-37.716-1.147 0.352zM492.241 471.45c-7.078 2.204-12.853 7.021-16.302 13.574-3.432 6.562-4.129 14.066-1.917 21.127 3.621 11.657 14.23 19.481 26.395 19.481 2.81 0 5.579-0.426 8.29-1.278 7.078-2.195 12.861-7.004 16.302-13.55 3.432-6.554 4.121-14.041 1.909-21.119-0.516-1.72-1.327-3.269-2.187-4.792l-24.461 7.619-6.644-21.332c-0.467 0.090-0.918 0.123-1.384 0.27zM401.514 329.687l268.288-176.488h-537.018l268.73 176.488zM291.406 912.515l460.161-143.196-69.067-221.913-51.79-34.021 6.537 21.021-189.866 59.081-58.057-186.63 53.731-16.72-41.542-27.279-233.374 153.526 123.265 396.132zM144.056 532.234l-31.597 20.783 46.817 28.156-15.221-48.939z" />
276
+ <glyph unicode="&#xe955;" glyph-name="coins-2" data-tags="coins-2" d="M938.667 583.799c-9.421 0-17.067-7.629-17.067-17.067v-17.067c0-9.438 7.646-17.067 17.067-17.067s17.067 7.629 17.067 17.067v17.067c0 9.438-7.646 17.067-17.067 17.067zM938.667 723.166c-9.421 0-17.067-7.629-17.067-17.067v-39.817c0-9.438 7.646-17.067 17.067-17.067s17.067 7.629 17.067 17.067v39.817c0 9.438-7.646 17.067-17.067 17.067zM921.6 805.666c0-9.438 7.646-17.067 17.067-17.067s17.067 7.629 17.067 17.067v34.133h-34.133c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM311.552 805.666h34.85c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.85c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM433.562 805.666h34.85c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.85c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM555.571 805.666h34.85c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.85c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM799.59 805.666h34.85c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.85c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM677.581 805.666h34.85c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.85c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM189.542 805.666h34.85c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.85c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM85.333 788.599c9.421 0 17.067 7.629 17.067 17.067 9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.133v-34.133c0-9.438 7.646-17.067 17.067-17.067zM85.333 665.515c9.421 0 17.067 7.629 17.067 17.067v35.174c0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067v-35.174c0-9.438 7.646-17.067 17.067-17.067zM85.333 296.243c9.421 0 17.067 7.629 17.067 17.067v35.174c0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067v-35.174c0-9.421 7.646-17.067 17.067-17.067zM85.333 542.43c9.421 0 17.067 7.629 17.067 17.067v35.174c0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067v-35.174c0-9.438 7.646-17.067 17.067-17.067zM85.333 419.345c9.421 0 17.067 7.629 17.067 17.067v35.174c0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067v-35.174c0-9.421 7.646-17.067 17.067-17.067zM119.467 208.333c0 9.438-7.646 17.067-17.067 17.067 0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067v-34.133h34.133c9.421 0 17.067 7.629 17.067 17.067zM460.8 225.399h-34.133c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067h34.133c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067zM187.733 191.266h34.133c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-34.133c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM341.333 225.399h-34.133c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067h34.133c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067zM563.2 225.399h-17.067c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067h17.067c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067zM1024 908.066h-1024v-785.067h648.533v-160.666l119.467 119.467 119.467-119.467v160.666h136.533v785.067zM853.333 44.732l-85.333 85.333-85.333-85.333v186.624c0.205-0.119 0.444-0.205 0.649-0.324 24.986-14.353 53.862-22.699 84.685-22.699s59.699 8.346 84.685 22.699c0.205 0.119 0.444 0.188 0.649 0.324v-186.624zM858.334 276.907c-2.679-2.372-5.427-4.608-8.26-6.741-0.546-0.41-1.075-0.819-1.638-1.229-2.816-2.065-5.7-4.011-8.636-5.837-0.666-0.41-1.348-0.819-2.014-1.229-2.867-1.724-5.803-3.345-8.772-4.83-0.853-0.427-1.724-0.836-2.577-1.246-2.867-1.365-5.751-2.645-8.704-3.806-1.126-0.444-2.27-0.836-3.413-1.246-2.748-1.007-5.53-1.963-8.346-2.782-1.519-0.444-3.055-0.802-4.591-1.178-2.526-0.649-5.052-1.28-7.612-1.775-2.167-0.427-4.386-0.7-6.605-1.007-2.014-0.29-4.011-0.649-6.059-0.836-4.318-0.41-8.704-0.666-13.124-0.666s-8.806 0.256-13.124 0.666c-2.031 0.205-4.028 0.546-6.059 0.836-2.202 0.307-4.42 0.597-6.605 1.007-2.56 0.495-5.086 1.143-7.612 1.775-1.536 0.393-3.072 0.751-4.591 1.178-2.816 0.819-5.581 1.775-8.346 2.782-1.143 0.41-2.287 0.802-3.413 1.246-2.935 1.161-5.837 2.441-8.704 3.806-0.87 0.41-1.724 0.819-2.577 1.246-2.987 1.502-5.905 3.123-8.772 4.83-0.683 0.41-1.348 0.802-2.014 1.229-2.935 1.826-5.82 3.772-8.636 5.837-0.546 0.41-1.092 0.802-1.638 1.229-2.816 2.133-5.581 4.386-8.26 6.741-28.228 25.020-46.165 61.457-46.165 102.093 0 75.281 61.252 136.533 136.533 136.533s136.533-61.252 136.533-136.533c0-40.636-17.937-77.073-46.199-102.093zM989.867 157.133h-102.4v100.198c31.556 30.993 51.2 74.052 51.2 121.668 0 94.106-76.561 170.667-170.667 170.667s-170.667-76.561-170.667-170.667c0-47.616 19.644-90.692 51.2-121.668v-100.198h-614.4v716.8h955.733v-716.8zM207.906 690.091c-10.428-12.322-15.258-28.092-13.551-44.425 1.741-16.708 10.342-32.205 23.603-42.513l38.042-29.594v-92.809c-19.814 7.066-34.133 25.839-34.133 48.060 0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067c0-41.199 29.372-75.674 68.267-83.61v-14.985c0-9.438 7.646-17.067 17.067-17.067s17.067 7.629 17.067 17.067v15.053c18.62 3.789 35.584 13.67 48.111 28.467 10.428 12.356 15.241 28.126 13.534 44.459-1.758 16.691-10.342 32.171-23.603 42.462l-38.042 29.577v92.809c19.814-7.066 34.133-25.839 34.133-48.060 0-9.438 7.646-17.067 17.067-17.067s17.067 7.629 17.067 17.067c0 41.199-29.372 75.674-68.267 83.61v18.79c0 9.438-7.646 17.067-17.067 17.067s-17.067-7.629-17.067-17.067v-18.842c-18.62-3.789-35.584-13.653-48.094-28.45zM307.217 533.709c5.956-4.625 9.83-11.605 10.615-19.081 0.734-6.997-1.28-13.705-5.649-18.859-5.939-7.014-13.619-11.93-22.050-14.933v66.185l17.084-13.312zM238.916 630.084c-5.973 4.642-9.83 11.622-10.615 19.115-0.717 6.98 1.28 13.67 5.649 18.842 5.939 7.014 13.619 11.93 22.050 14.933v-66.167l-17.084 13.278zM426.667 652.066h392.533c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-392.533c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM426.667 549.666h187.733c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-187.733c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM426.667 447.266h136.533c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-136.533c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067zM187.733 327.799h358.4c9.421 0 17.067 7.629 17.067 17.067s-7.646 17.067-17.067 17.067h-358.4c-9.421 0-17.067-7.629-17.067-17.067s7.646-17.067 17.067-17.067z" />
277
+ <glyph unicode="&#xe956;" glyph-name="commerce-2" data-tags="commerce-2" d="M832.626 402.136h-320.626c-8.3 0-15.030-6.73-15.030-15.030v-176.344c0-8.3 6.73-15.030 15.030-15.030h320.626c8.302 0 15.030 6.73 15.030 15.030v176.344c0 8.3-6.728 15.030-15.030 15.030zM657.284 225.792h-130.254v146.286h130.254v-146.286zM817.596 225.792h-130.254v146.286h130.254v-146.286zM399.78 225.792c-8.3 0-15.030-6.73-15.030-15.030v-48.094c0-8.3 6.73-15.030 15.030-15.030s15.030 6.73 15.030 15.030v48.094c0 8.3-6.728 15.030-15.030 15.030zM960.876 786.886h-305.596v18.036h113.222c8.302 0 15.030 6.73 15.030 15.030v112.218c0 8.3-6.728 15.030-15.030 15.030h-513.002c-8.3 0-15.030-6.73-15.030-15.030v-112.22c0-8.3 6.73-15.030 15.030-15.030h113.222v-18.036h-305.598c-8.3 0-15.030-6.73-15.030-15.030v-256.496c0-38.508 27.644-70.662 64.126-77.706v-68.58c0-8.3 6.73-15.030 15.030-15.030s15.030 6.73 15.030 15.030v68.58c20.102 3.882 37.51 15.386 49.096 31.384 14.394-19.87 37.768-32.832 64.126-32.832s49.732 12.962 64.126 32.832c14.394-19.87 37.768-32.832 64.126-32.832s49.732 12.962 64.126 32.832c14.394-19.87 37.768-32.832 64.126-32.832s49.732 12.962 64.126 32.832c14.394-19.87 37.768-32.832 64.126-32.832s49.732 12.962 64.126 32.832c14.394-19.87 37.768-32.832 64.126-32.832s49.732 12.962 64.126 32.832c11.586-15.996 28.994-27.502 49.096-31.384v-484.392h-34.066v49.096c0 8.3-6.728 15.030-15.030 15.030h-35.242c20.666 14.296 34.24 38.152 34.24 65.128 0 43.646-35.51 79.154-79.154 79.154-43.646 0-79.154-35.51-79.154-79.154 0-26.974 13.574-50.832 34.24-65.128h-70.484c20.664 14.296 34.238 38.152 34.238 65.128 0 43.646-35.51 79.154-79.154 79.154-43.646 0-79.154-35.51-79.154-79.154 0-26.974 13.574-50.832 34.24-65.128h-35.252c-8.3 0-15.030-6.73-15.030-15.030v-49.096h-34.066v433.846c0 8.3-6.73 15.030-15.030 15.030h-256.5c-8.3 0-15.030-6.73-15.030-15.030v-433.848h-34.066v343.672c0 8.3-6.73 15.030-15.030 15.030s-15.030-6.73-15.030-15.030v-358.7c0-8.3 6.73-15.030 15.030-15.030h769.502c8.302 0 15.030 6.73 15.030 15.030v499.42c36.482 7.044 64.126 39.198 64.126 77.706v256.502c0 8.3-6.726 15.028-15.030 15.028zM176.344 515.356c0-27.070-22.026-49.096-49.096-49.096s-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM176.344 562.448h-98.192v194.38h98.192v-194.38zM304.596 515.356c0-27.070-22.026-49.096-49.096-49.096s-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM304.596 562.448h-98.192v194.38h98.192v-194.38zM270.528 834.98v82.16h482.944v-82.16h-482.944zM432.846 515.356c0-27.070-22.026-49.096-49.096-49.096s-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM432.846 562.448h-98.192v194.38h98.192v-194.38zM561.096 515.356c0-27.070-22.024-49.096-49.096-49.096-27.070 0-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM561.096 562.448h-98.192v194.38h98.192v-194.38zM398.778 786.886v18.036h226.442v-18.036h-226.442zM689.346 515.356c0-27.070-22.024-49.096-49.096-49.096s-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM689.346 562.448h-98.192v194.38h98.192v-194.38zM817.596 515.356c0-27.070-22.024-49.096-49.096-49.096s-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM817.596 562.448h-98.192v194.38h98.192v-194.38zM432.846-46.742h-226.442v418.818h226.442v-418.818zM703.374 82.512c0 27.070 22.022 49.096 49.096 49.096 27.072 0 49.096-22.026 49.096-49.096s-22.022-49.096-49.096-49.096c-27.074 0-49.096 22.024-49.096 49.096zM543.060 82.512c0 27.070 22.022 49.096 49.096 49.096 27.072 0 49.096-22.026 49.096-49.096s-22.022-49.096-49.096-49.096c-27.072 0-49.096 22.024-49.096 49.096zM817.596-46.742h-290.566v34.066h290.568v-34.066zM945.848 515.356c0-27.070-22.024-49.096-49.096-49.096s-49.096 22.026-49.096 49.096v17.034h98.192v-17.034zM945.848 562.448h-98.192v194.38h98.192v-194.38z" />
278
+ <glyph unicode="&#xe957;" glyph-name="monitor" data-tags="monitor" d="M962.184 891.326h-900.366c-34.086 0-61.818-27.732-61.818-61.818v-621.639c0-34.086 27.732-61.818 61.818-61.818h308.521v-44.98c0-41.234-33.548-74.782-74.782-74.782h-67.994c-13.036 0-23.606-10.568-23.606-23.606s10.57-23.606 23.606-23.606h568.873c13.036 0 23.606 10.568 23.606 23.606s-10.57 23.606-23.606 23.606h-67.996c-41.234 0-74.782 33.548-74.782 74.782v44.978h308.521c34.086 0 61.82 27.732 61.82 61.818v621.641c0.004 34.086-27.728 61.818-61.814 61.818zM391.841 26.284c16.092 20.672 25.714 46.616 25.714 74.782v44.98h188.894v-44.98c0-28.166 9.622-54.112 25.714-74.782h-240.322zM976.79 207.867c0-8.054-6.552-14.608-14.608-14.608h-900.364c-8.054 0-14.608 6.552-14.608 14.608v124.066h929.58v-124.066zM976.79 379.147h-929.578v450.361c0 8.054 6.552 14.608 14.608 14.608h900.362c8.054 0 14.61-6.552 14.61-14.608v-450.361zM537.483 262.589c0-14.070-11.406-25.476-25.476-25.476s-25.476 11.406-25.476 25.476c0 14.070 11.406 25.476 25.476 25.476s25.476-11.406 25.476-25.476zM552.477 728.692c-9.22 9.218-24.162 9.218-33.386 0l-166.828-166.828c-9.218-9.218-9.218-24.166 0-33.386 4.612-4.61 10.65-6.914 16.694-6.914s12.082 2.304 16.692 6.914l166.828 166.828c9.218 9.218 9.218 24.166 0 33.386zM651.357 632.013c-9.216 9.218-24.158 9.218-33.384 0.002l-66.46-66.456c-9.218-9.22-9.218-24.168 0-33.386 4.61-4.61 10.65-6.914 16.692-6.914 6.040 0 12.082 2.304 16.692 6.914l66.46 66.456c9.218 9.218 9.218 24.166 0 33.384z" />
279
+ <glyph unicode="&#xe958;" glyph-name="business" data-tags="business" d="M917.334 798.502h-159.574c-71.426 135.494-239.166 187.432-374.66 116.006-49.484-26.084-89.922-66.524-116.006-116.006h-160.428c-58.91 0-106.666-47.756-106.666-106.666v-512c0-35.346 28.654-64 64-64h320v-71.254c-32.902-13.358-56.384-42.996-61.866-78.080h-44.8v-42.666h469.334v42.666h-44.8c-5.482 35.084-28.966 64.722-61.866 78.080v71.254h320c35.346 0 64 28.654 64 64v512c-0.002 58.91-47.758 106.666-106.668 106.666zM320.098 805.426c43.92 62.5 115.514 99.712 191.902 99.742 129.602-0.054 234.624-105.162 234.57-234.764-0.032-76.39-37.242-147.982-99.742-191.902h-269.654c-106.040 74.516-131.594 220.886-57.076 326.924zM657.92-33.498h-291.84c6.998 27.156 32.66 45.228 60.586 42.666h85.334v42.666h-85.334v64h170.666v-106.666c27.928 2.562 53.59-15.51 60.588-42.666zM981.334 179.836c0-11.782-9.552-21.334-21.334-21.334h-896c-11.782 0-21.334 9.552-21.334 21.334v106.666h938.666v-106.666zM981.334 329.168h-938.668v362.668c0 35.346 28.654 64 64 64h141.654c-31.74-97.16-7.106-203.906 64-277.334h-141.654v-42.666h682.666v42.666h-141.866c71.106 73.426 95.74 180.174 64 277.334h141.866c35.346 0 64-28.654 64-64v-362.668zM917.334 713.168h-64v-42.666h42.666v-42.666h42.666v64c0 11.782-9.55 21.332-21.332 21.332zM170.666 713.168h-64c-11.782 0-21.334-9.552-21.334-21.334v-64h42.668v42.666h42.666v42.668zM469.334 243.836h85.334v-42.666h-85.334v42.666zM469.334 585.168h21.334v-42.666h42.666v42.666h21.334c23.564 0 42.666 19.102 42.666 42.666v42.666c0 23.564-19.102 42.666-42.666 42.666h-85.334v42.67h85.334v-21.334h42.666v21.334c0 23.564-19.102 42.666-42.666 42.666h-21.334v42.666h-42.666v-42.666h-21.334c-23.564 0-42.666-19.102-42.666-42.666v-42.666c0-23.564 19.102-42.666 42.666-42.666h85.334v-42.666h-85.334v21.334h-42.666v-21.334c-0.002-23.566 19.102-42.67 42.666-42.67z" />
280
+ <glyph unicode="&#xe959;" glyph-name="graphic-2" data-tags="graphic-2" d="M1002.664 456.535h-459.093c-5.656 0-10.24 4.584-10.24 10.24v459.091c0 11.782-9.552 21.334-21.334 21.334-141.922-0.234-277.427-59.146-374.399-162.774-192.876-206.78-181.606-530.763 25.174-723.639 85.656-79.898 196.12-128.008 312.959-136.308 12.232-0.854 24.32-1.28 36.266-1.28 129.576-0.382 254.384 48.854 348.799 137.6 103.784 96.896 162.856 232.414 163.2 374.399 0 11.784-9.55 21.336-21.332 21.336zM831.996 91.948c-95.054-89.452-223.336-134.818-353.493-125.014-258.755 15.246-456.159 237.37-440.915 496.125 14.266 242.122 210.666 433.493 453.077 441.475v-437.759c-0.332-3.406-0.332-6.834 0-10.24h-64v-42.666h99.84l360.531-260.267c-16.484-22.14-34.904-42.772-55.040-61.654zM910.93 188.801h-0.214l-311.465 225.066h382.079c-3.994-79.778-28.22-157.23-70.4-225.066zM648.105 520.535h354.559c11.782 0 21.334 9.552 21.334 21.334-0.002 223.858-181.476 405.331-405.333 405.331-11.782 0-21.334-9.552-21.334-21.334v-354.559c0.118-27.992 22.78-50.656 50.774-50.772zM639.997 904.534c183.972-10.538 330.795-157.362 341.333-341.333h-333.225c-4.43 0.112-7.994 3.676-8.106 8.106v333.227zM341.331 456.535h42.666v-42.666h-42.666v42.666z" />
281
+ <glyph unicode="&#xe95a;" glyph-name="commerce-1" data-tags="commerce-1" d="M977.040 583.613h-100.734l-50.922 199.696c-6.398 25.092-32.020 40.294-57.106 33.9l-116.098-29.604c-7.83-1.996-12.56-9.964-10.564-17.794 1.998-7.83 9.964-12.556 17.794-10.564l116.098 29.604c9.462 2.406 19.108-3.32 21.52-12.774l5.64-22.122-767.209-195.632-5.64 22.12c-1.168 4.58-0.482 9.342 1.93 13.406 2.414 4.064 6.266 6.946 10.846 8.114l527.717 134.566c7.83 1.996 12.56 9.964 10.564 17.794-1.998 7.83-9.96 12.556-17.794 10.564l-527.719-134.566c-25.092-6.398-40.3-32.016-33.902-57.106l108.216-424.383c5.41-21.214 24.556-35.364 45.51-35.362 3.828 0 7.72 0.474 11.596 1.462l6.928 1.766v-18.006c0-25.894 21.066-46.96 46.96-46.96h756.369c25.894 0 46.96 21.066 46.96 46.96v437.961c0 25.894-21.066 46.96-46.96 46.96zM173.714 146.898l-14.158-3.61c-9.454-2.412-19.108 3.32-21.52 12.774l-66.24 259.767 101.918 25.988v-294.919zM173.714 536.655v-64.638l-109.148-27.832-21.874 85.784 141.374 36.050c-6.468-8.050-10.352-18.26-10.352-29.364zM846.106 583.615h-116.314l109.212 27.848 7.102-27.848zM809.9 725.602l21.874-85.784-220.414-56.206h-358.289l556.829 141.99zM977.040 80.996h-756.367c-9.758 0-17.698 7.938-17.698 17.696v437.961c0 9.758 7.938 17.696 17.698 17.696h756.367c9.758 0 17.696-7.938 17.696-17.696v-437.961c0-9.758-7.938-17.696-17.696-17.696zM582.685 223.411h-318.815c-8.080 0-14.632-6.55-14.632-14.632s6.552-14.632 14.632-14.632h318.815c8.080 0 14.632 6.55 14.632 14.632 0 8.080-6.55 14.632-14.632 14.632zM826.512 480.703c-21.016 0-40.464-6.784-56.316-18.25-16.334 11.834-35.928 18.25-56.376 18.25-53.116 0-96.328-43.212-96.328-96.328 0.004-53.114 43.216-96.326 96.33-96.326 20.448 0 40.040 6.416 56.374 18.25 15.852-11.466 35.302-18.25 56.316-18.25 53.114 0 96.326 43.212 96.326 96.326 0 53.116-43.212 96.328-96.326 96.328zM730.303 379.809c0.018-0.376 0.044-0.75 0.066-1.126 0.070-1.226 0.164-2.448 0.28-3.666 0.028-0.284 0.054-0.568 0.084-0.852 1.784-17.112 8.026-33.186 18.208-46.916-10.48-6.468-22.57-9.934-35.118-9.934-36.98 0-67.064 30.084-67.064 67.062 0.002 36.976 30.086 67.062 67.064 67.062 12.548 0 24.638-3.466 35.118-9.934-10.18-13.73-16.424-29.804-18.208-46.916-0.030-0.284-0.056-0.566-0.084-0.85-0.116-1.218-0.208-2.44-0.28-3.666-0.022-0.376-0.048-0.748-0.066-1.124-0.070-1.518-0.116-3.040-0.116-4.57s0.046-3.052 0.116-4.57zM826.516 317.313c-18.31 0-34.922 7.382-47.036 19.318-0.25 0.246-0.496 0.494-0.742 0.744-0.558 0.568-1.112 1.142-1.65 1.73-0.148 0.162-0.294 0.326-0.442 0.49-0.632 0.704-1.256 1.416-1.858 2.146-0.004 0.004-0.006 0.008-0.010 0.012-9.57 11.596-15.326 26.452-15.326 42.626-0.002 16.172 5.756 31.028 15.328 42.626 0.002 0.002 0.004 0.004 0.006 0.008 0.604 0.732 1.23 1.444 1.864 2.15 0.146 0.162 0.29 0.324 0.438 0.484 0.54 0.59 1.094 1.166 1.654 1.734 0.244 0.248 0.488 0.494 0.736 0.738 12.114 11.936 28.728 19.32 47.038 19.32 36.978 0 67.062-30.084 67.062-67.064 0-36.978-30.084-67.062-67.062-67.062zM368.139 471.189h-64.172c-30.178 0-54.728-24.55-54.728-54.728v-64.172c-0.002-30.178 24.55-54.728 54.728-54.728h64.172c30.176 0 54.728 24.55 54.728 54.728v64.172c0 30.176-24.55 54.728-54.728 54.728zM393.601 376.515h-31.214c-8.080 0-14.632-6.55-14.632-14.632s6.55-14.632 14.632-14.632h30.71c-2.346-11.636-12.644-20.428-24.96-20.428h-64.172c-12.318 0-22.616 8.79-24.96 20.428h30.71c8.080 0 14.632 6.55 14.632 14.632s-6.55 14.632-14.632 14.632h-31.214v12.68h31.214c8.080 0 14.632 6.55 14.632 14.632 0 8.080-6.55 14.632-14.632 14.632h-31.114c1.024 13.108 11.996 23.468 25.364 23.468h64.172c13.368 0 24.338-10.36 25.364-23.468h-31.114c-8.080 0-14.632-6.55-14.632-14.632 0-8.080 6.55-14.632 14.632-14.632h31.214v-12.68zM926.238 159.032h-509.465c-8.080 0-14.632-6.55-14.632-14.632s6.55-14.632 14.632-14.632h509.465c8.080 0 14.632 6.55 14.632 14.632s-6.55 14.632-14.632 14.632zM323.497 159.032h-59.626c-8.080 0-14.632-6.55-14.632-14.632s6.55-14.632 14.632-14.632h59.626c8.080 0 14.632 6.55 14.632 14.632s-6.552 14.632-14.632 14.632z" />
282
+ <glyph unicode="&#xe95b;" glyph-name="hammer" data-tags="hammer" d="M931.942 202.859h-300.695c-50.76 0-92.056-41.296-92.056-92.056 0-11.444 9.31-20.756 20.756-20.756h443.299c11.444 0 20.756 9.31 20.756 20.756-0.004 50.76-41.3 92.056-92.060 92.056zM584.067 130.846c7.818 18.334 26.022 31.218 47.18 31.218h300.695c21.158 0 39.36-12.882 47.178-31.218h-395.053zM923.086 352.373v316.579c24.258 6.398 42.2 28.524 42.2 54.764 0 31.23-25.406 56.636-56.636 56.636h-254.114c-31.228 0-56.634-25.406-56.634-56.636 0-26.24 17.942-48.364 42.2-54.764v-105.102h-197.826c-1.030 10.302-9.722 18.346-20.294 18.346h-350.439c-39.452-0.002-71.544-32.094-71.544-71.544s32.092-71.542 71.544-71.542h350.437c10.572 0 19.266 8.046 20.294 18.346h197.826v-105.086c-24.258-6.348-42.2-28.292-42.2-54.32 0-31.228 25.406-56.634 56.634-56.634h254.116c31.23 0 56.636 25.406 56.636 56.634 0 26.028-17.944 47.974-42.2 54.322zM401.583 479.907h-330.039c-16.954 0.002-30.746 13.796-30.746 30.746 0 16.954 13.794 30.744 30.746 30.744h330.039v-61.49zM638.699 723.716c0 8.734 7.104 15.84 15.838 15.84h254.116c8.732 0 15.84-7.104 15.84-15.84s-7.104-15.84-15.84-15.84h-254.116c-8.732 0-15.838 7.106-15.838 15.84zM882.288 667.081v-312.851h-201.392v312.851h201.392zM442.379 498.255v24.796h197.722v-24.796h-197.722zM908.652 282.213h-254.116c-8.732 0-15.838 7.102-15.838 15.838 0 8.626 6.958 15.38 15.838 15.38h254.116c8.882 0 15.84-6.756 15.84-15.38-0.002-8.732-7.106-15.838-15.84-15.838zM842.452 535.153c-11.266 0-20.398-9.134-20.398-20.398v-120.35c0-11.264 9.132-20.398 20.398-20.398s20.398 9.134 20.398 20.398v120.35c0 11.262-9.132 20.398-20.398 20.398zM842.452 598.387c-11.266 0-20.398-9.134-20.398-20.398v-6.12c0-11.264 9.132-20.398 20.398-20.398s20.398 9.134 20.398 20.398v6.12c0 11.264-9.132 20.398-20.398 20.398z" />
283
+ <glyph unicode="&#xe95c;" glyph-name="justice-1" data-tags="justice-1" d="M1009.040 351.188c-0.002 0.336-0.026 0.674-0.052 1.010-0.012 0.162-0.018 0.326-0.036 0.486-0.032 0.284-0.082 0.568-0.13 0.852-0.036 0.214-0.066 0.43-0.112 0.64-0.044 0.206-0.106 0.412-0.158 0.618-0.074 0.282-0.146 0.566-0.234 0.842-0.048 0.148-0.108 0.296-0.162 0.444-0.118 0.324-0.236 0.646-0.376 0.958-0.016 0.036-0.026 0.074-0.044 0.11l-115.186 255.462h84.356c14.67 0 26.604 11.934 26.604 26.604v35.308c0 14.67-11.934 26.604-26.604 26.604h-135.754c-25.754 0-49.67 10.37-67.338 29.2-30.264 32.254-74.046 50.754-120.12 50.754h-93.614v32.906c16.622 13.824 27.224 34.65 27.224 57.908 0 41.524-33.784 75.306-75.306 75.306s-75.306-33.782-75.306-75.306c0-23.258 10.602-44.082 27.224-57.908v-32.906h-93.612c-46.076 0-89.858-18.5-120.124-50.756-17.666-18.83-41.58-29.2-67.336-29.2h-135.756c-14.67 0-26.604-11.934-26.604-26.604v-35.308c0-14.67 11.934-26.604 26.604-26.604h84.056l-114.892-255.474c-0.016-0.038-0.028-0.076-0.044-0.114-0.134-0.302-0.248-0.614-0.362-0.928-0.058-0.158-0.122-0.314-0.172-0.472-0.086-0.266-0.154-0.538-0.226-0.812-0.056-0.216-0.12-0.43-0.166-0.646-0.042-0.2-0.070-0.406-0.104-0.608-0.050-0.294-0.102-0.586-0.134-0.88-0.016-0.152-0.022-0.308-0.034-0.462-0.026-0.344-0.050-0.688-0.052-1.032 0-0.038-0.006-0.076-0.006-0.114v-14.534c0-73.862 60.092-133.956 133.956-133.956h11.464c73.864 0 133.956 60.092 133.956 133.956v14.534c0 0.044-0.006 0.084-0.006 0.128-0.002 0.33-0.026 0.66-0.050 0.99-0.012 0.17-0.018 0.34-0.036 0.506-0.030 0.278-0.080 0.558-0.128 0.836-0.036 0.218-0.068 0.438-0.114 0.652-0.044 0.206-0.104 0.408-0.158 0.614-0.074 0.284-0.146 0.568-0.236 0.846-0.048 0.15-0.11 0.298-0.164 0.446-0.116 0.322-0.236 0.642-0.372 0.952-0.016 0.038-0.028 0.076-0.044 0.114l-115.188 255.46h10.59c46.072 0 89.852 18.5 120.116 50.756 17.666 18.83 41.58 29.2 67.336 29.2h88.044v-589.834h-152.352c-24.936 0-45.222-20.286-45.222-45.222v-26.348h-25.826c-25.364 0-45.998-20.634-45.998-45.998v-47.164c0-8.174 6.626-14.8 14.8-14.8h605.354c8.174 0 14.8 6.626 14.8 14.8v47.166c0 25.364-20.634 45.998-45.998 45.998h-25.824v26.348c0 24.936-20.288 45.222-45.222 45.222h-152.35v427.83c0 8.174-6.626 14.8-14.8 14.8s-14.8-6.626-14.8-14.8v-427.83h-36.964v589.832h36.964v-68.37c0-8.174 6.626-14.8 14.8-14.8s14.8 6.626 14.8 14.8v68.37h93.902c21.17 0 41.902-8.924 56.882-24.488 34.438-35.768 80.706-55.468 130.29-55.468h4.71l-114.892-255.476c-0.016-0.034-0.026-0.068-0.040-0.102-0.142-0.32-0.264-0.648-0.382-0.98-0.050-0.14-0.108-0.278-0.154-0.42-0.092-0.284-0.166-0.574-0.24-0.864-0.052-0.198-0.11-0.396-0.152-0.594-0.046-0.216-0.076-0.436-0.114-0.656-0.046-0.278-0.096-0.556-0.128-0.836-0.018-0.164-0.024-0.33-0.036-0.496-0.026-0.334-0.048-0.668-0.050-1 0-0.040-0.006-0.080-0.006-0.12v-14.534c0-73.862 60.092-133.956 133.956-133.956h11.466c73.864 0 133.956 60.092 133.956 133.956v14.534c-0.002 0.040-0.008 0.080-0.008 0.122zM511.998 917.602c25.204 0 45.706-20.504 45.706-45.706 0-16.178-8.456-30.408-21.174-38.534-0.556-0.356-1.118-0.698-1.686-1.028-0.292-0.17-0.582-0.342-0.878-0.506-0.782-0.43-1.574-0.838-2.378-1.22-0.282-0.134-0.568-0.258-0.852-0.386-0.64-0.288-1.284-0.562-1.934-0.82-0.276-0.11-0.548-0.222-0.826-0.326-0.87-0.324-1.746-0.624-2.634-0.896-0.234-0.072-0.474-0.134-0.71-0.202-0.742-0.214-1.488-0.408-2.24-0.584-0.252-0.058-0.502-0.12-0.756-0.174-0.948-0.204-1.9-0.382-2.86-0.526-0.158-0.024-0.318-0.040-0.476-0.060-0.834-0.116-1.674-0.206-2.516-0.276-0.264-0.022-0.53-0.044-0.796-0.060-0.992-0.064-1.988-0.108-2.988-0.108s-1.996 0.044-2.988 0.108c-0.266 0.018-0.532 0.040-0.796 0.060-0.842 0.070-1.68 0.16-2.514 0.276-0.16 0.022-0.32 0.038-0.48 0.062-0.96 0.144-1.912 0.322-2.858 0.526-0.256 0.056-0.508 0.118-0.764 0.176-0.748 0.174-1.49 0.368-2.226 0.58-0.24 0.070-0.484 0.132-0.724 0.206-0.882 0.27-1.756 0.568-2.622 0.892-0.286 0.106-0.566 0.224-0.85 0.336-0.64 0.254-1.272 0.522-1.9 0.806-0.294 0.132-0.59 0.26-0.88 0.398-0.796 0.38-1.582 0.782-2.356 1.208-0.308 0.17-0.61 0.35-0.914 0.526-0.552 0.32-1.098 0.652-1.636 0.996-12.732 8.122-21.2 22.362-21.2 38.55 0 25.202 20.504 45.706 45.706 45.706zM530.482 798.882v-17.802h-36.964v17.802c0.242-0.062 0.49-0.102 0.732-0.16 1.118-0.272 2.244-0.52 3.38-0.74 0.372-0.072 0.746-0.134 1.118-0.2 1.146-0.204 2.3-0.382 3.462-0.534 0.266-0.034 0.532-0.070 0.798-0.102 2.95-0.352 5.946-0.556 8.99-0.556 1.57 0 3.126 0.064 4.672 0.16 0.008 0 0.016 0.002 0.024 0.002 1.438 0.088 2.862 0.222 4.276 0.392 0.282 0.034 0.562 0.072 0.842 0.108 1.146 0.15 2.286 0.326 3.416 0.528 0.384 0.068 0.768 0.132 1.15 0.206 1.136 0.22 2.262 0.47 3.378 0.742 0.242 0.054 0.486 0.094 0.726 0.154zM160.372 232.174h-11.464c-57.456 0-104.214 46.67-104.358 104.092h220.18c-0.144-57.422-46.904-104.092-104.358-104.092zM256.622 365.864h-203.99l101.86 226.5 102.13-226.5zM712.43 73.134c8.616 0 15.624-7.008 15.624-15.624v-26.348h-309.014c-8.174 0-14.8-6.626-14.8-14.8s6.626-14.8 14.8-14.8h364.438c9.042 0 16.398-7.356 16.398-16.398v-32.366h-575.756v32.366c0 9.042 7.356 16.398 16.398 16.398h84.004c8.174 0 14.8 6.626 14.8 14.8s-6.626 14.8-14.8 14.8h-28.582v26.348c0 8.614 7.008 15.624 15.624 15.624h400.866zM841.154 642.21c-41.464 0-80.162 16.478-108.966 46.398-20.53 21.326-49.036 33.558-78.208 33.558h-278.106c-34.022 0-65.6-13.69-88.922-38.548-24.69-26.316-60.604-41.408-98.53-41.408h-138.336v29.316h132.76c34.022 0 65.6 13.69 88.922 38.546 24.692 26.316 60.608 41.41 98.538 41.41h283.39c37.93 0 73.844-15.094 98.536-41.412 23.324-24.856 54.904-38.544 88.924-38.544h132.758v-29.316h-132.76zM869.212 592.364l102.128-226.5h-203.988l101.86 226.5zM875.092 232.174h-11.466c-57.456 0-104.214 46.67-104.356 104.092h220.178c-0.144-57.422-46.902-104.092-104.356-104.092z" />
284
+ <glyph unicode="&#xe95d;" glyph-name="line" data-tags="line" d="M68.267 93.867v61.611l155.989 171.691c19.266-16 47.379-15.345 65.877 1.536l120.661-90.453c6.005-27.631 33.274-45.165 60.905-39.159 22.933 4.983 39.541 24.919 40.301 48.375 0.006 3.157-0.337 6.306-1.024 9.387l133.803 148.651c6.573-2.857 13.653-4.365 20.821-4.437 12.085 0.079 23.755 4.433 32.939 12.288l125.099-111.104c-2.876-6.509-4.384-13.536-4.437-20.651 0-28.277 22.923-51.2 51.2-51.2s51.2 22.923 51.2 51.2-22.923 51.2-51.2 51.2c-8.087-0.075-16.041-2.063-23.211-5.803l-130.389 116.565c0.252 2.895 0.252 5.809 0 8.704 0 28.277-22.923 51.2-51.2 51.2s-51.2-22.923-51.2-51.2c0.062-8.034 2.052-15.936 5.803-23.040l-127.659-141.824c-9.009 7.228-20.194 11.198-31.744 11.264-17.314-0.049-33.429-8.845-42.837-23.381l-110.763 83.797c0.26 2.611 0.26 5.239 0 7.851 0 28.277-22.923 51.2-51.2 51.2s-51.2-22.923-51.2-51.2c-0.006-3.157 0.337-6.306 1.024-9.387l-137.557-151.211v187.733l164.693 149.675c7.104-3.797 14.989-5.901 23.040-6.144 28.277 0 51.2 22.923 51.2 51.2 0.006 3.213-0.337 6.417-1.024 9.557l128.853 144.043c2.895-0.252 5.809-0.252 8.704 0 13.743 0.011 26.903 5.547 36.523 15.36l136.533-45.397c7.953-27.136 36.397-42.686 63.533-34.733 23.876 6.997 39.266 30.148 36.478 54.871l119.467 74.752c21.077-18.85 53.446-17.043 72.294 4.036s17.043 53.446-4.036 72.294-53.446 17.043-72.294-4.036c-8.535-9.545-13.186-21.943-13.030-34.748-0.166-2.387-0.166-4.781 0-7.168l-119.467-74.752c-20.845 19.106-53.233 17.696-72.339-3.149-3.386-3.695-6.212-7.866-8.386-12.382l-124.075 41.643c0.083 1.534 0.083 3.072 0 4.608 0.186 28.277-22.586 51.349-50.863 51.535s-51.349-22.586-51.535-50.863c-0.081-12.316 4.282-24.25 12.286-33.611l-117.248-131.925c-8.922 7.264-20.068 11.241-31.573 11.264-28.277 0-51.2-22.923-51.2-51.2 0.011-7.191 1.583-14.295 4.608-20.821l-141.141-128.341v507.563h-34.133v-34.133h-34.133v-34.133h34.133v-170.667h-34.133v-34.133h34.133v-170.667h-34.133v-34.133h34.133v-170.667h-34.133v-34.133h34.133v-187.733c0-9.425 7.642-17.067 17.067-17.067h187.733v-34.133h34.133v34.133h170.667v-34.133h34.133v34.133h170.667v-34.133h34.133v34.133h170.667v-34.133h34.133v34.133h136.533v34.133h-955.733zM870.4 298.667c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM665.6 469.333c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM460.8 264.533c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM256 384c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM870.4 861.867c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM665.6 742.4c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM443.733 810.667c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM256 605.867c9.425 0 17.067-7.642 17.067-17.067s-7.642-17.067-17.067-17.067-17.067 7.642-17.067 17.067 7.642 17.067 17.067 17.067zM324.267-42.667h34.133v-34.133h-34.133v34.133zM392.533-42.667h34.133v-34.133h-34.133v34.133zM460.8-42.667h34.133v-34.133h-34.133v34.133zM529.067-42.667h34.133v-34.133h-34.133v34.133zM597.333-42.667h34.133v-34.133h-34.133v34.133zM665.6-42.667h34.133v-34.133h-34.133v34.133z" />
285
+ <glyph unicode="&#xe95e;" glyph-name="money-3" data-tags="money-3" d="M271.498 754.32v55.714c11.814-3.872 19.24-11.666 19.24-18.894 0-8.854 7.178-16.034 16.034-16.034s16.034 7.178 16.034 16.034c0 25.568-21.536 46.396-51.308 51.966v2.548c0 8.854-7.178 16.034-16.034 16.034s-16.034-7.178-16.034-16.034v-2.548c-29.77-5.572-51.308-26.4-51.308-51.966 0-35.724 28.532-50.738 51.308-59.38v-55.716c-11.814 3.872-19.24 11.666-19.24 18.894 0 8.854-7.178 16.034-16.034 16.034s-16.034-7.178-16.034-16.034c0-25.568 21.536-46.396 51.308-51.966v-2.548c0-8.854 7.178-16.034 16.034-16.034s16.034 7.178 16.034 16.034v2.548c29.77 5.572 51.308 26.4 51.308 51.966 0 35.726-28.532 50.74-51.308 59.382zM239.432 766.742c-15.984 7.834-19.24 14.676-19.24 24.398 0 7.228 7.426 15.022 19.24 18.894v-43.292zM271.498 676.046v43.292c15.984-7.834 19.24-14.676 19.24-24.398 0-7.228-7.426-15.022-19.24-18.894zM512 827.484h-136.818c-8.854 0-16.034-7.178-16.034-16.034 0-8.854 7.178-16.034 16.034-16.034h136.818c8.854 0 16.034 7.178 16.034 16.034 0 8.854-7.18 16.034-16.034 16.034zM392.284 690.664h-17.102c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h17.102c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM683.024 570.952h-478.866c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h478.866c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM358.078 468.338h-51.308c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h51.308c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM238.362 468.338h-34.204c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h34.204c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM358.078 399.928h-51.308c-8.854 0-16.034-7.178-16.034-16.034 0-8.854 7.178-16.034 16.034-16.034h51.308c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM238.362 399.928h-34.204c-8.854 0-16.034-7.178-16.034-16.034 0-8.854 7.178-16.034 16.034-16.034h34.204c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM358.078 331.518h-51.308c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h51.308c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM238.362 331.518h-34.204c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h34.204c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM358.078 263.11h-51.308c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h51.308c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM238.362 263.11h-34.204c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h34.204c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM358.078 194.7h-51.308c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h51.308c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM238.362 194.7h-34.204c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h34.204c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM563.308 690.664h-17.102c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h17.102c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM648.818 690.664h-17.102c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h17.102c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM477.796 690.664h-17.102c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h17.102c8.854 0 16.034 7.178 16.034 16.034s-7.18 16.034-16.034 16.034zM546.204 759.074h-171.024c-8.854 0-16.034-7.178-16.034-16.034s7.178-16.034 16.034-16.034h171.024c8.854 0 16.034 7.178 16.034 16.034s-7.178 16.034-16.034 16.034zM854.048 502.542h-69.478v257.6c0 4.252-1.688 8.33-4.696 11.336l-171.026 171.026c-3.006 3.008-7.084 4.696-11.336 4.696h-444.662c-27.702 0-50.238-22.536-50.238-50.238v-820.91c0-27.702 22.536-50.238 50.238-50.238h257.604v-35.274c0-37.132 30.21-67.34 67.34-67.34h376.252c37.132 0 67.34 30.21 67.34 67.34v444.662c0.002 37.132-30.208 67.34-67.338 67.34zM613.546 892.46l116.284-116.284h-81.010c-19.45 0-35.274 15.824-35.274 35.274v81.010zM410.454 435.202v-377.32h-257.604c-10.020 0-18.172 8.152-18.172 18.172v820.908c0 10.020 8.152 18.172 18.172 18.172h428.628v-103.684c0-37.132 30.21-67.34 67.34-67.34h103.684v-241.566h-274.706c-37.132-0.002-67.342-30.21-67.342-67.342zM889.322-9.46c0-19.45-15.824-35.274-35.274-35.274h-376.252c-19.45 0-35.274 15.824-35.274 35.274v444.662c0 19.45 15.824 35.274 35.274 35.274h376.252c19.45 0 35.274-15.824 35.274-35.274v-444.662zM819.842 434.134h-307.842c-18.272 0-33.136-14.864-33.136-33.136v-68.41c0-18.272 14.864-33.136 33.136-33.136h307.842c18.272 0 33.136 14.864 33.136 33.136v68.41c0 18.272-14.864 33.136-33.136 33.136zM820.912 332.588c0-0.59-0.478-1.068-1.068-1.068h-307.844c-0.59 0-1.068 0.478-1.068 1.068v68.41c0 0.59 0.478 1.068 1.068 1.068h307.842c0.59 0 1.068-0.478 1.068-1.068v-68.41zM546.204 246.008h-34.204c-18.272 0-33.136-14.864-33.136-33.136v-34.204c0-18.272 14.864-33.136 33.136-33.136h34.204c18.272 0 33.136 14.864 33.136 33.136v34.204c0 18.272-14.864 33.136-33.136 33.136zM547.274 178.666c0-0.59-0.478-1.068-1.068-1.068h-34.206c-0.59 0-1.068 0.478-1.068 1.068v34.204c0 0.59 0.478 1.068 1.068 1.068h34.204c0.59 0 1.068-0.478 1.068-1.068v-34.204zM819.842 246.008h-34.204c-18.272 0-33.136-14.864-33.136-33.136v-34.204c0-18.272 14.864-33.136 33.136-33.136h34.204c18.272 0 33.136 14.864 33.136 33.136v34.204c0 18.272-14.864 33.136-33.136 33.136zM820.912 178.666c0-0.59-0.478-1.068-1.068-1.068h-34.204c-0.59 0-1.068 0.478-1.068 1.068v34.204c0 0.59 0.478 1.068 1.068 1.068h34.204c0.59 0 1.068-0.478 1.068-1.068v-34.204zM683.024 246.008h-34.204c-18.272 0-33.136-14.864-33.136-33.136v-34.204c0-18.272 14.864-33.136 33.136-33.136h34.204c18.272 0 33.136 14.864 33.136 33.136v34.204c0 18.272-14.864 33.136-33.136 33.136zM684.092 178.666c0-0.59-0.478-1.068-1.068-1.068h-34.204c-0.59 0-1.068 0.478-1.068 1.068v34.204c0 0.59 0.478 1.068 1.068 1.068h34.204c0.59 0 1.068-0.478 1.068-1.068v-34.204zM546.204 109.188h-34.204c-18.272 0-33.136-14.864-33.136-33.136v-34.204c0-18.272 14.864-33.136 33.136-33.136h34.204c18.272 0 33.136 14.864 33.136 33.136v34.204c0 18.272-14.864 33.136-33.136 33.136zM547.274 41.848c0-0.59-0.478-1.068-1.068-1.068h-34.206c-0.59 0-1.068 0.478-1.068 1.068v34.204c0 0.59 0.478 1.068 1.068 1.068h34.204c0.59 0 1.068-0.478 1.068-1.068v-34.204zM819.842 109.188h-34.204c-18.272 0-33.136-14.864-33.136-33.136v-34.204c0-18.272 14.864-33.136 33.136-33.136h34.204c18.272 0 33.136 14.864 33.136 33.136v34.204c0 18.272-14.864 33.136-33.136 33.136zM820.912 41.848c0-0.59-0.478-1.068-1.068-1.068h-34.204c-0.59 0-1.068 0.478-1.068 1.068v34.204c0 0.59 0.478 1.068 1.068 1.068h34.204c0.59 0 1.068-0.478 1.068-1.068v-34.204zM683.024 109.188h-34.204c-18.272 0-33.136-14.864-33.136-33.136v-34.204c0-18.272 14.864-33.136 33.136-33.136h34.204c18.272 0 33.136 14.864 33.136 33.136v34.204c0 18.272-14.864 33.136-33.136 33.136zM684.092 41.848c0-0.59-0.478-1.068-1.068-1.068h-34.204c-0.59 0-1.068 0.478-1.068 1.068v34.204c0 0.59 0.478 1.068 1.068 1.068h34.204c0.59 0 1.068-0.478 1.068-1.068v-34.204z" />
286
+ <glyph unicode="&#xe95f;" glyph-name="commerce" data-tags="commerce" d="M545.963 273.117h272.981c10.237 0 17.061 6.824 17.061 17.061v153.552c0 10.237-6.824 17.061-17.061 17.061h-272.981c-10.237 0-17.061-6.824-17.061-17.061v-153.552c-0.002-10.235 6.824-17.061 17.061-17.061zM563.024 426.669h238.859v-119.429h-238.859v119.429zM85.307 494.915h136.491c10.237 0 17.061 6.824 17.061 17.061s-6.824 17.061-17.061 17.061h-136.491c-10.237 0-17.061-6.824-17.061-17.061s6.824-17.061 17.061-17.061zM290.043 494.915h136.491c10.237 0 17.061 6.824 17.061 17.061s-6.824 17.061-17.061 17.061h-136.491c-10.237 0-17.061-6.824-17.061-17.061s6.824-17.061 17.061-17.061zM85.307 426.669h221.797c10.237 0 17.061 6.824 17.061 17.061s-6.824 17.061-17.061 17.061h-221.797c-10.237 0-17.061-6.824-17.061-17.061s6.824-17.061 17.061-17.061zM426.533 460.792h-51.184c-10.237 0-17.061-6.824-17.061-17.061s6.824-17.061 17.061-17.061h51.184c10.237 0 17.061 6.824 17.061 17.061s-6.824 17.061-17.061 17.061zM1008.325 672.352c-11.942 15.355-27.297 23.887-46.066 25.592l-40.947 4.962v82.050c0 37.534-30.71 68.245-68.245 68.245h-784.823c-37.534 0.002-68.245-30.708-68.245-68.245v-545.963c0-30.816 20.708-57.018 48.891-65.416-0.86-34.513 25.254-64.476 60.303-67.663l788.234-88.718c1.705 0 5.118 0 6.824 0 34.123 0 64.834 25.592 68.245 58.008l51.184 547.669c1.705 17.063-3.413 35.831-15.355 49.479zM34.123 733.773h853.067v-102.368h-853.067v102.368zM68.245 819.080h784.821c18.768 0 34.123-15.355 34.123-34.123v-17.061h-853.065v17.061c0 18.768 15.355 34.123 34.121 34.123zM34.123 238.995v358.288h853.067v-358.288c0-18.768-15.355-34.123-34.123-34.123h-784.821c-18.768 0-34.123 15.355-34.123 34.123zM989.557 629.699l-51.184-547.669c-1.705-18.768-18.768-32.416-37.534-30.71l-786.528 88.718c-17.061 1.705-29.005 15.355-30.71 30.71h769.466c37.534 0 68.245 30.71 68.245 68.245v431.653l39.242-3.413c8.531 0 17.061-5.118 22.179-11.942 5.12-6.824 8.533-17.061 6.826-25.592z" />
287
+ <glyph unicode="&#xe960;" glyph-name="agenda" data-tags="agenda" d="M809.973-24.010c0-5.643-4.573-10.216-10.216-10.216h-659.784c-5.623-0.471-10.561 3.707-11.032 9.328-0.024 0.295-0.036 0.591-0.036 0.888v903.052c-0.012 7.889-1.305 15.725-3.831 23.199h656.591c15.751-0.116 28.425-12.978 28.309-28.728 0-0.072-0.002-0.144-0.002-0.217v-375.438h42.566v375.438c0.118 39.296-31.58 71.279-70.873 71.512h-700.434c-16.613 4.91-34.551 2.183-48.951-7.448-19.75-14.033-31.362-36.859-31.073-61.084v-155.155c-0.956-28.311 21.222-52.038 49.534-52.993 0.018 0 0.038-0.002 0.056-0.002h35.542v-692.134c0-29.152 23.632-52.782 52.782-52.782h659.784c29.148-0.471 53.157 22.776 53.628 51.924 0.004 0.285 0.006 0.573 0.006 0.858v181.334h-42.566v-181.334zM86.339 710.69h-35.542c-3.406 0-7.023 4.256-7.023 10.216v155.369c-0.287 10.086 4.212 19.714 12.131 25.965 2.69 1.848 5.888 2.815 9.152 2.767v-2.767h8.939c7.913-5.020 12.602-13.832 12.345-23.199v-168.35zM1016.633 447.416l-66.19 66.19c-8.3 8.253-21.709 8.253-30.009 0l-330.529-330.529c-1.794-1.854-3.236-4.017-4.256-6.385l-55.124-121.101c-4.775-10.741 0.062-23.319 10.803-28.094 5.505-2.446 11.788-2.446 17.291 0l121.101 55.124c2.368 1.020 4.531 2.462 6.385 4.256l330.529 330.529c8.253 8.3 8.253 21.707 0 30.009zM592.669 89.643l18.941 42.566 22.772-22.772-41.714-19.793zM670.993 132.209l-35.969 35.756 223.261 223.475 36.819-36.181-224.111-223.050zM924.478 385.482l-35.969 35.969 47.035 47.035 35.969-35.969-47.035-47.035zM277.889 795.824h383.1v-42.566h-383.1v42.566zM277.889 646.84h383.1v-42.566h-383.1v42.566zM277.889 497.858h383.1v-42.566h-383.1v42.566zM277.889 348.874h170.266v-42.566h-170.266v42.566zM512.007 348.874h42.566v-42.566h-42.566v42.566zM618.423 348.874h42.566v-42.566h-42.566v42.566z" />
288
+ <glyph unicode="&#xe961;" glyph-name="justice" data-tags="justice" d="M1003.602 570.264h-13.67c-13.318 67.57-81.626 186.54-111.866 236.93 14.178 9.752 23.498 26.082 23.498 44.552 0 29.8-24.246 54.046-54.046 54.046s-54.044-24.244-54.044-54.046c0-18.47 9.32-34.8 23.5-44.552-30.238-50.39-98.546-169.36-111.864-236.93h-13.668c-11.264 0-20.398-9.132-20.398-20.398 0-97.31 79.168-176.478 176.478-176.478s176.478 79.168 176.478 176.478c0 11.266-9.134 20.398-20.398 20.398zM847.52 864.994c7.304 0 13.248-5.944 13.248-13.248s-5.944-13.246-13.248-13.246-13.246 5.942-13.246 13.246 5.94 13.248 13.246 13.248zM847.488 778.794c34.518-58.264 87.824-155.316 100.936-208.53h-201.744c12.378 49.824 60.34 140.518 100.808 208.53zM847.52 414.184c-67.882 0-124.284 50.11-134.152 115.284h268.306c-9.87-65.174-66.268-115.284-134.154-115.284zM693.564 81.852h-53.928v51.804c0 11.266-9.134 20.398-20.398 20.398h-51.804v569.806c13.342 13.188 21.936 31.17 22.932 51.124l86.252 18.56c11.014 2.37 18.022 13.22 15.652 24.234-2.372 11.014-13.222 18.014-24.234 15.65l-86.454-18.606c-12.97 24.624-38.81 41.462-68.522 41.462-41.146 0-74.882-32.272-77.256-72.832l-215.68-46.412c-9.84 13.458-25.734 22.222-43.644 22.222-29.8 0-54.046-24.244-54.046-54.046 0-18.47 9.32-34.802 23.5-44.552-30.24-50.39-98.546-169.36-111.864-236.93h-13.668c-11.27 0-20.402-9.132-20.402-20.398 0-97.31 79.168-176.478 176.478-176.478s176.478 79.168 176.478 176.478c0 11.266-9.132 20.398-20.398 20.398h-13.668c-13.318 67.572-81.626 186.54-111.864 236.93 12.148 8.354 20.72 21.536 22.93 36.758l214.282 46.11c3.77-7.308 8.656-13.948 14.45-19.676v-569.808h-51.802c-11.266 0-20.398-9.132-20.398-20.398v-51.804h-53.928c-11.266 0-20.398-9.132-20.398-20.398v-76.442c0-11.266 9.132-20.398 20.398-20.398h361.004c11.264 0 20.398 9.132 20.398 20.398v76.448c0 11.266-9.134 20.398-20.398 20.398zM176.478 718.468c7.304 0 13.248-5.944 13.248-13.248s-5.944-13.246-13.248-13.246-13.248 5.942-13.248 13.246 5.944 13.248 13.248 13.248zM176.478 267.658c-67.884 0-124.284 50.11-134.152 115.284h268.304c-9.868-65.174-66.268-115.284-134.152-115.284zM277.382 423.738h-201.744c12.38 49.824 60.342 140.518 100.81 208.53 34.516-58.262 87.822-155.314 100.934-208.53zM513.062 815.492c20.186 0 36.606-16.42 36.606-36.606s-16.422-36.606-36.606-36.606-36.606 16.42-36.606 36.606 16.42 36.606 36.606 36.606zM526.64 702.696v-548.644h-27.156v548.646c4.412-0.786 8.944-1.218 13.58-1.218s9.164 0.434 13.576 1.216zM427.282 113.258h171.558v-31.406h-171.558v31.406zM673.166 5.406h-320.208v35.65h320.208v-35.65zM770.84 833.424c-2.37 11.014-13.222 18.020-24.236 15.65l-14.864-3.198c-11.012-2.37-18.020-13.22-15.65-24.234 2.062-9.568 10.518-16.11 19.924-16.11 1.422 0 2.866 0.148 4.312 0.46l14.864 3.198c11.010 2.37 18.020 13.22 15.65 24.234z" />
289
+ <glyph unicode="&#xe962;" glyph-name="technology" data-tags="technology" d="M0 596.428v-451.814c0-68.963 56.007-124.97 124.97-124.97h774.060c68.963 0 124.97 56.007 124.97 124.97v451.814c0 65.62-53.29 118.909-118.909 118.909h-166.348l-3.971 17.345c-16.091 69.59-77.322 118.073-148.793 118.073h-148.167c-71.262 0-132.493-48.483-148.793-118.073l-3.971-17.345h-166.139c-65.62 0-118.909-53.499-118.909-118.909zM305.528 664.137c11.912 0 22.152 8.15 24.869 19.853l8.568 37.198c10.867 46.184 51.409 78.367 98.847 78.367h148.167c47.438 0 87.98-32.183 98.847-78.367l8.568-37.198c2.717-11.494 12.957-19.853 24.869-19.853h186.619c37.407 0 67.709-30.302 67.709-67.709v-451.814c0-40.751-33.019-73.77-73.77-73.77h-773.851c-40.751 0-73.77 33.019-73.77 73.77v451.814c0 37.407 30.302 67.709 67.709 67.709h186.619zM207.517 554.841c0-18.928-15.344-34.273-34.273-34.273s-34.273 15.344-34.273 34.273c0 18.928 15.344 34.273 34.273 34.273s34.273-15.344 34.273-34.273zM512 151.092c118.491 0 215.040 96.549 215.040 215.040s-96.549 215.040-215.040 215.040-215.040-96.34-215.040-215.040 96.549-215.040 215.040-215.040zM512 529.972c90.279 0 163.84-73.561 163.84-163.84s-73.561-163.84-163.84-163.84-163.84 73.561-163.84 163.84 73.561 163.84 163.84 163.84z" />
290
+ <glyph unicode="&#xe963;" glyph-name="coins-1" data-tags="coins-1" d="M832.41 779.682l-10.75 76.784c-0.542 3.866-2.608 7.354-5.74 9.686-3.13 2.33-7.062 3.31-10.924 2.718l-84.592-12.956c-7.97-1.22-13.44-8.67-12.22-16.638 1.22-7.97 8.674-13.444 16.638-12.22l49.294 7.55c-65.92-81.498-136.818-150.918-211.076-206.54-64.616-48.4-131.902-86.548-199.988-113.388-115.878-45.678-195.006-42.678-195.784-42.65-8.068 0.408-14.874-5.828-15.264-13.872-0.392-8.052 5.818-14.896 13.87-15.288 0.476-0.022 2.468-0.108 5.884-0.108 21.032 0 95.856 3.228 200.17 44.042 70.736 27.676 140.542 67.058 207.482 117.054 76.924 57.454 150.244 129.196 218.256 213.442l5.832-41.664c1.022-7.298 7.274-12.574 14.438-12.574 0.672 0 1.356 0.046 2.042 0.142 7.984 1.118 13.55 8.496 12.432 16.48zM997.066 81.712h-117.958c9.71 6.456 18.854 13.916 27.286 22.35 33.238 33.238 51.542 77.43 51.542 124.434 0 47.006-18.304 91.198-51.542 124.434-11.84 11.84-24.984 21.588-38.944 29.342v58.928c0 8.062-6.536 14.596-14.596 14.596-8.062 0-14.596-6.536-14.596-14.596v-45.964c-39.954 13.526-83.338 12.238-122.352-3.598v179.296c0 1.888 1.536 3.424 3.424 3.424h115.504c1.888 0 3.424-1.536 3.424-3.424v-36.23c0-8.062 6.536-14.596 14.596-14.596 8.062 0 14.596 6.536 14.596 14.596v36.23c0 17.986-14.632 32.618-32.618 32.618h-115.504c-17.986 0-32.618-14.632-32.618-32.618v-194.484c-10.34-6.658-20.144-14.474-29.184-23.516-33.238-33.238-51.542-77.43-51.542-124.434 0-47.006 18.304-91.198 51.542-124.434 8.432-8.432 17.576-15.894 27.286-22.35h-92.174v356.772c0 17.986-14.632 32.618-32.618 32.618h-115.502c-17.986 0-32.618-14.632-32.618-32.618v-356.776h-94.074v236.702c0 17.986-14.632 32.618-32.618 32.618h-115.504c-17.986 0-32.618-14.632-32.618-32.618v-236.702h-60.126v750.672c0 14.852-12.082 26.934-26.934 26.934h-23.092c-14.852 0-26.934-12.082-26.934-26.934v-103.628c0-8.062 6.536-14.596 14.596-14.596s14.596 6.536 14.596 14.596v101.368h18.572v-750.672c0-14.852 12.084-26.934 26.934-26.934h920.106v-21.966h-965.61v605.964c0 8.062-6.536 14.596-14.596 14.596s-14.598-6.534-14.598-14.596v-608.222c0-14.852 12.082-26.934 26.934-26.934h970.132c14.852 0 26.934 12.082 26.934 26.934v26.486c0 14.85-12.082 26.932-26.934 26.932zM288.632 81.712v0h-122.352v236.702c0 1.888 1.536 3.424 3.424 3.424h115.504c1.888 0 3.424-1.536 3.424-3.424v-236.702zM441.092 81.712v356.776c0 1.888 1.536 3.424 3.424 3.424h115.502c1.888 0 3.424-1.536 3.424-3.424v-356.776h-122.35zM846.442 96.636c-14.784-7.23-30.848-11.928-47.21-13.884-0.276-0.032-0.55-0.070-0.826-0.102-1.118-0.128-2.236-0.236-3.356-0.338-1.708-0.15-3.418-0.286-5.136-0.376-0.542-0.030-1.084-0.046-1.626-0.070-2.102-0.088-4.21-0.154-6.328-0.154-2.124 0-4.236 0.066-6.344 0.154-0.666 0.028-1.334 0.060-1.998 0.098-1.59 0.088-3.174 0.21-4.756 0.348-1.312 0.118-2.622 0.256-3.93 0.41-0.936 0.108-1.87 0.218-2.8 0.344-1.33 0.182-2.656 0.374-3.98 0.592-0.172 0.028-0.344 0.060-0.516 0.090-17.222 2.892-33.854 8.83-49.028 17.596-0.080 0.046-0.164 0.076-0.244 0.12-10.892 6.334-21.050 14.094-30.196 23.242-27.724 27.724-42.992 64.584-42.992 103.792s15.268 76.068 42.992 103.792c10.616 10.616 22.472 19.252 35.1 25.93 0.356 0.19 0.716 0.37 1.074 0.556 21.126 10.948 44.368 16.436 67.618 16.436 18.586 0 37.17-3.512 54.67-10.508 0.304-0.122 0.61-0.238 0.912-0.362 1.818-0.74 3.62-1.53 5.412-2.346 0.714-0.326 1.426-0.666 2.136-1.004 14.712-6.992 28.502-16.542 40.66-28.7 57.23-57.232 57.23-150.352 0-207.584-11.506-11.512-24.606-20.836-38.776-27.852-0.176-0.078-0.358-0.134-0.532-0.22zM788.744 242.628v51.99c17.928-1.28 24.588-9.476 30.734-9.476 7.684 0 11.27 9.732 11.27 14.598 0 12.55-24.586 17.928-42.002 18.44v6.916c0 3.074-3.84 5.89-7.682 5.89-4.354 0-7.428-2.816-7.428-5.89v-7.428c-24.332-2.562-48.662-15.368-48.662-47.638 0-32.782 25.612-42.002 48.662-50.198v-60.186c-26.124 2.048-33.038 19.976-41.49 19.976-6.404 0-11.782-8.45-11.782-14.598 0-12.55 21.514-29.71 53.272-30.222h-0.002v-7.938c0-3.074 3.074-5.89 7.428-5.89 3.84 0 7.682 2.816 7.682 5.89v8.708c27.66 3.842 46.612 21.258 46.612 52.76 0 34.832-24.33 46.1-46.612 54.296zM775.174 247.494c-13.576 5.122-24.588 10.5-24.586 25.098 0 13.32 10.244 19.722 24.586 21.514v-46.612zM787.21 160.158v54.040c12.55-5.378 22.538-12.548 22.538-28.684 0-14.6-8.708-22.796-22.538-25.356z" />
291
+ <glyph unicode="&#xe964;" glyph-name="bank" data-tags="bank" d="M1011.4 628l-338.4 217.8c-6.8 4.4-15.8 2.4-20.2-4.4s-2.4-15.8 4.4-20.2l333.6-214.6h-77.8l-379.8 244.4c-13 8.4-29.6 8.4-42.6 0l-379.6-244.2h-77.8l478.8 308 67.8-43.6c6.8-4.4 15.8-2.4 20.2 4.4s2.4 15.8-4.4 20.2l-67.8 43.4c-9.6 6.2-21.8 6.2-31.4 0l-483.8-311.2c-10.4-6.6-15-19-11.4-30.8 3.4-11.8 14-19.6 26.2-19.6h73.4v-94.2c0-11.6 8.2-21.2 19.2-23.6v-25.6c0-13.2 10.8-24 24-24h2v-178.2c0-8 6.6-14.6 14.6-14.6s14.6 6.6 14.6 14.6v192.8c0 8-6.6 14.6-14.6 14.6h-11.6v20h103v-20h-11.6c-8 0-14.6-6.6-14.6-14.6v-321.4c0-8 6.6-14.6 14.6-14.6h11.6v-21.6h-103v21.8h11.6c8 0 14.6 6.6 14.6 14.6v37.2c0 8-6.6 14.6-14.6 14.6s-14.6-6.6-14.6-14.6v-22.6h-2c-13.2 0-24-10.8-24-24v-25.6c-11-2.2-19.2-12-19.2-23.6v-29.4h-51.6c-16 0-29.2-13-29.2-29.2v-30.6c0-16 13-29.2 29.2-29.2h925.6c16 0 29.2 13 29.2 29.2v30.6c0 16-13 29.2-29.2 29.2h-51.6v29.4c0 11.6-8.2 21.2-19.2 23.6v25.6c0 13.2-10.8 24-24 24h-2v292.2h2c13.2 0 24 10.8 24 24v25.6c11 2.2 19.2 12 19.2 23.6v94.2h73.4c12.2 0 22.8 7.8 26.2 19.6 3.6 11.6-1 24-11.4 30.6zM506.4 826.6c3.4 2.2 7.8 2.2 11 0l341.6-219.8h-694.2l341.6 219.8zM129.8 577.6h764.4v-35.6h-764.4v35.6zM592.6 68.4v25.6c0 13.2-10.8 24-24 24h-2v292.4h2c13.2 0 24 10.8 24 24v25.6c11 2.2 19.2 12 19.2 23.6v29.4h112v-29.4c0-11.6 8.2-21.2 19.2-23.6v-25.6c0-13.2 10.8-24 24-24h2v-292.4h-2c-13.2 0-24-10.8-24-24v-25.6c-11-2.2-19.2-12-19.2-23.6v-29.4h-112v29.4c0 11.6-8.2 21.2-19.2 23.6zM281 68.4v25.6c0 13.2-10.8 24-24 24h-2v292.4h2c13.2 0 24 10.8 24 24v25.6c11 2.2 19.2 12 19.2 23.6v29.4h112v-29.4c0-11.6 8.2-21.2 19.2-23.6v-25.6c0-13.2 10.8-24 24-24h2v-292.4h-2c-13.2 0-24-10.8-24-24v-25.6c-11-2.2-19.2-12-19.2-23.6v-29.4h-112v29.4c0 11.6-8.2 21.2-19.2 23.6zM552 89h11.6v-21.8h-103v21.8h11.6c8 0 14.6 6.6 14.6 14.6v321.4c0 8-6.6 14.6-14.6 14.6h-11.6v20h103v-20h-11.6c-8 0-14.6-6.6-14.6-14.6v-321.4c0-8.2 6.6-14.6 14.6-14.6zM446 488.6v0h-4.6v24.4h141.2v-24.4h-4.6c0 0 0 0 0 0s0 0 0 0h-132zM441.4 38.8c1.4-0.4 3-0.8 4.6-0.8h132c1.6 0 3.2 0.2 4.6 0.8v-23.4h-141.2v23.4zM134.4 488.6h-4.6v24.4h141.2v-24.4h-136.6zM129.8 38.8c1.4-0.4 3-0.8 4.6-0.8h132.2c1.6 0 3.2 0.2 4.6 0.8v-23.4h-141.4v23.4zM974.8-13.8v-30.6c0 0 0 0 0 0h-925.6v30.6h925.6zM889.6 38c1.6 0 3.2 0.2 4.6 0.8v-23.4h-141.2v23.4c1.4-0.4 3-0.8 4.6-0.8h132zM783.6 439.4h-11.6v20h103v-20h-11.6c-8 0-14.6-6.6-14.6-14.6v-321.4c0-8 6.6-14.6 14.6-14.6h11.6v-21.6h-103v21.8h11.6c8 0 14.6 6.6 14.6 14.6v321.4c-0.2 8-6.6 14.4-14.6 14.4zM894.2 488.6v0h-4.6c0 0 0 0 0 0s0 0 0 0h-136.6v24.4h141.2v-24.4z" />
292
+ <glyph unicode="&#xe965;" glyph-name="calculator" data-tags="calculator" d="M898.8 947.2h-773.6c-33.4 0-60.6-27.2-60.6-60.6v-902.8c0-33.4 27.2-60.6 60.6-60.6h773.6c33.4 0 60.6 27.2 60.6 60.6v902.8c0 33.4-27.2 60.6-60.6 60.6zM113 886.6c0 6.6 5.4 12.2 12.2 12.2h773.6c6.6 0 12.2-5.4 12.2-12.2v-210.2h-798v210.2zM346.8-28.4h-221.6c-6.6 0-12.2 5.4-12.2 12.2v291.8h233.6v-304zM346.8 324.2h-233.8v303.6h233.6v-303.6zM628.8-28.4h-233.6v304h233.6v-304zM628.8 324.2h-233.6v303.6h233.6v-303.6zM911-16.2c0-6.6-5.4-12.2-12.2-12.2h-221.6v656.2h233.6v-644zM289.8 500.2h-35.6v35.6c0 13.4-10.8 24.2-24.2 24.2s-24.2-10.8-24.2-24.2v-35.6h-35.8c-13.4 0-24.2-10.8-24.2-24.2s10.8-24.2 24.2-24.2h35.6v-35.8c0-13.4 10.8-24.2 24.2-24.2s24.2 10.8 24.2 24.2v35.8h35.6c13.4 0 24.2 10.8 24.2 24.2 0.2 13.4-10.6 24.2-24 24.2zM573.2 500.2h-122.2c-13.4 0-24.2-10.8-24.2-24.2s10.8-24.2 24.2-24.2h122.2c13.4 0 24.2 10.8 24.2 24.2s-10.8 24.2-24.2 24.2zM264.2 123.6l29.2 29.2c9.4 9.4 9.4 24.8 0 34.2s-24.8 9.4-34.2 0l-29.2-29.2-29.4 29.4c-9.4 9.4-24.8 9.4-34.2 0s-9.4-24.8 0-34.2l29.2-29.2-29.2-29.2c-9.4-9.4-9.4-24.8 0-34.2 4.8-4.8 11-7.2 17.2-7.2s12.4 2.4 17.2 7.2l29 28.8 29.2-29.2c4.8-4.8 11-7.2 17.2-7.2s12.4 2.4 17.2 7.2c9.4 9.4 9.4 24.8 0 34.2l-29.2 29.4zM575.6 187.2c-9.4 9.4-24.8 9.4-34.2 0l-92.8-92.8c-9.4-9.4-9.4-24.8 0-34.2 4.8-4.8 11-7.2 17.2-7.2s12.4 2.4 17.2 7.2l92.8 92.8c9.2 9.4 9.2 24.6-0.2 34.2zM486.2 170c0-11.377-9.223-20.6-20.6-20.6s-20.6 9.223-20.6 20.6c0 11.377 9.223 20.6 20.6 20.6s20.6-9.223 20.6-20.6zM579 77.2c0-11.377-9.223-20.6-20.6-20.6s-20.6 9.223-20.6 20.6c0 11.377 9.223 20.6 20.6 20.6s20.6-9.223 20.6-20.6zM855.4 366.4h-124c-13.4 0-24.2-10.8-24.2-24.2s10.8-24.2 24.2-24.2h124c13.4 0 24.2 10.8 24.2 24.2 0 13.2-10.8 24.2-24.2 24.2zM855.4 281.8h-124c-13.4 0-24.2-10.8-24.2-24.2s10.8-24.4 24.2-24.4h124c13.4 0 24.2 10.8 24.2 24.2s-10.8 24.4-24.2 24.4z" />
293
+ <glyph unicode="&#xe966;" glyph-name="soundcloud" data-tags="soundcloud" d="M49.465 426.79c-2.189 0-3.98-1.739-4.263-4.137l-10.065-91.965 10.065-89.922c0.283-2.398 2.074-4.147 4.263-4.147 2.157 0 3.906 1.718 4.252 4.137l11.458 89.943-11.458 91.965c-0.346 2.44-2.095 4.126-4.252 4.126zM11.604 391.558c-2.126 0-3.823-1.634-4.105-4.011l-7.499-56.859 7.499-55.895c0.272-2.367 1.969-4.001 4.105-4.001 2.074 0 3.76 1.634 4.095 3.98l8.871 55.916-8.871 56.911c-0.335 2.325-2.021 3.959-4.095 3.959zM89.692 444.825c-2.702 0-4.86-2.116-5.132-5.027l-9.562-109.109 9.562-105.119c0.272-2.922 2.43-5.027 5.132-5.027 2.65 0 4.807 2.105 5.121 5.017l10.85 105.14-10.85 109.109c-0.314 2.901-2.472 5.017-5.121 5.017zM130.254 448.679c-3.184 0-5.771-2.534-6.022-5.907l-9.028-112.115 9.028-108.439c0.251-3.351 2.838-5.896 6.022-5.896 3.131 0 5.708 2.545 6.001 5.896l10.253 108.439-10.253 112.136c-0.293 3.351-2.87 5.886-6.001 5.886zM178.001 221.307v0-0.021zM178.001 434.697c-0.251 3.823-3.226 6.745-6.87 6.745-3.697 0-6.65-2.912-6.881-6.776l-8.525-103.998 8.525-109.35c0.23-3.844 3.194-6.766 6.881-6.766 3.655 0 6.619 2.922 6.87 6.766l9.667 109.35-9.667 104.030zM212.353 507.486c-4.147 0-7.541-3.372-7.75-7.677l-8.001-169.193 8.001-109.339c0.22-4.252 3.613-7.635 7.75-7.635 4.105 0 7.499 3.372 7.75 7.666v-0.042l9.049 109.339-9.049 169.204c-0.262 4.304-3.655 7.677-7.75 7.677zM253.251 546.456c-4.64 0-8.42-3.749-8.63-8.536 0-0.021-7.488-207.892-7.488-207.892l7.499-108.659c0.209-4.765 3.98-8.515 8.619-8.515 4.608 0 8.42 3.749 8.619 8.536v-0.063l8.473 108.701-8.473 207.892c-0.199 4.786-4.011 8.536-8.619 8.536zM295.772 565.245c-5.142 0-9.321-4.147-9.499-9.426 0-0.010-6.965-225.256-6.965-225.256l6.965-107.538c0.189-5.237 4.357-9.373 9.499-9.373 5.111 0 9.29 4.137 9.499 9.405v-0.063l7.865 107.559-7.865 225.267c-0.22 5.278-4.388 9.426-9.499 9.426zM348.336 563.391c-0.178 5.781-4.734 10.316-10.358 10.316-5.666 0-10.222-4.545-10.379-10.316l-6.451-232.828 6.462-106.868c0.157-5.718 4.702-10.243 10.368-10.243 5.624 0 10.19 4.524 10.358 10.274l7.268 106.805-7.268 232.86zM348.336 223.737v0-0.052zM380.51 568.607c-6.179 0-11.112-4.912-11.259-11.185l-5.928-226.9 5.949-105.831c0.136-6.211 5.059-11.143 11.238-11.143 6.137 0 11.070 4.943 11.238 11.206v-0.084l6.682 105.873-6.682 226.911c-0.168 6.263-5.1 11.154-11.238 11.154zM423.376 561.202c-6.661 0-12.002-5.31-12.128-12.076l-5.415-218.606 5.415-105.203c0.126-6.703 5.467-11.992 12.128-11.992 6.65 0 11.981 5.289 12.107 12.065v-0.084l6.074 105.182-6.074 218.627c-0.126 6.776-5.457 12.086-12.107 12.086zM473.752 601.377c-2.053 1.393-4.535 2.21-7.185 2.21-2.576 0-4.975-0.785-6.996-2.105-3.55-2.315-5.928-6.305-5.991-10.85l-0.042-2.451-4.88-257.618c0-0.147 4.922-104.564 4.922-104.564 0-0.168 0.021-0.283 0.031-0.44 0.147-2.912 1.246-5.593 3.016-7.719 2.398-2.859 5.97-4.702 9.939-4.702 3.529 0 6.745 1.456 9.091 3.802 2.356 2.336 3.844 5.561 3.906 9.143l0.545 10.327 4.933 94.091-5.467 260.142c-0.084 4.472-2.388 8.41-5.823 10.735zM479.565 225.999v0.031zM516.629 626.041c-2.053 1.257-4.483 1.99-7.048 1.99-3.31 0-6.357-1.194-8.756-3.163-3.079-2.545-5.069-6.378-5.132-10.672l-0.031-1.424-5.655-282.314 2.891-52.177 2.796-50.795c0.115-7.509 6.326-13.73 13.887-13.73 7.53 0 13.741 6.221 13.845 13.825v-0.126l6.179 102.993-6.158 283.77c-0.073 5.017-2.817 9.405-6.818 11.824zM898.050 464.776c-17.239 0-33.723-3.498-48.7-9.771-10.044 113.497-105.224 202.54-221.329 202.54-28.424 0-56.105-5.593-80.57-15.050-9.499-3.687-12.013-7.457-12.107-14.809 0-0.010 0-399.738 0-399.738 0.094-7.698 6.064-13.699 13.594-14.442 0.325-0.042 349.132 0 349.132 0 69.563 0 125.939 55.759 125.939 125.332-0.010 69.552-56.387 125.939-125.96 125.939z" />
294
+ <glyph unicode="&#xe967;" glyph-name="chart2" data-tags="chart2" d="M1002.6-34.2h-981.2c-11.8 0-21.4-9.6-21.4-21.4s9.6-21.4 21.4-21.4h981.4c11.8 0 21.4 9.6 21.4 21.4-0.2 12-9.8 21.4-21.6 21.4zM192 221.8h-128c-11.8 0-21.4-9.6-21.4-21.4v-256c0-11.8 9.6-21.4 21.4-21.4h128c11.8 0 21.4 9.6 21.4 21.4v256c0 12-9.6 21.4-21.4 21.4zM170.6-34.2h-85.2v213.4h85.4l-0.2-213.4zM448 435.2h-128c-11.8 0-21.4-9.6-21.4-21.4v-469.4c0-11.8 9.6-21.4 21.4-21.4h128c11.8 0 21.4 9.6 21.4 21.4v469.4c0 11.8-9.6 21.4-21.4 21.4zM426.6-34.2h-85.4v426.8h85.4v-426.8zM704 349.8h-128c-11.8 0-21.4-9.6-21.4-21.4v-384c0-11.8 9.6-21.4 21.4-21.4h128c11.8 0 21.4 9.6 21.4 21.4v384c0 12-9.6 21.4-21.4 21.4zM682.6-34.2h-85.4v341.4h85.4v-341.4zM960 605.8h-128c-11.8 0-21.4-9.6-21.4-21.4v-640c0-11.8 9.6-21.4 21.4-21.4h128c11.8 0 21.4 9.6 21.4 21.4v640c0 12-9.6 21.4-21.4 21.4zM938.6-34.2h-85.4v597.4h85.4v-597.4zM128 563.2c-47 0-85.4-38.2-85.4-85.4s38.2-85.4 85.4-85.4 85.4 38.2 85.4 85.4-38.4 85.4-85.4 85.4zM128 435.2c-23.6 0-42.6 19.2-42.6 42.6 0 23.6 19.2 42.6 42.6 42.6s42.6-19.2 42.6-42.6-19-42.6-42.6-42.6zM384 776.6c-47 0-85.4-38.2-85.4-85.4s38.2-85.4 85.4-85.4 85.4 38.2 85.4 85.4c0 47-38.4 85.4-85.4 85.4zM384 648.6c-23.6 0-42.6 19.2-42.6 42.6 0 23.6 19.2 42.6 42.6 42.6s42.6-19.2 42.6-42.6c0-23.6-19-42.6-42.6-42.6zM640 691.2c-47 0-85.4-38.2-85.4-85.4s38.2-85.4 85.4-85.4 85.4 38.2 85.4 85.4-38.4 85.4-85.4 85.4zM640 563.2c-23.6 0-42.6 19.2-42.6 42.6 0 23.6 19.2 42.6 42.6 42.6s42.6-19.2 42.6-42.6-19-42.6-42.6-42.6zM896 947.2c-47 0-85.4-38.2-85.4-85.4s38.2-85.4 85.4-85.4 85.4 38.2 85.4 85.4-38.4 85.4-85.4 85.4zM896 819.2c-23.6 0-42.6 19.2-42.6 42.6 0 23.6 19.2 42.6 42.6 42.6s42.6-19.2 42.6-42.6c0-23.4-19-42.6-42.6-42.6zM865.8 831.8c-8.4 8.4-21.8 8.4-30.2 0l-165.6-165.6c-8.4-8.4-8.4-21.8 0-30.2 4.2-4.2 9.6-6.2 15.2-6.2 5.4 0 10.8 2 15 6.2l165.6 165.6c8.4 8.2 8.4 21.8 0 30.2zM588.4 655.2l-137 39c-11.4 3.4-23.2-3.4-26.4-14.6-3.2-11.4 3.4-23.2 14.6-26.4l137-39c2-0.6 4-0.8 5.8-0.8 9.4 0 17.8 6.2 20.6 15.4 3.4 11.2-3.2 23-14.6 26.4zM350.8 664.6c-7.4 9.2-20.8 10.8-30 3.4l-160.8-128.2c-9.2-7.4-10.8-20.8-3.4-30 4.2-5.2 10.4-8 16.6-8 4.6 0 9.4 1.6 13.2 4.6l160.8 128.2c9.4 7.4 11 20.8 3.6 30z" />
295
+ <glyph unicode="&#xe968;" glyph-name="checked" data-tags="checked" d="M736 657.6l-350.4-387.2-110.4 121.6c-11.2 12.8-32 14.4-44.8 1.6-12.8-11.2-14.4-32-1.6-44.8l128-142.4c6.4-8 16-12.8 25.6-12.8 1.6 0 1.6 0 3.2 0s1.6 0 1.6 0c9.6 0 19.2 4.8 25.6 11.2l371.2 409.6c11.2 12.8 11.2 33.6-1.6 44.8-14.4 12.8-33.6 11.2-46.4-1.6zM512 947.2c-281.6 0-512-230.4-512-512s230.4-512 512-512c281.6 0 512 230.4 512 512s-230.4 512-512 512zM512-12.8c-246.4 0-448 201.6-448 448s201.6 448 448 448c246.4 0 448-201.6 448-448s-201.6-448-448-448z" />
296
+ <glyph unicode="&#xe969;" glyph-name="clock11" data-tags="clock1" d="M874 797.2c-96.8 96.8-225.2 150-362 150s-265.4-53.2-362-150c-96.8-96.8-150-225.2-150-362s53.2-265.4 150-362c96.8-96.8 225.2-150 362-150s265.4 53.2 362 150c96.8 96.8 150 225.2 150 362s-53.2 265.4-150 362zM512-36c-259.8 0-471.2 211.4-471.2 471.2s211.4 471.2 471.2 471.2 471.2-211.4 471.2-471.2-211.4-471.2-471.2-471.2zM512 866.8c-238 0-431.6-193.6-431.6-431.6s193.6-431.6 431.6-431.6 431.6 193.6 431.6 431.6-193.6 431.6-431.6 431.6zM860.2 257.8l-58.8 34c-9.8 5.6-22.2 2.2-27.8-7.4-5.6-9.8-2.2-22.2 7.4-27.8l58.8-34c-29.8-45.8-69-85-115-115l-34 58.8c-5.6 9.8-18.2 13.2-27.8 7.4-9.8-5.6-13-18.2-7.4-27.8l34-58.8c-47.6-24.4-100.8-39.2-157-42.2v68c0 11.2-9.2 20.4-20.4 20.4s-20.4-9.2-20.4-20.4v-68c-56.2 3-109.4 17.8-157 42.2l34 58.8c5.6 9.8 2.2 22.2-7.4 27.8-9.8 5.6-22.2 2.2-27.8-7.4l-34-58.8c-45.8 29.8-85 69-115 115l58.8 34c9.8 5.6 13 18.2 7.4 27.8-5.6 9.8-18.2 13-27.8 7.4l-58.8-34c-24.4 47.6-39.2 100.8-42.2 157h68c11.2 0 20.4 9.2 20.4 20.4s-9.2 20.4-20.4 20.4h-68c3 56.2 17.8 109.4 42.2 157l58.8-34c3.2-1.8 6.8-2.8 10.2-2.8 7 0 14 3.6 17.6 10.2 5.6 9.8 2.2 22.2-7.4 27.8l-58.8 34c29.8 45.8 69 85 115 115l34-58.8c3.8-6.6 10.6-10.2 17.6-10.2 3.4 0 7 0.8 10.2 2.8 9.8 5.6 13.2 18.2 7.4 27.8l-34 58.8c47.6 24.4 100.8 39.2 157 42.2v-68c0-11.2 9.2-20.4 20.4-20.4s20.4 9.2 20.4 20.4v68c56.2-3 109.4-17.8 157-42.2l-34-58.8c-5.6-9.8-2.2-22.2 7.4-27.8 3.2-1.8 6.8-2.8 10.2-2.8 7 0 14 3.6 17.6 10.2l34 58.8c45.8-29.8 85-69 115-115l-58.8-34c-9.8-5.6-13-18.2-7.4-27.8 3.8-6.6 10.6-10.2 17.6-10.2 3.4 0 7 0.8 10.2 2.8l58.8 34c24.4-47.6 39.2-100.8 42.2-157h-68c-11.2 0-20.4-9.2-20.4-20.4s9.2-20.4 20.4-20.4h68c-3-56.2-18-109.4-42.2-157zM532.4 492v130.8c0 11.2-9.2 20.4-20.4 20.4s-20.4-9.2-20.4-20.4v-130.8c-23.2-8.4-40-30.6-40-56.8 0-14.8 5.4-28.4 14.4-39l-32.4-56c-5.6-9.8-2.2-22.2 7.4-27.8 3.2-1.8 6.8-2.8 10.2-2.8 7 0 14 3.6 17.6 10.2l32.4 56c3.4-0.6 7-1 10.8-1 33.2 0 60.4 27 60.4 60.4 0 26.2-16.8 48.4-40 56.8zM512 415.6c-10.8 0-19.6 8.8-19.6 19.6s8.8 19.6 19.6 19.6c10.8 0 19.6-8.8 19.6-19.6s-8.8-19.6-19.6-19.6zM512 710.6c-11.2 0-20.4-9.2-20.4-20.4v-8.2c0-11.2 9.2-20.4 20.4-20.4s20.4 9.2 20.4 20.4v8.2c0 11.2-9.2 20.4-20.4 20.4z" />
297
+ <glyph unicode="&#xe96a;" glyph-name="comment2" data-tags="comment" d="M885.912 929.402h-747.824c-76.102 0-138.088-61.986-138.088-138.088v-504.482c0-76.102 61.986-138.088 138.088-138.088h15.957l-1.534-208.053 301.032 208.053h432.062c76.102 0 138.088 61.986 138.088 138.088v504.482c0.307 76.102-61.679 138.088-137.781 138.088zM984.415 286.832c0-54.315-44.188-98.503-98.503-98.503h-444.337l-248.865-171.843 1.227 171.843h-55.849c-54.315 0-98.503 44.188-98.503 98.503v504.482c0 54.315 44.188 98.503 98.503 98.503h747.824c54.315 0 98.503-44.188 98.503-98.503v-504.482zM208.973 725.338h606.36v-39.585h-606.36v39.585zM208.973 558.405h606.36v-39.585h-606.36v39.585zM208.973 391.472h448.633v-39.585h-448.633v39.585z" />
298
+ <glyph unicode="&#xe96b;" glyph-name="comments" data-tags="comments" d="M604.296 291.508c61.906 26.095 110.762 61.616 146.565 106.575 35.809 44.949 53.714 93.9 53.714 146.853 0 52.955-17.905 101.904-53.714 146.861-35.803 44.951-84.659 80.476-146.565 106.577-61.906 26.097-129.238 39.141-202.006 39.141-72.762 0-140.094-13.052-202.004-39.149-61.902-26.097-110.76-61.622-146.565-106.575-35.813-44.951-53.72-93.898-53.72-146.855 0-45.33 13.538-88.015 40.582-128.009 27.044-40 64.19-73.721 111.425-101.145-3.807-9.151-7.712-17.521-11.713-25.151-4.003-7.618-8.761-14.945-14.289-21.998-5.524-7.055-9.805-12.575-12.856-16.562-3.048-3.999-8-9.625-14.859-16.857-6.861-7.239-11.244-12.001-13.144-14.281 0 0.382-0.767-0.48-2.288-2.576-1.527-2.096-2.384-3.042-2.576-2.864-0.188 0.206-0.953-0.747-2.284-2.842-1.333-2.098-2.001-3.144-2.001-3.144l-1.431-2.848c-0.568-1.137-0.953-2.276-1.141-3.427-0.192-1.135-0.288-2.382-0.288-3.711s0.188-2.562 0.572-3.711c0.767-4.946 2.956-8.939 6.573-12.001 3.621-3.042 7.52-4.561 11.717-4.561h1.715c19.044 2.666 35.428 5.712 49.141 9.145 58.668 15.239 111.625 39.623 158.862 73.144 34.282-6.097 67.81-9.143 100.571-9.143 72.762-0.024 140.102 13.016 202.006 39.113zM284.58 339.214l-25.147-17.705c-10.668-7.233-22.471-14.673-35.426-22.297l20.005 48.008-55.429 32c-36.579 21.328-64.956 46.473-85.147 75.426-20.193 28.952-30.285 59.048-30.285 90.289 0 38.863 14.959 75.244 44.861 109.149 29.898 33.905 70.186 60.761 120.854 80.578 50.664 19.805 105.142 29.716 163.428 29.716s112.768-9.911 163.43-29.716c50.664-19.815 90.952-46.673 120.866-80.578 29.902-33.903 44.849-70.284 44.849-109.149 0-38.857-14.947-75.236-44.849-109.141-29.912-33.915-70.2-60.765-120.866-80.572-50.662-19.809-105.138-29.714-163.43-29.714-28.565 0-57.709 2.672-87.427 8l-30.287 5.706zM983.426 270.384c27.056 39.822 40.574 82.571 40.574 128.291 0 46.857-14.289 90.673-42.85 131.43-28.575 40.754-67.438 74.666-116.577 101.714 8.755-28.569 13.136-57.521 13.136-86.861 0-51.044-12.745-99.426-38.286-145.146-25.523-45.706-62.096-86.084-109.714-121.138-44.193-32-94.48-56.564-150.866-73.713-56.37-17.137-115.232-25.715-176.567-25.715-11.425 0-28.189 0.755-50.281 2.276 76.569-50.275 166.478-75.426 269.713-75.426 32.766 0 66.287 3.054 100.577 9.149 47.235-33.535 100.195-57.905 158.858-73.152 13.714-3.439 30.096-6.479 49.145-9.143 4.569-0.39 8.769 0.953 12.575 3.993 3.809 3.054 6.289 7.233 7.426 12.561-0.178 2.288 0 3.543 0.574 3.725 0.562 0.18 0.466 1.425-0.288 3.707-0.753 2.29-1.137 3.433-1.137 3.433l-1.425 2.85c-0.396 0.753-1.041 1.807-1.999 3.136-0.953 1.321-1.711 2.282-2.288 2.856-0.56 0.568-1.411 1.527-2.562 2.85-1.137 1.321-1.903 2.186-2.288 2.568-1.903 2.288-6.283 7.047-13.138 14.289-6.863 7.231-11.807 12.85-14.855 16.849-3.048 4.001-7.335 9.521-12.858 16.576-5.52 7.041-10.288 14.377-14.289 21.998-3.999 7.618-7.904 16.002-11.713 25.139 47.223 27.452 84.375 61.069 111.403 100.905z" />
299
+ <glyph unicode="&#xe96c;" glyph-name="consult" data-tags="consult" d="M860 783.2c-8 8-20.8 8-28.8 0l-6.6-6.6c-8-8-8-20.8 0-28.8 4-4 9.2-6 14.4-6s10.4 2 14.4 6l6.6 6.6c8 8 8 20.8 0 28.8zM999.2 947.2h-129.4c-11.2 0-20.4-9.2-20.4-20.4s9.2-20.4 20.4-20.4h84.6l-70.6-70.6c-8-8-8-20.8 0-28.8 4-4 9.2-6 14.4-6s10.4 2 14.4 6l66.2 66.2v-75.8c0-11.2 9.2-20.4 20.4-20.4s20.4 9.2 20.4 20.4v129.4c0 11.2-9.2 20.4-20.4 20.4zM999.2 93.4c-11.2 0-20.4-9.2-20.4-20.4v-75.8l-166.2 166.2c65.2 72 104.8 167.4 104.8 271.8 0 223.6-182 405.6-405.6 405.6-104.4 0-199.8-39.8-271.8-104.8l-170.6 170.6h84.6c11.2 0 20.4 9.2 20.4 20.4s-9.2 20.4-20.4 20.4h-129.4c-11.2 0-20.4-9.2-20.4-20.4v-129.4c0-11.2 9.2-20.4 20.4-20.4s20.4 9.2 20.4 20.4v75.6l166.2-166.2c-65-72-104.8-167.4-104.8-271.8s39.8-199.8 104.8-271.8l-166-166.2v75.8c0 11.2-9.2 20.4-20.4 20.4s-20.4-9.2-20.4-20.4v-129.4c0-11.2 9.2-20.4 20.4-20.4h129.4c11.2 0 20.4 9.2 20.4 20.4s-9.2 20.4-20.4 20.4h-84.6l170.6 170.6c72-65.2 167.4-104.8 271.8-104.8s199.8 39.8 271.8 104.8l170.6-170.6h-84.6c-11.2 0-20.4-9.2-20.4-20.4s9.2-20.4 20.4-20.4h129.4c11.2 0 20.4 9.2 20.4 20.4v129.4c0 11.4-9.2 20.4-20.4 20.4zM512 70.4c-201.2 0-364.8 163.6-364.8 364.8s163.6 364.8 364.8 364.8 364.8-163.6 364.8-364.8-163.6-364.8-364.8-364.8zM593.4 679.4c-14.4 15.4-34.6 24.2-55.6 24.2h-51.4c-21 0-41.2-8.8-55.6-24.2s-21.8-36.2-20.4-57.2l2.2-35 5.4-81.8c2.2-32.4 20.4-61 48.8-76.6 14.2-7.8 29.8-11.8 45.4-11.8s31.2 4 45.4 11.8c28.4 15.6 46.6 44.2 48.8 76.6l6 93.6 1.6 23.4c1.2 21-6.2 41.8-20.6 57zM450.8 625c-0.6 9.8 2.8 19.4 9.6 26.6s16 11.2 25.8 11.2h38.2l-7.4-19.8c-2.6-3.8-19.2-24.6-65.2-32l-1 14zM565.4 508.2c-1.2-18.4-11.6-34.6-27.6-43.4-16.2-8.8-35.4-8.8-51.6 0s-26.4 25.2-27.6 43.4l-4 62.2c38 5.2 62.6 18.4 77.8 30.4 3-2.2 6.2-4.2 9.8-6 6.4-3.4 15.8-6.6 28.4-10l-5.2-76.6zM560.8 631c-1.6 0.8-3 1.6-4 2.2l6.8 18.2c6.4-6.8 9.8-15.8 9.4-25.2-7 2.4-10.6 4-12.2 4.8zM735.8 283.6c-10.4 57.6-56.2 103.6-113.6 114.4-8.6 1.6-17.6 2.4-26.4 2.4h-25.6c-5.4 0-10.6-2.2-14.4-6l-43.8-43.6-43.8 43.8c-3.8 3.8-9 6-14.4 6h-25.6c-8.8 0-17.8-0.8-26.4-2.4-57.6-10.8-103.2-56.8-113.6-114.4-3.2-17.6 1.6-35.6 13-49.4s28.4-21.6 46.2-21.6h329c18 0 34.8 7.8 46.2 21.6 11.6 13.6 16.4 31.6 13.2 49.2zM691.4 260.4c-2.2-2.6-7-7-15-7h-328.8c-8 0-12.8 4.4-15 7s-5.6 8.2-4.2 16c7.4 41.2 40 74 81 81.6 6.2 1.2 12.6 1.8 18.8 1.8h17.2l52.2-52.2c3.8-3.8 9-6 14.4-6s10.6 2.2 14.4 6l52.2 52.2h17.2c6.4 0 12.6-0.6 18.8-1.8 41-7.8 73.6-40.6 81-81.6 1.4-7.8-2-13.4-4.2-16z" />
300
+ <glyph unicode="&#xe96d;" glyph-name="consut2" data-tags="consut2" d="M958.8 850.4h-673.6c-35.8 0-65.2-29.2-65.2-65.2v-200.2c-18-3.6-34.6-12.6-47.2-26.2-16.6-17.8-25.2-41.8-23.6-66l2.8-42.6 6.4-99.4c2.4-37.8 23.8-71.2 56.8-89.4 16.6-9.2 34.8-13.8 53.2-13.8 18.2 0 36.4 4.6 53.2 13.8 9.4 5.2 17.6 11.6 25 18.8h612.2c36 0 65.2 29.2 65.2 65.2v439.8c0 36-29.2 65.2-65.2 65.2zM191.4 473.8l-1.4 21.6c-0.8 13.2 3.6 25.8 12.8 35.4 9 9.6 21.4 15 34.6 15h52.6l-11.4-30.4c-3.2-4.6-24.6-33.2-87.2-41.6zM337.6 353.4c-1.6-23.8-15-44.8-35.8-56.2-21-11.6-46-11.6-66.8 0-20.8 11.4-34.2 32.6-35.8 56.2l-5.2 79.6c49.6 6.2 80.6 23.6 98.6 38.8 4-3.2 8.8-6.4 14.2-9.2 8.2-4.2 20.4-8.4 37-12.8l-6.2-96.4zM347 495.4l-0.2-4c-12.2 3.4-18.2 6-21 7.4-4.2 2.2-6.6 4-8 5.2l11.8 31.2c1.6-1.4 3.2-2.8 4.8-4.4 8.8-9.6 13.4-22.2 12.6-35.4zM983.2 345.6c0-13.4-11-24.4-24.4-24.4h-586.6c3.4 9.4 5.4 19.4 6.2 29.8l0.2 1.6h524.8c11.2 0 20.4 9.2 20.4 20.4s-9.2 20.4-20.4 20.4h-22.2v336c0 11.2-9.2 20.4-20.4 20.4h-98.4c-11.2 0-20.4-9.2-20.4-20.4v-336.2h-25.4v146c0 11.2-9.2 20.4-20.4 20.4h-98.4c-11.2 0-20.4-9.2-20.4-20.4v-146h-23.8v256c0 11.2-9.2 20.4-20.4 20.4h-98.4c-11.2 0-20.4-9.2-20.4-20.4v-256h-33l4.6 71.2 1.8 28.4c1.4 22.6-6 45.2-20.4 62.4v201.6c0 11.2-9.2 20.4-20.4 20.4s-20.4-9.2-20.4-20.4v-174.4c-8.6 2.8-17.6 4.2-26.8 4.2h-39v198.6c0 13.4 11 24.4 24.4 24.4h673.4c13.4 0 24.4-11 24.4-24.4l0.2-439.6zM454.8 393.2v235.6h57.6v-235.6h-57.6zM618 393.2v125.6h57.6v-125.6h-57.6zM782.8 393.2v315.8h57.6v-315.8h-57.6zM535.8 101.2c-12.4 68.2-66.4 122.6-134.4 135.4-10.2 2-20.8 3-31.2 3h-31.2c-5.4 0-10.6-2.2-14.4-6l-56.2-56.2-56.2 56.2c-3.8 3.8-9 6-14.4 6h-31c-10.4 0-21-1-31.2-3-68-12.8-122-67.2-134.4-135.4-3.6-20.2 1.8-40.6 14.8-56.4 13.2-15.6 32.4-24.8 52.8-24.8h399.2c20.4 0 39.8 9 52.8 24.8 13.2 15.6 18.6 36.2 15 56.4zM489.6 70.8c-5.4-6.4-13.2-10-21.6-10h-399.2c-8.4 0-16.2 3.6-21.6 10s-7.6 14.8-6 23c9.4 51.6 50.2 93 101.8 102.6 7.8 1.4 15.8 2.2 23.6 2.2h22.6l64.8-64.6c8-8 20.8-8 28.8 0l64.6 64.6h22.6c8 0 15.8-0.8 23.6-2.2 51.6-9.8 92.4-51 101.8-102.6v0c1.8-8.2-0.4-16.6-5.8-23zM944.4 790.4c-11.2 0-20.4-9.2-20.4-20.4v-77.6c0-11.2 9.2-20.4 20.4-20.4s20.4 9.2 20.4 20.4v77.6c0 11.2-9 20.4-20.4 20.4zM944.4 647.6c-11.2 0-20.4-9.2-20.4-20.4v-10.2c0-11.2 9.2-20.4 20.4-20.4s20.4 9.2 20.4 20.4v10.2c0 11.2-9 20.4-20.4 20.4z" />
301
+ <glyph unicode="&#xe96e;" glyph-name="deal" data-tags="deal" d="M1013.4 584c-5.6 4-13 5-19.6 2.6l-173.6-63c-21.6-7.8-38.8-23.6-48.2-44.4-1.8-4-3-8-4.2-12-29.8 8.4-85.2 26.2-140.4 54.4-83.2 43-146.6 21.8-201.2-20-27.6-0.6-65.6-3.8-103.2-7.2-24-2.2-46.6-4-64.6-5.2-0.4 11-3 22-7.8 32.2-9.6 20.8-26.8 36.6-48.2 44.4l-173.6 63c-6.6 2.4-13.8 1.4-19.6-2.6s-9.2-10.6-9.2-17.4v-425.8c0-11.8 9.6-21.4 21.4-21.4h62.2c26.6 0 51 12.6 66.8 32.6 8.4-6.4 18.6-14 29-22 25.8-18.4 52.8-38.8 64.8-48.6 79.2-66.4 174.6-138.2 193.6-150.4 17.8-11.6 49.6-24 74-24 9.6 0 33.6 0 50.2 14.2 17.4-6.8 36-6.4 53.2 1.2 17.4 7.6 31.4 22 39.6 39.6 16.6-3.4 35.8-1 53 7.8 16.2 8.2 28.2 20.4 34.6 34.8 15.4-1.4 31.8 3.6 46.6 14.8 21 16 30.6 39.8 28 63l54 30c15.8-21.4 41-35.2 68.2-35.2h62.2c11.8 0 21.4 9.6 21.4 21.4v426c-0.2 6.6-3.6 13.2-9.4 17.2zM124 232.2c-6.2-16.6-22.2-27.6-40-27.6h-40.8v374l145-52.6c10.8-4 19.4-11.8 24.2-22.2s5.2-22 1.2-32.8l-89.6-238.8zM762.8 95.4c-7.2-5.6-17.4-8.6-21.8-4.2-0.2 0.2-0.6 0.2-0.8 0.4-0.4 0.4-0.6 0.8-1 1.2-15.2 12-83.4 81.8-125.6 125.8-8.2 8.6-21.6 8.8-30.2 0.6s-8.8-21.6-0.6-30.2c10-10.4 89.2-93 121.2-122-2.4-9.4-11-15.2-15.4-17.4-13.6-6.8-28-5.8-33.2-0.8-0.2 0.2-0.4 0.2-0.6 0.2-0.2 0.2-0.4 0.6-0.6 0.8-25.6 20.4-89.6 88.4-104 104.2-8 8.6-21.4 9.2-30.2 1.2-8.6-8-9.2-21.4-1.2-30.2 0.8-0.8 63.4-68.4 98.8-100-3.4-10-10.6-18.2-19.6-22.2-6.6-3-17.2-4.6-29.2 4.4-30.6 26-92 91.2-104 104.2-8 8.6-21.6 9-30.2 1s-9-21.6-1-30.2c14.4-15.4 56.6-60 88.8-90.4-3.6-0.4-7.4-0.6-11-0.6-14.2 0-38.4 9-50.4 17-15 9.8-108.6 79.8-189.6 147.4-12.2 10.2-40.2 31.4-65.6 50.4-13.8 10.4-26.4 19.8-35.8 27l79.6 212.6c20.8 1 48.2 3.2 77.4 5.8 16.6 1.4 33.2 2.8 48.8 4.2-24.4-25-60.2-69.6-55.6-111.4 2.2-19 12.6-35 30.2-46 34.8-21.8 99.2-3.6 130.2 34.8 20 2.8 33.6 8 48.2 15.4 25-23.6 58.4-51 93.6-80 61-50.4 130.6-107.6 148.8-139.6 10.4-17.2-3.8-30-8.4-33.4zM799.4 163.8c-28.4 38-89.8 88.6-149.6 138.2-40 33-77.6 64-101.8 88.2-6.6 6.6-16.8 8.2-25.2 3.8-21.8-11.6-31.6-16.4-55.8-19-6.6-0.6-12.4-4.2-16-9.8-16.8-26.6-63-39.2-77.8-30-8.4 5.2-10 10.6-10.4 14.6-2 18.2 16.4 49.4 46.8 79.8 75.2 75.2 129.2 90 198.8 54 66.2-34.2 131.6-53.4 158.8-60.6 0.8-3.2 1.4-6.4 2.6-9.6l82.6-220.6-53-29zM939 162c-17.6 0-33.8 11.2-40 27.6l-89.6 238.8c-4 10.8-3.6 22.4 1.2 32.8s13.4 18.4 24.2 22.2l144.8 52.6 0.2-373.8-40.8-0.2zM511.4 722c-6 0-10.8-7.8-10.8-13.4 0-11.6 19.8-27.4 49-27.8v-7.4c0-2.8 2.8-5.4 6.8-5.4 3.6 0 7 2.6 7 5.4v8c25.6 3.6 43 19.6 43 48.4-0.2 32.4-22.6 42.8-43.2 50.2v48c16.6-1.2 22.6-8.8 28.4-8.8 7 0 10.4 9 10.4 13.4 0 11.6-22.6 16.6-38.8 17v6.4c0 2.8-3.6 5.4-7 5.4-4 0-6.8-2.6-6.8-5.4v-6.8c-22.4-2.4-44.8-14.2-44.8-44 0-30.2 23.6-38.8 44.8-46.4v-55.4c-23.8 2-30.2 18.6-38 18.6zM561.8 754.2c11.6-5 20.8-11.6 20.8-26.4 0-13.6-8-21.2-20.8-23.4v49.8zM528.2 807.8c0 12.2 9.4 18.2 22.6 19.8v-43c-12.6 4.8-22.6 9.6-22.6 23.2zM554 608.8c88.8 0 160.8 72 160.8 160.8s-72 160.8-160.8 160.8-160.8-72-160.8-160.8c0-88.6 72-160.8 160.8-160.8zM554 901.6c72.8 0 132-59 132-132 0-72.8-59-132-132-132s-132 59-132 132c0.2 73 59.2 132 132 132z" />
302
+ <glyph unicode="&#xe96f;" glyph-name="envelope11" data-tags="envelope1" d="M984.2 582.6l-460.8 338c-8.4 6.2-18.8 6.2-25 0l-466-339.6c-7.6-5-10.4-12.2-10.4-18.8v-596c0-12.6 10.4-20.8 20.8-20.8h936.2c12.4 0 20.8 8.4 22.8 18.8v590.6c0.2 11.4-3.8 18.4-17.6 27.8zM103.2-13.2l337.4 261.4 58-42.6c7.2-6.8 16.6-6.4 25 0l56 41 335.2-259.8h-811.6zM63.6 526l343.4-253-343.4-266.2v519.2zM613 271.4l347.4 254.8v-524l-347.4 269.2zM511 878.8l429.4-315.6-429.4-315.8-428.6 316.4 428.6 315z" />
303
+ <glyph unicode="&#xe970;" glyph-name="folder" data-tags="folder" d="M981.163 580.267h-59.563v106.974c0 25.719-20.924 46.626-46.626 46.626h-422.451l-85.333 119.467h-320.563c-25.702 0-46.626-20.924-46.626-46.626v-745.591h0.102c-0.085-9.609 2.901-19.012 8.909-26.88 8.363-10.923 21.026-17.169 34.765-17.169h763.887c19.729 0 37.103 13.295 41.813 30.942l174.524 478.515v3.021c0 29.389-18.022 50.722-42.837 50.722zM34.133 806.707c0 6.895 5.615 12.493 12.493 12.493h302.985l85.333-119.467h440.013c6.895 0 12.493-5.598 12.493-12.493v-106.974h-670.174c-2.458 0-4.898-0.205-7.27-0.614-16.606-2.782-30.413-14.899-34.526-30.31l-141.346-385.485v642.85zM816.964 58.317c-1.126-4.181-4.966-7.117-9.301-7.117h-763.887c-4.147 0-6.571 2.372-7.646 3.789-1.075 1.399-2.731 4.369-2.099 6.963l173.926 477.065c1.126 4.181 4.966 7.117 9.301 7.117h763.904c6.485 0 8.141-9.318 8.567-13.978l-172.766-473.839z" />
304
+ <glyph unicode="&#xe971;" glyph-name="invest" data-tags="invest" d="M684 290.4c-24.2 0-44 17-44 38s19.8 38 44 38 44-17 44-38c0-11 9-20 20-20s20 9 20 20c0 36.6-27.4 67.4-64 75.8v10.4c0 11-9 20-20 20s-20-9-20-20v-10.4c-36.6-8.4-64-39.2-64-75.8 0-43 37.6-78 84-78 24.2 0 44-17 44-38s-19.8-38-44-38-44 17-44 38c0 11-9 20-20 20s-20-9-20-20c0-36.6 27.4-67.4 64-75.8v-8.6c0-11 9-20 20-20s20 9 20 20v8.6c36.6 8.4 64 39.2 64 75.8 0 43-37.8 78-84 78zM903 409.4c-26.2 40.8-63 73.2-106.4 94.2-10 4.8-22 0.6-26.6-9.4-4.8-10-0.6-22 9.4-26.6 75.6-36.4 124.6-114.4 124.6-198.4 0-36-8.8-71.6-25.6-103.2-5.2-9.8-1.4-21.8 8.2-27 3-1.6 6.2-2.4 9.4-2.4 7.2 0 14 3.8 17.6 10.6 19.8 37.2 30.4 79.4 30.4 122 0 50-14.2 98.4-41 140.2zM715.4 529.2h-1.4c-11 0-20-9-20-20s9-20 20-20h1.2c0 0 0 0 0 0 11 0 20 8.8 20 20 0.2 11-8.8 20-19.8 20zM588.8 70.8c-75.8 36.4-124.8 114.4-124.8 198.4 0 36 8.8 71.6 25.6 103.2 5.2 9.8 1.4 21.8-8.2 27-9.8 5.2-21.8 1.4-27-8.2-19.8-37.2-30.4-79.4-30.4-122 0-50 14.2-98.4 41-140.2 26.2-40.8 63-73.2 106.4-94.2 2.8-1.4 5.8-2 8.6-2 7.4 0 14.6 4.2 18 11.4 5 9.8 0.8 21.8-9.2 26.6zM654 49.2h-1.2c-11 0-20-8.8-20-20 0-11 8.8-20 20-20h1.4c11 0 20 9 20 20-0.2 11-9.2 20-20.2 20zM774.8 596.8c-2.4 5.8-5.4 11.2-8.8 16.4h52c50.8 0 92 41.2 92 92s-41.2 92-92 92h-160.2c10.2 14.8 16.2 32.8 16.2 52 0 50.8-41.2 92-92 92h-490c-50.8 0-92-41.2-92-92s41.2-92 92-92h160.2c-10.2-14.8-16.2-32.8-16.2-52s6-37.2 16.2-52h-52.2c-50.8 0-92-41.2-92-92 0-29.2 13.6-55.2 34.8-72-21.2-16.8-34.8-42.8-34.8-72s13.6-55.2 34.8-72c-21.2-16.8-34.8-42.8-34.8-72s13.6-55.2 34.8-72c-21.2-16.8-34.8-42.8-34.8-72 0-50.8 41.2-92 92-92h235.8c62-66.4 150.4-108 248.4-108 187.4 0 340 152.6 340 340-0.2 156-105.8 287.8-249.4 327.6zM818 757.2c28.6 0 52-23.4 52-52s-23.4-52-52-52h-490c-28.6 0-52 23.4-52 52s23.4 52 52 52h490zM92 797.2c-28.6 0-52 23.4-52 52s23.4 52 52 52h490c28.6 0 52-23.4 52-52s-23.4-52-52-52h-490zM200 613.2h490c8 0 15.8-1.8 22.6-5.2-9.4 0.8-19 1.2-28.6 1.2-93.8 0-179-38.2-240.6-100h-243.4c-28.6 0-52 23.4-52 52s23.4 52 52 52zM200 469.2h209.2c-22.8-31.2-40.2-66.2-51.4-104h-157.8c-28.6 0-52 23.4-52 52s23.4 52 52 52zM200 325.2h148.6c-3-18.2-4.6-37-4.6-56 0-16.2 1.2-32.4 3.4-48h-147.4c-28.6 0-52 23.4-52 52s23.4 52 52 52zM200 77.2c-28.6 0-52 23.4-52 52s23.4 52 52 52h155.6c10-37.6 26.4-72.6 48-104h-203.6zM684-30.8c-165.4 0-300 134.6-300 300s134.6 300 300 300 300-134.6 300-300-134.6-300-300-300z" />
305
+ <glyph unicode="&#xe972;" glyph-name="loan" data-tags="loan" d="M952 544h-150.6l206 206c10.6 10.6 16.4 24.6 16.4 39.6s-5.8 29-16.4 39.6l-21.6 21.6c-21.8 21.8-57.2 21.8-79 0l-306.2-306.8h-534.8c-36.2 0-65.8-29.4-65.8-65.8v-409c0-36.2 29.4-65.8 65.8-65.8h886.2c36.2 0 65.8 29.4 65.8 65.8v409c0 36.2-29.4 65.8-65.8 65.8zM936 821.6c5.8 5.8 15.4 5.8 21.4 0l21.6-21.6c2.8-2.8 4.4-6.6 4.4-10.6s-1.6-7.8-4.4-10.6l-52.2-52.2-37 36.6-6.2 6.2 52.4 52.2zM854.8 740.6l42.8-42.8-407.8-408-64.2-21.4 21.4 64.2 407.8 408zM977 69.2c0-13.8-11.2-25-25-25h-886.2c-13.8 0-25 11.2-25 25v409c0 13.8 11.2 25 25 25h494l-145-145c-2.2-2.2-4-5-5-8l-35.8-107.6c-2.4-7.4-0.6-15.4 5-20.8 3.8-3.8 9.2-6 14.4-6 2.2 0 4.4 0.4 6.4 1l107.4 35.8c3 1 5.8 2.6 8 5l245.6 245.6h191.2c13.8 0 25-11.2 25-25v-409zM902.2 131h-12.2c-11.2 0-20.4-9.2-20.4-20.4s9.2-20.4 20.4-20.4h12.2c11.2 0 20.4 9.2 20.4 20.4s-9.2 20.4-20.4 20.4zM809 131h-464.2c-11.2 0-20.4-9.2-20.4-20.4s9.2-20.4 20.4-20.4h464.2c11.2 0 20.4 9.2 20.4 20.4s-9.2 20.4-20.4 20.4zM902.2 248.6h-304.2c-11.2 0-20.4-9.2-20.4-20.4s9.2-20.4 20.4-20.4h304c11.2 0 20.4 9.2 20.4 20.4s-9 20.4-20.2 20.4zM215.2 314.8v75.6c26-1.8 35.8-13.8 44.8-13.8 11.2 0 16.4 14.2 16.4 21.2 0 18.2-35.8 26-61.2 26.8v10c0 4.4-5.6 8.6-11.2 8.6-6.4 0-10.8-4-10.8-8.6v-10.8c-35.4-3.8-70.8-22.4-70.8-69.2 0-47.6 37.2-61.2 70.8-73v-87.6c-38 3-48 29-60.4 29-9.4 0-17.2-12.2-17.2-21.2 0-18.2 31.2-43.2 77.4-44v-11.6c0-4.4 4.4-8.6 10.8-8.6 5.6 0 11.2 4 11.2 8.6v12.6c40.2 5.6 67.8 31 67.8 76.8 0.2 50.8-35.2 67.2-67.6 79.2zM195.4 321.8c-19.8 7.4-35.8 15.2-35.8 36.6 0 19.4 15 28.6 35.8 31.2v-67.8zM213 194.8v78.6c18.2-7.8 32.8-18.2 32.8-41.8 0-21.2-12.8-33-32.8-36.8z" />
306
+ <glyph unicode="&#xe973;" glyph-name="map-marker1" data-tags="map-marker1" d="M511.6 743.2c-118.2 0-214.2-96.2-214.2-214.2s96-214.4 214.2-214.4 214.2 96.2 214.2 214.2-96 214.4-214.2 214.4zM511.6 366c-89.8 0-162.8 73.2-162.8 162.8s73.2 162.8 162.8 162.8 162.8-73.2 162.8-162.8-72.8-162.8-162.8-162.8zM511.6 947.2c-4.8 0-9.8 0-14.6-0.2-206.6-7.2-377.2-167.6-397-373.2-3.8-39.8-1.8-79.8 5.4-118 0 0 0.6-4.8 3-13.8 6.2-28.2 15.8-55.8 27.6-81.2 42.6-100.8 135.8-256 338.2-424 10.6-8.8 24-13.6 38-13.6 13.8 0 27.2 4.8 38 13.6 202.2 167.8 295.4 323.2 337.8 423.2 12.2 26.2 21.6 53.8 27.8 82 1.2 5 2 9.2 2.8 13.2 5 25.8 7.6 52.2 7.6 78.6-0.8 227.8-186.4 413.4-414.6 413.4zM867.4 464c0-0.4-0.6-4-2-10.4-5.6-24.8-13.8-48.8-24.8-72.6-40.4-95.6-129.2-243.2-323.4-404.4-1.8-1.4-3.8-1.8-5.2-1.8-1.2 0-3.4 0.4-5.2 1.8-194.4 161.2-283.4 308.8-324 405-10.6 23-18.8 47.2-24.6 72-1.2 5.4-1.8 8.8-2 9.8 0 0.4-0.2 0.8-0.2 1.2-6.4 34.2-8.2 69.4-4.8 104.2 17.4 180 166.8 320.6 347.8 326.8 205.6 7.2 375.2-158 375.2-362.2 0-23-2.4-46-6.8-69.4z" />
307
+ <glyph unicode="&#xe974;" glyph-name="mutual-fund" data-tags="mutual-fund" d="M534.187 475.477v13.312c41.301 10.923 72.021 48.811 72.021 93.867s-30.72 82.944-72.021 93.867v89.088c18.432-7.851 34.816-21.504 41.301-27.989 9.899-10.24 25.941-10.24 36.181-0.683 10.24 9.899 10.581 25.941 0.683 36.181-4.096 4.096-36.181 36.181-78.165 46.421v13.312c0 13.995-11.605 25.6-25.6 25.6s-25.6-11.605-25.6-25.6v-13.995c-40.619-11.605-70.315-49.152-70.315-93.184 0-44.373 29.696-81.579 70.315-93.184v-87.040c-17.749 9.899-34.133 25.941-40.277 33.109-9.216 10.923-25.259 11.947-36.181 3.072-10.923-9.216-11.947-25.259-3.072-36.181 4.437-5.12 37.547-42.667 79.189-55.296v-14.336c0-13.995 11.605-25.6 25.6-25.6 14.677-0.341 25.941 10.923 25.941 25.259zM555.008 582.315c0-16.043-8.192-30.379-20.821-38.571v76.8c12.629-7.851 20.821-21.845 20.821-38.229zM463.872 725.333c0 15.36 7.509 29.013 19.115 37.205v-74.411c-11.605 8.192-19.115 21.845-19.115 37.205zM482.987 88.405v-139.605c0-13.995 11.605-25.6 25.6-25.6s25.6 11.605 25.6 25.6v29.355h167.936c74.752 0 135.851 60.757 135.851 135.851v110.251c0 13.995-11.605 25.6-25.6 25.6h-110.251c-74.752 0-135.851-60.757-135.851-135.851v-84.651h-32.085v335.531c148.48 12.971 265.216 138.24 265.216 290.475 0.341 161.109-130.389 291.84-290.816 291.84s-291.157-130.731-291.157-291.499c0-152.235 116.736-277.504 265.557-290.475v-225.28h-25.6v84.651c0 74.752-60.757 135.851-135.851 135.851h-110.251c-6.827 0-13.312-2.731-18.091-7.509s-7.509-11.264-7.509-18.091v-110.251c0-74.752 60.757-135.851 135.851-135.851l161.451-0.341zM321.536 139.605c-46.763 0-84.651 37.888-84.651 84.651v84.651h84.651c46.763 0 84.651-37.888 84.651-84.651v-84.651h-84.651zM268.971 655.36c0 132.437 107.52 240.299 239.957 240.299 132.096 0 239.616-107.861 239.616-240.299s-107.52-240.299-239.616-240.299c-132.437 0-239.957 107.861-239.957 240.299zM786.773 114.005c0-46.763-37.888-84.651-84.651-84.651v0h-84.651v84.651c0 46.763 37.888 84.651 84.651 84.651h84.651v-84.651z" />
308
+ <glyph unicode="&#xe975;" glyph-name="google-plus" data-tags="google-plus" d="M539.282 362.591l-48.017 37.308c-14.618 12.118-34.639 28.135-34.639 57.434 0 29.427 20.010 48.134 37.361 65.464 55.92 44.034 111.829 90.897 111.829 189.644 0 101.543-63.885 154.963-94.52 180.311h82.571l86.66 54.447h-262.544c-72.042 0-175.873-17.033-251.887-79.796-57.286-49.426-85.23-117.57-85.23-178.934 0-104.138 79.955-209.717 221.179-209.717 13.336 0 27.923 1.314 42.604 2.669-6.599-16.048-13.262-29.416-13.262-52.085 0-41.365 21.249-66.724 39.977-90.749-59.987-4.131-171.996-10.784-254.578-61.534-78.641-46.767-102.581-114.826-102.581-162.886 0-98.874 93.217-190.968 286.484-190.968 229.187 0 350.507 126.807 350.507 252.353 0.021 92.232-53.261 137.622-111.913 187.038zM364.722 516.166c-114.657 0-166.594 148.215-166.594 237.64 0 34.829 6.599 70.781 29.268 98.863 21.387 26.736 58.61 44.087 93.365 44.087 110.526 0 167.854-149.55 167.854-245.722 0-24.056-2.659-66.693-33.304-97.528-21.429-21.408-57.297-37.34-90.59-37.34zM366.036-20.849c-142.58 0-234.515 68.197-234.515 163.045 0 94.795 85.251 126.881 114.572 137.485 55.941 18.823 127.919 21.44 139.932 21.44 13.326 0 19.989 0 30.603-1.335 101.352-72.137 145.344-108.079 145.344-176.371 0.011-82.677-67.974-144.264-195.936-144.264zM875.806 518.2v133.523h-65.93v-133.523h-133.322v-66.671h133.322v-134.36h65.93v134.36h133.989v66.671z" />
309
+ <glyph unicode="&#xe976;" glyph-name="phone1" data-tags="phone1" d="M809.2 312.8c-21 21.8-46.2 33.4-73 33.4-26.6 0-52-11.4-74-33.2l-68.2-68c-5.6 3-11.2 5.8-16.6 8.6-7.8 3.8-15.2 7.6-21.4 11.4-64 40.6-122.2 93.6-177.8 162-27 34.2-45.2 62.8-58.4 92 17.8 16.2 34.2 33 50.2 49.2 6 6 12.2 12.4 18.2 18.4 45.4 45.4 45.4 104.2 0 149.6l-59 59c-6.6 6.6-13.6 13.6-20 20.6-13 13.4-26.6 27.2-40.6 40.2-21 20.8-46 31.8-72.4 31.8s-51.8-11-73.4-31.8c-0.2-0.2-0.2-0.2-0.4-0.4l-73.4-74.2c-27.6-27.6-43.4-61.4-46.8-100.4-5.2-63.2 13.4-121.8 27.6-160.4 35-94.4 87.4-182 165.4-275.8 94.6-113 208.6-202.2 338.6-265.2 49.8-23.6 116-51.4 190.2-56.2 4.6-0.2 9.2-0.4 13.6-0.4 50 0 91.8 18 124.8 53.6 0.2 0.4 0.6 0.6 0.8 1 11.2 13.6 24.2 26 37.8 39.2 9.2 8.8 18.8 18.2 28 27.8 21.4 22.2 32.6 48.2 32.6 74.8 0 26.8-11.4 52.6-33.2 74.2l-119.2 119.2zM886.6 85.2c-0.2 0-0.2-0.2 0 0-8.4-9-17-17.2-26.4-26.4-14-13.4-28.4-27.4-41.8-43.2-21.8-23.4-47.6-34.4-81.2-34.4-3.2 0-6.6 0-10 0.2-64.2 4.2-123.8 29.2-168.6 50.6-122.4 59.2-229.8 143.2-319 249.8-73.4 89-122.8 171.2-155.4 259.2-20 53.8-27.4 95.8-24.2 135.2 2.2 25.2 11.8 46.2 29.8 64.2l73.6 73.6c10.6 10 21.8 15.4 32.8 15.4 13.6 0 24.6-8.2 31.6-15.2 0.2-0.2 0.4-0.4 0.6-0.6 13.2-12.4 25.8-25 39-38.6 6.6-7 13.6-13.8 20.6-21l59-59c23-23 23-44 0-67-6.2-6.2-12.4-12.6-18.6-18.6-18.2-18.6-35.4-35.8-54.2-52.8-0.4-0.4-0.8-0.6-1-1-18.6-18.6-15.2-36.8-11.2-49 0.2-0.6 0.4-1.2 0.6-2 15.4-37.2 37-72.2 69.8-113.8l0.2-0.2c59.6-73.4 122.6-130.8 192-174.6 8.8-5.6 18-10.2 26.6-14.4 7.8-3.8 15.2-7.6 21.4-11.4 0.8-0.4 1.8-1 2.6-1.6 7.4-3.6 14.2-5.4 21.4-5.4 18 0 29.2 11.2 32.8 15l74 74c7.4 7.4 19 16.2 32.6 16.2 13.4 0 24.4-8.4 31.2-15.8 0.2-0.2 0.2-0.2 0.4-0.4l119-119c22-22.4 22-45 0-68zM553.4 703.6c56.6-9.6 108-36.4 149.2-77.4s67.6-92.6 77.4-149.2c2.4-14.2 14.6-24.2 28.8-24.2 1.8 0 3.2 0.2 5 0.4 16 2.6 26.6 17.8 24 33.8-11.6 68.6-44 131-93.6 180.4-49.4 49.4-112 82-180.4 93.6-16 2.6-31-8-33.8-23.8-3-15.6 7.4-31 23.4-33.6zM1022.8 495.4c-19.2 112.8-72.4 215.4-154 297.2s-184.4 134.8-297.2 154c-15.8 2.8-30.6-8-33.4-23.8-2.6-16 8-31 24-33.8 100.8-17 192.6-64.8 265.6-137.6 73-73 120.6-165 137.6-265.6 2.4-14.2 14.6-24.2 28.8-24.2 1.8 0 3.2 0.2 5 0.4 15.6 2.6 26.4 17.8 23.6 33.4z" />
310
+ <glyph unicode="&#xe977;" glyph-name="pie-chart1" data-tags="pie-chart1" d="M952.6 741.6c-84.2 128.8-226 205.6-379.4 205.6-11.2 0-20.4-9.2-20.4-20.4v-432.4c0-7.4 4-14.4 10.6-18 3-1.6 6.4-2.4 9.8-2.4 3.8 0 7.8 1.2 11.2 3.4l362.2 236.2c4.6 3 7.8 7.6 8.8 12.8 1.2 5.2 0 10.8-2.8 15.2zM593.6 532v374c125-6.2 239.6-68.2 313.2-169.8l-313.2-204.2zM891.4 623.2c-6.2 9.4-18.8 12-28.2 6l-330.8-215.6v394.8c0 11.2-9.2 20.4-20.4 20.4-103.4 0-204.4-35.8-284.6-100.6-106.8-86.6-168.2-215-168.2-352.2 0-121 47-234.6 132.6-320.2s199.2-132.6 320.2-132.6 234.6 47 320.2 132.6c85.6 85.6 132.6 199.2 132.6 320.2 0 88.2-25.4 173.6-73.4 247.2zM491.6 787.4v-353.8l-222.4 275.2c64.6 47.2 142.4 74.6 222.4 78.6zM512-36c-227.2 0-412 184.8-412 412 0 118.2 49.8 229 137.4 307.2l258.6-320c6.6-8.2 18.2-10 27-4.2l345 224.6c36.8-62.8 56-134.2 56-207.6 0-227.2-184.8-412-412-412zM805.4 489.8c-6.2 9.4-18.8 12.2-28.2 6l-132.8-86.6c-9.4-6.2-12.2-18.8-6-28.2 4-6 10.4-9.2 17.2-9.2 3.8 0 7.6 1 11.2 3.4l132.8 86.4c9.2 6 12 18.8 5.8 28.2zM868.2 530.6c-6.2 9.4-18.8 12.2-28.2 6l-7.2-4.6c-9.4-6.2-12.2-18.8-6-28.2 4-6 10.4-9.2 17.2-9.2 3.8 0 7.6 1 11.2 3.4l7.2 4.6c9.2 6 12 18.6 5.8 28z" />
311
+ <glyph unicode="&#xe978;" glyph-name="play" data-tags="play" d="M967.4 669.6c-35.8 69.6-88.2 131-151.2 177.6-9.2 6.8-22.4 4.8-29.2-4.4s-4.8-22.4 4.4-29.2c58-42.8 106-99.2 139-163.2 34.6-67 52-139.4 52-215.2 0-259.4-211-470.4-470.4-470.4s-470.4 211-470.4 470.4 211 470.4 470.4 470.4c11.6 0 20.8 9.4 20.8 20.8s-9.2 20.8-20.8 20.8c-282.4 0-512-229.6-512-512s229.6-512 512-512 512 229.6 512 512c0 81.4-19.6 162.4-56.6 234.4zM381 673c-6.6-3.8-10.6-10.6-10.6-18.2v-457.4c0-11.6 9.4-20.8 20.8-20.8s20.8 9.4 20.8 20.8v420.8l308.6-183.6-226.8-146.2c-9.6-6.2-12.4-19.2-6.2-28.8s19.2-12.4 28.8-6.2l255.2 164.4c6 4 9.6 10.6 9.6 17.8-0.2 7.2-4 13.8-10.2 17.6l-369 219.6c-6.6 3.8-14.4 3.8-21 0.2z" />
312
+ <glyph unicode="&#xe979;" glyph-name="savings" data-tags="savings" d="M992 384c-36.8 31-91.4 27.6-123.8-7.4l-88.2-94.8c-10.6 34.2-41.2 59.8-78.2 63 15.6 11 30.4 23.2 44.4 37 63 62.6 97.8 145.4 97.8 233.4 0 181.8-149.4 332-332 332-182 0-330-149.8-330-332 0-82.4 30.4-160.4 84.8-220.6-14.6-7.4-28.4-16.6-41.2-27.6-16.4 23-43.2 38.2-73.6 38.2h-122c-16.6 0-30-13.4-30-30v-422c0-16.6 13.4-30 30-30h122c39.2 0 72.8 25.2 85 60.4 1.6-0.2 3.2-0.4 5-0.4h452c65.8 0 128.6 31.4 168 84.2l144 194c28.6 38 22.6 91.8-14 122.6zM182 13.2c0-16.6-13.4-30-30-30h-92v362h92c16.6 0 30-13.4 30-30v-302zM242 615.2c0 150 121.2 272 270 272 150 0 272-122 272-272 0-143.2-113-260.8-255-269.4-5.2 1-10.2 3.4-14.2 7l-14 12.4c-47.8 42-110.2 58.6-169.6 49.8-56.8 51.2-89.2 123.4-89.2 200.2zM958 297.2l-144-194c-28.2-37.6-73-60-120-60h-452v258.4l21 18.4c56.4 49.8 141.6 49.8 198.2 0 10.2-9 37.8-34.8 51-34.8 25.4 0 166.2 0 182 0 16.6 0 30-13.4 30-30s-13.4-30-30-30c-21.4 0-193.6 0-215.2 0-16.6 0-30-13.4-30-30s13.4-30 30-30c16 0 10 0 235.4 0 24.8 0 48.8 10.4 65.8 28.6l132 141.8c10.8 11.6 28 12.6 40 3.6 12.8-9.8 15.8-28.6 5.8-42zM512 645.2c-16.6 0-30 13.4-30 30 0 12.6 8 24 19.8 28.2 15.4 5.6 33.4-2 49.2-20.8 10.6-12.6 29.6-14.4 42.2-3.6s14.4 29.6 3.6 42.2c-16.2 19.4-35 32.6-54.8 39.2v34.8c0 16.6-13.4 30-30 30s-30-13.4-30-30v-35.2c-0.2 0-0.6-0.2-0.8-0.2-35.4-12.8-59.2-46.8-59.2-84.6 0-49.6 40.4-90 90-90 16.6 0 30-13.4 30-30 0-12-7.2-23-18.4-27.6-13.4-5.6-29.6-0.8-44.2 13.4-11.8 11.6-30.8 11.2-42.4-0.6-11.6-12-11.2-30.8 0.6-42.4 13.6-13.2 28.6-22.4 44.2-27.6v-35.2c0-16.6 13.4-30 30-30s30 13.4 30 30v35.2c1.8 0.6 3.4 1.2 5 2 33.4 14.2 55 46.6 55 82.8 0.2 49.6-40.2 90-89.8 90z" />
313
+ <glyph unicode="&#xe97a;" glyph-name="search2" data-tags="search" d="M409.6 179.597c87.318 0 166.698 30.958 228.614 83.349l277.829-277.829c6.35-6.35 14.288-9.526 23.020-9.526s16.67 3.175 23.020 9.526c12.701 12.701 12.701 33.34 0 46.040l-277.829 277.829c51.597 61.916 83.349 142.090 83.349 228.614 0 197.656-160.347 358.003-358.003 358.003-196.862 0-358.003-161.141-358.003-358.003 0-197.656 161.141-358.003 358.003-358.003zM409.6 830.512c161.935 0 292.912-131.771 292.912-292.912 0-161.935-130.977-292.912-292.912-292.912s-292.912 131.771-292.912 292.912c0 161.141 131.771 292.912 292.912 292.912z" />
314
+ <glyph unicode="&#xe97b;" glyph-name="tag1" data-tags="tag1" d="M243 818.8c-63.4 0-114.6-51.4-114.6-114.6 0-63.4 51.4-114.6 114.6-114.6 63.4 0 114.6 51.4 114.6 114.6 0.2 63.4-51.2 114.6-114.6 114.6zM243 630.2c-40.8 0-74 33.2-74 74s33.2 74 74 74c40.8 0 74-33.2 74-74s-33-74-74-74zM489 887.6c-20.8 23-50 35.4-81.4 35.4l-214.6 2.2c-45.8 0-89.6-16.6-121-50-33.4-31.4-50-75.2-50-121l2-214.8c2-29.2 12.6-58.4 35.4-81.4l513-512.8 429.6 429.6-513 512.8zM570.4 3.6l-483.8 483.8c-14.6 14.6-23 33.4-23 54.2l-2 212.6c0 33.4 14.6 66.8 37.6 91.8 25 25 58.4 39.6 93.8 39.6l212.6-2c20.8 0 39.6-8.4 54.2-23l483.8-483.8-373.2-373.2z" />
315
+ <glyph unicode="&#xe97c;" glyph-name="tags" data-tags="tags" d="M922.2 805.4v39.8c0 56.2-45.8 102-102 102h-283.4c-27.2 0-52.8-10.6-72-29.8l-401-401c-19.2-19.2-29.8-44.8-29.8-72s10.6-52.8 29.8-72l40.8-40.8c-1.8-7.4-2.6-15.2-2.6-23 0-27.2 10.6-52.8 29.8-72l283.4-283.4c19.8-19.8 46-29.8 72-29.8s52.2 10 72 29.8l400.8 400.8c19.2 19.2 29.8 44.8 29.8 72v283.4c0.2 44.2-28.2 82-67.6 96zM111.8 420.4c-6.4 6.4-10 15-10 24s3.6 17.6 10 24l400.8 400.8c6.4 6.4 15 10 24 10h283.4c18.8 0 34-15.2 34-34v-34h-249.4c-27.2 0-52.8-10.6-72-29.8l-391-390.8-29.8 29.8zM912.2 402l-401-401c-13.2-13.2-34.8-13.2-48 0l-283.4 283.4c-6.4 6.4-10 15-10 24s3.6 17.6 10 24l400.8 400.8c6.4 6.4 15 10 24 10h283.4c18.8 0 34-15.2 34-34v-283.4c0.2-9-3.4-17.4-9.8-23.8zM752.2 675.4c-56.2 0-102-45.8-102-102s45.8-102 102-102 102 45.8 102 102-45.8 102-102 102zM752.2 539.6c-18.8 0-34 15.2-34 34s15.2 34 34 34 34-15.2 34-34c0-18.8-15.2-34-34-34z" />
316
+ <glyph unicode="&#xe97d;" glyph-name="instagram1" data-tags="instagram" d="M762.519-76.8h-501.038c-144.176 0-261.481 117.338-261.481 261.514v501.038c0 144.176 117.306 261.448 261.481 261.448h501.038c144.176 0 261.481-117.273 261.481-261.448v-501.038c0-144.176-117.306-261.514-261.481-261.514zM261.481 888.712c-111.931 0-202.96-91.029-202.96-202.927v-501.038c0-111.931 91.062-202.96 202.96-202.96h501.038c111.931 0 202.927 91.062 202.927 202.96v501.005c0 111.931-91.029 202.927-202.927 202.927h-501.038zM994.723 562.973h-360.653c-16.155 0-29.277 13.122-29.277 29.277s13.089 29.277 29.277 29.277h360.62c16.155 0 29.277-13.089 29.277-29.277 0.033-16.155-13.089-29.277-29.244-29.277zM382.347 562.973h-353.103c-16.155 0-29.244 13.122-29.244 29.244 0 16.155 13.089 29.277 29.244 29.277h353.103c16.155 0 29.277-13.089 29.277-29.277-0.033-16.122-13.122-29.244-29.277-29.244zM511.984 207.035c-125.812 0-228.215 102.337-228.215 228.182s102.37 228.215 228.215 228.215c125.812 0 228.182-102.337 228.182-228.215 0-125.845-102.337-228.182-228.182-228.182zM511.984 604.911c-93.567 0-169.727-76.16-169.727-169.727s76.16-169.661 169.727-169.661c93.567 0 169.661 76.094 169.661 169.661s-76.094 169.727-169.661 169.727zM842.602 638.572h-131.647c-16.155 0-29.277 13.089-29.277 29.244v131.68c0 16.155 13.122 29.244 29.277 29.244h131.647c16.155 0 29.244-13.089 29.244-29.244v-131.68c-0.033-16.188-13.089-29.244-29.244-29.244zM740.165 697.093h73.159v73.126h-73.159v-73.126z" />
317
+ <glyph unicode="&#xe97e;" glyph-name="quote" data-tags="quote" d="M489.625 616.819c0 133.846-108.85 242.696-242.696 242.696s-242.898-109.052-242.898-242.898 108.85-242.898 242.898-242.898c16.126 0 32.454 1.613 48.58 5.039-28.019-126.992-88.29-232.214-121.953-290.469-8.869-15.32-15.723-27.616-20.359-36.888-4.031-8.466-12.699-26.205 0.403-37.896 4.233-3.83 9.071-5.443 13.909-5.443 10.482 0 21.972 7.458 31.647 13.506 13.102 8.265 31.647 21.569 63.899 45.354l1.411 1.209c56.441 50.595 103.408 109.858 139.288 175.975 29.027 53.417 51.402 111.672 66.117 173.153 23.786 98.973 21.165 177.587 19.754 199.559v0zM434.192 425.928c-31.446-131.628-96.554-242.494-193.31-329.373-8.265-6.047-21.165-15.32-33.663-24.391 37.291 65.109 105.424 184.441 130.822 329.373l5.443 31.043-29.833-10.28c-21.77-7.66-44.145-11.288-66.52-11.288-113.285 0-205.606 92.12-205.606 205.606s91.918 205.808 205.405 205.808c113.285 0 205.606-91.918 205.606-205.405v-1.411c0-0.202 0-0.806 0-1.411 1.613-20.561 4.031-94.539-18.343-188.271zM1022.992 616.416v0c0 134.047-108.85 242.898-242.696 242.898s-242.696-108.85-242.696-242.696 108.85-242.696 242.696-242.696c16.126 0 32.454 1.613 48.58 5.039-28.019-126.992-88.29-232.214-121.953-290.469-8.869-15.32-15.723-27.616-20.359-36.888-4.031-8.466-12.699-26.205 0.403-37.896 4.233-3.83 9.071-5.443 13.909-5.443 10.482 0 21.972 7.458 31.849 13.304 13.102 8.265 31.647 21.569 63.899 45.354l1.411 1.209c56.441 50.595 103.408 109.858 139.288 175.975 29.027 53.417 51.402 111.672 66.117 173.153 23.786 98.772 21.165 177.386 19.553 199.156zM967.357 425.928c-31.446-131.83-96.554-242.494-193.31-329.575-8.265-6.047-21.165-15.32-33.663-24.391 37.291 65.109 105.424 184.441 130.822 329.373l5.443 31.043-29.631-10.079c-21.77-7.66-44.145-11.288-66.52-11.288-113.285 0-205.606 92.12-205.606 205.606 0 113.285 92.12 205.606 205.606 205.606 113.285 0 205.606-91.918 205.606-205.405v-1.411c0-0.202 0-0.806 0-1.411 1.209-20.359 3.83-94.337-18.746-188.069z" />
318
+ <glyph unicode="&#xe97f;" glyph-name="arrow-point-to-down" data-tags="arrow-point-to-down" d="M0 691.193h1023.997l-512.006-511.986-511.991 511.986z" />
319
+ <glyph unicode="&#xe980;" glyph-name="play-button" data-tags="play-button" d="M879.393 455.278l-707.064 487.631c-7.485 5.145-17.189 5.681-25.186 1.512-8.022-4.218-13.044-12.508-13.044-21.578v-975.261c0-9.070 5.023-17.384 13.044-21.602 3.56-1.853 7.461-2.779 11.337-2.779 4.852 0 9.679 1.463 13.849 4.316l707.064 487.631c6.607 4.559 10.533 12.044 10.533 20.066s-3.95 15.507-10.533 20.066z" />
320
+ <glyph unicode="&#xe981;" glyph-name="minus" data-tags="minus" d="M0 468.958h1024v-67.516h-1024v67.516z" />
321
+ <glyph unicode="&#xe982;" glyph-name="plus" data-tags="plus" d="M1024 468.958h-478.242v478.242h-67.516v-478.242h-478.242v-67.516h478.242v-478.242h67.516v478.242h478.242z" />
322
+ <glyph unicode="&#xe983;" glyph-name="tick" data-tags="tick" d="M1009.004 796.208c-19.994 19.996-52.41 19.996-72.408 0l-613.408-613.414-235.784 235.784c-19.994 19.996-52.41 19.994-72.408 0-19.996-19.994-19.996-52.41 0-72.406l271.988-271.984c19.988-19.994 52.428-19.98 72.408 0l649.612 649.612c19.996 19.994 19.994 52.412 0 72.408z" />
323
+ <glyph unicode="&#xe984;" glyph-name="edit" data-tags="edit" d="M975.219 898.437c-65.054 65.017-170.864 65.017-235.918 0l-668.371-668.371c-0.315-0.315-0.5-0.704-0.778-1.038-0.389-0.445-0.723-0.927-1.075-1.409-0.982-1.372-1.742-2.836-2.317-4.43-0.167-0.482-0.408-0.908-0.537-1.39-0.056-0.185-0.167-0.371-0.222-0.556l-65.517-275.229c-0.297-1.242-0.371-2.502-0.408-3.744 0-0.241-0.074-0.463-0.074-0.704 0.019-2.113 0.482-4.17 1.205-6.153 0.167-0.463 0.352-0.871 0.556-1.316 0.908-1.983 2.039-3.892 3.633-5.486 1.761-1.761 3.837-3.114 6.079-4.040s4.633-1.39 7.024-1.39c1.427 0 2.873 0.167 4.281 0.5l275.229 65.517c0.5 0.111 0.945 0.389 1.427 0.556 0.63 0.204 1.223 0.445 1.835 0.723 1.334 0.612 2.576 1.372 3.725 2.28 0.445 0.352 0.908 0.612 1.334 1.001 0.148 0.148 0.334 0.222 0.482 0.371l668.389 668.389c65.054 65.054 65.054 170.883 0.019 235.918zM949.012 872.23c46.112-46.131 50.042-118.562 12.047-169.345l-181.392 181.392c50.802 37.995 123.232 34.065 169.345-12.047zM857.269 597.001l-183.486 183.486 26.207 26.207 183.486-183.486-26.207-26.207zM91.947 15.165c-7.247 7.247-18.96 7.247-26.207 0l-14.030-14.030 47.336 198.832 81.957 9.1-10.546-94.931c-0.074-0.704 0.185-1.353 0.185-2.039 0-0.704-0.259-1.334-0.185-2.039 0.074-0.612 0.389-1.112 0.519-1.705 0.222-1.075 0.537-2.057 0.927-3.058 0.482-1.205 1.056-2.298 1.761-3.355 0.575-0.853 1.149-1.612 1.853-2.354 0.89-0.945 1.853-1.742 2.91-2.484 0.834-0.575 1.631-1.112 2.558-1.557 1.223-0.575 2.502-0.908 3.837-1.223 0.704-0.167 1.279-0.556 2.002-0.649 0.667-0.074 1.334-0.111 2.020-0.111 0 0 0.019 0 0.019 0s0.019 0 0.019 0h0.019c0 0 0.019 0 0.019 0 0.667 0 1.353 0.037 2.020 0.111l94.931 10.546-9.1-81.957-198.851-47.336 14.030 14.030c7.228 7.228 7.228 18.96 0 26.207zM324.548 116.713l414.752 414.771c7.247 7.247 7.247 18.96 0 26.207s-18.96 7.247-26.207 0l-414.752-414.771-88.462-9.823 9.823 88.462 414.79 414.752c7.247 7.247 7.247 18.96 0 26.207s-18.96 7.247-26.207 0l-414.79-414.752-58.994-6.561 513.075 513.075 183.486-183.486-513.075-513.075 6.561 58.994zM909.683 649.415l-183.486 183.486 26.226 26.226 183.486-183.486-26.226-26.226z" />
324
+ <glyph unicode="&#xe985;" glyph-name="reply" data-tags="reply" d="M889.592 476.187c-117.981 112.646-276.71 128.007-334.953 129.501v149.342c0 11.735-9.601 21.335-21.335 21.335-4.906 0-9.815-1.706-13.655-4.906l-362.685-298.685c-9.175-7.466-10.455-20.907-2.986-30.082 0.854-1.066 1.92-1.92 2.986-2.986l362.687-298.683c9.175-7.466 22.615-6.186 30.082 2.986 3.2 3.84 4.906 8.534 4.906 13.655v154.889c59.523 16.215 287.802 57.389 429.25-207.586 3.626-7.040 10.881-11.307 18.775-11.307 6.826 0 13.441 3.2 17.707 9.387 2.56 3.626 3.626 8.106 3.626 12.587-0.21 154.249-45.441 275.428-134.406 360.552zM648.299 366.101c-71.044 0-120.967-17.067-122.247-17.707-8.534-2.986-14.081-11.095-14.081-20.055v-125.447l-307.857 253.454 307.857 253.454v-125.447c0-5.76 2.346-11.307 6.614-15.361 4.266-4.054 9.815-6.186 15.787-5.974 1.92 0 195.637 7.040 326.204-117.981 64.218-61.443 103.046-144.648 116.061-248.334-103.258 139.104-234.253 169.398-328.339 169.398zM398.685 173.024c-0.426 0.214-0.64 0.64-1.066 0.854l-342.845 282.468 342.845 282.256c9.387 7.254 11.095 20.695 3.84 29.868-7.254 9.175-20.695 11.095-29.868 3.84-0.426-0.214-0.64-0.64-1.066-0.854l-362.689-298.681c-9.175-7.466-10.455-20.907-2.986-30.082 0.854-1.066 1.92-1.92 2.986-2.986l362.687-298.683c8.961-7.68 22.401-6.826 30.082 1.92 7.68 8.959 6.828 22.399-1.92 30.080z" />
325
+ <glyph unicode="&#xe986;" glyph-name="cogwheel-outline" data-tags="cogwheel-outline" d="M573.878-76.8h-123.775c-24.722 0-45.195 18.527-47.631 43.080l-12.69 76.040c-23.841 7.412-47.005 17.040-69.137 28.68l-63.689-45.483c-7.615-6.311-18.375-10.168-29.408-10.168-12.793 0-24.805 4.989-33.859 14.043l-87.514 87.515c-17.478 17.478-18.832 45.059-3.181 64.179l44.805 62.758c-11.676 22.165-21.286 45.347-28.68 69.122l-77.158 12.875c-23.418 2.249-41.962 22.724-41.962 47.479v123.757c0 24.722 18.527 45.195 43.080 47.649l76.040 12.725c7.427 23.875 17.055 47.039 28.664 69.103l-45.466 63.689c-14.992 18.189-13.638 45.769 3.858 63.232l87.53 87.547c16.871 16.836 45.754 18.24 64.129 3.214l62.844-44.823c22.048 11.624 45.212 21.235 69.103 28.664l12.842 77.141c2.286 23.453 22.776 41.981 47.497 41.981h123.773c24.688 0 45.161-18.511 47.649-43.046l12.708-76.076c23.858-7.427 47.022-17.040 69.087-28.664l63.706 45.483c7.598 6.295 18.36 10.136 29.39 10.136 12.793 0 24.805-4.974 33.842-14.010l87.514-87.547c17.463-17.411 18.865-44.974 3.248-64.112l-44.822-62.81c11.64-22.065 21.235-45.228 28.664-69.103l77.158-12.877c23.452-2.301 41.962-22.774 41.962-47.496v-123.757c0-24.755-18.527-45.212-43.115-47.596l-76.007-12.708c-7.427-23.892-17.040-47.074-28.664-69.137l45.483-63.674c14.975-18.256 13.57-45.854-3.925-63.282l-87.497-87.497c-16.802-16.819-45.754-18.307-64.179-3.197l-62.758 44.79c-22.133-11.659-45.295-21.286-69.087-28.682l-12.894-77.175c-2.301-23.437-22.774-41.964-47.479-41.964zM319.426 107.853c2.843 0 5.702-0.709 8.274-2.165 25.787-14.451 53.231-25.838 81.642-33.874 6.295-1.777 10.998-7.039 12.081-13.503l14.569-87.582c0.847-8.155 6.989-13.688 14.112-13.688h123.775c7.123 0 13.248 5.517 13.943 12.572l14.771 88.698c1.066 6.447 5.786 11.709 12.082 13.486 28.341 8.021 55.786 19.409 81.59 33.876 5.702 3.214 12.777 2.824 18.106-0.999l72.266-51.625c7.293-5.871 14.723-4.652 19.662 0.271l87.53 87.53c5.143 5.125 5.548 13.198 0.98 18.797l-52.318 73.149c-3.825 5.331-4.196 12.385-0.999 18.121 14.45 25.687 25.821 53.131 33.842 81.592 1.777 6.311 7.037 11.015 13.518 12.097l87.599 14.604c8.157 0.847 13.69 6.954 13.69 14.078v123.757c0 7.123-5.517 13.265-12.572 13.96l-88.698 14.754c-6.48 1.083-11.727 5.786-13.519 12.097-8.021 28.461-19.409 55.907-33.842 81.557-3.197 5.737-2.824 12.793 0.999 18.122l51.658 72.301c5.229 6.464 4.805 14.518-0.305 19.628l-87.529 87.565c-4.923 4.924-13.401 5.346-18.748 0.964l-73.198-52.334c-5.331-3.825-12.403-4.196-18.104-0.999-25.702 14.433-53.149 25.821-81.592 33.876-6.295 1.76-10.998 7.039-12.082 13.503l-14.585 87.58c-0.897 8.326-6.904 13.739-14.145 13.739h-123.775c-7.258 0-13.248-5.398-13.96-12.572l-14.721-88.68c-1.066-6.464-5.786-11.726-12.081-13.503-28.495-8.072-55.94-19.443-81.574-33.876-5.752-3.199-12.808-2.826-18.122 0.999l-72.336 51.658c-7.277 5.821-14.738 4.653-19.662-0.305l-87.529-87.53c-5.11-5.11-5.5-13.165-0.93-18.732l52.301-73.216c3.825-5.346 4.196-12.402 0.999-18.122-14.416-25.652-25.804-53.096-33.876-81.574-1.76-6.295-7.039-11-13.503-12.082l-87.58-14.602c-8.292-0.88-13.688-6.887-13.688-14.147v-123.757c0-7.242 5.381-13.232 12.537-13.924l88.715-14.754c6.464-1.068 11.726-5.788 13.503-12.097 8.003-28.309 19.391-55.771 33.876-81.626 3.199-5.719 2.826-12.758-0.999-18.089l-51.625-72.267c-5.279-6.497-4.874-14.55 0.253-19.679l87.53-87.514c4.974-4.958 13.419-5.398 18.748-0.964l73.199 52.301c2.943 2.083 6.395 3.147 9.847 3.147zM512.017 232.66c-111.71 0-202.59 90.863-202.59 202.556 0 111.71 90.88 202.59 202.59 202.59s202.573-90.88 202.573-202.59c-0.017-111.675-90.88-202.556-202.573-202.556zM512.017 603.966c-93.045 0-168.749-75.704-168.749-168.749 0-93.030 75.702-168.714 168.749-168.714 93.030 0 168.732 75.684 168.732 168.714-0.017 93.047-75.704 168.749-168.732 168.749z" />
326
+ <glyph unicode="&#xe987;" glyph-name="abacus" data-tags="abacus" d="M806.193 882.166h-588.381c-9.977 0-18.065-8.088-18.065-18.065v-857.801c0-9.977 8.088-18.065 18.065-18.065h588.381c9.977 0 18.065 8.088 18.065 18.065v857.801c0 9.977-8.088 18.065-18.065 18.065zM788.128 195.927h-17.032c-9.977 0-18.065-8.088-18.065-18.065s8.088-18.065 18.065-18.065h17.032v-135.433h-552.251v135.433h32.975v-2.411c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.411h30.426v-2.411c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.411h150.557c9.977 0 18.065 8.088 18.065 18.065s-8.088 18.065-18.065 18.065h-150.557v2.406c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.406h-30.426v2.406c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.406h-32.975v135.44h32.975v-2.421c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.421h30.426v-2.421c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.421h30.426v-2.421c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.421h30.426v-2.421c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.421h32.975v-135.44zM304.982 177.932v20.401c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248v20.406c0 0.024 0.002 0.046 0.002 0.070-0.002 0.024-0.002 0.046-0.002 0.070zM434.164 157.386v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-20.447c0-0.007 0-0.014 0-0.024s0-0.014 0-0.024v-20.452c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM304.982 328.946v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM434.164 328.946v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM563.343 328.946v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248-7.303 0-13.248 5.942-13.248 13.248zM692.528 328.946v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM788.128 367.497h-32.975v2.397c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.397h-30.426v2.397c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.397h-30.426v2.397c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.397h-30.426v2.397c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.397h-32.975v135.416h162.157v-2.406c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.406h30.426v-2.406c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.406h30.426v-2.406c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.406h32.975v-135.416zM434.164 500.506v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM563.343 500.506v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248-7.303 0-13.248 5.942-13.248 13.248zM692.528 500.506v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM788.128 539.043h-32.975v2.411c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.411h-30.426v2.411c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.411h-30.426v2.411c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.411h-162.157v135.44h291.341v-2.416c-0.002-27.228 22.148-49.378 49.375-49.378s49.378 22.15 49.378 49.378v2.416h30.426v-2.416c0-27.228 22.15-49.378 49.378-49.378s49.378 22.15 49.378 49.378v2.416h32.975v-135.44zM563.343 672.067v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248-7.303 0-13.248 5.942-13.248 13.248zM692.528 672.067v40.947c0 7.306 5.942 13.248 13.248 13.248s13.248-5.942 13.248-13.248v-40.947c0-7.306-5.942-13.248-13.248-13.248s-13.248 5.942-13.248 13.248zM788.128 710.613h-32.975v2.401c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.401h-30.426v2.401c0 27.228-22.15 49.378-49.378 49.378s-49.378-22.15-49.378-49.378v-2.401h-291.339v135.423h552.251v-135.423zM806.224 947.2h-588.444c-45.803 0-83.068-37.265-83.068-83.070v-857.862c0-45.803 37.265-83.068 83.068-83.068h588.442c45.806 0 83.068 37.265 83.068 83.068v857.862c0.002 45.806-37.262 83.070-83.066 83.070zM806.224-40.67h-588.444c-25.881 0-46.938 21.057-46.938 46.938v857.862c0 25.884 21.057 46.94 46.938 46.94h588.442c25.881 0 46.938-21.057 46.938-46.94v-857.862h0.002c0-25.881-21.057-46.938-46.938-46.938zM721.29 192.805c0.19-0.128 0.303-0.2-0.111 0.084-0.441 0.291-0.287 0.185-0.075 0.041-13.103 8.541-30.761-3.112-27.673-18.588 1.508-7.558 7.85-13.438 15.483-14.406 7.975-1.012 15.827 3.618 18.913 11.010 3.288 7.879 0.414 17.037-6.537 21.859z" />
327
+ <glyph unicode="&#xe988;" glyph-name="abacus1" data-tags="abacus1" d="M960.2 925.2v-159h-289.6c-9.8 56.6-57.2 98-112.8 98-57.2 0-103-42.8-112.8-98h-87c-9.4 56.6-55.4 98-112.8 98-57.2 0-103-42.8-112.8-98h-68.6v159h-41.8v-980h41.8v159h68.6c9.8-56.6 57.2-98 112.8-98 57.2 0 103 42.8 112.8 98h56c9.8-56.6 57.2-98 112.8-98 55.4 0 101 42.8 112.2 98h321.6v-159h41.4v980h-41.8zM557.8 818.4c41.8 0 73-32.6 73-76.2 0-41.4-33.4-76.2-73-76.2s-73 34.8-73 76.2 33.4 76.2 73 76.2zM245.2 818.4c41.8 0 73-32.6 73-76.2 0-41.4-33.4-76.2-73-76.2s-73 34.8-73 76.2 33.2 76.2 73 76.2zM132.4 722.6c9.8-56.6 57.2-98 112.8-98 57.4 0 103.4 41.4 112.8 98h87.2c9.8-56.6 57.2-98 112.8-98 57.4 0 103.4 41.4 112.8 98h289.6v-265.6h-56.2c-9.8 56.6-57.2 98-112.8 98-57.4 0-103.4-41.4-112.8-98h-133c-9.4 56.6-55.4 98-112.8 98s-103.4-41.4-112.8-98h-256.2v265.6h68.6zM864.4 435.2c0-41.4-33.4-76.2-73-76.2s-73 34.8-73 76.2 33.4 76.2 73 76.2c41.8 0 73-34.8 73-76.2zM505.8 435.2c0-41.4-33.4-76.2-73-76.2s-73 34.8-73 76.2 33.4 76.2 73 76.2 73-34.8 73-76.2zM245.2 49.8c-39.6 0-73 34.8-73 76.2s33.4 76.2 73 76.2c41.8 0 73-34.8 73-76.2-0.2-41.4-33.4-76.2-73-76.2zM526.6 49.8c-39.6 0-73 34.8-73 76.2s33.4 76.2 73 76.2 73-34.8 73-76.2c0-41.4-33.4-76.2-73-76.2zM639.4 147.8c-9.4 56.6-55.4 98-112.8 98-57.2 0-103-42.8-112.8-98h-55.8c-9.4 56.6-55.4 98-112.8 98-57.2 0-103-42.8-112.8-98h-68.6v265.6h256.2c9.8-56.6 57.2-98 112.8-98s103 41.4 112.8 98h133c9.8-56.6 57.2-98 112.8-98s103 41.4 112.8 98h56.2v-265.6h-321z" />
328
+ <glyph unicode="&#xe989;" glyph-name="agenda1" data-tags="agenda1" d="M615 447.6h-106.2c-133.8 0-147.6-196.8-135.2-209.4 33.4-31.2 106-53 189.4-53s152 20.8 183.2 50c12.6 10.6 2.4 212.4-131.2 212.4zM717 264.4c-25-23-85.4-37.4-154-37.4s-129 14.6-154 37.4c-2 6.2 9.6 143.6 102 143.6h106.2c91.4 0.2 102-137.2 99.8-143.6zM561 460.2c62.4 0 114.6 50 112.4 112.4 0 62.4-50 112.4-112.4 112.4s-112.4-50-112.4-112.4 49.8-112.4 112.4-112.4zM561 643.4c41.6 0 72.8-31.2 72.8-70.8s-33.4-70.8-72.8-70.8-73 31.2-73 70.8 33.4 70.8 73 70.8zM883.6 924.6h-660c-50 0-89.6-39.6-89.6-89.6v-183.2h-83.2v-41.6h83.2v-154h-83.2v-41.6h83.2v-154h-83.2v-41.6h83.2v-183.2c0-50 39.6-89.6 89.6-89.6h658c50 0 89.6 39.6 91.6 89.6v799.2c0 50-39.6 89.6-89.6 89.6zM931.6 35.4c0-25-20.8-47.8-47.8-47.8h-660c-25 0-47.8 20.8-47.8 47.8v183.2h79.2v41.6h-79.4v154h79.2v41.6h-79.2v154h79.2v41.6h-79.2v183.6c0 25 20.8 47.8 47.8 47.8h660c25 0 47.8-20.8 47.8-47.8v-799.6z" />
329
+ <glyph unicode="&#xe98a;" glyph-name="shopping-basket" data-tags="shopping-basket" d="M1001.738 568.768h-979.477c-12.288 0-22.262-9.974-22.262-22.262s9.974-22.262 22.262-22.262h979.477c12.288 0 22.262 9.974 22.262 22.262s-9.974 22.262-22.262 22.262zM963.048 567.967c-11.754 3.206-24.131-3.74-27.337-15.627l-115.667-424.113c-7.88-28.94-34.37-49.196-64.422-49.196h-487.246c-30.052 0-56.542 20.258-64.468 49.196l-115.665 424.113c-3.206 11.931-15.494 18.833-27.291 15.671-11.887-3.249-18.877-15.494-15.627-27.337l115.667-424.159c13.179-48.307 57.299-82.009 107.386-82.009h487.246c50.087 0 94.207 33.702 107.386 82.009l115.667 424.113c3.249 11.846-3.742 24.088-15.629 27.339zM479.81 832.159c-10.285 6.812-24.086 4.007-30.854-6.188l-178.086-267.13c-6.812-10.241-4.051-24.042 6.188-30.854 3.83-2.538 8.104-3.74 12.332-3.74 7.169 0 14.248 3.473 18.522 9.928l178.086 267.13c6.814 10.239 4.053 24.042-6.188 30.854zM753.084 558.839l-178.086 267.13c-6.812 10.241-20.613 13-30.854 6.188s-13-20.613-6.188-30.854l178.086-267.13c4.318-6.455 11.353-9.928 18.566-9.928 4.274 0 8.548 1.202 12.288 3.74 10.241 6.812 13 20.615 6.188 30.854zM511.999 479.724c-12.288 0-22.262-9.974-22.262-22.262v-311.651c0-12.288 9.974-22.262 22.262-22.262s22.262 9.974 22.262 22.262v311.651c0 12.288-9.974 22.262-22.262 22.262zM670.987 479.501c-12.111 1.693-23.464-6.722-25.2-18.877l-44.521-311.651c-1.736-12.198 6.722-23.464 18.877-25.2 1.069-0.177 2.137-0.223 3.162-0.223 10.952 0 20.435 8.014 22.038 19.1l44.521 311.653c1.736 12.198-6.722 23.462-18.877 25.198zM422.734 148.973l-44.521 311.651c-1.736 12.198-12.956 20.746-25.2 18.877-12.154-1.736-20.613-13.046-18.877-25.2l44.521-311.651c1.603-11.086 11.13-19.1 22.038-19.1 1.025 0 2.093 0.090 3.162 0.223 12.154 1.736 20.613 13.046 18.877 25.2zM829.707 478.879c-11.664 3.249-24.131-3.473-27.514-15.316l-89.044-311.651c-3.339-11.798 3.473-24.131 15.316-27.514 2.047-0.578 4.097-0.845 6.144-0.845 9.706 0 18.609 6.367 21.37 16.161l89.044 311.651c3.339 11.798-3.473 24.129-15.316 27.514zM310.85 151.911l-89.044 311.651c-3.383 11.843-15.805 18.522-27.514 15.316-11.843-3.383-18.699-15.717-15.316-27.514l89.044-311.651c2.805-9.794 11.71-16.161 21.37-16.161 2.003 0 4.051 0.267 6.144 0.845 11.843 3.383 18.701 15.715 15.316 27.514z" />
330
+ <glyph unicode="&#xe98b;" glyph-name="users1" data-tags="users1" d="M947.49 152.747l-166.793 72.243c-3.925 1.963-8.277 6.758-12.015 13.158l111.36 0.085c1.946-0.188 47.855-4.386 84.668 11.435 13.943 6.007 24.32 17.869 28.484 32.546 4.198 14.814 1.536 30.498-7.27 43.059-31.829 45.295-106.121 163.652-108.442 283.699-0.051 2.065-6.775 206.217-208.384 207.872-29.679-0.239-57.122-5.274-82.091-14.558-5.444 13.875-13.466 28.348-25.395 41.967-35.038 40.004-91.921 60.279-169.079 60.279s-134.042-20.275-169.097-60.245c-40.414-46.097-36.659-101.99-35.703-111.36v-90.778c-10.923-12.442-17.067-28.365-17.067-44.8v-68.267c0-20.77 9.438-40.141 25.549-53.060 15.633-61.901 48.35-108.544 59.785-123.511v-56.474c0-16.521-9.011-31.676-23.501-39.595l-152.252-83.046c-49.51-27.034-80.247-78.814-80.247-135.202v-72.329h1024v63.095c0 52.77-29.321 100.181-76.51 123.785zM750.933 0h-716.8v38.195c0 43.878 23.927 84.207 62.447 105.199l152.252 83.046c25.481 13.909 41.301 40.585 41.301 69.581v68.591l-3.977 4.745c-0.41 0.495-42.24 51.098-58.197 120.576l-1.553 6.758-5.82 3.755c-9.882 6.383-15.787 17.084-15.787 28.621v68.267c0 9.574 4.062 18.5 11.435 25.173l5.632 5.069v106.291l-0.154 2.236c-0.051 0.461-5.854 47.77 27.392 85.692 28.279 32.256 76.544 48.606 143.428 48.606 66.645 0 114.807-16.23 143.121-48.265 14.080-15.906 21.163-33.673 24.695-48.93 0.273-1.195 0.529-2.372 0.768-3.55 0.239-1.212 0.495-2.423 0.683-3.584 0.222-1.331 0.41-2.594 0.597-3.857 0.137-0.905 0.273-1.826 0.375-2.697 0.256-2.116 0.461-4.164 0.597-6.059 0.017-0.154 0.017-0.29 0.017-0.444 0.119-1.843 0.205-3.584 0.256-5.171 0-0.307 0-0.563 0.017-0.87 0.034-1.417 0.034-2.765 0.017-3.942 0-0.171 0-0.341 0-0.512-0.068-4.011-0.341-6.4-0.341-6.451l-0.137-108.493 5.632-5.086c7.373-6.656 11.435-15.582 11.435-25.156v-68.267c0-14.899-9.762-27.938-24.269-32.41l-8.499-2.611-2.731-8.448c-11.418-35.516-27.682-68.318-48.367-97.502-5.069-7.185-10.001-13.551-14.285-18.415l-4.25-4.847v-70.4c0-4.318 0.427-8.55 1.092-12.715 0.137-0.887 0.375-1.741 0.546-2.628 0.666-3.43 1.553-6.793 2.645-10.069 0.256-0.768 0.529-1.502 0.819-2.27 1.331-3.567 2.884-7.014 4.693-10.325 0.205-0.375 0.393-0.768 0.597-1.143 2.475-4.369 5.325-8.516 8.602-12.339l3.891-4.796h0.666c5.854-5.769 12.578-10.786 20.224-14.609l163.038-81.51c40.875-20.412 66.253-61.474 66.253-107.162v-34.867zM989.867 0h-204.8v34.867c0 58.692-32.614 111.445-85.094 137.694l-117.043 58.539c2.884 6.588 3.26 14.131 0.734 21.402-4.181 12.032-15.104 19.797-27.819 19.797h-37.837c-0.785 1.382-1.297 2.901-1.929 4.369-0.853 1.963-1.86 3.891-2.423 5.956-1.041 3.789-1.655 7.748-1.655 11.81v57.702c3.908 4.779 8.021 10.223 12.271 16.23 21.146 29.867 38.093 63.113 50.415 98.97 24.081 11.042 39.714 34.85 39.714 61.73v68.267c0 16.435-6.144 32.358-17.067 44.8v90.778c0.444 4.267 1.399 18.244-1.434 36.506 21.982 8.636 46.609 13.090 73.216 13.312 167.953-1.382 174.080-167.441 174.251-174.438 2.509-129.417 80.998-254.754 114.637-302.626 2.884-4.096 3.755-9.25 2.372-14.114-0.785-2.799-3.038-7.885-9.131-10.496-28.672-12.339-67.567-8.841-69.564-8.755h-117.47c-10.974 0-20.975-5.581-26.761-14.916-5.769-9.301-6.315-20.668-1.468-30.43 5.342-10.769 14.78-25.156 30.293-32.887l166.349-72.055c35.311-17.835 57.242-53.436 57.242-93.047v-28.962z" />
331
+ <glyph unicode="&#xe98c;" glyph-name="man" data-tags="man" d="M797.914 236.396c-0.004 0.002-0.008 0.006-0.014 0.008-15.95 10.346-28.784 15.256-31.824 16.348l-92.56 38.572-65.258 43.064c-0.628 0.416-1.282 0.762-1.944 1.080v27.902c49.276 24.602 84.974 72.436 92.678 129.072 39.73 3.216 71.082 36.554 71.082 77.098 0 20.062-7.676 38.362-20.24 52.124v99.016c0.004 124.906-101.61 226.52-226.512 226.52h-17.534c-124.892 0-226.5-101.614-226.5-226.514v-97.91c-13.18-13.882-21.294-32.622-21.294-53.23 0-40.544 31.352-73.882 71.082-77.098 7.706-56.638 43.406-104.472 92.684-129.072v-26.094l-68.022-44.884c-0.922-0.204-1.84-0.476-2.742-0.852l-93.068-38.784c-4.654-1.666-32.004-12.176-59.158-37.82-26.88-25.384-58.922-71.056-58.922-144.5v-130.97c0-8.98 7.276-16.262 16.258-16.262h192.048c8.98 0 16.258 7.276 16.258 16.258 0 8.98-7.276 16.258-16.258 16.258h-50.082v120.67c0 8.98-7.276 16.258-16.258 16.258s-16.258-7.276-16.258-16.258v-120.67h-93.19v114.712c0 117.124 92.684 150.388 96.572 151.728 0.364 0.124 0.722 0.256 1.076 0.404l77.526 32.308 83.8-299.154h-32.304c-8.98 0-16.258-7.276-16.258-16.258s7.276-16.258 16.258-16.258h53.68c0.018 0 0.034-0.004 0.054-0.004 0.022 0 0.044 0.004 0.062 0.004h122.69c0.022 0 0.044-0.004 0.062-0.004s0.034 0.004 0.054 0.004h292.254c8.98 0 16.258 7.312 16.258 16.29v130.942c-0.002 95.69-54.024 145.048-86.236 165.956zM647.262 269.696l-48.97-100.65-60.744 44.708 64.22 66.662c3.566 3.7 5.016 8.652 4.402 13.378 0.086 0.678 0.146 1.366 0.146 2.066v0.852l40.946-27.016zM548.484 165.338l-12.774-34.020-43.786-0.002-14.374 34.31 35.27 25.958 35.664-26.246zM454.030 293.134c0.15 0.888 0.248 1.796 0.248 2.73v32.496c0 0.008 0 0.016 0 0.024v22.73c13.77-3.616 28.21-5.556 43.1-5.556h33.33c14.888 0 29.326 1.94 43.096 5.554v-52.856l-60.526-62.828-59.248 57.706zM737.564 569.544c-0.002-22.038-15.99-40.376-36.968-44.122v88.25c20.978-3.744 36.968-22.086 36.968-44.128zM327.478 525.422c-20.978 3.746-36.968 22.082-36.968 44.122 0 22.044 15.988 40.384 36.968 44.13v-88.252zM343.8 662.556c-0.024 0-0.048 0-0.070 0-0.56 0-1.112-0.028-1.658-0.084-0.172-0.018-0.336-0.054-0.508-0.078-0.37-0.050-0.742-0.096-1.104-0.17-0.234-0.048-0.458-0.12-0.688-0.176-0.29-0.074-0.584-0.134-0.868-0.224-0.264-0.082-0.518-0.188-0.776-0.282-0.238-0.086-0.482-0.162-0.714-0.26-0.296-0.126-0.578-0.274-0.868-0.416-0.182-0.092-0.372-0.17-0.552-0.266-0.28-0.152-0.546-0.328-0.818-0.494-0.174-0.108-0.354-0.204-0.522-0.318-0.258-0.174-0.498-0.368-0.746-0.554-0.166-0.128-0.342-0.244-0.506-0.378-0.224-0.182-0.428-0.384-0.64-0.578-0.172-0.156-0.352-0.306-0.516-0.468-0.196-0.196-0.376-0.408-0.56-0.614-0.162-0.18-0.334-0.352-0.488-0.538-0.172-0.206-0.322-0.428-0.484-0.642-0.152-0.204-0.312-0.398-0.456-0.61-0.14-0.208-0.262-0.43-0.394-0.644-0.14-0.232-0.292-0.456-0.422-0.694-0.114-0.212-0.21-0.436-0.316-0.652-0.124-0.256-0.258-0.506-0.368-0.768-0.092-0.212-0.16-0.436-0.24-0.652-0.104-0.28-0.216-0.552-0.308-0.838-0.070-0.218-0.118-0.448-0.176-0.672-0.078-0.292-0.164-0.584-0.228-0.882-0.050-0.236-0.074-0.482-0.112-0.72-0.048-0.294-0.104-0.588-0.136-0.888-0.026-0.252-0.028-0.51-0.042-0.764-0.014-0.232-0.034-0.462-0.040-0.698-5.412-0.55-10.654-1.672-15.682-3.284v77.438c0 106.966 87.022 193.994 193.986 193.994h17.534c106.974 0 194-87.028 194-194v-77.796c-5.348 1.802-10.944 3.052-16.738 3.642 0 0.068-0.008 0.134-0.010 0.202-0.008 0.358-0.022 0.716-0.054 1.068-0.020 0.214-0.054 0.424-0.082 0.638-0.042 0.31-0.082 0.62-0.14 0.928-0.050 0.258-0.112 0.51-0.176 0.764-0.060 0.252-0.12 0.502-0.192 0.75-0.084 0.288-0.184 0.57-0.284 0.852-0.074 0.206-0.144 0.412-0.226 0.614-0.12 0.296-0.254 0.588-0.39 0.876-0.086 0.182-0.17 0.364-0.262 0.542-0.148 0.282-0.306 0.554-0.468 0.828-0.106 0.18-0.212 0.362-0.326 0.538-0.162 0.25-0.334 0.49-0.51 0.73-0.136 0.188-0.274 0.378-0.418 0.56-0.17 0.21-0.344 0.412-0.522 0.616-0.174 0.198-0.344 0.392-0.526 0.58-0.17 0.176-0.346 0.34-0.522 0.508-0.206 0.196-0.414 0.388-0.63 0.572-0.178 0.15-0.362 0.292-0.546 0.436-0.23 0.178-0.458 0.356-0.696 0.52-0.2 0.138-0.406 0.266-0.612 0.396-0.234 0.148-0.468 0.294-0.71 0.432-0.238 0.134-0.488 0.256-0.732 0.378-0.222 0.108-0.438 0.222-0.666 0.32-0.292 0.13-0.594 0.24-0.898 0.354-0.196 0.072-0.386 0.15-0.586 0.214-0.336 0.11-0.678 0.2-1.024 0.288-0.146 0.036-0.286 0.088-0.434 0.122-63.624 14.472-82.822 94.614-83.002 95.39-1.41 6.23-6.34 11.058-12.598 12.336-6.258 1.286-12.686-1.22-16.432-6.4-72.31-99.962-229.52-100.924-232.088-100.924-0.002 0-0.010 0-0.014 0zM359.994 515.448v115.158c41.566 2.554 152.006 16.386 223.044 90.746 12.254-28.828 37.63-70.924 85.042-87.282v-118.622c0-75.75-61.626-137.378-137.372-137.378h-33.33c-75.756 0.002-137.384 61.63-137.384 137.378zM421.762 298.322v-2.46c0-1.722 0.274-3.38 0.768-4.936-1.786-5.67-0.404-12.11 4.144-16.542l61.892-60.284-61.218-45.056-48.968 100.65 43.382 28.628zM448.498 15.010l-31.884 113.824c0.254-0.076 0.5-0.17 0.758-0.232 1.288-0.316 2.592-0.472 3.894-0.472 3.434 0 6.818 1.088 9.636 3.164l19.704 14.5 13.712-32.734-15.82-98.050zM471.868-44.28l23.084 143.080h38.174l23.082-143.080h-84.34zM563.708 113.384l11.988 31.924 19.044-14.016c2.82-2.076 6.202-3.164 9.636-3.164 1.3 0 2.606 0.156 3.894 0.472 1.35 0.334 2.628 0.852 3.826 1.5l-32.414-115.714-15.974 98.998zM851.634-44.28v0h-93.198v120.67c0 8.98-7.276 16.258-16.258 16.258-8.98 0-16.258-7.276-16.258-16.258v-120.67h-128.908l83.342 297.532 73.63-30.684c0.316-0.132 0.696-0.276 1.020-0.386 0.108-0.040 10.978-3.83 25.2-13.056 0.002-0.002 0.004-0.002 0.006-0.004 32.584-21.152 71.424-62.382 71.424-138.688v-114.714zM533.054 500.594c8.98 0 16.258 7.276 16.258 16.258 0 8.98-7.276 16.258-16.258 16.258h-12v37.646c0 8.978-7.276 16.258-16.258 16.258-8.98 0-16.258-7.28-16.258-16.258v-53.904c0-8.98 7.276-16.258 16.258-16.258h28.258z" />
332
+ <glyph unicode="&#xe98d;" glyph-name="support1" data-tags="support" d="M877.714 553.143c0 202.971-163.657 366.629-365.714 366.629s-365.714-163.657-365.714-365.714c0 0 0 0 0-0.914-81.371-4.571-146.286-72.229-146.286-154.514v-18.286c0-85.943 69.486-155.429 155.429-155.429h8.229l64.914-103.314c45.714-73.143 123.429-116.114 209.371-116.114h12.8c8.229-31.086 36.571-54.857 70.4-54.857 40.229 0 73.143 32.914 73.143 73.143s-32.914 73.143-73.143 73.143c-33.829 0-62.171-23.771-70.4-54.857h-12.8c-73.143 0-139.886 37.486-178.286 99.657l-53.029 83.2h12.8c20.114 0 36.571 16.457 36.571 36.571v256c0 20.114-16.457 36.571-36.571 36.571h-36.571c0 181.943 147.2 329.143 329.143 329.143s329.143-147.2 329.143-329.143h-36.571c-20.114 0-36.571-16.457-36.571-36.571v-256c0-20.114 16.457-36.571 36.571-36.571h64c85.943 0 155.429 69.486 155.429 155.429v18.286c0 82.286-64.914 149.943-146.286 154.514zM521.143 60.343c20.114 0 36.571-16.457 36.571-36.571s-16.457-36.571-36.571-36.571-36.571 16.457-36.571 36.571 16.457 36.571 36.571 36.571zM219.429 517.486v-256h-64c-65.829 0-118.857 53.029-118.857 118.857v18.286c0 65.829 53.029 118.857 118.857 118.857h64zM987.429 380.343c0-65.829-53.029-118.857-118.857-118.857h-64v256h64c65.829 0 118.857-53.029 118.857-118.857v-18.286zM663.771 781.714c-1.829 0.914-4.571 2.743-7.314 4.571s-5.486 3.657-7.314 4.571c-8.229 5.486-20.114 2.743-24.686-6.4s-2.743-19.2 6.4-24.686c1.829-0.914 4.571-2.743 7.314-4.571s5.486-3.657 8.229-4.571c2.743-1.829 6.4-2.743 9.143-2.743 6.4 0 11.886 2.743 15.543 9.143 4.571 8.229 1.829 19.2-7.314 24.686zM512 828.343c-77.714 0-150.857-33.829-201.143-92.343-6.4-7.314-5.486-19.2 1.829-25.6 3.657-2.743 7.314-4.571 11.886-4.571 5.486 0 10.057 1.829 13.714 6.4 43.886 50.286 106.971 79.543 173.714 79.543 16.457 0 32.914-1.829 49.371-5.486 10.057-1.829 19.2 4.571 21.943 13.714s-4.571 19.2-13.714 21.943c-19.2 4.571-38.4 6.4-57.6 6.4z" />
333
+ <glyph unicode="&#xe98e;" glyph-name="favorites" data-tags="favorites" d="M944.416 543.776c18.542 18.074 25.088 44.6 17.088 69.226-8.002 24.626-28.89 42.236-54.514 45.958l-224.060 32.558c-4.398 0.638-8.2 3.4-10.168 7.388l-100.202 203.030c-11.458 23.22-34.662 37.644-60.556 37.644s-49.098-14.424-60.556-37.644l-100.202-203.032c-1.97-3.986-5.77-6.748-10.17-7.388l-224.056-32.556c-25.624-3.722-46.51-21.332-54.514-45.958s-1.456-51.152 17.088-69.226l162.13-158.038c3.182-3.104 4.636-7.574 3.884-11.956l-38.274-223.152c-4.376-25.522 5.916-50.828 26.864-66.048 20.948-15.224 48.204-17.19 71.12-5.144l200.402 105.358c3.936 2.070 8.634 2.070 12.572 0l200.404-105.358c9.968-5.24 20.754-7.83 31.488-7.828 13.94 0 27.792 4.368 39.626 12.974 20.948 15.222 31.242 40.53 26.864 66.048l-38.274 223.152c-0.75 4.382 0.702 8.852 3.884 11.956l162.132 158.036zM725.158 364.648l38.274-223.156c1.28-7.468-3.33-11.726-5.372-13.208-2.044-1.48-7.52-4.554-14.224-1.026l-200.404 105.358c-9.838 5.17-20.63 7.758-31.424 7.758s-21.588-2.588-31.424-7.756l-200.402-105.356c-6.708-3.526-12.182-0.456-14.224 1.026s-6.654 5.74-5.372 13.208l38.274 223.152c3.758 21.91-3.5 44.254-19.422 59.772l-162.13 158.038c-5.426 5.292-4.198 11.446-3.416 13.846 0.778 2.402 3.404 8.104 10.902 9.192l224.054 32.558c21.998 3.196 41.008 17.004 50.848 36.942l100.202 203.032c3.354 6.794 9.586 7.528 12.112 7.528 2.522 0 8.754-0.732 12.11-7.528v-0.002l100.202-203.032c9.838-19.938 28.846-33.746 50.844-36.942l224.058-32.558c7.498-1.088 10.122-6.79 10.902-9.192s2.010-8.558-3.418-13.846l-162.13-158.038c-15.92-15.516-23.178-37.86-19.42-59.77zM827.566 901.95c-12.072 8.768-28.962 6.092-37.73-5.976l-28.674-39.464c-8.768-12.068-6.094-28.962 5.976-37.73 4.798-3.482 10.352-5.16 15.856-5.16 8.354 0 16.59 3.862 21.874 11.134l28.674 39.464c8.768 12.070 6.094 28.964-5.976 37.732zM262.72 856.67l-28.674 39.464c-8.766 12.064-25.658 14.74-37.73 5.976-12.068-8.768-14.744-25.662-5.976-37.73l28.674-39.464c5.286-7.278 13.522-11.138 21.878-11.138 5.506 0 11.062 1.678 15.854 5.162 12.068 8.766 14.744 25.66 5.974 37.73zM99.104 333.542c-4.61 14.186-19.848 21.952-34.038 17.342l-46.394-15.076c-14.19-4.61-21.952-19.852-17.342-34.038 3.708-11.418 14.298-18.674 25.684-18.674 2.766 0 5.58 0.43 8.354 1.332l46.394 15.076c14.188 4.61 21.952 19.848 17.342 34.038zM512.010 33.628c-14.918 0-27.012-12.094-27.012-27.012v-48.784c0-14.918 12.094-27.012 27.012-27.012s27.012 12.094 27.012 27.012v48.784c0 14.92-12.092 27.012-27.012 27.012zM1005.328 335.77l-46.394 15.076c-14.184 4.606-29.428-3.154-34.038-17.344s3.152-29.428 17.342-34.038l46.394-15.076c2.774-0.9 5.586-1.328 8.352-1.328 11.388 0 21.978 7.258 25.686 18.674 4.61 14.188-3.154 29.426-17.342 34.036z" />
334
+ <glyph unicode="&#xe98f;" glyph-name="calendar" data-tags="calendar" d="M972.8 878.933h-119.467v51.2c0 9.438-7.629 17.067-17.067 17.067h-119.467c-9.438 0-17.067-7.629-17.067-17.067v-51.2h-375.467v51.2c0 9.438-7.629 17.067-17.067 17.067h-119.467c-9.438 0-17.067-7.629-17.067-17.067v-51.2h-119.467c-9.438 0-17.067-7.629-17.067-17.067v-921.6c0-9.438 7.629-17.067 17.067-17.067h921.6c9.438 0 17.067 7.629 17.067 17.067v921.6c0 9.438-7.629 17.067-17.067 17.067zM733.867 913.067h85.333v-102.4h-85.333v102.4zM204.8 913.067h85.333v-102.4h-85.333v102.4zM68.267 844.8h102.4v-51.2c0-9.438 7.629-17.067 17.067-17.067h119.467c9.438 0 17.067 7.629 17.067 17.067v51.2h375.467v-51.2c0-9.438 7.629-17.067 17.067-17.067h119.467c9.438 0 17.067 7.629 17.067 17.067v51.2h102.4v-153.6h-887.467v153.6zM68.267-42.667v699.733h887.467v-699.733h-887.467zM648.533 554.667h-460.8v-494.933h648.533v494.933h-187.733zM529.067 520.533h119.467v-119.467h-119.467v119.467zM648.533 247.467h-119.467v119.467h119.467v-119.467zM375.467 366.933h119.467v-119.467h-119.467v119.467zM375.467 520.533h119.467v-119.467h-119.467v119.467zM221.867 520.533h119.467v-119.467h-119.467v119.467zM221.867 366.933h119.467v-119.467h-119.467v119.467zM341.333 93.867h-119.467v119.467h119.467v-119.467zM494.933 93.867h-119.467v119.467h119.467v-119.467zM648.533 93.867h-119.467v119.467h119.467v-119.467zM802.133 93.867h-119.467v119.467h119.467v-119.467zM802.133 247.467h-119.467v119.467h119.467v-119.467zM802.133 520.533v-119.467h-119.467v119.467h119.467z" />
335
+ <glyph unicode="&#xe990;" glyph-name="paper-plane" data-tags="paper-plane" d="M1023.984 834.417c0.006 0.122 0.010 0.242 0.014 0.364 0.004 0.14-0.004 0.278-0.004 0.418 0 0.26 0.004 0.52-0.008 0.778-0.010 0.22-0.034 0.438-0.054 0.656-0.002 0.028-0.004 0.058-0.008 0.086-0.012 0.126-0.016 0.254-0.032 0.38-0.016 0.142-0.036 0.282-0.056 0.422-0.030 0.206-0.074 0.41-0.112 0.616-0.052 0.286-0.102 0.572-0.172 0.856-0.008 0.030-0.014 0.060-0.022 0.090-0.050 0.2-0.116 0.396-0.174 0.596-0.080 0.278-0.158 0.554-0.254 0.828-0.046 0.132-0.098 0.26-0.146 0.39-0.046 0.12-0.098 0.234-0.146 0.354 0 0.002-0.002 0.006-0.004 0.008-0.092 0.226-0.178 0.452-0.28 0.674-0.114 0.248-0.246 0.486-0.372 0.728-0.062 0.12-0.122 0.24-0.188 0.358-0.056 0.1-0.106 0.2-0.164 0.298-0.198 0.334-0.418 0.66-0.64 0.982-0.072 0.104-0.132 0.214-0.206 0.318-0.004 0.006-0.008 0.010-0.012 0.016-0.010 0.014-0.022 0.028-0.032 0.042-0.198 0.27-0.42 0.528-0.638 0.788-0.136 0.162-0.264 0.334-0.404 0.488-0.062 0.068-0.13 0.134-0.194 0.204-0.1 0.108-0.21 0.208-0.314 0.312-0.22 0.222-0.436 0.448-0.666 0.656-0.014 0.014-0.028 0.028-0.042 0.042-0.094 0.084-0.194 0.152-0.29 0.232-0.044 0.038-0.090 0.074-0.136 0.112-0.068 0.058-0.126 0.124-0.196 0.18-0.046 0.036-0.096 0.062-0.142 0.1-0.15 0.118-0.296 0.238-0.448 0.35-0.148 0.108-0.304 0.202-0.454 0.306-0.28 0.19-0.56 0.382-0.85 0.552-0.212 0.126-0.432 0.234-0.648 0.348-0.236 0.126-0.47 0.254-0.712 0.368-0.1 0.046-0.2 0.094-0.302 0.138-0.064 0.028-0.128 0.048-0.192 0.076-0.104 0.044-0.208 0.082-0.312 0.124-0.204 0.082-0.406 0.168-0.612 0.242-0.222 0.080-0.446 0.144-0.67 0.212-0.13 0.040-0.258 0.080-0.39 0.116-0.138 0.038-0.276 0.080-0.416 0.116-0.296 0.074-0.594 0.128-0.894 0.186-0.168 0.032-0.334 0.076-0.504 0.102-0.044 0.006-0.090 0.008-0.134 0.016-0.276 0.040-0.554 0.064-0.83 0.090-0.238 0.022-0.474 0.048-0.712 0.062-0.108 0.006-0.214 0.012-0.322 0.014-0.126 0.004-0.252-0.004-0.378-0.004-0.018 0-0.036 0-0.054 0-0.268 0-0.536 0.004-0.804-0.008-0.214-0.010-0.428-0.034-0.642-0.052-0.142-0.012-0.284-0.020-0.426-0.036-0.16-0.018-0.318-0.036-0.476-0.060-0.212-0.030-0.422-0.076-0.634-0.114-0.264-0.050-0.53-0.092-0.792-0.154-0.030-0.008-0.060-0.018-0.092-0.026-0.222-0.054-0.442-0.124-0.662-0.188-0.27-0.078-0.54-0.154-0.806-0.248-0.13-0.044-0.256-0.096-0.384-0.144-0.034-0.012-0.068-0.020-0.102-0.032l-992.012-384.005c-6.168-2.388-10.232-8.324-10.224-14.938 0.006-6.614 4.084-12.542 10.256-14.916l295.757-113.753 94.771-292.253c0.014-0.042 0.036-0.078 0.050-0.118 0.028-0.086 0.048-0.174 0.078-0.26 0.224-0.638 0.502-1.258 0.808-1.868 0.064-0.126 0.13-0.248 0.196-0.372 0.298-0.558 0.626-1.102 0.994-1.626 0.048-0.070 0.090-0.144 0.14-0.212 0.024-0.034 0.048-0.068 0.074-0.102 0.028-0.036 0.058-0.068 0.086-0.106 0.12-0.16 0.254-0.314 0.382-0.47 0.152-0.188 0.296-0.38 0.456-0.562 0.124-0.138 0.26-0.266 0.39-0.4 0.060-0.062 0.12-0.124 0.18-0.186 0.092-0.092 0.178-0.19 0.272-0.28 0.098-0.094 0.192-0.19 0.292-0.282 0.096-0.088 0.2-0.168 0.3-0.252 0.308-0.27 0.62-0.532 0.948-0.78 0.020-0.016 0.038-0.032 0.058-0.048 0.030-0.022 0.066-0.038 0.096-0.060 0.1-0.072 0.202-0.138 0.302-0.208 0.514-0.358 1.054-0.688 1.616-0.986 0.092-0.048 0.178-0.11 0.27-0.156 0.030-0.016 0.060-0.026 0.090-0.042 0.528-0.262 1.070-0.504 1.638-0.712 0.12-0.044 0.242-0.074 0.362-0.114 0.158-0.054 0.316-0.102 0.476-0.15 0.688-0.21 1.38-0.38 2.074-0.496 0.032-0.006 0.062-0.016 0.094-0.022 0.066-0.010 0.132-0.008 0.198-0.018 0.766-0.112 1.534-0.18 2.294-0.18 0 0 0.002 0 0.002 0v0c0 0 0 0 0.002 0 0.062 0 0.122 0.014 0.184 0.014 0.658 0.008 1.314 0.062 1.966 0.15 0.098 0.014 0.198 0.012 0.294 0.026 0.14 0.022 0.28 0.072 0.42 0.098 0.506 0.092 1.006 0.208 1.502 0.35 0.162 0.046 0.326 0.076 0.486 0.126 0.028 0.008 0.056 0.012 0.084 0.020 0.076 0.024 0.148 0.060 0.224 0.086 0.238 0.080 0.47 0.176 0.704 0.268 0.312 0.124 0.622 0.25 0.922 0.39 0.046 0.020 0.092 0.036 0.138 0.058 0.026 0.014 0.056 0.022 0.082 0.034 0.15 0.072 0.292 0.16 0.44 0.238 0.31 0.162 0.612 0.334 0.908 0.514 0.196 0.12 0.39 0.24 0.58 0.368 0.002 0.002 0.004 0.002 0.006 0.004 0.056 0.038 0.114 0.070 0.17 0.108 0.266 0.184 0.518 0.386 0.772 0.584 0.148 0.116 0.298 0.224 0.442 0.346 0.158 0.134 0.31 0.276 0.462 0.416 0.118 0.106 0.23 0.218 0.346 0.33 0.492 0.478 0.96 0.978 1.386 1.512 0.036 0.044 0.074 0.086 0.11 0.132 0.046 0.060 0.086 0.126 0.13 0.186 0.034 0.044 0.074 0.082 0.108 0.128l116.915 157.992c5.256 7.104 3.76 17.122-3.344 22.378-7.102 5.256-17.124 3.758-22.378-3.344l-50.797-68.645 40.372 110.213 382.148-145.044c1.836-0.696 3.76-1.042 5.676-1.042 2.798 0 5.584 0.734 8.062 2.178 4.172 2.434 7.022 6.622 7.754 11.396l110.551 721.012c0.006 0.034 0.004 0.068 0.008 0.102 0.038 0.266 0.060 0.532 0.086 0.798 0.022 0.242 0.048 0.484 0.060 0.728zM899.125 775.906l-457.015-331.918c-7.15-5.192-8.736-15.198-3.544-22.348 3.13-4.31 8.010-6.598 12.958-6.598 3.26 0 6.55 0.994 9.39 3.056l436.573 317.072-408.591-458.793c-1.586-1.564-2.88-3.476-3.722-5.696-0.144-0.376-0.254-0.758-0.368-1.138l-67.881-185.308-82.827 255.417c-1.546 4.768-5.12 8.308-9.456 9.986-0.024 0.010-0.046 0.022-0.072 0.032l-264.123 101.587 838.678 324.65zM884.642 136.178l-357.060 135.522 456.419 512.496-99.359-648.018zM371.016 356.571c3.26 0 6.55 0.994 9.39 3.056l31.1 22.588c7.15 5.192 8.736 15.198 3.544 22.348-5.194 7.15-15.2 8.736-22.348 3.544l-31.1-22.588c-7.15-5.192-8.736-15.198-3.544-22.348 3.13-4.312 8.010-6.6 12.958-6.6z" />
336
+ <glyph unicode="&#xe991;" glyph-name="placeholder" data-tags="placeholder" d="M515.338 722.79c-72.166 0-130.906-58.739-130.906-130.906s58.739-130.906 130.906-130.906 130.906 58.739 130.906 130.906-58.739 130.906-130.906 130.906zM515.338 498.381c-51.558 0-93.504 41.946-93.504 93.504s41.946 93.504 93.504 93.504 93.504-41.946 93.504-93.504-41.946-93.504-93.504-93.504zM765.611 842.158c-67.734 67.734-157.797 105.042-253.583 105.042-95.804 0-185.849-37.308-253.583-105.042-125.351-125.333-140.929-361.15-33.736-504.024l287.319-414.933 286.889 414.354c107.623 143.454 92.045 379.271-33.306 504.604zM768.584 359.415l-256.556-370.5-256.968 371.080c-97.225 129.634-83.293 342.599 29.846 455.72 60.665 60.665 141.322 94.084 227.121 94.084s166.456-33.418 227.14-94.084c113.14-113.121 127.072-326.086 29.416-456.3z" />
337
+ <glyph unicode="&#xe992;" glyph-name="phone-call" data-tags="phone-call" d="M822.996-76.8c-42.605 0-94.062 10.677-150.65 32.031-124.061 46.772-259.040 139.215-380.069 260.245-121.064 121.064-213.507 256.077-260.314 380.138-42.536 112.798-42.639 205.379-0.241 247.742 6.096 6.096 12.296 12.64 18.702 19.391 38.679 40.676 82.386 86.45 140.317 84.383 39.918-1.653 78.597-26.452 118.206-75.738 117.034-145.553 64.269-197.422 3.203-257.559l-10.78-10.677c-9.988-9.988-28.863-56.244 146.724-231.83 57.312-57.312 106.185-99.262 145.243-124.646 24.592-15.981 68.574-40.16 86.622-22.112l10.849 10.953c60.067 60.928 111.937 113.521 257.386-3.41 49.287-39.608 74.051-78.253 75.704-118.24 2.377-57.897-43.742-101.708-84.452-140.352-6.716-6.406-13.26-12.606-19.356-18.668-21.044-21.079-54.694-31.652-97.092-31.652zM186.608 912.758c-41.158 0-78.321-39.126-111.214-73.741-6.613-6.957-13.019-13.708-19.322-20.011-31.583-31.549-28.38-114.451 8.128-211.268 45.119-119.583 134.772-250.257 252.461-367.946 117.654-117.62 248.259-207.273 367.877-252.358 96.817-36.578 179.719-39.677 211.234-8.163 6.303 6.303 13.054 12.709 20.011 19.288 35.372 33.616 75.497 71.709 73.741 113.969-1.205 29.035-22.353 60.274-62.857 92.822-121.202 97.471-155.093 63.064-211.303 6.062l-11.021-11.125c-26.865-26.899-70.503-20.941-129.744 17.566-41.090 26.727-91.857 70.193-150.822 129.193-145.725 145.69-192.325 234.861-146.724 280.566l10.987 10.849c57.14 56.21 91.616 90.135-5.89 211.406-32.617 40.47-63.821 61.617-92.856 62.857-0.895 0.034-1.791 0.034-2.686 0.034z" />
338
+ <glyph unicode="&#xe993;" glyph-name="contact" data-tags="contact" d="M1000.727 807.564h-977.455c-12.87 0-23.273-10.403-23.273-23.273v-698.182c0-12.87 10.403-23.273 23.273-23.273h977.455c12.847 0 23.273 10.403 23.273 23.273v698.182c0 12.87-10.426 23.273-23.273 23.273zM977.455 165.679l-288.303 288.279-32.908-32.908 311.668-311.668h-911.825l311.668 311.668-32.908 32.908-288.303-288.279v595.34h930.909v-595.34zM930.42 761.018l-418.42-418.42-418.42 418.42h-47.034v-18.781l449.001-449.001c9.1-9.1 23.808-9.1 32.908 0l449.001 449.001v18.781h-47.034z" />
339
+ <glyph unicode="&#xe994;" glyph-name="down-arrow1" data-tags="down-arrow1" d="M1010.626 688.166c-18.482 19.604-49.397 20.334-68.902 1.902l-429.75-407.122-429.7 407.12c-19.506 18.482-50.373 17.702-68.902-1.902-18.53-19.554-17.702-50.421 1.854-68.95l463.249-438.868c9.362-8.876 21.455-13.362 33.499-13.362s24.185 4.486 33.549 13.362l463.249 438.868c19.556 18.532 20.384 49.397 1.854 68.952z" />
340
+ <glyph unicode="&#xe995;" glyph-name="up-arrow1" data-tags="up-arrow1" d="M1008.774 251.19l-463.249 438.868c-18.774 17.798-48.275 17.798-67.048 0l-463.251-438.868c-19.554-18.53-20.384-49.397-1.854-68.95 18.53-19.604 49.397-20.384 68.902-1.854l429.7 407.074 429.75-407.074c9.412-8.924 21.455-13.362 33.549-13.362 12.874 0 25.795 5.072 35.353 15.214 18.53 19.554 17.702 50.421-1.852 68.952z" />
341
+ <glyph unicode="&#xe996;" glyph-name="right-arrow1" data-tags="right-arrow" d="M689.55 797.181c-13.95 14.438-37.168 14.438-51.606 0-13.95-13.95-13.95-37.168 0-51.086l261.674-261.674h-863.49c-20.129-0.033-36.128-16.032-36.128-36.16s15.999-36.648 36.128-36.648h863.49l-261.674-261.187c-13.95-14.438-13.95-37.689 0-51.606 14.438-14.438 37.689-14.438 51.606 0l323.622 323.622c14.438 13.95 14.438 37.168 0 51.086l-323.622 323.654z" />
342
+ <glyph unicode="&#xe997;" glyph-name="left-arrows" data-tags="left-arrows" d="M359.772 435.195l407.062 429.734c18.53 19.504 17.7 50.372-1.852 68.899-19.554 18.48-50.42 17.75-68.949-1.854l-438.854-463.279c-17.846-18.774-17.846-48.226 0-66.997l438.854-463.283c9.606-10.142 22.48-15.214 35.402-15.214 12.044 0 24.088 4.438 33.548 13.36 19.554 18.53 20.382 49.396 1.852 68.899l-407.062 429.736z" />
343
+ <glyph unicode="&#xe998;" glyph-name="email" data-tags="email" d="M1016.409 516.651l0.002 0.002-130.757 86.686v289.747c0 9.366-7.593 16.96-16.96 16.96h-713.413c-9.366 0-16.96-7.593-16.96-16.96v-289.768l-130.732-86.671c-4.572-3.037-7.591-8.229-7.591-14.131v-525.206c0-9.366 7.593-16.96 16.96-16.96h990.081c9.366 0 16.96 7.593 16.96 16.96v525.206c0 5.902-3.019 11.094-7.591 14.133zM138.323 457.34l-53.197 28.219h53.197v-28.219zM33.919 474.325l390.015-206.885-390.015-258.526v465.411zM511.993 285.121l438.773-290.849h-877.543l438.771 290.849zM600.059 267.438l390.020 206.887v-465.42l-390.020 258.533zM885.655 485.559h53.222l-53.222-28.23v28.23zM950.766 519.478h-65.111v43.168l65.111-43.168zM851.735 876.128v-436.792l-283.852-150.57-46.521 30.837c-5.678 3.765-13.061 3.765-18.739 0l-46.515-30.833-283.866 150.577v436.781h679.493zM138.323 519.478h-65.084l65.084 43.145v-43.145zM511.989 464.029h135.121c9.366 0 16.96 7.593 16.96 16.96s-7.593 16.96-16.96 16.96h-135.121c-65.154 0-118.161 53.007-118.161 118.161v5.004c0 65.154 53.007 118.161 118.161 118.161s118.161-53.007 118.161-118.161v-12.512c0-14.104-11.474-25.58-25.58-25.58s-25.58 11.474-25.58 25.58v23.771c0 40.396-32.863 73.261-73.259 73.261s-73.259-32.863-73.259-73.261c0-40.396 32.863-73.259 73.259-73.259 18.472 0 35.357 6.886 48.256 18.208 10.501-16.921 29.243-28.216 50.583-28.216 32.807 0 59.499 26.69 59.499 59.499v12.512c0 83.857-68.223 152.080-152.080 152.080s-152.080-68.223-152.080-152.080v-5.004c0-83.86 68.223-152.083 152.080-152.083zM505.732 593.033c-21.693 0-39.34 17.647-39.34 39.34s17.649 39.342 39.34 39.342 39.34-17.649 39.34-39.342-17.647-39.34-39.34-39.34z" />
344
+ <glyph unicode="&#xe999;" glyph-name="internet" data-tags="internet" d="M894.905 95.832c80.225 90.412 129.095 209.267 129.095 339.368 0 135.362-52.895 258.525-138.982 350.173 0 0 0 0.018 0 0.018-0.071 0.106-0.177 0.141-0.23 0.23-89.671 95.32-215.305 156.337-355.046 161.121l-0.018 0.018-9.975 0.265c-2.578 0.088-5.155 0.177-7.751 0.177s-5.173-0.088-7.751-0.177l-9.94-0.265-0.018-0.018c-139.741-4.785-265.375-65.801-355.046-161.121-0.071-0.088-0.177-0.124-0.23-0.23 0 0 0-0.018-0.018-0.035-86.104-91.63-138.999-214.793-138.999-350.155 0-130.101 48.87-248.956 129.095-339.368 0.106-0.159 0.106-0.335 0.23-0.494 0.318-0.441 0.777-0.653 1.112-1.059 90.147-100.776 219.489-165.694 363.838-170.637l0.018-0.018 9.94-0.265c2.595-0.071 5.173-0.159 7.768-0.159s5.173 0.088 7.751 0.177l9.94 0.265 0.018 0.018c144.508 4.961 273.991 70.003 364.138 170.99 0.23 0.3 0.6 0.388 0.812 0.706 0.141 0.141 0.141 0.318 0.247 0.477zM35.752 417.545h211.915c1.995-74.84 16.614-147.562 42.637-215.693-50.211-18.167-98.216-42.531-143.201-72.934-66.154 78.689-107.326 178.988-111.351 288.627zM156.743 752.587c43.926-28.566 90.695-51.447 139.476-68.537-29.873-72.51-46.398-150.687-48.552-231.194h-211.915c4.22 114.882 49.205 219.489 120.991 299.732zM988.248 452.855h-211.915c-2.154 80.508-18.679 158.685-48.552 231.194 48.781 17.090 95.55 39.971 139.476 68.537 71.786-80.243 116.771-184.85 120.991-299.732zM494.345 683.026c-51.041 1.448-101.146 9.057-149.557 22.652 35.787 73.41 86.316 139.67 149.557 194.842v-217.494zM494.345 647.715v-194.86h-211.368c2.172 76.765 18.273 151.217 47.069 220.248 53.071-15.378 108.173-23.887 164.299-25.388zM529.655 647.715c56.126 1.501 111.228 9.993 164.317 25.388 28.796-69.032 44.897-143.484 47.069-220.248h-211.385v194.86zM529.655 683.026v217.494c63.241-55.172 113.77-121.432 149.557-194.842-48.41-13.594-98.516-21.204-149.557-22.652zM713.428 716.412c-33.916 71.062-80.984 135.804-139.264 191.294 103.389-13.524 196.414-60.275 268.058-129.201-40.678-25.812-83.827-46.574-128.794-62.093zM310.572 716.412c-44.968 15.519-88.117 36.281-128.777 62.093 71.627 68.926 164.67 115.677 268.058 129.201-58.297-55.49-105.366-120.232-139.282-191.294zM282.977 417.545h211.368v-177.223c-58.386-1.554-115.588-10.664-170.567-27.207-24.841 64.53-38.806 133.473-40.801 204.429zM494.345 205.012v-235.132c-67.69 59.057-120.761 130.807-156.849 210.397 50.617 14.919 103.194 23.217 156.849 24.735zM529.655-30.12v235.132c53.654-1.501 106.231-9.816 156.849-24.717-36.087-79.607-89.159-151.358-156.849-210.414zM529.655 240.322v177.223h211.368c-1.995-70.956-15.96-139.9-40.819-204.447-54.961 16.561-112.163 25.671-170.549 27.224zM776.333 417.545h211.915c-4.025-109.639-45.18-209.938-111.351-288.627-44.985 30.402-92.99 54.766-143.201 72.934 26.041 68.131 40.642 140.853 42.637 215.693zM171.096 102.471c41.772 27.754 86.246 50.070 132.714 66.754 34.339-76.977 83.633-147.121 146.026-206.53-108.597 14.212-205.789 65.059-2