PluginProbe
QuadMenu – Mega Menu / 3.3.4
QuadMenu – Mega Menu v3.3.4
3.3.7 3.3.6 trunk 1.8.4 1.8.5 1.8.7 1.8.8 1.8.9 1.9.0 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 All 87 releases
quadmenu / lib / class-configuration.php

class-configuration.php in QuadMenu – Mega Menu 3.3.4, at lib/class-configuration.php

968 lines 127.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace QuadLayers\QuadMenu;
4
5 if ( ! defined( 'ABSPATH' ) ) {
6 die( '-1' );
7 }
8
9 /**
10 * Configuration Class ex QuadMenu_Configuration
11 */
12 class Configuration {
13
14 private static $instance;
15
16 public function __construct() {
17
18 // Ajax
19 // ---------------------------------------------------------------------
20
21 add_filter( 'quadmenu_setup_nav_menu_item', array( $this, 'default_values_nav_menu_items' ), 15 );
22
23 add_filter( 'quadmenu_nav_menu_item_field_default', array( $this, 'custom_default_values_nav_menu_items' ), 10, 3 );
24
25 add_filter( 'quadmenu_compiler_files', array( $this, 'files' ) );
26
27 add_filter( 'quadmenu_register_icons', array( $this, 'icons' ), 1 );
28
29 add_filter( 'quadmenu_default_options', array( $this, 'configuration' ), 1 );
30
31 add_filter( 'quadmenu_default_options', array( $this, 'responsive' ), 1 );
32
33 add_filter( 'quadmenu_default_options', array( $this, 'css' ), 1 );
34
35 add_filter( 'quadmenu_default_options_themes', array( $this, 'themes_options' ), 1 );
36
37 add_filter( 'quadmenu_default_options_locations', array( $this, 'locations_options' ), 1 );
38 }
39
40 static function custom_nav_menu_items() {
41
42 $items = array();
43
44 // QuadMenu
45 // ---------------------------------------------------------------------
46
47 $items['mega'] = array(
48 'label' => esc_html__( 'QuadMenu Mega', 'quadmenu' ),
49 'title' => esc_html__( 'Mega', 'quadmenu' ),
50 'panels' => array(
51 'general' => array(
52 'title' => esc_html__( 'General', 'quadmenu' ),
53 'icon' => 'dashicons dashicons-admin-settings',
54 'settings' => array( 'subtitle', 'badge', 'float', 'hidden' ),
55 ),
56 'icon' => array(
57 'title' => esc_html__( 'Icon', 'quadmenu' ),
58 'icon' => 'dashicons dashicons-art',
59 'settings' => array( 'icon' ),
60 ),
61 'background' => array(
62 'title' => esc_html__( 'Background', 'quadmenu' ),
63 'icon' => 'dashicons dashicons-format-image',
64 'settings' => array( 'background' ),
65 ),
66 'width' => array(
67 'title' => esc_html__( 'Width', 'quadmenu' ),
68 'icon' => 'dashicons dashicons-align-left',
69 'settings' => array( 'dropdown', 'stretch', 'width' ),
70 ),
71 ),
72 'desc' => esc_html__( 'A menu which can wrap any type of widget.', 'quadmenu' ),
73 'parent' => 'main',
74 'depth' => 0,
75 );
76
77 $items['icon'] = array(
78 'label' => esc_html__( 'QuadMenu Icon', 'quadmenu' ),
79 'title' => esc_html__( 'Icon', 'quadmenu' ),
80 'panels' => array(
81 'icon' => array(
82 'title' => esc_html__( 'Icon', 'quadmenu' ),
83 'icon' => 'dashicons dashicons-art',
84 'settings' => array( 'icon' ),
85 ),
86 'general' => array(
87 'title' => esc_html__( 'General', 'quadmenu' ),
88 'icon' => 'dashicons dashicons-admin-settings',
89 'settings' => array( 'float', 'hidden', 'dropdown' ),
90 ),
91 ),
92 'desc' => esc_html__( 'Just an icon, no title.', 'quadmenu' ),
93 'depth' => 0,
94 );
95 $items['cart'] = array(
96 'label' => esc_html__( 'QuadMenu Cart', 'quadmenu' ),
97 'title' => esc_html__( 'Cart', 'quadmenu' ),
98 'panels' => array(
99 'general' => array(
100 'title' => esc_html__( 'General', 'quadmenu' ),
101 'icon' => 'dashicons dashicons-admin-settings',
102 'settings' => array( 'float', 'hidden' ),
103 ),
104 'icon' => array(
105 'title' => esc_html__( 'Icon', 'quadmenu' ),
106 'icon' => 'dashicons dashicons-art',
107 'settings' => array( 'icon' ),
108 ),
109 'cart' => array(
110 'title' => esc_html__( 'Cart', 'quadmenu' ),
111 'icon' => 'dashicons dashicons-cart',
112 'settings' => array( 'dropdown', 'title', 'cart', 'cart_text' ),
113 ),
114 ),
115 'desc' => esc_html__( 'A cart widget for Woocommerce.', 'quadmenu' ),
116 'parent' => 'main',
117 'depth' => 0,
118 );
119
120 $items['search'] = array(
121 'label' => esc_html__( 'QuadMenu Search', 'quadmenu' ),
122 'title' => esc_html__( 'Search', 'quadmenu' ),
123 'panels' => array(
124 'general' => array(
125 'title' => esc_html__( 'General', 'quadmenu' ),
126 'icon' => 'dashicons dashicons-admin-settings',
127 'settings' => array( 'placeholder', 'search', 'float', 'hidden' ),
128 ),
129 'icon' => array(
130 'title' => esc_html__( 'Icon', 'quadmenu' ),
131 'icon' => 'dashicons dashicons-art',
132 'settings' => array( 'icon' ),
133 ),
134 ),
135 'desc' => esc_html__( 'A search form for the site.', 'quadmenu' ),
136 'depth' => 0,
137 );
138 $items['column'] = array(
139 'label' => esc_html__( 'Column', 'quadmenu' ),
140 'title' => esc_html__( 'Column', 'quadmenu' ),
141 'settings' => array( 'columns' ),
142 'desc' => esc_html__( 'Column to organize the content.', 'quadmenu' ),
143 'depth' => 1,
144 'parent' => array( 'panel', 'tab', 'mega' ),
145 );
146 $items['widget'] = array(
147 'label' => esc_html__( 'QuadMenu Widget', 'quadmenu' ),
148 'title' => esc_html__( 'Widget', 'quadmenu' ),
149 'panels' => array(
150 'general' => array(
151 'title' => esc_html__( 'General', 'quadmenu' ),
152 'icon' => 'dashicons dashicons-align-left',
153 'settings' => array( 'hidden' ),
154 ),
155 ),
156 'desc' => esc_html__( 'Include a widget inside column.', 'quadmenu' ),
157 'parent' => 'column',
158 );
159
160 // WordPress
161 // ---------------------------------------------------------------------
162
163 $items['custom'] = array(
164 'panels' => array(
165 'general' => array(
166 'title' => esc_html__( 'General', 'quadmenu' ),
167 'icon' => 'dashicons dashicons-admin-settings',
168 'settings' => array( 'subtitle', 'badge', 'float', 'hidden', 'dropdown' ),
169 ),
170 'icon' => array(
171 'title' => esc_html__( 'Icon', 'quadmenu' ),
172 'icon' => 'dashicons dashicons-art',
173 'settings' => array( 'icon' ),
174 ),
175 ),
176 'parent' => array( 'main', 'column', 'login', 'icon', 'button', 'custom', 'post_type', 'post_type_archive', 'taxonomy' ),
177 );
178 $items['taxonomy'] = array(
179 'panels' => array(
180 'general' => array(
181 'title' => esc_html__( 'General', 'quadmenu' ),
182 'icon' => 'dashicons dashicons-admin-settings',
183 'settings' => array( 'subtitle', 'badge', 'float', 'hidden', 'dropdown' ),
184 ),
185 'icon' => array(
186 'title' => esc_html__( 'Icon', 'quadmenu' ),
187 'icon' => 'dashicons dashicons-art',
188 'settings' => array( 'icon' ),
189 ),
190 ),
191 'parent' => array( 'main', 'column', 'login', 'icon', 'button', 'custom', 'post_type', 'post_type_archive', 'taxonomy' ),
192 );
193 $items['post_type'] = array(
194 'panels' => array(
195 'general' => array(
196 'title' => esc_html__( 'General', 'quadmenu' ),
197 'icon' => 'dashicons dashicons-admin-settings',
198 'settings' => array( 'subtitle', 'badge', 'float', 'hidden', 'dropdown' ),
199 ),
200 'icon' => array(
201 'title' => esc_html__( 'Icon', 'quadmenu' ),
202 'icon' => 'dashicons dashicons-art',
203 'settings' => array( 'icon' ),
204 ),
205 'content' => array(
206 'title' => esc_html__( 'Content', 'quadmenu' ),
207 'icon' => 'dashicons dashicons-format-aside',
208 'settings' => array( 'thumb', 'excerpt' ),
209 ),
210 ),
211 'parent' => array( 'main', 'column', 'login', 'icon', 'button', 'custom', 'post_type', 'post_type_archive', 'taxonomy' ),
212 );
213
214 $items['post_type_archive'] = array(
215 'panels' => array(
216 /*
217 'default' => array(
218 'title' => esc_html__('Default', 'quadmenu'),
219 'icon' => 'dashicons dashicons-menu',
220 'settings' => array('url', 'title', 'attr-title', 'classes', 'xfn', 'description'),
221 ), */
222 'general' => array(
223 'title' => esc_html__( 'General', 'quadmenu' ),
224 'icon' => 'dashicons dashicons-admin-settings',
225 'settings' => array( 'subtitle', 'badge', 'float', 'hidden', 'dropdown' ),
226 ),
227 'icon' => array(
228 'title' => esc_html__( esc_html__( 'Icon', 'quadmenu' ), 'quadmenu' ),
229 'icon' => 'dashicons dashicons-art',
230 'settings' => array( 'icon' ),
231 ),
232 ),
233 'parent' => array( 'main', 'column', 'login', 'icon', 'button', 'custom', 'post_type', 'post_type_archive', 'taxonomy' ),
234 );
235
236 return json_decode( json_encode( apply_filters( 'quadmenu_custom_nav_menu_items', $items ) ) );
237 }
238
239 public function nav_menu_item_fields( $menu_obj = false ) {
240
241 $settings = array();
242
243 $settings['id'] = array(
244 'id' => 'id',
245 'db' => 'id',
246 'type' => 'id',
247 );
248
249 $settings['url'] = array(
250 'id' => 'url',
251 'db' => 'url',
252 'title' => esc_html__( 'URL' ),
253 'placeholder' => esc_html__( 'URL' ),
254 'type' => 'text',
255 'default' => '',
256 );
257
258 $settings['title'] = array(
259 'id' => 'title',
260 'db' => 'title',
261 'title' => esc_html__( 'Title' ),
262 'placeholder' => esc_html__( 'Navigation Label' ),
263 'type' => 'text',
264 'default' => '',
265 );
266
267 $settings['attr-title'] = array(
268 'id' => 'attr-title',
269 'db' => 'post_excerpt',
270 'title' => esc_html__( 'Title Attribute' ),
271 'placeholder' => esc_html__( 'Title Attribute' ),
272 'type' => 'text',
273 'default' => '',
274 );
275
276 $settings['classes'] = array(
277 'id' => 'classes',
278 'db' => 'classes',
279 'title' => esc_html__( 'CSS Classes (optional)' ),
280 'placeholder' => esc_html__( 'CSS Classes (optional)' ),
281 'type' => 'text',
282 'default' => array(),
283 );
284
285 $settings['target'] = array(
286 'id' => 'target',
287 'db' => 'target',
288 'target' => 'target',
289 'title' => esc_html__( 'Target' ),
290 'placeholder' => esc_html__( 'Open link in a new tab' ),
291 'type' => 'checkbox',
292 'ops' => '_blank',
293 'default' => '',
294 );
295
296 $settings['xfn'] = array(
297 'id' => 'xfn',
298 'db' => 'xfn',
299 'title' => esc_html__( 'Link Relationship (XFN)' ),
300 'placeholder' => esc_html__( 'Link Relationship (XFN)' ),
301 'type' => 'text',
302 'default' => '',
303 );
304
305 $settings['description'] = array(
306 'id' => 'description',
307 'db' => 'description',
308 'desc' => esc_html__( 'The description will be displayed in the menu if the current theme supports it.' ),
309 'type' => 'textarea',
310 'default' => '',
311 );
312
313 $settings['icon'] = array(
314 'id' => 'quadmenu-settings[icon]',
315 'db' => 'icon',
316 'type' => 'icon',
317 'placeholder' => esc_html__( 'Search', 'quadmenu' ),
318 'default' => '',
319 );
320
321 $settings['subtitle'] = array(
322 'id' => 'quadmenu-settings[subtitle]',
323 'db' => 'subtitle',
324 'title' => esc_html__( 'Subtitle', 'quadmenu' ),
325 'placeholder' => esc_html__( 'Enter item subtitle', 'quadmenu' ),
326 'type' => 'text',
327 'default' => '',
328 );
329
330 $settings['placeholder'] = array(
331 'id' => 'quadmenu-settings[placeholder]',
332 'db' => 'subtitle',
333 'title' => esc_html__( 'Placeholder', 'quadmenu' ),
334 'placeholder' => esc_html__( 'Enter item placeholder', 'quadmenu' ),
335 'type' => 'text',
336 'default' => '',
337 );
338
339 $settings['badge'] = array(
340 'id' => 'quadmenu-settings[badge]',
341 'db' => 'badge',
342 'title' => esc_html__( 'Badge', 'quadmenu' ),
343 'placeholder' => esc_html__( 'Item badge title', 'quadmenu' ),
344 'type' => 'text',
345 'default' => '',
346 );
347
348 $settings['float'] = array(
349 'id' => 'quadmenu-settings[float]',
350 'db' => 'float',
351 'title' => esc_html__( 'Float', 'quadmenu' ),
352 'placeholder' => esc_html__( 'Float item to left or right', 'quadmenu' ),
353 'type' => 'select',
354 'default' => '',
355 'depth' => 0,
356 'ops' => array(
357 '' => esc_html__( 'Default item position', 'quadmenu' ),
358 'opposite' => esc_html__( 'Float item opposite to default', 'quadmenu' ),
359 ),
360 );
361
362 $settings['dropdown'] = array(
363 'id' => 'quadmenu-settings[dropdown]',
364 'db' => 'dropdown',
365 'title' => esc_html__( 'Dropdown Float', 'quadmenu' ),
366 'placeholder' => esc_html__( 'Float dropdown to left o right', 'quadmenu' ),
367 'type' => 'select',
368 'default' => 'right',
369 'ops' => array(
370 'right' => esc_html__( 'Float dropdown right', 'quadmenu' ),
371 'left' => esc_html__( 'Float dropdown left', 'quadmenu' ),
372 ),
373 );
374
375 $settings['hidden'] = array(
376 'id' => 'quadmenu-settings[hidden]',
377 'db' => 'hidden',
378 'title' => esc_html__( 'Hide on screen sizes', 'quadmenu' ),
379 'type' => 'multicheck',
380 'default' => '',
381 'ops' => array(
382 'hidden-xs' => sprintf( esc_html__( 'Hidden %1$s', 'quadmenu' ), 'XS' ),
383 'hidden-sm' => sprintf( esc_html__( 'Hidden %1$s', 'quadmenu' ), 'SM' ),
384 'hidden-md' => sprintf( esc_html__( 'Hidden %1$s', 'quadmenu' ), 'MD' ),
385 'hidden-lg' => sprintf( esc_html__( 'Hidden %1$s', 'quadmenu' ), 'LG' ),
386 ),
387 );
388
389 $settings['thumb'] = array(
390 'id' => 'quadmenu-settings[thumb]',
391 'db' => 'thumb',
392 'title' => esc_html__( 'Show featured image', 'quadmenu' ),
393 'type' => 'select',
394 'default' => '',
395 'depth' => array( 1, 2, 3, 4 ),
396 'ops' => array(
397 '' => esc_html__( 'Hide featured image', 'quadmenu' ),
398 'thumbnail' => esc_html__( 'Show featured image in thumbnail size', 'quadmenu' ),
399 'large' => esc_html__( 'Show featured image in wide size', 'quadmenu' ),
400 ),
401 );
402
403 $settings['excerpt'] = array(
404 'id' => 'quadmenu-settings[excerpt]',
405 'db' => 'excerpt',
406 'type' => 'checkbox',
407 'depth' => array( 1, 2, 3, 4 ),
408 'title' => esc_html__( 'Excerpt', 'quadmenu' ),
409 'placeholder' => esc_html__( 'Show items excerpt', 'quadmenu' ),
410 'default' => 'off',
411 );
412
413 $settings['background'] = array(
414 'id' => 'quadmenu-settings[background]',
415 'db' => 'background',
416 'type' => 'background',
417 'default' => array(
418 'thumbnail-id' => 0,
419 'size' => '',
420 'position' => '',
421 'repeat' => '',
422 'origin' => 'border-box',
423 'opacity' => 1,
424 ),
425 );
426
427 $settings['stretch'] = array(
428 'id' => 'quadmenu-settings[stretch]',
429 'db' => 'stretch',
430 'title' => esc_html__( 'Dropdown Width', 'quadmenu' ),
431 'desc' => esc_html__( 'This controls the width of the dropdown and contents.', 'quadmenu' ),
432 'type' => 'select',
433 'default' => 'boxed',
434 'ops' => array(
435 'boxed' => esc_html__( 'Boxed dropdown', 'quadmenu' ),
436 'dropdown' => esc_html__( 'Stretch dropdown', 'quadmenu' ),
437 // 'content' => esc_html__('Stretch dropdown and content', 'quadmenu'),
438 '' => esc_html__( 'Custom dropdown width', 'quadmenu' ),
439 ),
440 );
441
442 $settings['width'] = array(
443 'id' => 'quadmenu-settings[columns]',
444 'db' => 'columns',
445 'type' => 'width',
446 'default' => array(),
447 'ops' => array(
448 'icons' => array(
449 'md',
450 'lg',
451 ),
452 'columns' => array(
453 'md',
454 'lg',
455 ),
456 ),
457 );
458
459 $settings['columns'] = array(
460 'id' => 'quadmenu-settings[columns]',
461 'db' => 'columns',
462 'type' => 'width',
463 'default' => array(),
464 'ops' => array(
465 'icons' => array(
466 'xs',
467 'sm',
468 'md',
469 'lg',
470 ),
471 'columns' => array(
472 '',
473 'sm',
474 'md',
475 'lg',
476 ),
477 'hidden' => array(
478 'xs',
479 'sm',
480 'md',
481 'lg',
482 ),
483 ),
484 );
485
486 $settings['cart'] = array(
487 'id' => 'quadmenu-settings[cart]',
488 'db' => 'cart',
489 'title' => esc_html__( 'Cart', 'quadmenu' ),
490 'type' => 'select',
491 'default' => 'woo',
492 'ops' => array(
493 'woo' => esc_html__( 'WooCommerce Cart', 'quadmenu' ),
494 'edd' => esc_html__( 'Easy Digital Downloads Cart', 'quadmenu' ),
495 ),
496 );
497
498 $settings['cart_text'] = array(
499 'id' => 'quadmenu-settings[cart_text]',
500 'db' => 'cart_text',
501 'title' => esc_html__( 'Text', 'quadmenu' ),
502 'type' => 'textarea',
503 'default' => '',
504 );
505
506 $settings['social'] = array(
507 'id' => 'quadmenu-settings[social]',
508 'db' => 'social',
509 'title' => esc_html__( 'Social', 'quadmenu' ),
510 'type' => 'select',
511 'default' => 'toggle',
512 'ops' => array(
513 'embed' => esc_html__( 'Embeded', 'quadmenu' ),
514 'toggle' => esc_html__( 'Toggle', 'quadmenu' ),
515 ),
516 );
517
518 $settings['search'] = array(
519 'id' => 'quadmenu-settings[search]',
520 'db' => 'search',
521 'title' => esc_html__( 'Search', 'quadmenu' ),
522 'type' => 'multicheck',
523 'default' => 'post',
524 'ops' => $this->post_types(),
525 );
526
527 return apply_filters( 'quadmenu_nav_menu_item_fields', $settings, $menu_obj );
528 }
529
530 function post_types() {
531
532 $ops = array();
533
534 $post_types = get_post_types( array( 'show_in_nav_menus' => true ), 'object' );
535
536 foreach ( $post_types as $post_type ) {
537
538 $ops[ $post_type->name ] = $post_type->label;
539 }
540
541 return $ops;
542 }
543
544 function nav_menu_item_fields_defaults() {
545
546 $defaults = array();
547
548 $fields = $this->nav_menu_item_fields();
549
550 foreach ( $fields as $id => $field ) {
551 $defaults[ $id ] = isset( $field['default'] ) ? $field['default'] : esc_html__( 'Undefined default', 'quadmenu' );
552 }
553
554 return $defaults;
555 }
556
557 function default_values_nav_menu_items( $item ) {
558
559 $defaults = $this->nav_menu_item_fields_defaults();
560
561 foreach ( $defaults as $key => $value ) {
562
563 if ( property_exists( $item, $key ) ) {
564 continue;
565 }
566
567 $item->{$key} = apply_filters( 'quadmenu_nav_menu_item_field_default', $value, $key, $item );
568 }
569
570 return $item;
571 }
572
573 function custom_default_values_nav_menu_items( $value, $key, $item ) {
574
575 if ( $key == 'icon' ) {
576
577 if ( $item->quadmenu == 'social' ) {
578 $value = 'dashicons dashicons-share';
579 }
580
581 if ( $item->quadmenu == 'cart' ) {
582 $value = 'dashicons dashicons-cart';
583 }
584
585 if ( $item->quadmenu == 'icon' ) {
586 $value = 'dashicons dashicons-info';
587 }
588 }
589
590 if ( $key == 'columns' ) {
591
592 if ( $item->quadmenu == 'column' ) {
593 $value = array(
594 'col-12',
595 'col-sm-4',
596 );
597 }
598 }
599
600 return $value;
601 }
602
603 function files( $files ) {
604
605 $files[] = QUADMENU_PLUGIN_URL . 'assets/frontend/less/quadmenu-locations.less';
606 $files[] = QUADMENU_PLUGIN_URL . 'assets/frontend/less/quadmenu-widgets.less';
607
608 return $files;
609 }
610
611 function icons() {
612
613 $register_icons = array(
614 'dashicons' => array(
615 'name' => 'Dashicons',
616 'url' => false,
617 'prefix' => '',
618 'iconmap' => 'dashicons dashicons-menu,dashicons dashicons-admin-site,dashicons dashicons-dashboard,dashicons dashicons-admin-post,dashicons dashicons-admin-media,dashicons dashicons-admin-links,dashicons dashicons-admin-page,dashicons dashicons-admin-comments,dashicons dashicons-admin-appearance,dashicons dashicons-admin-plugins,dashicons dashicons-admin-users,dashicons dashicons-admin-tools,dashicons dashicons-admin-settings,dashicons dashicons-admin-network,dashicons dashicons-admin-home,dashicons dashicons-admin-generic,dashicons dashicons-admin-collapse,dashicons dashicons-filter,dashicons dashicons-admin-customizer,dashicons dashicons-admin-multisite,dashicons dashicons-welcome-write-blog,dashicons dashicons-welcome-add-page,dashicons dashicons-welcome-view-site,dashicons dashicons-welcome-widgets-menus,dashicons dashicons-welcome-comments,dashicons dashicons-welcome-learn-more,dashicons dashicons-format-aside,dashicons dashicons-format-image,dashicons dashicons-format-gallery,dashicons dashicons-format-video,dashicons dashicons-format-status,dashicons dashicons-format-quote,dashicons dashicons-format-chat,dashicons dashicons-format-audio,dashicons dashicons-camera,dashicons dashicons-images-alt,dashicons dashicons-images-alt2,dashicons dashicons-video-alt,dashicons dashicons-video-alt2,dashicons dashicons-video-alt3,dashicons dashicons-media-archive,dashicons dashicons-media-audio,dashicons dashicons-media-code,dashicons dashicons-media-default,dashicons dashicons-media-document,dashicons dashicons-media-interactive,dashicons dashicons-media-spreadsheet,dashicons dashicons-media-text,dashicons dashicons-media-video,dashicons dashicons-playlist-audio,dashicons dashicons-playlist-video,dashicons dashicons-controls-play,dashicons dashicons-controls-pause,dashicons dashicons-controls-forward,dashicons dashicons-controls-skipforward,dashicons dashicons-controls-back,dashicons dashicons-controls-skipback,dashicons dashicons-controls-repeat,dashicons dashicons-controls-volumeon,dashicons dashicons-controls-volumeoff,dashicons dashicons-image-crop,dashicons dashicons-image-rotate,dashicons dashicons-image-rotate-left,dashicons dashicons-image-rotate-right,dashicons dashicons-image-flip-vertical,dashicons dashicons-image-flip-horizontal,dashicons dashicons-image-filter,dashicons dashicons-undo,dashicons dashicons-redo,dashicons dashicons-editor-bold,dashicons dashicons-editor-italic,dashicons dashicons-editor-ul,dashicons dashicons-editor-ol,dashicons dashicons-editor-quote,dashicons dashicons-editor-alignleft,dashicons dashicons-editor-aligncenter,dashicons dashicons-editor-alignright,dashicons dashicons-editor-insertmore,dashicons dashicons-editor-spellcheck,dashicons dashicons-editor-expand,dashicons dashicons-editor-contract,dashicons dashicons-editor-kitchensink,dashicons dashicons-editor-underline,dashicons dashicons-editor-justify,dashicons dashicons-editor-textcolor,dashicons dashicons-editor-paste-word,dashicons dashicons-editor-paste-text,dashicons dashicons-editor-removeformatting,dashicons dashicons-editor-video,dashicons dashicons-editor-customchar,dashicons dashicons-editor-outdent,dashicons dashicons-editor-indent,dashicons dashicons-editor-help,dashicons dashicons-editor-strikethrough,dashicons dashicons-editor-unlink,dashicons dashicons-editor-rtl,dashicons dashicons-editor-break,dashicons dashicons-editor-code,dashicons dashicons-editor-paragraph,dashicons dashicons-editor-table,dashicons dashicons-align-left,dashicons dashicons-align-right,dashicons dashicons-align-center,dashicons dashicons-align-none,dashicons dashicons-lock,dashicons dashicons-unlock,dashicons dashicons-calendar,dashicons dashicons-calendar-alt,dashicons dashicons-visibility,dashicons dashicons-hidden,dashicons dashicons-post-status,dashicons dashicons-edit,dashicons dashicons-trash,dashicons dashicons-sticky,dashicons dashicons-external,dashicons dashicons-arrow-up,dashicons dashicons-arrow-down,dashicons dashicons-arrow-right,dashicons dashicons-arrow-left,dashicons dashicons-arrow-up-alt,dashicons dashicons-arrow-down-alt,dashicons dashicons-arrow-right-alt,dashicons dashicons-arrow-left-alt,dashicons dashicons-arrow-up-alt2,dashicons dashicons-arrow-down-alt2,dashicons dashicons-arrow-right-alt2,dashicons dashicons-arrow-left-alt2,dashicons dashicons-sort,dashicons dashicons-leftright,dashicons dashicons-randomize,dashicons dashicons-list-view,dashicons dashicons-exerpt-view,dashicons dashicons-grid-view,dashicons dashicons-share,dashicons dashicons-share-alt,dashicons dashicons-share-alt2,dashicons dashicons-twitter,dashicons dashicons-rss,dashicons dashicons-email,dashicons dashicons-email-alt,dashicons dashicons-facebook,dashicons dashicons-facebook-alt,dashicons dashicons-googleplus,dashicons dashicons-networking,dashicons dashicons-hammer,dashicons dashicons-art,dashicons dashicons-migrate,dashicons dashicons-performance,dashicons dashicons-universal-access,dashicons dashicons-universal-access-alt,dashicons dashicons-tickets,dashicons dashicons-nametag,dashicons dashicons-clipboard,dashicons dashicons-heart,dashicons dashicons-megaphone,dashicons dashicons-schedule,dashicons dashicons-wordpress,dashicons dashicons-wordpress-alt,dashicons dashicons-pressthis,dashicons dashicons-update,dashicons dashicons-screenoptions,dashicons dashicons-info,dashicons dashicons-cart,dashicons dashicons-feedback,dashicons dashicons-cloud,dashicons dashicons-translation,dashicons dashicons-tag,dashicons dashicons-category,dashicons dashicons-archive,dashicons dashicons-tagcloud,dashicons dashicons-text,dashicons dashicons-yes,dashicons dashicons-no,dashicons dashicons-no-alt,dashicons dashicons-plus,dashicons dashicons-plus-alt,dashicons dashicons-minus,dashicons dashicons-dismiss,dashicons dashicons-marker,dashicons dashicons-star-filled,dashicons dashicons-star-half,dashicons dashicons-star-empty,dashicons dashicons-flag,dashicons dashicons-warning,dashicons dashicons-location,dashicons dashicons-location-alt,dashicons dashicons-vault,dashicons dashicons-shield,dashicons dashicons-shield-alt,dashicons dashicons-sos,dashicons dashicons-search,dashicons dashicons-slides,dashicons dashicons-analytics,dashicons dashicons-chart-pie,dashicons dashicons-chart-bar,dashicons dashicons-chart-line,dashicons dashicons-chart-area,dashicons dashicons-groups,dashicons dashicons-businessman,dashicons dashicons-id,dashicons dashicons-id-alt,dashicons dashicons-products,dashicons dashicons-awards,dashicons dashicons-forms,dashicons dashicons-testimonial,dashicons dashicons-portfolio,dashicons dashicons-book,dashicons dashicons-book-alt,dashicons dashicons-download,dashicons dashicons-upload,dashicons dashicons-backup,dashicons dashicons-clock,dashicons dashicons-lightbulb,dashicons dashicons-microphone,dashicons dashicons-desktop,dashicons dashicons-tablet,dashicons dashicons-smartphone,dashicons dashicons-phone,dashicons dashicons-index-card,dashicons dashicons-carrot,dashicons dashicons-building,dashicons dashicons-store,dashicons dashicons-album,dashicons dashicons-palmtree,dashicons dashicons-tickets-alt,dashicons dashicons-money,dashicons dashicons-smiley,dashicons dashicons-thumbs-up,dashicons dashicons-thumbs-down,dashicons dashicons-layout',
619 ),
620 'eleganticons' => array(
621 'name' => 'Elegant Icons',
622 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/eleganticons/style.min.css',
623 'prefix' => '',
624 'iconmap' => 'arrow_up,arrow_down,arrow_left,arrow_right,arrow_left-up,arrow_right-up,arrow_right-down,arrow_left-down,arrow-up-down,arrow_up-down_alt,arrow_left-right_alt,arrow_left-right,arrow_expand_alt2,arrow_expand_alt,arrow_condense,arrow_expand,arrow_move,arrow_carrot-up,arrow_carrot-down,arrow_carrot-left,arrow_carrot-right,arrow_carrot-2up,arrow_carrot-2down,arrow_carrot-2left,arrow_carrot-2right,arrow_carrot-up_alt2,arrow_carrot-down_alt2,arrow_carrot-left_alt2,arrow_carrot-right_alt2,arrow_carrot-2up_alt2,arrow_carrot-2down_alt2,arrow_carrot-2left_alt2,arrow_carrot-2right_alt2,arrow_triangle-up,arrow_triangle-down,arrow_triangle-left,arrow_triangle-right,arrow_triangle-up_alt2,arrow_triangle-down_alt2,arrow_triangle-left_alt2,arrow_triangle-right_alt2,arrow_back,icon_minus-06,icon_plus,icon_close,icon_check,icon_minus_alt2,icon_plus_alt2,icon_close_alt2,icon_check_alt2,icon_zoom-out_alt,icon_zoom-in_alt,icon_search,icon_box-empty,icon_box-selected,icon_minus-box,icon_plus-box,icon_box-checked,icon_circle-empty,icon_circle-slelected,icon_stop_alt2,icon_stop,icon_pause_alt2,icon_pause,icon_menu,icon_menu-square_alt2,icon_menu-circle_alt2,icon_ul,icon_ol,icon_adjust-horiz,icon_adjust-vert,icon_document_alt,icon_documents_alt,icon_pencil,icon_pencil-edit_alt,icon_pencil-edit,icon_folder-alt,icon_folder-open_alt,icon_folder-add_alt,icon_info_alt,icon_error-oct_alt,icon_error-circle_alt,icon_error-triangle_alt,icon_question_alt2,icon_question,icon_comment_alt,icon_chat_alt,icon_vol-mute_alt,icon_volume-low_alt,icon_volume-high_alt,icon_quotations,icon_quotations_alt2,icon_clock_alt,icon_lock_alt,icon_lock-open_alt,icon_key_alt,icon_cloud_alt,icon_cloud-upload_alt,icon_cloud-download_alt,icon_image,icon_images,icon_lightbulb_alt,icon_gift_alt,icon_house_alt,icon_genius,icon_mobile,icon_tablet,icon_laptop,icon_desktop,icon_camera_alt,icon_mail_alt,icon_cone_alt,icon_ribbon_alt,icon_bag_alt,icon_creditcard,icon_cart_alt,icon_paperclip,icon_tag_alt,icon_tags_alt,icon_trash_alt,icon_cursor_alt,icon_mic_alt,icon_compass_alt,icon_pin_alt,icon_pushpin_alt,icon_map_alt,icon_drawer_alt,icon_toolbox_alt,icon_book_alt,icon_calendar,icon_film,icon_table,icon_contacts_alt,icon_headphones,icon_lifesaver,icon_piechart,icon_refresh,icon_link_alt,icon_link,icon_loading,icon_blocked,icon_archive_alt,icon_heart_alt,icon_star_alt,icon_star-half_alt,icon_star,icon_star-half,icon_tools,icon_tool,icon_cog,icon_cogs,arrow_up_alt,arrow_down_alt,arrow_left_alt,arrow_right_alt,arrow_left-up_alt,arrow_right-up_alt,arrow_right-down_alt,arrow_left-down_alt,arrow_condense_alt,arrow_expand_alt3,arrow_carrot_up_alt,arrow_carrot-down_alt,arrow_carrot-left_alt,arrow_carrot-right_alt,arrow_carrot-2up_alt,arrow_carrot-2dwnn_alt,arrow_carrot-2left_alt,arrow_carrot-2right_alt,arrow_triangle-up_alt,arrow_triangle-down_alt,arrow_triangle-left_alt,arrow_triangle-right_alt,icon_minus_alt,icon_plus_alt,icon_close_alt,icon_check_alt,icon_zoom-out,icon_zoom-in,icon_stop_alt,icon_menu-square_alt,icon_menu-circle_alt,icon_document,icon_documents,icon_pencil_alt,icon_folder,icon_folder-open,icon_folder-add,icon_folder_upload,icon_folder_download,icon_info,icon_error-circle,icon_error-oct,icon_error-triangle,icon_question_alt,icon_comment,icon_chat,icon_vol-mute,icon_volume-low,icon_volume-high,icon_quotations_alt,icon_clock,icon_lock,icon_lock-open,icon_key,icon_cloud,icon_cloud-upload,icon_cloud-download,icon_lightbulb,icon_gift,icon_house,icon_camera,icon_mail,icon_cone,icon_ribbon,icon_bag,icon_cart,icon_tag,icon_tags,icon_trash,icon_cursor,icon_mic,icon_compass,icon_pin,icon_pushpin,icon_map,icon_drawer,icon_toolbox,icon_book,icon_contacts,icon_archive,icon_heart,icon_profile,icon_group,icon_grid-2x2,icon_grid-3x3,icon_music,icon_pause_alt,icon_phone,icon_upload,icon_download,social_facebook,social_twitter,social_pinterest,social_googleplus,social_tumblr,social_tumbleupon,social_wordpress,social_instagram,social_dribbble,social_vimeo,social_linkedin,social_rss,social_deviantart,social_share,social_myspace,social_skype,social_youtube,social_picassa,social_googledrive,social_flickr,social_blogger,social_spotify,social_delicious,social_facebook_circle,social_twitter_circle,social_pinterest_circle,social_googleplus_circle,social_tumblr_circle,social_stumbleupon_circle,social_wordpress_circle,social_instagram_circle,social_dribbble_circle,social_vimeo_circle,social_linkedin_circle,social_rss_circle,social_deviantart_circle,social_share_circle,social_myspace_circle,social_skype_circle,social_youtube_circle,social_picassa_circle,social_googledrive_alt2,social_flickr_circle,social_blogger_circle,social_spotify_circle,social_delicious_circle,social_facebook_square,social_twitter_square,social_pinterest_square,social_googleplus_square,social_tumblr_square,social_stumbleupon_square,social_wordpress_square,social_instagram_square,social_dribbble_square,social_vimeo_square,social_linkedin_square,social_rss_square,social_deviantart_square,social_share_square,social_myspace_square,social_skype_square,social_youtube_square,social_picassa_square,social_googledrive_square,social_flickr_square,social_blogger_square,social_spotify_square,social_delicious_square,icon_printer,icon_calulator,icon_building,icon_floppy,icon_drive,icon_search-2,icon_id,icon_id-2,icon_puzzle,icon_like,icon_dislike,icon_mug,icon_currency,icon_wallet,icon_pens,icon_easel,icon_flowchart,icon_datareport,icon_briefcase,icon_shield,icon_percent,icon_globe,icon_globe-2,icon_target,icon_hourglass,icon_balance,icon_rook,icon_printer-alt,icon_calculator_alt,icon_building_alt,icon_floppy_alt,icon_drive_alt,icon_search_alt,icon_id_alt,icon_id-2_alt,icon_puzzle_alt,icon_like_alt,icon_dislike_alt,icon_mug_alt,icon_currency_alt,icon_wallet_alt,icon_pens_alt,icon_easel_alt,icon_flowchart_alt,icon_datareport_alt,icon_briefcase_alt,icon_shield_alt,icon_percent_alt,icon_globe_alt,icon_clipboard',
625 ),
626 'elusive' => array(
627 'name' => 'Elusive Icons',
628 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/elusive/css/elusive-icons.min.css',
629 'iconmap' => 'el el-address-book-alt,el el-address-book,el el-adjust-alt,el el-adjust,el el-adult,el el-align-center,el el-align-justify,el el-align-left,el el-align-right,el el-arrow-down,el el-arrow-left,el el-arrow-right,el el-arrow-up,el el-asl,el el-asterisk,el el-backward,el el-ban-circle,el el-barcode,el el-behance,el el-bell,el el-blind,el el-blogger,el el-bold,el el-book,el el-bookmark-empty,el el-bookmark,el el-braille,el el-briefcase,el el-broom,el el-brush,el el-bulb,el el-bullhorn,el el-calendar-sign,el el-calendar,el el-camera,el el-car,el el-caret-down,el el-caret-left,el el-caret-right,el el-caret-up,el el-cc,el el-certificate,el el-check-empty,el el-check,el el-chevron-down,el el-chevron-left,el el-chevron-right,el el-chevron-up,el el-child,el el-circle-arrow-down,el el-circle-arrow-left,el el-circle-arrow-right,el el-circle-arrow-up,el el-cloud-alt,el el-cloud,el el-cog-alt,el el-cog,el el-cogs,el el-comment-alt,el el-comment,el el-compass-alt,el el-compass,el el-credit-card,el el-css,el el-dashboard,el el-delicious,el el-deviantart,el el-digg,el el-download-alt,el el-download,el el-dribbble,el el-edit,el el-eject,el el-envelope-alt,el el-envelope,el el-error-alt,el el-error,el el-eur,el el-exclamation-sign,el el-eye-close,el el-eye-open,el el-facebook,el el-facetime-video,el el-fast-backward,el el-fast-forward,el el-female,el el-file-alt,el el-file-edit-alt,el el-file-edit,el el-file-new-alt,el el-file-new,el el-file,el el-film,el el-filter,el el-fire,el el-flag-alt,el el-flag,el el-flickr,el el-folder-close,el el-folder-open,el el-folder-sign,el el-folder,el el-font,el el-fontsize,el el-fork,el el-forward-alt,el el-forward,el el-foursquare,el el-friendfeed-rect,el el-friendfeed,el el-fullscreen,el el-gbp,el el-gift,el el-github-text,el el-github,el el-glass,el el-glasses,el el-globe-alt,el el-globe,el el-googleplus,el el-graph-alt,el el-graph,el el-group-alt,el el-group,el el-guidedog,el el-hand-down,el el-hand-left,el el-hand-right,el el-hand-up,el el-hdd,el el-headphones,el el-hearing-impaired,el el-heart-alt,el el-heart-empty,el el-heart,el el-home-alt,el el-home,el el-hourglass,el el-idea-alt,el el-idea,el el-inbox-alt,el el-inbox-box,el el-inbox,el el-indent-left,el el-indent-right,el el-info-circle,el el-instagram,el el-iphone-home,el el-italic,el el-key,el el-laptop-alt,el el-laptop,el el-lastfm,el el-leaf,el el-lines,el el-link,el el-linkedin,el el-list-alt,el el-list,el el-livejournal,el el-lock-alt,el el-lock,el el-magic,el el-magnet,el el-male,el el-map-marker-alt,el el-map-marker,el el-mic-alt,el el-mic,el el-minus-sign,el el-minus,el el-move,el el-music,el el-myspace,el el-network,el el-off,el el-ok-circle,el el-ok-sign,el el-ok,el el-opensource,el el-paper-clip-alt,el el-paper-clip,el el-path,el el-pause-alt,el el-pause,el el-pencil-alt,el el-pencil,el el-person,el el-phone-alt,el el-phone,el el-photo-alt,el el-photo,el el-picasa,el el-picture,el el-pinterest,el el-plane,el el-play-alt,el el-play-circle,el el-play,el el-plurk-alt,el el-plurk,el el-plus-sign,el el-plus,el el-podcast,el el-print,el el-puzzle,el el-qrcode,el el-question-sign,el el-question,el el-quote-alt,el el-quote-right-alt,el el-quote-right,el el-quotes,el el-random,el el-record,el el-reddit,el el-redux,el el-refresh,el el-remove-circle,el el-remove-sign,el el-remove,el el-repeat-alt,el el-repeat,el el-resize-full,el el-resize-horizontal,el el-resize-small,el el-resize-vertical,el el-return-key,el el-retweet,el el-reverse-alt,el el-road,el el-rss,el el-scissors,el el-screen-alt,el el-screen,el el-screenshot,el el-search-alt,el el-search,el el-share-alt,el el-share,el el-shopping-cart-sign,el el-shopping-cart,el el-signal,el el-skype,el el-slideshare,el el-smiley-alt,el el-smiley,el el-soundcloud,el el-speaker,el el-spotify,el el-stackoverflow,el el-star-alt,el el-star-empty,el el-star,el el-step-backward,el el-step-forward,el el-stop-alt,el el-stop,el el-stumbleupon,el el-tag,el el-tags,el el-tasks,el el-text-height,el el-text-width,el el-th-large,el el-th-list,el el-th,el el-thumbs-down,el el-thumbs-up,el el-time-alt,el el-time,el el-tint,el el-torso,el el-trash-alt,el el-trash,el el-tumblr,el el-twitter,el el-universal-access,el el-unlock-alt,el el-unlock,el el-upload,el el-usd,el el-user,el el-viadeo,el el-video-alt,el el-video-chat,el el-video,el el-view-mode,el el-vimeo,el el-vkontakte,el el-volume-down,el el-volume-off,el el-volume-up,el el-warning-sign,el el-website-alt,el el-website,el el-wheelchair,el el-wordpress,el el-wrench-alt,el el-wrench,el el-youtube,el el-zoom-in,el el-zoom-out',
630 ),
631 'fontawesome' => array(
632 'name' => 'FontAwesome 4',
633 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/fontawesome/css/font-awesome.min.css',
634 'iconmap' => 'fa fa-glass,fa fa-music,fa fa-search,fa fa-envelope-o,fa fa-heart,fa fa-star,fa fa-star-o,fa fa-user,fa fa-film,fa fa-th-large,fa fa-th ,fa fa-th-list ,fa fa-check ,fa fa-remove,fa fa-close,fa fa-times ,fa fa-search-plus ,fa fa-search-minus,fa fa-power-off,fa fa-signal,fa fa-gear,fa fa-cog,fa fa-trash-o,fa fa-home,fa fa-file-o,fa fa-clock-o,fa fa-road,fa fa-download,fa fa-arrow-circle-o-down ,fa fa-arrow-circle-o-up ,fa fa-inbox ,fa fa-play-circle-o ,fa fa-rotate-right,fa fa-repeat ,fa fa-refresh,fa fa-list-alt,fa fa-lock,fa fa-flag,fa fa-headphones,fa fa-volume-off,fa fa-volume-down,fa fa-volume-up,fa fa-qrcode,fa fa-barcode ,fa fa-tag ,fa fa-tags ,fa fa-book ,fa fa-bookmark ,fa fa-print ,fa fa-camera,fa fa-font,fa fa-bold,fa fa-italic,fa fa-text-height,fa fa-text-width,fa fa-align-left,fa fa-align-center,fa fa-align-right,fa fa-align-justify,fa fa-list ,fa fa-dedent,fa fa-outdent ,fa fa-indent ,fa fa-video-camera ,fa fa-photo,fa fa-image,fa fa-picture-o ,fa fa-pencil,fa fa-map-marker,fa fa-adjust,fa fa-tint,fa fa-edit,fa fa-pencil-square-o,fa fa-share-square-o,fa fa-check-square-o,fa fa-arrows,fa fa-step-backward,fa fa-fast-backward,fa fa-backward ,fa fa-play ,fa fa-pause ,fa fa-stop ,fa fa-forward ,fa fa-fast-forward,fa fa-step-forward,fa fa-eject,fa fa-chevron-left,fa fa-chevron-right,fa fa-plus-circle,fa fa-minus-circle,fa fa-times-circle,fa fa-check-circle,fa fa-question-circle,fa fa-info-circle ,fa fa-crosshairs ,fa fa-times-circle-o ,fa fa-check-circle-o ,fa fa-ban ,fa fa-arrow-left,fa fa-arrow-right,fa fa-arrow-up,fa fa-arrow-down,fa fa-mail-forward,fa fa-share,fa fa-expand,fa fa-compress,fa fa-plus,fa fa-minus,fa fa-asterisk,fa fa-exclamation-circle ,fa fa-gift ,fa fa-leaf ,fa fa-fire ,fa fa-eye ,fa fa-eye-slash,fa fa-warning,fa fa-exclamation-triangle,fa fa-plane,fa fa-calendar,fa fa-random,fa fa-comment,fa fa-magnet,fa fa-chevron-up,fa fa-chevron-down,fa fa-retweet,fa fa-shopping-cart ,fa fa-folder ,fa fa-folder-open ,fa fa-arrows-v ,fa fa-arrows-h ,fa fa-bar-chart-o,fa fa-bar-chart,fa fa-twitter-square,fa fa-facebook-square,fa fa-camera-retro,fa fa-key,fa fa-gears,fa fa-cogs,fa fa-comments,fa fa-thumbs-o-up,fa fa-thumbs-o-down,fa fa-star-half,fa fa-heart-o ,fa fa-sign-out ,fa fa-linkedin-square ,fa fa-thumb-tack ,fa fa-external-link ,fa fa-sign-in,fa fa-trophy,fa fa-github-square,fa fa-upload,fa fa-lemon-o,fa fa-phone,fa fa-square-o,fa fa-bookmark-o,fa fa-phone-square,fa fa-twitter,fa fa-facebook-f,fa fa-facebook ,fa fa-github ,fa fa-unlock ,fa fa-credit-card ,fa fa-rss ,fa fa-hdd-o ,fa fa-bullhorn ,fa fa-bell ,fa fa-certificate ,fa fa-hand-o-right ,fa fa-hand-o-left ,fa fa-hand-o-up ,fa fa-hand-o-down ,fa fa-arrow-circle-left ,fa fa-arrow-circle-right ,fa fa-arrow-circle-up,fa fa-arrow-circle-down,fa fa-globe,fa fa-wrench,fa fa-tasks,fa fa-filter ,fa fa-briefcase ,fa fa-arrows-alt ,fa fa-group,fa fa-users ,fa fa-chain,fa fa-link ,fa fa-cloud ,fa fa-flask ,fa fa-cut,fa fa-scissors ,fa fa-copy,fa fa-files-o ,fa fa-paperclip ,fa fa-save,fa fa-floppy-o ,fa fa-square ,fa fa-navicon,fa fa-reorder,fa fa-bars ,fa fa-list-ul,fa fa-list-ol,fa fa-strikethrough,fa fa-underline,fa fa-table,fa fa-magic ,fa fa-truck ,fa fa-pinterest ,fa fa-pinterest-square ,fa fa-google-plus-square ,fa fa-google-plus ,fa fa-money ,fa fa-caret-down ,fa fa-caret-up ,fa fa-caret-left ,fa fa-caret-right,fa fa-columns,fa fa-unsorted,fa fa-sort,fa fa-sort-down,fa fa-sort-desc,fa fa-sort-up,fa fa-sort-asc,fa fa-envelope ,fa fa-linkedin ,fa fa-rotate-left,fa fa-undo ,fa fa-legal,fa fa-gavel ,fa fa-dashboard,fa fa-tachometer ,fa fa-comment-o ,fa fa-comments-o ,fa fa-flash,fa fa-bolt ,fa fa-sitemap ,fa fa-umbrella ,fa fa-paste,fa fa-clipboard,fa fa-lightbulb-o,fa fa-exchange,fa fa-cloud-download,fa fa-cloud-upload,fa fa-user-md ,fa fa-stethoscope ,fa fa-suitcase ,fa fa-bell-o ,fa fa-coffee ,fa fa-cutlery ,fa fa-file-text-o ,fa fa-building-o ,fa fa-hospital-o ,fa fa-ambulance ,fa fa-medkit,fa fa-fighter-jet ,fa fa-beer,fa fa-h-square fa fa-plus-square,fa fa-angle-double-left,fa fa-angle-double-right,fa fa-angle-double-up,fa fa-angle-double-down,fa fa-angle-left,fa fa-angle-right,fa fa-angle-up,fa fa-angle-down,fa fa-desktop,fa fa-laptop,fa fa-tablet ,fa fa-mobile-phone,fa fa-mobile ,fa fa-circle-o ,fa fa-quote-left ,fa fa-quote-right ,fa fa-spinner,fa fa-circle,fa fa-mail-reply,fa fa-reply,fa fa-github-alt,fa fa-folder-o,fa fa-folder-open-o,fa fa-smile-o,fa fa-frown-o,fa fa-meh-o ,fa fa-gamepad ,fa fa-keyboard-o ,fa fa-flag-o ,fa fa-flag-checkered ,fa fa-terminal,fa fa-code,fa fa-mail-reply-all,fa fa-reply-all,fa fa-star-half-empty,fa fa-star-half-full,fa fa-star-half-o,fa fa-location-arrow,fa fa-crop,fa fa-code-fork,fa fa-unlink,fa fa-chain-broken,fa fa-question,fa fa-info,fa fa-exclamation ,fa fa-superscript ,fa fa-subscript ,fa fa-eraser ,fa fa-puzzle-piece ,fa fa-microphone,fa fa-microphone-slash,fa fa-shield,fa fa-calendar-o,fa fa-fire-extinguisher,fa fa-rocket,fa fa-maxcdn,fa fa-chevron-circle-left,fa fa-chevron-circle-right,fa fa-chevron-circle-up,fa fa-chevron-circle-down ,fa fa-html ,fa fa-css ,fa fa-anchor ,fa fa-unlock-alt ,fa fa-bullseye,fa fa-ellipsis-h,fa fa-ellipsis-v,fa fa-rss-square,fa fa-play-circle,fa fa-ticket,fa fa-minus-square,fa fa-minus-square-o,fa fa-level-up,fa fa-level-down,fa fa-check-square ,fa fa-pencil-square ,fa fa-external-link-square ,fa fa-share-square ,fa fa-compass ,fa fa-toggle-down,fa fa-caret-square-o-down,fa fa-toggle-up,fa fa-caret-square-o-up,fa fa-toggle-right,fa fa-caret-square-o-right,fa fa-euro,fa fa-eur,fa fa-gbp,fa fa-dollar,fa fa-usd,fa fa-rupee,fa fa-inr,fa fa-cny,fa fa-rmb,fa fa-yen,fa fa-jpy,fa fa-ruble,fa fa-rouble,fa fa-rub,fa fa-won,fa fa-krw,fa fa-bitcoin,fa fa-btc ,fa fa-file ,fa fa-file-text ,fa fa-sort-alpha-asc ,fa fa-sort-alpha-desc ,fa fa-sort-amount-asc,fa fa-sort-amount-desc,fa fa-sort-numeric-asc,fa fa-sort-numeric-desc,fa fa-thumbs-up,fa fa-thumbs-down,fa fa-youtube-square,fa fa-youtube,fa fa-xing,fa fa-xing-square,fa fa-youtube-play ,fa fa-dropbox ,fa fa-stack-overflow ,fa fa-instagram ,fa fa-flickr ,fa fa-adn,fa fa-bitbucket,fa fa-bitbucket-square,fa fa-tumblr,fa fa-tumblr-square,fa fa-long-arrow-down,fa fa-long-arrow-up,fa fa-long-arrow-left,fa fa-long-arrow-right,fa fa-apple,fa fa-windows ,fa fa-android ,fa fa-linux ,fa fa-dribbble ,fa fa-skype ,fa fa-foursquare,fa fa-trello,fa fa-female,fa fa-male,fa fa-gittip,fa fa-gratipay,fa fa-sun-o,fa fa-moon-o,fa fa-archive,fa fa-bug,fa fa-vk,fa fa-weibo ,fa fa-renren ,fa fa-pagelines ,fa fa-stack-exchange ,fa fa-arrow-circle-o-right ,fa fa-arrow-circle-o-left,fa fa-toggle-left,fa fa-caret-square-o-left,fa fa-dot-circle-o,fa fa-wheelchair,fa fa-vimeo-square,fa fa-turkish-lira,fa fa-try,fa fa-plus-square-o,fa fa-space-shuttle,fa fa-slack,fa fa-envelope-square,fa fa-wordpress ,fa fa-openid ,fa fa-institution,fa fa-bank,fa fa-university ,fa fa-mortar-board,fa fa-graduation-cap ,fa fa-yahoo ,fa fa-google ,fa fa-reddit ,fa fa-reddit-square ,fa fa-stumbleupon-circle ,fa fa-stumbleupon ,fa fa-delicious ,fa fa-digg ,fa fa-pied-piper ,fa fa-pied-piper-alt ,fa fa-drupal ,fa fa-joomla,fa fa-language,fa fa-fax,fa fa-building,fa fa-child,fa fa-paw ,fa fa-spoon ,fa fa-cube ,fa fa-cubes ,fa fa-behance ,fa fa-behance-square ,fa fa-steam ,fa fa-steam-square ,fa fa-recycle ,fa fa-automobile,fa fa-car ,fa fa-cab,fa fa-taxi,fa fa-tree,fa fa-spotify,fa fa-deviantart,fa fa-soundcloud,fa fa-database ,fa fa-file-pdf-o ,fa fa-file-word-o ,fa fa-file-excel-o ,fa fa-file-powerpoint-o ,fa fa-file-photo-o,fa fa-file-picture-o,fa fa-file-image-o ,fa fa-file-zip-o,fa fa-file-archive-o ,fa fa-file-sound-o,fa fa-file-audio-o ,fa fa-file-movie-o,fa fa-file-video-o ,fa fa-file-code-o ,fa fa-vine,fa fa-codepen,fa fa-jsfiddle,fa fa-life-bouy,fa fa-life-buoy,fa fa-life-saver,fa fa-support,fa fa-life-ring,fa fa-circle-o-notch,fa fa-ra,fa fa-rebel ,fa fa-ge,fa fa-empire ,fa fa-git-square ,fa fa-git ,fa fa-hacker-news ,fa fa-tencent-weibo ,fa fa-qq ,fa fa-wechat,fa fa-weixin ,fa fa-send,fa fa-paper-plane ,fa fa-send-o,fa fa-paper-plane-o ,fa fa-history,fa fa-genderless,fa fa-circle-thin,fa fa-header,fa fa-paragraph,fa fa-sliders,fa fa-share-alt ,fa fa-share-alt-square ,fa fa-bomb ,fa fa-soccer-ball-o,fa fa-futbol-o ,fa fa-tty ,fa fa-binoculars ,fa fa-plug ,fa fa-slideshare ,fa fa-twitch ,fa fa-yelp ,fa fa-newspaper-o,fa fa-wifi,fa fa-calculator,fa fa-paypal,fa fa-google-wallet,fa fa-cc-visa ,fa fa-cc-mastercard ,fa fa-cc-discover ,fa fa-cc-amex ,fa fa-cc-paypal ,fa fa-cc-stripe ,fa fa-bell-slash ,fa fa-bell-slash-o ,fa fa-trash ,fa fa-copyright ,fa fa-at,fa fa-eyedropper,fa fa-paint-brush,fa fa-birthday-cake,fa fa-area-chart,fa fa-pie-chart,fa fa-line-chart,fa fa-lastfm,fa fa-lastfm-square,fa fa-toggle-off,fa fa-toggle-on,fa fa-bicycle,fa fa-bus,fa fa-ioxhost,fa fa-angellist,fa fa-cc ,fa fa-shekel,fa fa-sheqel,fa fa-ils ,fa fa-meanpath ,fa fa-buysellads ,fa fa-connectdevelop ,fa fa-dashcube,fa fa-forumbee,fa fa-leanpub,fa fa-sellsy,fa fa-shirtsinbulk,fa fa-simplybuilt,fa fa-skyatlas,fa fa-cart-plus,fa fa-cart-arrow-down,fa fa-diamond,fa fa-ship ,fa fa-user-secret ,fa fa-motorcycle ,fa fa-street-view ,fa fa-heartbeat ,fa fa-venus,fa fa-mars,fa fa-mercury,fa fa-transgender,fa fa-transgender-alt,fa fa-venus-double,fa fa-mars-double,fa fa-venus-mars,fa fa-mars-stroke,fa fa-mars-stroke-v ,fa fa-mars-stroke-h ,fa fa-neuter ,fa fa-facebook-official,fa fa-pinterest-p,fa fa-whatsapp,fa fa-server,fa fa-user-plus,fa fa-user-times,fa fa-hotel,fa fa-bed,fa fa-viacoin,fa fa-train,fa fa-subway,fa fa-medium',
635 ),
636 'fontawesome5' => array(
637 'name' => 'FontAwesome 5',
638 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/fontawesome5/css/all.min.css',
639 'iconmap' => 'fab fa-500px,fab fa-accessible-icon,fab fa-accusoft,fab fa-adn,fab fa-adversal,fab fa-algolia,fab fa-alipay,fab fa-amazon,fab fa-amazon-pay,fab fa-app-store,fab fa-app-store-ios,fab fa-apper,fab fa-apple,fas fa-apple-alt,fab fa-apple-pay,fab fa-affiliatetheme,fas fa-ad,fas fa-address-book,fas fa-address-card,fas fa-adjust,fas fa-air-freshener,fas fa-align-center,fas fa-align-justify,fas fa-align-left,fas fa-align-right,fas fa-allergies,fas fa-ambulance,fas fa-american-sign-language-interpreting,fab fa-amilia,fas fa-anchor,fab fa-android,fab fa-angellist,fas fa-angle-double-down,fas fa-angle-double-left,fas fa-angle-double-right,fas fa-angle-double-up,fas fa-angle-down,fas fa-angle-left,fas fa-angle-right,fas fa-angle-up,fas fa-angry,fab fa-angrycreative,fab fa-angular,fas fa-ankh,fas fa-archive,fas fa-archway,fas fa-arrow-alt-circle-down,fas fa-arrow-alt-circle-left,fas fa-arrow-alt-circle-right,fas fa-arrow-alt-circle-up,fas fa-arrow-circle-down,fas fa-arrow-circle-left,fas fa-arrow-circle-right,fas fa-arrow-circle-up,fas fa-arrow-down,fas fa-arrow-left,fas fa-arrow-right,fas fa-arrow-up,fas fa-arrows-alt,fas fa-arrows-alt-h,fas fa-arrows-alt-v,fas fa-assistive-listening-systems,fas fa-asterisk,fab fa-asymmetrik,fas fa-at,fas fa-atlas,fas fa-atom,fab fa-audible,fas fa-audio-description,fab fa-autoprefixer,fab fa-avianex,fab fa-aviato,fas fa-award,fab fa-aws,fas fa-backspace,fas fa-backward,fas fa-balance-scale,fas fa-ban,fas fa-band-aid,fab fa-bandcamp,fas fa-barcode,fas fa-bars,fas fa-baseball-ball,fas fa-basketball-ball,fas fa-bath,fas fa-battery-empty,fas fa-battery-full,fas fa-battery-half,fas fa-battery-quarter,fas fa-battery-three-quarters,fas fa-bed,fas fa-beer,fab fa-behance,fab fa-behance-square,fas fa-bell,fas fa-bell-slash,fas fa-bezier-curve,fas fa-bible,fas fa-bicycle,fab fa-bimobject,fas fa-binoculars,fas fa-birthday-cake,fab fa-bitbucket,fab fa-bitcoin,fab fa-bity,fab fa-black-tie,fab fa-blackberry,fas fa-blender,fas fa-blind,fab fa-blogger,fab fa-blogger-b,fab fa-bluetooth,fab fa-bluetooth-b,fas fa-bold,fas fa-bolt,fas fa-bomb,fas fa-bone,fas fa-bong,fas fa-book,fas fa-book-open,fas fa-book-reader,fas fa-bookmark,fas fa-bowling-ball,fas fa-box,fas fa-box-open,fas fa-boxes,fas fa-braille,fas fa-brain,fas fa-briefcase,fas fa-briefcase-medical,fas fa-broadcast-tower,fas fa-broom,fas fa-brush,fab fa-btc,fas fa-bug,fas fa-building,fas fa-bullhorn,fas fa-bullseye,fas fa-burn,fab fa-buromobelexperte,fas fa-bus,fas fa-bus-alt,fas fa-business-time,fab fa-buysellads,fas fa-calculator,fas fa-calendar,fas fa-calendar-alt,fas fa-calendar-check,fas fa-calendar-minus,fas fa-calendar-plus,fas fa-calendar-times,fas fa-camera,fas fa-camera-retro,fas fa-cannabis,fas fa-capsules,fas fa-car,fas fa-car-alt,fas fa-car-battery,fas fa-car-crash,fas fa-car-side,fas fa-caret-down,fas fa-caret-left,fas fa-caret-right,fas fa-caret-square-down,fas fa-caret-square-left,fas fa-caret-square-right,fas fa-caret-square-up,fas fa-caret-up,fas fa-cart-arrow-down,fas fa-cart-plus,fab fa-cc-amazon-pay,fab fa-cc-amex,fab fa-cc-apple-pay,fab fa-cc-diners-club,fab fa-cc-discover,fab fa-cc-jcb,fab fa-cc-mastercard,fab fa-cc-paypal,fab fa-cc-stripe,fab fa-cc-visa,fab fa-centercode,fas fa-certificate,fas fa-chalkboard,fas fa-chalkboard-teacher,fas fa-charging-station,fas fa-chart-area,fas fa-chart-bar,fas fa-chart-line,fas fa-chart-pie,fas fa-check,fas fa-check-circle,fas fa-check-double,fas fa-check-square,fas fa-chess,fas fa-chess-bishop,fas fa-chess-board,fas fa-chess-king,fas fa-chess-knight,fas fa-chess-pawn,fas fa-chess-queen,fas fa-chess-rook,fas fa-chevron-circle-down,fas fa-chevron-circle-left,fas fa-chevron-circle-right,fas fa-chevron-circle-up,fas fa-chevron-down,fas fa-chevron-left,fas fa-chevron-right,fas fa-chevron-up,fas fa-child,fab fa-chrome,fas fa-church,fas fa-circle,fas fa-circle-notch,fas fa-city,fas fa-clipboard,fas fa-clipboard-check,fas fa-clipboard-list,fas fa-clock,fas fa-clone,fas fa-closed-captioning,fas fa-cloud,fas fa-cloud-download-alt,fas fa-cloud-upload-alt,fab fa-cloudscale,fab fa-cloudsmith,fab fa-cloudversify,fas fa-cocktail,fas fa-code,fas fa-code-branch,fab fa-codepen,fab fa-codiepie,fas fa-coffee,fas fa-cog,fas fa-cogs,fas fa-coins,fas fa-columns,fas fa-comment,fas fa-comment-alt,fas fa-comment-dollar,fas fa-comment-dots,fas fa-comment-slash,fas fa-comments,fas fa-comments-dollar,fas fa-compact-disc,fas fa-compass,fas fa-compress,fas fa-concierge-bell,fab fa-connectdevelop,fab fa-contao,fas fa-cookie,fas fa-cookie-bite,fas fa-copy,fas fa-copyright,fas fa-couch,fab fa-cpanel,fab fa-creative-commons,fab fa-creative-commons-by,fab fa-creative-commons-nc,fab fa-creative-commons-nc-eu,fab fa-creative-commons-nc-jp,fab fa-creative-commons-nd,fab fa-creative-commons-pd,fab fa-creative-commons-pd-alt,fab fa-creative-commons-remix,fab fa-creative-commons-sa,fab fa-creative-commons-sampling,fab fa-creative-commons-sampling-plus,fab fa-creative-commons-share,fas fa-credit-card,fas fa-crop,fas fa-crop-alt,fas fa-cross,fas fa-crosshairs,fas fa-crow,fas fa-crown,fab fa-css3,fab fa-css3-alt,fas fa-cube,fas fa-cubes,fas fa-cut,fab fa-cuttlefish,fab fa-d-and-d,fab fa-dashcube,fas fa-database,fas fa-deaf,fab fa-delicious,fab fa-deploydog,fab fa-deskpro,fas fa-desktop,fab fa-deviantart,fas fa-dharmachakra,fas fa-diagnoses,fas fa-dice,fas fa-dice-five,fas fa-dice-four,fas fa-dice-one,fas fa-dice-six,fas fa-dice-three,fas fa-dice-two,fab fa-digg,fab fa-digital-ocean,fas fa-digital-tachograph,fas fa-directions,fab fa-discord,fab fa-discourse,fas fa-divide,fas fa-dizzy,fas fa-dna,fab fa-dochub,fab fa-docker,fas fa-dollar-sign,fas fa-dolly,fas fa-dolly-flatbed,fas fa-donate,fas fa-door-closed,fas fa-door-open,fas fa-dot-circle,fas fa-dove,fas fa-download,fab fa-draft2digital,fas fa-drafting-compass,fas fa-draw-polygon,fab fa-dribbble,fab fa-dribbble-square,fab fa-dropbox,fas fa-drum,fas fa-drum-steelpan,fab fa-drupal,fas fa-dumbbell,fab fa-dyalog,fab fa-earlybirds,fab fa-ebay,fab fa-edge,fas fa-edit,fas fa-eject,fab fa-elementor,fas fa-ellipsis-h,fas fa-ellipsis-v,fab fa-ello,fab fa-ember,fab fa-empire,fas fa-envelope,fas fa-envelope-open,fas fa-envelope-open-text,fas fa-envelope-square,fab fa-envira,fas fa-equals,fas fa-eraser,fab fa-erlang,fab fa-ethereum,fab fa-etsy,fas fa-euro-sign,fas fa-exchange-alt,fas fa-exclamation,fas fa-exclamation-circle,fas fa-exclamation-triangle,fas fa-expand,fas fa-expand-arrows-alt,fab fa-expeditedssl,fas fa-external-link-alt,fas fa-external-link-square-alt,fas fa-eye,fas fa-eye-dropper,fas fa-eye-slash,fab fa-facebook,fab fa-facebook-f,fab fa-facebook-messenger,fab fa-facebook-square,fas fa-fast-backward,fas fa-fast-forward,fas fa-fax,fas fa-feather,fas fa-feather-alt,fas fa-female,fas fa-fighter-jet,fas fa-file,fas fa-file-alt,fas fa-file-archive,fas fa-file-audio,fas fa-file-code,fas fa-file-contract,fas fa-file-download,fas fa-file-excel,fas fa-file-export,fas fa-file-image,fas fa-file-import,fas fa-file-invoice,fas fa-file-invoice-dollar,fas fa-file-medical,fas fa-file-medical-alt,fas fa-file-pdf,fas fa-file-powerpoint,fas fa-file-prescription,fas fa-file-signature,fas fa-file-upload,fas fa-file-video,fas fa-file-word,fas fa-fill,fas fa-fill-drip,fas fa-film,fas fa-filter,fas fa-fingerprint,fas fa-fire,fas fa-fire-extinguisher,fab fa-firefox,fas fa-first-aid,fab fa-first-order,fab fa-first-order-alt,fab fa-firstdraft,fas fa-fish,fas fa-flag,fas fa-flag-checkered,fas fa-flask,fab fa-flickr,fab fa-flipboard,fas fa-flushed,fab fa-fly,fas fa-folder,fas fa-folder-minus,fas fa-folder-open,fas fa-folder-plus,fas fa-font,fab fa-font-awesome,fab fa-font-awesome-alt,fab fa-font-awesome-flag,fab fa-fonticons,fab fa-fonticons-fi,fas fa-football-ball,fab fa-fort-awesome,fab fa-fort-awesome-alt,fab fa-forumbee,fas fa-forward,fab fa-foursquare,fab fa-free-code-camp,fab fa-freebsd,fas fa-frog,fas fa-frown,fas fa-frown-open,fab fa-fulcrum,fas fa-funnel-dollar,fas fa-futbol,fab fa-galactic-republic,fab fa-galactic-senate,fas fa-gamepad,fas fa-gas-pump,fas fa-gavel,fas fa-gem,fas fa-genderless,fab fa-get-pocket,fab fa-gg,fab fa-gg-circle,fas fa-gift,fab fa-git,fab fa-git-square,fab fa-github,fab fa-github-alt,fab fa-github-square,fab fa-gitkraken,fab fa-gitlab,fab fa-gitter,fas fa-glass-martini,fas fa-glass-martini-alt,fas fa-glasses,fab fa-glide,fab fa-glide-g,fas fa-globe,fas fa-globe-africa,fas fa-globe-americas,fas fa-globe-asia,fab fa-gofore,fas fa-golf-ball,fab fa-goodreads,fab fa-goodreads-g,fab fa-google,fab fa-google-drive,fab fa-google-play,fab fa-google-plus,fab fa-google-plus-g,fab fa-google-plus-square,fab fa-google-wallet,fas fa-gopuram,fas fa-graduation-cap,fab fa-gratipay,fab fa-grav,fas fa-greater-than,fas fa-greater-than-equal,fas fa-grimace,fas fa-grin,fas fa-grin-alt,fas fa-grin-beam,fas fa-grin-beam-sweat,fas fa-grin-hearts,fas fa-grin-squint,fas fa-grin-squint-tears,fas fa-grin-stars,fas fa-grin-tears,fas fa-grin-tongue,fas fa-grin-tongue-squint,fas fa-grin-tongue-wink,fas fa-grin-wink,fas fa-grip-horizontal,fas fa-grip-vertical,fab fa-gripfire,fab fa-grunt,fab fa-gulp,fas fa-h-square,fab fa-hacker-news,fab fa-hacker-news-square,fab fa-hackerrank,fas fa-hamsa,fas fa-hand-holding,fas fa-hand-holding-heart,fas fa-hand-holding-usd,fas fa-hand-lizard,fas fa-hand-paper,fas fa-hand-peace,fas fa-hand-point-down,fas fa-hand-point-left,fas fa-hand-point-right,fas fa-hand-point-up,fas fa-hand-pointer,fas fa-hand-rock,fas fa-hand-scissors,fas fa-hand-spock,fas fa-hands,fas fa-hands-helping,fas fa-handshake,fas fa-hashtag,fas fa-haykal,fas fa-hdd,fas fa-heading,fas fa-headphones,fas fa-headphones-alt,fas fa-headset,fas fa-heart,fas fa-heartbeat,fas fa-helicopter,fas fa-highlighter,fab fa-hips,fab fa-hire-a-helper,fas fa-history,fas fa-hockey-puck,fas fa-home,fab fa-hooli,fab fa-hornbill,far fa-hospital,fas fa-hospital-alt,fas fa-hospital-symbol,fas fa-hot-tub,fas fa-hotel,fab fa-hotjar,fas fa-hourglass,fas fa-hourglass-end,fas fa-hourglass-half,fas fa-hourglass-start,fab fa-houzz,fab fa-html5,fab fa-hubspot,fas fa-i-cursor,fas fa-id-badge,fas fa-id-card,fas fa-id-card-alt,fas fa-image,fas fa-images,fab fa-imdb,fas fa-inbox,fas fa-indent,fas fa-industry,fas fa-infinity,fas fa-info,fas fa-info-circle,fab fa-instagram,fab fa-internet-explorer,fab fa-ioxhost,fas fa-italic,fab fa-itunes,fab fa-itunes-note,fab fa-java,fas fa-jedi,fab fa-jedi-order,fab fa-jenkins,fab fa-joget,fas fa-joint,fab fa-joomla,fas fa-journal-whills,fab fa-js,fab fa-js-square,fab fa-jsfiddle,fas fa-kaaba,fab fa-kaggle,fas fa-key,fab fa-keybase,fas fa-keyboard,fab fa-keycdn,fas fa-khanda,fab fa-kickstarter,fab fa-kickstarter-k,fas fa-kiss,fas fa-kiss-beam,fas fa-kiss-wink-heart,fas fa-kiwi-bird,fab fa-korvue,fas fa-landmark,fas fa-language,fas fa-laptop,fas fa-laptop-code,fab fa-laravel,fab fa-lastfm,fab fa-lastfm-square,fas fa-laugh,fas fa-laugh-beam,fas fa-laugh-squint,fas fa-laugh-wink,fas fa-layer-group,fas fa-leaf,fab fa-leanpub,fas fa-lemon,fab fa-less,fas fa-less-than,fas fa-less-than-equal,fas fa-level-down-alt,fas fa-level-up-alt,fas fa-life-ring,fas fa-lightbulb,fab fa-line,fas fa-link,fab fa-linkedin,fab fa-linkedin-in,fab fa-linode,fab fa-linux,fas fa-lira-sign,fas fa-list,fas fa-list-alt,fas fa-list-ol,fas fa-list-ul,fas fa-location-arrow,fas fa-lock,fas fa-lock-open,fas fa-long-arrow-alt-down,fas fa-long-arrow-alt-left,fas fa-long-arrow-alt-right,fas fa-long-arrow-alt-up,fas fa-low-vision,fas fa-luggage-cart,fab fa-lyft,fab fa-magento,fas fa-magic,fas fa-magnet,fas fa-mail-bulk,fab fa-mailchimp,fas fa-male,fab fa-mandalorian,fas fa-map,fas fa-map-marked,fas fa-map-marked-alt,fas fa-map-marker,fas fa-map-marker-alt,fas fa-map-pin,fas fa-map-signs,fab fa-markdown,fas fa-marker,fas fa-mars,fas fa-mars-double,fas fa-mars-stroke,fas fa-mars-stroke-h,fas fa-mars-stroke-v,fab fa-mastodon,fab fa-maxcdn,fas fa-medal,fab fa-medapps,fab fa-medium,fab fa-medium-m,fas fa-medkit,fab fa-medrt,fab fa-meetup,fab fa-megaport,fas fa-meh,fas fa-meh-blank,fas fa-meh-rolling-eyes,fas fa-memory,fas fa-menorah,fas fa-mercury,fas fa-microchip,fas fa-microphone,fas fa-microphone-alt,fas fa-microphone-alt-slash,fas fa-microphone-slash,fas fa-microscope,fab fa-microsoft,fas fa-minus,fas fa-minus-circle,fas fa-minus-square,fab fa-mix,fab fa-mixcloud,fab fa-mizuni,fas fa-mobile,fas fa-mobile-alt,fab fa-modx,fab fa-monero,fas fa-money-bill,fas fa-money-bill-alt,fas fa-money-bill-wave,fas fa-money-bill-wave-alt,fas fa-money-check,fas fa-money-check-alt,fas fa-monument,fas fa-moon,fas fa-mortar-pestle,fas fa-mosque,fas fa-motorcycle,fas fa-mouse-pointer,fas fa-music,fab fa-napster,fab fa-neos,fas fa-neuter,fas fa-newspaper,fab fa-nimblr,fab fa-nintendo-switch,fab fa-node,fab fa-node-js,fas fa-not-equal,fas fa-notes-medical,fab fa-npm,fab fa-ns8,fab fa-nutritionix,fas fa-object-group,fas fa-object-ungroup,fab fa-odnoklassniki,fab fa-odnoklassniki-square,fas fa-oil-can,fab fa-old-republic,fas fa-om,fab fa-opencart,fab fa-openid,fab fa-opera,fab fa-optin-monster,fab fa-osi,fas fa-outdent,fab fa-page4,fab fa-pagelines,fas fa-paint-brush,fas fa-paint-roller,fas fa-palette,fab fa-palfed,fas fa-pallet,fas fa-paper-plane,fas fa-paperclip,fas fa-parachute-box,fas fa-paragraph,fas fa-parking,fas fa-passport,fas fa-pastafarianism,fas fa-paste,fab fa-patreon,fas fa-pause,fas fa-pause-circle,fas fa-paw,fab fa-paypal,fas fa-peace,fas fa-pen,fas fa-pen-alt,fas fa-pen-fancy,fas fa-pen-nib,fas fa-pen-square,fas fa-pencil-alt,fas fa-pencil-ruler,fas fa-people-carry,fas fa-percent,fas fa-percentage,fab fa-periscope,fab fa-phabricator,fab fa-phoenix-framework,fab fa-phoenix-squadron,fas fa-phone,fas fa-phone-slash,fas fa-phone-square,fas fa-phone-volume,fab fa-php,fab fa-pied-piper,fab fa-pied-piper-alt,fab fa-pied-piper-hat,fab fa-pied-piper-pp,fas fa-piggy-bank,fas fa-pills,fab fa-pinterest,fab fa-pinterest-p,fab fa-pinterest-square,fas fa-place-of-worship,fas fa-plane,fas fa-plane-arrival,fas fa-plane-departure,fas fa-play,fas fa-play-circle,fab fa-playstation,fas fa-plug,fas fa-plus,fas fa-plus-circle,fas fa-plus-square,fas fa-podcast,fas fa-poll,fas fa-poll-h,fas fa-poo,fas fa-poop,fas fa-portrait,fas fa-pound-sign,fas fa-power-off,fas fa-pray,fas fa-praying-hands,fas fa-prescription,fas fa-prescription-bottle,fas fa-prescription-bottle-alt,fas fa-print,fas fa-procedures,fab fa-product-hunt,fas fa-project-diagram,fab fa-pushed,fas fa-puzzle-piece,fab fa-python,fab fa-qq,fas fa-qrcode,fas fa-question,fas fa-question-circle,fas fa-quidditch,fab fa-quinscape,fab fa-quora,fas fa-quote-left,fas fa-quote-right,fas fa-quran,fab fa-r-project,fas fa-random,fab fa-ravelry,fab fa-react,fab fa-readme,fab fa-rebel,fas fa-receipt,fas fa-recycle,fab fa-red-river,fab fa-reddit,fab fa-reddit-alien,fab fa-reddit-square,fas fa-redo,fas fa-redo-alt,fas fa-registered,fab fa-rendact,fab fa-renren,fas fa-reply,fas fa-reply-all,fab fa-replyd,fab fa-researchgate,fab fa-resolving,fas fa-retweet,fab fa-rev,fas fa-ribbon,fas fa-road,fas fa-robot,fas fa-rocket,fab fa-rocketchat,fab fa-rockrms,fas fa-route,fas fa-rss,fas fa-rss-square,fas fa-ruble-sign,fas fa-ruler,fas fa-ruler-combined,fas fa-ruler-horizontal,fas fa-ruler-vertical,fas fa-rupee-sign,fas fa-sad-cry,fas fa-sad-tear,fab fa-safari,fab fa-sass,fas fa-save,fab fa-schlix,fas fa-school,fas fa-screwdriver,fab fa-scribd,fas fa-search,fas fa-search-dollar,fas fa-search-location,fas fa-search-minus,fas fa-search-plus,fab fa-searchengin,fas fa-seedling,fab fa-sellcast,fab fa-sellsy,fas fa-server,fab fa-servicestack,fas fa-shapes,fas fa-share,fas fa-share-alt,fas fa-share-alt-square,fas fa-share-square,fas fa-shekel-sign,fas fa-shield-alt,fas fa-ship,fas fa-shipping-fast,fab fa-shirtsinbulk,fas fa-shoe-prints,fas fa-shopping-bag,fas fa-shopping-basket,fas fa-shopping-cart,fab fa-shopware,fas fa-shower,fas fa-shuttle-van,fas fa-sign,fas fa-sign-in-alt,fas fa-sign-language,fas fa-sign-out-alt,fas fa-signal,fas fa-signature,fab fa-simplybuilt,fab fa-sistrix,fas fa-sitemap,fab fa-sith,fas fa-skull,fab fa-skyatlas,fab fa-skype,fab fa-slack,fab fa-slack-hash,fas fa-sliders-h,fab fa-slideshare,fas fa-smile,fas fa-smile-beam,fas fa-smile-wink,fas fa-smoking,fas fa-smoking-ban,fab fa-snapchat,fab fa-snapchat-ghost,fab fa-snapchat-square,fas fa-snowflake,fas fa-socks,fas fa-solar-panel,fas fa-sort,fas fa-sort-alpha-down,fas fa-sort-alpha-up,fas fa-sort-amount-down,fas fa-sort-amount-up,fas fa-sort-down,fas fa-sort-numeric-down,fas fa-sort-numeric-up,fas fa-sort-up,fab fa-soundcloud,fas fa-spa,fas fa-space-shuttle,fab fa-speakap,fas fa-spinner,fas fa-splotch,fab fa-spotify,fas fa-spray-can,fas fa-square,fas fa-square-full,fas fa-square-root-alt,fab fa-squarespace,fab fa-stack-exchange,fab fa-stack-overflow,fas fa-stamp,fas fa-star,fas fa-star-and-crescent,fas fa-star-half,fas fa-star-half-alt,fas fa-star-of-david,fas fa-star-of-life,fab fa-staylinked,fab fa-steam,fab fa-steam-square,fab fa-steam-symbol,fas fa-step-backward,fas fa-step-forward,fas fa-stethoscope,fab fa-sticker-mule,fas fa-sticky-note,fas fa-stop,fas fa-stop-circle,fas fa-stopwatch,fas fa-store,fas fa-store-alt,fab fa-strava,fas fa-stream,fas fa-street-view,fas fa-strikethrough,fab fa-stripe,fab fa-stripe-s,fas fa-stroopwafel,fab fa-studiovinari,fab fa-stumbleupon,fab fa-stumbleupon-circle,fas fa-subscript,fas fa-subway,fas fa-suitcase,fas fa-suitcase-rolling,fas fa-sun,fab fa-superpowers,fas fa-superscript,fab fa-supple,fas fa-surprise,fas fa-swatchbook,fas fa-swimmer,fas fa-swimming-pool,fas fa-synagogue,fas fa-sync,fas fa-sync-alt,fas fa-syringe,fas fa-table,fas fa-table-tennis,fas fa-tablet,fas fa-tablet-alt,fas fa-tablets,fas fa-tachometer-alt,fas fa-tag,fas fa-tags,fas fa-tape,fas fa-tasks,fas fa-taxi,fab fa-teamspeak,fas fa-teeth,fas fa-teeth-open,fab fa-telegram,fab fa-telegram-plane,fab fa-tencent-weibo,fas fa-terminal,fas fa-text-height,fas fa-text-width,fas fa-th,fas fa-th-large,fas fa-th-list,fab fa-the-red-yeti,fas fa-theater-masks,fab fa-themeco,fab fa-themeisle,fas fa-thermometer,fas fa-thermometer-empty,fas fa-thermometer-full,fas fa-thermometer-half,fas fa-thermometer-quarter,fas fa-thermometer-three-quarters,fas fa-thumbs-down,fas fa-thumbs-up,fas fa-thumbtack,fas fa-ticket-alt,fas fa-times,fas fa-times-circle,fas fa-tint,fas fa-tint-slash,fas fa-tired,fas fa-toggle-off,fas fa-toggle-on,fas fa-toolbox,fas fa-tooth,fas fa-torah,fas fa-torii-gate,fab fa-trade-federation,fas fa-trademark,fas fa-traffic-light,fas fa-train,fas fa-transgender,fas fa-transgender-alt,fas fa-trash,fas fa-trash-alt,fas fa-tree,fab fa-trello,fab fa-tripadvisor,fas fa-trophy,fas fa-truck,fas fa-truck-loading,fas fa-truck-monster,fas fa-truck-moving,fas fa-truck-pickup,fas fa-tshirt,fas fa-tty,fab fa-tumblr,fab fa-tumblr-square,fas fa-tv,fab fa-twitch,fab fa-twitter,fab fa-twitter-square,fab fa-typo3,fab fa-uber,fab fa-uikit,fas fa-umbrella,fas fa-umbrella-beach,fas fa-underline,fas fa-undo,fas fa-undo-alt,fab fa-uniregistry,fas fa-universal-access,fas fa-university,fas fa-unlink,fas fa-unlock,fas fa-unlock-alt,fab fa-untappd,fas fa-upload,fab fa-usb,fas fa-user,fas fa-user-alt,fas fa-user-alt-slash,fas fa-user-astronaut,fas fa-user-check,fas fa-user-circle,fas fa-user-clock,fas fa-user-cog,fas fa-user-edit,fas fa-user-friends,fas fa-user-graduate,fas fa-user-lock,fas fa-user-md,fas fa-user-minus,fas fa-user-ninja,fas fa-user-plus,fas fa-user-secret,fas fa-user-shield,fas fa-user-slash,fas fa-user-tag,fas fa-user-tie,fas fa-user-times,fas fa-users,fas fa-users-cog,fab fa-ussunnah,fas fa-utensil-spoon,fas fa-utensils,fab fa-vaadin,fas fa-vector-square,fas fa-venus,fas fa-venus-double,fas fa-venus-mars,fab fa-viacoin,fab fa-viadeo,fab fa-viadeo-square,fas fa-vial,fas fa-vials,fab fa-viber,fas fa-video,fas fa-video-slash,fas fa-vihara,fab fa-vimeo,fab fa-vimeo-square,fab fa-vimeo-v,fab fa-vine,fab fa-vk,fab fa-vnv,fas fa-volleyball-ball,fas fa-volume-down,fas fa-volume-off,fas fa-volume-up,fab fa-vuejs,fas fa-walking,fas fa-wallet,fas fa-warehouse,fab fa-weebly,fab fa-weibo,fas fa-weight,fas fa-weight-hanging,fab fa-weixin,fab fa-whatsapp,fab fa-whatsapp-square,fas fa-wheelchair,fab fa-whmcs,fas fa-wifi,fab fa-wikipedia-w,fas fa-window-close,fas fa-window-maximize,fas fa-window-minimize,fas fa-window-restore,fab fa-windows,fas fa-wine-glass,fas fa-wine-glass-alt,fab fa-wix,fab fa-wolf-pack-battalion,fas fa-won-sign,fab fa-wordpress,fab fa-wordpress-simple,fab fa-wpbeginner,fab fa-wpexplorer,fab fa-wpforms,fas fa-wrench,fas fa-x-ray,fab fa-xbox,fab fa-xing,fab fa-xing-square,fab fa-y-combinator,fab fa-yahoo,fab fa-yandex,fab fa-yandex-international,fab fa-yelp,fas fa-yen-sign,fas fa-yin-yang,fab fa-yoast,fab fa-youtube,fab fa-youtube-square,fab fa-zhihu',
640 ),
641 'fontawesome6' => array(
642 'name' => 'FontAwesome 6',
643 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/fontawesome6/css/all.min.css',
644 'iconmap' => 'fa fa-0,fa fa-1,fa fa-2,fa fa-3,fa fa-4,fa fa-5,fa fa-6,fa fa-7,fa fa-8,fa fa-9,fa fa-fill-drip,fa fa-arrows-to-circle,fa fa-circle-chevron-right,fa fa-chevron-circle-right,fa fa-at,fa fa-trash-can,fa fa-trash-alt,fa fa-text-height,fa fa-user-xmark,fa fa-user-times,fa fa-stethoscope,fa fa-message,fa fa-comment-alt,fa fa-info,fa fa-down-left-and-up-right-to-center,fa fa-compress-alt,fa fa-explosion,fa fa-file-lines,fa fa-file-alt,fa fa-file-text,fa fa-wave-square,fa fa-ring,fa fa-building-un,fa fa-dice-three,fa fa-calendar-days,fa fa-calendar-alt,fa fa-anchor-circle-check,fa fa-building-circle-arrow-right,fa fa-volleyball,fa fa-volleyball-ball,fa fa-arrows-up-to-line,fa fa-sort-down,fa fa-sort-desc,fa fa-circle-minus,fa fa-minus-circle,fa fa-door-open,fa fa-right-from-bracket,fa fa-sign-out-alt,fa fa-atom,fa fa-soap,fa fa-icons,fa fa-heart-music-camera-bolt,fa fa-microphone-lines-slash,fa fa-microphone-alt-slash,fa fa-bridge-circle-check,fa fa-pump-medical,fa fa-fingerprint,fa fa-hand-point-right,fa fa-magnifying-glass-location,fa fa-search-location,fa fa-forward-step,fa fa-step-forward,fa fa-face-smile-beam,fa fa-smile-beam,fa fa-flag-checkered,fa fa-football,fa fa-football-ball,fa fa-school-circle-exclamation,fa fa-crop,fa fa-angles-down,fa fa-angle-double-down,fa fa-users-rectangle,fa fa-people-roof,fa fa-people-line,fa fa-beer-mug-empty,fa fa-beer,fa fa-diagram-predecessor,fa fa-arrow-up-long,fa fa-long-arrow-up,fa fa-fire-flame-simple,fa fa-burn,fa fa-person,fa fa-male,fa fa-laptop,fa fa-file-csv,fa fa-menorah,fa fa-truck-plane,fa fa-record-vinyl,fa fa-face-grin-stars,fa fa-grin-stars,fa fa-bong,fa fa-spaghetti-monster-flying,fa fa-pastafarianism,fa fa-arrow-down-up-across-line,fa fa-spoon,fa fa-utensil-spoon,fa fa-jar-wheat,fa fa-envelopes-bulk,fa fa-mail-bulk,fa fa-file-circle-exclamation,fa fa-circle-h,fa fa-hospital-symbol,fa fa-pager,fa fa-address-book,fa fa-contact-book,fa fa-strikethrough,fa fa-k,fa fa-landmark-flag,fa fa-pencil,fa fa-pencil-alt,fa fa-backward,fa fa-caret-right,fa fa-comments,fa fa-paste,fa fa-file-clipboard,fa fa-code-pull-request,fa fa-clipboard-list,fa fa-truck-ramp-box,fa fa-truck-loading,fa fa-user-check,fa fa-vial-virus,fa fa-sheet-plastic,fa fa-blog,fa fa-user-ninja,fa fa-person-arrow-up-from-line,fa fa-scroll-torah,fa fa-torah,fa fa-broom-ball,fa fa-quidditch,fa fa-quidditch-broom-ball,fa fa-toggle-off,fa fa-box-archive,fa fa-archive,fa fa-person-drowning,fa fa-arrow-down-9-1,fa fa-sort-numeric-desc,fa fa-sort-numeric-down-alt,fa fa-face-grin-tongue-squint,fa fa-grin-tongue-squint,fa fa-spray-can,fa fa-truck-monster,fa fa-w,fa fa-earth-africa,fa fa-globe-africa,fa fa-rainbow,fa fa-circle-notch,fa fa-tablet-screen-button,fa fa-tablet-alt,fa fa-paw,fa fa-cloud,fa fa-trowel-bricks,fa fa-face-flushed,fa fa-flushed,fa fa-hospital-user,fa fa-tent-arrow-left-right,fa fa-gavel,fa fa-legal,fa fa-binoculars,fa fa-microphone-slash,fa fa-box-tissue,fa fa-motorcycle,fa fa-bell-concierge,fa fa-concierge-bell,fa fa-pen-ruler,fa fa-pencil-ruler,fa fa-people-arrows,fa fa-people-arrows-left-right,fa fa-mars-and-venus-burst,fa fa-square-caret-right,fa fa-caret-square-right,fa fa-scissors,fa fa-cut,fa fa-sun-plant-wilt,fa fa-toilets-portable,fa fa-hockey-puck,fa fa-table,fa fa-magnifying-glass-arrow-right,fa fa-tachograph-digital,fa fa-digital-tachograph,fa fa-users-slash,fa fa-clover,fa fa-reply,fa fa-mail-reply,fa fa-star-and-crescent,fa fa-house-fire,fa fa-square-minus,fa fa-minus-square,fa fa-helicopter,fa fa-compass,fa fa-square-caret-down,fa fa-caret-square-down,fa fa-file-circle-question,fa fa-laptop-code,fa fa-swatchbook,fa fa-prescription-bottle,fa fa-bars,fa fa-navicon,fa fa-people-group,fa fa-hourglass-end,fa fa-hourglass-3,fa fa-heart-crack,fa fa-heart-broken,fa fa-square-up-right,fa fa-external-link-square-alt,fa fa-face-kiss-beam,fa fa-kiss-beam,fa fa-film,fa fa-ruler-horizontal,fa fa-people-robbery,fa fa-lightbulb,fa fa-caret-left,fa fa-circle-exclamation,fa fa-exclamation-circle,fa fa-school-circle-xmark,fa fa-arrow-right-from-bracket,fa fa-sign-out,fa fa-circle-chevron-down,fa fa-chevron-circle-down,fa fa-unlock-keyhole,fa fa-unlock-alt,fa fa-cloud-showers-heavy,fa fa-headphones-simple,fa fa-headphones-alt,fa fa-sitemap,fa fa-circle-dollar-to-slot,fa fa-donate,fa fa-memory,fa fa-road-spikes,fa fa-fire-burner,fa fa-flag,fa fa-hanukiah,fa fa-feather,fa fa-volume-low,fa fa-volume-down,fa fa-comment-slash,fa fa-cloud-sun-rain,fa fa-compress,fa fa-wheat-awn,fa fa-wheat-alt,fa fa-ankh,fa fa-hands-holding-child,fa fa-asterisk,fa fa-square-check,fa fa-check-square,fa fa-peseta-sign,fa fa-heading,fa fa-header,fa fa-ghost,fa fa-list,fa fa-list-squares,fa fa-square-phone-flip,fa fa-phone-square-alt,fa fa-cart-plus,fa fa-gamepad,fa fa-circle-dot,fa fa-dot-circle,fa fa-face-dizzy,fa fa-dizzy,fa fa-egg,fa fa-house-medical-circle-xmark,fa fa-campground,fa fa-folder-plus,fa fa-futbol,fa fa-futbol-ball,fa fa-soccer-ball,fa fa-paintbrush,fa fa-paint-brush,fa fa-lock,fa fa-gas-pump,fa fa-hot-tub-person,fa fa-hot-tub,fa fa-map-location,fa fa-map-marked,fa fa-house-flood-water,fa fa-tree,fa fa-bridge-lock,fa fa-sack-dollar,fa fa-pen-to-square,fa fa-edit,fa fa-car-side,fa fa-share-nodes,fa fa-share-alt,fa fa-heart-circle-minus,fa fa-hourglass-half,fa fa-hourglass-2,fa fa-microscope,fa fa-sink,fa fa-bag-shopping,fa fa-shopping-bag,fa fa-arrow-down-z-a,fa fa-sort-alpha-desc,fa fa-sort-alpha-down-alt,fa fa-mitten,fa fa-person-rays,fa fa-users,fa fa-eye-slash,fa fa-flask-vial,fa fa-hand,fa fa-hand-paper,fa fa-om,fa fa-worm,fa fa-house-circle-xmark,fa fa-plug,fa fa-chevron-up,fa fa-hand-spock,fa fa-stopwatch,fa fa-face-kiss,fa fa-kiss,fa fa-bridge-circle-xmark,fa fa-face-grin-tongue,fa fa-grin-tongue,fa fa-chess-bishop,fa fa-face-grin-wink,fa fa-grin-wink,fa fa-ear-deaf,fa fa-deaf,fa fa-deafness,fa fa-hard-of-hearing,fa fa-road-circle-check,fa fa-dice-five,fa fa-square-rss,fa fa-rss-square,fa fa-land-mine-on,fa fa-i-cursor,fa fa-stamp,fa fa-stairs,fa fa-i,fa fa-hryvnia-sign,fa fa-hryvnia,fa fa-pills,fa fa-face-grin-wide,fa fa-grin-alt,fa fa-tooth,fa fa-v,fa fa-bicycle,fa fa-staff-snake,fa fa-rod-asclepius,fa fa-rod-snake,fa fa-staff-aesculapius,fa fa-head-side-cough-slash,fa fa-truck-medical,fa fa-ambulance,fa fa-wheat-awn-circle-exclamation,fa fa-snowman,fa fa-mortar-pestle,fa fa-road-barrier,fa fa-school,fa fa-igloo,fa fa-joint,fa fa-angle-right,fa fa-horse,fa fa-q,fa fa-g,fa fa-notes-medical,fa fa-temperature-half,fa fa-temperature-2,fa fa-thermometer-2,fa fa-thermometer-half,fa fa-dong-sign,fa fa-capsules,fa fa-poo-storm,fa fa-poo-bolt,fa fa-face-frown-open,fa fa-frown-open,fa fa-hand-point-up,fa fa-money-bill,fa fa-bookmark,fa fa-align-justify,fa fa-umbrella-beach,fa fa-helmet-un,fa fa-bullseye,fa fa-bacon,fa fa-hand-point-down,fa fa-arrow-up-from-bracket,fa fa-folder,fa fa-folder-blank,fa fa-file-waveform,fa fa-file-medical-alt,fa fa-radiation,fa fa-chart-simple,fa fa-mars-stroke,fa fa-vial,fa fa-gauge,fa fa-dashboard,fa fa-gauge-med,fa fa-tachometer-alt-average,fa fa-wand-magic-sparkles,fa fa-magic-wand-sparkles,fa fa-e,fa fa-pen-clip,fa fa-pen-alt,fa fa-bridge-circle-exclamation,fa fa-user,fa fa-school-circle-check,fa fa-dumpster,fa fa-van-shuttle,fa fa-shuttle-van,fa fa-building-user,fa fa-square-caret-left,fa fa-caret-square-left,fa fa-highlighter,fa fa-key,fa fa-bullhorn,fa fa-globe,fa fa-synagogue,fa fa-person-half-dress,fa fa-road-bridge,fa fa-location-arrow,fa fa-c,fa fa-tablet-button,fa fa-building-lock,fa fa-pizza-slice,fa fa-money-bill-wave,fa fa-chart-area,fa fa-area-chart,fa fa-house-flag,fa fa-person-circle-minus,fa fa-ban,fa fa-cancel,fa fa-camera-rotate,fa fa-spray-can-sparkles,fa fa-air-freshener,fa fa-star,fa fa-repeat,fa fa-cross,fa fa-box,fa fa-venus-mars,fa fa-arrow-pointer,fa fa-mouse-pointer,fa fa-maximize,fa fa-expand-arrows-alt,fa fa-charging-station,fa fa-shapes,fa fa-triangle-circle-square,fa fa-shuffle,fa fa-random,fa fa-person-running,fa fa-running,fa fa-mobile-retro,fa fa-grip-lines-vertical,fa fa-spider,fa fa-hands-bound,fa fa-file-invoice-dollar,fa fa-plane-circle-exclamation,fa fa-x-ray,fa fa-spell-check,fa fa-slash,fa fa-computer-mouse,fa fa-mouse,fa fa-arrow-right-to-bracket,fa fa-sign-in,fa fa-shop-slash,fa fa-store-alt-slash,fa fa-server,fa fa-virus-covid-slash,fa fa-shop-lock,fa fa-hourglass-start,fa fa-hourglass-1,fa fa-blender-phone,fa fa-building-wheat,fa fa-person-breastfeeding,fa fa-right-to-bracket,fa fa-sign-in-alt,fa fa-venus,fa fa-passport,fa fa-heart-pulse,fa fa-heartbeat,fa fa-people-carry-box,fa fa-people-carry,fa fa-temperature-high,fa fa-microchip,fa fa-crown,fa fa-weight-hanging,fa fa-xmarks-lines,fa fa-file-prescription,fa fa-weight-scale,fa fa-weight,fa fa-user-group,fa fa-user-friends,fa fa-arrow-up-a-z,fa fa-sort-alpha-up,fa fa-chess-knight,fa fa-face-laugh-squint,fa fa-laugh-squint,fa fa-wheelchair,fa fa-circle-arrow-up,fa fa-arrow-circle-up,fa fa-toggle-on,fa fa-person-walking,fa fa-walking,fa fa-l,fa fa-fire,fa fa-bed-pulse,fa fa-procedures,fa fa-shuttle-space,fa fa-space-shuttle,fa fa-face-laugh,fa fa-laugh,fa fa-folder-open,fa fa-heart-circle-plus,fa fa-code-fork,fa fa-city,fa fa-microphone-lines,fa fa-microphone-alt,fa fa-pepper-hot,fa fa-unlock,fa fa-colon-sign,fa fa-headset,fa fa-store-slash,fa fa-road-circle-xmark,fa fa-user-minus,fa fa-mars-stroke-up,fa fa-mars-stroke-v,fa fa-champagne-glasses,fa fa-glass-cheers,fa fa-clipboard,fa fa-house-circle-exclamation,fa fa-file-arrow-up,fa fa-file-upload,fa fa-wifi,fa fa-wifi-3,fa fa-wifi-strong,fa fa-bath,fa fa-bathtub,fa fa-underline,fa fa-user-pen,fa fa-user-edit,fa fa-signature,fa fa-stroopwafel,fa fa-bold,fa fa-anchor-lock,fa fa-building-ngo,fa fa-manat-sign,fa fa-not-equal,fa fa-border-top-left,fa fa-border-style,fa fa-map-location-dot,fa fa-map-marked-alt,fa fa-jedi,fa fa-square-poll-vertical,fa fa-poll,fa fa-mug-hot,fa fa-car-battery,fa fa-battery-car,fa fa-gift,fa fa-dice-two,fa fa-chess-queen,fa fa-glasses,fa fa-chess-board,fa fa-building-circle-check,fa fa-person-chalkboard,fa fa-mars-stroke-right,fa fa-mars-stroke-h,fa fa-hand-back-fist,fa fa-hand-rock,fa fa-square-caret-up,fa fa-caret-square-up,fa fa-cloud-showers-water,fa fa-chart-bar,fa fa-bar-chart,fa fa-hands-bubbles,fa fa-hands-wash,fa fa-less-than-equal,fa fa-train,fa fa-eye-low-vision,fa fa-low-vision,fa fa-crow,fa fa-sailboat,fa fa-window-restore,fa fa-square-plus,fa fa-plus-square,fa fa-torii-gate,fa fa-frog,fa fa-bucket,fa fa-image,fa fa-microphone,fa fa-cow,fa fa-caret-up,fa fa-screwdriver,fa fa-folder-closed,fa fa-house-tsunami,fa fa-square-nfi,fa fa-arrow-up-from-ground-water,fa fa-martini-glass,fa fa-glass-martini-alt,fa fa-rotate-left,fa fa-rotate-back,fa fa-rotate-backward,fa fa-undo-alt,fa fa-table-columns,fa fa-columns,fa fa-lemon,fa fa-head-side-mask,fa fa-handshake,fa fa-gem,fa fa-dolly,fa fa-dolly-box,fa fa-smoking,fa fa-minimize,fa fa-compress-arrows-alt,fa fa-monument,fa fa-snowplow,fa fa-angles-right,fa fa-angle-double-right,fa fa-cannabis,fa fa-circle-play,fa fa-play-circle,fa fa-tablets,fa fa-ethernet,fa fa-euro-sign,fa fa-eur,fa fa-euro,fa fa-chair,fa fa-circle-check,fa fa-check-circle,fa fa-circle-stop,fa fa-stop-circle,fa fa-compass-drafting,fa fa-drafting-compass,fa fa-plate-wheat,fa fa-icicles,fa fa-person-shelter,fa fa-neuter,fa fa-id-badge,fa fa-marker,fa fa-face-laugh-beam,fa fa-laugh-beam,fa fa-helicopter-symbol,fa fa-universal-access,fa fa-circle-chevron-up,fa fa-chevron-circle-up,fa fa-lari-sign,fa fa-volcano,fa fa-person-walking-dashed-line-arrow-right,fa fa-sterling-sign,fa fa-gbp,fa fa-pound-sign,fa fa-viruses,fa fa-square-person-confined,fa fa-user-tie,fa fa-arrow-down-long,fa fa-long-arrow-down,fa fa-tent-arrow-down-to-line,fa fa-certificate,fa fa-reply-all,fa fa-mail-reply-all,fa fa-suitcase,fa fa-person-skating,fa fa-skating,fa fa-filter-circle-dollar,fa fa-funnel-dollar,fa fa-camera-retro,fa fa-circle-arrow-down,fa fa-arrow-circle-down,fa fa-file-import,fa fa-arrow-right-to-file,fa fa-square-arrow-up-right,fa fa-external-link-square,fa fa-box-open,fa fa-scroll,fa fa-spa,fa fa-location-pin-lock,fa fa-pause,fa fa-hill-avalanche,fa fa-temperature-empty,fa fa-temperature-0,fa fa-thermometer-0,fa fa-thermometer-empty,fa fa-bomb,fa fa-registered,fa fa-address-card,fa fa-contact-card,fa fa-vcard,fa fa-scale-unbalanced-flip,fa fa-balance-scale-right,fa fa-subscript,fa fa-diamond-turn-right,fa fa-directions,fa fa-burst,fa fa-house-laptop,fa fa-laptop-house,fa fa-face-tired,fa fa-tired,fa fa-money-bills,fa fa-smog,fa fa-crutch,fa fa-cloud-arrow-up,fa fa-cloud-upload,fa fa-cloud-upload-alt,fa fa-palette,fa fa-arrows-turn-right,fa fa-vest,fa fa-ferry,fa fa-arrows-down-to-people,fa fa-seedling,fa fa-sprout,fa fa-left-right,fa fa-arrows-alt-h,fa fa-boxes-packing,fa fa-circle-arrow-left,fa fa-arrow-circle-left,fa fa-group-arrows-rotate,fa fa-bowl-food,fa fa-candy-cane,fa fa-arrow-down-wide-short,fa fa-sort-amount-asc,fa fa-sort-amount-down,fa fa-cloud-bolt,fa fa-thunderstorm,fa fa-text-slash,fa fa-remove-format,fa fa-face-smile-wink,fa fa-smile-wink,fa fa-file-word,fa fa-file-powerpoint,fa fa-arrows-left-right,fa fa-arrows-h,fa fa-house-lock,fa fa-cloud-arrow-down,fa fa-cloud-download,fa fa-cloud-download-alt,fa fa-children,fa fa-chalkboard,fa fa-blackboard,fa fa-user-large-slash,fa fa-user-alt-slash,fa fa-envelope-open,fa fa-handshake-simple-slash,fa fa-handshake-alt-slash,fa fa-mattress-pillow,fa fa-guarani-sign,fa fa-arrows-rotate,fa fa-refresh,fa fa-sync,fa fa-fire-extinguisher,fa fa-cruzeiro-sign,fa fa-greater-than-equal,fa fa-shield-halved,fa fa-shield-alt,fa fa-book-atlas,fa fa-atlas,fa fa-virus,fa fa-envelope-circle-check,fa fa-layer-group,fa fa-arrows-to-dot,fa fa-archway,fa fa-heart-circle-check,fa fa-house-chimney-crack,fa fa-house-damage,fa fa-file-zipper,fa fa-file-archive,fa fa-square,fa fa-martini-glass-empty,fa fa-glass-martini,fa fa-couch,fa fa-cedi-sign,fa fa-italic,fa fa-church,fa fa-comments-dollar,fa fa-democrat,fa fa-z,fa fa-person-skiing,fa fa-skiing,fa fa-road-lock,fa fa-a,fa fa-temperature-arrow-down,fa fa-temperature-down,fa fa-feather-pointed,fa fa-feather-alt,fa fa-p,fa fa-snowflake,fa fa-newspaper,fa fa-rectangle-ad,fa fa-ad,fa fa-circle-arrow-right,fa fa-arrow-circle-right,fa fa-filter-circle-xmark,fa fa-locust,fa fa-sort,fa fa-unsorted,fa fa-list-ol,fa fa-list-1-2,fa fa-list-numeric,fa fa-person-dress-burst,fa fa-money-check-dollar,fa fa-money-check-alt,fa fa-vector-square,fa fa-bread-slice,fa fa-language,fa fa-face-kiss-wink-heart,fa fa-kiss-wink-heart,fa fa-filter,fa fa-question,fa fa-file-signature,fa fa-up-down-left-right,fa fa-arrows-alt,fa fa-house-chimney-user,fa fa-hand-holding-heart,fa fa-puzzle-piece,fa fa-money-check,fa fa-star-half-stroke,fa fa-star-half-alt,fa fa-code,fa fa-whiskey-glass,fa fa-glass-whiskey,fa fa-building-circle-exclamation,fa fa-magnifying-glass-chart,fa fa-arrow-up-right-from-square,fa fa-external-link,fa fa-cubes-stacked,fa fa-won-sign,fa fa-krw,fa fa-won,fa fa-virus-covid,fa fa-austral-sign,fa fa-f,fa fa-leaf,fa fa-road,fa fa-taxi,fa fa-cab,fa fa-person-circle-plus,fa fa-chart-pie,fa fa-pie-chart,fa fa-bolt-lightning,fa fa-sack-xmark,fa fa-file-excel,fa fa-file-contract,fa fa-fish-fins,fa fa-building-flag,fa fa-face-grin-beam,fa fa-grin-beam,fa fa-object-ungroup,fa fa-poop,fa fa-location-pin,fa fa-map-marker,fa fa-kaaba,fa fa-toilet-paper,fa fa-helmet-safety,fa fa-hard-hat,fa fa-hat-hard,fa fa-eject,fa fa-circle-right,fa fa-arrow-alt-circle-right,fa fa-plane-circle-check,fa fa-face-rolling-eyes,fa fa-meh-rolling-eyes,fa fa-object-group,fa fa-chart-line,fa fa-line-chart,fa fa-mask-ventilator,fa fa-arrow-right,fa fa-signs-post,fa fa-map-signs,fa fa-cash-register,fa fa-person-circle-question,fa fa-h,fa fa-tarp,fa fa-screwdriver-wrench,fa fa-tools,fa fa-arrows-to-eye,fa fa-plug-circle-bolt,fa fa-heart,fa fa-mars-and-venus,fa fa-house-user,fa fa-home-user,fa fa-dumpster-fire,fa fa-house-crack,fa fa-martini-glass-citrus,fa fa-cocktail,fa fa-face-surprise,fa fa-surprise,fa fa-bottle-water,fa fa-circle-pause,fa fa-pause-circle,fa fa-toilet-paper-slash,fa fa-apple-whole,fa fa-apple-alt,fa fa-kitchen-set,fa fa-r,fa fa-temperature-quarter,fa fa-temperature-1,fa fa-thermometer-1,fa fa-thermometer-quarter,fa fa-cube,fa fa-bitcoin-sign,fa fa-shield-dog,fa fa-solar-panel,fa fa-lock-open,fa fa-elevator,fa fa-money-bill-transfer,fa fa-money-bill-trend-up,fa fa-house-flood-water-circle-arrow-right,fa fa-square-poll-horizontal,fa fa-poll-h,fa fa-circle,fa fa-backward-fast,fa fa-fast-backward,fa fa-recycle,fa fa-user-astronaut,fa fa-plane-slash,fa fa-trademark,fa fa-basketball,fa fa-basketball-ball,fa fa-satellite-dish,fa fa-circle-up,fa fa-arrow-alt-circle-up,fa fa-mobile-screen-button,fa fa-mobile-alt,fa fa-volume-high,fa fa-volume-up,fa fa-users-rays,fa fa-wallet,fa fa-clipboard-check,fa fa-file-audio,fa fa-burger,fa fa-hamburger,fa fa-wrench,fa fa-bugs,fa fa-rupee-sign,fa fa-rupee,fa fa-file-image,fa fa-circle-question,fa fa-question-circle,fa fa-plane-departure,fa fa-handshake-slash,fa fa-book-bookmark,fa fa-code-branch,fa fa-hat-cowboy,fa fa-bridge,fa fa-phone-flip,fa fa-phone-alt,fa fa-truck-front,fa fa-cat,fa fa-anchor-circle-exclamation,fa fa-truck-field,fa fa-route,fa fa-clipboard-question,fa fa-panorama,fa fa-comment-medical,fa fa-teeth-open,fa fa-file-circle-minus,fa fa-tags,fa fa-wine-glass,fa fa-forward-fast,fa fa-fast-forward,fa fa-face-meh-blank,fa fa-meh-blank,fa fa-square-parking,fa fa-parking,fa fa-house-signal,fa fa-bars-progress,fa fa-tasks-alt,fa fa-faucet-drip,fa fa-cart-flatbed,fa fa-dolly-flatbed,fa fa-ban-smoking,fa fa-smoking-ban,fa fa-terminal,fa fa-mobile-button,fa fa-house-medical-flag,fa fa-basket-shopping,fa fa-shopping-basket,fa fa-tape,fa fa-bus-simple,fa fa-bus-alt,fa fa-eye,fa fa-face-sad-cry,fa fa-sad-cry,fa fa-audio-description,fa fa-person-military-to-person,fa fa-file-shield,fa fa-user-slash,fa fa-pen,fa fa-tower-observation,fa fa-file-code,fa fa-signal,fa fa-signal-5,fa fa-signal-perfect,fa fa-bus,fa fa-heart-circle-xmark,fa fa-house-chimney,fa fa-home-lg,fa fa-window-maximize,fa fa-face-frown,fa fa-frown,fa fa-prescription,fa fa-shop,fa fa-store-alt,fa fa-floppy-disk,fa fa-save,fa fa-vihara,fa fa-scale-unbalanced,fa fa-balance-scale-left,fa fa-sort-up,fa fa-sort-asc,fa fa-comment-dots,fa fa-commenting,fa fa-plant-wilt,fa fa-diamond,fa fa-face-grin-squint,fa fa-grin-squint,fa fa-hand-holding-dollar,fa fa-hand-holding-usd,fa fa-bacterium,fa fa-hand-pointer,fa fa-drum-steelpan,fa fa-hand-scissors,fa fa-hands-praying,fa fa-praying-hands,fa fa-arrow-rotate-right,fa fa-arrow-right-rotate,fa fa-arrow-rotate-forward,fa fa-redo,fa fa-biohazard,fa fa-location-crosshairs,fa fa-location,fa fa-mars-double,fa fa-child-dress,fa fa-users-between-lines,fa fa-lungs-virus,fa fa-face-grin-tears,fa fa-grin-tears,fa fa-phone,fa fa-calendar-xmark,fa fa-calendar-times,fa fa-child-reaching,fa fa-head-side-virus,fa fa-user-gear,fa fa-user-cog,fa fa-arrow-up-1-9,fa fa-sort-numeric-up,fa fa-door-closed,fa fa-shield-virus,fa fa-dice-six,fa fa-mosquito-net,fa fa-bridge-water,fa fa-person-booth,fa fa-text-width,fa fa-hat-wizard,fa fa-pen-fancy,fa fa-person-digging,fa fa-digging,fa fa-trash,fa fa-gauge-simple,fa fa-gauge-simple-med,fa fa-tachometer-average,fa fa-book-medical,fa fa-poo,fa fa-quote-right,fa fa-quote-right-alt,fa fa-shirt,fa fa-t-shirt,fa fa-tshirt,fa fa-cubes,fa fa-divide,fa fa-tenge-sign,fa fa-tenge,fa fa-headphones,fa fa-hands-holding,fa fa-hands-clapping,fa fa-republican,fa fa-arrow-left,fa fa-person-circle-xmark,fa fa-ruler,fa fa-align-left,fa fa-dice-d6,fa fa-restroom,fa fa-j,fa fa-users-viewfinder,fa fa-file-video,fa fa-up-right-from-square,fa fa-external-link-alt,fa fa-table-cells,fa fa-th,fa fa-file-pdf,fa fa-book-bible,fa fa-bible,fa fa-o,fa fa-suitcase-medical,fa fa-medkit,fa fa-user-secret,fa fa-otter,fa fa-person-dress,fa fa-female,fa fa-comment-dollar,fa fa-business-time,fa fa-briefcase-clock,fa fa-table-cells-large,fa fa-th-large,fa fa-book-tanakh,fa fa-tanakh,fa fa-phone-volume,fa fa-volume-control-phone,fa fa-hat-cowboy-side,fa fa-clipboard-user,fa fa-child,fa fa-lira-sign,fa fa-satellite,fa fa-plane-lock,fa fa-tag,fa fa-comment,fa fa-cake-candles,fa fa-birthday-cake,fa fa-cake,fa fa-envelope,fa fa-angles-up,fa fa-angle-double-up,fa fa-paperclip,fa fa-arrow-right-to-city,fa fa-ribbon,fa fa-lungs,fa fa-arrow-up-9-1,fa fa-sort-numeric-up-alt,fa fa-litecoin-sign,fa fa-border-none,fa fa-circle-nodes,fa fa-parachute-box,fa fa-indent,fa fa-truck-field-un,fa fa-hourglass,fa fa-hourglass-empty,fa fa-mountain,fa fa-user-doctor,fa fa-user-md,fa fa-circle-info,fa fa-info-circle,fa fa-cloud-meatball,fa fa-camera,fa fa-camera-alt,fa fa-square-virus,fa fa-meteor,fa fa-car-on,fa fa-sleigh,fa fa-arrow-down-1-9,fa fa-sort-numeric-asc,fa fa-sort-numeric-down,fa fa-hand-holding-droplet,fa fa-hand-holding-water,fa fa-water,fa fa-calendar-check,fa fa-braille,fa fa-prescription-bottle-medical,fa fa-prescription-bottle-alt,fa fa-landmark,fa fa-truck,fa fa-crosshairs,fa fa-person-cane,fa fa-tent,fa fa-vest-patches,fa fa-check-double,fa fa-arrow-down-a-z,fa fa-sort-alpha-asc,fa fa-sort-alpha-down,fa fa-money-bill-wheat,fa fa-cookie,fa fa-arrow-rotate-left,fa fa-arrow-left-rotate,fa fa-arrow-rotate-back,fa fa-arrow-rotate-backward,fa fa-undo,fa fa-hard-drive,fa fa-hdd,fa fa-face-grin-squint-tears,fa fa-grin-squint-tears,fa fa-dumbbell,fa fa-rectangle-list,fa fa-list-alt,fa fa-tarp-droplet,fa fa-house-medical-circle-check,fa fa-person-skiing-nordic,fa fa-skiing-nordic,fa fa-calendar-plus,fa fa-plane-arrival,fa fa-circle-left,fa fa-arrow-alt-circle-left,fa fa-train-subway,fa fa-subway,fa fa-chart-gantt,fa fa-indian-rupee-sign,fa fa-indian-rupee,fa fa-inr,fa fa-crop-simple,fa fa-crop-alt,fa fa-money-bill-1,fa fa-money-bill-alt,fa fa-left-long,fa fa-long-arrow-alt-left,fa fa-dna,fa fa-virus-slash,fa fa-minus,fa fa-subtract,fa fa-child-rifle,fa fa-chess,fa fa-arrow-left-long,fa fa-long-arrow-left,fa fa-plug-circle-check,fa fa-street-view,fa fa-franc-sign,fa fa-volume-off,fa fa-hands-asl-interpreting,fa fa-american-sign-language-interpreting,fa fa-asl-interpreting,fa fa-hands-american-sign-language-interpreting,fa fa-gear,fa fa-cog,fa fa-droplet-slash,fa fa-tint-slash,fa fa-mosque,fa fa-mosquito,fa fa-star-of-david,fa fa-person-military-rifle,fa fa-cart-shopping,fa fa-shopping-cart,fa fa-vials,fa fa-plug-circle-plus,fa fa-place-of-worship,fa fa-grip-vertical,fa fa-arrow-turn-up,fa fa-level-up,fa fa-u,fa fa-square-root-variable,fa fa-square-root-alt,fa fa-clock,fa fa-clock-four,fa fa-backward-step,fa fa-step-backward,fa fa-pallet,fa fa-faucet,fa fa-baseball-bat-ball,fa fa-s,fa fa-timeline,fa fa-keyboard,fa fa-caret-down,fa fa-house-chimney-medical,fa fa-clinic-medical,fa fa-temperature-three-quarters,fa fa-temperature-3,fa fa-thermometer-3,fa fa-thermometer-three-quarters,fa fa-mobile-screen,fa fa-mobile-android-alt,fa fa-plane-up,fa fa-piggy-bank,fa fa-battery-half,fa fa-battery-3,fa fa-mountain-city,fa fa-coins,fa fa-khanda,fa fa-sliders,fa fa-sliders-h,fa fa-folder-tree,fa fa-network-wired,fa fa-map-pin,fa fa-hamsa,fa fa-cent-sign,fa fa-flask,fa fa-person-pregnant,fa fa-wand-sparkles,fa fa-ellipsis-vertical,fa fa-ellipsis-v,fa fa-ticket,fa fa-power-off,fa fa-right-long,fa fa-long-arrow-alt-right,fa fa-flag-usa,fa fa-laptop-file,fa fa-tty,fa fa-teletype,fa fa-diagram-next,fa fa-person-rifle,fa fa-house-medical-circle-exclamation,fa fa-closed-captioning,fa fa-person-hiking,fa fa-hiking,fa fa-venus-double,fa fa-images,fa fa-calculator,fa fa-people-pulling,fa fa-n,fa fa-cable-car,fa fa-tram,fa fa-cloud-rain,fa fa-building-circle-xmark,fa fa-ship,fa fa-arrows-down-to-line,fa fa-download,fa fa-face-grin,fa fa-grin,fa fa-delete-left,fa fa-backspace,fa fa-eye-dropper,fa fa-eye-dropper-empty,fa fa-eyedropper,fa fa-file-circle-check,fa fa-forward,fa fa-mobile,fa fa-mobile-android,fa fa-mobile-phone,fa fa-face-meh,fa fa-meh,fa fa-align-center,fa fa-book-skull,fa fa-book-dead,fa fa-id-card,fa fa-drivers-license,fa fa-outdent,fa fa-dedent,fa fa-heart-circle-exclamation,fa fa-house,fa fa-home,fa fa-home-alt,fa fa-home-lg-alt,fa fa-calendar-week,fa fa-laptop-medical,fa fa-b,fa fa-file-medical,fa fa-dice-one,fa fa-kiwi-bird,fa fa-arrow-right-arrow-left,fa fa-exchange,fa fa-rotate-right,fa fa-redo-alt,fa fa-rotate-forward,fa fa-utensils,fa fa-cutlery,fa fa-arrow-up-wide-short,fa fa-sort-amount-up,fa fa-mill-sign,fa fa-bowl-rice,fa fa-skull,fa fa-tower-broadcast,fa fa-broadcast-tower,fa fa-truck-pickup,fa fa-up-long,fa fa-long-arrow-alt-up,fa fa-stop,fa fa-code-merge,fa fa-upload,fa fa-hurricane,fa fa-mound,fa fa-toilet-portable,fa fa-compact-disc,fa fa-file-arrow-down,fa fa-file-download,fa fa-caravan,fa fa-shield-cat,fa fa-bolt,fa fa-zap,fa fa-glass-water,fa fa-oil-well,fa fa-vault,fa fa-mars,fa fa-toilet,fa fa-plane-circle-xmark,fa fa-yen-sign,fa fa-cny,fa fa-jpy,fa fa-rmb,fa fa-yen,fa fa-ruble-sign,fa fa-rouble,fa fa-rub,fa fa-ruble,fa fa-sun,fa fa-guitar,fa fa-face-laugh-wink,fa fa-laugh-wink,fa fa-horse-head,fa fa-bore-hole,fa fa-industry,fa fa-circle-down,fa fa-arrow-alt-circle-down,fa fa-arrows-turn-to-dots,fa fa-florin-sign,fa fa-arrow-down-short-wide,fa fa-sort-amount-desc,fa fa-sort-amount-down-alt,fa fa-less-than,fa fa-angle-down,fa fa-car-tunnel,fa fa-head-side-cough,fa fa-grip-lines,fa fa-thumbs-down,fa fa-user-lock,fa fa-arrow-right-long,fa fa-long-arrow-right,fa fa-anchor-circle-xmark,fa fa-ellipsis,fa fa-ellipsis-h,fa fa-chess-pawn,fa fa-kit-medical,fa fa-first-aid,fa fa-person-through-window,fa fa-toolbox,fa fa-hands-holding-circle,fa fa-bug,fa fa-credit-card,fa fa-credit-card-alt,fa fa-car,fa fa-automobile,fa fa-hand-holding-hand,fa fa-book-open-reader,fa fa-book-reader,fa fa-mountain-sun,fa fa-arrows-left-right-to-line,fa fa-dice-d20,fa fa-truck-droplet,fa fa-file-circle-xmark,fa fa-temperature-arrow-up,fa fa-temperature-up,fa fa-medal,fa fa-bed,fa fa-square-h,fa fa-h-square,fa fa-podcast,fa fa-temperature-full,fa fa-temperature-4,fa fa-thermometer-4,fa fa-thermometer-full,fa fa-bell,fa fa-superscript,fa fa-plug-circle-xmark,fa fa-star-of-life,fa fa-phone-slash,fa fa-paint-roller,fa fa-handshake-angle,fa fa-hands-helping,fa fa-location-dot,fa fa-map-marker-alt,fa fa-file,fa fa-greater-than,fa fa-person-swimming,fa fa-swimmer,fa fa-arrow-down,fa fa-droplet,fa fa-tint,fa fa-eraser,fa fa-earth-americas,fa fa-earth,fa fa-earth-america,fa fa-globe-americas,fa fa-person-burst,fa fa-dove,fa fa-battery-empty,fa fa-battery-0,fa fa-socks,fa fa-inbox,fa fa-section,fa fa-gauge-high,fa fa-tachometer-alt,fa fa-tachometer-alt-fast,fa fa-envelope-open-text,fa fa-hospital,fa fa-hospital-alt,fa fa-hospital-wide,fa fa-wine-bottle,fa fa-chess-rook,fa fa-bars-staggered,fa fa-reorder,fa fa-stream,fa fa-dharmachakra,fa fa-hotdog,fa fa-person-walking-with-cane,fa fa-blind,fa fa-drum,fa fa-ice-cream,fa fa-heart-circle-bolt,fa fa-fax,fa fa-paragraph,fa fa-check-to-slot,fa fa-vote-yea,fa fa-star-half,fa fa-boxes-stacked,fa fa-boxes,fa fa-boxes-alt,fa fa-link,fa fa-chain,fa fa-ear-listen,fa fa-assistive-listening-systems,fa fa-tree-city,fa fa-play,fa fa-font,fa fa-rupiah-sign,fa fa-magnifying-glass,fa fa-search,fa fa-table-tennis-paddle-ball,fa fa-ping-pong-paddle-ball,fa fa-table-tennis,fa fa-person-dots-from-line,fa fa-diagnoses,fa fa-trash-can-arrow-up,fa fa-trash-restore-alt,fa fa-naira-sign,fa fa-cart-arrow-down,fa fa-walkie-talkie,fa fa-file-pen,fa fa-file-edit,fa fa-receipt,fa fa-square-pen,fa fa-pen-square,fa fa-pencil-square,fa fa-suitcase-rolling,fa fa-person-circle-exclamation,fa fa-chevron-down,fa fa-battery-full,fa fa-battery,fa fa-battery-5,fa fa-skull-crossbones,fa fa-code-compare,fa fa-list-ul,fa fa-list-dots,fa fa-school-lock,fa fa-tower-cell,fa fa-down-long,fa fa-long-arrow-alt-down,fa fa-ranking-star,fa fa-chess-king,fa fa-person-harassing,fa fa-brazilian-real-sign,fa fa-landmark-dome,fa fa-landmark-alt,fa fa-arrow-up,fa fa-tv,fa fa-television,fa fa-tv-alt,fa fa-shrimp,fa fa-list-check,fa fa-tasks,fa fa-jug-detergent,fa fa-circle-user,fa fa-user-circle,fa fa-user-shield,fa fa-wind,fa fa-car-burst,fa fa-car-crash,fa fa-y,fa fa-person-snowboarding,fa fa-snowboarding,fa fa-truck-fast,fa fa-shipping-fast,fa fa-fish,fa fa-user-graduate,fa fa-circle-half-stroke,fa fa-adjust,fa fa-clapperboard,fa fa-circle-radiation,fa fa-radiation-alt,fa fa-baseball,fa fa-baseball-ball,fa fa-jet-fighter-up,fa fa-diagram-project,fa fa-project-diagram,fa fa-copy,fa fa-volume-xmark,fa fa-volume-mute,fa fa-volume-times,fa fa-hand-sparkles,fa fa-grip,fa fa-grip-horizontal,fa fa-share-from-square,fa fa-share-square,fa fa-gun,fa fa-square-phone,fa fa-phone-square,fa fa-plus,fa fa-add,fa fa-expand,fa fa-computer,fa fa-xmark,fa fa-close,fa fa-multiply,fa fa-remove,fa fa-times,fa fa-arrows-up-down-left-right,fa fa-arrows,fa fa-chalkboard-user,fa fa-chalkboard-teacher,fa fa-peso-sign,fa fa-building-shield,fa fa-baby,fa fa-users-line,fa fa-quote-left,fa fa-quote-left-alt,fa fa-tractor,fa fa-trash-arrow-up,fa fa-trash-restore,fa fa-arrow-down-up-lock,fa fa-lines-leaning,fa fa-ruler-combined,fa fa-copyright,fa fa-equals,fa fa-blender,fa fa-teeth,fa fa-shekel-sign,fa fa-ils,fa fa-shekel,fa fa-sheqel,fa fa-sheqel-sign,fa fa-map,fa fa-rocket,fa fa-photo-film,fa fa-photo-video,fa fa-folder-minus,fa fa-store,fa fa-arrow-trend-up,fa fa-plug-circle-minus,fa fa-sign-hanging,fa fa-sign,fa fa-bezier-curve,fa fa-bell-slash,fa fa-tablet,fa fa-tablet-android,fa fa-school-flag,fa fa-fill,fa fa-angle-up,fa fa-drumstick-bite,fa fa-holly-berry,fa fa-chevron-left,fa fa-bacteria,fa fa-hand-lizard,fa fa-disease,fa fa-briefcase-medical,fa fa-genderless,fa fa-chevron-right,fa fa-retweet,fa fa-car-rear,fa fa-car-alt,fa fa-pump-soap,fa fa-video-slash,fa fa-battery-quarter,fa fa-battery-2,fa fa-radio,fa fa-baby-carriage,fa fa-carriage-baby,fa fa-traffic-light,fa fa-thermometer,fa fa-vr-cardboard,fa fa-hand-middle-finger,fa fa-percent,fa fa-percentage,fa fa-truck-moving,fa fa-glass-water-droplet,fa fa-display,fa fa-face-smile,fa fa-smile,fa fa-thumbtack,fa fa-thumb-tack,fa fa-trophy,fa fa-person-praying,fa fa-pray,fa fa-hammer,fa fa-hand-peace,fa fa-rotate,fa fa-sync-alt,fa fa-spinner,fa fa-robot,fa fa-peace,fa fa-gears,fa fa-cogs,fa fa-warehouse,fa fa-arrow-up-right-dots,fa fa-splotch,fa fa-face-grin-hearts,fa fa-grin-hearts,fa fa-dice-four,fa fa-sim-card,fa fa-transgender,fa fa-transgender-alt,fa fa-mercury,fa fa-arrow-turn-down,fa fa-level-down,fa fa-person-falling-burst,fa fa-award,fa fa-ticket-simple,fa fa-ticket-alt,fa fa-building,fa fa-angles-left,fa fa-angle-double-left,fa fa-qrcode,fa fa-clock-rotate-left,fa fa-history,fa fa-face-grin-beam-sweat,fa fa-grin-beam-sweat,fa fa-file-export,fa fa-arrow-right-from-file,fa fa-shield,fa fa-shield-blank,fa fa-arrow-up-short-wide,fa fa-sort-amount-up-alt,fa fa-house-medical,fa fa-golf-ball-tee,fa fa-golf-ball,fa fa-circle-chevron-left,fa fa-chevron-circle-left,fa fa-house-chimney-window,fa fa-pen-nib,fa fa-tent-arrow-turn-left,fa fa-tents,fa fa-wand-magic,fa fa-magic,fa fa-dog,fa fa-carrot,fa fa-moon,fa fa-wine-glass-empty,fa fa-wine-glass-alt,fa fa-cheese,fa fa-yin-yang,fa fa-music,fa fa-code-commit,fa fa-temperature-low,fa fa-person-biking,fa fa-biking,fa fa-broom,fa fa-shield-heart,fa fa-gopuram,fa fa-earth-oceania,fa fa-globe-oceania,fa fa-square-xmark,fa fa-times-square,fa fa-xmark-square,fa fa-hashtag,fa fa-up-right-and-down-left-from-center,fa fa-expand-alt,fa fa-oil-can,fa fa-t,fa fa-hippo,fa fa-chart-column,fa fa-infinity,fa fa-vial-circle-check,fa fa-person-arrow-down-to-line,fa fa-voicemail,fa fa-fan,fa fa-person-walking-luggage,fa fa-up-down,fa fa-arrows-alt-v,fa fa-cloud-moon-rain,fa fa-calendar,fa fa-trailer,fa fa-bahai,fa fa-haykal,fa fa-sd-card,fa fa-dragon,fa fa-shoe-prints,fa fa-circle-plus,fa fa-plus-circle,fa fa-face-grin-tongue-wink,fa fa-grin-tongue-wink,fa fa-hand-holding,fa fa-plug-circle-exclamation,fa fa-link-slash,fa fa-chain-broken,fa fa-chain-slash,fa fa-unlink,fa fa-clone,fa fa-person-walking-arrow-loop-left,fa fa-arrow-up-z-a,fa fa-sort-alpha-up-alt,fa fa-fire-flame-curved,fa fa-fire-alt,fa fa-tornado,fa fa-file-circle-plus,fa fa-book-quran,fa fa-quran,fa fa-anchor,fa fa-border-all,fa fa-face-angry,fa fa-angry,fa fa-cookie-bite,fa fa-arrow-trend-down,fa fa-rss,fa fa-feed,fa fa-draw-polygon,fa fa-scale-balanced,fa fa-balance-scale,fa fa-gauge-simple-high,fa fa-tachometer,fa fa-tachometer-fast,fa fa-shower,fa fa-desktop,fa fa-desktop-alt,fa fa-m,fa fa-table-list,fa fa-th-list,fa fa-comment-sms,fa fa-sms,fa fa-book,fa fa-user-plus,fa fa-check,fa fa-battery-three-quarters,fa fa-battery-4,fa fa-house-circle-check,fa fa-angle-left,fa fa-diagram-successor,fa fa-truck-arrow-right,fa fa-arrows-split-up-and-left,fa fa-hand-fist,fa fa-fist-raised,fa fa-cloud-moon,fa fa-briefcase,fa fa-person-falling,fa fa-image-portrait,fa fa-portrait,fa fa-user-tag,fa fa-rug,fa fa-earth-europe,fa fa-globe-europe,fa fa-cart-flatbed-suitcase,fa fa-luggage-cart,fa fa-rectangle-xmark,fa fa-rectangle-times,fa fa-times-rectangle,fa fa-window-close,fa fa-baht-sign,fa fa-book-open,fa fa-book-journal-whills,fa fa-journal-whills,fa fa-handcuffs,fa fa-triangle-exclamation,fa fa-exclamation-triangle,fa fa-warning,fa fa-database,fa fa-share,fa fa-arrow-turn-right,fa fa-mail-forward,fa fa-bottle-droplet,fa fa-mask-face,fa fa-hill-rockslide,fa fa-right-left,fa fa-exchange-alt,fa fa-paper-plane,fa fa-road-circle-exclamation,fa fa-dungeon,fa fa-align-right,fa fa-money-bill-1-wave,fa fa-money-bill-wave-alt,fa fa-life-ring,fa fa-hands,fa fa-sign-language,fa fa-signing,fa fa-calendar-day,fa fa-water-ladder,fa fa-ladder-water,fa fa-swimming-pool,fa fa-arrows-up-down,fa fa-arrows-v,fa fa-face-grimace,fa fa-grimace,fa fa-wheelchair-move,fa fa-wheelchair-alt,fa fa-turn-down,fa fa-level-down-alt,fa fa-person-walking-arrow-right,fa fa-square-envelope,fa fa-envelope-square,fa fa-dice,fa fa-bowling-ball,fa fa-brain,fa fa-bandage,fa fa-band-aid,fa fa-calendar-minus,fa fa-circle-xmark,fa fa-times-circle,fa fa-xmark-circle,fa fa-gifts,fa fa-hotel,fa fa-earth-asia,fa fa-globe-asia,fa fa-id-card-clip,fa fa-id-card-alt,fa fa-magnifying-glass-plus,fa fa-search-plus,fa fa-thumbs-up,fa fa-user-clock,fa fa-hand-dots,fa fa-allergies,fa fa-file-invoice,fa fa-window-minimize,fa fa-mug-saucer,fa fa-coffee,fa fa-brush,fa fa-mask,fa fa-magnifying-glass-minus,fa fa-search-minus,fa fa-ruler-vertical,fa fa-user-large,fa fa-user-alt,fa fa-train-tram,fa fa-user-nurse,fa fa-syringe,fa fa-cloud-sun,fa fa-stopwatch-20,fa fa-square-full,fa fa-magnet,fa fa-jar,fa fa-note-sticky,fa fa-sticky-note,fa fa-bug-slash,fa fa-arrow-up-from-water-pump,fa fa-bone,fa fa-user-injured,fa fa-face-sad-tear,fa fa-sad-tear,fa fa-plane,fa fa-tent-arrows-down,fa fa-exclamation,fa fa-arrows-spin,fa fa-print,fa fa-turkish-lira-sign,fa fa-try,fa fa-turkish-lira,fa fa-dollar-sign,fa fa-dollar,fa fa-usd,fa fa-x,fa fa-magnifying-glass-dollar,fa fa-search-dollar,fa fa-users-gear,fa fa-users-cog,fa fa-person-military-pointing,fa fa-building-columns,fa fa-bank,fa fa-institution,fa fa-museum,fa fa-university,fa fa-umbrella,fa fa-trowel,fa fa-d,fa fa-stapler,fa fa-masks-theater,fa fa-theater-masks,fa fa-kip-sign,fa fa-hand-point-left,fa fa-handshake-simple,fa fa-handshake-alt,fa fa-jet-fighter,fa fa-fighter-jet,fa fa-square-share-nodes,fa fa-share-alt-square,fa fa-barcode,fa fa-plus-minus,fa fa-video,fa fa-video-camera,fa fa-graduation-cap,fa fa-mortar-board,fa fa-hand-holding-medical,fa fa-person-circle-check,fa fa-turn-up,fa fa-level-up-alt,fab fa-monero,fab fa-hooli,fab fa-yelp,fab fa-cc-visa,fab fa-lastfm,fab fa-shopware,fab fa-creative-commons-nc,fab fa-aws,fab fa-redhat,fab fa-yoast,fab fa-cloudflare,fab fa-ups,fab fa-wpexplorer,fab fa-dyalog,fab fa-bity,fab fa-stackpath,fab fa-buysellads,fab fa-first-order,fab fa-modx,fab fa-guilded,fab fa-vnv,fab fa-square-js,fab fa-js-square,fab fa-microsoft,fab fa-qq,fab fa-orcid,fab fa-java,fab fa-invision,fab fa-creative-commons-pd-alt,fab fa-centercode,fab fa-glide-g,fab fa-drupal,fab fa-hire-a-helper,fab fa-creative-commons-by,fab fa-unity,fab fa-whmcs,fab fa-rocketchat,fab fa-vk,fab fa-untappd,fab fa-mailchimp,fab fa-css3-alt,fab fa-square-reddit,fab fa-reddit-square,fab fa-vimeo-v,fab fa-contao,fab fa-square-font-awesome,fab fa-deskpro,fab fa-sistrix,fab fa-square-instagram,fab fa-instagram-square,fab fa-battle-net,fab fa-the-red-yeti,fab fa-square-hacker-news,fab fa-hacker-news-square,fab fa-edge,fab fa-napster,fab fa-square-snapchat,fab fa-snapchat-square,fab fa-google-plus-g,fab fa-artstation,fab fa-markdown,fab fa-sourcetree,fab fa-google-plus,fab fa-diaspora,fab fa-foursquare,fab fa-stack-overflow,fab fa-github-alt,fab fa-phoenix-squadron,fab fa-pagelines,fab fa-algolia,fab fa-red-river,fab fa-creative-commons-sa,fab fa-safari,fab fa-google,fab fa-square-font-awesome-stroke,fab fa-font-awesome-alt,fab fa-atlassian,fab fa-linkedin-in,fab fa-digital-ocean,fab fa-nimblr,fab fa-chromecast,fab fa-evernote,fab fa-hacker-news,fab fa-creative-commons-sampling,fab fa-adversal,fab fa-creative-commons,fab fa-watchman-monitoring,fab fa-fonticons,fab fa-weixin,fab fa-shirtsinbulk,fab fa-codepen,fab fa-git-alt,fab fa-lyft,fab fa-rev,fab fa-windows,fab fa-wizards-of-the-coast,fab fa-square-viadeo,fab fa-viadeo-square,fab fa-meetup,fab fa-centos,fab fa-adn,fab fa-cloudsmith,fab fa-pied-piper-alt,fab fa-square-dribbble,fab fa-dribbble-square,fab fa-codiepie,fab fa-node,fab fa-mix,fab fa-steam,fab fa-cc-apple-pay,fab fa-scribd,fab fa-openid,fab fa-instalod,fab fa-expeditedssl,fab fa-sellcast,fab fa-square-twitter,fab fa-twitter-square,fab fa-r-project,fab fa-delicious,fab fa-freebsd,fab fa-vuejs,fab fa-accusoft,fab fa-ioxhost,fab fa-fonticons-fi,fab fa-app-store,fab fa-cc-mastercard,fab fa-itunes-note,fab fa-golang,fab fa-kickstarter,fab fa-grav,fab fa-weibo,fab fa-uncharted,fab fa-firstdraft,fab fa-square-youtube,fab fa-youtube-square,fab fa-wikipedia-w,fab fa-wpressr,fab fa-rendact,fab fa-angellist,fab fa-galactic-republic,fab fa-nfc-directional,fab fa-skype,fab fa-joget,fab fa-fedora,fab fa-stripe-s,fab fa-meta,fab fa-laravel,fab fa-hotjar,fab fa-bluetooth-b,fab fa-sticker-mule,fab fa-creative-commons-zero,fab fa-hips,fab fa-behance,fab fa-reddit,fab fa-discord,fab fa-chrome,fab fa-app-store-ios,fab fa-cc-discover,fab fa-wpbeginner,fab fa-confluence,fab fa-mdb,fab fa-dochub,fab fa-accessible-icon,fab fa-ebay,fab fa-amazon,fab fa-unsplash,fab fa-yarn,fab fa-square-steam,fab fa-steam-square,fab fa-500px,fab fa-square-vimeo,fab fa-vimeo-square,fab fa-asymmetrik,fab fa-font-awesome,fab fa-font-awesome-flag,fab fa-font-awesome-logo-full,fab fa-gratipay,fab fa-apple,fab fa-hive,fab fa-gitkraken,fab fa-keybase,fab fa-apple-pay,fab fa-padlet,fab fa-amazon-pay,fab fa-square-github,fab fa-github-square,fab fa-stumbleupon,fab fa-fedex,fab fa-phoenix-framework,fab fa-shopify,fab fa-neos,fab fa-hackerrank,fab fa-researchgate,fab fa-swift,fab fa-angular,fab fa-speakap,fab fa-angrycreative,fab fa-y-combinator,fab fa-empire,fab fa-envira,fab fa-square-gitlab,fab fa-gitlab-square,fab fa-studiovinari,fab fa-pied-piper,fab fa-wordpress,fab fa-product-hunt,fab fa-firefox,fab fa-linode,fab fa-goodreads,fab fa-square-odnoklassniki,fab fa-odnoklassniki-square,fab fa-jsfiddle,fab fa-sith,fab fa-themeisle,fab fa-page4,fab fa-hashnode,fab fa-react,fab fa-cc-paypal,fab fa-squarespace,fab fa-cc-stripe,fab fa-creative-commons-share,fab fa-bitcoin,fab fa-keycdn,fab fa-opera,fab fa-itch-io,fab fa-umbraco,fab fa-galactic-senate,fab fa-ubuntu,fab fa-draft2digital,fab fa-stripe,fab fa-houzz,fab fa-gg,fab fa-dhl,fab fa-square-pinterest,fab fa-pinterest-square,fab fa-xing,fab fa-blackberry,fab fa-creative-commons-pd,fab fa-playstation,fab fa-quinscape,fab fa-less,fab fa-blogger-b,fab fa-opencart,fab fa-vine,fab fa-paypal,fab fa-gitlab,fab fa-typo3,fab fa-reddit-alien,fab fa-yahoo,fab fa-dailymotion,fab fa-affiliatetheme,fab fa-pied-piper-pp,fab fa-bootstrap,fab fa-odnoklassniki,fab fa-nfc-symbol,fab fa-ethereum,fab fa-speaker-deck,fab fa-creative-commons-nc-eu,fab fa-patreon,fab fa-avianex,fab fa-ello,fab fa-gofore,fab fa-bimobject,fab fa-facebook-f,fab fa-square-google-plus,fab fa-google-plus-square,fab fa-mandalorian,fab fa-first-order-alt,fab fa-osi,fab fa-google-wallet,fab fa-d-and-d-beyond,fab fa-periscope,fab fa-fulcrum,fab fa-cloudscale,fab fa-forumbee,fab fa-mizuni,fab fa-schlix,fab fa-square-xing,fab fa-xing-square,fab fa-bandcamp,fab fa-wpforms,fab fa-cloudversify,fab fa-usps,fab fa-megaport,fab fa-magento,fab fa-spotify,fab fa-optin-monster,fab fa-fly,fab fa-aviato,fab fa-itunes,fab fa-cuttlefish,fab fa-blogger,fab fa-flickr,fab fa-viber,fab fa-soundcloud,fa fa-digg,fab fa-tencent-weibo,fab fa-symfony,fab fa-maxcdn,fab fa-etsy,fab fa-facebook-messenger,fab fa-audible,fab fa-think-peaks,fab fa-bilibili,fab fa-erlang,fab fa-cotton-bureau,fab fa-dashcube,fab fa-42-group,fab fa-innosoft,fab fa-stack-exchange,fab fa-elementor,fab fa-square-pied-piper,fab fa-pied-piper-square,fab fa-creative-commons-nd,fab fa-palfed,fab fa-superpowers,fab fa-resolving,fab fa-xbox,fab fa-searchengin,fab fa-tiktok,fab fa-square-facebook,fab fa-facebook-square,fab fa-renren,fab fa-linux,fab fa-glide,fab fa-linkedin,fab fa-hubspot,fab fa-deploydog,fab fa-twitch,fab fa-ravelry,fab fa-mixer,fab fa-square-lastfm,fab fa-lastfm-square,fab fa-vimeo,fab fa-mendeley,fab fa-uniregistry,fab fa-figma,fab fa-creative-commons-remix,fab fa-cc-amazon-pay,fab fa-dropbox,fab fa-instagram,fab fa-cmplid,fab fa-facebook,fab fa-gripfire,fab fa-jedi-order,fab fa-uikit,fab fa-fort-awesome-alt,fab fa-phabricator,fab fa-ussunnah,fab fa-earlybirds,fab fa-trade-federation,fab fa-autoprefixer,fab fa-whatsapp,fab fa-slideshare,fab fa-google-play,fab fa-viadeo,fab fa-line,fab fa-google-drive,fab fa-servicestack,fab fa-simplybuilt,fab fa-bitbucket,fab fa-imdb,fab fa-deezer,fab fa-raspberry-pi,fab fa-jira,fab fa-docker,fab fa-screenpal,fab fa-bluetooth,fab fa-gitter,fab fa-d-and-d,fab fa-microblog,fab fa-cc-diners-club,fab fa-gg-circle,fab fa-pied-piper-hat,fab fa-kickstarter-k,fab fa-yandex,fab fa-readme,fab fa-html5,fab fa-sellsy,fab fa-sass,fab fa-wirsindhandwerk,fab fa-wsh,fab fa-buromobelexperte,fab fa-salesforce,fab fa-octopus-deploy,fab fa-medapps,fab fa-ns8,fab fa-pinterest-p,fab fa-apper,fab fa-fort-awesome,fab fa-waze,fab fa-cc-jcb,fab fa-snapchat,fab fa-snapchat-ghost,fab fa-fantasy-flight-games,fab fa-rust,fab fa-wix,fab fa-square-behance,fab fa-behance-square,fab fa-supple,fab fa-rebel,fab fa-css3,fab fa-staylinked,fab fa-kaggle,fab fa-space-awesome,fab fa-deviantart,fab fa-cpanel,fab fa-goodreads-g,fab fa-square-git,fab fa-git-square,fab fa-square-tumblr,fab fa-tumblr-square,fab fa-trello,fab fa-creative-commons-nc-jp,fab fa-get-pocket,fab fa-perbyte,fab fa-grunt,fab fa-weebly,fab fa-connectdevelop,fab fa-leanpub,fab fa-black-tie,fab fa-themeco,fab fa-python,fab fa-android,fab fa-bots,fab fa-free-code-camp,fab fa-hornbill,fab fa-js,fab fa-ideal,fab fa-git,fab fa-dev,fab fa-sketch,fab fa-yandex-international,fab fa-cc-amex,fab fa-uber,fab fa-github,fab fa-php,fab fa-alipay,fab fa-youtube,fab fa-skyatlas,fab fa-firefox-browser,fab fa-replyd,fab fa-suse,fab fa-jenkins,fab fa-twitter,fab fa-rockrms,fab fa-pinterest,fab fa-buffer,fab fa-npm,fab fa-yammer,fab fa-btc,fab fa-dribbble,fab fa-stumbleupon-circle,fab fa-internet-explorer,fab fa-telegram,fab fa-telegram-plane,fab fa-old-republic,fab fa-square-whatsapp,fab fa-whatsapp-square,fab fa-node-js,fab fa-edge-legacy,fab fa-slack,fab fa-slack-hash,fab fa-medrt,fab fa-usb,fab fa-tumblr,fab fa-vaadin,fab fa-quora,fab fa-reacteurope,fab fa-medium,fab fa-medium-m,fab fa-amilia,fab fa-mixcloud,fab fa-flipboard,fab fa-viacoin,fab fa-critical-role,fab fa-sitrox,fab fa-discourse,fab fa-joomla,fab fa-mastodon,fab fa-airbnb,fab fa-wolf-pack-battalion,fab fa-buy-n-large,fab fa-gulp,fab fa-creative-commons-sampling-plus,fab fa-strava,fab fa-ember,fab fa-canadian-maple-leaf,fab fa-teamspeak,fab fa-pushed,fab fa-wordpress-simple,fab fa-nutritionix,fab fa-wodu,fab fa-google-pay,fab fa-intercom,fab fa-zhihu,fab fa-korvue,fab fa-pix,fab fa-steam-symbol',
645 ),
646 'foundation' => array(
647 'name' => 'Foundation Icons',
648 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/foundation/foundation-icons.min.css',
649 'iconmap' => 'fi-address-book,fi-alert,fi-align-center,fi-align-justify,fi-align-left,fi-align-right,fi-anchor,fi-annotate,fi-archive,fi-arrow-down,fi-arrow-left,fi-arrow-right,fi-arrow-up,fi-arrows-compress,fi-arrows-expand,fi-arrows-in,fi-arrows-out,fi-asl,fi-asterisk,fi-at-sign,fi-background-color,fi-battery-empty,fi-battery-full,fi-battery-half,fi-bitcoin-circle,fi-bitcoin,fi-blind,fi-bluetooth,fi-bold,fi-book-bookmark,fi-book,fi-bookmark,fi-braille,fi-burst-new,fi-burst-sale,fi-burst,fi-calendar,fi-camera,fi-check,fi-checkbox,fi-clipboard-notes,fi-clipboard-pencil,fi-clipboard,fi-clock,fi-closed-caption,fi-cloud,fi-comment-minus,fi-comment-quotes,fi-comment-video,fi-comment,fi-comments,fi-compass,fi-contrast,fi-credit-card,fi-crop,fi-crown,fi-css3,fi-database,fi-die-five,fi-die-four,fi-die-one,fi-die-six,fi-die-three,fi-die-two,fi-dislike,fi-dollar-bill,fi-dollar,fi-download,fi-eject,fi-elevator,fi-euro,fi-eye,fi-fast-forward,fi-female-symbol,fi-female,fi-filter,fi-first-aid,fi-flag,fi-folder-add,fi-folder-lock,fi-folder,fi-foot,fi-foundation,fi-graph-bar,fi-graph-horizontal,fi-graph-pie,fi-graph-trend,fi-guide-dog,fi-hearing-aid,fi-heart,fi-home,fi-html5,fi-indent-less,fi-indent-more,fi-info,fi-italic,fi-key,fi-laptop,fi-layout,fi-lightbulb,fi-like,fi-link,fi-list-bullet,fi-list-number,fi-list-thumbnails,fi-list,fi-lock,fi-loop,fi-magnifying-glass,fi-mail,fi-male-female,fi-male-symbol,fi-male,fi-map,fi-marker,fi-megaphone,fi-microphone,fi-minus-circle,fi-minus,fi-mobile-signal,fi-mobile,fi-monitor,fi-mountains,fi-music,fi-next,fi-no-dogs,fi-no-smoking,fi-page-add,fi-page-copy,fi-page-csv,fi-page-delete,fi-page-doc,fi-page-edit,fi-page-export-csv,fi-page-export-doc,fi-page-export-pdf,fi-page-export,fi-page-filled,fi-page-multiple,fi-page-pdf,fi-page-remove,fi-page-search,fi-page,fi-paint-bucket,fi-paperclip,fi-pause,fi-paw,fi-paypal,fi-pencil,fi-photo,fi-play-circle,fi-play-video,fi-play,fi-plus,fi-pound,fi-power,fi-previous,fi-price-tag,fi-pricetag-multiple,fi-print,fi-prohibited,fi-projection-screen,fi-puzzle,fi-quote,fi-record,fi-refresh,fi-results-demographics,fi-results,fi-rewind-ten,fi-rewind,fi-rss,fi-safety-cone,fi-save,fi-share,fi-sheriff-badge,fi-shield,fi-shopping-bag,fi-shopping-cart,fi-shuffle,fi-skull,fi-social-500px,fi-social-adobe,fi-social-amazon,fi-social-android,fi-social-apple,fi-social-behance,fi-social-bing,fi-social-blogger,fi-social-delicious,fi-social-designer-news,fi-social-deviant-art,fi-social-digg,fi-social-dribbble,fi-social-drive,fi-social-dropbox,fi-social-evernote,fi-social-facebook,fi-social-flickr,fi-social-forrst,fi-social-foursquare,fi-social-game-center,fi-social-github,fi-social-google-plus,fi-social-hacker-news,fi-social-hi5,fi-social-instagram,fi-social-joomla,fi-social-lastfm,fi-social-linkedin,fi-social-medium,fi-social-myspace,fi-social-orkut,fi-social-path,fi-social-picasa,fi-social-pinterest,fi-social-rdio,fi-social-reddit,fi-social-skillshare,fi-social-skype,fi-social-smashing-mag,fi-social-snapchat,fi-social-spotify,fi-social-squidoo,fi-social-stack-overflow,fi-social-steam,fi-social-stumbleupon,fi-social-treehouse,fi-social-tumblr,fi-social-twitter,fi-social-vimeo,fi-social-windows,fi-social-xbox,fi-social-yahoo,fi-social-yelp,fi-social-youtube,fi-social-zerply,fi-social-zurb,fi-sound,fi-star,fi-stop,fi-strikethrough,fi-subscript,fi-superscript,fi-tablet-landscape,fi-tablet-portrait,fi-target-two,fi-target,fi-telephone-accessible,fi-telephone,fi-text-color,fi-thumbnails,fi-ticket,fi-torso-business,fi-torso-female,fi-torso,fi-torsos-all-female,fi-torsos-all,fi-torsos-female-male,fi-torsos-male-female,fi-torsos,fi-trash,fi-trees,fi-trophy,fi-underline,fi-universal-access,fi-unlink,fi-unlock,fi-upload-cloud,fi-upload,fi-usb,fi-video,fi-volume-none,fi-volume-strike,fi-volume,fi-web,fi-wheelchair,fi-widget,fi-wrench,fi-x-circle,fi-x,fi-yen,fi-zoom-in,fi-zoom-out',
650 ),
651 'themify' => array(
652 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/icons/themify/themify-icons.min.css',
653 'name' => 'Themify Icons',
654 'iconmap' => 'ti-wand,ti-volume,ti-user,ti-unlock,ti-unlink,ti-trash,ti-thought,ti-target,ti-tag,ti-tablet,ti-star,ti-spray,ti-signal,ti-shopping-cart,ti-shopping-cart-full,ti-settings,ti-search,ti-zoom-in,ti-zoom-out,ti-cut,ti-ruler,ti-ruler-pencil,ti-ruler-alt,ti-bookmark,ti-bookmark-alt,ti-reload,ti-plus,ti-pin,ti-pencil,ti-pencil-alt,ti-paint-roller,ti-paint-bucket,ti-na,ti-mobile,ti-minus,ti-medall,ti-medall-alt,ti-marker,ti-marker-alt,ti-arrow-up,ti-arrow-right,ti-arrow-left,ti-arrow-down,ti-lock,ti-location-arrow,ti-link,ti-layout,ti-layers,ti-layers-alt,ti-key,ti-import,ti-image,ti-heart,ti-heart-broken,ti-hand-stop,ti-hand-open,ti-hand-drag,ti-folder,ti-flag,ti-flag-alt,ti-flag-alt-2,ti-eye,ti-export,ti-exchange-vertical,ti-desktop,ti-cup,ti-crown,ti-comments,ti-comment,ti-comment-alt,ti-close,ti-clip,ti-angle-up,ti-angle-right,ti-angle-left,ti-angle-down,ti-check,ti-check-box,ti-camera,ti-announcement,ti-brush,ti-briefcase,ti-bolt,ti-bolt-alt,ti-blackboard,ti-bag,ti-move,ti-arrows-vertical,ti-arrows-horizontal,ti-fullscreen,ti-arrow-top-right,ti-arrow-top-left,ti-arrow-circle-up,ti-arrow-circle-right,ti-arrow-circle-left,ti-arrow-circle-down,ti-angle-double-up,ti-angle-double-right,ti-angle-double-left,ti-angle-double-down,ti-zip,ti-world,ti-wheelchair,ti-view-list,ti-view-list-alt,ti-view-grid,ti-uppercase,ti-upload,ti-underline,ti-truck,ti-timer,ti-ticket,ti-thumb-up,ti-thumb-down,ti-text,ti-stats-up,ti-stats-down,ti-split-v,ti-split-h,ti-smallcap,ti-shine,ti-shift-right,ti-shift-left,ti-shield,ti-notepad,ti-server,ti-quote-right,ti-quote-left,ti-pulse,ti-printer,ti-power-off,ti-plug,ti-pie-chart,ti-paragraph,ti-panel,ti-package,ti-music,ti-music-alt,ti-mouse,ti-mouse-alt,ti-money,ti-microphone,ti-menu,ti-menu-alt,ti-map,ti-map-alt,ti-loop,ti-location-pin,ti-list,ti-light-bulb,ti-Italic,ti-info,ti-infinite,ti-id-badge,ti-hummer,ti-home,ti-help,ti-headphone,ti-harddrives,ti-harddrive,ti-gift,ti-game,ti-filter,ti-files,ti-file,ti-eraser,ti-envelope,ti-download,ti-direction,ti-direction-alt,ti-dashboard,ti-control-stop,ti-control-shuffle,ti-control-play,ti-control-pause,ti-control-forward,ti-control-backward,ti-cloud,ti-cloud-up,ti-cloud-down,ti-clipboard,ti-car,ti-calendar,ti-book,ti-bell,ti-basketball,ti-bar-chart,ti-bar-chart-alt,ti-back-right,ti-back-left,ti-arrows-corner,ti-archive,ti-anchor,ti-align-right,ti-align-left,ti-align-justify,ti-align-center,ti-alert,ti-alarm-clock,ti-agenda,ti-write,ti-window,ti-widgetized,ti-widget,ti-widget-alt,ti-wallet,ti-video-clapper,ti-video-camera,ti-vector,ti-themify-logo,ti-themify-favicon,ti-themify-favicon-alt,ti-support,ti-stamp,ti-split-v-alt,ti-slice,ti-shortcode,ti-shift-right-alt,ti-shift-left-alt,ti-ruler-alt-2,ti-receipt,ti-pin,ti-pin-alt,ti-pencil-alt,ti-palette,ti-more,ti-more-alt,ti-microphone-alt,ti-magnet,ti-line-double,ti-line-dotted,ti-line-dashed,ti-layout-width-full,ti-layout-width-default,ti-layout-width-default-alt,ti-layout-tab,ti-layout-tab-window,ti-layout-tab-v,ti-layout-tab-min,ti-layout-slider,ti-layout-slider-alt,ti-layout-sidebar-right,ti-layout-sidebar-none,ti-layout-sidebar-left,ti-layout-placeholder,ti-layout-menu,ti-layout-menu-v,ti-layout-menu-separated,ti-layout-menu-full,ti-layout-media-right-alt,ti-layout-media-right,ti-layout-media-overlay,ti-layout-media-overlay-alt,ti-layout-media-overlay-alt-2,ti-layout-media-left-alt,ti-layout-media-left,ti-layout-media-center-alt,ti-layout-media-center,ti-layout-list-thumb,ti-layout-list-thumb-alt,ti-layout-list-post,ti-layout-list-large-image,ti-layout-line-solid,ti-layout-grid4,ti-layout-grid3,ti-layout-grid2,ti-layout-grid2-thumb,ti-layout-cta-right,ti-layout-cta-left,ti-layout-cta-center,ti-layout-cta-btn-right,ti-layout-cta-btn-left,ti-layout-column4,ti-layout-column3,ti-layout-column2,ti-layout-accordion-separated,ti-layout-accordion-merged,ti-layout-accordion-list,ti-ink-pen,ti-info-alt,ti-help-alt,ti-headphone-alt,ti-hand-point-up,ti-hand-point-right,ti-hand-point-left,ti-hand-point-down,ti-gallery,ti-face-smile,ti-face-sad,ti-credit-card,ti-control-skip-forward,ti-control-skip-backward,ti-control-record,ti-control-eject,ti-comments-smiley,ti-brush-alt,ti-youtube,ti-vimeo,ti-twitter,ti-time,ti-tumblr,ti-skype,ti-share,ti-share-alt,ti-rocket,ti-pinterest,ti-new-window,ti-microsoft,ti-list-ol,ti-linkedin,ti-layout-sidebar-2,ti-layout-grid4-alt,ti-layout-grid3-alt,ti-layout-grid2-alt,ti-layout-column4-alt,ti-layout-column3-alt,ti-layout-column2-alt,ti-instagram,ti-google,ti-github,ti-flickr,ti-facebook,ti-dropbox,ti-dribbble,ti-apple,ti-android,ti-save,ti-save-alt,ti-yahoo,ti-wordpress,ti-vimeo-alt,ti-twitter-alt,ti-tumblr-alt,ti-trello,ti-stack-overflow,ti-soundcloud,ti-sharethis,ti-sharethis-alt,ti-reddit,ti-pinterest-alt,ti-microsoft-alt,ti-linux,ti-jsfiddle,ti-joomla,ti-html5,ti-flickr-alt,ti-email,ti-drupal,ti-dropbox-alt,ti-css3,ti-rss,ti-rss-alt',
655 ),
656 );
657
658 return $register_icons;
659 }
660
661 // Default Options
662 // ------------------------------------------------------------------------------
663
664 function configuration( $defaults ) {
665
666 $defaults['viewport'] = 1;
667
668 $defaults['styles'] = 1;
669
670 $defaults['styles_normalize'] = 1;
671
672 $defaults['styles_widgets'] = 1;
673
674 $defaults['styles_icons'] = 'dashicons';
675
676 $defaults['styles_pscrollbar'] = 1;
677
678 $defaults['styles_owlcarousel'] = 1;
679
680 return $defaults;
681 }
682
683 function responsive( $defaults ) {
684
685 $defaults['gutter'] = '30';
686 $defaults['screen_sm_width'] = '768';
687 $defaults['screen_md_width'] = '992';
688 $defaults['screen_lg_width'] = '1200';
689
690 return $defaults;
691 }
692
693 function css( $defaults ) {
694
695 $defaults['css'] = '';
696
697 return $defaults;
698 }
699
700 function themes_options( $defaults ) {
701
702 // Layout
703 // ---------------------------------------------------------------------
704 $defaults['layout'] = 'embed';
705 $defaults['layout_offcanvas_float'] = 'right';
706 $defaults['layout_align'] = 'right';
707 $defaults['layout_sticky'] = 0;
708 $defaults['layout_sticky_offset'] = 0;
709 $defaults['layout_divider'] = 'hide';
710 $defaults['layout_caret'] = 'show';
711 $defaults['layout_trigger'] = 'hoverintent';
712 $defaults['layout_current'] = 0;
713 $defaults['layout_classes'] = '';
714 $defaults['layout_breakpoint'] = '768';
715 $defaults['layout_width'] = 0;
716 $defaults['layout_width_inner'] = 0;
717 $defaults['layout_width_inner_selector'] = '';
718 $defaults['layout_lazyload'] = 0;
719 $defaults['layout_dropdown_maxheight'] = 1;
720
721 // Fonts
722 // ---------------------------------------------------------------------
723 $defaults['font'] = array(
724 'font-family' => 'Verdana, Geneva, sans-serif',
725 // 'google' => true,
726 'font-size' => '11',
727 'font-style' => 'normal',
728 'font-weight' => '400',
729 'letter-spacing' => 'inherit',
730 );
731
732 $defaults['navbar_font'] = array(
733 'font-family' => 'Verdana, Geneva, sans-serif',
734 // 'google' => true,
735 'font-size' => '11',
736 'font-weight' => '400',
737 'font-style' => 'normal',
738 'letter-spacing' => 'inherit',
739 );
740
741 $defaults['dropdown_font'] = array(
742 'font-family' => 'Verdana, Geneva, sans-serif',
743 // 'google' => true,
744 'font-size' => '11',
745 'font-weight' => '400',
746 'font-style' => 'normal',
747 'letter-spacing' => 'inherit',
748 );
749
750 // Navbar
751 // ---------------------------------------------------------------------
752
753 $defaults['navbar_logo'] = array(
754 'url' => QUADMENU_PLUGIN_URL . 'assets/frontend/images/logo.png',
755 );
756 $defaults['navbar_logo_link'] = quadmenu_get_translated_home_url( '/' );
757 $defaults['navbar_height'] = '60';
758 $defaults['navbar_width'] = '260';
759 $defaults['navbar_background'] = 'color';
760 $defaults['navbar_background_color'] = '#333333';
761 $defaults['navbar_background_to'] = '#000000';
762
763 $defaults['navbar_background_deg'] = '17';
764
765 $defaults['navbar_divider'] = $defaults['navbar_sharp'] = 'rgba(255,255,255,0.5)';
766
767 $defaults['navbar_toggle_open'] = '#ffffff';
768 $defaults['navbar_toggle_close'] = '#fb88dd';
769
770 $defaults['navbar_mobile_border'] = 'rgba(255,255,255,0.1)';
771
772 $defaults['navbar_text'] = '#aaaaaa';
773
774 $defaults['navbar_logo_bg'] = 'transparent';
775
776 $defaults['navbar_logo_height'] = '25';
777 $defaults['navbar_link'] = '#f1f1f1';
778 $defaults['navbar_link_hover'] = '#ffffff';
779 $defaults['navbar_link_bg'] = 'transparent';
780 $defaults['navbar_link_bg_hover'] = '#111111';
781 $defaults['navbar_link_hover_effect'] = 'rgba(255,255,255,0.3)';
782 $defaults['navbar_link_margin'] = array(
783 'border-top' => '0',
784 'border-right' => '0',
785 'border-left' => '0',
786 'border-bottom' => '0',
787 );
788 $defaults['navbar_link_radius'] = array(
789 'border-top' => '0',
790 'border-right' => '0',
791 'border-left' => '0',
792 'border-bottom' => '0',
793 );
794 $defaults['navbar_link_transform'] = 'uppercase';
795 $defaults['navbar_link_icon'] = '#eeeeee';
796 $defaults['navbar_link_icon_hover'] = '#ffffff';
797 $defaults['navbar_link_subtitle'] = '#eeeeee';
798 $defaults['navbar_link_subtitle_hover'] = '#ffffff';
799 $defaults['navbar_button'] = '#ffffff';
800 $defaults['navbar_button_bg'] = '#fb88dd';
801 $defaults['navbar_button_hover'] = '#ffffff';
802 $defaults['navbar_button_bg_hover'] = '#383838';
803 $defaults['navbar_badge'] = '#fb88dd';
804 $defaults['navbar_badge_color'] = '#ffffff';
805 $defaults['sticky_height'] = '60';
806 $defaults['sticky_background'] = 'rgba(0,0,0,0.95)';
807 $defaults['sticky_logo_height'] = '25';
808 $defaults['navbar_scrollbar'] = '#fb88dd';
809 $defaults['navbar_scrollbar_rail'] = '#ffffff';
810 $defaults['navbar_button'] = '#ffffff';
811 $defaults['navbar_button_background'] = '#fb88dd';
812 $defaults['navbar_button_hover'] = '#383838';
813 $defaults['navbar_button_hover_background'] = '#eeeeee';
814 $defaults['navbar_button_radius'] = array(
815 'border-top' => '2',
816 'border-right' => '2',
817 'border-left' => '2',
818 'border-bottom' => '2',
819 );
820 // Mobile
821 // ---------------------------------------------------------------------
822
823 $defaults['mobile_shadow'] = 'show';
824 $defaults['mobile_link_padding'] = array(
825 'border-top' => '15',
826 'border-right' => '30',
827 'border-left' => '30',
828 'border-bottom' => '15',
829 );
830 $defaults['mobile_link_border'] = array(
831 'border-all' => '0',
832 'border-top' => '0',
833 'border-color' => 'transparent',
834 'border-style' => 'none',
835 );
836
837 // Dropdown
838 // ---------------------------------------------------------------------
839 $defaults['dropdown_shadow'] = 'show';
840 $defaults['dropdown_margin'] = 0;
841 $defaults['dropdown_radius'] = array(
842 'border-top' => '0',
843 'border-right' => '0',
844 'border-left' => '0',
845 'border-bottom' => '0',
846 );
847 $defaults['dropdown_border'] = array(
848 'border-top' => '0',
849 'border-right' => '0',
850 'border-left' => '0',
851 'border-bottom' => '0',
852 'border-color' => '#000000',
853 );
854 $defaults['dropdown_background'] = '#ffffff';
855 $defaults['dropdown_scrollbar'] = '#fb88dd';
856 $defaults['dropdown_scrollbar_rail'] = '#ffffff';
857 $defaults['dropdown_title'] = '#444444';
858 $defaults['dropdown_title_border'] = array(
859 'border-all' => '1',
860 'border-top' => '1',
861 'border-color' => '#fb88dd',
862 'border-style' => 'solid',
863 );
864 $defaults['dropdown_link'] = '#444444';
865 $defaults['dropdown_link_hover'] = '#333333';
866 $defaults['dropdown_link_bg_hover'] = '#f4f4f4';
867 $defaults['dropdown_link_border'] = array(
868 'border-all' => '1',
869 'border-top' => '1',
870 'border-color' => '#f4f4f4',
871 'border-style' => 'solid',
872 );
873 $defaults['dropdown_link_transform'] = 'none';
874 $defaults['dropdown_link_icon'] = '#fb88dd';
875 $defaults['dropdown_link_icon_hover'] = '#a9a9a9';
876 $defaults['dropdown_link_subtitle'] = '#a0a0a0';
877 $defaults['dropdown_link_subtitle_hover'] = '#cccccc';
878 // $defaults['dropdown_link_padding'] = array('border-top' => '15', 'border-right' => '15', 'border-left' => '15', 'border-bottom' => '15');
879 $defaults['dropdown_button'] = '#ffffff';
880 $defaults['dropdown_button_bg'] = '#fb88dd';
881 $defaults['dropdown_button_hover'] = '#ffffff';
882 $defaults['dropdown_button_bg_hover'] = '#000000';
883 // $defaults['dropdown_button_radius'] = array('border-top' => '0', 'border-right' => '0', 'border-left' => '0', 'border-bottom' => '0');
884 $defaults['dropdown_tab_bg'] = 'rgba(0,0,0,0.05)';
885 $defaults['dropdown_tab_bg_hover'] = 'rgba(0,0,0,0.1)';
886
887 // Animations
888 // ---------------------------------------------------------------------
889 $defaults['layout_hover_effect'] = 'quadmenu-hover-ripple';
890
891 $defaults['navbar_animation_text'] = array(
892 'options' => '',
893 'action' => 'hover',
894 'speed' => 't_1000',
895 );
896
897 $defaults['navbar_animation_subtitle'] = array(
898 'options' => '',
899 'action' => 'hover',
900 'speed' => 't_1000',
901 );
902
903 $defaults['navbar_animation_icon'] = array(
904 'options' => '',
905 'action' => 'hover',
906 'speed' => 't_1000',
907 );
908
909 $defaults['navbar_animation_badge'] = array(
910 'options' => 'quadmenu_swing',
911 'action' => 'hover',
912 'speed' => 't_1000',
913 );
914
915 $defaults['navbar_animation_cart'] = array(
916 'options' => 'quadmenu_bounce',
917 'speed' => 't_500',
918 );
919
920 $defaults['layout_animation'] = array(
921 'options' => 'quadmenu_btt',
922 'speed' => 't_300',
923 );
924
925 $defaults['dropdown_animation_text'] = array(
926 'options' => '',
927 'action' => 'hover',
928 'speed' => 't_1000',
929 );
930
931 $defaults['dropdown_animation_subtitle'] = array(
932 'options' => '',
933 'action' => 'hover',
934 'speed' => 't_1000',
935 );
936
937 $defaults['dropdown_animation_icon'] = array(
938 'options' => '',
939 'action' => 'hover',
940 'speed' => 't_1000',
941 );
942
943 $defaults['dropdown_animation_badge'] = array(
944 'options' => 'quadmenu_swing',
945 'action' => 'loop',
946 'speed' => 't_1000',
947 );
948
949 return $defaults;
950 }
951
952 function locations_options( $defaults ) {
953
954 $defaults['integration'] = 0;
955 $defaults['unwrap'] = 0;
956 $defaults['theme'] = 'default_theme';
957
958 return $defaults;
959 }
960
961 public static function instance() {
962 if ( ! isset( self::$instance ) ) {
963 self::$instance = new self();
964 }
965 return self::$instance;
966 }
967 }
968