Gallery – Photo Gallery – Image Gallery - Version 1.3.2

Version Description

  • Validated HTML markup
Download this release

Release Info

Developer machothemes
Plugin Icon wp plugin Gallery – Photo Gallery – Image Gallery
Version 1.3.2
Comparing to
See all releases

Code changes from version 1.3.1 to 1.3.2

Modula.php CHANGED
@@ -1,1281 +1,1281 @@
1
- <?php
2
- /**
3
- * Plugin Name: Gallery - A WordPress Modula Gallery
4
- * Plugin URI: https://wp-modula.com/
5
- * Description: Modula is one of the best & most creative WordPress gallery plugins. Use it to create a great grid or
6
- * masonry image gallery.
7
- * Author: Macho Themes
8
- * Version: 1.3.1
9
- * Author URI: https://www.machothemes.com/
10
- */
11
-
12
- define( 'MODULA_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
13
- define( 'MODULA_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
14
-
15
- function modula_lite_create_db_tables() {
16
- include_once( WP_PLUGIN_DIR . '/modula-best-grid-gallery/lib/install-db.php' );
17
- modula_lite_install_db();
18
- }
19
-
20
- if ( ! class_exists( "ModulaLite" ) ) {
21
- class ModulaLite {
22
-
23
- private $loadedData;
24
- private $fields = array();
25
-
26
- private $version = "1.3.1";
27
-
28
- private $defaultValues = array(
29
- 'width' => 100,
30
- 'height' => 800,
31
- 'img_size' => 500,
32
- 'margin' => 10,
33
- 'filters' => '',
34
- 'filterClick' => 'F',
35
- 'allFilterLabel' => 'All',
36
- 'lightbox' => 'lightbox2',
37
- 'shuffle' => 'F',
38
- 'captionColor' => '#ffffff',
39
- 'wp_field_caption' => 'caption',
40
- 'wp_field_title' => 'title',
41
- 'captionFontSize' => 14,
42
- 'titleFontSize' => 16,
43
- 'enableTwitter' => 'T',
44
- 'enableFacebook' => 'T',
45
- 'enableGplus' => 'T',
46
- 'enablePinterest' => 'T',
47
- 'socialIconColor' => '#ffffff',
48
- 'loadedScale' => 100,
49
- 'loadedRotate' => 0,
50
- 'loadedHSlide' => 0,
51
- 'loadedVSlide' => 0,
52
- 'borderSize' => 0,
53
- 'borderRadius' => 0,
54
- 'borderColor' => '#ffffff',
55
- 'shadowSize' => 0,
56
- 'shadowColor' => '#ffffff',
57
- 'style' => '',
58
- 'script' => '',
59
- 'randomFactor' => 50,
60
- 'hoverColor' => '#000000',
61
- 'hoverOpacity' => '50',
62
- 'hoverEffect' => 'pufrobo',
63
- 'hasResizedImages' => false,
64
- 'importedFrom' => '',
65
- 'hide_title' => false,
66
- 'hide_description' => false,
67
- );
68
-
69
- public function __construct() {
70
- $this->plugin_name = plugin_basename( __FILE__ );
71
- $this->plugin_url = plugins_url( '', __FILE__ );
72
- $this->define_constants();
73
- $this->define_db_tables();
74
- $this->define_hover_effects();
75
- $this->ModulaDB = $this->create_db_conn();
76
-
77
- require_once 'lib/class-modula-feedback.php';
78
- new Modula_Feedback( __FILE__ );
79
-
80
- add_filter( 'widget_text', 'do_shortcode' );
81
- add_filter( 'mce_buttons', array( $this, 'editor_button' ) );
82
- add_filter( 'mce_external_plugins', array( $this, 'register_editor_plugin' ) );
83
-
84
- add_action( 'init', array( $this, 'create_textdomain' ) );
85
-
86
- add_action( 'wp_enqueue_scripts', array( $this, 'add_gallery_scripts' ) );
87
-
88
- add_action( 'admin_menu', array( $this, 'add_gallery_admin_menu' ) );
89
-
90
- add_shortcode( 'Modula', array( $this, 'gallery_shortcode_handler' ) );
91
- add_filter( 'the_content', array( $this, 'shortcode_empty_paragraph_fix' ), 99 );
92
-
93
- add_action( 'wp_ajax_modula_save_gallery', array( $this, 'save_gallery' ) );
94
- add_action( 'wp_ajax_modula_save_image', array( $this, 'save_image' ) );
95
- add_action( 'wp_ajax_modula_add_image', array( $this, 'add_image' ) );
96
- add_action( 'wp_ajax_modula_list_images', array( $this, 'list_images' ) );
97
- add_action( 'wp_ajax_modula_sort_images', array( $this, 'sort_images' ) );
98
- add_action( 'wp_ajax_modula_delete_image', array( $this, 'delete_image' ) );
99
- add_action( 'wp_ajax_modula_resize_images', array( $this, 'resize_images' ) );
100
- add_action( 'wp_ajax_modula_delete_gallery', array( $this, 'delete_gallery' ) );
101
- add_action( 'wp_ajax_modula_clone_gallery', array( $this, 'clone_gallery' ) );
102
- add_action( 'wp_ajax_modula_create_gallery', array( $this, 'create_gallery' ) );
103
- add_action( 'wp_ajax_mtg_shortcode_editor', array( $this, 'mtg_shortcode_editor' ) );
104
- add_action( 'wp_ajax_modula_get_config', array( $this, 'get_config' ) );
105
- add_action( 'wp_ajax_modula_update_config', array( $this, 'update_config' ) );
106
- add_action( 'wp_ajax_modula_get_ext_galleries', array( $this, 'get_ext_galleries' ) );
107
- add_action( 'wp_ajax_modula_do_import_galleries', array( $this, 'do_import_galleries' ) );
108
-
109
- add_filter( 'plugin_row_meta', array( $this, 'register_links' ), 10, 2 );
110
- add_filter( 'admin_footer_text', array( $this, 'admin_footer' ), 1, 2 );
111
-
112
-
113
- // Set fields
114
- $this->fields[ __( 'General', 'modula-gallery' ) ] = array(
115
- "icon" => "mdi mdi-settings",
116
- "fields" => array(
117
- "name" => array(
118
- "name" => esc_html__( 'Name', 'modula-gallery' ),
119
- "type" => "text",
120
- "description" => esc_html__( 'Name of the gallery, for internal use.', 'modula-gallery' ),
121
- "excludeFrom" => array(),
122
- ),
123
- "description" => array(
124
- "name" => esc_html__( 'Description', 'modula-gallery' ),
125
- "type" => "text",
126
- "description" => esc_html__( 'This description is for internal use.', 'modula-gallery' ),
127
- "excludeFrom" => array(),
128
- ),
129
- "width" => array(
130
- "name" => esc_html__( 'Width', 'modula-gallery' ),
131
- "type" => "text",
132
- "description" => esc_html__( 'Width of the gallery (i.e.: 100% or 500px)', 'modula-gallery' ),
133
- "mu" => "px or %",
134
- "excludeFrom" => array(),
135
- ),
136
- "height" => array(
137
- "name" => esc_html__( 'Height', 'modula-gallery' ),
138
- "type" => "number",
139
- "description" => esc_html__( 'Height of the gallery in pixels', 'modula-gallery' ),
140
- "mu" => "px",
141
- "excludeFrom" => array(),
142
- ),
143
- "img_size" => array(
144
- "name" => esc_html__( 'Minimum image size', 'modula-gallery' ),
145
- "type" => "number",
146
- "description" => esc_html__( 'Minimum width or height of the images', 'modula-gallery' ),
147
- "mu" => "px or %",
148
- "excludeFrom" => array(),
149
- ),
150
- "margin" => array(
151
- "name" => esc_html__( 'Margin', 'modula-gallery' ),
152
- "type" => "number",
153
- "description" => esc_html__( 'Margin between images', 'modula-gallery' ),
154
- "mu" => "px",
155
- "excludeFrom" => array(),
156
- ),
157
- "randomFactor" => array(
158
- "name" => esc_html__( 'Random factor', 'modula-gallery' ),
159
- "type" => "ui-slider",
160
- "description" => "",
161
- "min" => 0,
162
- "max" => 100,
163
- "mu" => "%",
164
- "default" => 20,
165
- "excludeFrom" => array(),
166
- ),
167
- "filters" => array(
168
- "name" => esc_html__( 'Filters', 'modula-gallery' ),
169
- "type" => "PRO_FEATURE",
170
- "description" => esc_html__( 'Add your own filters here. Each image can have one or more filters.', 'modula-gallery' ),
171
- "excludeFrom" => array(),
172
- ),
173
- "filterClick" => array(
174
- "name" => esc_html__( 'Reload Page on filter click', 'modula-gallery' ),
175
- "type" => "PRO_FEATURE",
176
- "description" => esc_html__( 'Turn this feature ON if you want to use filters with most lightboxes', 'modula-gallery' ),
177
- "excludeFrom" => array(),
178
- ),
179
- "allFilterLabel" => array(
180
- "name" => esc_html__( 'Text for "All" filter', 'modula-gallery' ),
181
- "type" => "PRO_FEATURE",
182
- "description" => esc_html__( 'Write here the label for the "All" filter', 'modula-gallery' ),
183
- "default" => "All",
184
- "excludeFrom" => array(),
185
- ),
186
- "lightbox" => array(
187
- "name" => esc_html__( 'Lightbox &amp; Links', 'modula-gallery' ),
188
- "type" => "select",
189
- "description" => esc_html__( 'Define here what happens when user click on the images.', 'modula-gallery' ),
190
- "values" => array(
191
- "Link" => array(
192
- "|" . esc_html__( 'No link', 'modula-gallery' ),
193
- "direct|" . esc_html__( 'Direct link to image', 'modula-gallery' ),
194
- "|" . esc_html__( 'Attachment page', 'modula-gallery' )
195
- ),
196
- "Lightboxes" => array( "lightbox2|Lightbox" ),
197
- ),
198
- "disabled" => array(
199
- "Lightboxes with PRO license" => array(
200
- "magnific|Magnific popup",
201
- "prettyphoto|PrettyPhoto",
202
- "fancybox|FancyBox",
203
- "swipebox|SwipeBox",
204
- "lightbox2|Lightbox",
205
- ),
206
- ),
207
- "excludeFrom" => array(),
208
- ),
209
- "shuffle" => array(
210
- "name" => esc_html__( 'Shuffle images', 'modula-gallery' ),
211
- "type" => "toggle",
212
- "default" => "T",
213
- "description" => esc_html__( 'Flag it if you want to shuffle the gallery at each page load', 'modula-gallery' ),
214
- "excludeFrom" => array(),
215
- ),
216
- ),
217
- );
218
- $this->fields[ esc_html__( 'Captions', 'modula-gallery' ) ] = array(
219
- "icon" => "mdi mdi-comment-text-outline",
220
- "fields" => array(
221
- "captionColor" => array(
222
- "name" => esc_html__( 'Caption color', 'modula-gallery' ),
223
- "type" => "color",
224
- "description" => esc_html__( 'Color of the caption.', 'modula-gallery' ),
225
- "default" => "#ffffff",
226
- "excludeFrom" => array(),
227
- ),
228
- "wp_field_caption" => array(
229
- "name" => esc_html__( 'Populate caption from', 'modula-gallery' ),
230
- "type" => "select",
231
- "description" => __( '<strong>This field is used ONLY when images are added to the gallery. </strong> If you don\'t want to automatically populate the caption field select <i>Don\'t Populate</i>', 'modula-gallery' ),
232
- "values" => array(
233
- "Field" => array(
234
- "none|" . esc_html__( 'Don\'t Populate', 'modula-gallery' ),
235
- "title|" . esc_html__( 'WP Image title', 'modula-gallery' ),
236
- "caption|" . esc_html__( 'WP Image caption', 'modula-gallery' ),
237
- "description|" . esc_html__( 'WP Image description', 'modula-gallery' ),
238
- ),
239
- ),
240
- "excludeFrom" => array( "shortcode" ),
241
- ),
242
- "wp_field_title" => array(
243
- "name" => esc_html__( 'Populate title from', 'modula-gallery' ),
244
- "type" => "select",
245
- "description" => __( '<strong>This field is used ONLY when images are added to the gallery. </strong> If you don\'t want to automatically populate the title field select <i>Don\'t Populate</i>', 'modula-gallery' ),
246
- "values" => array(
247
- "Field" => array(
248
- "none|" . esc_html__( 'Don\'t Populate', 'modula-gallery' ),
249
- "title|" . esc_html__( 'WP Image title', 'modula-gallery' ),
250
- "description|" . esc_html__( 'WP Image description', 'modula-gallery' ),
251
- ),
252
- ),
253
- "excludeFrom" => array( "shortcode" ),
254
- ),
255
- "hide_title" => array(
256
- "name" => esc_html__( 'Image Title', 'modula-gallery' ),
257
- "type" => "toggle",
258
- "default" => "T",
259
- "description" => esc_html__( 'Hide image title from frontend', 'modula-gallery' ),
260
- "excludeFrom" => array(),
261
- ),
262
- "hide_description" => array(
263
- "name" => esc_html__( 'Image Description', 'modula-gallery' ),
264
- "type" => "toggle",
265
- "default" => "T",
266
- "description" => esc_html__( 'Hide image description from frontend', 'modula-gallery' ),
267
- "excludeFrom" => array(),
268
- ),
269
- "captionFontSize" => array(
270
- "name" => esc_html__( 'Caption Font Size', 'modula-gallery' ),
271
- "type" => "number",
272
- "description" => "",
273
- "mu" => "px",
274
- "excludeFrom" => array(),
275
- ),
276
- "titleFontSize" => array(
277
- "name" => esc_html__( 'Title Font Size', 'modula-gallery' ),
278
- "type" => "number",
279
- "description" => "",
280
- "mu" => "px",
281
- "excludeFrom" => array(),
282
- ),
283
- ),
284
- );
285
-
286
- $this->fields[ esc_html__( 'Social', 'modula-gallery' ) ] = array(
287
- "icon" => "mdi mdi-link-variant",
288
- "fields" => array(
289
- "enableTwitter" => array(
290
- "name" => esc_html__( 'Add Twitter icon', 'modula-gallery' ),
291
- "type" => "toggle",
292
- "default" => "T",
293
- "description" => esc_html__( 'Enable Twitter Sharing', 'modula-gallery' ),
294
- "excludeFrom" => array(),
295
- ),
296
- "enableFacebook" => array(
297
- "name" => esc_html__( 'Add Facebook icon', 'modula-gallery' ),
298
- "type" => "toggle",
299
- "default" => "T",
300
- "description" => esc_html__( 'Enable Facebook Sharing', 'modula-gallery' ),
301
- "excludeFrom" => array(),
302
- ),
303
- "enableGplus" => array(
304
- "name" => esc_html__( 'Add Google Plus icon', 'modula-gallery' ),
305
- "type" => "toggle",
306
- "default" => "T",
307
- "description" => esc_html__( 'Enable Google Plus Sharing', 'modula-gallery' ),
308
- "excludeFrom" => array(),
309
- ),
310
- "enablePinterest" => array(
311
- "name" => esc_html__( 'Add Pinterest icon', 'modula-gallery' ),
312
- "type" => "toggle",
313
- "default" => "T",
314
- "description" => esc_html__( 'Enable Pinterest Sharing', 'modula-gallery' ),
315
- "excludeFrom" => array(),
316
- ),
317
- "socialIconColor" => array(
318
- "name" => esc_html__( 'Color of social sharing icons', 'modula-gallery' ),
319
- "type" => "color",
320
- "description" => esc_html__( 'Set the color of the social sharing icons', 'modula-gallery' ),
321
- "default" => "#ffffff",
322
- "excludeFrom" => array(),
323
- ),
324
- ),
325
-
326
- );
327
- $this->fields[ esc_html__( 'Image loaded effects', 'modula-gallery' ) ] = array(
328
- "icon" => "mdi mdi-reload",
329
- "fields" => array(
330
- "loadedScale" => array(
331
- "name" => esc_html__( 'Scale', 'modula-gallery' ),
332
- "description" => esc_html__( 'Choose a value below 100% for a zoom-in effect. Choose a value over 100% for a zoom-out effect', 'modula-gallery' ),
333
- "type" => "ui-slider",
334
- "min" => 0,
335
- "max" => 200,
336
- "mu" => "%",
337
- "default" => 100,
338
- "excludeFrom" => array(),
339
- ),
340
- "loadedRotate" => array(
341
- "name" => esc_html__( 'Rotate', 'modula-gallery' ),
342
- "description" => "",
343
- "type" => "PRO_FEATURE",
344
- "min" => - 180,
345
- "max" => 180,
346
- "default" => 0,
347
- "mu" => "deg",
348
- "excludeFrom" => array(),
349
- ),
350
- "loadedHSlide" => array(
351
- "name" => esc_html__( 'Horizontal slide', 'modula-gallery' ),
352
- "description" => "",
353
- "type" => "PRO_FEATURE",
354
- "min" => - 100,
355
- "max" => 100,
356
- "mu" => "px",
357
- "default" => 0,
358
- "excludeFrom" => array(),
359
- ),
360
- "loadedVSlide" => array(
361
- "name" => esc_html__( 'Vertical slide', 'modula-gallery' ),
362
- "description" => "",
363
- "type" => "PRO_FEATURE",
364
- "min" => - 100,
365
- "max" => 100,
366
- "mu" => "px",
367
- "default" => 0,
368
- "excludeFrom" => array(),
369
- ),
370
-
371
- ),
372
- );
373
- $this->fields[ esc_html__( 'Hover effect', 'modula-gallery' ) ] = array(
374
- "icon" => "mdi mdi-blur",
375
- "fields" => array(
376
- "Effect" => array(
377
- "name" => esc_html__( 'Effect', 'modula-gallery' ),
378
- "description" => esc_html__( 'Select an hover effect', 'modula-gallery' ),
379
- "type" => "hover-effect",
380
- "excludeFrom" => array(),
381
- ),
382
- ),
383
- );
384
- $this->fields[ esc_html__( 'Style', 'modula-gallery' ) ] = array(
385
- "icon" => "mdi mdi-format-paint",
386
- "fields" => array(
387
- "borderSize" => array(
388
- "name" => esc_html__( 'Border Size', 'modula-gallery' ),
389
- "type" => "ui-slider",
390
- "description" => "",
391
- "mu" => "px",
392
- "min" => 0,
393
- "max" => 10,
394
- "default" => 0,
395
- "excludeFrom" => array(),
396
- ),
397
- "borderRadius" => array(
398
- "name" => esc_html__( 'Border Radius', 'modula-gallery' ),
399
- "type" => "ui-slider",
400
- "description" => "",
401
- "mu" => "px",
402
- "min" => 0,
403
- "max" => 100,
404
- "default" => 0,
405
- "excludeFrom" => array(),
406
- ),
407
- "borderColor" => array(
408
- "name" => esc_html__( 'Border Color', 'modula-gallery' ),
409
- "type" => "color",
410
- "description" => "",
411
- "default" => "#ffffff",
412
- "excludeFrom" => array(),
413
- ),
414
- "shadowSize" => array(
415
- "name" => esc_html__( 'Shadow Size', 'modula-gallery' ),
416
- "type" => "ui-slider",
417
- "description" => "",
418
- "mu" => "px",
419
- "min" => 0,
420
- "max" => 20,
421
- "default" => 0,
422
- "excludeFrom" => array(),
423
- ),
424
- "shadowColor" => array(
425
- "name" => esc_html__( 'Shadow Color', 'modula-gallery' ),
426
- "type" => "color",
427
- "description" => "",
428
- "default" => "#ffffff",
429
- "excludeFrom" => array(),
430
- ),
431
-
432
- ),
433
- );
434
- $this->fields[ esc_html__( 'Customizations', 'modula-gallery' ) ] = array(
435
- "icon" => "mdi mdi-puzzle",
436
- "fields" => array(
437
- "script" => array(
438
- "name" => esc_html__( 'Custom scripts', 'modula-gallery' ),
439
- "type" => "textarea",
440
- "description" => esc_html__( 'This script will be called after the gallery initialization. Useful for custom lightboxes.', 'modula-gallery' ) . "
441
- <br />
442
- <br />
443
- <strong>Write just the code without using the &lt;script&gt;&lt;/script&gt; tags</strong>",
444
- "excludeFrom" => array( "shortcode" ),
445
- ),
446
- "style" => array(
447
- "name" => esc_html__( 'Custom css', 'modula-gallery' ),
448
- "type" => "textarea",
449
- "description" => '<strong>' . esc_html__( 'Write just the code without using the &lt;style&gt;&lt;/style&gt; tags', 'modula-gallery' ) . '</strong>',
450
- "excludeFrom" => array( "shortcode" ),
451
- ),
452
- ),
453
- );
454
-
455
- }
456
-
457
- //Define textdomain
458
- public function create_textdomain() {
459
- $plugin_dir = basename( dirname( __FILE__ ) );
460
- load_plugin_textdomain( 'modula-gallery', false, $plugin_dir . '/lib/languages' );
461
- }
462
-
463
- function define_hover_effects() {
464
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'None', 'none', false, false, 0 );
465
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Pufrobo', 'pufrobo', true, true, 4 );
466
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Fluid Up', '', true, true, 0 );
467
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Hide', '', true, true, 4 );
468
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Quiet', '', true, false, 4 );
469
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Catinelle', '', false, false, 4 );
470
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Reflex', '', true, true, 4 );
471
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Curtain', '', true, false, 4 );
472
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Lens', '', true, true, 4 );
473
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Appear', '', true, false, 4 );
474
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Crafty', '', true, true, 0 );
475
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Seemo', '', true, false, 4 );
476
- $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Comodo', '', true, false, 4 );
477
- }
478
-
479
- public function get_ext_galleries() {
480
- header( "Content-type: application/json" );
481
-
482
- global $wpdb;
483
-
484
- if ( check_admin_referer( "Modula", "Modula" ) ) {
485
- $res = array( "success" => 0 );
486
-
487
- $source = $_POST['source'];
488
- if ( $source ) {
489
- $res['success'] = 1;
490
- $res['galleries'] = array();
491
-
492
- switch ( $source ) {
493
- case 'Envira':
494
- $galleries = get_posts( array(
495
- 'post_type' => 'envira',
496
- 'posts_per_page' => 1000,
497
- ) );
498
- foreach ( $galleries as $g ) {
499
- $item = array();
500
- $item['id'] = $g->ID;
501
- $item['title'] = $g->post_title;
502
- $res['galleries'] [] = $item;
503
- }
504
- break;
505
- case 'NextGen':
506
- $galleries = $wpdb->get_results( "SELECT title, gid FROM $wpdb->nggallery" );
507
- foreach ( $galleries as $g ) {
508
- $item = array();
509
- $item['id'] = $g->gid;
510
- $item['title'] = $g->title;
511
- $res['galleries'] [] = $item;
512
- }
513
- break;
514
- }
515
- }
516
-
517
- echo json_encode( $res );
518
- }
519
- die();
520
- }
521
-
522
- public function admin_footer( $text ) {
523
- global $current_screen;
524
- if ( ! empty( $current_screen->id ) && strpos( $current_screen->id, 'modula-lite' ) !== false ) {
525
- $url = 'https://wordpress.org/support/plugin/modula-best-grid-gallery/reviews/?rate=5#new-post';
526
- $text = sprintf( __( 'Please rate <strong>Modula Gallery</strong> <a href="%s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%s" target="_blank">WordPress.org</a> to help us spread the word. Thank you, on behalf of the Modula team!', 'modula-gallery' ), $url, $url );
527
- }
528
-
529
- return $text;
530
- }
531
-
532
- public function do_import_galleries() {
533
- global $wpdb;
534
-
535
- header( "Content-type: application/json" );
536
- if ( check_admin_referer( "Modula", "Modula" ) ) {
537
- $res = array( "success" => 0 );
538
- $source = $_POST['source'];
539
- $ids = explode( ",", $_POST['ids'] );
540
- switch ( $source ) {
541
- case 'Envira':
542
- foreach ( $ids as $id ) {
543
- $gallery = get_post( $id );
544
- $meta = get_post_meta( $id );
545
- $data = unserialize( $meta['_eg_gallery_data'][0] );
546
-
547
- $g = array(
548
- 'name' => $data['config']['title'],
549
- 'description' => 'Imported from Envira (' . $id . ') on ' . date( 'M, d Y' ),
550
- 'margin' => $data['config']['gutter'],
551
- 'hasResizedImages' => true,
552
- 'importedFrom' => 'Envira',
553
- );
554
- $gdb = array_merge( $this->defaultValues, $g );
555
-
556
- $saved = $this->ModulaDB->addGallery( $gdb );
557
- $newId = $this->ModulaDB->getNewGalleryId();
558
-
559
- if ( $newId && count( $data['gallery'] ) ) {
560
- $images = array();
561
- //TODO only active images
562
- foreach ( $data['gallery'] as $item ) {
563
- $toAdd = new stdClass();
564
- $toAdd->imageId = $this->ModulaDB->getIDbyGUID( $item['src'] );
565
- $toAdd->title = $item['title'];
566
- $toAdd->description = $item['caption'];
567
- $toAdd->imagePath = $item['src'];
568
-
569
- $images [] = $toAdd;
570
- }
571
- $imgResult = $this->ModulaDB->addImages( $newId, $images );
572
- }
573
- }
574
- $res['success'] = 1;
575
- break;
576
- case 'NextGen':
577
- foreach ( $ids as $id ) {
578
- $gallery = $wpdb->get_row( $wpdb->prepare( "SELECT title, gid, path FROM $wpdb->nggallery WHERE gid=%s", $id ) );
579
-
580
- $dbimages = $wpdb->get_results( $wpdb->prepare( "SELECT filename, description, alttext FROM $wpdb->nggpictures WHERE exclude <> 1 AND galleryid=%s", $id ) );
581
-
582
- $g = array(
583
- 'name' => $gallery->title,
584
- 'description' => 'Imported from NextGet (' . $id . ') on ' . date( 'M, d Y' ),
585
- 'hasResizedImages' => true,
586
- 'importedFrom' => 'NextGen',
587
- );
588
- $gdb = array_merge( $this->defaultValues, $g );
589
-
590
- $saved = $this->ModulaDB->addGallery( $gdb );
591
- $newId = $this->ModulaDB->getNewGalleryId();
592
-
593
- if ( $newId && count( $dbimages ) ) {
594
- $images = array();
595
- foreach ( $dbimages as $item ) {
596
- $toAdd = new stdClass();
597
- $toAdd->imageId = - 1;
598
- $toAdd->title = $item->alttext;
599
- $toAdd->description = $item->description;
600
- $toAdd->imagePath = plugins_url( 'image.php', __FILE__ ) . "?w=" . $this->defaultValues['img_size'] . "&src=" . $gallery->path . "/" . $item->filename;
601
-
602
- $images [] = $toAdd;
603
- }
604
- $imgResult = $this->ModulaDB->addImages( $newId, $images );
605
-
606
- }
607
- }
608
- $res['success'] = 1;
609
- break;
610
- }
611
-
612
- echo json_encode( $res );
613
- }
614
- die();
615
- }
616
-
617
- public function register_links( $links, $file ) {
618
- $base = plugin_basename( __FILE__ );
619
- if ( $file == $base ) {
620
- $links[] = '<a href="admin.php?page=modula-lite-admin" title="' . esc_html__( 'Modula Grid Gallery Dashboard', 'modula-gallery' ) . '">' . esc_html__( 'Dashboard', 'modula-gallery' ) . '</a>';
621
- $links[] = '<a href="https://twitter.com/MachoThemez" title="@MachoThemez on Twitter">Twitter</a>';
622
- $links[] = '<a href="https://www.facebook.com/machothemes" title="MachoThemes on Facebook">Facebook</a>';
623
- }
624
-
625
- return $links;
626
-
627
- }
628
-
629
- //delete gallery
630
- function delete_gallery() {
631
- if ( check_admin_referer( "Modula", "Modula" ) ) {
632
- $id = intval( $_POST['gid'] );
633
- $this->ModulaDB->deleteGallery( $id );
634
- }
635
-
636
- die();
637
- }
638
-
639
- public function update_config() {
640
- if ( check_admin_referer( "Modula", "Modula" ) ) {
641
- $id = $_POST['id'];
642
- $config = stripslashes( $_POST['config'] );
643
-
644
- $this->ModulaDB->update_config( $id, $config );
645
- }
646
-
647
- die();
648
- }
649
-
650
- public function get_config() {
651
- if ( check_admin_referer( "Modula", "Modula" ) ) {
652
- $id = $_POST['id'];
653
-
654
- $data = $this->ModulaDB->getConfig( $id );
655
-
656
- print json_encode( $data );
657
-
658
- }
659
-
660
- die();
661
- }
662
-
663
- //add gallery
664
-
665
- function create_gallery() {
666
- if ( check_admin_referer( "Modula", "Modula" ) ) {
667
- $data = $this->defaultValues;
668
- $data["name"] = $_POST['name'];
669
- $data["description"] = $_POST['description'];
670
- $data["width"] = $_POST['width'];
671
- $data["height"] = $_POST['height'];
672
- $data["img_size"] = intval( $_POST['img_size'] );
673
- $data["hasResizedImages"] = true;
674
-
675
- $this->ModulaDB->addGallery( $data );
676
- $id = $this->ModulaDB->getLastGalleryId()->Id;
677
-
678
- if ( $id > 0 && array_key_exists( 'images', $_POST ) && strlen( $_POST['images'] ) ) {
679
- $enc_images = stripslashes( $_POST["images"] );
680
- $images = array_splice( json_decode( $enc_images ), 0, 11 + 9 );
681
- ModulaLiteTools::check_and_resize( $images, $data['img_size'] );
682
- $result = $this->ModulaDB->addImages( $id, $images );
683
- }
684
- print $id;
685
- }
686
- die;
687
- }
688
-
689
- //clone gallery
690
- function clone_gallery() {
691
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
692
- $sourceId = intval( $_POST['gid'] );
693
- $g = $this->ModulaDB->getGalleryById( $sourceId, $this->defaultValues );
694
- $g->name .= "(copy)";
695
- $this->ModulaDB->addGallery( $g );
696
- $id = $this->ModulaDB->getNewGalleryId();
697
- $images = $this->ModulaDB->getImagesByGalleryId( $sourceId );
698
-
699
- foreach ( $images as &$image ) {
700
- $image->Id = null;
701
- $image->gid = $id;
702
- }
703
-
704
- $this->ModulaDB->addImages( $id, $images );
705
- }
706
-
707
- die();
708
- }
709
-
710
-
711
- //Define constants
712
- public function define_constants() {
713
- if ( ! defined( 'Modula_PLUGIN_BASENAME' ) ) {
714
- define( 'Modula_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
715
- }
716
-
717
- if ( ! defined( 'Modula_PLUGIN_NAME' ) ) {
718
- define( 'Modula_PLUGIN_NAME', trim( dirname( Modula_PLUGIN_BASENAME ), '/' ) );
719
- }
720
-
721
- if ( ! defined( 'Modula_PLUGIN_DIR' ) ) {
722
- define( 'Modula_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . Modula_PLUGIN_NAME );
723
- }
724
- }
725
-
726
- //delete Gallery
727
-
728
-
729
- //Define DB tables
730
- public function define_db_tables() {
731
- global $wpdb;
732
-
733
- $wpdb->ModulaGalleries = $wpdb->prefix . 'modula';
734
- $wpdb->ModulaImages = $wpdb->prefix . 'modula_images';
735
- }
736
-
737
-
738
- public function create_db_conn() {
739
- require( 'lib/db-class.php' );
740
- $ModulaDB = ModulaLiteDB::getInstance();
741
-
742
- return $ModulaDB;
743
- }
744
-
745
- public function editor_button( $buttons ) {
746
- array_push( $buttons, 'separator', 'mtg_shortcode_editor' );
747
-
748
- return $buttons;
749
- }
750
-
751
- public function register_editor_plugin( $plugin_array ) {
752
- $plugin_array['mtg_shortcode_editor'] = plugins_url( '/admin/scripts/editor-plugin.js', __file__ );
753
-
754
- return $plugin_array;
755
- }
756
-
757
- public function mtg_shortcode_editor() {
758
- $css_path = plugins_url( 'assets/css/admin.css', __FILE__ );
759
- $admin_url = admin_url();
760
-
761
- $galleries = $this->ModulaDB->getGalleries(); //load all galleries
762
-
763
- include 'admin/include/tinymce-galleries.php';
764
- die();
765
- }
766
-
767
- //Add gallery scripts
768
- public function add_gallery_scripts() {
769
- wp_enqueue_script( 'jquery' );
770
-
771
- wp_register_script( 'modula', plugins_url() . '/modula-best-grid-gallery/scripts/jquery.modula.js', array( 'jquery' ) );
772
- wp_enqueue_script( 'modula' );
773
-
774
- wp_register_style( 'modula_stylesheet', plugins_url() . '/modula-best-grid-gallery/scripts/modula.css', null, $this->version );
775
- wp_enqueue_style( 'modula_stylesheet' );
776
-
777
- wp_register_style( 'effects_stylesheet', plugins_url() . '/modula-best-grid-gallery/scripts/effects.css', null, $this->version );
778
- wp_enqueue_style( 'effects_stylesheet' );
779
-
780
- wp_register_script( 'lightbox2_script', plugins_url() . '/modula-best-grid-gallery/lightbox/lightbox2/js/lightbox.min.js', array( 'jquery' ), $this->version, true );
781
- wp_register_style( 'lightbox2_stylesheet', plugins_url() . '/modula-best-grid-gallery/lightbox/lightbox2/css/lightbox.min.css' );
782
- }
783
-
784
- //Admin Section - register scripts and styles
785
- public function gallery_admin_init() {
786
- if ( function_exists( 'wp_enqueue_media' ) ) {
787
- wp_enqueue_media();
788
- }
789
-
790
- wp_enqueue_script( 'jquery' );
791
-
792
- wp_enqueue_script( 'wp-color-picker' );
793
- wp_enqueue_style( 'wp-color-picker' );
794
-
795
- wp_enqueue_script( 'media-upload' );
796
- wp_enqueue_script( 'thickbox' );
797
-
798
- wp_register_style( 'materialize', plugins_url() . '/modula-best-grid-gallery/admin/css/materialize.css' );
799
- wp_enqueue_style( 'materialize' );
800
-
801
- wp_register_style( 'styles', plugins_url() . '/modula-best-grid-gallery/admin/css/style.css' );
802
- wp_enqueue_style( 'styles' );
803
-
804
- wp_register_style( 'effects', plugins_url() . '/modula-best-grid-gallery/scripts/effects.css' );
805
- wp_enqueue_style( 'effects' );
806
-
807
- wp_register_script( 'materialize', plugins_url() . '/modula-best-grid-gallery/admin/scripts/materialize.js', array( 'jquery' ) );
808
-
809
- wp_register_script( 'modula', plugins_url() . '/modula-best-grid-gallery/admin/scripts/modula-admin.js', array(
810
- 'materialize',
811
- 'jquery',
812
- 'media-upload',
813
- 'thickbox',
814
- ), false, false );
815
-
816
- wp_enqueue_script( 'modula' );
817
-
818
- wp_register_style( 'materialdesign-icons', plugins_url() . '/modula-best-grid-gallery/admin/css/materialdesignicons.css' );
819
- wp_enqueue_style( 'materialdesign-icons' );
820
-
821
- wp_enqueue_style( 'thickbox' );
822
-
823
- $tg_db_version = '1.0';
824
- $installed_ver = get_option( "Modula_db_version" );
825
-
826
- if ( $installed_ver != $tg_db_version ) {
827
- modula_lite_create_db_tables();
828
- update_option( "Modula_db_version", $tg_db_version );
829
- }
830
- }
831
-
832
-
833
- //Create Admin Menu
834
- public function add_gallery_admin_menu() {
835
- $overview = add_menu_page( esc_html__( 'Manage Galleries', 'modula-gallery' ), esc_html__( 'Modula', 'modula-gallery' ), 'edit_posts', 'modula-lite-admin', array(
836
- $this,
837
- 'add_overview',
838
- ), plugins_url() . '/modula-best-grid-gallery/admin/icon.png' );
839
-
840
-
841
- if ( ! get_option( "Modula_skip_fix" ) && get_option( "Modula_db_version" ) && count( $this->ModulaDB->getGalleries() ) > 0 ) {
842
-
843
- $imageUrl = null;
844
- foreach ( $this->ModulaDB->getGalleries() as $gallery ) {
845
- $gid = $gallery->Id;
846
- $images = $this->ModulaDB->getImagesByGalleryId( $gid );
847
- if ( count( $images ) > 0 ) {
848
- $imageUrl = $images[0]->imagePath;
849
- break;
850
- }
851
- }
852
-
853
- if ( $imageUrl ) {
854
- if ( strncmp( strtolower( $imageUrl ), strtolower( site_url() ), strlen( site_url() ) ) != 0 ) {
855
- $fix = add_submenu_page( 'modula-lite-admin', __( 'Modula >> Fix', 'modula-gallery' ), '❗️ ' . __( 'Fix', 'modula-gallery' ), 'edit_posts', 'modula-lite-gallery-fix', array(
856
- $this,
857
- 'fix',
858
- ) );
859
- add_action( 'load-' . $fix, array( $this, 'gallery_admin_init' ) );
860
- }
861
- }
862
- } else {
863
- add_option( 'Modula_skip_fix', true );
864
- }
865
-
866
- $add_gallery = add_submenu_page( 'modula-lite-admin', __( 'Modula - Add Gallery', 'modula-gallery' ), __( 'Add Gallery', 'modula-gallery' ), 'edit_posts', 'modula-lite-add', array(
867
- $this,
868
- 'add_gallery',
869
- ) );
870
- $edit_gallery = add_submenu_page( NULL, __( 'Modula - Edit Gallery', 'modula-gallery' ), __( 'Edit Gallery', 'modula-gallery' ), 'edit_posts', 'modula-lite-edit', array(
871
- $this,
872
- 'edit_gallery',
873
- ) );
874
- $upgrade = add_submenu_page( 'modula-lite-admin', __( 'Modula - Upgrade to PRO', 'modula-gallery' ), __( 'Upgrade to PRO', 'modula-gallery' ), 'edit_posts', 'modula-lite-gallery-upgrade', array(
875
- $this,
876
- 'upgrade',
877
- ) );
878
-
879
-
880
- add_action( 'load-' . $overview, array( $this, 'gallery_admin_init' ) );
881
- add_action( 'load-' . $add_gallery, array( $this, 'gallery_admin_init' ) );
882
- add_action( 'load-' . $edit_gallery, array( $this, 'gallery_admin_init' ) );
883
- add_action( 'load-' . $upgrade, array( $this, 'gallery_admin_init' ) );
884
-
885
- }
886
-
887
- //Create Admin Pages
888
- public function add_overview() {
889
- include( "admin/overview.php" );
890
- }
891
-
892
- public function upgrade() {
893
- include( "admin/upgrade.php" );
894
- }
895
-
896
- public function add_gallery() {
897
- include( "admin/add-gallery.php" );
898
- }
899
-
900
- public function fix() {
901
- global $wpdb;
902
- include( "admin/fix.php" );
903
- }
904
-
905
- public function delete_image() {
906
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
907
- foreach ( explode( ",", $_POST["id"] ) as $id ) {
908
- $this->ModulaDB->deleteImage( intval( $id ) );
909
- }
910
- }
911
- die();
912
- }
913
-
914
- public function add_image() {
915
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
916
- $gid = intval( $_POST['galleryId'] );
917
- $this->loadedData = $this->ModulaDB->getGalleryById( $gid, $this->defaultValues );
918
- $prev = $this->ModulaDB->getImagesByGalleryId( $gid );
919
-
920
- $enc_images = stripslashes( $_POST["enc_images"] );
921
- $images = json_decode( $enc_images );
922
-
923
- $d = 18 + log10( 100 );
924
- $images = array_slice( $images, 0, $d - count( $prev ) );
925
- $images = ModulaLiteTools::check_and_resize( $images, $this->loadedData->img_size );
926
- $result = $this->ModulaDB->addImages( $gid, $images );
927
-
928
- header( "Content-type: application/json" );
929
- if ( $result === false ) {
930
- print "{\"success\":false}";
931
- } else {
932
- print "{\"success\":true}";
933
- }
934
- }
935
- die();
936
- }
937
-
938
- public function sort_images() {
939
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
940
- $result = $this->ModulaDB->sortImages( explode( ',', $_POST['ids'] ) );
941
-
942
- header( "Content-type: application/json" );
943
- if ( $result === false ) {
944
- print "{\"success\":false}";
945
- } else {
946
- print "{\"success\":true}";
947
- }
948
- }
949
- die();
950
- }
951
-
952
- public function save_image() {
953
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
954
- $result = false;
955
- // $type = $_POST['type'];
956
- $imageUrl = esc_url( $_POST['img_url'] );
957
- $imageCaption = stripslashes( $_POST['description'] );
958
- $title = stripslashes( $_POST['title'] );
959
- $target = $_POST['target'];
960
- $link = isset( $_POST['link'] ) ? stripslashes( $_POST['link'] ) : null;
961
- $imageId = intval( $_POST['img_id'] );
962
- $sortOrder = intval( $_POST['sortOrder'] );
963
- $halign = $_POST['halign'];
964
- $valign = $_POST['valign'];
965
-
966
- $data = array(
967
- "target" => $target,
968
- "link" => $link,
969
- "imageId" => $imageId,
970
- "description" => $imageCaption,
971
- 'title' => $title,
972
- "halign" => $halign,
973
- "valign" => $valign,
974
- "sortOrder" => $sortOrder,
975
- );
976
-
977
- if ( ! empty( $_POST['id'] ) ) {
978
- $imageId = intval( $_POST['id'] );
979
- $result = $this->ModulaDB->editImage( $imageId, $data );
980
- } else {
981
- $data["gid"] = intval( $_POST['galleryId'] );
982
- $result = $this->ModulaDB->addFullImage( $data );
983
- }
984
-
985
- header( "Content-type: application/json" );
986
-
987
- if ( $result === false ) {
988
- print "{\"success\":false}";
989
- } else {
990
- print "{\"success\":true}";
991
- }
992
-
993
- }
994
- die();
995
- }
996
-
997
- public function list_images() {
998
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
999
- $gid = intval( $_POST["gid"] );
1000
- $gallery = $this->ModulaDB->getGalleryById( $gid, $this->defaultValues );
1001
-
1002
- $imageResults = $this->ModulaDB->getImagesByGalleryId( $gid );
1003
-
1004
- include( 'admin/include/image-list.php' );
1005
- }
1006
- die();
1007
- }
1008
-
1009
- private function checkboxVal( $field ) {
1010
- if ( isset( $_POST[ $field ] ) ) //return 'checked';
1011
- {
1012
- return 'T';
1013
- }
1014
-
1015
- //return '';
1016
- return 'F';
1017
- }
1018
-
1019
- public function save_gallery() {
1020
- if ( check_admin_referer( 'Modula', 'Modula' ) ) {
1021
- $galleryName = stripslashes( $_POST['tg_name'] );
1022
- $galleryDescription = stripslashes( $_POST['tg_description'] );
1023
- $slug = strtolower( str_replace( " ", "", $galleryName ) );
1024
- $margin = intval( $_POST['tg_margin'] );
1025
- $shuffle = $this->checkboxVal( 'tg_shuffle' );
1026
- $width = $_POST['tg_width'];
1027
- $height = $_POST['tg_height'];
1028
- $enableTwitter = $this->checkboxVal( 'tg_enableTwitter' );
1029
- $enableFacebook = $this->checkboxVal( 'tg_enableFacebook' );
1030
- $enableGplus = $this->checkboxVal( 'tg_enableGplus' );
1031
- $enablePinterest = $this->checkboxVal( 'tg_enablePinterest' );
1032
- $lightbox = $_POST['tg_lightbox'];
1033
- $wp_field_caption = $_POST['tg_wp_field_caption'];
1034
- $wp_field_title = $_POST['tg_wp_field_title'];
1035
- $hide_title = $this->checkboxVal( 'tg_hide_title' );
1036
- $hide_description = $this->checkboxVal( 'tg_hide_description' );
1037
- $captionColor = $_POST['tg_captionColor'];
1038
- $borderSize = intval( $_POST['tg_borderSize'] );
1039
- $loadedScale = intval( $_POST['tg_loadedScale'] );
1040
- $loadedRotate = intval( $_POST['tg_loadedRotate'] );
1041
- $loadedVSlide = intval( $_POST['tg_loadedVSlide'] );
1042
- $loadedHSlide = intval( $_POST['tg_loadedHSlide'] );
1043
- $socialIconColor = $_POST['tg_socialIconColor'];
1044
- $hoverEffect = $_POST['tg_hoverEffect'];
1045
- $titleFontSize = intval( $_POST['tg_titleFontSize'] );
1046
- $captionFontSize = intval( $_POST['tg_captionFontSize'] );
1047
- $borderColor = $_POST['tg_borderColor'];
1048
- $borderRadius = intval( $_POST['tg_borderRadius'] );
1049
- $shadowColor = $_POST['tg_shadowColor'];
1050
- $shadowSize = intval( $_POST['tg_shadowSize'] );
1051
- $style = $_POST['tg_style'];
1052
- $script = $_POST['tg_script'];
1053
-
1054
- $id = isset( $_POST['ftg_gallery_edit'] ) ? intval( $_POST['ftg_gallery_edit'] ) : 0;
1055
-
1056
- $data = array(
1057
- 'name' => $galleryName,
1058
- 'slug' => $slug,
1059
- 'description' => $galleryDescription,
1060
- 'lightbox' => $lightbox,
1061
- 'img_size' => intval( $_POST['tg_img_size'] ),
1062
- 'hasResizedImages' => true,
1063
- 'wp_field_caption' => $wp_field_caption,
1064
- 'wp_field_title' => $wp_field_title,
1065
- 'hide_title' => $hide_title,
1066
- 'hide_description' => $hide_description,
1067
- 'margin' => $margin,
1068
- 'randomFactor' => $_POST['tg_randomFactor'],
1069
- 'shuffle' => $shuffle,
1070
- 'enableTwitter' => $enableTwitter,
1071
- 'enableFacebook' => $enableFacebook,
1072
- 'enableGplus' => $enableGplus,
1073
- 'enablePinterest' => $enablePinterest,
1074
- 'captionColor' => $captionColor,
1075
- 'hoverEffect' => $hoverEffect,
1076
- 'borderSize' => $borderSize,
1077
- 'loadedScale' => $loadedScale,
1078
- 'loadedHSlide' => $loadedHSlide,
1079
- 'loadedVSlide' => $loadedVSlide,
1080
- 'loadedRotate' => $loadedRotate,
1081
- 'socialIconColor' => $socialIconColor,
1082
- 'captionFontSize' => $captionFontSize,
1083
- 'titleFontSize' => $titleFontSize,
1084
- 'borderColor' => $borderColor,
1085
- 'borderRadius' => $borderRadius,
1086
- 'shadowSize' => $shadowSize,
1087
- 'shadowColor' => $shadowColor,
1088
- 'width' => $width,
1089
- 'height' => $height,
1090
- 'style' => $style,
1091
- 'script' => $script,
1092
- );
1093
-
1094
- header( "Content-type: application/json" );
1095
- if ( $id > 0 ) {
1096
- $result = $this->ModulaDB->editGallery( $id, $data );
1097
-
1098
- if ( intval( $this->loadedData->img_size ) != $data['img_size'] ) {
1099
- $images = $this->ModulaDB->getImagesByGalleryId( $id );
1100
- $images = ModulaLiteTools::check_and_resize( $images, $data['img_size'] );
1101
-
1102
- foreach ( $images as $img ) {
1103
- $this->ModulaDB->editImage( $img->Id, (array) $img );
1104
- }
1105
- }
1106
-
1107
- $this->loadedData = $this->ModulaDB->getGalleryById( $id, $this->defaultValues );
1108
- } else {
1109
- $result = $this->ModulaDB->addGallery( $data );
1110
- $id = $this->ModulaDB->getNewGalleryId();
1111
- }
1112
-
1113
- if ( $result ) {
1114
- print "{\"success\":true,\"id\":" . $id . "}";
1115
- } else {
1116
- print "{\"success\":false}";
1117
- }
1118
- }
1119
- die();
1120
- }
1121
-
1122
- public function edit_gallery() {
1123
- if ( isset( $_GET['galleryId'] ) ) {
1124
- $this->loadedData = $this->ModulaDB->getGalleryById( intval( $_GET['galleryId'] ), $this->defaultValues );
1125
- $modula_fields = $this->fields;
1126
- $modula_parent_page = "dashboard";
1127
-
1128
- include( "admin/edit-gallery.php" );
1129
- } else {
1130
- $redir = true;
1131
- $nobanner = true;
1132
- include( "admin/overview.php" );
1133
- }
1134
- }
1135
-
1136
- public function list_thumbnail_sizes() {
1137
- global $_wp_additional_image_sizes;
1138
- $sizes = array();
1139
- foreach ( get_intermediate_image_sizes() as $s ) {
1140
- $sizes[ $s ] = array( 0, 0 );
1141
- if ( in_array( $s, array( 'thumbnail', 'medium', 'large' ) ) ) {
1142
- $sizes[ $s ][0] = get_option( $s . '_size_w' );
1143
- $sizes[ $s ][1] = get_option( $s . '_size_h' );
1144
- } else {
1145
- if ( isset( $_wp_additional_image_sizes ) && isset( $_wp_additional_image_sizes[ $s ] ) ) {
1146
- $sizes[ $s ] = array(
1147
- $_wp_additional_image_sizes[ $s ]['width'],
1148
- $_wp_additional_image_sizes[ $s ]['height'],
1149
- );
1150
- }
1151
- }
1152
- }
1153
-
1154
- return $sizes;
1155
- }
1156
-
1157
- public function gallery_shortcode_handler( $atts ) {
1158
- require_once( 'lib/gallery-class.php' );
1159
- global $Modula;
1160
-
1161
- if ( class_exists( 'ModulaLiteFE' ) ) {
1162
- $Modula = new ModulaLiteFE( $this->ModulaDB, $atts['id'], $this->defaultValues );
1163
-
1164
- $settings = $Modula->getGallery();
1165
- switch ( $settings->lightbox ) {
1166
- case "lightbox2":
1167
- wp_enqueue_style( 'lightbox2_stylesheet' );
1168
- wp_enqueue_script( 'lightbox2_script' );
1169
- wp_add_inline_script( 'lightbox2_script', 'jQuery(document).ready(function(){lightbox.option({albumLabel: "' . esc_html__( 'Image %1 of %2', 'modula-gallery' ) . '"});});' );
1170
- break;
1171
- }
1172
-
1173
- return $Modula->render();
1174
- } else {
1175
- return esc_html__( 'Gallery not found.', 'modula-gallery' );
1176
- }
1177
- }
1178
-
1179
- public function shortcode_empty_paragraph_fix( $content ) {
1180
-
1181
- $array = array (
1182
- '<p>[Modula' => '[Modula' ,
1183
- '<p>[/Modula' => '[/Modula',
1184
- 'Modula]</p>' => 'Modula]',
1185
- 'Modula]<br />' => 'Modula]'
1186
- );
1187
-
1188
- $content = strtr( $content, $array );
1189
-
1190
- return $content;
1191
- }
1192
-
1193
- }
1194
-
1195
- class ModulaLiteHoverEffect {
1196
-
1197
- var $name;
1198
- var $code;
1199
- var $allowTitle;
1200
- var $allowSubtitle;
1201
- var $maxSocial;
1202
-
1203
- public function __construct( $name, $code, $allowTitle, $allowSubtitle, $maxSocial ) {
1204
- $this->name = $name;
1205
- $this->code = $code;
1206
- $this->allowTitle = $allowTitle;
1207
- $this->allowSubtitle = $allowSubtitle;
1208
- $this->maxSocial = $maxSocial;
1209
- }
1210
- }
1211
- }
1212
-
1213
- class ModulaLiteTools {
1214
-
1215
- public static function get_image_size_links( $id ) {
1216
- $result = array();
1217
- $sizes = get_intermediate_image_sizes();
1218
- $sizes[] = 'full';
1219
-
1220
- foreach ( $sizes as $size ) {
1221
- $image = wp_get_attachment_image_src( $id, $size );
1222
-
1223
- if ( ! empty( $image ) && ( true == $image[3] || 'full' == $size ) ) {
1224
- $result["$image[1]x$image[2]"] = $image[0];
1225
- }
1226
- }
1227
-
1228
- return $result;
1229
- }
1230
-
1231
- public static function resize_image( $id, $img_size ) {
1232
- $file = get_attached_file( $id );
1233
- $editor = wp_get_image_editor( $file );
1234
- $size = $editor->get_size();
1235
- if ( $size["width"] > $size["height"] ) {
1236
- $editor->resize( 10000, $img_size );
1237
- } else {
1238
- $editor->resize( $img_size, 10000 );
1239
- }
1240
- $path_parts = pathinfo( $file );
1241
- $filename = $path_parts['dirname'] . "/" . $path_parts['filename'] . "-" . $img_size . "x" . $img_size . "." . $path_parts["extension"];
1242
-
1243
- if ( ! file_exists( $filename ) ) {
1244
- $editor->save( $filename );
1245
- }
1246
-
1247
- return basename( $filename );
1248
- }
1249
-
1250
- public static function check_and_resize( &$images, $size ) {
1251
- foreach ( $images as &$img ) {
1252
- $metadata = wp_get_attachment_metadata( $img->imageId );
1253
-
1254
- if ( $img->imageId > 0 ) {
1255
- $wpdata = get_post( $img->imageId );
1256
- $baseurl = str_replace( basename( $wpdata->guid ), "", $wpdata->guid );
1257
- $res_name = ModulaLiteTools::resize_image( $img->imageId, $size );
1258
-
1259
- if ( ! ( array_key_exists( "image_meta", $metadata ) && array_key_exists( "resized_images", $metadata["image_meta"] ) && in_array( $size . "x" . $size, $metadata["image_meta"]["resized_images"] ) ) ) {
1260
- if ( isset( $metadata['image_meta'] ) ) {
1261
- $md = $size . 'x' . $size;
1262
- $metadata['image_meta']['resized_images'][] = $md;
1263
- wp_update_attachment_metadata( $img->imageId, $metadata );
1264
- }
1265
- }
1266
-
1267
- $img->imagePath = $baseurl . $res_name;
1268
- } else {
1269
- $img->imagePath = preg_replace( "/w=(\d+)/", "w=" . $size, $img->imagePath );
1270
- }
1271
- }
1272
-
1273
- return $images;
1274
- }
1275
- }
1276
-
1277
- if ( class_exists( "ModulaLite" ) ) {
1278
- global $ob_ModulaLite;
1279
- $ob_ModulaLite = new ModulaLite();
1280
- }
1281
- ?>
1
+ <?php
2
+ /**
3
+ * Plugin Name: Modula
4
+ * Plugin URI: https://wp-modula.com/
5
+ * Description: Modula is one of the best & most creative WordPress gallery plugins. Use it to create a great grid or
6
+ * masonry image gallery.
7
+ * Author: Macho Themes
8
+ * Version: 1.3.2
9
+ * Author URI: https://www.machothemes.com/
10
+ */
11
+
12
+ define( 'MODULA_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
13
+ define( 'MODULA_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
14
+
15
+ function modula_lite_create_db_tables() {
16
+ include_once( WP_PLUGIN_DIR . '/modula-best-grid-gallery/lib/install-db.php' );
17
+ modula_lite_install_db();
18
+ }
19
+
20
+ if ( ! class_exists( "ModulaLite" ) ) {
21
+ class ModulaLite {
22
+
23
+ private $loadedData;
24
+ private $fields = array();
25
+
26
+ private $version = "1.3.2";
27
+
28
+ private $defaultValues = array(
29
+ 'width' => 100,
30
+ 'height' => 800,
31
+ 'img_size' => 500,
32
+ 'margin' => 10,
33
+ 'filters' => '',
34
+ 'filterClick' => 'F',
35
+ 'allFilterLabel' => 'All',
36
+ 'lightbox' => 'lightbox2',
37
+ 'shuffle' => 'F',
38
+ 'captionColor' => '#ffffff',
39
+ 'wp_field_caption' => 'caption',
40
+ 'wp_field_title' => 'title',
41
+ 'captionFontSize' => 14,
42
+ 'titleFontSize' => 16,
43
+ 'enableTwitter' => 'T',
44
+ 'enableFacebook' => 'T',
45
+ 'enableGplus' => 'T',
46
+ 'enablePinterest' => 'T',
47
+ 'socialIconColor' => '#ffffff',
48
+ 'loadedScale' => 100,
49
+ 'loadedRotate' => 0,
50
+ 'loadedHSlide' => 0,
51
+ 'loadedVSlide' => 0,
52
+ 'borderSize' => 0,
53
+ 'borderRadius' => 0,
54
+ 'borderColor' => '#ffffff',
55
+ 'shadowSize' => 0,
56
+ 'shadowColor' => '#ffffff',
57
+ 'style' => '',
58
+ 'script' => '',
59
+ 'randomFactor' => 50,
60
+ 'hoverColor' => '#000000',
61
+ 'hoverOpacity' => '50',
62
+ 'hoverEffect' => 'pufrobo',
63
+ 'hasResizedImages' => false,
64
+ 'importedFrom' => '',
65
+ 'hide_title' => false,
66
+ 'hide_description' => false,
67
+ );
68
+
69
+ public function __construct() {
70
+ $this->plugin_name = plugin_basename( __FILE__ );
71
+ $this->plugin_url = plugins_url( '', __FILE__ );
72
+ $this->define_constants();
73
+ $this->define_db_tables();
74
+ $this->define_hover_effects();
75
+ $this->ModulaDB = $this->create_db_conn();
76
+
77
+ require_once 'lib/class-modula-feedback.php';
78
+ new Modula_Feedback( __FILE__ );
79
+
80
+ add_filter( 'widget_text', 'do_shortcode' );
81
+ add_filter( 'mce_buttons', array( $this, 'editor_button' ) );
82
+ add_filter( 'mce_external_plugins', array( $this, 'register_editor_plugin' ) );
83
+
84
+ add_action( 'init', array( $this, 'create_textdomain' ) );
85
+
86
+ add_action( 'wp_enqueue_scripts', array( $this, 'add_gallery_scripts' ) );
87
+
88
+ add_action( 'admin_menu', array( $this, 'add_gallery_admin_menu' ) );
89
+
90
+ add_shortcode( 'Modula', array( $this, 'gallery_shortcode_handler' ) );
91
+ add_filter( 'the_content', array( $this, 'shortcode_empty_paragraph_fix' ), 99 );
92
+
93
+ add_action( 'wp_ajax_modula_save_gallery', array( $this, 'save_gallery' ) );
94
+ add_action( 'wp_ajax_modula_save_image', array( $this, 'save_image' ) );
95
+ add_action( 'wp_ajax_modula_add_image', array( $this, 'add_image' ) );
96
+ add_action( 'wp_ajax_modula_list_images', array( $this, 'list_images' ) );
97
+ add_action( 'wp_ajax_modula_sort_images', array( $this, 'sort_images' ) );
98
+ add_action( 'wp_ajax_modula_delete_image', array( $this, 'delete_image' ) );
99
+ add_action( 'wp_ajax_modula_resize_images', array( $this, 'resize_images' ) );
100
+ add_action( 'wp_ajax_modula_delete_gallery', array( $this, 'delete_gallery' ) );
101
+ add_action( 'wp_ajax_modula_clone_gallery', array( $this, 'clone_gallery' ) );
102
+ add_action( 'wp_ajax_modula_create_gallery', array( $this, 'create_gallery' ) );
103
+ add_action( 'wp_ajax_mtg_shortcode_editor', array( $this, 'mtg_shortcode_editor' ) );
104
+ add_action( 'wp_ajax_modula_get_config', array( $this, 'get_config' ) );
105
+ add_action( 'wp_ajax_modula_update_config', array( $this, 'update_config' ) );
106
+ add_action( 'wp_ajax_modula_get_ext_galleries', array( $this, 'get_ext_galleries' ) );
107
+ add_action( 'wp_ajax_modula_do_import_galleries', array( $this, 'do_import_galleries' ) );
108
+
109
+ add_filter( 'plugin_row_meta', array( $this, 'register_links' ), 10, 2 );
110
+ add_filter( 'admin_footer_text', array( $this, 'admin_footer' ), 1, 2 );
111
+
112
+
113
+ // Set fields
114
+ $this->fields[ __( 'General', 'modula-gallery' ) ] = array(
115
+ "icon" => "mdi mdi-settings",
116
+ "fields" => array(
117
+ "name" => array(
118
+ "name" => esc_html__( 'Name', 'modula-gallery' ),
119
+ "type" => "text",
120
+ "description" => esc_html__( 'Name of the gallery, for internal use.', 'modula-gallery' ),
121
+ "excludeFrom" => array(),
122
+ ),
123
+ "description" => array(
124
+ "name" => esc_html__( 'Description', 'modula-gallery' ),
125
+ "type" => "text",
126
+ "description" => esc_html__( 'This description is for internal use.', 'modula-gallery' ),
127
+ "excludeFrom" => array(),
128
+ ),
129
+ "width" => array(
130
+ "name" => esc_html__( 'Width', 'modula-gallery' ),
131
+ "type" => "text",
132
+ "description" => esc_html__( 'Width of the gallery (i.e.: 100% or 500px)', 'modula-gallery' ),
133
+ "mu" => "px or %",
134
+ "excludeFrom" => array(),
135
+ ),
136
+ "height" => array(
137
+ "name" => esc_html__( 'Height', 'modula-gallery' ),
138
+ "type" => "number",
139
+ "description" => esc_html__( 'Height of the gallery in pixels', 'modula-gallery' ),
140
+ "mu" => "px",
141
+ "excludeFrom" => array(),
142
+ ),
143
+ "img_size" => array(
144
+ "name" => esc_html__( 'Minimum image size', 'modula-gallery' ),
145
+ "type" => "number",
146
+ "description" => esc_html__( 'Minimum width or height of the images', 'modula-gallery' ),
147
+ "mu" => "px or %",
148
+ "excludeFrom" => array(),
149
+ ),
150
+ "margin" => array(
151
+ "name" => esc_html__( 'Margin', 'modula-gallery' ),
152
+ "type" => "number",
153
+ "description" => esc_html__( 'Margin between images', 'modula-gallery' ),
154
+ "mu" => "px",
155
+ "excludeFrom" => array(),
156
+ ),
157
+ "randomFactor" => array(
158
+ "name" => esc_html__( 'Random factor', 'modula-gallery' ),
159
+ "type" => "ui-slider",
160
+ "description" => "",
161
+ "min" => 0,
162
+ "max" => 100,
163
+ "mu" => "%",
164
+ "default" => 20,
165
+ "excludeFrom" => array(),
166
+ ),
167
+ "filters" => array(
168
+ "name" => esc_html__( 'Filters', 'modula-gallery' ),
169
+ "type" => "PRO_FEATURE",
170
+ "description" => esc_html__( 'Add your own filters here. Each image can have one or more filters.', 'modula-gallery' ),
171
+ "excludeFrom" => array(),
172
+ ),
173
+ "filterClick" => array(
174
+ "name" => esc_html__( 'Reload Page on filter click', 'modula-gallery' ),
175
+ "type" => "PRO_FEATURE",
176
+ "description" => esc_html__( 'Turn this feature ON if you want to use filters with most lightboxes', 'modula-gallery' ),
177
+ "excludeFrom" => array(),
178
+ ),
179
+ "allFilterLabel" => array(
180
+ "name" => esc_html__( 'Text for "All" filter', 'modula-gallery' ),
181
+ "type" => "PRO_FEATURE",
182
+ "description" => esc_html__( 'Write here the label for the "All" filter', 'modula-gallery' ),
183
+ "default" => "All",
184
+ "excludeFrom" => array(),
185
+ ),
186
+ "lightbox" => array(
187
+ "name" => esc_html__( 'Lightbox &amp; Links', 'modula-gallery' ),
188
+ "type" => "select",
189
+ "description" => esc_html__( 'Define here what happens when user click on the images.', 'modula-gallery' ),
190
+ "values" => array(
191
+ "Link" => array(
192
+ "|" . esc_html__( 'No link', 'modula-gallery' ),
193
+ "direct|" . esc_html__( 'Direct link to image', 'modula-gallery' ),
194
+ "|" . esc_html__( 'Attachment page', 'modula-gallery' )
195
+ ),
196
+ "Lightboxes" => array( "lightbox2|Lightbox" ),
197
+ ),
198
+ "disabled" => array(
199
+ "Lightboxes with PRO license" => array(
200
+ "magnific|Magnific popup",
201
+ "prettyphoto|PrettyPhoto",
202
+ "fancybox|FancyBox",
203
+ "swipebox|SwipeBox",
204
+ "lightbox2|Lightbox",
205
+ ),
206
+ ),
207
+ "excludeFrom" => array(),
208
+ ),
209
+ "shuffle" => array(
210
+ "name" => esc_html__( 'Shuffle images', 'modula-gallery' ),
211
+ "type" => "toggle",
212
+ "default" => "T",
213
+ "description" => esc_html__( 'Flag it if you want to shuffle the gallery at each page load', 'modula-gallery' ),
214
+ "excludeFrom" => array(),
215
+ ),
216
+ ),
217
+ );
218
+ $this->fields[ esc_html__( 'Captions', 'modula-gallery' ) ] = array(
219
+ "icon" => "mdi mdi-comment-text-outline",
220
+ "fields" => array(
221
+ "captionColor" => array(
222
+ "name" => esc_html__( 'Caption color', 'modula-gallery' ),
223
+ "type" => "color",
224
+ "description" => esc_html__( 'Color of the caption.', 'modula-gallery' ),
225
+ "default" => "#ffffff",
226
+ "excludeFrom" => array(),
227
+ ),
228
+ "wp_field_caption" => array(
229
+ "name" => esc_html__( 'Populate caption from', 'modula-gallery' ),
230
+ "type" => "select",
231
+ "description" => __( '<strong>This field is used ONLY when images are added to the gallery. </strong> If you don\'t want to automatically populate the caption field select <i>Don\'t Populate</i>', 'modula-gallery' ),
232
+ "values" => array(
233
+ "Field" => array(
234
+ "none|" . esc_html__( 'Don\'t Populate', 'modula-gallery' ),
235
+ "title|" . esc_html__( 'WP Image title', 'modula-gallery' ),
236
+ "caption|" . esc_html__( 'WP Image caption', 'modula-gallery' ),
237
+ "description|" . esc_html__( 'WP Image description', 'modula-gallery' ),
238
+ ),
239
+ ),
240
+ "excludeFrom" => array( "shortcode" ),
241
+ ),
242
+ "wp_field_title" => array(
243
+ "name" => esc_html__( 'Populate title from', 'modula-gallery' ),
244
+ "type" => "select",
245
+ "description" => __( '<strong>This field is used ONLY when images are added to the gallery. </strong> If you don\'t want to automatically populate the title field select <i>Don\'t Populate</i>', 'modula-gallery' ),
246
+ "values" => array(
247
+ "Field" => array(
248
+ "none|" . esc_html__( 'Don\'t Populate', 'modula-gallery' ),
249
+ "title|" . esc_html__( 'WP Image title', 'modula-gallery' ),
250
+ "description|" . esc_html__( 'WP Image description', 'modula-gallery' ),
251
+ ),
252
+ ),
253
+ "excludeFrom" => array( "shortcode" ),
254
+ ),
255
+ "hide_title" => array(
256
+ "name" => esc_html__( 'Image Title', 'modula-gallery' ),
257
+ "type" => "toggle",
258
+ "default" => "T",
259
+ "description" => esc_html__( 'Hide image title from frontend', 'modula-gallery' ),
260
+ "excludeFrom" => array(),
261
+ ),
262
+ "hide_description" => array(
263
+ "name" => esc_html__( 'Image Description', 'modula-gallery' ),
264
+ "type" => "toggle",
265
+ "default" => "T",
266
+ "description" => esc_html__( 'Hide image description from frontend', 'modula-gallery' ),
267
+ "excludeFrom" => array(),
268
+ ),
269
+ "captionFontSize" => array(
270
+ "name" => esc_html__( 'Caption Font Size', 'modula-gallery' ),
271
+ "type" => "number",
272
+ "description" => "",
273
+ "mu" => "px",
274
+ "excludeFrom" => array(),
275
+ ),
276
+ "titleFontSize" => array(
277
+ "name" => esc_html__( 'Title Font Size', 'modula-gallery' ),
278
+ "type" => "number",
279
+ "description" => "",
280
+ "mu" => "px",
281
+ "excludeFrom" => array(),
282
+ ),
283
+ ),
284
+ );
285
+
286
+ $this->fields[ esc_html__( 'Social', 'modula-gallery' ) ] = array(
287
+ "icon" => "mdi mdi-link-variant",
288
+ "fields" => array(
289
+ "enableTwitter" => array(
290
+ "name" => esc_html__( 'Add Twitter icon', 'modula-gallery' ),
291
+ "type" => "toggle",
292
+ "default" => "T",
293
+ "description" => esc_html__( 'Enable Twitter Sharing', 'modula-gallery' ),
294
+ "excludeFrom" => array(),
295
+ ),
296
+ "enableFacebook" => array(
297
+ "name" => esc_html__( 'Add Facebook icon', 'modula-gallery' ),
298
+ "type" => "toggle",
299
+ "default" => "T",
300
+ "description" => esc_html__( 'Enable Facebook Sharing', 'modula-gallery' ),
301
+ "excludeFrom" => array(),
302
+ ),
303
+ "enableGplus" => array(
304
+ "name" => esc_html__( 'Add Google Plus icon', 'modula-gallery' ),
305
+ "type" => "toggle",
306
+ "default" => "T",
307
+ "description" => esc_html__( 'Enable Google Plus Sharing', 'modula-gallery' ),
308
+ "excludeFrom" => array(),
309
+ ),
310
+ "enablePinterest" => array(
311
+ "name" => esc_html__( 'Add Pinterest icon', 'modula-gallery' ),
312
+ "type" => "toggle",
313
+ "default" => "T",
314
+ "description" => esc_html__( 'Enable Pinterest Sharing', 'modula-gallery' ),
315
+ "excludeFrom" => array(),
316
+ ),
317
+ "socialIconColor" => array(
318
+ "name" => esc_html__( 'Color of social sharing icons', 'modula-gallery' ),
319
+ "type" => "color",
320
+ "description" => esc_html__( 'Set the color of the social sharing icons', 'modula-gallery' ),
321
+ "default" => "#ffffff",
322
+ "excludeFrom" => array(),
323
+ ),
324
+ ),
325
+
326
+ );
327
+ $this->fields[ esc_html__( 'Image loaded effects', 'modula-gallery' ) ] = array(
328
+ "icon" => "mdi mdi-reload",
329
+ "fields" => array(
330
+ "loadedScale" => array(
331
+ "name" => esc_html__( 'Scale', 'modula-gallery' ),
332
+ "description" => esc_html__( 'Choose a value below 100% for a zoom-in effect. Choose a value over 100% for a zoom-out effect', 'modula-gallery' ),
333
+ "type" => "ui-slider",
334
+ "min" => 0,
335
+ "max" => 200,
336
+ "mu" => "%",
337
+ "default" => 100,
338
+ "excludeFrom" => array(),
339
+ ),
340
+ "loadedRotate" => array(
341
+ "name" => esc_html__( 'Rotate', 'modula-gallery' ),
342
+ "description" => "",
343
+ "type" => "PRO_FEATURE",
344
+ "min" => - 180,
345
+ "max" => 180,
346
+ "default" => 0,
347
+ "mu" => "deg",
348
+ "excludeFrom" => array(),
349
+ ),
350
+ "loadedHSlide" => array(
351
+ "name" => esc_html__( 'Horizontal slide', 'modula-gallery' ),
352
+ "description" => "",
353
+ "type" => "PRO_FEATURE",
354
+ "min" => - 100,
355
+ "max" => 100,
356
+ "mu" => "px",
357
+ "default" => 0,
358
+ "excludeFrom" => array(),
359
+ ),
360
+ "loadedVSlide" => array(
361
+ "name" => esc_html__( 'Vertical slide', 'modula-gallery' ),
362
+ "description" => "",
363
+ "type" => "PRO_FEATURE",
364
+ "min" => - 100,
365
+ "max" => 100,
366
+ "mu" => "px",
367
+ "default" => 0,
368
+ "excludeFrom" => array(),
369
+ ),
370
+
371
+ ),
372
+ );
373
+ $this->fields[ esc_html__( 'Hover effect', 'modula-gallery' ) ] = array(
374
+ "icon" => "mdi mdi-blur",
375
+ "fields" => array(
376
+ "Effect" => array(
377
+ "name" => esc_html__( 'Effect', 'modula-gallery' ),
378
+ "description" => esc_html__( 'Select an hover effect', 'modula-gallery' ),
379
+ "type" => "hover-effect",
380
+ "excludeFrom" => array(),
381
+ ),
382
+ ),
383
+ );
384
+ $this->fields[ esc_html__( 'Style', 'modula-gallery' ) ] = array(
385
+ "icon" => "mdi mdi-format-paint",
386
+ "fields" => array(
387
+ "borderSize" => array(
388
+ "name" => esc_html__( 'Border Size', 'modula-gallery' ),
389
+ "type" => "ui-slider",
390
+ "description" => "",
391
+ "mu" => "px",
392
+ "min" => 0,
393
+ "max" => 10,
394
+ "default" => 0,
395
+ "excludeFrom" => array(),
396
+ ),
397
+ "borderRadius" => array(
398
+ "name" => esc_html__( 'Border Radius', 'modula-gallery' ),
399
+ "type" => "ui-slider",
400
+ "description" => "",
401
+ "mu" => "px",
402
+ "min" => 0,
403
+ "max" => 100,
404
+ "default" => 0,
405
+ "excludeFrom" => array(),
406
+ ),
407
+ "borderColor" => array(
408
+ "name" => esc_html__( 'Border Color', 'modula-gallery' ),
409
+ "type" => "color",
410
+ "description" => "",
411
+ "default" => "#ffffff",
412
+ "excludeFrom" => array(),
413
+ ),
414
+ "shadowSize" => array(
415
+ "name" => esc_html__( 'Shadow Size', 'modula-gallery' ),
416
+ "type" => "ui-slider",
417
+ "description" => "",
418
+ "mu" => "px",
419
+ "min" => 0,
420
+ "max" => 20,
421
+ "default" => 0,
422
+ "excludeFrom" => array(),
423
+ ),
424
+ "shadowColor" => array(
425
+ "name" => esc_html__( 'Shadow Color', 'modula-gallery' ),
426
+ "type" => "color",
427
+ "description" => "",
428
+ "default" => "#ffffff",
429
+ "excludeFrom" => array(),
430
+ ),
431
+
432
+ ),
433
+ );
434
+ $this->fields[ esc_html__( 'Customizations', 'modula-gallery' ) ] = array(
435
+ "icon" => "mdi mdi-puzzle",
436
+ "fields" => array(
437
+ "script" => array(
438
+ "name" => esc_html__( 'Custom scripts', 'modula-gallery' ),
439
+ "type" => "textarea",
440
+ "description" => esc_html__( 'This script will be called after the gallery initialization. Useful for custom lightboxes.', 'modula-gallery' ) . "
441
+ <br />
442
+ <br />
443
+ <strong>Write just the code without using the &lt;script&gt;&lt;/script&gt; tags</strong>",
444
+ "excludeFrom" => array( "shortcode" ),
445
+ ),
446
+ "style" => array(
447
+ "name" => esc_html__( 'Custom css', 'modula-gallery' ),
448
+ "type" => "textarea",
449
+ "description" => '<strong>' . esc_html__( 'Write just the code without using the &lt;style&gt;&lt;/style&gt; tags', 'modula-gallery' ) . '</strong>',
450
+ "excludeFrom" => array( "shortcode" ),
451
+ ),
452
+ ),
453
+ );
454
+
455
+ }
456
+
457
+ //Define textdomain
458
+ public function create_textdomain() {
459
+ $plugin_dir = basename( dirname( __FILE__ ) );
460
+ load_plugin_textdomain( 'modula-gallery', false, $plugin_dir . '/lib/languages' );
461
+ }
462
+
463
+ function define_hover_effects() {
464
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'None', 'none', false, false, 0 );
465
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Pufrobo', 'pufrobo', true, true, 4 );
466
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Fluid Up', '', true, true, 0 );
467
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Hide', '', true, true, 4 );
468
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Quiet', '', true, false, 4 );
469
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Catinelle', '', false, false, 4 );
470
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Reflex', '', true, true, 4 );
471
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Curtain', '', true, false, 4 );
472
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Lens', '', true, true, 4 );
473
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Appear', '', true, false, 4 );
474
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Crafty', '', true, true, 0 );
475
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Seemo', '', true, false, 4 );
476
+ $this->hoverEffects[] = new ModulaLiteHoverEffect( 'Comodo', '', true, false, 4 );
477
+ }
478
+
479
+ public function get_ext_galleries() {
480
+ header( "Content-type: application/json" );
481
+
482
+ global $wpdb;
483
+
484
+ if ( check_admin_referer( "Modula", "Modula" ) ) {
485
+ $res = array( "success" => 0 );
486
+
487
+ $source = $_POST['source'];
488
+ if ( $source ) {
489
+ $res['success'] = 1;
490
+ $res['galleries'] = array();
491
+
492
+ switch ( $source ) {
493
+ case 'Envira':
494
+ $galleries = get_posts( array(
495
+ 'post_type' => 'envira',
496
+ 'posts_per_page' => 1000,
497
+ ) );
498
+ foreach ( $galleries as $g ) {
499
+ $item = array();
500
+ $item['id'] = $g->ID;
501
+ $item['title'] = $g->post_title;
502
+ $res['galleries'] [] = $item;
503
+ }
504
+ break;
505
+ case 'NextGen':
506
+ $galleries = $wpdb->get_results( "SELECT title, gid FROM $wpdb->nggallery" );
507
+ foreach ( $galleries as $g ) {
508
+ $item = array();
509
+ $item['id'] = $g->gid;
510
+ $item['title'] = $g->title;
511
+ $res['galleries'] [] = $item;
512
+ }
513
+ break;
514
+ }
515
+ }
516
+
517
+ echo json_encode( $res );
518
+ }
519
+ die();
520
+ }
521
+
522
+ public function admin_footer( $text ) {
523
+ global $current_screen;
524
+ if ( ! empty( $current_screen->id ) && strpos( $current_screen->id, 'modula-lite' ) !== false ) {
525
+ $url = 'https://wordpress.org/support/plugin/modula-best-grid-gallery/reviews/?rate=5#new-post';
526
+ $text = sprintf( __( 'Please rate <strong>Modula Gallery</strong> <a href="%s" target="_blank">&#9733;&#9733;&#9733;&#9733;&#9733;</a> on <a href="%s" target="_blank">WordPress.org</a> to help us spread the word. Thank you, on behalf of the Modula team!', 'modula-gallery' ), $url, $url );
527
+ }
528
+
529
+ return $text;
530
+ }
531
+
532
+ public function do_import_galleries() {
533
+ global $wpdb;
534
+
535
+ header( "Content-type: application/json" );
536
+ if ( check_admin_referer( "Modula", "Modula" ) ) {
537
+ $res = array( "success" => 0 );
538
+ $source = $_POST['source'];
539
+ $ids = explode( ",", $_POST['ids'] );
540
+ switch ( $source ) {
541
+ case 'Envira':
542
+ foreach ( $ids as $id ) {
543
+ $gallery = get_post( $id );
544
+ $meta = get_post_meta( $id );
545
+ $data = unserialize( $meta['_eg_gallery_data'][0] );
546
+
547
+ $g = array(
548
+ 'name' => $data['config']['title'],
549
+ 'description' => 'Imported from Envira (' . $id . ') on ' . date( 'M, d Y' ),
550
+ 'margin' => $data['config']['gutter'],
551
+ 'hasResizedImages' => true,
552
+ 'importedFrom' => 'Envira',
553
+ );
554
+ $gdb = array_merge( $this->defaultValues, $g );
555
+
556
+ $saved = $this->ModulaDB->addGallery( $gdb );
557
+ $newId = $this->ModulaDB->getNewGalleryId();
558
+
559
+ if ( $newId && count( $data['gallery'] ) ) {
560
+ $images = array();
561
+ //TODO only active images
562
+ foreach ( $data['gallery'] as $item ) {
563
+ $toAdd = new stdClass();
564
+ $toAdd->imageId = $this->ModulaDB->getIDbyGUID( $item['src'] );
565
+ $toAdd->title = $item['title'];
566
+ $toAdd->description = $item['caption'];
567
+ $toAdd->imagePath = $item['src'];
568
+
569
+ $images [] = $toAdd;
570
+ }
571
+ $imgResult = $this->ModulaDB->addImages( $newId, $images );
572
+ }
573
+ }
574
+ $res['success'] = 1;
575
+ break;
576
+ case 'NextGen':
577
+ foreach ( $ids as $id ) {
578
+ $gallery = $wpdb->get_row( $wpdb->prepare( "SELECT title, gid, path FROM $wpdb->nggallery WHERE gid=%s", $id ) );
579
+
580
+ $dbimages = $wpdb->get_results( $wpdb->prepare( "SELECT filename, description, alttext FROM $wpdb->nggpictures WHERE exclude <> 1 AND galleryid=%s", $id ) );
581
+
582
+ $g = array(
583
+ 'name' => $gallery->title,
584
+ 'description' => 'Imported from NextGet (' . $id . ') on ' . date( 'M, d Y' ),
585
+ 'hasResizedImages' => true,
586
+ 'importedFrom' => 'NextGen',
587
+ );
588
+ $gdb = array_merge( $this->defaultValues, $g );
589
+
590
+ $saved = $this->ModulaDB->addGallery( $gdb );
591
+ $newId = $this->ModulaDB->getNewGalleryId();
592
+
593
+ if ( $newId && count( $dbimages ) ) {
594
+ $images = array();
595
+ foreach ( $dbimages as $item ) {
596
+ $toAdd = new stdClass();
597
+ $toAdd->imageId = - 1;
598
+ $toAdd->title = $item->alttext;
599
+ $toAdd->description = $item->description;
600
+ $toAdd->imagePath = plugins_url( 'image.php', __FILE__ ) . "?w=" . $this->defaultValues['img_size'] . "&src=" . $gallery->path . "/" . $item->filename;
601
+
602
+ $images [] = $toAdd;
603
+ }
604
+ $imgResult = $this->ModulaDB->addImages( $newId, $images );
605
+
606
+ }
607
+ }
608
+ $res['success'] = 1;
609
+ break;
610
+ }
611
+
612
+ echo json_encode( $res );
613
+ }
614
+ die();
615
+ }
616
+
617
+ public function register_links( $links, $file ) {
618
+ $base = plugin_basename( __FILE__ );
619
+ if ( $file == $base ) {
620
+ $links[] = '<a href="admin.php?page=modula-lite-admin" title="' . esc_html__( 'Modula Grid Gallery Dashboard', 'modula-gallery' ) . '">' . esc_html__( 'Dashboard', 'modula-gallery' ) . '</a>';
621
+ $links[] = '<a href="https://twitter.com/MachoThemez" title="@MachoThemez on Twitter">Twitter</a>';
622
+ $links[] = '<a href="https://www.facebook.com/machothemes" title="MachoThemes on Facebook">Facebook</a>';
623
+ }
624
+
625
+ return $links;
626
+
627
+ }
628
+
629
+ //delete gallery
630
+ function delete_gallery() {
631
+ if ( check_admin_referer( "Modula", "Modula" ) ) {
632
+ $id = intval( $_POST['gid'] );
633
+ $this->ModulaDB->deleteGallery( $id );
634
+ }
635
+
636
+ die();
637
+ }
638
+
639
+ public function update_config() {
640
+ if ( check_admin_referer( "Modula", "Modula" ) ) {
641
+ $id = $_POST['id'];
642
+ $config = stripslashes( $_POST['config'] );
643
+
644
+ $this->ModulaDB->update_config( $id, $config );
645
+ }
646
+
647
+ die();
648
+ }
649
+
650
+ public function get_config() {
651
+ if ( check_admin_referer( "Modula", "Modula" ) ) {
652
+ $id = $_POST['id'];
653
+
654
+ $data = $this->ModulaDB->getConfig( $id );
655
+
656
+ print json_encode( $data );
657
+
658
+ }
659
+
660
+ die();
661
+ }
662
+
663
+ //add gallery
664
+
665
+ function create_gallery() {
666
+ if ( check_admin_referer( "Modula", "Modula" ) ) {
667
+ $data = $this->defaultValues;
668
+ $data["name"] = $_POST['name'];
669
+ $data["description"] = $_POST['description'];
670
+ $data["width"] = $_POST['width'];
671
+ $data["height"] = $_POST['height'];
672
+ $data["img_size"] = intval( $_POST['img_size'] );
673
+ $data["hasResizedImages"] = true;
674
+
675
+ $this->ModulaDB->addGallery( $data );
676
+ $id = $this->ModulaDB->getLastGalleryId()->Id;
677
+
678
+ if ( $id > 0 && array_key_exists( 'images', $_POST ) && strlen( $_POST['images'] ) ) {
679
+ $enc_images = stripslashes( $_POST["images"] );
680
+ $images = array_splice( json_decode( $enc_images ), 0, 11 + 9 );
681
+ ModulaLiteTools::check_and_resize( $images, $data['img_size'] );
682
+ $result = $this->ModulaDB->addImages( $id, $images );
683
+ }
684
+ print $id;
685
+ }
686
+ die;
687
+ }
688
+
689
+ //clone gallery
690
+ function clone_gallery() {
691
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
692
+ $sourceId = intval( $_POST['gid'] );
693
+ $g = $this->ModulaDB->getGalleryById( $sourceId, $this->defaultValues );
694
+ $g->name .= "(copy)";
695
+ $this->ModulaDB->addGallery( $g );
696
+ $id = $this->ModulaDB->getNewGalleryId();
697
+ $images = $this->ModulaDB->getImagesByGalleryId( $sourceId );
698
+
699
+ foreach ( $images as &$image ) {
700
+ $image->Id = null;
701
+ $image->gid = $id;
702
+ }
703
+
704
+ $this->ModulaDB->addImages( $id, $images );
705
+ }
706
+
707
+ die();
708
+ }
709
+
710
+
711
+ //Define constants
712
+ public function define_constants() {
713
+ if ( ! defined( 'Modula_PLUGIN_BASENAME' ) ) {
714
+ define( 'Modula_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
715
+ }
716
+
717
+ if ( ! defined( 'Modula_PLUGIN_NAME' ) ) {
718
+ define( 'Modula_PLUGIN_NAME', trim( dirname( Modula_PLUGIN_BASENAME ), '/' ) );
719
+ }
720
+
721
+ if ( ! defined( 'Modula_PLUGIN_DIR' ) ) {
722
+ define( 'Modula_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . Modula_PLUGIN_NAME );
723
+ }
724
+ }
725
+
726
+ //delete Gallery
727
+
728
+
729
+ //Define DB tables
730
+ public function define_db_tables() {
731
+ global $wpdb;
732
+
733
+ $wpdb->ModulaGalleries = $wpdb->prefix . 'modula';
734
+ $wpdb->ModulaImages = $wpdb->prefix . 'modula_images';
735
+ }
736
+
737
+
738
+ public function create_db_conn() {
739
+ require( 'lib/db-class.php' );
740
+ $ModulaDB = ModulaLiteDB::getInstance();
741
+
742
+ return $ModulaDB;
743
+ }
744
+
745
+ public function editor_button( $buttons ) {
746
+ array_push( $buttons, 'separator', 'mtg_shortcode_editor' );
747
+
748
+ return $buttons;
749
+ }
750
+
751
+ public function register_editor_plugin( $plugin_array ) {
752
+ $plugin_array['mtg_shortcode_editor'] = plugins_url( '/admin/scripts/editor-plugin.js', __file__ );
753
+
754
+ return $plugin_array;
755
+ }
756
+
757
+ public function mtg_shortcode_editor() {
758
+ $css_path = plugins_url( 'assets/css/admin.css', __FILE__ );
759
+ $admin_url = admin_url();
760
+
761
+ $galleries = $this->ModulaDB->getGalleries(); //load all galleries
762
+
763
+ include 'admin/include/tinymce-galleries.php';
764
+ die();
765
+ }
766
+
767
+ //Add gallery scripts
768
+ public function add_gallery_scripts() {
769
+ wp_enqueue_script( 'jquery' );
770
+
771
+ wp_register_script( 'modula', plugins_url() . '/modula-best-grid-gallery/scripts/jquery.modula.js', array( 'jquery' ) );
772
+ wp_enqueue_script( 'modula' );
773
+
774
+ wp_register_style( 'modula_stylesheet', plugins_url() . '/modula-best-grid-gallery/scripts/modula.css', null, $this->version );
775
+ wp_enqueue_style( 'modula_stylesheet' );
776
+
777
+ wp_register_style( 'effects_stylesheet', plugins_url() . '/modula-best-grid-gallery/scripts/effects.css', null, $this->version );
778
+ wp_enqueue_style( 'effects_stylesheet' );
779
+
780
+ wp_register_script( 'lightbox2_script', plugins_url() . '/modula-best-grid-gallery/lightbox/lightbox2/js/lightbox.min.js', array( 'jquery' ), $this->version, true );
781
+ wp_register_style( 'lightbox2_stylesheet', plugins_url() . '/modula-best-grid-gallery/lightbox/lightbox2/css/lightbox.min.css' );
782
+ }
783
+
784
+ //Admin Section - register scripts and styles
785
+ public function gallery_admin_init() {
786
+ if ( function_exists( 'wp_enqueue_media' ) ) {
787
+ wp_enqueue_media();
788
+ }
789
+
790
+ wp_enqueue_script( 'jquery' );
791
+
792
+ wp_enqueue_script( 'wp-color-picker' );
793
+ wp_enqueue_style( 'wp-color-picker' );
794
+
795
+ wp_enqueue_script( 'media-upload' );
796
+ wp_enqueue_script( 'thickbox' );
797
+
798
+ wp_register_style( 'materialize', plugins_url() . '/modula-best-grid-gallery/admin/css/materialize.css' );
799
+ wp_enqueue_style( 'materialize' );
800
+
801
+ wp_register_style( 'styles', plugins_url() . '/modula-best-grid-gallery/admin/css/style.css' );
802
+ wp_enqueue_style( 'styles' );
803
+
804
+ wp_register_style( 'effects', plugins_url() . '/modula-best-grid-gallery/scripts/effects.css' );
805
+ wp_enqueue_style( 'effects' );
806
+
807
+ wp_register_script( 'materialize', plugins_url() . '/modula-best-grid-gallery/admin/scripts/materialize.js', array( 'jquery' ) );
808
+
809
+ wp_register_script( 'modula', plugins_url() . '/modula-best-grid-gallery/admin/scripts/modula-admin.js', array(
810
+ 'materialize',
811
+ 'jquery',
812
+ 'media-upload',
813
+ 'thickbox',
814
+ ), false, false );
815
+
816
+ wp_enqueue_script( 'modula' );
817
+
818
+ wp_register_style( 'materialdesign-icons', plugins_url() . '/modula-best-grid-gallery/admin/css/materialdesignicons.css' );
819
+ wp_enqueue_style( 'materialdesign-icons' );
820
+
821
+ wp_enqueue_style( 'thickbox' );
822
+
823
+ $tg_db_version = '1.0';
824
+ $installed_ver = get_option( "Modula_db_version" );
825
+
826
+ if ( $installed_ver != $tg_db_version ) {
827
+ modula_lite_create_db_tables();
828
+ update_option( "Modula_db_version", $tg_db_version );
829
+ }
830
+ }
831
+
832
+
833
+ //Create Admin Menu
834
+ public function add_gallery_admin_menu() {
835
+ $overview = add_menu_page( esc_html__( 'Manage Galleries', 'modula-gallery' ), esc_html__( 'Modula', 'modula-gallery' ), 'edit_posts', 'modula-lite-admin', array(
836
+ $this,
837
+ 'add_overview',
838
+ ), plugins_url() . '/modula-best-grid-gallery/admin/icon.png' );
839
+
840
+
841
+ if ( ! get_option( "Modula_skip_fix" ) && get_option( "Modula_db_version" ) && count( $this->ModulaDB->getGalleries() ) > 0 ) {
842
+
843
+ $imageUrl = null;
844
+ foreach ( $this->ModulaDB->getGalleries() as $gallery ) {
845
+ $gid = $gallery->Id;
846
+ $images = $this->ModulaDB->getImagesByGalleryId( $gid );
847
+ if ( count( $images ) > 0 ) {
848
+ $imageUrl = $images[0]->imagePath;
849
+ break;
850
+ }
851
+ }
852
+
853
+ if ( $imageUrl ) {
854
+ if ( strncmp( strtolower( $imageUrl ), strtolower( site_url() ), strlen( site_url() ) ) != 0 ) {
855
+ $fix = add_submenu_page( 'modula-lite-admin', __( 'Modula >> Fix', 'modula-gallery' ), '❗️ ' . __( 'Fix', 'modula-gallery' ), 'edit_posts', 'modula-lite-gallery-fix', array(
856
+ $this,
857
+ 'fix',
858
+ ) );
859
+ add_action( 'load-' . $fix, array( $this, 'gallery_admin_init' ) );
860
+ }
861
+ }
862
+ } else {
863
+ add_option( 'Modula_skip_fix', true );
864
+ }
865
+
866
+ $add_gallery = add_submenu_page( 'modula-lite-admin', __( 'Modula - Add Gallery', 'modula-gallery' ), __( 'Add Gallery', 'modula-gallery' ), 'edit_posts', 'modula-lite-add', array(
867
+ $this,
868
+ 'add_gallery',
869
+ ) );
870
+ $edit_gallery = add_submenu_page( NULL, __( 'Modula - Edit Gallery', 'modula-gallery' ), __( 'Edit Gallery', 'modula-gallery' ), 'edit_posts', 'modula-lite-edit', array(
871
+ $this,
872
+ 'edit_gallery',
873
+ ) );
874
+ $upgrade = add_submenu_page( 'modula-lite-admin', __( 'Modula - Upgrade to PRO', 'modula-gallery' ), __( 'Upgrade to PRO', 'modula-gallery' ), 'edit_posts', 'modula-lite-gallery-upgrade', array(
875
+ $this,
876
+ 'upgrade',
877
+ ) );
878
+
879
+
880
+ add_action( 'load-' . $overview, array( $this, 'gallery_admin_init' ) );
881
+ add_action( 'load-' . $add_gallery, array( $this, 'gallery_admin_init' ) );
882
+ add_action( 'load-' . $edit_gallery, array( $this, 'gallery_admin_init' ) );
883
+ add_action( 'load-' . $upgrade, array( $this, 'gallery_admin_init' ) );
884
+
885
+ }
886
+
887
+ //Create Admin Pages
888
+ public function add_overview() {
889
+ include( "admin/overview.php" );
890
+ }
891
+
892
+ public function upgrade() {
893
+ include( "admin/upgrade.php" );
894
+ }
895
+
896
+ public function add_gallery() {
897
+ include( "admin/add-gallery.php" );
898
+ }
899
+
900
+ public function fix() {
901
+ global $wpdb;
902
+ include( "admin/fix.php" );
903
+ }
904
+
905
+ public function delete_image() {
906
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
907
+ foreach ( explode( ",", $_POST["id"] ) as $id ) {
908
+ $this->ModulaDB->deleteImage( intval( $id ) );
909
+ }
910
+ }
911
+ die();
912
+ }
913
+
914
+ public function add_image() {
915
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
916
+ $gid = intval( $_POST['galleryId'] );
917
+ $this->loadedData = $this->ModulaDB->getGalleryById( $gid, $this->defaultValues );
918
+ $prev = $this->ModulaDB->getImagesByGalleryId( $gid );
919
+
920
+ $enc_images = stripslashes( $_POST["enc_images"] );
921
+ $images = json_decode( $enc_images );
922
+
923
+ $d = 18 + log10( 100 );
924
+ $images = array_slice( $images, 0, $d - count( $prev ) );
925
+ $images = ModulaLiteTools::check_and_resize( $images, $this->loadedData->img_size );
926
+ $result = $this->ModulaDB->addImages( $gid, $images );
927
+
928
+ header( "Content-type: application/json" );
929
+ if ( $result === false ) {
930
+ print "{\"success\":false}";
931
+ } else {
932
+ print "{\"success\":true}";
933
+ }
934
+ }
935
+ die();
936
+ }
937
+
938
+ public function sort_images() {
939
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
940
+ $result = $this->ModulaDB->sortImages( explode( ',', $_POST['ids'] ) );
941
+
942
+ header( "Content-type: application/json" );
943
+ if ( $result === false ) {
944
+ print "{\"success\":false}";
945
+ } else {
946
+ print "{\"success\":true}";
947
+ }
948
+ }
949
+ die();
950
+ }
951
+
952
+ public function save_image() {
953
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
954
+ $result = false;
955
+ // $type = $_POST['type'];
956
+ $imageUrl = esc_url( $_POST['img_url'] );
957
+ $imageCaption = stripslashes( $_POST['description'] );
958
+ $title = stripslashes( $_POST['title'] );
959
+ $target = $_POST['target'];
960
+ $link = isset( $_POST['link'] ) ? stripslashes( $_POST['link'] ) : null;
961
+ $imageId = intval( $_POST['img_id'] );
962
+ $sortOrder = intval( $_POST['sortOrder'] );
963
+ $halign = $_POST['halign'];
964
+ $valign = $_POST['valign'];
965
+
966
+ $data = array(
967
+ "target" => $target,
968
+ "link" => $link,
969
+ "imageId" => $imageId,
970
+ "description" => $imageCaption,
971
+ 'title' => $title,
972
+ "halign" => $halign,
973
+ "valign" => $valign,
974
+ "sortOrder" => $sortOrder,
975
+ );
976
+
977
+ if ( ! empty( $_POST['id'] ) ) {
978
+ $imageId = intval( $_POST['id'] );
979
+ $result = $this->ModulaDB->editImage( $imageId, $data );
980
+ } else {
981
+ $data["gid"] = intval( $_POST['galleryId'] );
982
+ $result = $this->ModulaDB->addFullImage( $data );
983
+ }
984
+
985
+ header( "Content-type: application/json" );
986
+
987
+ if ( $result === false ) {
988
+ print "{\"success\":false}";
989
+ } else {
990
+ print "{\"success\":true}";
991
+ }
992
+
993
+ }
994
+ die();
995
+ }
996
+
997
+ public function list_images() {
998
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
999
+ $gid = intval( $_POST["gid"] );
1000
+ $gallery = $this->ModulaDB->getGalleryById( $gid, $this->defaultValues );
1001
+
1002
+ $imageResults = $this->ModulaDB->getImagesByGalleryId( $gid );
1003
+
1004
+ include( 'admin/include/image-list.php' );
1005
+ }
1006
+ die();
1007
+ }
1008
+
1009
+ private function checkboxVal( $field ) {
1010
+ if ( isset( $_POST[ $field ] ) ) //return 'checked';
1011
+ {
1012
+ return 'T';
1013
+ }
1014
+
1015
+ //return '';
1016
+ return 'F';
1017
+ }
1018
+
1019
+ public function save_gallery() {
1020
+ if ( check_admin_referer( 'Modula', 'Modula' ) ) {
1021
+ $galleryName = stripslashes( $_POST['tg_name'] );
1022
+ $galleryDescription = stripslashes( $_POST['tg_description'] );
1023
+ $slug = strtolower( str_replace( " ", "", $galleryName ) );
1024
+ $margin = intval( $_POST['tg_margin'] );
1025
+ $shuffle = $this->checkboxVal( 'tg_shuffle' );
1026
+ $width = $_POST['tg_width'];
1027
+ $height = $_POST['tg_height'];
1028
+ $enableTwitter = $this->checkboxVal( 'tg_enableTwitter' );
1029
+ $enableFacebook = $this->checkboxVal( 'tg_enableFacebook' );
1030
+ $enableGplus = $this->checkboxVal( 'tg_enableGplus' );
1031
+ $enablePinterest = $this->checkboxVal( 'tg_enablePinterest' );
1032
+ $lightbox = $_POST['tg_lightbox'];
1033
+ $wp_field_caption = $_POST['tg_wp_field_caption'];
1034
+ $wp_field_title = $_POST['tg_wp_field_title'];
1035
+ $hide_title = $this->checkboxVal( 'tg_hide_title' );
1036
+ $hide_description = $this->checkboxVal( 'tg_hide_description' );
1037
+ $captionColor = $_POST['tg_captionColor'];
1038
+ $borderSize = intval( $_POST['tg_borderSize'] );
1039
+ $loadedScale = intval( $_POST['tg_loadedScale'] );
1040
+ $loadedRotate = intval( $_POST['tg_loadedRotate'] );
1041
+ $loadedVSlide = intval( $_POST['tg_loadedVSlide'] );
1042
+ $loadedHSlide = intval( $_POST['tg_loadedHSlide'] );
1043
+ $socialIconColor = $_POST['tg_socialIconColor'];
1044
+ $hoverEffect = $_POST['tg_hoverEffect'];
1045
+ $titleFontSize = intval( $_POST['tg_titleFontSize'] );
1046
+ $captionFontSize = intval( $_POST['tg_captionFontSize'] );
1047
+ $borderColor = $_POST['tg_borderColor'];
1048
+ $borderRadius = intval( $_POST['tg_borderRadius'] );
1049
+ $shadowColor = $_POST['tg_shadowColor'];
1050
+ $shadowSize = intval( $_POST['tg_shadowSize'] );
1051
+ $style = $_POST['tg_style'];
1052
+ $script = $_POST['tg_script'];
1053
+
1054
+ $id = isset( $_POST['ftg_gallery_edit'] ) ? intval( $_POST['ftg_gallery_edit'] ) : 0;
1055
+
1056
+ $data = array(
1057
+ 'name' => $galleryName,
1058
+ 'slug' => $slug,
1059
+ 'description' => $galleryDescription,
1060
+ 'lightbox' => $lightbox,
1061
+ 'img_size' => intval( $_POST['tg_img_size'] ),
1062
+ 'hasResizedImages' => true,
1063
+ 'wp_field_caption' => $wp_field_caption,
1064
+ 'wp_field_title' => $wp_field_title,
1065
+ 'hide_title' => $hide_title,
1066
+ 'hide_description' => $hide_description,
1067
+ 'margin' => $margin,
1068
+ 'randomFactor' => $_POST['tg_randomFactor'],
1069
+ 'shuffle' => $shuffle,
1070
+ 'enableTwitter' => $enableTwitter,
1071
+ 'enableFacebook' => $enableFacebook,
1072
+ 'enableGplus' => $enableGplus,
1073
+ 'enablePinterest' => $enablePinterest,
1074
+ 'captionColor' => $captionColor,
1075
+ 'hoverEffect' => $hoverEffect,
1076
+ 'borderSize' => $borderSize,
1077
+ 'loadedScale' => $loadedScale,
1078
+ 'loadedHSlide' => $loadedHSlide,
1079
+ 'loadedVSlide' => $loadedVSlide,
1080
+ 'loadedRotate' => $loadedRotate,
1081
+ 'socialIconColor' => $socialIconColor,
1082
+ 'captionFontSize' => $captionFontSize,
1083
+ 'titleFontSize' => $titleFontSize,
1084
+ 'borderColor' => $borderColor,
1085
+ 'borderRadius' => $borderRadius,
1086
+ 'shadowSize' => $shadowSize,
1087
+ 'shadowColor' => $shadowColor,
1088
+ 'width' => $width,
1089
+ 'height' => $height,
1090
+ 'style' => $style,
1091
+ 'script' => $script,
1092
+ );
1093
+
1094
+ header( "Content-type: application/json" );
1095
+ if ( $id > 0 ) {
1096
+ $result = $this->ModulaDB->editGallery( $id, $data );
1097
+
1098
+ if ( intval( $this->loadedData->img_size ) != $data['img_size'] ) {
1099
+ $images = $this->ModulaDB->getImagesByGalleryId( $id );
1100
+ $images = ModulaLiteTools::check_and_resize( $images, $data['img_size'] );
1101
+
1102
+ foreach ( $images as $img ) {
1103
+ $this->ModulaDB->editImage( $img->Id, (array) $img );
1104
+ }
1105
+ }
1106
+
1107
+ $this->loadedData = $this->ModulaDB->getGalleryById( $id, $this->defaultValues );
1108
+ } else {
1109
+ $result = $this->ModulaDB->addGallery( $data );
1110
+ $id = $this->ModulaDB->getNewGalleryId();
1111
+ }
1112
+
1113
+ if ( $result ) {
1114
+ print "{\"success\":true,\"id\":" . $id . "}";
1115
+ } else {
1116
+ print "{\"success\":false}";
1117
+ }
1118
+ }
1119
+ die();
1120
+ }
1121
+
1122
+ public function edit_gallery() {
1123
+ if ( isset( $_GET['galleryId'] ) ) {
1124
+ $this->loadedData = $this->ModulaDB->getGalleryById( intval( $_GET['galleryId'] ), $this->defaultValues );
1125
+ $modula_fields = $this->fields;
1126
+ $modula_parent_page = "dashboard";
1127
+
1128
+ include( "admin/edit-gallery.php" );
1129
+ } else {
1130
+ $redir = true;
1131
+ $nobanner = true;
1132
+ include( "admin/overview.php" );
1133
+ }
1134
+ }
1135
+
1136
+ public function list_thumbnail_sizes() {
1137
+ global $_wp_additional_image_sizes;
1138
+ $sizes = array();
1139
+ foreach ( get_intermediate_image_sizes() as $s ) {
1140
+ $sizes[ $s ] = array( 0, 0 );
1141
+ if ( in_array( $s, array( 'thumbnail', 'medium', 'large' ) ) ) {
1142
+ $sizes[ $s ][0] = get_option( $s . '_size_w' );
1143
+ $sizes[ $s ][1] = get_option( $s . '_size_h' );
1144
+ } else {
1145
+ if ( isset( $_wp_additional_image_sizes ) && isset( $_wp_additional_image_sizes[ $s ] ) ) {
1146
+ $sizes[ $s ] = array(
1147
+ $_wp_additional_image_sizes[ $s ]['width'],
1148
+ $_wp_additional_image_sizes[ $s ]['height'],
1149
+ );
1150
+ }
1151
+ }
1152
+ }
1153
+
1154
+ return $sizes;
1155
+ }
1156
+
1157
+ public function gallery_shortcode_handler( $atts ) {
1158
+ require_once( 'lib/gallery-class.php' );
1159
+ global $Modula;
1160
+
1161
+ if ( class_exists( 'ModulaLiteFE' ) ) {
1162
+ $Modula = new ModulaLiteFE( $this->ModulaDB, $atts['id'], $this->defaultValues );
1163
+
1164
+ $settings = $Modula->getGallery();
1165
+ switch ( $settings->lightbox ) {
1166
+ case "lightbox2":
1167
+ wp_enqueue_style( 'lightbox2_stylesheet' );
1168
+ wp_enqueue_script( 'lightbox2_script' );
1169
+ wp_add_inline_script( 'lightbox2_script', 'jQuery(document).ready(function(){lightbox.option({albumLabel: "' . esc_html__( 'Image %1 of %2', 'modula-gallery' ) . '"});});' );
1170
+ break;
1171
+ }
1172
+
1173
+ return $Modula->render();
1174
+ } else {
1175
+ return esc_html__( 'Gallery not found.', 'modula-gallery' );
1176
+ }
1177
+ }
1178
+
1179
+ public function shortcode_empty_paragraph_fix( $content ) {
1180
+
1181
+ $array = array (
1182
+ '<p>[Modula' => '[Modula' ,
1183
+ '<p>[/Modula' => '[/Modula',
1184
+ 'Modula]</p>' => 'Modula]',
1185
+ 'Modula]<br />' => 'Modula]'
1186
+ );
1187
+
1188
+ $content = strtr( $content, $array );
1189
+
1190
+ return $content;
1191
+ }
1192
+
1193
+ }
1194
+
1195
+ class ModulaLiteHoverEffect {
1196
+
1197
+ var $name;
1198
+ var $code;
1199
+ var $allowTitle;
1200
+ var $allowSubtitle;
1201
+ var $maxSocial;
1202
+
1203
+ public function __construct( $name, $code, $allowTitle, $allowSubtitle, $maxSocial ) {
1204
+ $this->name = $name;
1205
+ $this->code = $code;
1206
+ $this->allowTitle = $allowTitle;
1207
+ $this->allowSubtitle = $allowSubtitle;
1208
+ $this->maxSocial = $maxSocial;
1209
+ }
1210
+ }
1211
+ }
1212
+
1213
+ class ModulaLiteTools {
1214
+
1215
+ public static function get_image_size_links( $id ) {
1216
+ $result = array();
1217
+ $sizes = get_intermediate_image_sizes();
1218
+ $sizes[] = 'full';
1219
+
1220
+ foreach ( $sizes as $size ) {
1221
+ $image = wp_get_attachment_image_src( $id, $size );
1222
+
1223
+ if ( ! empty( $image ) && ( true == $image[3] || 'full' == $size ) ) {
1224
+ $result["$image[1]x$image[2]"] = $image[0];
1225
+ }
1226
+ }
1227
+
1228
+ return $result;
1229
+ }
1230
+
1231
+ public static function resize_image( $id, $img_size ) {
1232
+ $file = get_attached_file( $id );
1233
+ $editor = wp_get_image_editor( $file );
1234
+ $size = $editor->get_size();
1235
+ if ( $size["width"] > $size["height"] ) {
1236
+ $editor->resize( 10000, $img_size );
1237
+ } else {
1238
+ $editor->resize( $img_size, 10000 );
1239
+ }
1240
+ $path_parts = pathinfo( $file );
1241
+ $filename = $path_parts['dirname'] . "/" . $path_parts['filename'] . "-" . $img_size . "x" . $img_size . "." . $path_parts["extension"];
1242
+
1243
+ if ( ! file_exists( $filename ) ) {
1244
+ $editor->save( $filename );
1245
+ }
1246
+
1247
+ return basename( $filename );
1248
+ }
1249
+
1250
+ public static function check_and_resize( &$images, $size ) {
1251
+ foreach ( $images as &$img ) {
1252
+ $metadata = wp_get_attachment_metadata( $img->imageId );
1253
+
1254
+ if ( $img->imageId > 0 ) {
1255
+ $wpdata = get_post( $img->imageId );
1256
+ $baseurl = str_replace( basename( $wpdata->guid ), "", $wpdata->guid );
1257
+ $res_name = ModulaLiteTools::resize_image( $img->imageId, $size );
1258
+
1259
+ if ( ! ( array_key_exists( "image_meta", $metadata ) && array_key_exists( "resized_images", $metadata["image_meta"] ) && in_array( $size . "x" . $size, $metadata["image_meta"]["resized_images"] ) ) ) {
1260
+ if ( isset( $metadata['image_meta'] ) ) {
1261
+ $md = $size . 'x' . $size;
1262
+ $metadata['image_meta']['resized_images'][] = $md;
1263
+ wp_update_attachment_metadata( $img->imageId, $metadata );
1264
+ }
1265
+ }
1266
+
1267
+ $img->imagePath = $baseurl . $res_name;
1268
+ } else {
1269
+ $img->imagePath = preg_replace( "/w=(\d+)/", "w=" . $size, $img->imagePath );
1270
+ }
1271
+ }
1272
+
1273
+ return $images;
1274
+ }
1275
+ }
1276
+
1277
+ if ( class_exists( "ModulaLite" ) ) {
1278
+ global $ob_ModulaLite;
1279
+ $ob_ModulaLite = new ModulaLite();
1280
+ }
1281
+ ?>
README.txt CHANGED
@@ -1,266 +1,269 @@
1
- === Gallery - Photo Gallery - Image Gallery ===
2
- Contributors: machothemes, imagegallery, xphotogallery, silkalns
3
- Tags: image gallery, photo gallery, responsive gallery, wordpress gallery plugin, wordpress portfolio plugin, lightbox gallery, masonry gallery, envira, envira gallery, nextgen, nextgen gallery, album, content gallery, fancy gallery, gallery widget, media gallery, mosaic gallery, photo album, polaroid gallery, portfolio gallery, post gallery, thumbnail gallery, video gallery, youtube gallery, filterable portfolio, portfolio gallery, responsive portfolio, wordpress portfolio plugin
4
- Requires at least: 3.8
5
- Tested up to: 4.9
6
- Stable tag: 1.3.1
7
- License: GPLv3 or later
8
- License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
-
10
- Photo Gallery by Modula - an advanced solution for Photo Gallery users. Create beautiful image galleries in minutes or less.
11
-
12
- == Description ==
13
-
14
- Modula WordPress Photo Gallery, Image Gallery & Portfolio Gallery Plugin, the creative WordPress image gallery, photo gallery, portfolio gallery & responsive gallery, is now available also in Lite version. Modula is currently the easiest and fastest photo gallery plugin for WordPress. With its wizard you are able to build an image gallery in a few seconds, unlike many other WordPress gallery plugins.
15
-
16
- = See a 60s video of Modula in action =
17
-
18
- https://www.youtube.com/watch?v=tq8yUYxgtnA
19
-
20
-
21
- > **Time-saving features available in the FULL version:**
22
- >
23
- > * Use more than 20 images per gallery
24
- > * Get access to gallery filters. Each image can have one or more filters.
25
- > * Get access to 5 more lightbox libraries & effects with the PRO version.
26
- > * Image effects on finishing image loading. Rotate or Horizontally / Vertically slide the images.
27
- > * Get access to more than 15 hover image effects.
28
- > * Priority email support from the developer of the plugin
29
- > * Support and updates for 12 months
30
- >
31
- > **[Learn more about Modula Full version]( https://wp-modula.com/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite )**
32
-
33
-
34
- = See how Modula can integrate with your website =
35
-
36
- * [Modula Grid Gallery](http://wp-modula.com/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
37
- * [Example: Margins](https://wp-modula.com/demo/margins/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
38
- * [Example: Shuffle](https://wp-modula.com/demo/shuffle/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
39
- * [Example: Social icons](https://wp-modula.com/demo/social-effect/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
40
- * [Example: Custom styling](https://wp-modula.com/demo/styling/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
41
- * [Architecture portfolio](https://wp-modula.com/demo/applications/architecture/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
42
- * [Art showcase](https://wp-modula.com/demo/applications/art-gallery/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
43
- * [Photography portfolio](https://wp-modula.com/demo/applications/blackwhite-photography/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
44
- * [Food gallery](https://wp-modula.com/demo/applications/food/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
45
- * [Pets gallery](https://wp-modula.com/demo/applications/pets-animals/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
46
- * [Tattoo showcase](https://wp-modula.com/demo/applications/tattoo-attitude/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
47
- * [Travel gallery](https://wp-modula.com/demo/applications/travel-gallery/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
48
- * [Wedding album](https://wp-modula.com/demo/applications/wedding-album/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
49
-
50
- = Shortcode Parameters =
51
-
52
- `
53
- * id
54
- `
55
-
56
-
57
- **Plugin is now using the TinyMCE API to improve UI and makes it easy to insert shortcodes!**
58
-
59
-
60
- = Basic example =
61
-
62
- `[Modula id="1"]`
63
-
64
-
65
- = Some Modula demo applications / usages =
66
-
67
- Do you wonder why this gallery is the best one? Look at the other galleries, see their demos, you’ll notice something weird ... THEY ALL LOOK THE SAME!
68
-
69
- Modula is creative! Modula is dynamic! Modula doesn’t always look the same. Just have fun with it! Modula uses a new concept to build its internal grid. After you set a width and a height for the gallery, Modula will create a random but smart grid inside. The result is a dynamic, creative, interesting and attractive gallery.
70
-
71
- You can control how much randomness to use in each gallery, so you can obtain a more traditional layout by switching off the “random factor,” or you can make something much more different by incrementing this factor.
72
-
73
- Modula is a justified grid gallery because YOU decide the width and the height of the gallery, and the images to put inside. Modula will think about everything else. Images will never exceed their container.
74
-
75
- To achieve such a result, images will be cropped, but that’s not a problem at all, because you can set a custom alignment for those images where the subject is not at the center of the image.
76
-
77
- Modula Grid Gallery is not only responsive but also fluid, which means you’ll see images organize themselves with an impressive animation even on mobile devices thanks to the CSS3 engine.
78
-
79
- **Ease of use doesn’t mean trivial galleries, indeed!**
80
- By using the Modula Admin Panel you’re able to fine tune every aspect of the gallery. Choose a gallery size, margins between images, the color and the size of captions. Each photo can have a title and a subtitle so you’re able to best describe every image.
81
-
82
- = What is Modula good for? =
83
-
84
- Modula is also the best WordPress portfolio plugin, as it allows you to build gorgeous, creative portfolios. Applications are:
85
-
86
- * architecture
87
- * art
88
- * photography
89
- * food blogs
90
- * pets and animals
91
- * tattoos
92
- * travel
93
- * also wedding albums.
94
-
95
- If you're frustated because your current galleries looks boring and too standard then you can use the importer which is included with Modula. The importer is currently able to import Envira and NextGen galleries.
96
-
97
- > This plugin is maintained and supported by Macho Themes.
98
- > Check out some of the other <a href="//machothemes.com/plugins/">WordPress plugins</a> we've developed.
99
- > Check out some of the other <a href="//machothemes.com/themes/free/">free WordPress themes</a> we've developed.
100
-
101
- == Installation ==
102
- = For automatic installation: =
103
-
104
- The simplest way to install is to click on \'Plugins\' then \'Add\' and type \'Modula\' in the search field.
105
-
106
- = For manual installation 1: =
107
-
108
- 1. Login to your website and go to the Plugins section of your admin panel.
109
- 2. Click the Add New button.
110
- 3. Under Install Plugins, click the Upload link.
111
- 4. Select the plugin zip file (modula.x.x.x.zip) from your computer then click the Install Now button.
112
- 5. You should see a message stating that the plugin was installed successfully.
113
- 6. Click the Activate Plugin link.
114
-
115
- = For manual installation 2: =
116
-
117
- 1. You should have access to the server where WordPress is installed. If you don\'t, see your system administrator.
118
- 2. Copy the plugin zip file (modula.x.x.x.zip) up to your server and unzip it somewhere on the file system.
119
- 3. Copy the \"modula-lite\" folder into the /wp-content/plugins directory of your WordPress installation.
120
- 4. Login to your website and go to the Plugins section of your admin panel.
121
- 5. Look for \"Modula\" and click Activate.
122
-
123
- == Frequently Asked Questions ==
124
-
125
- = The layout doesnt' look correct =
126
-
127
- Check the console of the browser and look if you see any error like: "Uncaught TypeError: undefined is not a function"
128
- This errors means that the browser doesn't know the Modula JavaScript plugin, most of the time the problem is caused by a wrong jQuery inclusion by the theme or another plugin.
129
-
130
- = Why does some image look blurry ? =
131
-
132
- If you get blurry and pixellated images then you need to raise the "Minimum image width" parameter inside the "General" section.
133
-
134
- = I want to use another lightbox instead of the provided one =
135
-
136
- The PRO license bundles 6 different lightboxes. However you can use any other lightbox you want also with the Lite license. If you have installed a lightbox plugin then you just need to select "Direct link to image" in the "Lightbox" settings.
137
-
138
- = How can I get support? =
139
-
140
- Free support is included only with a PRO license: [Buy Modula PRO](https://wp-modula.com/#buy "Buy Modula PRO")
141
-
142
- = How can I say thanks? =
143
-
144
- * Just recommend our plugin to your friends! or
145
- * Like and share our [Facebook page](https://www.facebook.com/machothemes "Facebook fan page")
146
-
147
-
148
- == Screenshots ==
149
-
150
- 1. Gallery with Appear effect
151
- 2. Gallery with Crafty effect and round corners
152
- 3. Gallery with Catinelle effect
153
- 4. Gallery with Appear effect
154
- 5. Gallery with Pufrobo effect
155
- 6. Lightgallery lightbox
156
- 7. Admin panel with Material design
157
-
158
- == Changelog ==
159
-
160
- = 1.3.1 =
161
- * Changed lightbox script
162
-
163
- = 1.3.0 =
164
- * Added compatibility with : WPML/Visual Composer/Page Builder by SiteOrigin
165
- * Fixed bugs with captions & titles
166
- * Localized all text strings
167
- * Fixed lightbox bug
168
- * For a more detailed changelog check : https://github.com/MachoThemes/modula-lite/milestone/2?closed=1
169
-
170
- = 1.2.1 =
171
- * Fixed the broken link
172
- * Hid the Edit gallery menu item
173
-
174
- = 1.2 =
175
- * Removed sub-menu entry: Tutorial
176
- * Removed sub-menu entry: Other Galleries
177
- * Removed fixed action button
178
- * Removed Modula Survey by Diego Imbriani
179
- * Re-worked the "Upgrade" page.
180
- * Removed the "languages" folder. We'll be using GlotPress to handle these
181
- * Fixed an issue with WPML plugin
182
-
183
- = 1.1.13 =
184
- * Enhanced lightbox compatibility
185
-
186
- = 1.1.10 =
187
- * Enhancement in backend UI
188
-
189
- = 1.1.9 =
190
- * Minor change in backend UI
191
-
192
- = 1.1.8 =
193
- * Fixed broken css for backends under SSL
194
-
195
- = 1.1.7 =
196
- * Tool to fix broken images after version 1.1.0
197
-
198
- = 1.1.6 =
199
- * Bug fix (impossible to select effect "None")
200
-
201
- = 1.1.5 =
202
- * Fixed issue on admin panel when images are too tall
203
-
204
- = 1.1.4 =
205
- * Changed CSS icon prefix to avoid conflicts
206
-
207
- = 1.1.3 =
208
- * Fixed bug (linked images opening in lightbox)
209
-
210
- = 1.1.2 =
211
- * Fixed social icons bug
212
-
213
- = 1.1.1 =
214
- * Bug fix
215
-
216
- = 1.1.0 =
217
- * New image management
218
- * Import tool for Envira galleries
219
- * Import tool for NextGen galleries
220
-
221
- = 1.0.12 =
222
- * Added link to ShortPixel plugin for image optimization
223
-
224
- = 1.0.11 =
225
- * Minor bug fix: fixed missing preview effect image
226
-
227
- = 1.0.10 =
228
- * Bug fix: now Lightbox opens image at full size
229
-
230
- = 1.0.9 =
231
- * Fixed url to upgrade
232
-
233
- = 1.0.8 =
234
- * Fixed url to upgrade
235
-
236
- = 1.0.7 =
237
- * Changed call to action for the survey
238
-
239
- = 1.0.6 =
240
- * Fixed CSS issue with Lightbox and some themes. New page in admin panel to show other gallery plugins. Enhancements of the UI of admin panel.
241
-
242
- = 1.0.5 =
243
- * Added handy links on plugins page
244
-
245
- = 1.0.4 =
246
- * Updated pot file for translations
247
-
248
- = 1.0.3 =
249
- * Bug fix: now images can be sorted also in the "Add gallery" wizard
250
-
251
- = 1.0.2 =
252
- * Added link to survey to help us making a better plugin
253
-
254
- = 1.0.1 =
255
- * Fixed issue when activating the plugin
256
-
257
- = 1.0.0 =
258
- * This is the launch version. No changes yet.
259
-
260
- == Upgrade Notice ==
261
-
262
- = 1.1.8 =
263
- * This update will fix broken CSS of admin panel under SSL
264
-
265
- = 1.1.7 =
 
 
 
266
  * This update contains a tool to fix broken images.
1
+ === Modula Image Gallery ===
2
+ Contributors: machothemes, silkalns
3
+ Tags: best gallery plugin, image gallery, photo gallery, responsive gallery, wordpress gallery plugin, wordpress portfolio plugin, masonry gallery, fancy gallery, media gallery, mosaic gallery, polaroid gallery, portfolio gallery
4
+ Requires at least: 3.8
5
+ Tested up to: 4.9
6
+ Stable tag: 1.3.2
7
+ License: GPLv3 or later
8
+ License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
+
10
+ Photo Gallery by Modula - an advanced solution for Photo Gallery users. Create beautiful image galleries in minutes or less.
11
+
12
+ == Description ==
13
+
14
+ Modula Image Gallery is a creative and original WordPress plugin perfect for creating custom, unique, and responsive image galleries. Modula is available in both a Lite/free version and a premium version and it is currently the easiest and fastest photo gallery plugin for WordPress. Directly from its dashboard you are able to build stunning galleries in a few seconds, unlike many other WordPress plugins.
15
+
16
+ = See a 60s video of Modula in action =
17
+
18
+ https://www.youtube.com/watch?v=tq8yUYxgtnA
19
+
20
+
21
+ > **Time-saving features available in the FULL version:**
22
+ >
23
+ > * Use more than 20 images per gallery
24
+ > * Get access to gallery filters. Each image can have one or more filters.
25
+ > * Get access to 5 more lightbox libraries & effects with the PRO version.
26
+ > * Image effects on finishing image loading. Rotate or Horizontally / Vertically slide the images.
27
+ > * Get access to more than 15 hover image effects.
28
+ > * Priority email support from the developer of the plugin
29
+ > * Support and updates for 12 months
30
+ >
31
+ > **[Learn more about Modula Full version]( https://wp-modula.com/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite )**
32
+
33
+
34
+ = See how Modula can integrate with your website =
35
+
36
+ * [Modula Grid Gallery](http://wp-modula.com/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
37
+ * [Example: Margins](https://wp-modula.com/demo/margins/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
38
+ * [Example: Shuffle](https://wp-modula.com/demo/shuffle/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
39
+ * [Example: Social icons](https://wp-modula.com/demo/social-effect/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
40
+ * [Example: Custom styling](https://wp-modula.com/demo/styling/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
41
+ * [Architecture portfolio](https://wp-modula.com/demo/applications/architecture/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
42
+ * [Art showcase](https://wp-modula.com/demo/applications/art-gallery/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
43
+ * [Photography portfolio](https://wp-modula.com/demo/applications/blackwhite-photography/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
44
+ * [Food gallery](https://wp-modula.com/demo/applications/food/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
45
+ * [Pets gallery](https://wp-modula.com/demo/applications/pets-animals/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
46
+ * [Tattoo showcase](https://wp-modula.com/demo/applications/tattoo-attitude/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
47
+ * [Travel gallery](https://wp-modula.com/demo/applications/travel-gallery/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
48
+ * [Wedding album](https://wp-modula.com/demo/applications/wedding-album/?utm_source=wordpress.org&utm_medium=web&utm_campaign=Modula%20Lite)
49
+
50
+ = Shortcode Parameters =
51
+
52
+ `
53
+ * id
54
+ `
55
+
56
+
57
+ **Plugin is now using the TinyMCE API to improve UI and makes it easy to insert shortcodes!**
58
+
59
+
60
+ = Basic example =
61
+
62
+ `[Modula id="1"]`
63
+
64
+
65
+ = Some Modula demo applications / usages =
66
+
67
+ Do you wonder why this gallery is the best one? Look at the other galleries, see their demos, you’ll notice something weird ... THEY ALL LOOK THE SAME!
68
+
69
+ Modula is creative! Modula is dynamic! Modula doesn’t always look the same. Just have fun with it! Modula uses a new concept to build its internal grid. After you set a width and a height for the gallery, Modula will create a random but smart grid inside. The result is a dynamic, creative, interesting and attractive gallery.
70
+
71
+ You can control how much randomness to use in each gallery, so you can obtain a more traditional layout by switching off the “random factor,” or you can make something much more different by incrementing this factor.
72
+
73
+ Modula is a justified grid gallery because YOU decide the width and the height of the gallery, and the images to put inside. Modula will think about everything else. Images will never exceed their container.
74
+
75
+ To achieve such a result, images will be cropped, but that’s not a problem at all, because you can set a custom alignment for those images where the subject is not at the center of the image.
76
+
77
+ Modula Grid Gallery is not only responsive but also fluid, which means you’ll see images organize themselves with an impressive animation even on mobile devices thanks to the CSS3 engine.
78
+
79
+ **Ease of use doesn’t mean trivial galleries, indeed!**
80
+ By using the Modula Admin Panel you’re able to fine tune every aspect of the gallery. Choose a gallery size, margins between images, the color and the size of captions. Each photo can have a title and a subtitle so you’re able to best describe every image.
81
+
82
+ = What is Modula good for? =
83
+
84
+ Modula is also the best WordPress portfolio plugin, as it allows you to build gorgeous, creative portfolios. Applications are:
85
+
86
+ * architecture
87
+ * art
88
+ * photography
89
+ * food blogs
90
+ * pets and animals
91
+ * tattoos
92
+ * travel
93
+ * also wedding albums.
94
+
95
+ If you're frustated because your current galleries looks boring and too standard then you can use the importer which is included with Modula. The importer is currently able to import Envira and NextGen galleries.
96
+
97
+ > This plugin is maintained and supported by Macho Themes.
98
+ > Check out some of the other <a href="//machothemes.com/plugins/">WordPress plugins</a> we've developed.
99
+ > Check out some of the other <a href="//machothemes.com/themes/free/">free WordPress themes</a> we've developed.
100
+
101
+ == Installation ==
102
+ = For automatic installation: =
103
+
104
+ The simplest way to install is to click on \'Plugins\' then \'Add\' and type \'Modula\' in the search field.
105
+
106
+ = For manual installation 1: =
107
+
108
+ 1. Login to your website and go to the Plugins section of your admin panel.
109
+ 2. Click the Add New button.
110
+ 3. Under Install Plugins, click the Upload link.
111
+ 4. Select the plugin zip file (modula.x.x.x.zip) from your computer then click the Install Now button.
112
+ 5. You should see a message stating that the plugin was installed successfully.
113
+ 6. Click the Activate Plugin link.
114
+
115
+ = For manual installation 2: =
116
+
117
+ 1. You should have access to the server where WordPress is installed. If you don\'t, see your system administrator.
118
+ 2. Copy the plugin zip file (modula.x.x.x.zip) up to your server and unzip it somewhere on the file system.
119
+ 3. Copy the \"modula-lite\" folder into the /wp-content/plugins directory of your WordPress installation.
120
+ 4. Login to your website and go to the Plugins section of your admin panel.
121
+ 5. Look for \"Modula\" and click Activate.
122
+
123
+ == Frequently Asked Questions ==
124
+
125
+ = The layout doesnt' look correct =
126
+
127
+ Check the console of the browser and look if you see any error like: "Uncaught TypeError: undefined is not a function"
128
+ This errors means that the browser doesn't know the Modula JavaScript plugin, most of the time the problem is caused by a wrong jQuery inclusion by the theme or another plugin.
129
+
130
+ = Why does some image look blurry ? =
131
+
132
+ If you get blurry and pixellated images then you need to raise the "Minimum image width" parameter inside the "General" section.
133
+
134
+ = I want to use another lightbox instead of the provided one =
135
+
136
+ The PRO license bundles 6 different lightboxes. However you can use any other lightbox you want also with the Lite license. If you have installed a lightbox plugin then you just need to select "Direct link to image" in the "Lightbox" settings.
137
+
138
+ = How can I get support? =
139
+
140
+ Free support is included only with a PRO license: [Buy Modula PRO](https://wp-modula.com/#buy "Buy Modula PRO")
141
+
142
+ = How can I say thanks? =
143
+
144
+ * Just recommend our plugin to your friends! or
145
+ * Like and share our [Facebook page](https://www.facebook.com/machothemes "Facebook fan page")
146
+
147
+
148
+ == Screenshots ==
149
+
150
+ 1. Gallery with Appear effect
151
+ 2. Gallery with Crafty effect and round corners
152
+ 3. Gallery with Catinelle effect
153
+ 4. Gallery with Appear effect
154
+ 5. Gallery with Pufrobo effect
155
+ 6. Lightgallery lightbox
156
+ 7. Admin panel with Material design
157
+
158
+ == Changelog ==
159
+
160
+ = 1.3.2 =
161
+ * Validated HTML markup
162
+
163
+ = 1.3.1 =
164
+ * Changed lightbox script
165
+
166
+ = 1.3.0 =
167
+ * Added compatibility with : WPML/Visual Composer/Page Builder by SiteOrigin
168
+ * Fixed bugs with captions & titles
169
+ * Localized all text strings
170
+ * Fixed lightbox bug
171
+ * For a more detailed changelog check : https://github.com/MachoThemes/modula-lite/milestone/2?closed=1
172
+
173
+ = 1.2.1 =
174
+ * Fixed the broken link
175
+ * Hid the Edit gallery menu item
176
+
177
+ = 1.2 =
178
+ * Removed sub-menu entry: Tutorial
179
+ * Removed sub-menu entry: Other Galleries
180
+ * Removed fixed action button
181
+ * Removed Modula Survey by Diego Imbriani
182
+ * Re-worked the "Upgrade" page.
183
+ * Removed the "languages" folder. We'll be using GlotPress to handle these
184
+ * Fixed an issue with WPML plugin
185
+
186
+ = 1.1.13 =
187
+ * Enhanced lightbox compatibility
188
+
189
+ = 1.1.10 =
190
+ * Enhancement in backend UI
191
+
192
+ = 1.1.9 =
193
+ * Minor change in backend UI
194
+
195
+ = 1.1.8 =
196
+ * Fixed broken css for backends under SSL
197
+
198
+ = 1.1.7 =
199
+ * Tool to fix broken images after version 1.1.0
200
+
201
+ = 1.1.6 =
202
+ * Bug fix (impossible to select effect "None")
203
+
204
+ = 1.1.5 =
205
+ * Fixed issue on admin panel when images are too tall
206
+
207
+ = 1.1.4 =
208
+ * Changed CSS icon prefix to avoid conflicts
209
+
210
+ = 1.1.3 =
211
+ * Fixed bug (linked images opening in lightbox)
212
+
213
+ = 1.1.2 =
214
+ * Fixed social icons bug
215
+
216
+ = 1.1.1 =
217
+ * Bug fix
218
+
219
+ = 1.1.0 =
220
+ * New image management
221
+ * Import tool for Envira galleries
222
+ * Import tool for NextGen galleries
223
+
224
+ = 1.0.12 =
225
+ * Added link to ShortPixel plugin for image optimization
226
+
227
+ = 1.0.11 =
228
+ * Minor bug fix: fixed missing preview effect image
229
+
230
+ = 1.0.10 =
231
+ * Bug fix: now Lightbox opens image at full size
232
+
233
+ = 1.0.9 =
234
+ * Fixed url to upgrade
235
+
236
+ = 1.0.8 =
237
+ * Fixed url to upgrade
238
+
239
+ = 1.0.7 =
240
+ * Changed call to action for the survey
241
+
242
+ = 1.0.6 =
243
+ * Fixed CSS issue with Lightbox and some themes. New page in admin panel to show other gallery plugins. Enhancements of the UI of admin panel.
244
+
245
+ = 1.0.5 =
246
+ * Added handy links on plugins page
247
+
248
+ = 1.0.4 =
249
+ * Updated pot file for translations
250
+
251
+ = 1.0.3 =
252
+ * Bug fix: now images can be sorted also in the "Add gallery" wizard
253
+
254
+ = 1.0.2 =
255
+ * Added link to survey to help us making a better plugin
256
+
257
+ = 1.0.1 =
258
+ * Fixed issue when activating the plugin
259
+
260
+ = 1.0.0 =
261
+ * This is the launch version. No changes yet.
262
+
263
+ == Upgrade Notice ==
264
+
265
+ = 1.1.8 =
266
+ * This update will fix broken CSS of admin panel under SSL
267
+
268
+ = 1.1.7 =
269
  * This update contains a tool to fix broken images.
admin/add-gallery.php CHANGED
@@ -1,121 +1,121 @@
1
- <?php
2
- if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
3
- die( _e( 'You are not allowed to call this page directly.', 'modula-gallery' ) );
4
- }
5
-
6
- $tg_subtitle = "New Gallery";
7
- ?>
8
-
9
- <?php include( "header.php" ) ?>
10
-
11
-
12
- <div id="modula-wizard" class="add-gallery">
13
- <h2> <?php _e( 'Add New Gallery', 'modula-gallery' ); ?> </h2>
14
- <form action="#" method="post">
15
- <?php wp_nonce_field( 'Modula', 'Modula' ); ?>
16
- <input type="hidden" name="enc_images" value=""/>
17
-
18
- <fieldset data-step="1">
19
- <div class="row">
20
- <div class="input-field">
21
- <input name="tg_name" id="name" type="text" class="validate" required="required">
22
- <label for="name"><?php echo esc_html__( 'Name of the gallery', 'modula-gallery' ) ?></label>
23
- </div>
24
- </div>
25
- <div class="row">
26
- <div class="input-field">
27
- <input name="tg_description" id="description" type="text" class="validate">
28
- <label for="description"><?php echo esc_html__( 'Description of the gallery (for internal use)', 'modula-gallery' ) ?></label>
29
- </div>
30
- </div>
31
- <div class="row">
32
- <div class="input-field col s6">
33
- <input name="tg_width" id="width" type="text" value="100%">
34
- <label for="width"><?php echo esc_html__( 'Gallery width', 'modula-gallery' ) ?></label>
35
- </div>
36
- <div class="input-field col s6">
37
- <input name="tg_height" id="height" type="text" value="800">
38
- <label for="height"><?php echo esc_html__( 'Gallery height in pixels', 'modula-gallery' ) ?></label>
39
- </div>
40
- </div>
41
- </fieldset>
42
- <fieldset data-step="2" data-branch="images">
43
- <div class="field">
44
- <h5><?php echo esc_html__( 'WordPress field for titles:', 'modula-gallery' ) ?></h5>
45
- <select class="browser-default" name="ftg_wp_field_title">
46
- <option value="none"><?php echo esc_html__( 'Don\'t use titles', 'modula-gallery' ); ?></option>
47
- <option value="title" selected><?php echo esc_html__( 'Title', 'modula-gallery' ); ?></option>
48
- <option value="description"><?php echo esc_html__( 'Description', 'modula-gallery' ); ?></option>
49
- </select>
50
- </div>
51
- <div class="field">
52
- <h5><?php echo esc_html__( 'WordPress field for captions:', 'modula-gallery' ) ?></h5>
53
- <select class="browser-default" name="ftg_wp_field_caption">
54
- <option value="none"><?php echo esc_html( 'Don\'t use captions', 'modula-gallery' ); ?></option>
55
- <option value="title"><?php echo esc_html( 'Title', 'modula-gallery' ); ?></option>
56
- <option value="caption" selected><?php echo esc_html( 'Captions', 'modula-gallery' ); ?></option>
57
- <option value="description"><?php echo esc_html( 'Description', 'modula-gallery' ); ?></option>
58
- </select>
59
- </div>
60
- </fieldset>
61
- <fieldset data-step="3" data-save="true">
62
- <div class="field">
63
- <h5><?php echo esc_html__( 'Image size', 'modula-gallery' ) ?></h5>
64
- <div class="row">
65
- <div class="input-field">
66
- <input name="tg_img_size" id="img_size" type="text" class="validate" required="required" value="500">
67
- <label for="name"><?php echo esc_html__( 'Minimum width or height of images', 'modula-gallery' ) ?></label>
68
- </div>
69
- </div>
70
-
71
- <label class="shortpixel">
72
- <img src="<?php echo esc_url( plugins_url( '', __file__ ) ); ?>/images/icon-shortpixel.png" alt="ShortPixel">
73
- <a target="_blank" href="https://shortpixel.com/h/af/HUOYEBB31472"><?php echo esc_html__( 'We suggest using the ShortPixel image optimization plugin to optimize your images and get the best possible SEO results & load speed..', 'modula-gallery' ) ?></a>
74
- </label>
75
-
76
- </div>
77
- <div class="field select-images">
78
- <a class="waves-effect waves-light btn add-images">
79
- <i class="mdi mdi-plus left"></i> <?php echo esc_html__( 'Add images', 'modula-gallery' ) ?></a>
80
- <br> <label><?php echo esc_html__( 'You can add images now or later.', 'modula-gallery' ) ?></label>
81
-
82
- <div class="images list-group"></div>
83
- </div>
84
- </fieldset>
85
-
86
- <footer class="page-footer">
87
- <div class="progress loading hide">
88
- <div class="indeterminate"></div>
89
- </div>
90
-
91
- <a class="waves-effect waves-yellow btn-flat prev"><?php echo esc_html__( 'Previous', 'modula-gallery' ) ?></a>
92
- <a class="waves-effect waves-green btn-flat next"><?php echo esc_html__( 'Next', 'modula-gallery' ) ?></a>
93
- </footer>
94
-
95
- </form>
96
- <div id="success" class="modal">
97
- <div class="modal-content">
98
- <h4><?php echo esc_html__( 'Success!', 'modula-gallery' ) ?></h4>
99
- <p><?php echo esc_html__( 'Your gallery', 'modula-gallery' ) ?>
100
- "<span class="gallery-name"></span>" <?php echo esc_html__( 'has been created. Copy the following shortcode:', 'modula-gallery' ) ?>
101
- <br> <input type="text" class="code"><br>
102
- <?php echo esc_html__( 'and paste it inside a post or a page. Otherwise click', 'modula-gallery' ) ?>
103
- <a class='customize'><?php echo esc_html__( 'here', 'modula-gallery' ) ?></a> <?php echo esc_html__( 'to customize
104
- the gallery.', 'modula-gallery' ) ?>
105
- </p>
106
- </div>
107
- <div class="modal-'footer">
108
- <a href="?page=modula-lite-admin" id="modal-close" class="waves-effect waves-green btn-flat modal-action"><?php echo esc_html__( 'Close', 'modula-gallery' ) ?></a>
109
- </div>
110
- </div>
111
-
112
- <div id="error" class="modal">
113
- <div class="modal-content">
114
- <h4><?php echo esc_html__( 'Error!', 'modula-gallery' ) ?></h4>
115
- <p><?php echo esc_html__( 'For some reason it was not possible to save your gallery', 'modula-gallery' ) ?></p>
116
- </div>
117
- <div class="modal-footer">
118
- <a href="?page=modula-lite-admin" class="waves-effect waves-green btn-flat modal-action"><?php echo esc_html__( 'Close', 'modula-gallery' ) ?></a>
119
- </div>
120
- </div>
121
- </div>
1
+ <?php
2
+ if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
3
+ die( _e( 'You are not allowed to call this page directly.', 'modula-gallery' ) );
4
+ }
5
+
6
+ $tg_subtitle = "New Gallery";
7
+ ?>
8
+
9
+ <?php include( "header.php" ) ?>
10
+
11
+
12
+ <div id="modula-wizard" class="add-gallery">
13
+ <h2> <?php _e( 'Add New Gallery', 'modula-gallery' ); ?> </h2>
14
+ <form action="#" method="post">
15
+ <?php wp_nonce_field( 'Modula', 'Modula' ); ?>
16
+ <input type="hidden" name="enc_images" value=""/>
17
+
18
+ <fieldset data-step="1">
19
+ <div class="row">
20
+ <div class="input-field">
21
+ <input name="tg_name" id="name" type="text" class="validate" required="required">
22
+ <label for="name"><?php echo esc_html__( 'Name of the gallery', 'modula-gallery' ) ?></label>
23
+ </div>
24
+ </div>
25
+ <div class="row">
26
+ <div class="input-field">
27
+ <input name="tg_description" id="description" type="text" class="validate">
28
+ <label for="description"><?php echo esc_html__( 'Description of the gallery (for internal use)', 'modula-gallery' ) ?></label>
29
+ </div>
30
+ </div>
31
+ <div class="row">
32
+ <div class="input-field col s6">
33
+ <input name="tg_width" id="width" type="text" value="100%">
34
+ <label for="width"><?php echo esc_html__( 'Gallery width', 'modula-gallery' ) ?></label>
35
+ </div>
36
+ <div class="input-field col s6">
37
+ <input name="tg_height" id="height" type="text" value="800">
38
+ <label for="height"><?php echo esc_html__( 'Gallery height in pixels', 'modula-gallery' ) ?></label>
39
+ </div>
40
+ </div>
41
+ </fieldset>
42
+ <fieldset data-step="2" data-branch="images">
43
+ <div class="field">
44
+ <h5><?php echo esc_html__( 'WordPress field for titles:', 'modula-gallery' ) ?></h5>
45
+ <select class="browser-default" name="ftg_wp_field_title">
46
+ <option value="none"><?php echo esc_html__( 'Don\'t use titles', 'modula-gallery' ); ?></option>
47
+ <option value="title" selected><?php echo esc_html__( 'Title', 'modula-gallery' ); ?></option>
48
+ <option value="description"><?php echo esc_html__( 'Description', 'modula-gallery' ); ?></option>
49
+ </select>
50
+ </div>
51
+ <div class="field">
52
+ <h5><?php echo esc_html__( 'WordPress field for captions:', 'modula-gallery' ) ?></h5>
53
+ <select class="browser-default" name="ftg_wp_field_caption">
54
+ <option value="none"><?php echo esc_html( 'Don\'t use captions', 'modula-gallery' ); ?></option>
55
+ <option value="title"><?php echo esc_html( 'Title', 'modula-gallery' ); ?></option>
56
+ <option value="caption" selected><?php echo esc_html( 'Captions', 'modula-gallery' ); ?></option>
57
+ <option value="description"><?php echo esc_html( 'Description', 'modula-gallery' ); ?></option>
58
+ </select>
59
+ </div>
60
+ </fieldset>
61
+ <fieldset data-step="3" data-save="true">
62
+ <div class="field">
63
+ <h5><?php echo esc_html__( 'Image size', 'modula-gallery' ) ?></h5>
64
+ <div class="row">
65
+ <div class="input-field">
66
+ <input name="tg_img_size" id="img_size" type="text" class="validate" required="required" value="500">
67
+ <label for="name"><?php echo esc_html__( 'Minimum width or height of images', 'modula-gallery' ) ?></label>
68
+ </div>
69
+ </div>
70
+
71
+ <label class="shortpixel">
72
+ <img src="<?php echo esc_url( plugins_url( '', __file__ ) ); ?>/images/icon-shortpixel.png" alt="ShortPixel">
73
+ <a target="_blank" href="https://shortpixel.com/h/af/HUOYEBB31472"><?php echo esc_html__( 'We suggest using the ShortPixel image optimization plugin to optimize your images and get the best possible SEO results & load speed..', 'modula-gallery' ) ?></a>
74
+ </label>
75
+
76
+ </div>
77
+ <div class="field select-images">
78
+ <a class="waves-effect waves-light btn add-images">
79
+ <i class="mdi mdi-plus left"></i> <?php echo esc_html__( 'Add images', 'modula-gallery' ) ?></a>
80
+ <br> <label><?php echo esc_html__( 'You can add images now or later.', 'modula-gallery' ) ?></label>
81
+
82
+ <div class="images list-group"></div>
83
+ </div>
84
+ </fieldset>
85
+
86
+ <footer class="page-footer">
87
+ <div class="progress loading hide">
88
+ <div class="indeterminate"></div>
89
+ </div>
90
+
91
+ <a class="waves-effect waves-yellow btn-flat prev"><?php echo esc_html__( 'Previous', 'modula-gallery' ) ?></a>
92
+ <a class="waves-effect waves-green btn-flat next"><?php echo esc_html__( 'Next', 'modula-gallery' ) ?></a>
93
+ </footer>
94
+
95
+ </form>
96
+ <div id="success" class="modal">
97
+ <div class="modal-content">
98
+ <h4><?php echo esc_html__( 'Success!', 'modula-gallery' ) ?></h4>
99
+ <p><?php echo esc_html__( 'Your gallery', 'modula-gallery' ) ?>
100
+ "<span class="gallery-name"></span>" <?php echo esc_html__( 'has been created. Copy the following shortcode:', 'modula-gallery' ) ?>
101
+ <br> <input type="text" class="code"><br>
102
+ <?php echo esc_html__( 'and paste it inside a post or a page. Otherwise click', 'modula-gallery' ) ?>
103
+ <a class='customize'><?php echo esc_html__( 'here', 'modula-gallery' ) ?></a> <?php echo esc_html__( 'to customize
104
+ the gallery.', 'modula-gallery' ) ?>
105
+ </p>
106
+ </div>
107
+ <div class="modal-'footer">
108
+ <a href="?page=modula-lite-admin" id="modal-close" class="waves-effect waves-green btn-flat modal-action"><?php echo esc_html__( 'Close', 'modula-gallery' ) ?></a>
109
+ </div>
110
+ </div>
111
+
112
+ <div id="error" class="modal">
113
+ <div class="modal-content">
114
+ <h4><?php echo esc_html__( 'Error!', 'modula-gallery' ) ?></h4>
115
+ <p><?php echo esc_html__( 'For some reason it was not possible to save your gallery', 'modula-gallery' ) ?></p>
116
+ </div>
117
+ <div class="modal-footer">
118
+ <a href="?page=modula-lite-admin" class="waves-effect waves-green btn-flat modal-action"><?php echo esc_html__( 'Close', 'modula-gallery' ) ?></a>
119
+ </div>
120
+ </div>
121
+ </div>
admin/css/materialdesignicons.css CHANGED
@@ -1,5107 +1,5107 @@
1
- /* MaterialDesignIcons.com */
2
- @font-face {
3
- font-family: 'MaterialDesignIcons';
4
- src: url("../font/material-design-icons/materialdesignicons-webfont.eot?v=1.2.64");
5
- src: url("../font/material-design-icons/materialdesignicons-webfont.eot?#iefix&v=1.2.64") format("embedded-opentype"), url("../font/material-design-icons/materialdesignicons-webfont.woff2?v=1.2.64") format("woff2"), url("../font/material-design-icons/materialdesignicons-webfont.woff?v=1.2.64") format("woff"), url("../font/material-design-icons/materialdesignicons-webfont.ttf?v=1.2.64") format("truetype"), url("../font/material-design-icons/materialdesignicons-webfont.svg?v=1.2.64#materialdesigniconsregular") format("svg");
6
- font-weight: normal;
7
- font-style: normal;
8
- }
9
- .mdi {
10
- display: inline-block;
11
- font: normal normal normal 24px/1 MaterialDesignIcons;
12
- font-size: inherit;
13
- text-rendering: auto;
14
- -webkit-font-smoothing: antialiased;
15
- -moz-osx-font-smoothing: grayscale;
16
- transform: translate(0, 0);
17
- }
18
-
19
- .mdi-account:before {
20
- content: "\f101";
21
- }
22
-
23
- .mdi-account-alert:before {
24
- content: "\f102";
25
- }
26
-
27
- .mdi-account-box:before {
28
- content: "\f103";
29
- }
30
-
31
- .mdi-account-box-outline:before {
32
- content: "\f104";
33
- }
34
-
35
- .mdi-account-check:before {
36
- content: "\f105";
37
- }
38
-
39
- .mdi-account-circle:before {
40
- content: "\f106";
41
- }
42
-
43
- .mdi-account-key:before {
44
- content: "\f107";
45
- }
46
-
47
- .mdi-account-location:before {
48
- content: "\f108";
49
- }
50
-
51
- .mdi-account-minus:before {
52
- content: "\f109";
53
- }
54
-
55
- .mdi-account-multiple:before {
56
- content: "\f10a";
57
- }
58
-
59
- .mdi-account-multiple-outline:before {
60
- content: "\f10b";
61
- }
62
-
63
- .mdi-account-multiple-plus:before {
64
- content: "\f10c";
65
- }
66
-
67
- .mdi-account-network:before {
68
- content: "\f10d";
69
- }
70
-
71
- .mdi-account-outline:before {
72
- content: "\f10e";
73
- }
74
-
75
- .mdi-account-plus:before {
76
- content: "\f10f";
77
- }
78
-
79
- .mdi-account-remove:before {
80
- content: "\f110";
81
- }
82
-
83
- .mdi-account-search:before {
84
- content: "\f111";
85
- }
86
-
87
- .mdi-account-star:before {
88
- content: "\f112";
89
- }
90
-
91
- .mdi-account-star-variant:before {
92
- content: "\f113";
93
- }
94
-
95
- .mdi-account-switch:before {
96
- content: "\f114";
97
- }
98
-
99
- .mdi-airballoon:before {
100
- content: "\f115";
101
- }
102
-
103
- .mdi-airplane:before {
104
- content: "\f116";
105
- }
106
-
107
- .mdi-airplane-off:before {
108
- content: "\f117";
109
- }
110
-
111
- .mdi-alarm:before {
112
- content: "\f118";
113
- }
114
-
115
- .mdi-alarm-check:before {
116
- content: "\f119";
117
- }
118
-
119
- .mdi-alarm-multiple:before {
120
- content: "\f11a";
121
- }
122
-
123
- .mdi-alarm-off:before {
124
- content: "\f11b";
125
- }
126
-
127
- .mdi-alarm-plus:before {
128
- content: "\f11c";
129
- }
130
-
131
- .mdi-album:before {
132
- content: "\f11d";
133
- }
134
-
135
- .mdi-alert:before {
136
- content: "\f11e";
137
- }
138
-
139
- .mdi-alert-box:before {
140
- content: "\f11f";
141
- }
142
-
143
- .mdi-alert-circle:before {
144
- content: "\f120";
145
- }
146
-
147
- .mdi-alert-octagon:before {
148
- content: "\f121";
149
- }
150
-
151
- .mdi-alpha:before {
152
- content: "\f122";
153
- }
154
-
155
- .mdi-alphabetical:before {
156
- content: "\f123";
157
- }
158
-
159
- .mdi-amazon:before {
160
- content: "\f124";
161
- }
162
-
163
- .mdi-amazon-clouddrive:before {
164
- content: "\f125";
165
- }
166
-
167
- .mdi-ambulance:before {
168
- content: "\f126";
169
- }
170
-
171
- .mdi-android:before {
172
- content: "\f127";
173
- }
174
-
175
- .mdi-android-debug-bridge:before {
176
- content: "\f128";
177
- }
178
-
179
- .mdi-android-studio:before {
180
- content: "\f129";
181
- }
182
-
183
- .mdi-apple:before {
184
- content: "\f12a";
185
- }
186
-
187
- .mdi-apple-finder:before {
188
- content: "\f12b";
189
- }
190
-
191
- .mdi-apple-ios:before {
192
- content: "\f12c";
193
- }
194
-
195
- .mdi-apple-mobileme:before {
196
- content: "\f12d";
197
- }
198
-
199
- .mdi-apple-safari:before {
200
- content: "\f12e";
201
- }
202
-
203
- .mdi-appnet:before {
204
- content: "\f12f";
205
- }
206
-
207
- .mdi-apps:before {
208
- content: "\f130";
209
- }
210
-
211
- .mdi-archive:before {
212
- content: "\f131";
213
- }
214
-
215
- .mdi-arrange-bring-forward:before {
216
- content: "\f132";
217
- }
218
-
219
- .mdi-arrange-bring-to-front:before {
220
- content: "\f133";
221
- }
222
-
223
- .mdi-arrange-send-backward:before {
224
- content: "\f134";
225
- }
226
-
227
- .mdi-arrange-send-to-back:before {
228
- content: "\f135";
229
- }
230
-
231
- .mdi-arrow-all:before {
232
- content: "\f136";
233
- }
234
-
235
- .mdi-arrow-bottom-left:before {
236
- content: "\f137";
237
- }
238
-
239
- .mdi-arrow-bottom-right:before {
240
- content: "\f138";
241
- }
242
-
243
- .mdi-arrow-collapse:before {
244
- content: "\f139";
245
- }
246
-
247
- .mdi-arrow-down:before {
248
- content: "\f13a";
249
- }
250
-
251
- .mdi-arrow-down-bold:before {
252
- content: "\f13b";
253
- }
254
-
255
- .mdi-arrow-down-bold-circle:before {
256
- content: "\f13c";
257
- }
258
-
259
- .mdi-arrow-down-bold-circle-outline:before {
260
- content: "\f13d";
261
- }
262
-
263
- .mdi-arrow-down-bold-hexagon-outline:before {
264
- content: "\f13e";
265
- }
266
-
267
- .mdi-arrow-expand:before {
268
- content: "\f13f";
269
- }
270
-
271
- .mdi-arrow-left:before {
272
- content: "\f140";
273
- }
274
-
275
- .mdi-arrow-left-bold:before {
276
- content: "\f141";
277
- }
278
-
279
- .mdi-arrow-left-bold-circle:before {
280
- content: "\f142";
281
- }
282
-
283
- .mdi-arrow-left-bold-circle-outline:before {
284
- content: "\f143";
285
- }
286
-
287
- .mdi-arrow-left-bold-hexagon-outline:before {
288
- content: "\f144";
289
- }
290
-
291
- .mdi-arrow-right:before {
292
- content: "\f145";
293
- }
294
-
295
- .mdi-arrow-right-bold:before {
296
- content: "\f146";
297
- }
298
-
299
- .mdi-arrow-right-bold-circle:before {
300
- content: "\f147";
301
- }
302
-
303
- .mdi-arrow-right-bold-circle-outline:before {
304
- content: "\f148";
305
- }
306
-
307
- .mdi-arrow-right-bold-hexagon-outline:before {
308
- content: "\f149";
309
- }
310
-
311
- .mdi-arrow-top-left:before {
312
- content: "\f14a";
313
- }
314
-
315
- .mdi-arrow-top-right:before {
316
- content: "\f14b";
317
- }
318
-
319
- .mdi-arrow-up:before {
320
- content: "\f14c";
321
- }
322
-
323
- .mdi-arrow-up-bold:before {
324
- content: "\f14d";
325
- }
326
-
327
- .mdi-arrow-up-bold-circle:before {
328
- content: "\f14e";
329
- }
330
-
331
- .mdi-arrow-up-bold-circle-outline:before {
332
- content: "\f14f";
333
- }
334
-
335
- .mdi-arrow-up-bold-hexagon-outline:before {
336
- content: "\f150";
337
- }
338
-
339
- .mdi-at:before {
340
- content: "\f151";
341
- }
342
-
343
- .mdi-attachment:before {
344
- content: "\f152";
345
- }
346
-
347
- .mdi-audiobook:before {
348
- content: "\f153";
349
- }
350
-
351
- .mdi-auto-fix:before {
352
- content: "\f154";
353
- }
354
-
355
- .mdi-auto-upload:before {
356
- content: "\f155";
357
- }
358
-
359
- .mdi-baby:before {
360
- content: "\f156";
361
- }
362
-
363
- .mdi-backburger:before {
364
- content: "\f157";
365
- }
366
-
367
- .mdi-backup-restore:before {
368
- content: "\f158";
369
- }
370
-
371
- .mdi-bank:before {
372
- content: "\f159";
373
- }
374
-
375
- .mdi-barcode:before {
376
- content: "\f15a";
377
- }
378
-
379
- .mdi-barley:before {
380
- content: "\f15b";
381
- }
382
-
383
- .mdi-barrel:before {
384
- content: "\f15c";
385
- }
386
-
387
- .mdi-basecamp:before {
388
- content: "\f15d";
389
- }
390
-
391
- .mdi-basket:before {
392
- content: "\f15e";
393
- }
394
-
395
- .mdi-basket-fill:before {
396
- content: "\f15f";
397
- }
398
-
399
- .mdi-basket-unfill:before {
400
- content: "\f160";
401
- }
402
-
403
- .mdi-battery:before {
404
- content: "\f161";
405
- }
406
-
407
- .mdi-battery-10:before {
408
- content: "\f162";
409
- }
410
-
411
- .mdi-battery-20:before {
412
- content: "\f163";
413
- }
414
-
415
- .mdi-battery-30:before {
416
- content: "\f164";
417
- }
418
-
419
- .mdi-battery-40:before {
420
- content: "\f165";
421
- }
422
-
423
- .mdi-battery-50:before {
424
- content: "\f166";
425
- }
426
-
427
- .mdi-battery-60:before {
428
- content: "\f167";
429
- }
430
-
431
- .mdi-battery-70:before {
432
- content: "\f168";
433
- }
434
-
435
- .mdi-battery-80:before {
436
- content: "\f169";
437
- }
438
-
439
- .mdi-battery-90:before {
440
- content: "\f16a";
441
- }
442
-
443
- .mdi-battery-alert:before {
444
- content: "\f16b";
445
- }
446
-
447
- .mdi-battery-charging-100:before {
448
- content: "\f16c";
449
- }
450
-
451
- .mdi-battery-charging-20:before {
452
- content: "\f16d";
453
- }
454
-
455
- .mdi-battery-charging-30:before {
456
- content: "\f16e";
457
- }
458
-
459
- .mdi-battery-charging-40:before {
460
- content: "\f16f";
461
- }
462
-
463
- .mdi-battery-charging-60:before {
464
- content: "\f170";
465
- }
466
-
467
- .mdi-battery-charging-80:before {
468
- content: "\f171";
469
- }
470
-
471
- .mdi-battery-charging-90:before {
472
- content: "\f172";
473
- }
474
-
475
- .mdi-battery-minus:before {
476
- content: "\f173";
477
- }
478
-
479
- .mdi-battery-negative:before {
480
- content: "\f174";
481
- }
482
-
483
- .mdi-battery-outline:before {
484
- content: "\f175";
485
- }
486
-
487
- .mdi-battery-plus:before {
488
- content: "\f176";
489
- }
490
-
491
- .mdi-battery-positive:before {
492
- content: "\f177";
493
- }
494
-
495
- .mdi-battery-unknown:before {
496
- content: "\f178";
497
- }
498
-
499
- .mdi-beach:before {
500
- content: "\f179";
501
- }
502
-
503
- .mdi-beaker:before {
504
- content: "\f17a";
505
- }
506
-
507
- .mdi-beaker-empty:before {
508
- content: "\f17b";
509
- }
510
-
511
- .mdi-beaker-empty-outline:before {
512
- content: "\f17c";
513
- }
514
-
515
- .mdi-beaker-outline:before {
516
- content: "\f17d";
517
- }
518
-
519
- .mdi-beats:before {
520
- content: "\f17e";
521
- }
522
-
523
- .mdi-beer:before {
524
- content: "\f17f";
525
- }
526
-
527
- .mdi-behance:before {
528
- content: "\f180";
529
- }
530
-
531
- .mdi-bell:before {
532
- content: "\f181";
533
- }
534
-
535
- .mdi-bell-off:before {
536
- content: "\f182";
537
- }
538
-
539
- .mdi-bell-outline:before {
540
- content: "\f183";
541
- }
542
-
543
- .mdi-bell-ring:before {
544
- content: "\f184";
545
- }
546
-
547
- .mdi-bell-ring-outline:before {
548
- content: "\f185";
549
- }
550
-
551
- .mdi-bell-sleep:before {
552
- content: "\f186";
553
- }
554
-
555
- .mdi-beta:before {
556
- content: "\f187";
557
- }
558
-
559
- .mdi-bike:before {
560
- content: "\f188";
561
- }
562
-
563
- .mdi-bing:before {
564
- content: "\f189";
565
- }
566
-
567
- .mdi-binoculars:before {
568
- content: "\f18a";
569
- }
570
-
571
- .mdi-bio:before {
572
- content: "\f18b";
573
- }
574
-
575
- .mdi-biohazard:before {
576
- content: "\f18c";
577
- }
578
-
579
- .mdi-bitbucket:before {
580
- content: "\f18d";
581
- }
582
-
583
- .mdi-black-mesa:before {
584
- content: "\f18e";
585
- }
586
-
587
- .mdi-blackberry:before {
588
- content: "\f18f";
589
- }
590
-
591
- .mdi-blinds:before {
592
- content: "\f190";
593
- }
594
-
595
- .mdi-block-helper:before {
596
- content: "\f191";
597
- }
598
-
599
- .mdi-blogger:before {
600
- content: "\f192";
601
- }
602
-
603
- .mdi-bluetooth:before {
604
- content: "\f193";
605
- }
606
-
607
- .mdi-bluetooth-audio:before {
608
- content: "\f194";
609
- }
610
-
611
- .mdi-bluetooth-connect:before {
612
- content: "\f195";
613
- }
614
-
615
- .mdi-bluetooth-settings:before {
616
- content: "\f196";
617
- }
618
-
619
- .mdi-bluetooth-transfer:before {
620
- content: "\f197";
621
- }
622
-
623
- .mdi-blur:before {
624
- content: "\f198";
625
- }
626
-
627
- .mdi-blur-linear:before {
628
- content: "\f199";
629
- }
630
-
631
- .mdi-blur-off:before {
632
- content: "\f19a";
633
- }
634
-
635
- .mdi-blur-radial:before {
636
- content: "\f19b";
637
- }
638
-
639
- .mdi-bone:before {
640
- content: "\f19c";
641
- }
642
-
643
- .mdi-book:before {
644
- content: "\f19d";
645
- }
646
-
647
- .mdi-book-multiple:before {
648
- content: "\f19e";
649
- }
650
-
651
- .mdi-book-multiple-variant:before {
652
- content: "\f19f";
653
- }
654
-
655
- .mdi-book-open:before {
656
- content: "\f1a0";
657
- }
658
-
659
- .mdi-book-variant:before {
660
- content: "\f1a1";
661
- }
662
-
663
- .mdi-bookmark:before {
664
- content: "\f1a2";
665
- }
666
-
667
- .mdi-bookmark-check:before {
668
- content: "\f1a3";
669
- }
670
-
671
- .mdi-bookmark-music:before {
672
- content: "\f1a4";
673
- }
674
-
675
- .mdi-bookmark-outline:before {
676
- content: "\f1a5";
677
- }
678
-
679
- .mdi-bookmark-outline-plus:before {
680
- content: "\f1a6";
681
- }
682
-
683
- .mdi-bookmark-plus:before {
684
- content: "\f1a7";
685
- }
686
-
687
- .mdi-bookmark-remove:before {
688
- content: "\f1a8";
689
- }
690
-
691
- .mdi-border-all:before {
692
- content: "\f1a9";
693
- }
694
-
695
- .mdi-border-bottom:before {
696
- content: "\f1aa";
697
- }
698
-
699
- .mdi-border-color:before {
700
- content: "\f1ab";
701
- }
702
-
703
- .mdi-border-horizontal:before {
704
- content: "\f1ac";
705
- }
706
-
707
- .mdi-border-inside:before {
708
- content: "\f1ad";
709
- }
710
-
711
- .mdi-border-left:before {
712
- content: "\f1ae";
713
- }
714
-
715
- .mdi-border-none:before {
716
- content: "\f1af";
717
- }
718
-
719
- .mdi-border-outside:before {
720
- content: "\f1b0";
721
- }
722
-
723
- .mdi-border-right:before {
724
- content: "\f1b1";
725
- }
726
-
727
- .mdi-border-top:before {
728
- content: "\f1b2";
729
- }
730
-
731
- .mdi-border-vertical:before {
732
- content: "\f1b3";
733
- }
734
-
735
- .mdi-bowling:before {
736
- content: "\f1b4";
737
- }
738
-
739
- .mdi-box:before {
740
- content: "\f1b5";
741
- }
742
-
743
- .mdi-briefcase:before {
744
- content: "\f1b6";
745
- }
746
-
747
- .mdi-briefcase-check:before {
748
- content: "\f1b7";
749
- }
750
-
751
- .mdi-briefcase-download:before {
752
- content: "\f1b8";
753
- }
754
-
755
- .mdi-briefcase-upload:before {
756
- content: "\f1b9";
757
- }
758
-
759
- .mdi-brightness-1:before {
760
- content: "\f1ba";
761
- }
762
-
763
- .mdi-brightness-2:before {
764
- content: "\f1bb";
765
- }
766
-
767
- .mdi-brightness-3:before {
768
- content: "\f1bc";
769
- }
770
-
771
- .mdi-brightness-4:before {
772
- content: "\f1bd";
773
- }
774
-
775
- .mdi-brightness-5:before {
776
- content: "\f1be";
777
- }
778
-
779
- .mdi-brightness-6:before {
780
- content: "\f1bf";
781
- }
782
-
783
- .mdi-brightness-7:before {
784
- content: "\f1c0";
785
- }
786
-
787
- .mdi-brightness-auto:before {
788
- content: "\f1c1";
789
- }
790
-
791
- .mdi-broom:before {
792
- content: "\f1c2";
793
- }
794
-
795
- .mdi-brush:before {
796
- content: "\f1c3";
797
- }
798
-
799
- .mdi-bug:before {
800
- content: "\f1c4";
801
- }
802
-
803
- .mdi-bulletin-board:before {
804
- content: "\f1c5";
805
- }
806
-
807
- .mdi-bullhorn:before {
808
- content: "\f1c6";
809
- }
810
-
811
- .mdi-bus:before {
812
- content: "\f1c7";
813
- }
814
-
815
- .mdi-cake:before {
816
- content: "\f1c8";
817
- }
818
-
819
- .mdi-cake-variant:before {
820
- content: "\f1c9";
821
- }
822
-
823
- .mdi-calculator:before {
824
- content: "\f1ca";
825
- }
826
-
827
- .mdi-calendar:before {
828
- content: "\f1cb";
829
- }
830
-
831
- .mdi-calendar-blank:before {
832
- content: "\f1cc";
833
- }
834
-
835
- .mdi-calendar-check:before {
836
- content: "\f1cd";
837
- }
838
-
839
- .mdi-calendar-clock:before {
840
- content: "\f1ce";
841
- }
842
-
843
- .mdi-calendar-multiple:before {
844
- content: "\f1cf";
845
- }
846
-
847
- .mdi-calendar-multiple-check:before {
848
- content: "\f1d0";
849
- }
850
-
851
- .mdi-calendar-plus:before {
852
- content: "\f1d1";
853
- }
854
-
855
- .mdi-calendar-remove:before {
856
- content: "\f1d2";
857
- }
858
-
859
- .mdi-calendar-text:before {
860
- content: "\f1d3";
861
- }
862
-
863
- .mdi-calendar-today:before {
864
- content: "\f1d4";
865
- }
866
-
867
- .mdi-camcorder:before {
868
- content: "\f1d5";
869
- }
870
-
871
- .mdi-camcorder-box:before {
872
- content: "\f1d6";
873
- }
874
-
875
- .mdi-camcorder-box-off:before {
876
- content: "\f1d7";
877
- }
878
-
879
- .mdi-camcorder-off:before {
880
- content: "\f1d8";
881
- }
882
-
883
- .mdi-camera:before {
884
- content: "\f1d9";
885
- }
886
-
887
- .mdi-camera-front:before {
888
- content: "\f1da";
889
- }
890
-
891
- .mdi-camera-front-variant:before {
892
- content: "\f1db";
893
- }
894
-
895
- .mdi-camera-iris:before {
896
- content: "\f1dc";
897
- }
898
-
899
- .mdi-camera-party-mode:before {
900
- content: "\f1dd";
901
- }
902
-
903
- .mdi-camera-rear:before {
904
- content: "\f1de";
905
- }
906
-
907
- .mdi-camera-rear-variant:before {
908
- content: "\f1df";
909
- }
910
-
911
- .mdi-camera-switch:before {
912
- content: "\f1e0";
913
- }
914
-
915
- .mdi-camera-timer:before {
916
- content: "\f1e1";
917
- }
918
-
919
- .mdi-candycane:before {
920
- content: "\f1e2";
921
- }
922
-
923
- .mdi-car:before {
924
- content: "\f1e3";
925
- }
926
-
927
- .mdi-car-wash:before {
928
- content: "\f1e4";
929
- }
930
-
931
- .mdi-carrot:before {
932
- content: "\f1e5";
933
- }
934
-
935
- .mdi-cart:before {
936
- content: "\f1e6";
937
- }
938
-
939
- .mdi-cart-outline:before {
940
- content: "\f1e7";
941
- }
942
-
943
- .mdi-cash:before {
944
- content: "\f1e8";
945
- }
946
-
947
- .mdi-cash-100:before {
948
- content: "\f1e9";
949
- }
950
-
951
- .mdi-cash-multiple:before {
952
- content: "\f1ea";
953
- }
954
-
955
- .mdi-cash-usd:before {
956
- content: "\f1eb";
957
- }
958
-
959
- .mdi-cast:before {
960
- content: "\f1ec";
961
- }
962
-
963
- .mdi-cast-connected:before {
964
- content: "\f1ed";
965
- }
966
-
967
- .mdi-castle:before {
968
- content: "\f1ee";
969
- }
970
-
971
- .mdi-cat:before {
972
- content: "\f1ef";
973
- }
974
-
975
- .mdi-cellphone:before {
976
- content: "\f1f0";
977
- }
978
-
979
- .mdi-cellphone-android:before {
980
- content: "\f1f1";
981
- }
982
-
983
- .mdi-cellphone-dock:before {
984
- content: "\f1f2";
985
- }
986
-
987
- .mdi-cellphone-iphone:before {
988
- content: "\f1f3";
989
- }
990
-
991
- .mdi-cellphone-link:before {
992
- content: "\f1f4";
993
- }
994
-
995
- .mdi-cellphone-link-off:before {
996
- content: "\f1f5";
997
- }
998
-
999
- .mdi-cellphone-settings:before {
1000
- content: "\f1f6";
1001
- }
1002
-
1003
- .mdi-chair-school:before {
1004
- content: "\f1f7";
1005
- }
1006
-
1007
- .mdi-chart-arc:before {
1008
- content: "\f1f8";
1009
- }
1010
-
1011
- .mdi-chart-areaspline:before {
1012
- content: "\f1f9";
1013
- }
1014
-
1015
- .mdi-chart-bar:before {
1016
- content: "\f1fa";
1017
- }
1018
-
1019
- .mdi-chart-histogram:before {
1020
- content: "\f1fb";
1021
- }
1022
-
1023
- .mdi-chart-line:before {
1024
- content: "\f1fc";
1025
- }
1026
-
1027
- .mdi-chart-pie:before {
1028
- content: "\f1fd";
1029
- }
1030
-
1031
- .mdi-check:before {
1032
- content: "\f1fe";
1033
- }
1034
-
1035
- .mdi-check-all:before {
1036
- content: "\f1ff";
1037
- }
1038
-
1039
- .mdi-checkbox-blank:before {
1040
- content: "\f200";
1041
- }
1042
-
1043
- .mdi-checkbox-blank-circle:before {
1044
- content: "\f201";
1045
- }
1046
-
1047
- .mdi-checkbox-blank-circle-outline:before {
1048
- content: "\f202";
1049
- }
1050
-
1051
- .mdi-checkbox-blank-outline:before {
1052
- content: "\f203";
1053
- }
1054
-
1055
- .mdi-checkbox-marked:before {
1056
- content: "\f204";
1057
- }
1058
-
1059
- .mdi-checkbox-marked-circle:before {
1060
- content: "\f205";
1061
- }
1062
-
1063
- .mdi-checkbox-marked-circle-outline:before {
1064
- content: "\f206";
1065
- }
1066
-
1067
- .mdi-checkbox-marked-outline:before {
1068
- content: "\f207";
1069
- }
1070
-
1071
- .mdi-checkbox-multiple-blank:before {
1072
- content: "\f208";
1073
- }
1074
-
1075
- .mdi-checkbox-multiple-blank-outline:before {
1076
- content: "\f209";
1077
- }
1078
-
1079
- .mdi-checkbox-multiple-marked:before {
1080
- content: "\f20a";
1081
- }
1082
-
1083
- .mdi-checkbox-multiple-marked-outline:before {
1084
- content: "\f20b";
1085
- }
1086
-
1087
- .mdi-checkerboard:before {
1088
- content: "\f20c";
1089
- }
1090
-
1091
- .mdi-chevron-double-down:before {
1092
- content: "\f20d";
1093
- }
1094
-
1095
- .mdi-chevron-double-left:before {
1096
- content: "\f20e";
1097
- }
1098
-
1099
- .mdi-chevron-double-right:before {
1100
- content: "\f20f";
1101
- }
1102
-
1103
- .mdi-chevron-double-up:before {
1104
- content: "\f210";
1105
- }
1106
-
1107
- .mdi-chevron-down:before {
1108
- content: "\f211";
1109
- }
1110
-
1111
- .mdi-chevron-left:before {
1112
- content: "\f212";
1113
- }
1114
-
1115
- .mdi-chevron-right:before {
1116
- content: "\f213";
1117
- }
1118
-
1119
- .mdi-chevron-up:before {
1120
- content: "\f214";
1121
- }
1122
-
1123
- .mdi-church:before {
1124
- content: "\f215";
1125
- }
1126
-
1127
- .mdi-cisco-webex:before {
1128
- content: "\f216";
1129
- }
1130
-
1131
- .mdi-city:before {
1132
- content: "\f217";
1133
- }
1134
-
1135
- .mdi-clipboard:before {
1136
- content: "\f218";
1137
- }
1138
-
1139
- .mdi-clipboard-account:before {
1140
- content: "\f219";
1141
- }
1142
-
1143
- .mdi-clipboard-alert:before {
1144
- content: "\f21a";
1145
- }
1146
-
1147
- .mdi-clipboard-arrow-down:before {
1148
- content: "\f21b";
1149
- }
1150
-
1151
- .mdi-clipboard-arrow-left:before {
1152
- content: "\f21c";
1153
- }
1154
-
1155
- .mdi-clipboard-check:before {
1156
- content: "\f21d";
1157
- }
1158
-
1159
- .mdi-clipboard-outline:before {
1160
- content: "\f21e";
1161
- }
1162
-
1163
- .mdi-clipboard-text:before {
1164
- content: "\f21f";
1165
- }
1166
-
1167
- .mdi-clippy:before {
1168
- content: "\f220";
1169
- }
1170
-
1171
- .mdi-clock:before {
1172
- content: "\f221";
1173
- }
1174
-
1175
- .mdi-clock-fast:before {
1176
- content: "\f222";
1177
- }
1178
-
1179
- .mdi-close:before {
1180
- content: "\f223";
1181
- }
1182
-
1183
- .mdi-close-box:before {
1184
- content: "\f224";
1185
- }
1186
-
1187
- .mdi-close-box-outline:before {
1188
- content: "\f225";
1189
- }
1190
-
1191
- .mdi-close-circle:before {
1192
- content: "\f226";
1193
- }
1194
-
1195
- .mdi-close-circle-outline:before {
1196
- content: "\f227";
1197
- }
1198
-
1199
- .mdi-close-network:before {
1200
- content: "\f228";
1201
- }
1202
-
1203
- .mdi-closed-caption:before {
1204
- content: "\f229";
1205
- }
1206
-
1207
- .mdi-cloud:before {
1208
- content: "\f22a";
1209
- }
1210
-
1211
- .mdi-cloud-check:before {
1212
- content: "\f22b";
1213
- }
1214
-
1215
- .mdi-cloud-circle:before {
1216
- content: "\f22c";
1217
- }
1218
-
1219
- .mdi-cloud-download:before {
1220
- content: "\f22d";
1221
- }
1222
-
1223
- .mdi-cloud-outline:before {
1224
- content: "\f22e";
1225
- }
1226
-
1227
- .mdi-cloud-outline-off:before {
1228
- content: "\f22f";
1229
- }
1230
-
1231
- .mdi-cloud-upload:before {
1232
- content: "\f230";
1233
- }
1234
-
1235
- .mdi-code-array:before {
1236
- content: "\f231";
1237
- }
1238
-
1239
- .mdi-code-braces:before {
1240
- content: "\f232";
1241
- }
1242
-
1243
- .mdi-code-equal:before {
1244
- content: "\f233";
1245
- }
1246
-
1247
- .mdi-code-greater-than:before {
1248
- content: "\f234";
1249
- }
1250
-
1251
- .mdi-code-less-than:before {
1252
- content: "\f235";
1253
- }
1254
-
1255
- .mdi-code-less-than-or-equal:before {
1256
- content: "\f236";
1257
- }
1258
-
1259
- .mdi-code-not-equal:before {
1260
- content: "\f237";
1261
- }
1262
-
1263
- .mdi-code-not-equal-variant:before {
1264
- content: "\f238";
1265
- }
1266
-
1267
- .mdi-code-string:before {
1268
- content: "\f239";
1269
- }
1270
-
1271
- .mdi-code-tags:before {
1272
- content: "\f23a";
1273
- }
1274
-
1275
- .mdi-codepen:before {
1276
- content: "\f23b";
1277
- }
1278
-
1279
- .mdi-coffee:before {
1280
- content: "\f23c";
1281
- }
1282
-
1283
- .mdi-coffee-to-go:before {
1284
- content: "\f23d";
1285
- }
1286
-
1287
- .mdi-coin:before {
1288
- content: "\f23e";
1289
- }
1290
-
1291
- .mdi-color-helper:before {
1292
- content: "\f23f";
1293
- }
1294
-
1295
- .mdi-comment:before {
1296
- content: "\f240";
1297
- }
1298
-
1299
- .mdi-comment-account:before {
1300
- content: "\f241";
1301
- }
1302
-
1303
- .mdi-comment-account-outline:before {
1304
- content: "\f242";
1305
- }
1306
-
1307
- .mdi-comment-alert:before {
1308
- content: "\f243";
1309
- }
1310
-
1311
- .mdi-comment-alert-outline:before {
1312
- content: "\f244";
1313
- }
1314
-
1315
- .mdi-comment-check:before {
1316
- content: "\f245";
1317
- }
1318
-
1319
- .mdi-comment-check-outline:before {
1320
- content: "\f246";
1321
- }
1322
-
1323
- .mdi-comment-multiple-outline:before {
1324
- content: "\f247";
1325
- }
1326
-
1327
- .mdi-comment-outline:before {
1328
- content: "\f248";
1329
- }
1330
-
1331
- .mdi-comment-plus-outline:before {
1332
- content: "\f249";
1333
- }
1334
-
1335
- .mdi-comment-processing:before {
1336
- content: "\f24a";
1337
- }
1338
-
1339
- .mdi-comment-processing-outline:before {
1340
- content: "\f24b";
1341
- }
1342
-
1343
- .mdi-comment-remove-outline:before {
1344
- content: "\f24c";
1345
- }
1346
-
1347
- .mdi-comment-text:before {
1348
- content: "\f24d";
1349
- }
1350
-
1351
- .mdi-comment-text-outline:before {
1352
- content: "\f24e";
1353
- }
1354
-
1355
- .mdi-compare:before {
1356
- content: "\f24f";
1357
- }
1358
-
1359
- .mdi-compass:before {
1360
- content: "\f250";
1361
- }
1362
-
1363
- .mdi-compass-outline:before {
1364
- content: "\f251";
1365
- }
1366
-
1367
- .mdi-console:before {
1368
- content: "\f252";
1369
- }
1370
-
1371
- .mdi-content-copy:before {
1372
- content: "\f253";
1373
- }
1374
-
1375
- .mdi-content-cut:before {
1376
- content: "\f254";
1377
- }
1378
-
1379
- .mdi-content-duplicate:before {
1380
- content: "\f255";
1381
- }
1382
-
1383
- .mdi-content-paste:before {
1384
- content: "\f256";
1385
- }
1386
-
1387
- .mdi-content-save:before {
1388
- content: "\f257";
1389
- }
1390
-
1391
- .mdi-content-save-all:before {
1392
- content: "\f258";
1393
- }
1394
-
1395
- .mdi-contrast:before {
1396
- content: "\f259";
1397
- }
1398
-
1399
- .mdi-contrast-box:before {
1400
- content: "\f25a";
1401
- }
1402
-
1403
- .mdi-contrast-circle:before {
1404
- content: "\f25b";
1405
- }
1406
-
1407
- .mdi-cow:before {
1408
- content: "\f25c";
1409
- }
1410
-
1411
- .mdi-credit-card:before {
1412
- content: "\f25d";
1413
- }
1414
-
1415
- .mdi-credit-card-multiple:before {
1416
- content: "\f25e";
1417
- }
1418
-
1419
- .mdi-crop:before {
1420
- content: "\f25f";
1421
- }
1422
-
1423
- .mdi-crop-free:before {
1424
- content: "\f260";
1425
- }
1426
-
1427
- .mdi-crop-landscape:before {
1428
- content: "\f261";
1429
- }
1430
-
1431
- .mdi-crop-portrait:before {
1432
- content: "\f262";
1433
- }
1434
-
1435
- .mdi-crop-square:before {
1436
- content: "\f263";
1437
- }
1438
-
1439
- .mdi-crosshairs:before {
1440
- content: "\f264";
1441
- }
1442
-
1443
- .mdi-crosshairs-gps:before {
1444
- content: "\f265";
1445
- }
1446
-
1447
- .mdi-crown:before {
1448
- content: "\f266";
1449
- }
1450
-
1451
- .mdi-cube:before {
1452
- content: "\f267";
1453
- }
1454
-
1455
- .mdi-cube-outline:before {
1456
- content: "\f268";
1457
- }
1458
-
1459
- .mdi-cube-unfolded:before {
1460
- content: "\f269";
1461
- }
1462
-
1463
- .mdi-cup:before {
1464
- content: "\f26a";
1465
- }
1466
-
1467
- .mdi-cup-water:before {
1468
- content: "\f26b";
1469
- }
1470
-
1471
- .mdi-currency-btc:before {
1472
- content: "\f26c";
1473
- }
1474
-
1475
- .mdi-currency-eur:before {
1476
- content: "\f26d";
1477
- }
1478
-
1479
- .mdi-currency-gbp:before {
1480
- content: "\f26e";
1481
- }
1482
-
1483
- .mdi-currency-inr:before {
1484
- content: "\f26f";
1485
- }
1486
-
1487
- .mdi-currency-rub:before {
1488
- content: "\f270";
1489
- }
1490
-
1491
- .mdi-currency-try:before {
1492
- content: "\f271";
1493
- }
1494
-
1495
- .mdi-currency-usd:before {
1496
- content: "\f272";
1497
- }
1498
-
1499
- .mdi-cursor-default:before {
1500
- content: "\f273";
1501
- }
1502
-
1503
- .mdi-cursor-default-outline:before {
1504
- content: "\f274";
1505
- }
1506
-
1507
- .mdi-cursor-move:before {
1508
- content: "\f275";
1509
- }
1510
-
1511
- .mdi-cursor-pointer:before {
1512
- content: "\f276";
1513
- }
1514
-
1515
- .mdi-database:before {
1516
- content: "\f277";
1517
- }
1518
-
1519
- .mdi-database-minus:before {
1520
- content: "\f278";
1521
- }
1522
-
1523
- .mdi-database-outline:before {
1524
- content: "\f279";
1525
- }
1526
-
1527
- .mdi-database-plus:before {
1528
- content: "\f27a";
1529
- }
1530
-
1531
- .mdi-debug-step-into:before {
1532
- content: "\f27b";
1533
- }
1534
-
1535
- .mdi-debug-step-out:before {
1536
- content: "\f27c";
1537
- }
1538
-
1539
- .mdi-debug-step-over:before {
1540
- content: "\f27d";
1541
- }
1542
-
1543
- .mdi-decimal-decrease:before {
1544
- content: "\f27e";
1545
- }
1546
-
1547
- .mdi-decimal-increase:before {
1548
- content: "\f27f";
1549
- }
1550
-
1551
- .mdi-delete:before {
1552
- content: "\f280";
1553
- }
1554
-
1555
- .mdi-delete-variant:before {
1556
- content: "\f281";
1557
- }
1558
-
1559
- .mdi-deskphone:before {
1560
- content: "\f282";
1561
- }
1562
-
1563
- .mdi-desktop-mac:before {
1564
- content: "\f283";
1565
- }
1566
-
1567
- .mdi-desktop-tower:before {
1568
- content: "\f284";
1569
- }
1570
-
1571
- .mdi-details:before {
1572
- content: "\f285";
1573
- }
1574
-
1575
- .mdi-deviantart:before {
1576
- content: "\f286";
1577
- }
1578
-
1579
- .mdi-diamond:before {
1580
- content: "\f287";
1581
- }
1582
-
1583
- .mdi-dice:before {
1584
- content: "\f288";
1585
- }
1586
-
1587
- .mdi-dice-1:before {
1588
- content: "\f289";
1589
- }
1590
-
1591
- .mdi-dice-2:before {
1592
- content: "\f28a";
1593
- }
1594
-
1595
- .mdi-dice-3:before {
1596
- content: "\f28b";
1597
- }
1598
-
1599
- .mdi-dice-4:before {
1600
- content: "\f28c";
1601
- }
1602
-
1603
- .mdi-dice-5:before {
1604
- content: "\f28d";
1605
- }
1606
-
1607
- .mdi-dice-6:before {
1608
- content: "\f28e";
1609
- }
1610
-
1611
- .mdi-directions:before {
1612
- content: "\f28f";
1613
- }
1614
-
1615
- .mdi-disk-alert:before {
1616
- content: "\f290";
1617
- }
1618
-
1619
- .mdi-disqus:before {
1620
- content: "\f291";
1621
- }
1622
-
1623
- .mdi-disqus-outline:before {
1624
- content: "\f292";
1625
- }
1626
-
1627
- .mdi-division:before {
1628
- content: "\f293";
1629
- }
1630
-
1631
- .mdi-division-box:before {
1632
- content: "\f294";
1633
- }
1634
-
1635
- .mdi-dns:before {
1636
- content: "\f295";
1637
- }
1638
-
1639
- .mdi-domain:before {
1640
- content: "\f296";
1641
- }
1642
-
1643
- .mdi-dots-horizontal:before {
1644
- content: "\f297";
1645
- }
1646
-
1647
- .mdi-dots-vertical:before {
1648
- content: "\f298";
1649
- }
1650
-
1651
- .mdi-download:before {
1652
- content: "\f299";
1653
- }
1654
-
1655
- .mdi-drag:before {
1656
- content: "\f29a";
1657
- }
1658
-
1659
- .mdi-drag-horizontal:before {
1660
- content: "\f29b";
1661
- }
1662
-
1663
- .mdi-drag-vertical:before {
1664
- content: "\f29c";
1665
- }
1666
-
1667
- .mdi-drawing:before {
1668
- content: "\f29d";
1669
- }
1670
-
1671
- .mdi-drawing-box:before {
1672
- content: "\f29e";
1673
- }
1674
-
1675
- .mdi-dribbble:before {
1676
- content: "\f29f";
1677
- }
1678
-
1679
- .mdi-dribbble-box:before {
1680
- content: "\f2a0";
1681
- }
1682
-
1683
- .mdi-drone:before {
1684
- content: "\f2a1";
1685
- }
1686
-
1687
- .mdi-dropbox:before {
1688
- content: "\f2a2";
1689
- }
1690
-
1691
- .mdi-drupal:before {
1692
- content: "\f2a3";
1693
- }
1694
-
1695
- .mdi-duck:before {
1696
- content: "\f2a4";
1697
- }
1698
-
1699
- .mdi-dumbbell:before {
1700
- content: "\f2a5";
1701
- }
1702
-
1703
- .mdi-earth:before {
1704
- content: "\f2a6";
1705
- }
1706
-
1707
- .mdi-earth-off:before {
1708
- content: "\f2a7";
1709
- }
1710
-
1711
- .mdi-edge:before {
1712
- content: "\f2a8";
1713
- }
1714
-
1715
- .mdi-eject:before {
1716
- content: "\f2a9";
1717
- }
1718
-
1719
- .mdi-elevation-decline:before {
1720
- content: "\f2aa";
1721
- }
1722
-
1723
- .mdi-elevation-rise:before {
1724
- content: "\f2ab";
1725
- }
1726
-
1727
- .mdi-elevator:before {
1728
- content: "\f2ac";
1729
- }
1730
-
1731
- .mdi-email:before {
1732
- content: "\f2ad";
1733
- }
1734
-
1735
- .mdi-email-open:before {
1736
- content: "\f2ae";
1737
- }
1738
-
1739
- .mdi-email-outline:before {
1740
- content: "\f2af";
1741
- }
1742
-
1743
- .mdi-email-secure:before {
1744
- content: "\f2b0";
1745
- }
1746
-
1747
- .mdi-emoticon:before {
1748
- content: "\f2b1";
1749
- }
1750
-
1751
- .mdi-emoticon-cool:before {
1752
- content: "\f2b2";
1753
- }
1754
-
1755
- .mdi-emoticon-devil:before {
1756
- content: "\f2b3";
1757
- }
1758
-
1759
- .mdi-emoticon-happy:before {
1760
- content: "\f2b4";
1761
- }
1762
-
1763
- .mdi-emoticon-neutral:before {
1764
- content: "\f2b5";
1765
- }
1766
-
1767
- .mdi-emoticon-poop:before {
1768
- content: "\f2b6";
1769
- }
1770
-
1771
- .mdi-emoticon-sad:before {
1772
- content: "\f2b7";
1773
- }
1774
-
1775
- .mdi-emoticon-tongue:before {
1776
- content: "\f2b8";
1777
- }
1778
-
1779
- .mdi-engine:before {
1780
- content: "\f2b9";
1781
- }
1782
-
1783
- .mdi-engine-outline:before {
1784
- content: "\f2ba";
1785
- }
1786
-
1787
- .mdi-equal:before {
1788
- content: "\f2bb";
1789
- }
1790
-
1791
- .mdi-equal-box:before {
1792
- content: "\f2bc";
1793
- }
1794
-
1795
- .mdi-eraser:before {
1796
- content: "\f2bd";
1797
- }
1798
-
1799
- .mdi-escalator:before {
1800
- content: "\f2be";
1801
- }
1802
-
1803
- .mdi-etsy:before {
1804
- content: "\f2bf";
1805
- }
1806
-
1807
- .mdi-evernote:before {
1808
- content: "\f2c0";
1809
- }
1810
-
1811
- .mdi-exclamation:before {
1812
- content: "\f2c1";
1813
- }
1814
-
1815
- .mdi-exit-to-app:before {
1816
- content: "\f2c2";
1817
- }
1818
-
1819
- .mdi-export:before {
1820
- content: "\f2c3";
1821
- }
1822
-
1823
- .mdi-eye:before {
1824
- content: "\f2c4";
1825
- }
1826
-
1827
- .mdi-eye-off:before {
1828
- content: "\f2c5";
1829
- }
1830
-
1831
- .mdi-eyedropper:before {
1832
- content: "\f2c6";
1833
- }
1834
-
1835
- .mdi-eyedropper-variant:before {
1836
- content: "\f2c7";
1837
- }
1838
-
1839
- .mdi-facebook:before {
1840
- content: "\f2c8";
1841
- }
1842
-
1843
- .mdi-facebook-box:before {
1844
- content: "\f2c9";
1845
- }
1846
-
1847
- .mdi-facebook-messenger:before {
1848
- content: "\f2ca";
1849
- }
1850
-
1851
- .mdi-factory:before {
1852
- content: "\f2cb";
1853
- }
1854
-
1855
- .mdi-fan:before {
1856
- content: "\f2cc";
1857
- }
1858
-
1859
- .mdi-fast-forward:before {
1860
- content: "\f2cd";
1861
- }
1862
-
1863
- .mdi-ferry:before {
1864
- content: "\f2ce";
1865
- }
1866
-
1867
- .mdi-file:before {
1868
- content: "\f2cf";
1869
- }
1870
-
1871
- .mdi-file-cloud:before {
1872
- content: "\f2d0";
1873
- }
1874
-
1875
- .mdi-file-delimited:before {
1876
- content: "\f2d1";
1877
- }
1878
-
1879
- .mdi-file-document:before {
1880
- content: "\f2d2";
1881
- }
1882
-
1883
- .mdi-file-document-box:before {
1884
- content: "\f2d3";
1885
- }
1886
-
1887
- .mdi-file-excel:before {
1888
- content: "\f2d4";
1889
- }
1890
-
1891
- .mdi-file-excel-box:before {
1892
- content: "\f2d5";
1893
- }
1894
-
1895
- .mdi-file-find:before {
1896
- content: "\f2d6";
1897
- }
1898
-
1899
- .mdi-file-image:before {
1900
- content: "\f2d7";
1901
- }
1902
-
1903
- .mdi-file-image-box:before {
1904
- content: "\f2d8";
1905
- }
1906
-
1907
- .mdi-file-multiple:before {
1908
- content: "\f2d9";
1909
- }
1910
-
1911
- .mdi-file-music:before {
1912
- content: "\f2da";
1913
- }
1914
-
1915
- .mdi-file-outline:before {
1916
- content: "\f2db";
1917
- }
1918
-
1919
- .mdi-file-pdf:before {
1920
- content: "\f2dc";
1921
- }
1922
-
1923
- .mdi-file-pdf-box:before {
1924
- content: "\f2dd";
1925
- }
1926
-
1927
- .mdi-file-powerpoint:before {
1928
- content: "\f2de";
1929
- }
1930
-
1931
- .mdi-file-powerpoint-box:before {
1932
- content: "\f2df";
1933
- }
1934
-
1935
- .mdi-file-presentation-box:before {
1936
- content: "\f2e0";
1937
- }
1938
-
1939
- .mdi-file-video:before {
1940
- content: "\f2e1";
1941
- }
1942
-
1943
- .mdi-file-word:before {
1944
- content: "\f2e2";
1945
- }
1946
-
1947
- .mdi-file-word-box:before {
1948
- content: "\f2e3";
1949
- }
1950
-
1951
- .mdi-file-xml:before {
1952
- content: "\f2e4";
1953
- }
1954
-
1955
- .mdi-film:before {
1956
- content: "\f2e5";
1957
- }
1958
-
1959
- .mdi-filmstrip:before {
1960
- content: "\f2e6";
1961
- }
1962
-
1963
- .mdi-filmstrip-off:before {
1964
- content: "\f2e7";
1965
- }
1966
-
1967
- .mdi-filter:before {
1968
- content: "\f2e8";
1969
- }
1970
-
1971
- .mdi-filter-outline:before {
1972
- content: "\f2e9";
1973
- }
1974
-
1975
- .mdi-filter-remove:before {
1976
- content: "\f2ea";
1977
- }
1978
-
1979
- .mdi-filter-remove-outline:before {
1980
- content: "\f2eb";
1981
- }
1982
-
1983
- .mdi-filter-variant:before {
1984
- content: "\f2ec";
1985
- }
1986
-
1987
- .mdi-fire:before {
1988
- content: "\f2ed";
1989
- }
1990
-
1991
- .mdi-firefox:before {
1992
- content: "\f2ee";
1993
- }
1994
-
1995
- .mdi-fish:before {
1996
- content: "\f2ef";
1997
- }
1998
-
1999
- .mdi-flag:before {
2000
- content: "\f2f0";
2001
- }
2002
-
2003
- .mdi-flag-checkered:before {
2004
- content: "\f2f1";
2005
- }
2006
-
2007
- .mdi-flag-outline:before {
2008
- content: "\f2f2";
2009
- }
2010
-
2011
- .mdi-flag-outline-variant:before {
2012
- content: "\f2f3";
2013
- }
2014
-
2015
- .mdi-flag-triangle:before {
2016
- content: "\f2f4";
2017
- }
2018
-
2019
- .mdi-flag-variant:before {
2020
- content: "\f2f5";
2021
- }
2022
-
2023
- .mdi-flash:before {
2024
- content: "\f2f6";
2025
- }
2026
-
2027
- .mdi-flash-auto:before {
2028
- content: "\f2f7";
2029
- }
2030
-
2031
- .mdi-flash-off:before {
2032
- content: "\f2f8";
2033
- }
2034
-
2035
- .mdi-flashlight:before {
2036
- content: "\f2f9";
2037
- }
2038
-
2039
- .mdi-flashlight-off:before {
2040
- content: "\f2fa";
2041
- }
2042
-
2043
- .mdi-flattr:before {
2044
- content: "\f2fb";
2045
- }
2046
-
2047
- .mdi-flip-to-back:before {
2048
- content: "\f2fc";
2049
- }
2050
-
2051
- .mdi-flip-to-front:before {
2052
- content: "\f2fd";
2053
- }
2054
-
2055
- .mdi-floppy:before {
2056
- content: "\f2fe";
2057
- }
2058
-
2059
- .mdi-flower:before {
2060
- content: "\f2ff";
2061
- }
2062
-
2063
- .mdi-folder:before {
2064
- content: "\f300";
2065
- }
2066
-
2067
- .mdi-folder-account:before {
2068
- content: "\f301";
2069
- }
2070
-
2071
- .mdi-folder-download:before {
2072
- content: "\f302";
2073
- }
2074
-
2075
- .mdi-folder-google-drive:before {
2076
- content: "\f303";
2077
- }
2078
-
2079
- .mdi-folder-image:before {
2080
- content: "\f304";
2081
- }
2082
-
2083
- .mdi-folder-lock:before {
2084
- content: "\f305";
2085
- }
2086
-
2087
- .mdi-folder-lock-open:before {
2088
- content: "\f306";
2089
- }
2090
-
2091
- .mdi-folder-move:before {
2092
- content: "\f307";
2093
- }
2094
-
2095
- .mdi-folder-multiple:before {
2096
- content: "\f308";
2097
- }
2098
-
2099
- .mdi-folder-multiple-image:before {
2100
- content: "\f309";
2101
- }
2102
-
2103
- .mdi-folder-multiple-outline:before {
2104
- content: "\f30a";
2105
- }
2106
-
2107
- .mdi-folder-outline:before {
2108
- content: "\f30b";
2109
- }
2110
-
2111
- .mdi-folder-plus:before {
2112
- content: "\f30c";
2113
- }
2114
-
2115
- .mdi-folder-remove:before {
2116
- content: "\f30d";
2117
- }
2118
-
2119
- .mdi-folder-upload:before {
2120
- content: "\f30e";
2121
- }
2122
-
2123
- .mdi-food:before {
2124
- content: "\f30f";
2125
- }
2126
-
2127
- .mdi-food-apple:before {
2128
- content: "\f310";
2129
- }
2130
-
2131
- .mdi-food-variant:before {
2132
- content: "\f311";
2133
- }
2134
-
2135
- .mdi-football:before {
2136
- content: "\f312";
2137
- }
2138
-
2139
- .mdi-football-helmet:before {
2140
- content: "\f313";
2141
- }
2142
-
2143
- .mdi-format-align-center:before {
2144
- content: "\f314";
2145
- }
2146
-
2147
- .mdi-format-align-justify:before {
2148
- content: "\f315";
2149
- }
2150
-
2151
- .mdi-format-align-left:before {
2152
- content: "\f316";
2153
- }
2154
-
2155
- .mdi-format-align-right:before {
2156
- content: "\f317";
2157
- }
2158
-
2159
- .mdi-format-bold:before {
2160
- content: "\f318";
2161
- }
2162
-
2163
- .mdi-format-clear:before {
2164
- content: "\f319";
2165
- }
2166
-
2167
- .mdi-format-color-fill:before {
2168
- content: "\f31a";
2169
- }
2170
-
2171
- .mdi-format-float-center:before {
2172
- content: "\f31b";
2173
- }
2174
-
2175
- .mdi-format-float-left:before {
2176
- content: "\f31c";
2177
- }
2178
-
2179
- .mdi-format-float-none:before {
2180
- content: "\f31d";
2181
- }
2182
-
2183
- .mdi-format-float-right:before {
2184
- content: "\f31e";
2185
- }
2186
-
2187
- .mdi-format-header-1:before {
2188
- content: "\f31f";
2189
- }
2190
-
2191
- .mdi-format-header-2:before {
2192
- content: "\f320";
2193
- }
2194
-
2195
- .mdi-format-header-3:before {
2196
- content: "\f321";
2197
- }
2198
-
2199
- .mdi-format-header-4:before {
2200
- content: "\f322";
2201
- }
2202
-
2203
- .mdi-format-header-5:before {
2204
- content: "\f323";
2205
- }
2206
-
2207
- .mdi-format-header-6:before {
2208
- content: "\f324";
2209
- }
2210
-
2211
- .mdi-format-header-decrease:before {
2212
- content: "\f325";
2213
- }
2214
-
2215
- .mdi-format-header-equal:before {
2216
- content: "\f326";
2217
- }
2218
-
2219
- .mdi-format-header-increase:before {
2220
- content: "\f327";
2221
- }
2222
-
2223
- .mdi-format-header-pound:before {
2224
- content: "\f328";
2225
- }
2226
-
2227
- .mdi-format-indent-decrease:before {
2228
- content: "\f329";
2229
- }
2230
-
2231
- .mdi-format-indent-increase:before {
2232
- content: "\f32a";
2233
- }
2234
-
2235
- .mdi-format-italic:before {
2236
- content: "\f32b";
2237
- }
2238
-
2239
- .mdi-format-line-spacing:before {
2240
- content: "\f32c";
2241
- }
2242
-
2243
- .mdi-format-list-bulleted:before {
2244
- content: "\f32d";
2245
- }
2246
-
2247
- .mdi-format-list-numbers:before {
2248
- content: "\f32e";
2249
- }
2250
-
2251
- .mdi-format-paint:before {
2252
- content: "\f32f";
2253
- }
2254
-
2255
- .mdi-format-paragraph:before {
2256
- content: "\f330";
2257
- }
2258
-
2259
- .mdi-format-quote:before {
2260
- content: "\f331";
2261
- }
2262
-
2263
- .mdi-format-size:before {
2264
- content: "\f332";
2265
- }
2266
-
2267
- .mdi-format-strikethrough:before {
2268
- content: "\f333";
2269
- }
2270
-
2271
- .mdi-format-subscript:before {
2272
- content: "\f334";
2273
- }
2274
-
2275
- .mdi-format-superscript:before {
2276
- content: "\f335";
2277
- }
2278
-
2279
- .mdi-format-text:before {
2280
- content: "\f336";
2281
- }
2282
-
2283
- .mdi-format-textdirection-l-to-r:before {
2284
- content: "\f337";
2285
- }
2286
-
2287
- .mdi-format-textdirection-r-to-l:before {
2288
- content: "\f338";
2289
- }
2290
-
2291
- .mdi-format-underline:before {
2292
- content: "\f339";
2293
- }
2294
-
2295
- .mdi-format-wrap-inline:before {
2296
- content: "\f33a";
2297
- }
2298
-
2299
- .mdi-format-wrap-square:before {
2300
- content: "\f33b";
2301
- }
2302
-
2303
- .mdi-format-wrap-tight:before {
2304
- content: "\f33c";
2305
- }
2306
-
2307
- .mdi-format-wrap-top-bottom:before {
2308
- content: "\f33d";
2309
- }
2310
-
2311
- .mdi-forum:before {
2312
- content: "\f33e";
2313
- }
2314
-
2315
- .mdi-forward:before {
2316
- content: "\f33f";
2317
- }
2318
-
2319
- .mdi-foursquare:before {
2320
- content: "\f340";
2321
- }
2322
-
2323
- .mdi-fridge:before {
2324
- content: "\f341";
2325
- }
2326
-
2327
- .mdi-fullscreen:before {
2328
- content: "\f342";
2329
- }
2330
-
2331
- .mdi-fullscreen-exit:before {
2332
- content: "\f343";
2333
- }
2334
-
2335
- .mdi-function:before {
2336
- content: "\f344";
2337
- }
2338
-
2339
- .mdi-gamepad:before {
2340
- content: "\f345";
2341
- }
2342
-
2343
- .mdi-gamepad-variant:before {
2344
- content: "\f346";
2345
- }
2346
-
2347
- .mdi-gas-station:before {
2348
- content: "\f347";
2349
- }
2350
-
2351
- .mdi-gavel:before {
2352
- content: "\f348";
2353
- }
2354
-
2355
- .mdi-gender-female:before {
2356
- content: "\f349";
2357
- }
2358
-
2359
- .mdi-gender-male:before {
2360
- content: "\f34a";
2361
- }
2362
-
2363
- .mdi-gender-male-female:before {
2364
- content: "\f34b";
2365
- }
2366
-
2367
- .mdi-gender-transgender:before {
2368
- content: "\f34c";
2369
- }
2370
-
2371
- .mdi-gift:before {
2372
- content: "\f34d";
2373
- }
2374
-
2375
- .mdi-git:before {
2376
- content: "\f34e";
2377
- }
2378
-
2379
- .mdi-github-box:before {
2380
- content: "\f34f";
2381
- }
2382
-
2383
- .mdi-github-circle:before {
2384
- content: "\f350";
2385
- }
2386
-
2387
- .mdi-glass-flute:before {
2388
- content: "\f351";
2389
- }
2390
-
2391
- .mdi-glass-mug:before {
2392
- content: "\f352";
2393
- }
2394
-
2395
- .mdi-glass-stange:before {
2396
- content: "\f353";
2397
- }
2398
-
2399
- .mdi-glass-tulip:before {
2400
- content: "\f354";
2401
- }
2402
-
2403
- .mdi-glasses:before {
2404
- content: "\f355";
2405
- }
2406
-
2407
- .mdi-gmail:before {
2408
- content: "\f356";
2409
- }
2410
-
2411
- .mdi-google:before {
2412
- content: "\f357";
2413
- }
2414
-
2415
- .mdi-google-chrome:before {
2416
- content: "\f358";
2417
- }
2418
-
2419
- .mdi-google-circles:before {
2420
- content: "\f359";
2421
- }
2422
-
2423
- .mdi-google-circles-communities:before {
2424
- content: "\f35a";
2425
- }
2426
-
2427
- .mdi-google-circles-extended:before {
2428
- content: "\f35b";
2429
- }
2430
-
2431
- .mdi-google-circles-group:before {
2432
- content: "\f35c";
2433
- }
2434
-
2435
- .mdi-google-controller:before {
2436
- content: "\f35d";
2437
- }
2438
-
2439
- .mdi-google-controller-off:before {
2440
- content: "\f35e";
2441
- }
2442
-
2443
- .mdi-google-drive:before {
2444
- content: "\f35f";
2445
- }
2446
-
2447
- .mdi-google-earth:before {
2448
- content: "\f360";
2449
- }
2450
-
2451
- .mdi-google-glass:before {
2452
- content: "\f361";
2453
- }
2454
-
2455
- .mdi-google-maps:before {
2456
- content: "\f362";
2457
- }
2458
-
2459
- .mdi-google-pages:before {
2460
- content: "\f363";
2461
- }
2462
-
2463
- .mdi-google-play:before {
2464
- content: "\f364";
2465
- }
2466
-
2467
- .mdi-google-plus:before {
2468
- content: "\f365";
2469
- }
2470
-
2471
- .mdi-google-plus-box:before {
2472
- content: "\f366";
2473
- }
2474
-
2475
- .mdi-grid:before {
2476
- content: "\f367";
2477
- }
2478
-
2479
- .mdi-grid-off:before {
2480
- content: "\f368";
2481
- }
2482
-
2483
- .mdi-group:before {
2484
- content: "\f369";
2485
- }
2486
-
2487
- .mdi-guitar:before {
2488
- content: "\f36a";
2489
- }
2490
-
2491
- .mdi-guitar-pick:before {
2492
- content: "\f36b";
2493
- }
2494
-
2495
- .mdi-guitar-pick-outline:before {
2496
- content: "\f36c";
2497
- }
2498
-
2499
- .mdi-hand-pointing-right:before {
2500
- content: "\f36d";
2501
- }
2502
-
2503
- .mdi-hanger:before {
2504
- content: "\f36e";
2505
- }
2506
-
2507
- .mdi-hangouts:before {
2508
- content: "\f36f";
2509
- }
2510
-
2511
- .mdi-harddisk:before {
2512
- content: "\f370";
2513
- }
2514
-
2515
- .mdi-headphones:before {
2516
- content: "\f371";
2517
- }
2518
-
2519
- .mdi-headphones-box:before {
2520
- content: "\f372";
2521
- }
2522
-
2523
- .mdi-headphones-settings:before {
2524
- content: "\f373";
2525
- }
2526
-
2527
- .mdi-headset:before {
2528
- content: "\f374";
2529
- }
2530
-
2531
- .mdi-headset-dock:before {
2532
- content: "\f375";
2533
- }
2534
-
2535
- .mdi-headset-off:before {
2536
- content: "\f376";
2537
- }
2538
-
2539
- .mdi-heart:before {
2540
- content: "\f377";
2541
- }
2542
-
2543
- .mdi-heart-box:before {
2544
- content: "\f378";
2545
- }
2546
-
2547
- .mdi-heart-box-outline:before {
2548
- content: "\f379";
2549
- }
2550
-
2551
- .mdi-heart-broken:before {
2552
- content: "\f37a";
2553
- }
2554
-
2555
- .mdi-heart-outline:before {
2556
- content: "\f37b";
2557
- }
2558
-
2559
- .mdi-help:before {
2560
- content: "\f37c";
2561
- }
2562
-
2563
- .mdi-help-circle:before {
2564
- content: "\f37d";
2565
- }
2566
-
2567
- .mdi-hexagon:before {
2568
- content: "\f37e";
2569
- }
2570
-
2571
- .mdi-hexagon-outline:before {
2572
- content: "\f37f";
2573
- }
2574
-
2575
- .mdi-history:before {
2576
- content: "\f380";
2577
- }
2578
-
2579
- .mdi-hololens:before {
2580
- content: "\f381";
2581
- }
2582
-
2583
- .mdi-home:before {
2584
- content: "\f382";
2585
- }
2586
-
2587
- .mdi-home-modern:before {
2588
- content: "\f383";
2589
- }
2590
-
2591
- .mdi-home-variant:before {
2592
- content: "\f384";
2593
- }
2594
-
2595
- .mdi-hops:before {
2596
- content: "\f385";
2597
- }
2598
-
2599
- .mdi-hospital:before {
2600
- content: "\f386";
2601
- }
2602
-
2603
- .mdi-hospital-building:before {
2604
- content: "\f387";
2605
- }
2606
-
2607
- .mdi-hospital-marker:before {
2608
- content: "\f388";
2609
- }
2610
-
2611
- .mdi-hotel:before {
2612
- content: "\f389";
2613
- }
2614
-
2615
- .mdi-houzz:before {
2616
- content: "\f38a";
2617
- }
2618
-
2619
- .mdi-houzz-box:before {
2620
- content: "\f38b";
2621
- }
2622
-
2623
- .mdi-human:before {
2624
- content: "\f38c";
2625
- }
2626
-
2627
- .mdi-human-child:before {
2628
- content: "\f38d";
2629
- }
2630
-
2631
- .mdi-human-male-female:before {
2632
- content: "\f38e";
2633
- }
2634
-
2635
- .mdi-image-album:before {
2636
- content: "\f38f";
2637
- }
2638
-
2639
- .mdi-image-area:before {
2640
- content: "\f390";
2641
- }
2642
-
2643
- .mdi-image-area-close:before {
2644
- content: "\f391";
2645
- }
2646
-
2647
- .mdi-image-broken:before {
2648
- content: "\f392";
2649
- }
2650
-
2651
- .mdi-image-filter:before {
2652
- content: "\f393";
2653
- }
2654
-
2655
- .mdi-image-filter-black-white:before {
2656
- content: "\f394";
2657
- }
2658
-
2659
- .mdi-image-filter-center-focus:before {
2660
- content: "\f395";
2661
- }
2662
-
2663
- .mdi-image-filter-drama:before {
2664
- content: "\f396";
2665
- }
2666
-
2667
- .mdi-image-filter-frames:before {
2668
- content: "\f397";
2669
- }
2670
-
2671
- .mdi-image-filter-hdr:before {
2672
- content: "\f398";
2673
- }
2674
-
2675
- .mdi-image-filter-none:before {
2676
- content: "\f399";
2677
- }
2678
-
2679
- .mdi-image-filter-tilt-shift:before {
2680
- content: "\f39a";
2681
- }
2682
-
2683
- .mdi-image-filter-vintage:before {
2684
- content: "\f39b";
2685
- }
2686
-
2687
- .mdi-import:before {
2688
- content: "\f39c";
2689
- }
2690
-
2691
- .mdi-inbox:before {
2692
- content: "\f39d";
2693
- }
2694
-
2695
- .mdi-information:before {
2696
- content: "\f39e";
2697
- }
2698
-
2699
- .mdi-information-outline:before {
2700
- content: "\f39f";
2701
- }
2702
-
2703
- .mdi-instagram:before {
2704
- content: "\f3a0";
2705
- }
2706
-
2707
- .mdi-instapaper:before {
2708
- content: "\f3a1";
2709
- }
2710
-
2711
- .mdi-internet-explorer:before {
2712
- content: "\f3a2";
2713
- }
2714
-
2715
- .mdi-invert-colors:before {
2716
- content: "\f3a3";
2717
- }
2718
-
2719
- .mdi-jira:before {
2720
- content: "\f3a4";
2721
- }
2722
-
2723
- .mdi-jsfiddle:before {
2724
- content: "\f3a5";
2725
- }
2726
-
2727
- .mdi-keg:before {
2728
- content: "\f3a6";
2729
- }
2730
-
2731
- .mdi-key:before {
2732
- content: "\f3a7";
2733
- }
2734
-
2735
- .mdi-key-change:before {
2736
- content: "\f3a8";
2737
- }
2738
-
2739
- .mdi-key-minus:before {
2740
- content: "\f3a9";
2741
- }
2742
-
2743
- .mdi-key-plus:before {
2744
- content: "\f3aa";
2745
- }
2746
-
2747
- .mdi-key-remove:before {
2748
- content: "\f3ab";
2749
- }
2750
-
2751
- .mdi-key-variant:before {
2752
- content: "\f3ac";
2753
- }
2754
-
2755
- .mdi-keyboard:before {
2756
- content: "\f3ad";
2757
- }
2758
-
2759
- .mdi-keyboard-backspace:before {
2760
- content: "\f3ae";
2761
- }
2762
-
2763
- .mdi-keyboard-caps:before {
2764
- content: "\f3af";
2765
- }
2766
-
2767
- .mdi-keyboard-close:before {
2768
- content: "\f3b0";
2769
- }
2770
-
2771
- .mdi-keyboard-off:before {
2772
- content: "\f3b1";
2773
- }
2774
-
2775
- .mdi-keyboard-return:before {
2776
- content: "\f3b2";
2777
- }
2778
-
2779
- .mdi-keyboard-tab:before {
2780
- content: "\f3b3";
2781
- }
2782
-
2783
- .mdi-keyboard-variant:before {
2784
- content: "\f3b4";
2785
- }
2786
-
2787
- .mdi-label:before {
2788
- content: "\f3b5";
2789
- }
2790
-
2791
- .mdi-label-outline:before {
2792
- content: "\f3b6";
2793
- }
2794
-
2795
- .mdi-language-csharp:before {
2796
- content: "\f3b7";
2797
- }
2798
-
2799
- .mdi-language-css3:before {
2800
- content: "\f3b8";
2801
- }
2802
-
2803
- .mdi-language-html5:before {
2804
- content: "\f3b9";
2805
- }
2806
-
2807
- .mdi-language-javascript:before {
2808
- content: "\f3ba";
2809
- }
2810
-
2811
- .mdi-language-python:before {
2812
- content: "\f3bb";
2813
- }
2814
-
2815
- .mdi-language-python-text:before {
2816
- content: "\f3bc";
2817
- }
2818
-
2819
- .mdi-laptop:before {
2820
- content: "\f3bd";
2821
- }
2822
-
2823
- .mdi-laptop-chromebook:before {
2824
- content: "\f3be";
2825
- }
2826
-
2827
- .mdi-laptop-mac:before {
2828
- content: "\f3bf";
2829
- }
2830
-
2831
- .mdi-laptop-windows:before {
2832
- content: "\f3c0";
2833
- }
2834
-
2835
- .mdi-lastfm:before {
2836
- content: "\f3c1";
2837
- }
2838
-
2839
- .mdi-launch:before {
2840
- content: "\f3c2";
2841
- }
2842
-
2843
- .mdi-layers:before {
2844
- content: "\f3c3";
2845
- }
2846
-
2847
- .mdi-layers-off:before {
2848
- content: "\f3c4";
2849
- }
2850
-
2851
- .mdi-leaf:before {
2852
- content: "\f3c5";
2853
- }
2854
-
2855
- .mdi-library:before {
2856
- content: "\f3c6";
2857
- }
2858
-
2859
- .mdi-library-books:before {
2860
- content: "\f3c7";
2861
- }
2862
-
2863
- .mdi-library-music:before {
2864
- content: "\f3c8";
2865
- }
2866
-
2867
- .mdi-library-plus:before {
2868
- content: "\f3c9";
2869
- }
2870
-
2871
- .mdi-lightbulb:before {
2872
- content: "\f3ca";
2873
- }
2874
-
2875
- .mdi-lightbulb-outline:before {
2876
- content: "\f3cb";
2877
- }
2878
-
2879
- .mdi-link:before {
2880
- content: "\f3cc";
2881
- }
2882
-
2883
- .mdi-link-off:before {
2884
- content: "\f3cd";
2885
- }
2886
-
2887
- .mdi-link-variant:before {
2888
- content: "\f3ce";
2889
- }
2890
-
2891
- .mdi-link-variant-off:before {
2892
- content: "\f3cf";
2893
- }
2894
-
2895
- .mdi-linkedin:before {
2896
- content: "\f3d0";
2897
- }
2898
-
2899
- .mdi-linkedin-box:before {
2900
- content: "\f3d1";
2901
- }
2902
-
2903
- .mdi-linux:before {
2904
- content: "\f3d2";
2905
- }
2906
-
2907
- .mdi-lock:before {
2908
- content: "\f3d3";
2909
- }
2910
-
2911
- .mdi-lock-open:before {
2912
- content: "\f3d4";
2913
- }
2914
-
2915
- .mdi-lock-open-outline:before {
2916
- content: "\f3d5";
2917
- }
2918
-
2919
- .mdi-lock-outline:before {
2920
- content: "\f3d6";
2921
- }
2922
-
2923
- .mdi-login:before {
2924
- content: "\f3d7";
2925
- }
2926
-
2927
- .mdi-logout:before {
2928
- content: "\f3d8";
2929
- }
2930
-
2931
- .mdi-looks:before {
2932
- content: "\f3d9";
2933
- }
2934
-
2935
- .mdi-loupe:before {
2936
- content: "\f3da";
2937
- }
2938
-
2939
- .mdi-lumx:before {
2940
- content: "\f3db";
2941
- }
2942
-
2943
- .mdi-magnet:before {
2944
- content: "\f3dc";
2945
- }
2946
-
2947
- .mdi-magnet-on:before {
2948
- content: "\f3dd";
2949
- }
2950
-
2951
- .mdi-magnify:before {
2952
- content: "\f3de";
2953
- }
2954
-
2955
- .mdi-magnify-minus:before {
2956
- content: "\f3df";
2957
- }
2958
-
2959
- .mdi-magnify-plus:before {
2960
- content: "\f3e0";
2961
- }
2962
-
2963
- .mdi-mail-ru:before {
2964
- content: "\f3e1";
2965
- }
2966
-
2967
- .mdi-map:before {
2968
- content: "\f3e2";
2969
- }
2970
-
2971
- .mdi-map-marker:before {
2972
- content: "\f3e3";
2973
- }
2974
-
2975
- .mdi-map-marker-circle:before {
2976
- content: "\f3e4";
2977
- }
2978
-
2979
- .mdi-map-marker-multiple:before {
2980
- content: "\f3e5";
2981
- }
2982
-
2983
- .mdi-map-marker-off:before {
2984
- content: "\f3e6";
2985
- }
2986
-
2987
- .mdi-map-marker-radius:before {
2988
- content: "\f3e7";
2989
- }
2990
-
2991
- .mdi-margin:before {
2992
- content: "\f3e8";
2993
- }
2994
-
2995
- .mdi-markdown:before {
2996
- content: "\f3e9";
2997
- }
2998
-
2999
- .mdi-marker-check:before {
3000
- content: "\f3ea";
3001
- }
3002
-
3003
- .mdi-martini:before {
3004
- content: "\f3eb";
3005
- }
3006
-
3007
- .mdi-material-ui:before {
3008
- content: "\f3ec";
3009
- }
3010
-
3011
- .mdi-math-compass:before {
3012
- content: "\f3ed";
3013
- }
3014
-
3015
- .mdi-maxcdn:before {
3016
- content: "\f3ee";
3017
- }
3018
-
3019
- .mdi-medium:before {
3020
- content: "\f3ef";
3021
- }
3022
-
3023
- .mdi-memory:before {
3024
- content: "\f3f0";
3025
- }
3026
-
3027
- .mdi-menu:before {
3028
- content: "\f3f1";
3029
- }
3030
-
3031
- .mdi-menu-down:before {
3032
- content: "\f3f2";
3033
- }
3034
-
3035
- .mdi-menu-left:before {
3036
- content: "\f3f3";
3037
- }
3038
-
3039
- .mdi-menu-right:before {
3040
- content: "\f3f4";
3041
- }
3042
-
3043
- .mdi-menu-up:before {
3044
- content: "\f3f5";
3045
- }
3046
-
3047
- .mdi-message:before {
3048
- content: "\f3f6";
3049
- }
3050
-
3051
- .mdi-message-alert:before {
3052
- content: "\f3f7";
3053
- }
3054
-
3055
- .mdi-message-draw:before {
3056
- content: "\f3f8";
3057
- }
3058
-
3059
- .mdi-message-image:before {
3060
- content: "\f3f9";
3061
- }
3062
-
3063
- .mdi-message-processing:before {
3064
- content: "\f3fa";
3065
- }
3066
-
3067
- .mdi-message-reply:before {
3068
- content: "\f3fb";
3069
- }
3070
-
3071
- .mdi-message-text:before {
3072
- content: "\f3fc";
3073
- }
3074
-
3075
- .mdi-message-text-outline:before {
3076
- content: "\f3fd";
3077
- }
3078
-
3079
- .mdi-message-video:before {
3080
- content: "\f3fe";
3081
- }
3082
-
3083
- .mdi-microphone:before {
3084
- content: "\f3ff";
3085
- }
3086
-
3087
- .mdi-microphone-off:before {
3088
- content: "\f400";
3089
- }
3090
-
3091
- .mdi-microphone-outline:before {
3092
- content: "\f401";
3093
- }
3094
-
3095
- .mdi-microphone-settings:before {
3096
- content: "\f402";
3097
- }
3098
-
3099
- .mdi-microphone-variant:before {
3100
- content: "\f403";
3101
- }
3102
-
3103
- .mdi-microphone-variant-off:before {
3104
- content: "\f404";
3105
- }
3106
-
3107
- .mdi-minus:before {
3108
- content: "\f405";
3109
- }
3110
-
3111
- .mdi-minus-box:before {
3112
- content: "\f406";
3113
- }
3114
-
3115
- .mdi-minus-circle:before {
3116
- content: "\f407";
3117
- }
3118
-
3119
- .mdi-minus-circle-outline:before {
3120
- content: "\f408";
3121
- }
3122
-
3123
- .mdi-minus-network:before {
3124
- content: "\f409";
3125
- }
3126
-
3127
- .mdi-monitor:before {
3128
- content: "\f40a";
3129
- }
3130
-
3131
- .mdi-monitor-multiple:before {
3132
- content: "\f40b";
3133
- }
3134
-
3135
- .mdi-more:before {
3136
- content: "\f40c";
3137
- }
3138
-
3139
- .mdi-motorbike:before {
3140
- content: "\f40d";
3141
- }
3142
-
3143
- .mdi-mouse:before {
3144
- content: "\f40e";
3145
- }
3146
-
3147
- .mdi-mouse-off:before {
3148
- content: "\f40f";
3149
- }
3150
-
3151
- .mdi-mouse-variant:before {
3152
- content: "\f410";
3153
- }
3154
-
3155
- .mdi-mouse-variant-off:before {
3156
- content: "\f411";
3157
- }
3158
-
3159
- .mdi-movie:before {
3160
- content: "\f412";
3161
- }
3162
-
3163
- .mdi-multiplication:before {
3164
- content: "\f413";
3165
- }
3166
-
3167
- .mdi-multiplication-box:before {
3168
- content: "\f414";
3169
- }
3170
-
3171
- .mdi-music-box:before {
3172
- content: "\f415";
3173
- }
3174
-
3175
- .mdi-music-box-outline:before {
3176
- content: "\f416";
3177
- }
3178
-
3179
- .mdi-music-circle:before {
3180
- content: "\f417";
3181
- }
3182
-
3183
- .mdi-music-note:before {
3184
- content: "\f418";
3185
- }
3186
-
3187
- .mdi-music-note-eighth:before {
3188
- content: "\f419";
3189
- }
3190
-
3191
- .mdi-music-note-half:before {
3192
- content: "\f41a";
3193
- }
3194
-
3195
- .mdi-music-note-off:before {
3196
- content: "\f41b";
3197
- }
3198
-
3199
- .mdi-music-note-quarter:before {
3200
- content: "\f41c";
3201
- }
3202
-
3203
- .mdi-music-note-sixteenth:before {
3204
- content: "\f41d";
3205
- }
3206
-
3207
- .mdi-music-note-whole:before {
3208
- content: "\f41e";
3209
- }
3210
-
3211
- .mdi-nature:before {
3212
- content: "\f41f";
3213
- }
3214
-
3215
- .mdi-nature-people:before {
3216
- content: "\f420";
3217
- }
3218
-
3219
- .mdi-navigation:before {
3220
- content: "\f421";
3221
- }
3222
-
3223
- .mdi-needle:before {
3224
- content: "\f422";
3225
- }
3226
-
3227
- .mdi-nest-protect:before {
3228
- content: "\f423";
3229
- }
3230
-
3231
- .mdi-nest-thermostat:before {
3232
- content: "\f424";
3233
- }
3234
-
3235
- .mdi-newspaper:before {
3236
- content: "\f425";
3237
- }
3238
-
3239
- .mdi-nfc:before {
3240
- content: "\f426";
3241
- }
3242
-
3243
- .mdi-nfc-tap:before {
3244
- content: "\f427";
3245
- }
3246
-
3247
- .mdi-nfc-variant:before {
3248
- content: "\f428";
3249
- }
3250
-
3251
- .mdi-note:before {
3252
- content: "\f429";
3253
- }
3254
-
3255
- .mdi-note-outline:before {
3256
- content: "\f42a";
3257
- }
3258
-
3259
- .mdi-note-text:before {
3260
- content: "\f42b";
3261
- }
3262
-
3263
- .mdi-numeric:before {
3264
- content: "\f42c";
3265
- }
3266
-
3267
- .mdi-numeric-0-box:before {
3268
- content: "\f42d";
3269
- }
3270
-
3271
- .mdi-numeric-0-box-multiple-outline:before {
3272
- content: "\f42e";
3273
- }
3274
-
3275
- .mdi-numeric-0-box-outline:before {
3276
- content: "\f42f";
3277
- }
3278
-
3279
- .mdi-numeric-1-box:before {
3280
- content: "\f430";
3281
- }
3282
-
3283
- .mdi-numeric-1-box-multiple-outline:before {
3284
- content: "\f431";
3285
- }
3286
-
3287
- .mdi-numeric-1-box-outline:before {
3288
- content: "\f432";
3289
- }
3290
-
3291
- .mdi-numeric-2-box:before {
3292
- content: "\f433";
3293
- }
3294
-
3295
- .mdi-numeric-2-box-multiple-outline:before {
3296
- content: "\f434";
3297
- }
3298
-
3299
- .mdi-numeric-2-box-outline:before {
3300
- content: "\f435";
3301
- }
3302
-
3303
- .mdi-numeric-3-box:before {
3304
- content: "\f436";
3305
- }
3306
-
3307
- .mdi-numeric-3-box-multiple-outline:before {
3308
- content: "\f437";
3309
- }
3310
-
3311
- .mdi-numeric-3-box-outline:before {
3312
- content: "\f438";
3313
- }
3314
-
3315
- .mdi-numeric-4-box:before {
3316
- content: "\f439";
3317
- }
3318
-
3319
- .mdi-numeric-4-box-multiple-outline:before {
3320
- content: "\f43a";
3321
- }
3322
-
3323
- .mdi-numeric-4-box-outline:before {
3324
- content: "\f43b";
3325
- }
3326
-
3327
- .mdi-numeric-5-box:before {
3328
- content: "\f43c";
3329
- }
3330
-
3331
- .mdi-numeric-5-box-multiple-outline:before {
3332
- content: "\f43d";
3333
- }
3334
-
3335
- .mdi-numeric-5-box-outline:before {
3336
- content: "\f43e";
3337
- }
3338
-
3339
- .mdi-numeric-6-box:before {
3340
- content: "\f43f";
3341
- }
3342
-
3343
- .mdi-numeric-6-box-multiple-outline:before {
3344
- content: "\f440";
3345
- }
3346
-
3347
- .mdi-numeric-6-box-outline:before {
3348
- content: "\f441";
3349
- }
3350
-
3351
- .mdi-numeric-7-box:before {
3352
- content: "\f442";
3353
- }
3354
-
3355
- .mdi-numeric-7-box-multiple-outline:before {
3356
- content: "\f443";
3357
- }
3358
-
3359
- .mdi-numeric-7-box-outline:before {
3360
- content: "\f444";
3361
- }
3362
-
3363
- .mdi-numeric-8-box:before {
3364
- content: "\f445";
3365
- }
3366
-
3367
- .mdi-numeric-8-box-multiple-outline:before {
3368
- content: "\f446";
3369
- }
3370
-
3371
- .mdi-numeric-8-box-outline:before {
3372
- content: "\f447";
3373
- }
3374
-
3375
- .mdi-numeric-9-box:before {
3376
- content: "\f448";
3377
- }
3378
-
3379
- .mdi-numeric-9-box-multiple-outline:before {
3380
- content: "\f449";
3381
- }
3382
-
3383
- .mdi-numeric-9-box-outline:before {
3384
- content: "\f44a";
3385
- }
3386
-
3387
- .mdi-numeric-9-plus-box:before {
3388
- content: "\f44b";
3389
- }
3390
-
3391
- .mdi-numeric-9-plus-box-multiple-outline:before {
3392
- content: "\f44c";
3393
- }
3394
-
3395
- .mdi-numeric-9-plus-box-outline:before {
3396
- content: "\f44d";
3397
- }
3398
-
3399
- .mdi-nutriton:before {
3400
- content: "\f44e";
3401
- }
3402
-
3403
- .mdi-odnoklassniki:before {
3404
- content: "\f44f";
3405
- }
3406
-
3407
- .mdi-office:before {
3408
- content: "\f450";
3409
- }
3410
-
3411
- .mdi-oil:before {
3412
- content: "\f451";
3413
- }
3414
-
3415
- .mdi-omega:before {
3416
- content: "\f452";
3417
- }
3418
-
3419
- .mdi-onedrive:before {
3420
- content: "\f453";
3421
- }
3422
-
3423
- .mdi-open-in-app:before {
3424
- content: "\f454";
3425
- }
3426
-
3427
- .mdi-open-in-new:before {
3428
- content: "\f455";
3429
- }
3430
-
3431
- .mdi-ornament:before {
3432
- content: "\f456";
3433
- }
3434
-
3435
- .mdi-ornament-variant:before {
3436
- content: "\f457";
3437
- }
3438
-
3439
- .mdi-outbox:before {
3440
- content: "\f458";
3441
- }
3442
-
3443
- .mdi-owl:before {
3444
- content: "\f459";
3445
- }
3446
-
3447
- .mdi-package:before {
3448
- content: "\f45a";
3449
- }
3450
-
3451
- .mdi-package-down:before {
3452
- content: "\f45b";
3453
- }
3454
-
3455
- .mdi-package-up:before {
3456
- content: "\f45c";
3457
- }
3458
-
3459
- .mdi-package-variant:before {
3460
- content: "\f45d";
3461
- }
3462
-
3463
- .mdi-package-variant-closed:before {
3464
- content: "\f45e";
3465
- }
3466
-
3467
- .mdi-palette:before {
3468
- content: "\f45f";
3469
- }
3470
-
3471
- .mdi-palette-advanced:before {
3472
- content: "\f460";
3473
- }
3474
-
3475
- .mdi-panda:before {
3476
- content: "\f461";
3477
- }
3478
-
3479
- .mdi-pandora:before {
3480
- content: "\f462";
3481
- }
3482
-
3483
- .mdi-panorama:before {
3484
- content: "\f463";
3485
- }
3486
-
3487
- .mdi-panorama-fisheye:before {
3488
- content: "\f464";
3489
- }
3490
-
3491
- .mdi-panorama-horizontal:before {
3492
- content: "\f465";
3493
- }
3494
-
3495
- .mdi-panorama-vertical:before {
3496
- content: "\f466";
3497
- }
3498
-
3499
- .mdi-panorama-wide-angle:before {
3500
- content: "\f467";
3501
- }
3502
-
3503
- .mdi-paper-cut-vertical:before {
3504
- content: "\f468";
3505
- }
3506
-
3507
- .mdi-paperclip:before {
3508
- content: "\f469";
3509
- }
3510
-
3511
- .mdi-parking:before {
3512
- content: "\f46a";
3513
- }
3514
-
3515
- .mdi-pause:before {
3516
- content: "\f46b";
3517
- }
3518
-
3519
- .mdi-pause-circle:before {
3520
- content: "\f46c";
3521
- }
3522
-
3523
- .mdi-pause-circle-outline:before {
3524
- content: "\f46d";
3525
- }
3526
-
3527
- .mdi-pause-octagon:before {
3528
- content: "\f46e";
3529
- }
3530
-
3531
- .mdi-pause-octagon-outline:before {
3532
- content: "\f46f";
3533
- }
3534
-
3535
- .mdi-paw:before {
3536
- content: "\f470";
3537
- }
3538
-
3539
- .mdi-pen:before {
3540
- content: "\f471";
3541
- }
3542
-
3543
- .mdi-pencil:before {
3544
- content: "\f472";
3545
- }
3546
-
3547
- .mdi-pencil-box:before {
3548
- content: "\f473";
3549
- }
3550
-
3551
- .mdi-pencil-box-outline:before {
3552
- content: "\f474";
3553
- }
3554
-
3555
- .mdi-percent:before {
3556
- content: "\f475";
3557
- }
3558
-
3559
- .mdi-pharmacy:before {
3560
- content: "\f476";
3561
- }
3562
-
3563
- .mdi-phone:before {
3564
- content: "\f477";
3565
- }
3566
-
3567
- .mdi-phone-bluetooth:before {
3568
- content: "\f478";
3569
- }
3570
-
3571
- .mdi-phone-forward:before {
3572
- content: "\f479";
3573
- }
3574
-
3575
- .mdi-phone-hangup:before {
3576
- content: "\f47a";
3577
- }
3578
-
3579
- .mdi-phone-in-talk:before {
3580
- content: "\f47b";
3581
- }
3582
-
3583
- .mdi-phone-incoming:before {
3584
- content: "\f47c";
3585
- }
3586
-
3587
- .mdi-phone-locked:before {
3588
- content: "\f47d";
3589
- }
3590
-
3591
- .mdi-phone-log:before {
3592
- content: "\f47e";
3593
- }
3594
-
3595
- .mdi-phone-missed:before {
3596
- content: "\f47f";
3597
- }
3598
-
3599
- .mdi-phone-outgoing:before {
3600
- content: "\f480";
3601
- }
3602
-
3603
- .mdi-phone-paused:before {
3604
- content: "\f481";
3605
- }
3606
-
3607
- .mdi-phone-settings:before {
3608
- content: "\f482";
3609
- }
3610
-
3611
- .mdi-pig:before {
3612
- content: "\f483";
3613
- }
3614
-
3615
- .mdi-pill:before {
3616
- content: "\f484";
3617
- }
3618
-
3619
- .mdi-pin:before {
3620
- content: "\f485";
3621
- }
3622
-
3623
- .mdi-pin-off:before {
3624
- content: "\f486";
3625
- }
3626
-
3627
- .mdi-pine-tree:before {
3628
- content: "\f487";
3629
- }
3630
-
3631
- .mdi-pine-tree-box:before {
3632
- content: "\f488";
3633
- }
3634
-
3635
- .mdi-pinterest:before {
3636
- content: "\f489";
3637
- }
3638
-
3639
- .mdi-pinterest-box:before {
3640
- content: "\f48a";
3641
- }
3642
-
3643
- .mdi-pizza:before {
3644
- content: "\f48b";
3645
- }
3646
-
3647
- .mdi-play:before {
3648
- content: "\f48c";
3649
- }
3650
-
3651
- .mdi-play-box-outline:before {
3652
- content: "\f48d";
3653
- }
3654
-
3655
- .mdi-play-circle:before {
3656
- content: "\f48e";
3657
- }
3658
-
3659
- .mdi-play-circle-outline:before {
3660
- content: "\f48f";
3661
- }
3662
-
3663
- .mdi-playlist-minus:before {
3664
- content: "\f490";
3665
- }
3666
-
3667
- .mdi-playlist-plus:before {
3668
- content: "\f491";
3669
- }
3670
-
3671
- .mdi-playstation:before {
3672
- content: "\f492";
3673
- }
3674
-
3675
- .mdi-plus:before {
3676
- content: "\f493";
3677
- }
3678
-
3679
- .mdi-plus-box:before {
3680
- content: "\f494";
3681
- }
3682
-
3683
- .mdi-plus-circle:before {
3684
- content: "\f495";
3685
- }
3686
-
3687
- .mdi-plus-circle-outline:before {
3688
- content: "\f496";
3689
- }
3690
-
3691
- .mdi-plus-network:before {
3692
- content: "\f497";
3693
- }
3694
-
3695
- .mdi-plus-one:before {
3696
- content: "\f498";
3697
- }
3698
-
3699
- .mdi-pocket:before {
3700
- content: "\f499";
3701
- }
3702
-
3703
- .mdi-poll:before {
3704
- content: "\f49a";
3705
- }
3706
-
3707
- .mdi-poll-box:before {
3708
- content: "\f49b";
3709
- }
3710
-
3711
- .mdi-polymer:before {
3712
- content: "\f49c";
3713
- }
3714
-
3715
- .mdi-popcorn:before {
3716
- content: "\f49d";
3717
- }
3718
-
3719
- .mdi-pound:before {
3720
- content: "\f49e";
3721
- }
3722
-
3723
- .mdi-pound-box:before {
3724
- content: "\f49f";
3725
- }
3726
-
3727
- .mdi-power:before {
3728
- content: "\f4a0";
3729
- }
3730
-
3731
- .mdi-power-settings:before {
3732
- content: "\f4a1";
3733
- }
3734
-
3735
- .mdi-power-socket:before {
3736
- content: "\f4a2";
3737
- }
3738
-
3739
- .mdi-presentation:before {
3740
- content: "\f4a3";
3741
- }
3742
-
3743
- .mdi-presentation-play:before {
3744
- content: "\f4a4";
3745
- }
3746
-
3747
- .mdi-printer:before {
3748
- content: "\f4a5";
3749
- }
3750
-
3751
- .mdi-printer-3d:before {
3752
- content: "\f4a6";
3753
- }
3754
-
3755
- .mdi-pulse:before {
3756
- content: "\f4a7";
3757
- }
3758
-
3759
- .mdi-puzzle:before {
3760
- content: "\f4a8";
3761
- }
3762
-
3763
- .mdi-qrcode:before {
3764
- content: "\f4a9";
3765
- }
3766
-
3767
- .mdi-quadcopter:before {
3768
- content: "\f4aa";
3769
- }
3770
-
3771
- .mdi-quality-high:before {
3772
- content: "\f4ab";
3773
- }
3774
-
3775
- .mdi-quicktime:before {
3776
- content: "\f4ac";
3777
- }
3778
-
3779
- .mdi-radiator:before {
3780
- content: "\f4ad";
3781
- }
3782
-
3783
- .mdi-radio:before {
3784
- content: "\f4ae";
3785
- }
3786
-
3787
- .mdi-radio-tower:before {
3788
- content: "\f4af";
3789
- }
3790
-
3791
- .mdi-radioactive:before {
3792
- content: "\f4b0";
3793
- }
3794
-
3795
- .mdi-radiobox-blank:before {
3796
- content: "\f4b1";
3797
- }
3798
-
3799
- .mdi-radiobox-marked:before {
3800
- content: "\f4b2";
3801
- }
3802
-
3803
- .mdi-raspberrypi:before {
3804
- content: "\f4b3";
3805
- }
3806
-
3807
- .mdi-rdio:before {
3808
- content: "\f4b4";
3809
- }
3810
-
3811
- .mdi-read:before {
3812
- content: "\f4b5";
3813
- }
3814
-
3815
- .mdi-readability:before {
3816
- content: "\f4b6";
3817
- }
3818
-
3819
- .mdi-receipt:before {
3820
- content: "\f4b7";
3821
- }
3822
-
3823
- .mdi-recycle:before {
3824
- content: "\f4b8";
3825
- }
3826
-
3827
- .mdi-redo:before {
3828
- content: "\f4b9";
3829
- }
3830
-
3831
- .mdi-redo-variant:before {
3832
- content: "\f4ba";
3833
- }
3834
-
3835
- .mdi-refresh:before {
3836
- content: "\f4bb";
3837
- }
3838
-
3839
- .mdi-relative-scale:before {
3840
- content: "\f4bc";
3841
- }
3842
-
3843
- .mdi-reload:before {
3844
- content: "\f4bd";
3845
- }
3846
-
3847
- .mdi-remote:before {
3848
- content: "\f4be";
3849
- }
3850
-
3851
- .mdi-rename-box:before {
3852
- content: "\f4bf";
3853
- }
3854
-
3855
- .mdi-repeat:before {
3856
- content: "\f4c0";
3857
- }
3858
-
3859
- .mdi-repeat-off:before {
3860
- content: "\f4c1";
3861
- }
3862
-
3863
- .mdi-repeat-once:before {
3864
- content: "\f4c2";
3865
- }
3866
-
3867
- .mdi-replay:before {
3868
- content: "\f4c3";
3869
- }
3870
-
3871
- .mdi-reply:before {
3872
- content: "\f4c4";
3873
- }
3874
-
3875
- .mdi-reply-all:before {
3876
- content: "\f4c5";
3877
- }
3878
-
3879
- .mdi-reproduction:before {
3880
- content: "\f4c6";
3881
- }
3882
-
3883
- .mdi-resize-bottom-right:before {
3884
- content: "\f4c7";
3885
- }
3886
-
3887
- .mdi-responsive:before {
3888
- content: "\f4c8";
3889
- }
3890
-
3891
- .mdi-rewind:before {
3892
- content: "\f4c9";
3893
- }
3894
-
3895
- .mdi-ribbon:before {
3896
- content: "\f4ca";
3897
- }
3898
-
3899
- .mdi-road:before {
3900
- content: "\f4cb";
3901
- }
3902
-
3903
- .mdi-rocket:before {
3904
- content: "\f4cc";
3905
- }
3906
-
3907
- .mdi-rotate-3d:before {
3908
- content: "\f4cd";
3909
- }
3910
-
3911
- .mdi-rotate-left:before {
3912
- content: "\f4ce";
3913
- }
3914
-
3915
- .mdi-rotate-left-variant:before {
3916
- content: "\f4cf";
3917
- }
3918
-
3919
- .mdi-rotate-right:before {
3920
- content: "\f4d0";
3921
- }
3922
-
3923
- .mdi-rotate-right-variant:before {
3924
- content: "\f4d1";
3925
- }
3926
-
3927
- .mdi-routes:before {
3928
- content: "\f4d2";
3929
- }
3930
-
3931
- .mdi-rss:before {
3932
- content: "\f4d3";
3933
- }
3934
-
3935
- .mdi-rss-box:before {
3936
- content: "\f4d4";
3937
- }
3938
-
3939
- .mdi-ruler:before {
3940
- content: "\f4d5";
3941
- }
3942
-
3943
- .mdi-run:before {
3944
- content: "\f4d6";
3945
- }
3946
-
3947
- .mdi-sale:before {
3948
- content: "\f4d7";
3949
- }
3950
-
3951
- .mdi-satellite:before {
3952
- content: "\f4d8";
3953
- }
3954
-
3955
- .mdi-satellite-variant:before {
3956
- content: "\f4d9";
3957
- }
3958
-
3959
- .mdi-scale:before {
3960
- content: "\f4da";
3961
- }
3962
-
3963
- .mdi-scale-bathroom:before {
3964
- content: "\f4db";
3965
- }
3966
-
3967
- .mdi-school:before {
3968
- content: "\f4dc";
3969
- }
3970
-
3971
- .mdi-screen-rotation:before {
3972
- content: "\f4dd";
3973
- }
3974
-
3975
- .mdi-screen-rotation-lock:before {
3976
- content: "\f4de";
3977
- }
3978
-
3979
- .mdi-script:before {
3980
- content: "\f4df";
3981
- }
3982
-
3983
- .mdi-sd:before {
3984
- content: "\f4e0";
3985
- }
3986
-
3987
- .mdi-security:before {
3988
- content: "\f4e1";
3989
- }
3990
-
3991
- .mdi-security-network:before {
3992
- content: "\f4e2";
3993
- }
3994
-
3995
- .mdi-select:before {
3996
- content: "\f4e3";
3997
- }
3998
-
3999
- .mdi-select-all:before {
4000
- content: "\f4e4";
4001
- }
4002
-
4003
- .mdi-select-inverse:before {
4004
- content: "\f4e5";
4005
- }
4006
-
4007
- .mdi-select-off:before {
4008
- content: "\f4e6";
4009
- }
4010
-
4011
- .mdi-send:before {
4012
- content: "\f4e7";
4013
- }
4014
-
4015
- .mdi-server:before {
4016
- content: "\f4e8";
4017
- }
4018
-
4019
- .mdi-server-minus:before {
4020
- content: "\f4e9";
4021
- }
4022
-
4023
- .mdi-server-network:before {
4024
- content: "\f4ea";
4025
- }
4026
-
4027
- .mdi-server-network-off:before {
4028
- content: "\f4eb";
4029
- }
4030
-
4031
- .mdi-server-off:before {
4032
- content: "\f4ec";
4033
- }
4034
-
4035
- .mdi-server-plus:before {
4036
- content: "\f4ed";
4037
- }
4038
-
4039
- .mdi-server-remove:before {
4040
- content: "\f4ee";
4041
- }
4042
-
4043
- .mdi-server-security:before {
4044
- content: "\f4ef";
4045
- }
4046
-
4047
- .mdi-settings:before {
4048
- content: "\f4f0";
4049
- }
4050
-
4051
- .mdi-settings-box:before {
4052
- content: "\f4f1";
4053
- }
4054
-
4055
- .mdi-shape-plus:before {
4056
- content: "\f4f2";
4057
- }
4058
-
4059
- .mdi-share:before {
4060
- content: "\f4f3";
4061
- }
4062
-
4063
- .mdi-share-variant:before {
4064
- content: "\f4f4";
4065
- }
4066
-
4067
- .mdi-shield:before {
4068
- content: "\f4f5";
4069
- }
4070
-
4071
- .mdi-shield-outline:before {
4072
- content: "\f4f6";
4073
- }
4074
-
4075
- .mdi-shopping:before {
4076
- content: "\f4f7";
4077
- }
4078
-
4079
- .mdi-shopping-music:before {
4080
- content: "\f4f8";
4081
- }
4082
-
4083
- .mdi-shuffle:before {
4084
- content: "\f4f9";
4085
- }
4086
-
4087
- .mdi-sigma:before {
4088
- content: "\f4fa";
4089
- }
4090
-
4091
- .mdi-sign-caution:before {
4092
- content: "\f4fb";
4093
- }
4094
-
4095
- .mdi-signal:before {
4096
- content: "\f4fc";
4097
- }
4098
-
4099
- .mdi-silverware:before {
4100
- content: "\f4fd";
4101
- }
4102
-
4103
- .mdi-silverware-fork:before {
4104
- content: "\f4fe";
4105
- }
4106
-
4107
- .mdi-silverware-spoon:before {
4108
- content: "\f4ff";
4109
- }
4110
-
4111
- .mdi-silverware-variant:before {
4112
- content: "\f500";
4113
- }
4114
-
4115
- .mdi-sim-alert:before {
4116
- content: "\f501";
4117
- }
4118
-
4119
- .mdi-sitemap:before {
4120
- content: "\f502";
4121
- }
4122
-
4123
- .mdi-skip-next:before {
4124
- content: "\f503";
4125
- }
4126
-
4127
- .mdi-skip-previous:before {
4128
- content: "\f504";
4129
- }
4130
-
4131
- .mdi-skype:before {
4132
- content: "\f505";
4133
- }
4134
-
4135
- .mdi-skype-business:before {
4136
- content: "\f506";
4137
- }
4138
-
4139
- .mdi-sleep:before {
4140
- content: "\f507";
4141
- }
4142
-
4143
- .mdi-sleep-off:before {
4144
- content: "\f508";
4145
- }
4146
-
4147
- .mdi-smoking:before {
4148
- content: "\f509";
4149
- }
4150
-
4151
- .mdi-smoking-off:before {
4152
- content: "\f50a";
4153
- }
4154
-
4155
- .mdi-snapchat:before {
4156
- content: "\f50b";
4157
- }
4158
-
4159
- .mdi-snowman:before {
4160
- content: "\f50c";
4161
- }
4162
-
4163
- .mdi-sofa:before {
4164
- content: "\f50d";
4165
- }
4166
-
4167
- .mdi-sort:before {
4168
- content: "\f50e";
4169
- }
4170
-
4171
- .mdi-sort-alphabetical:before {
4172
- content: "\f50f";
4173
- }
4174
-
4175
- .mdi-sort-ascending:before {
4176
- content: "\f510";
4177
- }
4178
-
4179
- .mdi-sort-descending:before {
4180
- content: "\f511";
4181
- }
4182
-
4183
- .mdi-sort-numeric:before {
4184
- content: "\f512";
4185
- }
4186
-
4187
- .mdi-sort-variant:before {
4188
- content: "\f513";
4189
- }
4190
-
4191
- .mdi-soundcloud:before {
4192
- content: "\f514";
4193
- }
4194
-
4195
- .mdi-source-fork:before {
4196
- content: "\f515";
4197
- }
4198
-
4199
- .mdi-source-pull:before {
4200
- content: "\f516";
4201
- }
4202
-
4203
- .mdi-speaker:before {
4204
- content: "\f517";
4205
- }
4206
-
4207
- .mdi-speaker-off:before {
4208
- content: "\f518";
4209
- }
4210
-
4211
- .mdi-speedometer:before {
4212
- content: "\f519";
4213
- }
4214
-
4215
- .mdi-spellcheck:before {
4216
- content: "\f51a";
4217
- }
4218
-
4219
- .mdi-spotify:before {
4220
- content: "\f51b";
4221
- }
4222
-
4223
- .mdi-spotlight:before {
4224
- content: "\f51c";
4225
- }
4226
-
4227
- .mdi-spotlight-beam:before {
4228
- content: "\f51d";
4229
- }
4230
-
4231
- .mdi-square-inc:before {
4232
- content: "\f51e";
4233
- }
4234
-
4235
- .mdi-square-inc-cash:before {
4236
- content: "\f51f";
4237
- }
4238
-
4239
- .mdi-stackoverflow:before {
4240
- content: "\f520";
4241
- }
4242
-
4243
- .mdi-star:before {
4244
- content: "\f521";
4245
- }
4246
-
4247
- .mdi-star-circle:before {
4248
- content: "\f522";
4249
- }
4250
-
4251
- .mdi-star-half:before {
4252
- content: "\f523";
4253
- }
4254
-
4255
- .mdi-star-outline:before {
4256
- content: "\f524";
4257
- }
4258
-
4259
- .mdi-steam:before {
4260
- content: "\f525";
4261
- }
4262
-
4263
- .mdi-stethoscope:before {
4264
- content: "\f526";
4265
- }
4266
-
4267
- .mdi-stocking:before {
4268
- content: "\f527";
4269
- }
4270
-
4271
- .mdi-stop:before {
4272
- content: "\f528";
4273
- }
4274
-
4275
- .mdi-store:before {
4276
- content: "\f529";
4277
- }
4278
-
4279
- .mdi-store-24-hour:before {
4280
- content: "\f52a";
4281
- }
4282
-
4283
- .mdi-stove:before {
4284
- content: "\f52b";
4285
- }
4286
-
4287
- .mdi-subway:before {
4288
- content: "\f52c";
4289
- }
4290
-
4291
- .mdi-sunglasses:before {
4292
- content: "\f52d";
4293
- }
4294
-
4295
- .mdi-swap-horizontal:before {
4296
- content: "\f52e";
4297
- }
4298
-
4299
- .mdi-swap-vertical:before {
4300
- content: "\f52f";
4301
- }
4302
-
4303
- .mdi-swim:before {
4304
- content: "\f530";
4305
- }
4306
-
4307
- .mdi-sword:before {
4308
- content: "\f531";
4309
- }
4310
-
4311
- .mdi-sync:before {
4312
- content: "\f532";
4313
- }
4314
-
4315
- .mdi-sync-alert:before {
4316
- content: "\f533";
4317
- }
4318
-
4319
- .mdi-sync-off:before {
4320
- content: "\f534";
4321
- }
4322
-
4323
- .mdi-tab:before {
4324
- content: "\f535";
4325
- }
4326
-
4327
- .mdi-tab-unselected:before {
4328
- content: "\f536";
4329
- }
4330
-
4331
- .mdi-table:before {
4332
- content: "\f537";
4333
- }
4334
-
4335
- .mdi-table-column-plus-after:before {
4336
- content: "\f538";
4337
- }
4338
-
4339
- .mdi-table-column-plus-before:before {
4340
- content: "\f539";
4341
- }
4342
-
4343
- .mdi-table-column-remove:before {
4344
- content: "\f53a";
4345
- }
4346
-
4347
- .mdi-table-column-width:before {
4348
- content: "\f53b";
4349
- }
4350
-
4351
- .mdi-table-edit:before {
4352
- content: "\f53c";
4353
- }
4354
-
4355
- .mdi-table-large:before {
4356
- content: "\f53d";
4357
- }
4358
-
4359
- .mdi-table-row-height:before {
4360
- content: "\f53e";
4361
- }
4362
-
4363
- .mdi-table-row-plus-after:before {
4364
- content: "\f53f";
4365
- }
4366
-
4367
- .mdi-table-row-plus-before:before {
4368
- content: "\f540";
4369
- }
4370
-
4371
- .mdi-table-row-remove:before {
4372
- content: "\f541";
4373
- }
4374
-
4375
- .mdi-tablet:before {
4376
- content: "\f542";
4377
- }
4378
-
4379
- .mdi-tablet-android:before {
4380
- content: "\f543";
4381
- }
4382
-
4383
- .mdi-tablet-ipad:before {
4384
- content: "\f544";
4385
- }
4386
-
4387
- .mdi-tag:before {
4388
- content: "\f545";
4389
- }
4390
-
4391
- .mdi-tag-faces:before {
4392
- content: "\f546";
4393
- }
4394
-
4395
- .mdi-tag-multiple:before {
4396
- content: "\f547";
4397
- }
4398
-
4399
- .mdi-tag-outline:before {
4400
- content: "\f548";
4401
- }
4402
-
4403
- .mdi-tag-text-outline:before {
4404
- content: "\f549";
4405
- }
4406
-
4407
- .mdi-taxi:before {
4408
- content: "\f54a";
4409
- }
4410
-
4411
- .mdi-teamviewer:before {
4412
- content: "\f54b";
4413
- }
4414
-
4415
- .mdi-telegram:before {
4416
- content: "\f54c";
4417
- }
4418
-
4419
- .mdi-television:before {
4420
- content: "\f54d";
4421
- }
4422
-
4423
- .mdi-television-guide:before {
4424
- content: "\f54e";
4425
- }
4426
-
4427
- .mdi-temperature-celsius:before {
4428
- content: "\f54f";
4429
- }
4430
-
4431
- .mdi-temperature-fahrenheit:before {
4432
- content: "\f550";
4433
- }
4434
-
4435
- .mdi-temperature-kelvin:before {
4436
- content: "\f551";
4437
- }
4438
-
4439
- .mdi-tennis:before {
4440
- content: "\f552";
4441
- }
4442
-
4443
- .mdi-tent:before {
4444
- content: "\f553";
4445
- }
4446
-
4447
- .mdi-terrain:before {
4448
- content: "\f554";
4449
- }
4450
-
4451
- .mdi-text-to-speech:before {
4452
- content: "\f555";
4453
- }
4454
-
4455
- .mdi-text-to-speech-off:before {
4456
- content: "\f556";
4457
- }
4458
-
4459
- .mdi-texture:before {
4460
- content: "\f557";
4461
- }
4462
-
4463
- .mdi-theater:before {
4464
- content: "\f558";
4465
- }
4466
-
4467
- .mdi-theme-light-dark:before {
4468
- content: "\f559";
4469
- }
4470
-
4471
- .mdi-thermometer:before {
4472
- content: "\f55a";
4473
- }
4474
-
4475
- .mdi-thermometer-lines:before {
4476
- content: "\f55b";
4477
- }
4478
-
4479
- .mdi-thumb-down:before {
4480
- content: "\f55c";
4481
- }
4482
-
4483
- .mdi-thumb-down-outline:before {
4484
- content: "\f55d";
4485
- }
4486
-
4487
- .mdi-thumb-up:before {
4488
- content: "\f55e";
4489
- }
4490
-
4491
- .mdi-thumb-up-outline:before {
4492
- content: "\f55f";
4493
- }
4494
-
4495
- .mdi-thumbs-up-down:before {
4496
- content: "\f560";
4497
- }
4498
-
4499
- .mdi-ticket:before {
4500
- content: "\f561";
4501
- }
4502
-
4503
- .mdi-ticket-account:before {
4504
- content: "\f562";
4505
- }
4506
-
4507
- .mdi-tie:before {
4508
- content: "\f563";
4509
- }
4510
-
4511
- .mdi-timelapse:before {
4512
- content: "\f564";
4513
- }
4514
-
4515
- .mdi-timer:before {
4516
- content: "\f565";
4517
- }
4518
-
4519
- .mdi-timer-10:before {
4520
- content: "\f566";
4521
- }
4522
-
4523
- .mdi-timer-3:before {
4524
- content: "\f567";
4525
- }
4526
-
4527
- .mdi-timer-off:before {
4528
- content: "\f568";
4529
- }
4530
-
4531
- .mdi-timer-sand:before {
4532
- content: "\f569";
4533
- }
4534
-
4535
- .mdi-timetable:before {
4536
- content: "\f56a";
4537
- }
4538
-
4539
- .mdi-toggle-switch:before {
4540
- content: "\f56b";
4541
- }
4542
-
4543
- .mdi-toggle-switch-off:before {
4544
- content: "\f56c";
4545
- }
4546
-
4547
- .mdi-tooltip:before {
4548
- content: "\f56d";
4549
- }
4550
-
4551
- .mdi-tooltip-edit:before {
4552
- content: "\f56e";
4553
- }
4554
-
4555
- .mdi-tooltip-image:before {
4556
- content: "\f56f";
4557
- }
4558
-
4559
- .mdi-tooltip-outline:before {
4560
- content: "\f570";
4561
- }
4562
-
4563
- .mdi-tooltip-outline-plus:before {
4564
- content: "\f571";
4565
- }
4566
-
4567
- .mdi-tooltip-text:before {
4568
- content: "\f572";
4569
- }
4570
-
4571
- .mdi-tor:before {
4572
- content: "\f573";
4573
- }
4574
-
4575
- .mdi-traffic-light:before {
4576
- content: "\f574";
4577
- }
4578
-
4579
- .mdi-train:before {
4580
- content: "\f575";
4581
- }
4582
-
4583
- .mdi-tram:before {
4584
- content: "\f576";
4585
- }
4586
-
4587
- .mdi-transcribe:before {
4588
- content: "\f577";
4589
- }
4590
-
4591
- .mdi-transcribe-close:before {
4592
- content: "\f578";
4593
- }
4594
-
4595
- .mdi-transfer:before {
4596
- content: "\f579";
4597
- }
4598
-
4599
- .mdi-tree:before {
4600
- content: "\f57a";
4601
- }
4602
-
4603
- .mdi-trello:before {
4604
- content: "\f57b";
4605
- }
4606
-
4607
- .mdi-trending-down:before {
4608
- content: "\f57c";
4609
- }
4610
-
4611
- .mdi-trending-neutral:before {
4612
- content: "\f57d";
4613
- }
4614
-
4615
- .mdi-trending-up:before {
4616
- content: "\f57e";
4617
- }
4618
-
4619
- .mdi-trophy:before {
4620
- content: "\f57f";
4621
- }
4622
-
4623
- .mdi-trophy-award:before {
4624
- content: "\f580";
4625
- }
4626
-
4627
- .mdi-trophy-variant:before {
4628
- content: "\f581";
4629
- }
4630
-
4631
- .mdi-truck:before {
4632
- content: "\f582";
4633
- }
4634
-
4635
- .mdi-tshirt-crew:before {
4636
- content: "\f583";
4637
- }
4638
-
4639
- .mdi-tshirt-v:before {
4640
- content: "\f584";
4641
- }
4642
-
4643
- .mdi-tumblr:before {
4644
- content: "\f585";
4645
- }
4646
-
4647
- .mdi-tumblr-reblog:before {
4648
- content: "\f586";
4649
- }
4650
-
4651
- .mdi-twitch:before {
4652
- content: "\f587";
4653
- }
4654
-
4655
- .mdi-twitter:before {
4656
- content: "\f588";
4657
- }
4658
-
4659
- .mdi-twitter-box:before {
4660
- content: "\f589";
4661
- }
4662
-
4663
- .mdi-twitter-circle:before {
4664
- content: "\f58a";
4665
- }
4666
-
4667
- .mdi-twitter-retweet:before {
4668
- content: "\f58b";
4669
- }
4670
-
4671
- .mdi-ubuntu:before {
4672
- content: "\f58c";
4673
- }
4674
-
4675
- .mdi-umbrella:before {
4676
- content: "\f58d";
4677
- }
4678
-
4679
- .mdi-umbrella-outline:before {
4680
- content: "\f58e";
4681
- }
4682
-
4683
- .mdi-undo:before {
4684
- content: "\f58f";
4685
- }
4686
-
4687
- .mdi-undo-variant:before {
4688
- content: "\f590";
4689
- }
4690
-
4691
- .mdi-unfold-less:before {
4692
- content: "\f591";
4693
- }
4694
-
4695
- .mdi-unfold-more:before {
4696
- content: "\f592";
4697
- }
4698
-
4699
- .mdi-ungroup:before {
4700
- content: "\f593";
4701
- }
4702
-
4703
- .mdi-untappd:before {
4704
- content: "\f594";
4705
- }
4706
-
4707
- .mdi-upload:before {
4708
- content: "\f595";
4709
- }
4710
-
4711
- .mdi-usb:before {
4712
- content: "\f596";
4713
- }
4714
-
4715
- .mdi-vector-curve:before {
4716
- content: "\f597";
4717
- }
4718
-
4719
- .mdi-vector-point:before {
4720
- content: "\f598";
4721
- }
4722
-
4723
- .mdi-vector-square:before {
4724
- content: "\f599";
4725
- }
4726
-
4727
- .mdi-verified:before {
4728
- content: "\f59a";
4729
- }
4730
-
4731
- .mdi-vibrate:before {
4732
- content: "\f59b";
4733
- }
4734
-
4735
- .mdi-video:before {
4736
- content: "\f59c";
4737
- }
4738
-
4739
- .mdi-video-off:before {
4740
- content: "\f59d";
4741
- }
4742
-
4743
- .mdi-video-switch:before {
4744
- content: "\f59e";
4745
- }
4746
-
4747
- .mdi-view-agenda:before {
4748
- content: "\f59f";
4749
- }
4750
-
4751
- .mdi-view-array:before {
4752
- content: "\f5a0";
4753
- }
4754
-
4755
- .mdi-view-carousel:before {
4756
- content: "\f5a1";
4757
- }
4758
-
4759
- .mdi-view-column:before {
4760
- content: "\f5a2";
4761
- }
4762
-
4763
- .mdi-view-dashboard:before {
4764
- content: "\f5a3";
4765
- }
4766
-
4767
- .mdi-view-day:before {
4768
- content: "\f5a4";
4769
- }
4770
-
4771
- .mdi-view-grid:before {
4772
- content: "\f5a5";
4773
- }
4774
-
4775
- .mdi-view-headline:before {
4776
- content: "\f5a6";
4777
- }
4778
-
4779
- .mdi-view-list:before {
4780
- content: "\f5a7";
4781
- }
4782
-
4783
- .mdi-view-module:before {
4784
- content: "\f5a8";
4785
- }
4786
-
4787
- .mdi-view-quilt:before {
4788
- content: "\f5a9";
4789
- }
4790
-
4791
- .mdi-view-stream:before {
4792
- content: "\f5aa";
4793
- }
4794
-
4795
- .mdi-view-week:before {
4796
- content: "\f5ab";
4797
- }
4798
-
4799
- .mdi-vimeo:before {
4800
- content: "\f5ac";
4801
- }
4802
-
4803
- .mdi-vine:before {
4804
- content: "\f5ad";
4805
- }
4806
-
4807
- .mdi-vk:before {
4808
- content: "\f5ae";
4809
- }
4810
-
4811
- .mdi-vk-box:before {
4812
- content: "\f5af";
4813
- }
4814
-
4815
- .mdi-vk-circle:before {
4816
- content: "\f5b0";
4817
- }
4818
-
4819
- .mdi-voicemail:before {
4820
- content: "\f5b1";
4821
- }
4822
-
4823
- .mdi-volume-high:before {
4824
- content: "\f5b2";
4825
- }
4826
-
4827
- .mdi-volume-low:before {
4828
- content: "\f5b3";
4829
- }
4830
-
4831
- .mdi-volume-medium:before {
4832
- content: "\f5b4";
4833
- }
4834
-
4835
- .mdi-volume-off:before {
4836
- content: "\f5b5";
4837
- }
4838
-
4839
- .mdi-vpn:before {
4840
- content: "\f5b6";
4841
- }
4842
-
4843
- .mdi-walk:before {
4844
- content: "\f5b7";
4845
- }
4846
-
4847
- .mdi-wallet:before {
4848
- content: "\f5b8";
4849
- }
4850
-
4851
- .mdi-wallet-giftcard:before {
4852
- content: "\f5b9";
4853
- }
4854
-
4855
- .mdi-wallet-membership:before {
4856
- content: "\f5ba";
4857
- }
4858
-
4859
- .mdi-wallet-travel:before {
4860
- content: "\f5bb";
4861
- }
4862
-
4863
- .mdi-watch:before {
4864
- content: "\f5bc";
4865
- }
4866
-
4867
- .mdi-watch-export:before {
4868
- content: "\f5bd";
4869
- }
4870
-
4871
- .mdi-watch-import:before {
4872
- content: "\f5be";
4873
- }
4874
-
4875
- .mdi-water:before {
4876
- content: "\f5bf";
4877
- }
4878
-
4879
- .mdi-water-off:before {
4880
- content: "\f5c0";
4881
- }
4882
-
4883
- .mdi-water-pump:before {
4884
- content: "\f5c1";
4885
- }
4886
-
4887
- .mdi-weather-cloudy:before {
4888
- content: "\f5c2";
4889
- }
4890
-
4891
- .mdi-weather-fog:before {
4892
- content: "\f5c3";
4893
- }
4894
-
4895
- .mdi-weather-hail:before {
4896
- content: "\f5c4";
4897
- }
4898
-
4899
- .mdi-weather-lightning:before {
4900
- content: "\f5c5";
4901
- }
4902
-
4903
- .mdi-weather-night:before {
4904
- content: "\f5c6";
4905
- }
4906
-
4907
- .mdi-weather-partlycloudy:before {
4908
- content: "\f5c7";
4909
- }
4910
-
4911
- .mdi-weather-pouring:before {
4912
- content: "\f5c8";
4913
- }
4914
-
4915
- .mdi-weather-rainy:before {
4916
- content: "\f5c9";
4917
- }
4918
-
4919
- .mdi-weather-snowy:before {
4920
- content: "\f5ca";
4921
- }
4922
-
4923
- .mdi-weather-sunny:before {
4924
- content: "\f5cb";
4925
- }
4926
-
4927
- .mdi-weather-sunset:before {
4928
- content: "\f5cc";
4929
- }
4930
-
4931
- .mdi-weather-sunset-down:before {
4932
- content: "\f5cd";
4933
- }
4934
-
4935
- .mdi-weather-sunset-up:before {
4936
- content: "\f5ce";
4937
- }
4938
-
4939
- .mdi-weather-windy:before {
4940
- content: "\f5cf";
4941
- }
4942
-
4943
- .mdi-weather-windy-variant:before {
4944
- content: "\f5d0";
4945
- }
4946
-
4947
- .mdi-web:before {
4948
- content: "\f5d1";
4949
- }
4950
-
4951
- .mdi-webcam:before {
4952
- content: "\f5d2";
4953
- }
4954
-
4955
- .mdi-weight:before {
4956
- content: "\f5d3";
4957
- }
4958
-
4959
- .mdi-weight-kilogram:before {
4960
- content: "\f5d4";
4961
- }
4962
-
4963
- .mdi-whatsapp:before {
4964
- content: "\f5d5";
4965
- }
4966
-
4967
- .mdi-wheelchair-accessibility:before {
4968
- content: "\f5d6";
4969
- }
4970
-
4971
- .mdi-white-balance-auto:before {
4972
- content: "\f5d7";
4973
- }
4974
-
4975
- .mdi-white-balance-incandescent:before {
4976
- content: "\f5d8";
4977
- }
4978
-
4979
- .mdi-white-balance-irradescent:before {
4980
- content: "\f5d9";
4981
- }
4982
-
4983
- .mdi-white-balance-sunny:before {
4984
- content: "\f5da";
4985
- }
4986
-
4987
- .mdi-wifi:before {
4988
- content: "\f5db";
4989
- }
4990
-
4991
- .mdi-wii:before {
4992
- content: "\f5dc";
4993
- }
4994
-
4995
- .mdi-wikipedia:before {
4996
- content: "\f5dd";
4997
- }
4998
-
4999
- .mdi-window-close:before {
5000
- content: "\f5de";
5001
- }
5002
-
5003
- .mdi-window-closed:before {
5004
- content: "\f5df";
5005
- }
5006
-
5007
- .mdi-window-maximize:before {
5008
- content: "\f5e0";
5009
- }
5010
-
5011
- .mdi-window-minimize:before {
5012
- content: "\f5e1";
5013
- }
5014
-
5015
- .mdi-window-open:before {
5016
- content: "\f5e2";
5017
- }
5018
-
5019
- .mdi-window-restore:before {
5020
- content: "\f5e3";
5021
- }
5022
-
5023
- .mdi-windows:before {
5024
- content: "\f5e4";
5025
- }
5026
-
5027
- .mdi-wordpress:before {
5028
- content: "\f5e5";
5029
- }
5030
-
5031
- .mdi-worker:before {
5032
- content: "\f5e6";
5033
- }
5034
-
5035
- .mdi-wunderlist:before {
5036
- content: "\f5e7";
5037
- }
5038
-
5039
- .mdi-xbox:before {
5040
- content: "\f5e8";
5041
- }
5042
-
5043
- .mdi-xbox-controller:before {
5044
- content: "\f5e9";
5045
- }
5046
-
5047
- .mdi-xbox-controller-off:before {
5048
- content: "\f5ea";
5049
- }
5050
-
5051
- .mdi-xda:before {
5052
- content: "\f5eb";
5053
- }
5054
-
5055
- .mdi-xml:before {
5056
- content: "\f5ec";
5057
- }
5058
-
5059
- .mdi-yeast:before {
5060
- content: "\f5ed";
5061
- }
5062
-
5063
- .mdi-yelp:before {
5064
- content: "\f5ee";
5065
- }
5066
-
5067
- .mdi-youtube-play:before {
5068
- content: "\f5ef";
5069
- }
5070
-
5071
- .mdi-zip-box:before {
5072
- content: "\f5f0";
5073
- }
5074
-
5075
- .mdi-18px {
5076
- font-size: 18px;
5077
- }
5078
-
5079
- .mdi-24px {
5080
- font-size: 24px;
5081
- }
5082
-
5083
- .mdi-36px {
5084
- font-size: 36px;
5085
- }
5086
-
5087
- .mdi-48px {
5088
- font-size: 48px;
5089
- }
5090
-
5091
- .mdi-dark {
5092
- color: rgba(0, 0, 0, 0.54);
5093
- }
5094
-
5095
- .mdi-dark.mdi-inactive {
5096
- color: rgba(0, 0, 0, 0.26);
5097
- }
5098
-
5099
- .mdi-light {
5100
- color: white;
5101
- }
5102
-
5103
- .mdi-light.mdi-inactive {
5104
- color: rgba(255, 255, 255, 0.3);
5105
- }
5106
-
5107
- /*# sourceMappingURL=materialdesignicons.css.map */
1
+ /* MaterialDesignIcons.com */
2
+ @font-face {
3
+ font-family: 'MaterialDesignIcons';
4
+ src: url("../font/material-design-icons/materialdesignicons-webfont.eot?v=1.2.64");
5
+ src: url("../font/material-design-icons/materialdesignicons-webfont.eot?#iefix&v=1.2.64") format("embedded-opentype"), url("../font/material-design-icons/materialdesignicons-webfont.woff2?v=1.2.64") format("woff2"), url("../font/material-design-icons/materialdesignicons-webfont.woff?v=1.2.64") format("woff"), url("../font/material-design-icons/materialdesignicons-webfont.ttf?v=1.2.64") format("truetype"), url("../font/material-design-icons/materialdesignicons-webfont.svg?v=1.2.64#materialdesigniconsregular") format("svg");
6
+ font-weight: normal;
7
+ font-style: normal;
8
+ }
9
+ .mdi {
10
+ display: inline-block;
11
+ font: normal normal normal 24px/1 MaterialDesignIcons;
12
+ font-size: inherit;
13
+ text-rendering: auto;
14
+ -webkit-font-smoothing: antialiased;
15
+ -moz-osx-font-smoothing: grayscale;
16
+ transform: translate(0, 0);
17
+ }
18
+
19
+ .mdi-account:before {
20
+ content: "\f101";
21
+ }
22
+
23
+ .mdi-account-alert:before {
24
+ content: "\f102";
25
+ }
26
+
27
+ .mdi-account-box:before {
28
+ content: "\f103";
29
+ }
30
+
31
+ .mdi-account-box-outline:before {
32
+ content: "\f104";
33
+ }
34
+
35
+ .mdi-account-check:before {
36
+ content: "\f105";
37
+ }
38
+
39
+ .mdi-account-circle:before {
40
+ content: "\f106";
41
+ }
42
+
43
+ .mdi-account-key:before {
44
+ content: "\f107";
45
+ }
46
+
47
+ .mdi-account-location:before {
48
+ content: "\f108";
49
+ }
50
+
51
+ .mdi-account-minus:before {
52
+ content: "\f109";
53
+ }
54
+
55
+ .mdi-account-multiple:before {
56
+ content: "\f10a";
57
+ }
58
+
59
+ .mdi-account-multiple-outline:before {
60
+ content: "\f10b";
61
+ }
62
+
63
+ .mdi-account-multiple-plus:before {
64
+ content: "\f10c";
65
+ }
66
+
67
+ .mdi-account-network:before {
68
+ content: "\f10d";
69
+ }
70
+
71
+ .mdi-account-outline:before {
72
+ content: "\f10e";
73
+ }
74
+
75
+ .mdi-account-plus:before {
76
+ content: "\f10f";
77
+ }
78
+
79
+ .mdi-account-remove:before {
80
+ content: "\f110";
81
+ }
82
+
83
+ .mdi-account-search:before {
84
+ content: "\f111";
85
+ }
86
+
87
+ .mdi-account-star:before {
88
+ content: "\f112";
89
+ }
90
+
91
+ .mdi-account-star-variant:before {
92
+ content: "\f113";
93
+ }
94
+
95
+ .mdi-account-switch:before {
96
+ content: "\f114";
97
+ }
98
+
99
+ .mdi-airballoon:before {
100
+ content: "\f115";
101
+ }
102
+
103
+ .mdi-airplane:before {
104
+ content: "\f116";
105
+ }
106
+
107
+ .mdi-airplane-off:before {
108
+ content: "\f117";
109
+ }
110
+
111
+ .mdi-alarm:before {
112
+ content: "\f118";
113
+ }
114
+
115
+ .mdi-alarm-check:before {
116
+ content: "\f119";
117
+ }
118
+
119
+ .mdi-alarm-multiple:before {
120
+ content: "\f11a";
121
+ }
122
+
123
+ .mdi-alarm-off:before {
124
+ content: "\f11b";
125
+ }
126
+
127
+ .mdi-alarm-plus:before {
128
+ content: "\f11c";
129
+ }
130
+
131
+ .mdi-album:before {
132
+ content: "\f11d";
133
+ }
134
+
135
+ .mdi-alert:before {
136
+ content: "\f11e";
137
+ }
138
+
139
+ .mdi-alert-box:before {
140
+ content: "\f11f";
141
+ }
142
+
143
+ .mdi-alert-circle:before {
144
+ content: "\f120";
145
+ }
146
+
147
+ .mdi-alert-octagon:before {
148
+ content: "\f121";
149
+ }
150
+
151
+ .mdi-alpha:before {
152
+ content: "\f122";
153
+ }
154
+
155
+ .mdi-alphabetical:before {
156
+ content: "\f123";
157
+ }
158
+
159
+ .mdi-amazon:before {
160
+ content: "\f124";
161
+ }
162
+
163
+ .mdi-amazon-clouddrive:before {
164
+ content: "\f125";
165
+ }
166
+
167
+ .mdi-ambulance:before {
168
+ content: "\f126";
169
+ }
170
+
171
+ .mdi-android:before {
172
+ content: "\f127";
173
+ }
174
+
175
+ .mdi-android-debug-bridge:before {
176
+ content: "\f128";
177
+ }
178
+
179
+ .mdi-android-studio:before {
180
+ content: "\f129";
181
+ }
182
+
183
+ .mdi-apple:before {
184
+ content: "\f12a";
185
+ }
186
+
187
+ .mdi-apple-finder:before {
188
+ content: "\f12b";
189
+ }
190
+
191
+ .mdi-apple-ios:before {
192
+ content: "\f12c";
193
+ }
194
+
195
+ .mdi-apple-mobileme:before {
196
+ content: "\f12d";
197
+ }
198
+
199
+ .mdi-apple-safari:before {
200
+ content: "\f12e";
201
+ }
202
+
203
+ .mdi-appnet:before {
204
+ content: "\f12f";
205
+ }
206
+
207
+ .mdi-apps:before {
208
+ content: "\f130";
209
+ }
210
+
211
+ .mdi-archive:before {
212
+ content: "\f131";
213
+ }
214
+
215
+ .mdi-arrange-bring-forward:before {
216
+ content: "\f132";
217
+ }
218
+
219
+ .mdi-arrange-bring-to-front:before {
220
+ content: "\f133";
221
+ }
222
+
223
+ .mdi-arrange-send-backward:before {
224
+ content: "\f134";
225
+ }
226
+
227
+ .mdi-arrange-send-to-back:before {
228
+ content: "\f135";
229
+ }
230
+
231
+ .mdi-arrow-all:before {
232
+ content: "\f136";
233
+ }
234
+
235
+ .mdi-arrow-bottom-left:before {
236
+ content: "\f137";
237
+ }
238
+
239
+ .mdi-arrow-bottom-right:before {
240
+ content: "\f138";
241
+ }
242
+
243
+ .mdi-arrow-collapse:before {
244
+ content: "\f139";
245
+ }
246
+
247
+ .mdi-arrow-down:before {
248
+ content: "\f13a";
249
+ }
250
+
251
+ .mdi-arrow-down-bold:before {
252
+ content: "\f13b";
253
+ }
254
+
255
+ .mdi-arrow-down-bold-circle:before {
256
+ content: "\f13c";
257
+ }
258
+
259
+ .mdi-arrow-down-bold-circle-outline:before {
260
+ content: "\f13d";
261
+ }
262
+
263
+ .mdi-arrow-down-bold-hexagon-outline:before {
264
+ content: "\f13e";
265
+ }
266
+
267
+ .mdi-arrow-expand:before {
268
+ content: "\f13f";
269
+ }
270
+
271
+ .mdi-arrow-left:before {
272
+ content: "\f140";
273
+ }
274
+
275
+ .mdi-arrow-left-bold:before {
276
+ content: "\f141";
277
+ }
278
+
279
+ .mdi-arrow-left-bold-circle:before {
280
+ content: "\f142";
281
+ }
282
+
283
+ .mdi-arrow-left-bold-circle-outline:before {
284
+ content: "\f143";
285
+ }
286
+
287
+ .mdi-arrow-left-bold-hexagon-outline:before {
288
+ content: "\f144";
289
+ }
290
+
291
+ .mdi-arrow-right:before {
292
+ content: "\f145";
293
+ }
294
+
295
+ .mdi-arrow-right-bold:before {
296
+ content: "\f146";
297
+ }
298
+
299
+ .mdi-arrow-right-bold-circle:before {
300
+ content: "\f147";
301
+ }
302
+
303
+ .mdi-arrow-right-bold-circle-outline:before {
304
+ content: "\f148";
305
+ }
306
+
307
+ .mdi-arrow-right-bold-hexagon-outline:before {
308
+ content: "\f149";
309
+ }
310
+
311
+ .mdi-arrow-top-left:before {
312
+ content: "\f14a";
313
+ }
314
+
315
+ .mdi-arrow-top-right:before {
316
+ content: "\f14b";
317
+ }
318
+
319
+ .mdi-arrow-up:before {
320
+ content: "\f14c";
321
+ }
322
+
323
+ .mdi-arrow-up-bold:before {
324
+ content: "\f14d";
325
+ }
326
+
327
+ .mdi-arrow-up-bold-circle:before {
328
+ content: "\f14e";
329
+ }
330
+
331
+ .mdi-arrow-up-bold-circle-outline:before {
332
+ content: "\f14f";
333
+ }
334
+
335
+ .mdi-arrow-up-bold-hexagon-outline:before {
336
+ content: "\f150";
337
+ }
338
+
339
+ .mdi-at:before {
340
+ content: "\f151";
341
+ }
342
+
343
+ .mdi-attachment:before {
344
+ content: "\f152";
345
+ }
346
+
347
+ .mdi-audiobook:before {
348
+ content: "\f153";
349
+ }
350
+
351
+ .mdi-auto-fix:before {
352
+ content: "\f154";
353
+ }
354
+
355
+ .mdi-auto-upload:before {
356
+ content: "\f155";
357
+ }
358
+
359
+ .mdi-baby:before {
360
+ content: "\f156";
361
+ }
362
+
363
+ .mdi-backburger:before {
364
+ content: "\f157";
365
+ }
366
+
367
+ .mdi-backup-restore:before {
368
+ content: "\f158";
369
+ }
370
+
371
+ .mdi-bank:before {
372
+ content: "\f159";
373
+ }
374
+
375
+ .mdi-barcode:before {
376
+ content: "\f15a";
377
+ }
378
+
379
+ .mdi-barley:before {
380
+ content: "\f15b";
381
+ }
382
+
383
+ .mdi-barrel:before {
384
+ content: "\f15c";
385
+ }
386
+
387
+ .mdi-basecamp:before {
388
+ content: "\f15d";
389
+ }
390
+
391
+ .mdi-basket:before {
392
+ content: "\f15e";
393
+ }
394
+
395
+ .mdi-basket-fill:before {
396
+ content: "\f15f";
397
+ }
398
+
399
+ .mdi-basket-unfill:before {
400
+ content: "\f160";
401
+ }
402
+
403
+ .mdi-battery:before {
404
+ content: "\f161";
405
+ }
406
+
407
+ .mdi-battery-10:before {
408
+ content: "\f162";
409
+ }
410
+
411
+ .mdi-battery-20:before {
412
+ content: "\f163";
413
+ }
414
+
415
+ .mdi-battery-30:before {
416
+ content: "\f164";
417
+ }
418
+
419
+ .mdi-battery-40:before {
420
+ content: "\f165";
421
+ }
422
+
423
+ .mdi-battery-50:before {
424
+ content: "\f166";
425
+ }
426
+
427
+ .mdi-battery-60:before {
428
+ content: "\f167";
429
+ }
430
+
431
+ .mdi-battery-70:before {
432
+ content: "\f168";
433
+ }
434
+
435
+ .mdi-battery-80:before {
436
+ content: "\f169";
437
+ }
438
+
439
+ .mdi-battery-90:before {
440
+ content: "\f16a";
441
+ }
442
+
443
+ .mdi-battery-alert:before {
444
+ content: "\f16b";
445
+ }
446
+
447
+ .mdi-battery-charging-100:before {
448
+ content: "\f16c";
449
+ }
450
+
451
+ .mdi-battery-charging-20:before {
452
+ content: "\f16d";
453
+ }
454
+
455
+ .mdi-battery-charging-30:before {
456
+ content: "\f16e";
457
+ }
458
+
459
+ .mdi-battery-charging-40:before {
460
+ content: "\f16f";
461
+ }
462
+
463
+ .mdi-battery-charging-60:before {
464
+ content: "\f170";
465
+ }
466
+
467
+ .mdi-battery-charging-80:before {
468
+ content: "\f171";
469
+ }
470
+
471
+ .mdi-battery-charging-90:before {
472
+ content: "\f172";
473
+ }
474
+
475
+ .mdi-battery-minus:before {
476
+ content: "\f173";
477
+ }
478
+
479
+ .mdi-battery-negative:before {
480
+ content: "\f174";
481
+ }
482
+
483
+ .mdi-battery-outline:before {
484
+ content: "\f175";
485
+ }
486
+
487
+ .mdi-battery-plus:before {
488
+ content: "\f176";
489
+ }
490
+
491
+ .mdi-battery-positive:before {
492
+ content: "\f177";
493
+ }
494
+
495
+ .mdi-battery-unknown:before {
496
+ content: "\f178";
497
+ }
498
+
499
+ .mdi-beach:before {
500
+ content: "\f179";
501
+ }
502
+
503
+ .mdi-beaker:before {
504
+ content: "\f17a";
505
+ }
506
+
507
+ .mdi-beaker-empty:before {
508
+ content: "\f17b";
509
+ }
510
+
511
+ .mdi-beaker-empty-outline:before {
512
+ content: "\f17c";
513
+ }
514
+
515
+ .mdi-beaker-outline:before {
516
+ content: "\f17d";
517
+ }
518
+
519
+ .mdi-beats:before {
520
+ content: "\f17e";
521
+ }
522
+
523
+ .mdi-beer:before {
524
+ content: "\f17f";
525
+ }
526
+
527
+ .mdi-behance:before {
528
+ content: "\f180";
529
+ }
530
+
531
+ .mdi-bell:before {
532
+ content: "\f181";
533
+ }
534
+
535
+ .mdi-bell-off:before {
536
+ content: "\f182";
537
+ }
538
+
539
+ .mdi-bell-outline:before {
540
+ content: "\f183";
541
+ }
542
+
543
+ .mdi-bell-ring:before {
544
+ content: "\f184";
545
+ }
546
+
547
+ .mdi-bell-ring-outline:before {
548
+ content: "\f185";
549
+ }
550
+
551
+ .mdi-bell-sleep:before {
552
+ content: "\f186";
553
+ }
554
+
555
+ .mdi-beta:before {
556
+ content: "\f187";
557
+ }
558
+
559
+ .mdi-bike:before {
560
+ content: "\f188";
561
+ }
562
+
563
+ .mdi-bing:before {
564
+ content: "\f189";
565
+ }
566
+
567
+ .mdi-binoculars:before {
568
+ content: "\f18a";
569
+ }
570
+
571
+ .mdi-bio:before {
572
+ content: "\f18b";
573
+ }
574
+
575
+ .mdi-biohazard:before {
576
+ content: "\f18c";
577
+ }
578
+
579
+ .mdi-bitbucket:before {
580
+ content: "\f18d";
581
+ }
582
+
583
+ .mdi-black-mesa:before {
584
+ content: "\f18e";
585
+ }
586
+
587
+ .mdi-blackberry:before {
588
+ content: "\f18f";
589
+ }
590
+
591
+ .mdi-blinds:before {
592
+ content: "\f190";
593
+ }
594
+
595
+ .mdi-block-helper:before {
596
+ content: "\f191";
597
+ }
598
+
599
+ .mdi-blogger:before {
600
+ content: "\f192";
601
+ }
602
+
603
+ .mdi-bluetooth:before {
604
+ content: "\f193";
605
+ }
606
+
607
+ .mdi-bluetooth-audio:before {
608
+ content: "\f194";
609
+ }
610
+
611
+ .mdi-bluetooth-connect:before {
612
+ content: "\f195";
613
+ }
614
+
615
+ .mdi-bluetooth-settings:before {
616
+ content: "\f196";
617
+ }
618
+
619
+ .mdi-bluetooth-transfer:before {
620
+ content: "\f197";
621
+ }
622
+
623
+ .mdi-blur:before {
624
+ content: "\f198";
625
+ }
626
+
627
+ .mdi-blur-linear:before {
628
+ content: "\f199";
629
+ }
630
+
631
+ .mdi-blur-off:before {
632
+ content: "\f19a";
633
+ }
634
+
635
+ .mdi-blur-radial:before {
636
+ content: "\f19b";
637
+ }
638
+
639
+ .mdi-bone:before {
640
+ content: "\f19c";
641
+ }
642
+
643
+ .mdi-book:before {
644
+ content: "\f19d";
645
+ }
646
+
647
+ .mdi-book-multiple:before {
648
+ content: "\f19e";
649
+ }
650
+
651
+ .mdi-book-multiple-variant:before {
652
+ content: "\f19f";
653
+ }
654
+
655
+ .mdi-book-open:before {
656
+ content: "\f1a0";
657
+ }
658
+
659
+ .mdi-book-variant:before {
660
+ content: "\f1a1";
661
+ }
662
+
663
+ .mdi-bookmark:before {
664
+ content: "\f1a2";
665
+ }
666
+
667
+ .mdi-bookmark-check:before {
668
+ content: "\f1a3";
669
+ }
670
+
671
+ .mdi-bookmark-music:before {
672
+ content: "\f1a4";
673
+ }
674
+
675
+ .mdi-bookmark-outline:before {
676
+ content: "\f1a5";
677
+ }
678
+
679
+ .mdi-bookmark-outline-plus:before {
680
+ content: "\f1a6";
681
+ }
682
+
683
+ .mdi-bookmark-plus:before {
684
+ content: "\f1a7";
685
+ }
686
+
687
+ .mdi-bookmark-remove:before {
688
+ content: "\f1a8";
689
+ }
690
+
691
+ .mdi-border-all:before {
692
+ content: "\f1a9";
693
+ }
694
+
695
+ .mdi-border-bottom:before {
696
+ content: "\f1aa";
697
+ }
698
+
699
+ .mdi-border-color:before {
700
+ content: "\f1ab";
701
+ }
702
+
703
+ .mdi-border-horizontal:before {
704
+ content: "\f1ac";
705
+ }
706
+
707
+ .mdi-border-inside:before {
708
+ content: "\f1ad";
709
+ }
710
+
711
+ .mdi-border-left:before {
712
+ content: "\f1ae";
713
+ }
714
+
715
+ .mdi-border-none:before {
716
+ content: "\f1af";
717
+ }
718
+
719
+ .mdi-border-outside:before {
720
+ content: "\f1b0";
721
+ }
722
+
723
+ .mdi-border-right:before {
724
+ content: "\f1b1";
725
+ }
726
+
727
+ .mdi-border-top:before {
728
+ content: "\f1b2";
729
+ }
730
+
731
+ .mdi-border-vertical:before {
732
+ content: "\f1b3";
733
+ }
734
+
735
+ .mdi-bowling:before {
736
+ content: "\f1b4";
737
+ }
738
+
739
+ .mdi-box:before {
740
+ content: "\f1b5";
741
+ }
742
+
743
+ .mdi-briefcase:before {
744
+ content: "\f1b6";
745
+ }
746
+
747
+ .mdi-briefcase-check:before {
748
+ content: "\f1b7";
749
+ }
750
+
751
+ .mdi-briefcase-download:before {
752
+ content: "\f1b8";
753
+ }
754
+
755
+ .mdi-briefcase-upload:before {
756
+ content: "\f1b9";
757
+ }
758
+
759
+ .mdi-brightness-1:before {
760
+ content: "\f1ba";
761
+ }
762
+
763
+ .mdi-brightness-2:before {
764
+ content: "\f1bb";
765
+ }
766
+
767
+ .mdi-brightness-3:before {
768
+ content: "\f1bc";
769
+ }
770
+
771
+ .mdi-brightness-4:before {
772
+ content: "\f1bd";
773
+ }
774
+
775
+ .mdi-brightness-5:before {
776
+ content: "\f1be";
777
+ }
778
+
779
+ .mdi-brightness-6:before {
780
+ content: "\f1bf";
781
+ }
782
+
783
+ .mdi-brightness-7:before {
784
+ content: "\f1c0";
785
+ }
786
+
787
+ .mdi-brightness-auto:before {
788
+ content: "\f1c1";
789
+ }
790
+
791
+ .mdi-broom:before {
792
+ content: "\f1c2";
793
+ }
794
+
795
+ .mdi-brush:before {
796
+ content: "\f1c3";
797
+ }
798
+
799
+ .mdi-bug:before {
800
+ content: "\f1c4";
801
+ }
802
+
803
+ .mdi-bulletin-board:before {
804
+ content: "\f1c5";
805
+ }
806
+
807
+ .mdi-bullhorn:before {
808
+ content: "\f1c6";
809
+ }
810
+
811
+ .mdi-bus:before {
812
+ content: "\f1c7";
813
+ }
814
+
815
+ .mdi-cake:before {
816
+ content: "\f1c8";
817
+ }
818
+
819
+ .mdi-cake-variant:before {
820
+ content: "\f1c9";
821
+ }
822
+
823
+ .mdi-calculator:before {
824
+ content: "\f1ca";
825
+ }
826
+
827
+ .mdi-calendar:before {
828
+ content: "\f1cb";
829
+ }
830
+
831
+ .mdi-calendar-blank:before {
832
+ content: "\f1cc";
833
+ }
834
+
835
+ .mdi-calendar-check:before {
836
+ content: "\f1cd";
837
+ }
838
+
839
+ .mdi-calendar-clock:before {
840
+ content: "\f1ce";
841
+ }
842
+
843
+ .mdi-calendar-multiple:before {
844
+ content: "\f1cf";
845
+ }
846
+
847
+ .mdi-calendar-multiple-check:before {
848
+ content: "\f1d0";
849
+ }
850
+
851
+ .mdi-calendar-plus:before {
852
+ content: "\f1d1";
853
+ }
854
+
855
+ .mdi-calendar-remove:before {
856
+ content: "\f1d2";
857
+ }
858
+
859
+ .mdi-calendar-text:before {
860
+ content: "\f1d3";
861
+ }
862
+
863
+ .mdi-calendar-today:before {
864
+ content: "\f1d4";
865
+ }
866
+
867
+ .mdi-camcorder:before {
868
+ content: "\f1d5";
869
+ }
870
+
871
+ .mdi-camcorder-box:before {
872
+ content: "\f1d6";
873
+ }
874
+
875
+ .mdi-camcorder-box-off:before {
876
+ content: "\f1d7";
877
+ }
878
+
879
+ .mdi-camcorder-off:before {
880
+ content: "\f1d8";
881
+ }
882
+
883
+ .mdi-camera:before {
884
+ content: "\f1d9";
885
+ }
886
+
887
+ .mdi-camera-front:before {
888
+ content: "\f1da";
889
+ }
890
+
891
+ .mdi-camera-front-variant:before {
892
+ content: "\f1db";
893
+ }
894
+
895
+ .mdi-camera-iris:before {
896
+ content: "\f1dc";
897
+ }
898
+
899
+ .mdi-camera-party-mode:before {
900
+ content: "\f1dd";
901
+ }
902
+
903
+ .mdi-camera-rear:before {
904
+ content: "\f1de";
905
+ }
906
+
907
+ .mdi-camera-rear-variant:before {
908
+ content: "\f1df";
909
+ }
910
+
911
+ .mdi-camera-switch:before {
912
+ content: "\f1e0";
913
+ }
914
+
915
+ .mdi-camera-timer:before {
916
+ content: "\f1e1";
917
+ }
918
+
919
+ .mdi-candycane:before {
920
+ content: "\f1e2";
921
+ }
922
+
923
+ .mdi-car:before {
924
+ content: "\f1e3";
925
+ }
926
+
927
+ .mdi-car-wash:before {
928
+ content: "\f1e4";
929
+ }
930
+
931
+ .mdi-carrot:before {
932
+ content: "\f1e5";
933
+ }
934
+
935
+ .mdi-cart:before {
936
+ content: "\f1e6";
937
+ }
938
+
939
+ .mdi-cart-outline:before {
940
+ content: "\f1e7";
941
+ }
942
+
943
+ .mdi-cash:before {
944
+ content: "\f1e8";
945
+ }
946
+
947
+ .mdi-cash-100:before {
948
+ content: "\f1e9";
949
+ }
950
+
951
+ .mdi-cash-multiple:before {
952
+ content: "\f1ea";
953
+ }
954
+
955
+ .mdi-cash-usd:before {
956
+ content: "\f1eb";
957
+ }
958
+
959
+ .mdi-cast:before {
960
+ content: "\f1ec";
961
+ }
962
+
963
+ .mdi-cast-connected:before {
964
+ content: "\f1ed";
965
+ }
966
+
967
+ .mdi-castle:before {
968
+ content: "\f1ee";
969
+ }
970
+
971
+ .mdi-cat:before {
972
+ content: "\f1ef";
973
+ }
974
+
975
+ .mdi-cellphone:before {
976
+ content: "\f1f0";
977
+ }
978
+
979
+ .mdi-cellphone-android:before {
980
+ content: "\f1f1";
981
+ }
982
+
983
+ .mdi-cellphone-dock:before {
984
+ content: "\f1f2";
985
+ }
986
+
987
+ .mdi-cellphone-iphone:before {
988
+ content: "\f1f3";
989
+ }
990
+
991
+ .mdi-cellphone-link:before {
992
+ content: "\f1f4";
993
+ }
994
+
995
+ .mdi-cellphone-link-off:before {
996
+ content: "\f1f5";
997
+ }
998
+
999
+ .mdi-cellphone-settings:before {
1000
+ content: "\f1f6";
1001
+ }
1002
+
1003
+ .mdi-chair-school:before {
1004
+ content: "\f1f7";
1005
+ }
1006
+
1007
+ .mdi-chart-arc:before {
1008
+ content: "\f1f8";
1009
+ }
1010
+
1011
+ .mdi-chart-areaspline:before {
1012
+ content: "\f1f9";
1013
+ }
1014
+
1015
+ .mdi-chart-bar:before {
1016
+ content: "\f1fa";
1017
+ }
1018
+
1019
+ .mdi-chart-histogram:before {
1020
+ content: "\f1fb";
1021
+ }
1022
+
1023
+ .mdi-chart-line:before {
1024
+ content: "\f1fc";
1025
+ }
1026
+
1027
+ .mdi-chart-pie:before {
1028
+ content: "\f1fd";
1029
+ }
1030
+
1031
+ .mdi-check:before {
1032
+ content: "\f1fe";
1033
+ }
1034
+
1035
+ .mdi-check-all:before {
1036
+ content: "\f1ff";
1037
+ }
1038
+
1039
+ .mdi-checkbox-blank:before {
1040
+ content: "\f200";
1041
+ }
1042
+
1043
+ .mdi-checkbox-blank-circle:before {
1044
+ content: "\f201";
1045
+ }
1046
+
1047
+ .mdi-checkbox-blank-circle-outline:before {
1048
+ content: "\f202";
1049
+ }
1050
+
1051
+ .mdi-checkbox-blank-outline:before {
1052
+ content: "\f203";
1053
+ }
1054
+
1055
+ .mdi-checkbox-marked:before {
1056
+ content: "\f204";
1057
+ }
1058
+
1059
+ .mdi-checkbox-marked-circle:before {
1060
+ content: "\f205";
1061
+ }
1062
+
1063
+ .mdi-checkbox-marked-circle-outline:before {
1064
+ content: "\f206";
1065
+ }
1066
+
1067
+ .mdi-checkbox-marked-outline:before {
1068
+ content: "\f207";
1069
+ }
1070
+
1071
+ .mdi-checkbox-multiple-blank:before {
1072
+ content: "\f208";
1073
+ }
1074
+
1075
+ .mdi-checkbox-multiple-blank-outline:before {
1076
+ content: "\f209";
1077
+ }
1078
+
1079
+ .mdi-checkbox-multiple-marked:before {
1080
+ content: "\f20a";
1081
+ }
1082
+
1083
+ .mdi-checkbox-multiple-marked-outline:before {
1084
+ content: "\f20b";
1085
+ }
1086
+
1087
+ .mdi-checkerboard:before {
1088
+ content: "\f20c";
1089
+ }
1090
+
1091
+ .mdi-chevron-double-down:before {
1092
+ content: "\f20d";
1093
+ }
1094
+
1095
+ .mdi-chevron-double-left:before {
1096
+ content: "\f20e";
1097
+ }
1098
+
1099
+ .mdi-chevron-double-right:before {
1100
+ content: "\f20f";
1101
+ }
1102
+
1103
+ .mdi-chevron-double-up:before {
1104
+ content: "\f210";
1105
+ }
1106
+
1107
+ .mdi-chevron-down:before {
1108
+ content: "\f211";
1109
+ }
1110
+
1111
+ .mdi-chevron-left:before {
1112
+ content: "\f212";
1113
+ }
1114
+
1115
+ .mdi-chevron-right:before {
1116
+ content: "\f213";
1117
+ }
1118
+
1119
+ .mdi-chevron-up:before {
1120
+ content: "\f214";
1121
+ }
1122
+
1123
+ .mdi-church:before {
1124
+ content: "\f215";
1125
+ }
1126
+
1127
+ .mdi-cisco-webex:before {
1128
+ content: "\f216";
1129
+ }
1130
+
1131
+ .mdi-city:before {
1132
+ content: "\f217";
1133
+ }
1134
+
1135
+ .mdi-clipboard:before {
1136
+ content: "\f218";
1137
+ }
1138
+
1139
+ .mdi-clipboard-account:before {
1140
+ content: "\f219";
1141
+ }
1142
+
1143
+ .mdi-clipboard-alert:before {
1144
+ content: "\f21a";
1145
+ }
1146
+
1147
+ .mdi-clipboard-arrow-down:before {
1148
+ content: "\f21b";
1149
+ }
1150
+
1151
+ .mdi-clipboard-arrow-left:before {
1152
+ content: "\f21c";
1153
+ }
1154
+
1155
+ .mdi-clipboard-check:before {
1156
+ content: "\f21d";
1157
+ }
1158
+
1159
+ .mdi-clipboard-outline:before {
1160
+ content: "\f21e";
1161
+ }
1162
+
1163
+ .mdi-clipboard-text:before {
1164
+ content: "\f21f";
1165
+ }
1166
+
1167
+ .mdi-clippy:before {
1168
+ content: "\f220";
1169
+ }
1170
+
1171
+ .mdi-clock:before {
1172
+ content: "\f221";
1173
+ }
1174
+
1175
+ .mdi-clock-fast:before {
1176
+ content: "\f222";
1177
+ }
1178
+
1179
+ .mdi-close:before {
1180
+ content: "\f223";
1181
+ }
1182
+
1183
+ .mdi-close-box:before {
1184
+ content: "\f224";
1185
+ }
1186
+
1187
+ .mdi-close-box-outline:before {
1188
+ content: "\f225";
1189
+ }
1190
+
1191
+ .mdi-close-circle:before {
1192
+ content: "\f226";
1193
+ }
1194
+
1195
+ .mdi-close-circle-outline:before {
1196
+ content: "\f227";
1197
+ }
1198
+
1199
+ .mdi-close-network:before {
1200
+ content: "\f228";
1201
+ }
1202
+
1203
+ .mdi-closed-caption:before {
1204
+ content: "\f229";
1205
+ }
1206
+
1207
+ .mdi-cloud:before {
1208
+ content: "\f22a";
1209
+ }
1210
+
1211
+ .mdi-cloud-check:before {
1212
+ content: "\f22b";
1213
+ }
1214
+
1215
+ .mdi-cloud-circle:before {
1216
+ content: "\f22c";
1217
+ }
1218
+
1219
+ .mdi-cloud-download:before {
1220
+ content: "\f22d";
1221
+ }
1222
+
1223
+ .mdi-cloud-outline:before {
1224
+ content: "\f22e";
1225
+ }
1226
+
1227
+ .mdi-cloud-outline-off:before {
1228
+ content: "\f22f";
1229
+ }
1230
+
1231
+ .mdi-cloud-upload:before {
1232
+ content: "\f230";
1233
+ }
1234
+
1235
+ .mdi-code-array:before {
1236
+ content: "\f231";
1237
+ }
1238
+
1239
+ .mdi-code-braces:before {
1240
+ content: "\f232";
1241
+ }
1242
+
1243
+ .mdi-code-equal:before {
1244
+ content: "\f233";
1245
+ }
1246
+
1247
+ .mdi-code-greater-than:before {
1248
+ content: "\f234";
1249
+ }
1250
+
1251
+ .mdi-code-less-than:before {
1252
+ content: "\f235";
1253
+ }
1254
+
1255
+ .mdi-code-less-than-or-equal:before {
1256
+ content: "\f236";
1257
+ }
1258
+
1259
+ .mdi-code-not-equal:before {
1260
+ content: "\f237";
1261
+ }
1262
+
1263
+ .mdi-code-not-equal-variant:before {
1264
+ content: "\f238";
1265
+ }
1266
+
1267
+ .mdi-code-string:before {
1268
+ content: "\f239";
1269
+ }
1270
+
1271
+ .mdi-code-tags:before {
1272
+ content: "\f23a";
1273
+ }
1274
+
1275
+ .mdi-codepen:before {
1276
+ content: "\f23b";
1277
+ }
1278
+
1279
+ .mdi-coffee:before {
1280
+ content: "\f23c";
1281
+ }
1282
+
1283
+ .mdi-coffee-to-go:before {
1284
+ content: "\f23d";
1285
+ }
1286
+
1287
+ .mdi-coin:before {
1288
+ content: "\f23e";
1289
+ }
1290
+
1291
+ .mdi-color-helper:before {
1292
+ content: "\f23f";
1293
+ }
1294
+
1295
+ .mdi-comment:before {
1296
+ content: "\f240";
1297
+ }
1298
+
1299
+ .mdi-comment-account:before {
1300
+ content: "\f241";
1301
+ }
1302
+
1303
+ .mdi-comment-account-outline:before {
1304
+ content: "\f242";
1305
+ }
1306
+
1307
+ .mdi-comment-alert:before {
1308
+ content: "\f243";
1309
+ }
1310
+
1311
+ .mdi-comment-alert-outline:before {
1312
+ content: "\f244";
1313
+ }
1314
+
1315
+ .mdi-comment-check:before {
1316
+ content: "\f245";
1317
+ }
1318
+
1319
+ .mdi-comment-check-outline:before {
1320
+ content: "\f246";
1321
+ }
1322
+
1323
+ .mdi-comment-multiple-outline:before {
1324
+ content: "\f247";
1325
+ }
1326
+
1327
+ .mdi-comment-outline:before {
1328
+ content: "\f248";
1329
+ }
1330
+
1331
+ .mdi-comment-plus-outline:before {
1332
+ content: "\f249";
1333
+ }
1334
+
1335
+ .mdi-comment-processing:before {
1336
+ content: "\f24a";
1337
+ }
1338
+
1339
+ .mdi-comment-processing-outline:before {
1340
+ content: "\f24b";
1341
+ }
1342
+
1343
+ .mdi-comment-remove-outline:before {
1344
+ content: "\f24c";
1345
+ }
1346
+
1347
+ .mdi-comment-text:before {
1348
+ content: "\f24d";
1349
+ }
1350
+
1351
+ .mdi-comment-text-outline:before {
1352
+ content: "\f24e";
1353
+ }
1354
+
1355
+ .mdi-compare:before {
1356
+ content: "\f24f";
1357
+ }
1358
+
1359
+ .mdi-compass:before {
1360
+ content: "\f250";
1361
+ }
1362
+
1363
+ .mdi-compass-outline:before {
1364
+ content: "\f251";
1365
+ }
1366
+
1367
+ .mdi-console:before {
1368
+ content: "\f252";
1369
+ }
1370
+
1371
+ .mdi-content-copy:before {
1372
+ content: "\f253";
1373
+ }
1374
+
1375
+ .mdi-content-cut:before {
1376
+ content: "\f254";
1377
+ }
1378
+
1379
+ .mdi-content-duplicate:before {
1380
+ content: "\f255";
1381
+ }
1382
+
1383
+ .mdi-content-paste:before {
1384
+ content: "\f256";
1385
+ }
1386
+
1387
+ .mdi-content-save:before {
1388
+ content: "\f257";
1389
+ }
1390
+
1391
+ .mdi-content-save-all:before {
1392
+ content: "\f258";
1393
+ }
1394
+
1395
+ .mdi-contrast:before {
1396
+ content: "\f259";
1397
+ }
1398
+
1399
+ .mdi-contrast-box:before {
1400
+ content: "\f25a";
1401
+ }
1402
+
1403
+ .mdi-contrast-circle:before {
1404
+ content: "\f25b";
1405
+ }
1406
+
1407
+ .mdi-cow:before {
1408
+ content: "\f25c";
1409
+ }
1410
+
1411
+ .mdi-credit-card:before {
1412
+ content: "\f25d";
1413
+ }
1414
+
1415
+ .mdi-credit-card-multiple:before {
1416
+ content: "\f25e";
1417
+ }
1418
+
1419
+ .mdi-crop:before {
1420
+ content: "\f25f";
1421
+ }
1422
+
1423
+ .mdi-crop-free:before {
1424
+ content: "\f260";
1425
+ }
1426
+
1427
+ .mdi-crop-landscape:before {
1428
+ content: "\f261";
1429
+ }
1430
+
1431
+ .mdi-crop-portrait:before {
1432
+ content: "\f262";
1433
+ }
1434
+
1435
+ .mdi-crop-square:before {
1436
+ content: "\f263";
1437
+ }
1438
+
1439
+ .mdi-crosshairs:before {
1440
+ content: "\f264";
1441
+ }
1442
+
1443
+ .mdi-crosshairs-gps:before {
1444
+ content: "\f265";
1445
+ }
1446
+
1447
+ .mdi-crown:before {
1448
+ content: "\f266";
1449
+ }
1450
+
1451
+ .mdi-cube:before {
1452
+ content: "\f267";
1453
+ }
1454
+
1455
+ .mdi-cube-outline:before {
1456
+ content: "\f268";
1457
+ }
1458
+
1459
+ .mdi-cube-unfolded:before {
1460
+ content: "\f269";
1461
+ }
1462
+
1463
+ .mdi-cup:before {
1464
+ content: "\f26a";
1465
+ }
1466
+
1467
+ .mdi-cup-water:before {
1468
+ content: "\f26b";
1469
+ }
1470
+
1471
+ .mdi-currency-btc:before {
1472
+ content: "\f26c";
1473
+ }
1474
+
1475
+ .mdi-currency-eur:before {
1476
+ content: "\f26d";
1477
+ }
1478
+
1479
+ .mdi-currency-gbp:before {
1480
+ content: "\f26e";
1481
+ }
1482
+
1483
+ .mdi-currency-inr:before {
1484
+ content: "\f26f";
1485
+ }
1486
+
1487
+ .mdi-currency-rub:before {
1488
+ content: "\f270";
1489
+ }
1490
+
1491
+ .mdi-currency-try:before {
1492
+ content: "\f271";
1493
+ }
1494
+
1495
+ .mdi-currency-usd:before {
1496
+ content: "\f272";
1497
+ }
1498
+
1499
+ .mdi-cursor-default:before {
1500
+ content: "\f273";
1501
+ }
1502
+
1503
+ .mdi-cursor-default-outline:before {
1504
+ content: "\f274";
1505
+ }
1506
+
1507
+ .mdi-cursor-move:before {
1508
+ content: "\f275";
1509
+ }
1510
+
1511
+ .mdi-cursor-pointer:before {
1512
+ content: "\f276";
1513
+ }
1514
+
1515
+ .mdi-database:before {
1516
+ content: "\f277";
1517
+ }
1518
+
1519
+ .mdi-database-minus:before {
1520
+ content: "\f278";
1521
+ }
1522
+
1523
+ .mdi-database-outline:before {
1524
+ content: "\f279";
1525
+ }
1526
+
1527
+ .mdi-database-plus:before {
1528
+ content: "\f27a";
1529
+ }
1530
+
1531
+ .mdi-debug-step-into:before {
1532
+ content: "\f27b";
1533
+ }
1534
+
1535
+ .mdi-debug-step-out:before {
1536
+ content: "\f27c";
1537
+ }
1538
+
1539
+ .mdi-debug-step-over:before {
1540
+ content: "\f27d";
1541
+ }
1542
+
1543
+ .mdi-decimal-decrease:before {
1544
+ content: "\f27e";
1545
+ }
1546
+
1547
+ .mdi-decimal-increase:before {
1548
+ content: "\f27f";
1549
+ }
1550
+
1551
+ .mdi-delete:before {
1552
+ content: "\f280";
1553
+ }
1554
+
1555
+ .mdi-delete-variant:before {
1556
+ content: "\f281";
1557
+ }
1558
+
1559
+ .mdi-deskphone:before {
1560
+ content: "\f282";
1561
+ }
1562
+
1563
+ .mdi-desktop-mac:before {
1564
+ content: "\f283";
1565
+ }
1566
+
1567
+ .mdi-desktop-tower:before {
1568
+ content: "\f284";
1569
+ }
1570
+
1571
+ .mdi-details:before {
1572
+ content: "\f285";
1573
+ }
1574
+
1575
+ .mdi-deviantart:before {
1576
+ content: "\f286";
1577
+ }
1578
+
1579
+ .mdi-diamond:before {
1580
+ content: "\f287";
1581
+ }
1582
+
1583
+ .mdi-dice:before {
1584
+ content: "\f288";
1585
+ }
1586
+
1587
+ .mdi-dice-1:before {
1588
+ content: "\f289";
1589
+ }
1590
+
1591
+ .mdi-dice-2:before {
1592
+ content: "\f28a";
1593
+ }
1594
+
1595
+ .mdi-dice-3:before {
1596
+ content: "\f28b";
1597
+ }
1598
+
1599
+ .mdi-dice-4:before {
1600
+ content: "\f28c";
1601
+ }
1602
+
1603
+ .mdi-dice-5:before {
1604
+ content: "\f28d";
1605
+ }
1606
+
1607
+ .mdi-dice-6:before {
1608
+ content: "\f28e";
1609
+ }
1610
+
1611
+ .mdi-directions:before {
1612
+ content: "\f28f";
1613
+ }
1614
+
1615
+ .mdi-disk-alert:before {
1616
+ content: "\f290";
1617
+ }
1618
+
1619
+ .mdi-disqus:before {
1620
+ content: "\f291";
1621
+ }
1622
+
1623
+ .mdi-disqus-outline:before {
1624
+ content: "\f292";
1625
+ }
1626
+
1627
+ .mdi-division:before {
1628
+ content: "\f293";
1629
+ }
1630
+
1631
+ .mdi-division-box:before {
1632
+ content: "\f294";
1633
+ }
1634
+
1635
+ .mdi-dns:before {
1636
+ content: "\f295";
1637
+ }
1638
+
1639
+ .mdi-domain:before {
1640
+ content: "\f296";
1641
+ }
1642
+
1643
+ .mdi-dots-horizontal:before {
1644
+ content: "\f297";
1645
+ }
1646
+
1647
+ .mdi-dots-vertical:before {
1648
+ content: "\f298";
1649
+ }
1650
+
1651
+ .mdi-download:before {
1652
+ content: "\f299";
1653
+ }
1654
+
1655
+ .mdi-drag:before {
1656
+ content: "\f29a";
1657
+ }
1658
+
1659
+ .mdi-drag-horizontal:before {
1660
+ content: "\f29b";
1661
+ }
1662
+
1663
+ .mdi-drag-vertical:before {
1664
+ content: "\f29c";
1665
+ }
1666
+
1667
+ .mdi-drawing:before {
1668
+ content: "\f29d";
1669
+ }
1670
+
1671
+ .mdi-drawing-box:before {
1672
+ content: "\f29e";
1673
+ }
1674
+
1675
+ .mdi-dribbble:before {
1676
+ content: "\f29f";
1677
+ }
1678
+
1679
+ .mdi-dribbble-box:before {
1680
+ content: "\f2a0";
1681
+ }
1682
+
1683
+ .mdi-drone:before {
1684
+ content: "\f2a1";
1685
+ }
1686
+
1687
+ .mdi-dropbox:before {
1688
+ content: "\f2a2";
1689
+ }
1690
+
1691
+ .mdi-drupal:before {
1692
+ content: "\f2a3";
1693
+ }
1694
+
1695
+ .mdi-duck:before {
1696
+ content: "\f2a4";
1697
+ }
1698
+
1699
+ .mdi-dumbbell:before {
1700
+ content: "\f2a5";
1701
+ }
1702
+
1703
+ .mdi-earth:before {
1704
+ content: "\f2a6";
1705
+ }
1706
+
1707
+ .mdi-earth-off:before {
1708
+ content: "\f2a7";
1709
+ }
1710
+
1711
+ .mdi-edge:before {
1712
+ content: "\f2a8";
1713
+ }
1714
+
1715
+ .mdi-eject:before {
1716
+ content: "\f2a9";
1717
+ }
1718
+
1719
+ .mdi-elevation-decline:before {
1720
+ content: "\f2aa";
1721
+ }
1722
+
1723
+ .mdi-elevation-rise:before {
1724
+ content: "\f2ab";
1725
+ }
1726
+
1727
+ .mdi-elevator:before {
1728
+ content: "\f2ac";
1729
+ }
1730
+
1731
+ .mdi-email:before {
1732
+ content: "\f2ad";
1733
+ }
1734
+
1735
+ .mdi-email-open:before {
1736
+ content: "\f2ae";
1737
+ }
1738
+
1739
+ .mdi-email-outline:before {
1740
+ content: "\f2af";
1741
+ }
1742
+
1743
+ .mdi-email-secure:before {
1744
+ content: "\f2b0";
1745
+ }
1746
+
1747
+ .mdi-emoticon:before {
1748
+ content: "\f2b1";
1749
+ }
1750
+
1751
+ .mdi-emoticon-cool:before {
1752
+ content: "\f2b2";
1753
+ }
1754
+
1755
+ .mdi-emoticon-devil:before {
1756
+ content: "\f2b3";
1757
+ }
1758
+
1759
+ .mdi-emoticon-happy:before {
1760
+ content: "\f2b4";
1761
+ }
1762
+
1763
+ .mdi-emoticon-neutral:before {
1764
+ content: "\f2b5";
1765
+ }
1766
+
1767
+ .mdi-emoticon-poop:before {
1768
+ content: "\f2b6";
1769
+ }
1770
+
1771
+ .mdi-emoticon-sad:before {
1772
+ content: "\f2b7";
1773
+ }
1774
+
1775
+ .mdi-emoticon-tongue:before {
1776
+ content: "\f2b8";
1777
+ }
1778
+
1779
+ .mdi-engine:before {
1780
+ content: "\f2b9";
1781
+ }
1782
+
1783
+ .mdi-engine-outline:before {
1784
+ content: "\f2ba";
1785
+ }
1786
+
1787
+ .mdi-equal:before {
1788
+ content: "\f2bb";
1789
+ }
1790
+
1791
+ .mdi-equal-box:before {
1792
+ content: "\f2bc";
1793
+ }
1794
+
1795
+ .mdi-eraser:before {
1796
+ content: "\f2bd";
1797
+ }
1798
+
1799
+ .mdi-escalator:before {
1800
+ content: "\f2be";
1801
+ }
1802
+
1803
+ .mdi-etsy:before {
1804
+ content: "\f2bf";
1805
+ }
1806
+
1807
+ .mdi-evernote:before {
1808
+ content: "\f2c0";
1809
+ }
1810
+
1811
+ .mdi-exclamation:before {
1812
+ content: "\f2c1";
1813
+ }
1814
+
1815
+ .mdi-exit-to-app:before {
1816
+ content: "\f2c2";
1817
+ }
1818
+
1819
+ .mdi-export:before {
1820
+ content: "\f2c3";
1821
+ }
1822
+
1823
+ .mdi-eye:before {
1824
+ content: "\f2c4";
1825
+ }
1826
+
1827
+ .mdi-eye-off:before {
1828
+ content: "\f2c5";
1829
+ }
1830
+
1831
+ .mdi-eyedropper:before {
1832
+ content: "\f2c6";
1833
+ }
1834
+
1835
+ .mdi-eyedropper-variant:before {
1836
+ content: "\f2c7";
1837
+ }
1838
+
1839
+ .mdi-facebook:before {
1840
+ content: "\f2c8";
1841
+ }
1842
+
1843
+ .mdi-facebook-box:before {
1844
+ content: "\f2c9";
1845
+ }
1846
+
1847
+ .mdi-facebook-messenger:before {
1848
+ content: "\f2ca";
1849
+ }
1850
+
1851
+ .mdi-factory:before {
1852
+ content: "\f2cb";
1853
+ }
1854
+
1855
+ .mdi-fan:before {
1856
+ content: "\f2cc";
1857
+ }
1858
+
1859
+ .mdi-fast-forward:before {
1860
+ content: "\f2cd";
1861
+ }
1862
+
1863
+ .mdi-ferry:before {
1864
+ content: "\f2ce";
1865
+ }
1866
+
1867
+ .mdi-file:before {
1868
+ content: "\f2cf";
1869
+ }
1870
+
1871
+ .mdi-file-cloud:before {
1872
+ content: "\f2d0";
1873
+ }
1874
+
1875
+ .mdi-file-delimited:before {
1876
+ content: "\f2d1";
1877
+ }
1878
+
1879
+ .mdi-file-document:before {
1880
+ content: "\f2d2";
1881
+ }
1882
+
1883
+ .mdi-file-document-box:before {
1884
+ content: "\f2d3";
1885
+ }
1886
+
1887
+ .mdi-file-excel:before {
1888
+ content: "\f2d4";
1889
+ }
1890
+
1891
+ .mdi-file-excel-box:before {
1892
+ content: "\f2d5";
1893
+ }
1894
+
1895
+ .mdi-file-find:before {
1896
+ content: "\f2d6";
1897
+ }
1898
+
1899
+ .mdi-file-image:before {
1900
+ content: "\f2d7";
1901
+ }
1902
+
1903
+ .mdi-file-image-box:before {
1904
+ content: "\f2d8";
1905
+ }
1906
+
1907
+ .mdi-file-multiple:before {
1908
+ content: "\f2d9";
1909
+ }
1910
+
1911
+ .mdi-file-music:before {
1912
+ content: "\f2da";
1913
+ }
1914
+
1915
+ .mdi-file-outline:before {
1916
+ content: "\f2db";
1917
+ }
1918
+
1919
+ .mdi-file-pdf:before {
1920
+ content: "\f2dc";
1921
+ }
1922
+
1923
+ .mdi-file-pdf-box:before {
1924
+ content: "\f2dd";
1925
+ }
1926
+
1927
+ .mdi-file-powerpoint:before {
1928
+ content: "\f2de";
1929
+ }
1930
+
1931
+ .mdi-file-powerpoint-box:before {
1932
+ content: "\f2df";
1933
+ }
1934
+
1935
+ .mdi-file-presentation-box:before {
1936
+ content: "\f2e0";
1937
+ }
1938
+
1939
+ .mdi-file-video:before {
1940
+ content: "\f2e1";
1941
+ }
1942
+
1943
+ .mdi-file-word:before {
1944
+ content: "\f2e2";
1945
+ }
1946
+
1947
+ .mdi-file-word-box:before {
1948
+ content: "\f2e3";
1949
+ }
1950
+
1951
+ .mdi-file-xml:before {
1952
+ content: "\f2e4";
1953
+ }
1954
+
1955
+ .mdi-film:before {
1956
+ content: "\f2e5";
1957
+ }
1958
+
1959
+ .mdi-filmstrip:before {
1960
+ content: "\f2e6";
1961
+ }
1962
+
1963
+ .mdi-filmstrip-off:before {
1964
+ content: "\f2e7";
1965
+ }
1966
+
1967
+ .mdi-filter:before {
1968
+ content: "\f2e8";
1969
+ }
1970
+
1971
+ .mdi-filter-outline:before {
1972
+ content: "\f2e9";
1973
+ }
1974
+
1975
+ .mdi-filter-remove:before {
1976
+ content: "\f2ea";
1977
+ }
1978
+
1979
+ .mdi-filter-remove-outline:before {
1980
+ content: "\f2eb";
1981
+ }
1982
+
1983
+ .mdi-filter-variant:before {
1984
+ content: "\f2ec";
1985
+ }
1986
+
1987
+ .mdi-fire:before {
1988
+ content: "\f2ed";
1989
+ }
1990
+
1991
+ .mdi-firefox:before {
1992
+ content: "\f2ee";
1993
+ }
1994
+
1995
+ .mdi-fish:before {
1996
+ content: "\f2ef";
1997
+ }
1998
+
1999
+ .mdi-flag:before {
2000
+ content: "\f2f0";
2001
+ }
2002
+
2003
+ .mdi-flag-checkered:before {
2004
+ content: "\f2f1";
2005
+ }
2006
+
2007
+ .mdi-flag-outline:before {
2008
+ content: "\f2f2";
2009
+ }
2010
+
2011
+ .mdi-flag-outline-variant:before {
2012
+ content: "\f2f3";
2013
+ }
2014
+
2015
+ .mdi-flag-triangle:before {
2016
+ content: "\f2f4";
2017
+ }
2018
+
2019
+ .mdi-flag-variant:before {
2020
+ content: "\f2f5";
2021
+ }
2022
+
2023
+ .mdi-flash:before {
2024
+ content: "\f2f6";
2025
+ }
2026
+
2027
+ .mdi-flash-auto:before {
2028
+ content: "\f2f7";
2029
+ }
2030
+
2031
+ .mdi-flash-off:before {
2032
+ content: "\f2f8";
2033
+ }
2034
+
2035
+ .mdi-flashlight:before {
2036
+ content: "\f2f9";
2037
+ }
2038
+
2039
+ .mdi-flashlight-off:before {
2040
+ content: "\f2fa";
2041
+ }
2042
+
2043
+ .mdi-flattr:before {
2044
+ content: "\f2fb";
2045
+ }
2046
+
2047
+ .mdi-flip-to-back:before {
2048
+ content: "\f2fc";
2049
+ }
2050
+
2051
+ .mdi-flip-to-front:before {
2052
+ content: "\f2fd";
2053
+ }
2054
+
2055
+ .mdi-floppy:before {
2056
+ content: "\f2fe";
2057
+ }
2058
+
2059
+ .mdi-flower:before {
2060
+ content: "\f2ff";
2061
+ }
2062
+
2063
+ .mdi-folder:before {
2064
+ content: "\f300";
2065
+ }
2066
+
2067
+ .mdi-folder-account:before {
2068
+ content: "\f301";
2069
+ }
2070
+
2071
+ .mdi-folder-download:before {
2072
+ content: "\f302";
2073
+ }
2074
+
2075
+ .mdi-folder-google-drive:before {
2076
+ content: "\f303";
2077
+ }
2078
+
2079
+ .mdi-folder-image:before {
2080
+ content: "\f304";
2081
+ }
2082
+
2083
+ .mdi-folder-lock:before {
2084
+ content: "\f305";
2085
+ }
2086
+
2087
+ .mdi-folder-lock-open:before {
2088
+ content: "\f306";
2089
+ }
2090
+
2091
+ .mdi-folder-move:before {
2092
+ content: "\f307";
2093
+ }
2094
+
2095
+ .mdi-folder-multiple:before {
2096
+ content: "\f308";
2097
+ }
2098
+
2099
+ .mdi-folder-multiple-image:before {
2100
+ content: "\f309";
2101
+ }
2102
+
2103
+ .mdi-folder-multiple-outline:before {
2104
+ content: "\f30a";
2105
+ }
2106
+
2107
+ .mdi-folder-outline:before {
2108
+ content: "\f30b";
2109
+ }
2110
+
2111
+ .mdi-folder-plus:before {
2112
+ content: "\f30c";
2113
+ }
2114
+
2115
+ .mdi-folder-remove:before {
2116
+ content: "\f30d";
2117
+ }
2118
+
2119
+ .mdi-folder-upload:before {
2120
+ content: "\f30e";
2121
+ }
2122
+
2123
+ .mdi-food:before {
2124
+ content: "\f30f";
2125
+ }
2126
+
2127
+ .mdi-food-apple:before {
2128
+ content: "\f310";
2129
+ }
2130
+
2131
+ .mdi-food-variant:before {
2132
+ content: "\f311";
2133
+ }
2134
+
2135
+ .mdi-football:before {
2136
+ content: "\f312";
2137
+ }
2138
+
2139
+ .mdi-football-helmet:before {
2140
+ content: "\f313";
2141
+ }
2142
+
2143
+ .mdi-format-align-center:before {
2144
+ content: "\f314";
2145
+ }
2146
+
2147
+ .mdi-format-align-justify:before {
2148
+ content: "\f315";
2149
+ }
2150
+
2151
+ .mdi-format-align-left:before {
2152
+ content: "\f316";
2153
+ }
2154
+
2155
+ .mdi-format-align-right:before {
2156
+ content: "\f317";
2157
+ }
2158
+
2159
+ .mdi-format-bold:before {
2160
+ content: "\f318";
2161
+ }
2162
+
2163
+ .mdi-format-clear:before {
2164
+ content: "\f319";
2165
+ }
2166
+
2167
+ .mdi-format-color-fill:before {
2168
+ content: "\f31a";
2169
+ }
2170
+
2171
+ .mdi-format-float-center:before {
2172
+ content: "\f31b";
2173
+ }
2174
+
2175
+ .mdi-format-float-left:before {
2176
+ content: "\f31c";
2177
+ }
2178
+
2179
+ .mdi-format-float-none:before {
2180
+ content: "\f31d";
2181
+ }
2182
+
2183
+ .mdi-format-float-right:before {
2184
+ content: "\f31e";
2185
+ }
2186
+
2187
+ .mdi-format-header-1:before {
2188
+ content: "\f31f";
2189
+ }
2190
+
2191
+ .mdi-format-header-2:before {
2192
+ content: "\f320";
2193
+ }
2194
+
2195
+ .mdi-format-header-3:before {
2196
+ content: "\f321";
2197
+ }
2198
+
2199
+ .mdi-format-header-4:before {
2200
+ content: "\f322";
2201
+ }
2202
+
2203
+ .mdi-format-header-5:before {
2204
+ content: "\f323";
2205
+ }
2206
+
2207
+ .mdi-format-header-6:before {
2208
+ content: "\f324";
2209
+ }
2210
+
2211
+ .mdi-format-header-decrease:before {
2212
+ content: "\f325";
2213
+ }
2214
+
2215
+ .mdi-format-header-equal:before {
2216
+ content: "\f326";
2217
+ }
2218
+
2219
+ .mdi-format-header-increase:before {
2220
+ content: "\f327";
2221
+ }
2222
+
2223
+ .mdi-format-header-pound:before {
2224
+ content: "\f328";
2225
+ }
2226
+
2227
+ .mdi-format-indent-decrease:before {
2228
+ content: "\f329";
2229
+ }
2230
+
2231
+ .mdi-format-indent-increase:before {
2232
+ content: "\f32a";
2233
+ }
2234
+
2235
+ .mdi-format-italic:before {
2236
+ content: "\f32b";
2237
+ }
2238
+
2239
+ .mdi-format-line-spacing:before {
2240
+ content: "\f32c";
2241
+ }
2242
+
2243
+ .mdi-format-list-bulleted:before {
2244
+ content: "\f32d";
2245
+ }
2246
+
2247
+ .mdi-format-list-numbers:before {
2248
+ content: "\f32e";
2249
+ }
2250
+
2251
+ .mdi-format-paint:before {
2252
+ content: "\f32f";
2253
+ }
2254
+
2255
+ .mdi-format-paragraph:before {
2256
+ content: "\f330";
2257
+ }
2258
+
2259
+ .mdi-format-quote:before {
2260
+ content: "\f331";
2261
+ }
2262
+
2263
+ .mdi-format-size:before {
2264
+ content: "\f332";
2265
+ }
2266
+
2267
+ .mdi-format-strikethrough:before {
2268
+ content: "\f333";
2269
+ }
2270
+
2271
+ .mdi-format-subscript:before {
2272
+ content: "\f334";
2273
+ }
2274
+
2275
+ .mdi-format-superscript:before {
2276
+ content: "\f335";
2277
+ }
2278
+
2279
+ .mdi-format-text:before {
2280
+ content: "\f336";
2281
+ }
2282
+
2283
+ .mdi-format-textdirection-l-to-r:before {
2284
+ content: "\f337";
2285
+ }
2286
+
2287
+ .mdi-format-textdirection-r-to-l:before {
2288
+ content: "\f338";
2289
+ }
2290
+
2291
+ .mdi-format-underline:before {
2292
+ content: "\f339";
2293
+ }
2294
+
2295
+ .mdi-format-wrap-inline:before {
2296
+ content: "\f33a";
2297
+ }
2298
+
2299
+ .mdi-format-wrap-square:before {
2300
+ content: "\f33b";
2301
+ }
2302
+
2303
+ .mdi-format-wrap-tight:before {
2304
+ content: "\f33c";
2305
+ }
2306
+
2307
+ .mdi-format-wrap-top-bottom:before {
2308
+ content: "\f33d";
2309
+ }
2310
+
2311
+ .mdi-forum:before {
2312
+ content: "\f33e";
2313
+ }
2314
+
2315
+ .mdi-forward:before {
2316
+ content: "\f33f";
2317
+ }
2318
+
2319
+ .mdi-foursquare:before {
2320
+ content: "\f340";
2321
+ }
2322
+
2323
+ .mdi-fridge:before {
2324
+ content: "\f341";
2325
+ }
2326
+
2327
+ .mdi-fullscreen:before {
2328
+ content: "\f342";
2329
+ }
2330
+
2331
+ .mdi-fullscreen-exit:before {
2332
+ content: "\f343";
2333
+ }
2334
+
2335
+ .mdi-function:before {
2336
+ content: "\f344";
2337
+ }
2338
+
2339
+ .mdi-gamepad:before {
2340
+ content: "\f345";
2341
+ }
2342
+
2343
+ .mdi-gamepad-variant:before {
2344
+ content: "\f346";
2345
+ }
2346
+
2347
+ .mdi-gas-station:before {
2348
+ content: "\f347";
2349
+ }
2350
+
2351
+ .mdi-gavel:before {
2352
+ content: "\f348";
2353
+ }
2354
+
2355
+ .mdi-gender-female:before {
2356
+ content: "\f349";
2357
+ }
2358
+
2359
+ .mdi-gender-male:before {
2360
+ content: "\f34a";
2361
+ }
2362
+
2363
+ .mdi-gender-male-female:before {
2364
+ content: "\f34b";
2365
+ }
2366
+
2367
+ .mdi-gender-transgender:before {
2368
+ content: "\f34c";
2369
+ }
2370
+
2371
+ .mdi-gift:before {
2372
+ content: "\f34d";
2373
+ }
2374
+
2375
+ .mdi-git:before {
2376
+ content: "\f34e";
2377
+ }
2378
+
2379
+ .mdi-github-box:before {
2380
+ content: "\f34f";
2381
+ }
2382
+
2383
+ .mdi-github-circle:before {
2384
+ content: "\f350";
2385
+ }
2386
+
2387
+ .mdi-glass-flute:before {
2388
+ content: "\f351";
2389
+ }
2390
+
2391
+ .mdi-glass-mug:before {
2392
+ content: "\f352";
2393
+ }
2394
+
2395
+ .mdi-glass-stange:before {
2396
+ content: "\f353";
2397
+ }
2398
+
2399
+ .mdi-glass-tulip:before {
2400
+ content: "\f354";
2401
+ }
2402
+
2403
+ .mdi-glasses:before {
2404
+ content: "\f355";
2405
+ }
2406
+
2407
+ .mdi-gmail:before {
2408
+ content: "\f356";
2409
+ }
2410
+
2411
+ .mdi-google:before {
2412
+ content: "\f357";
2413
+ }
2414
+
2415
+ .mdi-google-chrome:before {
2416
+ content: "\f358";
2417
+ }
2418
+
2419
+ .mdi-google-circles:before {
2420
+ content: "\f359";
2421
+ }
2422
+
2423
+ .mdi-google-circles-communities:before {
2424
+ content: "\f35a";
2425
+ }
2426
+
2427
+ .mdi-google-circles-extended:before {
2428
+ content: "\f35b";
2429
+ }
2430
+
2431
+ .mdi-google-circles-group:before {
2432
+ content: "\f35c";
2433
+ }
2434
+
2435
+ .mdi-google-controller:before {
2436
+ content: "\f35d";
2437
+ }
2438
+
2439
+ .mdi-google-controller-off:before {
2440
+ content: "\f35e";
2441
+ }
2442
+
2443
+ .mdi-google-drive:before {
2444
+ content: "\f35f";
2445
+ }
2446
+
2447
+ .mdi-google-earth:before {
2448
+ content: "\f360";
2449
+ }
2450
+
2451
+ .mdi-google-glass:before {
2452
+ content: "\f361";
2453
+ }
2454
+
2455
+ .mdi-google-maps:before {
2456
+ content: "\f362";
2457
+ }
2458
+
2459
+ .mdi-google-pages:before {
2460
+ content: "\f363";
2461
+ }
2462
+
2463
+ .mdi-google-play:before {
2464
+ content: "\f364";
2465
+ }
2466
+
2467
+ .mdi-google-plus:before {
2468
+ content: "\f365";
2469
+ }
2470
+
2471
+ .mdi-google-plus-box:before {
2472
+ content: "\f366";
2473
+ }
2474
+
2475
+ .mdi-grid:before {
2476
+ content: "\f367";
2477
+ }
2478
+
2479
+ .mdi-grid-off:before {
2480
+ content: "\f368";
2481
+ }
2482
+
2483
+ .mdi-group:before {
2484
+ content: "\f369";
2485
+ }
2486
+
2487
+ .mdi-guitar:before {
2488
+ content: "\f36a";
2489
+ }
2490
+
2491
+ .mdi-guitar-pick:before {
2492
+ content: "\f36b";
2493
+ }
2494
+
2495
+ .mdi-guitar-pick-outline:before {
2496
+ content: "\f36c";
2497
+ }
2498
+
2499
+ .mdi-hand-pointing-right:before {
2500
+ content: "\f36d";
2501
+ }
2502
+
2503
+ .mdi-hanger:before {
2504
+ content: "\f36e";
2505
+ }
2506
+
2507
+ .mdi-hangouts:before {
2508
+ content: "\f36f";
2509
+ }
2510
+
2511
+ .mdi-harddisk:before {
2512
+ content: "\f370";
2513
+ }
2514
+
2515
+ .mdi-headphones:before {
2516
+ content: "\f371";
2517
+ }
2518
+
2519
+ .mdi-headphones-box:before {
2520
+ content: "\f372";
2521
+ }
2522
+
2523
+ .mdi-headphones-settings:before {
2524
+ content: "\f373";
2525
+ }
2526
+
2527
+ .mdi-headset:before {
2528
+ content: "\f374";
2529
+ }
2530
+
2531
+ .mdi-headset-dock:before {
2532
+ content: "\f375";
2533
+ }
2534
+
2535
+ .mdi-headset-off:before {
2536
+ content: "\f376";
2537
+ }
2538
+
2539
+ .mdi-heart:before {
2540
+ content: "\f377";
2541
+ }
2542
+
2543
+ .mdi-heart-box:before {
2544
+ content: "\f378";
2545
+ }
2546
+
2547
+ .mdi-heart-box-outline:before {
2548
+ content: "\f379";
2549
+ }
2550
+
2551
+ .mdi-heart-broken:before {
2552
+ content: "\f37a";
2553
+ }
2554
+
2555
+ .mdi-heart-outline:before {
2556
+ content: "\f37b";
2557
+ }
2558
+
2559
+ .mdi-help:before {
2560
+ content: "\f37c";
2561
+ }
2562
+
2563
+ .mdi-help-circle:before {
2564
+ content: "\f37d";
2565
+ }
2566
+
2567
+ .mdi-hexagon:before {
2568
+ content: "\f37e";
2569
+ }
2570
+
2571
+ .mdi-hexagon-outline:before {
2572
+ content: "\f37f";
2573
+ }
2574
+
2575
+ .mdi-history:before {
2576
+ content: "\f380";
2577
+ }
2578
+
2579
+ .mdi-hololens:before {
2580
+ content: "\f381";
2581
+ }
2582
+
2583
+ .mdi-home:before {
2584
+ content: "\f382";
2585
+ }
2586
+
2587
+ .mdi-home-modern:before {
2588
+ content: "\f383";
2589
+ }
2590
+
2591
+ .mdi-home-variant:before {
2592
+ content: "\f384";
2593
+ }
2594
+
2595
+ .mdi-hops:before {
2596
+ content: "\f385";
2597
+ }
2598
+
2599
+ .mdi-hospital:before {
2600
+ content: "\f386";
2601
+ }
2602
+
2603
+ .mdi-hospital-building:before {
2604
+ content: "\f387";
2605
+ }
2606
+
2607
+ .mdi-hospital-marker:before {
2608
+ content: "\f388";
2609
+ }
2610
+
2611
+ .mdi-hotel:before {
2612
+ content: "\f389";
2613
+ }
2614
+
2615
+ .mdi-houzz:before {
2616
+ content: "\f38a";
2617
+ }
2618
+
2619
+ .mdi-houzz-box:before {
2620
+ content: "\f38b";
2621
+ }
2622
+
2623
+ .mdi-human:before {
2624
+ content: "\f38c";
2625
+ }
2626
+
2627
+ .mdi-human-child:before {
2628
+ content: "\f38d";
2629
+ }
2630
+
2631
+ .mdi-human-male-female:before {
2632
+ content: "\f38e";
2633
+ }
2634
+
2635
+ .mdi-image-album:before {
2636
+ content: "\f38f";
2637
+ }
2638
+
2639
+ .mdi-image-area:before {
2640
+ content: "\f390";
2641
+ }
2642
+
2643
+ .mdi-image-area-close:before {
2644
+ content: "\f391";
2645
+ }
2646
+
2647
+ .mdi-image-broken:before {
2648
+ content: "\f392";
2649
+ }
2650
+
2651
+ .mdi-image-filter:before {
2652
+ content: "\f393";
2653
+ }
2654
+
2655
+ .mdi-image-filter-black-white:before {
2656
+ content: "\f394";
2657
+ }
2658
+
2659
+ .mdi-image-filter-center-focus:before {
2660
+ content: "\f395";
2661
+ }
2662
+
2663
+ .mdi-image-filter-drama:before {
2664
+ content: "\f396";
2665
+ }
2666
+
2667
+ .mdi-image-filter-frames:before {
2668
+ content: "\f397";
2669
+ }
2670
+
2671
+ .mdi-image-filter-hdr:before {
2672
+ content: "\f398";
2673
+ }
2674
+
2675
+ .mdi-image-filter-none:before {
2676
+ content: "\f399";
2677
+ }
2678
+
2679
+ .mdi-image-filter-tilt-shift:before {
2680
+ content: "\f39a";
2681
+ }
2682
+
2683
+ .mdi-image-filter-vintage:before {
2684
+ content: "\f39b";
2685
+ }
2686
+
2687
+ .mdi-import:before {
2688
+ content: "\f39c";
2689
+ }
2690
+
2691
+ .mdi-inbox:before {
2692
+ content: "\f39d";
2693
+ }
2694
+
2695
+ .mdi-information:before {
2696
+ content: "\f39e";
2697
+ }
2698
+
2699
+ .mdi-information-outline:before {
2700
+ content: "\f39f";
2701
+ }
2702
+
2703
+ .mdi-instagram:before {
2704
+ content: "\f3a0";
2705
+ }
2706
+
2707
+ .mdi-instapaper:before {
2708
+ content: "\f3a1";
2709
+ }
2710
+
2711
+ .mdi-internet-explorer:before {
2712
+ content: "\f3a2";
2713
+ }
2714
+
2715
+ .mdi-invert-colors:before {
2716
+ content: "\f3a3";
2717
+ }
2718
+
2719
+ .mdi-jira:before {
2720
+ content: "\f3a4";
2721
+ }
2722
+
2723
+ .mdi-jsfiddle:before {
2724
+ content: "\f3a5";
2725
+ }
2726
+
2727
+ .mdi-keg:before {
2728
+ content: "\f3a6";
2729
+ }
2730
+
2731
+ .mdi-key:before {
2732
+ content: "\f3a7";
2733
+ }
2734
+
2735
+ .mdi-key-change:before {
2736
+ content: "\f3a8";
2737
+ }
2738
+
2739
+ .mdi-key-minus:before {
2740
+ content: "\f3a9";
2741
+ }
2742
+
2743
+ .mdi-key-plus:before {
2744
+ content: "\f3aa";
2745
+ }
2746
+
2747
+ .mdi-key-remove:before {
2748
+ content: "\f3ab";
2749
+ }
2750
+
2751
+ .mdi-key-variant:before {
2752
+ content: "\f3ac";
2753
+ }
2754
+
2755
+ .mdi-keyboard:before {
2756
+ content: "\f3ad";
2757
+ }
2758
+
2759
+ .mdi-keyboard-backspace:before {
2760
+ content: "\f3ae";
2761
+ }
2762
+
2763
+ .mdi-keyboard-caps:before {
2764
+ content: "\f3af";
2765
+ }
2766
+
2767
+ .mdi-keyboard-close:before {
2768
+ content: "\f3b0";
2769
+ }
2770
+
2771
+ .mdi-keyboard-off:before {
2772
+ content: "\f3b1";
2773
+ }
2774
+
2775
+ .mdi-keyboard-return:before {
2776
+ content: "\f3b2";
2777
+ }
2778
+
2779
+ .mdi-keyboard-tab:before {
2780
+ content: "\f3b3";
2781
+ }
2782
+
2783
+ .mdi-keyboard-variant:before {
2784
+ content: "\f3b4";
2785
+ }
2786
+
2787
+ .mdi-label:before {
2788
+ content: "\f3b5";
2789
+ }
2790
+
2791
+ .mdi-label-outline:before {
2792
+ content: "\f3b6";
2793
+ }
2794
+
2795
+ .mdi-language-csharp:before {
2796
+ content: "\f3b7";
2797
+ }
2798
+
2799
+ .mdi-language-css3:before {
2800
+ content: "\f3b8";
2801
+ }
2802
+
2803
+ .mdi-language-html5:before {
2804
+ content: "\f3b9";
2805
+ }
2806
+
2807
+ .mdi-language-javascript:before {
2808
+ content: "\f3ba";
2809
+ }
2810
+
2811
+ .mdi-language-python:before {
2812
+ content: "\f3bb";
2813
+ }
2814
+
2815
+ .mdi-language-python-text:before {
2816
+ content: "\f3bc";
2817
+ }
2818
+
2819
+ .mdi-laptop:before {
2820
+ content: "\f3bd";
2821
+ }
2822
+
2823
+ .mdi-laptop-chromebook:before {
2824
+ content: "\f3be";
2825
+ }
2826
+
2827
+ .mdi-laptop-mac:before {
2828
+ content: "\f3bf";
2829
+ }
2830
+
2831
+ .mdi-laptop-windows:before {
2832
+ content: "\f3c0";
2833
+ }
2834
+
2835
+ .mdi-lastfm:before {
2836
+ content: "\f3c1";
2837
+ }
2838
+
2839
+ .mdi-launch:before {
2840
+ content: "\f3c2";
2841
+ }
2842
+
2843
+ .mdi-layers:before {
2844
+ content: "\f3c3";
2845
+ }
2846
+
2847
+ .mdi-layers-off:before {
2848
+ content: "\f3c4";
2849
+ }
2850
+
2851
+ .mdi-leaf:before {
2852
+ content: "\f3c5";
2853
+ }
2854
+
2855
+ .mdi-library:before {
2856
+ content: "\f3c6";
2857
+ }
2858
+
2859
+ .mdi-library-books:before {
2860
+ content: "\f3c7";
2861
+ }
2862
+
2863
+ .mdi-library-music:before {
2864
+ content: "\f3c8";
2865
+ }
2866
+
2867
+ .mdi-library-plus:before {
2868
+ content: "\f3c9";
2869
+ }
2870
+
2871
+ .mdi-lightbulb:before {
2872
+ content: "\f3ca";
2873
+ }
2874
+
2875
+ .mdi-lightbulb-outline:before {
2876
+ content: "\f3cb";
2877
+ }
2878
+
2879
+ .mdi-link:before {
2880
+ content: "\f3cc";
2881
+ }
2882
+
2883
+ .mdi-link-off:before {
2884
+ content: "\f3cd";
2885
+ }
2886
+
2887
+ .mdi-link-variant:before {
2888
+ content: "\f3ce";
2889
+ }
2890
+
2891
+ .mdi-link-variant-off:before {
2892
+ content: "\f3cf";
2893
+ }
2894
+
2895
+ .mdi-linkedin:before {
2896
+ content: "\f3d0";
2897
+ }
2898
+
2899
+ .mdi-linkedin-box:before {
2900
+ content: "\f3d1";
2901
+ }
2902
+
2903
+ .mdi-linux:before {
2904
+ content: "\f3d2";
2905
+ }
2906
+
2907
+ .mdi-lock:before {
2908
+ content: "\f3d3";
2909
+ }
2910
+
2911
+ .mdi-lock-open:before {
2912
+ content: "\f3d4";
2913
+ }
2914
+
2915
+ .mdi-lock-open-outline:before {
2916
+ content: "\f3d5";
2917
+ }
2918
+
2919
+ .mdi-lock-outline:before {
2920
+ content: "\f3d6";
2921
+ }
2922
+
2923
+ .mdi-login:before {
2924
+ content: "\f3d7";
2925
+ }
2926
+
2927
+ .mdi-logout:before {
2928
+ content: "\f3d8";
2929
+ }
2930
+
2931
+ .mdi-looks:before {
2932
+ content: "\f3d9";
2933
+ }
2934
+
2935
+ .mdi-loupe:before {
2936
+ content: "\f3da";
2937
+ }
2938
+
2939
+ .mdi-lumx:before {
2940
+ content: "\f3db";
2941
+ }
2942
+
2943
+ .mdi-magnet:before {
2944
+ content: "\f3dc";
2945
+ }
2946
+
2947
+ .mdi-magnet-on:before {
2948
+ content: "\f3dd";
2949
+ }
2950
+
2951
+ .mdi-magnify:before {
2952
+ content: "\f3de";
2953
+ }
2954
+
2955
+ .mdi-magnify-minus:before {
2956
+ content: "\f3df";
2957
+ }
2958
+
2959
+ .mdi-magnify-plus:before {
2960
+ content: "\f3e0";
2961
+ }
2962
+
2963
+ .mdi-mail-ru:before {
2964
+ content: "\f3e1";
2965
+ }
2966
+
2967
+ .mdi-map:before {
2968
+ content: "\f3e2";
2969
+ }
2970
+
2971
+ .mdi-map-marker:before {
2972
+ content: "\f3e3";
2973
+ }
2974
+
2975
+ .mdi-map-marker-circle:before {
2976
+ content: "\f3e4";
2977
+ }
2978
+
2979
+ .mdi-map-marker-multiple:before {
2980
+ content: "\f3e5";
2981
+ }
2982
+
2983
+ .mdi-map-marker-off:before {
2984
+ content: "\f3e6";
2985
+ }
2986
+
2987
+ .mdi-map-marker-radius:before {
2988
+ content: "\f3e7";
2989
+ }
2990
+
2991
+ .mdi-margin:before {
2992
+ content: "\f3e8";
2993
+ }
2994
+
2995
+ .mdi-markdown:before {
2996
+ content: "\f3e9";
2997
+ }
2998
+
2999
+ .mdi-marker-check:before {
3000
+ content: "\f3ea";
3001
+ }
3002
+
3003
+ .mdi-martini:before {
3004
+ content: "\f3eb";
3005
+ }
3006
+
3007
+ .mdi-material-ui:before {
3008
+ content: "\f3ec";
3009
+ }
3010
+
3011
+ .mdi-math-compass:before {
3012
+ content: "\f3ed";
3013
+ }
3014
+
3015
+ .mdi-maxcdn:before {
3016
+ content: "\f3ee";
3017
+ }
3018
+
3019
+ .mdi-medium:before {
3020
+ content: "\f3ef";
3021
+ }
3022
+
3023
+ .mdi-memory:before {
3024
+ content: "\f3f0";
3025
+ }
3026
+
3027
+ .mdi-menu:before {
3028
+ content: "\f3f1";
3029
+ }
3030
+
3031
+ .mdi-menu-down:before {
3032
+ content: "\f3f2";
3033
+ }
3034
+
3035
+ .mdi-menu-left:before {
3036
+ content: "\f3f3";
3037
+ }
3038
+
3039
+ .mdi-menu-right:before {
3040
+ content: "\f3f4";
3041
+ }
3042
+
3043
+ .mdi-menu-up:before {
3044
+ content: "\f3f5";
3045
+ }
3046
+
3047
+ .mdi-message:before {
3048
+ content: "\f3f6";
3049
+ }
3050
+
3051
+ .mdi-message-alert:before {
3052
+ content: "\f3f7";
3053
+ }
3054
+
3055
+ .mdi-message-draw:before {
3056
+ content: "\f3f8";
3057
+ }
3058
+
3059
+ .mdi-message-image:before {
3060
+ content: "\f3f9";
3061
+ }
3062
+
3063
+ .mdi-message-processing:before {
3064
+ content: "\f3fa";
3065
+ }
3066
+
3067
+ .mdi-message-reply:before {
3068
+ content: "\f3fb";
3069
+ }
3070
+
3071
+ .mdi-message-text:before {
3072
+ content: "\f3fc";
3073
+ }
3074
+
3075
+ .mdi-message-text-outline:before {
3076
+ content: "\f3fd";
3077
+ }
3078
+
3079
+ .mdi-message-video:before {
3080
+ content: "\f3fe";
3081
+ }
3082
+
3083
+ .mdi-microphone:before {
3084
+ content: "\f3ff";
3085
+ }
3086
+
3087
+ .mdi-microphone-off:before {
3088
+ content: "\f400";
3089
+ }
3090
+
3091
+ .mdi-microphone-outline:before {
3092
+ content: "\f401";
3093
+ }
3094
+
3095
+ .mdi-microphone-settings:before {
3096
+ content: "\f402";
3097
+ }
3098
+
3099
+ .mdi-microphone-variant:before {
3100
+ content: "\f403";
3101
+ }
3102
+
3103
+ .mdi-microphone-variant-off:before {
3104
+ content: "\f404";
3105
+ }
3106
+
3107
+ .mdi-minus:before {
3108
+ content: "\f405";
3109
+ }
3110
+
3111
+ .mdi-minus-box:before {
3112
+ content: "\f406";
3113
+ }
3114
+
3115
+ .mdi-minus-circle:before {
3116
+ content: "\f407";
3117
+ }
3118
+
3119
+ .mdi-minus-circle-outline:before {
3120
+ content: "\f408";
3121
+ }
3122
+
3123
+ .mdi-minus-network:before {
3124
+ content: "\f409";
3125
+ }
3126
+
3127
+ .mdi-monitor:before {
3128
+ content: "\f40a";
3129
+ }
3130
+
3131
+ .mdi-monitor-multiple:before {
3132
+ content: "\f40b";
3133
+ }
3134
+
3135
+ .mdi-more:before {
3136
+ content: "\f40c";
3137
+ }
3138
+
3139
+ .mdi-motorbike:before {
3140
+ content: "\f40d";
3141
+ }
3142
+
3143
+ .mdi-mouse:before {
3144
+ content: "\f40e";
3145
+ }
3146
+
3147
+ .mdi-mouse-off:before {
3148
+ content: "\f40f";
3149
+ }
3150
+
3151
+ .mdi-mouse-variant:before {
3152
+ content: "\f410";
3153
+ }
3154
+
3155
+ .mdi-mouse-variant-off:before {
3156
+ content: "\f411";
3157
+ }
3158
+
3159
+ .mdi-movie:before {
3160
+ content: "\f412";
3161
+ }
3162
+
3163
+ .mdi-multiplication:before {
3164
+ content: "\f413";
3165
+ }
3166
+
3167
+ .mdi-multiplication-box:before {
3168
+ content: "\f414";
3169
+ }
3170
+
3171
+ .mdi-music-box:before {
3172
+ content: "\f415";
3173
+ }
3174
+
3175
+ .mdi-music-box-outline:before {
3176
+ content: "\f416";
3177
+ }
3178
+
3179
+ .mdi-music-circle:before {
3180
+ content: "\f417";
3181
+ }
3182
+
3183
+ .mdi-music-note:before {
3184
+ content: "\f418";
3185
+ }
3186
+
3187
+ .mdi-music-note-eighth:before {
3188
+ content: "\f419";
3189
+ }
3190
+
3191
+ .mdi-music-note-half:before {
3192
+ content: "\f41a";
3193
+ }
3194
+
3195
+ .mdi-music-note-off:before {
3196
+ content: "\f41b";
3197
+ }
3198
+
3199
+ .mdi-music-note-quarter:before {
3200
+ content: "\f41c";
3201
+ }
3202
+
3203
+ .mdi-music-note-sixteenth:before {
3204
+ content: "\f41d";
3205
+ }
3206
+
3207
+ .mdi-music-note-whole:before {
3208
+ content: "\f41e";
3209
+ }
3210
+
3211
+ .mdi-nature:before {
3212
+ content: "\f41f";
3213
+ }
3214
+
3215
+ .mdi-nature-people:before {
3216
+ content: "\f420";
3217
+ }
3218
+
3219
+ .mdi-navigation:before {
3220
+ content: "\f421";
3221
+ }
3222
+
3223
+ .mdi-needle:before {
3224
+ content: "\f422";
3225
+ }
3226
+
3227
+ .mdi-nest-protect:before {
3228
+ content: "\f423";
3229
+ }
3230
+
3231
+ .mdi-nest-thermostat:before {
3232
+ content: "\f424";
3233
+ }
3234
+
3235
+ .mdi-newspaper:before {
3236
+ content: "\f425";
3237
+ }
3238
+
3239
+ .mdi-nfc:before {
3240
+ content: "\f426";
3241
+ }
3242
+
3243
+ .mdi-nfc-tap:before {
3244
+ content: "\f427";
3245
+ }
3246
+
3247
+ .mdi-nfc-variant:before {
3248
+ content: "\f428";
3249
+ }
3250
+
3251
+ .mdi-note:before {
3252
+ content: "\f429";
3253
+ }
3254
+
3255
+ .mdi-note-outline:before {
3256
+ content: "\f42a";
3257
+ }
3258
+
3259
+ .mdi-note-text:before {
3260
+ content: "\f42b";
3261
+ }
3262
+
3263
+ .mdi-numeric:before {
3264
+ content: "\f42c";
3265
+ }
3266
+
3267
+ .mdi-numeric-0-box:before {
3268
+ content: "\f42d";
3269
+ }
3270
+
3271
+ .mdi-numeric-0-box-multiple-outline:before {
3272
+ content: "\f42e";
3273
+ }
3274
+
3275
+ .mdi-numeric-0-box-outline:before {
3276
+ content: "\f42f";
3277
+ }
3278
+
3279
+ .mdi-numeric-1-box:before {
3280
+ content: "\f430";
3281
+ }
3282
+
3283
+ .mdi-numeric-1-box-multiple-outline:before {
3284
+ content: "\f431";
3285
+ }
3286
+
3287
+ .mdi-numeric-1-box-outline:before {
3288
+ content: "\f432";
3289
+ }
3290
+
3291
+ .mdi-numeric-2-box:before {
3292
+ content: "\f433";
3293
+ }
3294
+
3295
+ .mdi-numeric-2-box-multiple-outline:before {
3296
+ content: "\f434";
3297
+ }
3298
+
3299
+ .mdi-numeric-2-box-outline:before {
3300
+ content: "\f435";
3301
+ }
3302
+
3303
+ .mdi-numeric-3-box:before {
3304
+ content: "\f436";
3305
+ }
3306
+
3307
+ .mdi-numeric-3-box-multiple-outline:before {
3308
+ content: "\f437";
3309
+ }
3310
+
3311
+ .mdi-numeric-3-box-outline:before {
3312
+ content: "\f438";
3313
+ }
3314
+
3315
+ .mdi-numeric-4-box:before {
3316
+ content: "\f439";
3317
+ }
3318
+
3319
+ .mdi-numeric-4-box-multiple-outline:before {
3320
+ content: "\f43a";
3321
+ }
3322
+
3323
+ .mdi-numeric-4-box-outline:before {
3324
+ content: "\f43b";
3325
+ }
3326
+
3327
+ .mdi-numeric-5-box:before {
3328
+ content: "\f43c";
3329
+ }
3330
+
3331
+ .mdi-numeric-5-box-multiple-outline:before {
3332
+ content: "\f43d";
3333
+ }
3334
+
3335
+ .mdi-numeric-5-box-outline:before {
3336
+ content: "\f43e";
3337
+ }
3338
+
3339
+ .mdi-numeric-6-box:before {
3340
+ content: "\f43f";
3341
+ }
3342
+
3343
+ .mdi-numeric-6-box-multiple-outline:before {
3344
+ content: "\f440";
3345
+ }
3346
+
3347
+ .mdi-numeric-6-box-outline:before {
3348
+ content: "\f441";
3349
+ }
3350
+
3351
+ .mdi-numeric-7-box:before {
3352
+ content: "\f442";
3353
+ }
3354
+
3355
+ .mdi-numeric-7-box-multiple-outline:before {
3356
+ content: "\f443";
3357
+ }
3358
+
3359
+ .mdi-numeric-7-box-outline:before {
3360
+ content: "\f444";
3361
+ }
3362
+
3363
+ .mdi-numeric-8-box:before {
3364
+ content: "\f445";
3365
+ }
3366
+
3367
+ .mdi-numeric-8-box-multiple-outline:before {
3368
+ content: "\f446";
3369
+ }
3370
+
3371
+ .mdi-numeric-8-box-outline:before {
3372
+ content: "\f447";
3373
+ }
3374
+
3375
+ .mdi-numeric-9-box:before {
3376
+ content: "\f448";
3377
+ }
3378
+
3379
+ .mdi-numeric-9-box-multiple-outline:before {
3380
+ content: "\f449";
3381
+ }
3382
+
3383
+ .mdi-numeric-9-box-outline:before {
3384
+ content: "\f44a";
3385
+ }
3386
+
3387
+ .mdi-numeric-9-plus-box:before {
3388
+ content: "\f44b";
3389
+ }
3390
+
3391
+ .mdi-numeric-9-plus-box-multiple-outline:before {
3392
+ content: "\f44c";
3393
+ }
3394
+
3395
+ .mdi-numeric-9-plus-box-outline:before {
3396
+ content: "\f44d";
3397
+ }
3398
+
3399
+ .mdi-nutriton:before {
3400
+ content: "\f44e";
3401
+ }
3402
+
3403
+ .mdi-odnoklassniki:before {
3404
+ content: "\f44f";
3405
+ }
3406
+
3407
+ .mdi-office:before {
3408
+ content: "\f450";
3409
+ }
3410
+
3411
+ .mdi-oil:before {
3412
+ content: "\f451";
3413
+ }
3414
+
3415
+ .mdi-omega:before {
3416
+ content: "\f452";
3417
+ }
3418
+
3419
+ .mdi-onedrive:before {
3420
+ content: "\f453";
3421
+ }
3422
+
3423
+ .mdi-open-in-app:before {
3424
+ content: "\f454";
3425
+ }
3426
+
3427
+ .mdi-open-in-new:before {
3428
+ content: "\f455";
3429
+ }
3430
+
3431
+ .mdi-ornament:before {
3432
+ content: "\f456";
3433
+ }
3434
+
3435
+ .mdi-ornament-variant:before {
3436
+ content: "\f457";
3437
+ }
3438
+
3439
+ .mdi-outbox:before {
3440
+ content: "\f458";
3441
+ }
3442
+
3443
+ .mdi-owl:before {
3444
+ content: "\f459";
3445
+ }
3446
+
3447
+ .mdi-package:before {
3448
+ content: "\f45a";
3449
+ }
3450
+
3451
+ .mdi-package-down:before {
3452
+ content: "\f45b";
3453
+ }
3454
+
3455
+ .mdi-package-up:before {
3456
+ content: "\f45c";
3457
+ }
3458
+
3459
+ .mdi-package-variant:before {
3460
+ content: "\f45d";
3461
+ }
3462
+
3463
+ .mdi-package-variant-closed:before {
3464
+ content: "\f45e";
3465
+ }
3466
+
3467
+ .mdi-palette:before {
3468
+ content: "\f45f";
3469
+ }
3470
+
3471
+ .mdi-palette-advanced:before {
3472
+ content: "\f460";
3473
+ }
3474
+
3475
+ .mdi-panda:before {
3476
+ content: "\f461";
3477
+ }
3478
+
3479
+ .mdi-pandora:before {
3480
+ content: "\f462";
3481
+ }
3482
+
3483
+ .mdi-panorama:before {
3484
+ content: "\f463";
3485
+ }
3486
+
3487
+ .mdi-panorama-fisheye:before {
3488
+ content: "\f464";
3489
+ }
3490
+
3491
+ .mdi-panorama-horizontal:before {
3492
+ content: "\f465";
3493
+ }
3494
+
3495
+ .mdi-panorama-vertical:before {
3496
+ content: "\f466";
3497
+ }
3498
+
3499
+ .mdi-panorama-wide-angle:before {
3500
+ content: "\f467";
3501
+ }
3502
+
3503
+ .mdi-paper-cut-vertical:before {
3504
+ content: "\f468";
3505
+ }
3506
+
3507
+ .mdi-paperclip:before {
3508
+ content: "\f469";
3509
+ }
3510
+
3511
+ .mdi-parking:before {
3512
+ content: "\f46a";
3513
+ }
3514
+
3515
+ .mdi-pause:before {
3516
+ content: "\f46b";
3517
+ }
3518
+
3519
+ .mdi-pause-circle:before {
3520
+ content: "\f46c";
3521
+ }
3522
+
3523
+ .mdi-pause-circle-outline:before {
3524
+ content: "\f46d";
3525
+ }
3526
+
3527
+ .mdi-pause-octagon:before {
3528
+ content: "\f46e";
3529
+ }
3530
+
3531
+ .mdi-pause-octagon-outline:before {
3532
+ content: "\f46f";
3533
+ }
3534
+
3535
+ .mdi-paw:before {
3536
+ content: "\f470";
3537
+ }
3538
+
3539
+ .mdi-pen:before {
3540
+ content: "\f471";
3541
+ }
3542
+
3543
+ .mdi-pencil:before {
3544
+ content: "\f472";
3545
+ }
3546
+
3547
+ .mdi-pencil-box:before {
3548
+ content: "\f473";
3549
+ }
3550
+
3551
+ .mdi-pencil-box-outline:before {
3552
+ content: "\f474";
3553
+ }
3554
+
3555
+ .mdi-percent:before {
3556
+ content: "\f475";
3557
+ }
3558
+
3559
+ .mdi-pharmacy:before {
3560
+ content: "\f476";
3561
+ }
3562
+
3563
+ .mdi-phone:before {
3564
+ content: "\f477";
3565
+ }
3566
+
3567
+ .mdi-phone-bluetooth:before {
3568
+ content: "\f478";
3569
+ }
3570
+
3571
+ .mdi-phone-forward:before {
3572
+ content: "\f479";
3573
+ }
3574
+
3575
+ .mdi-phone-hangup:before {
3576
+ content: "\f47a";
3577
+ }
3578
+
3579
+ .mdi-phone-in-talk:before {
3580
+ content: "\f47b";
3581
+ }
3582
+
3583
+ .mdi-phone-incoming:before {
3584
+ content: "\f47c";
3585
+ }
3586
+
3587
+ .mdi-phone-locked:before {
3588
+ content: "\f47d";
3589
+ }
3590
+
3591
+ .mdi-phone-log:before {
3592
+ content: "\f47e";
3593
+ }
3594
+
3595
+ .mdi-phone-missed:before {
3596
+ content: "\f47f";
3597
+ }
3598
+
3599
+ .mdi-phone-outgoing:before {
3600
+ content: "\f480";
3601
+ }
3602
+
3603
+ .mdi-phone-paused:before {
3604
+ content: "\f481";
3605
+ }
3606
+
3607
+ .mdi-phone-settings:before {
3608
+ content: "\f482";
3609
+ }
3610
+
3611
+ .mdi-pig:before {
3612
+ content: "\f483";
3613
+ }
3614
+
3615
+ .mdi-pill:before {
3616
+ content: "\f484";
3617
+ }
3618
+
3619
+ .mdi-pin:before {
3620
+ content: "\f485";
3621
+ }
3622
+
3623
+ .mdi-pin-off:before {
3624
+ content: "\f486";
3625
+ }
3626
+
3627
+ .mdi-pine-tree:before {
3628
+ content: "\f487";
3629
+ }
3630
+
3631
+ .mdi-pine-tree-box:before {
3632
+ content: "\f488";
3633
+ }
3634
+
3635
+ .mdi-pinterest:before {
3636
+ content: "\f489";
3637
+ }
3638
+
3639
+ .mdi-pinterest-box:before {
3640
+ content: "\f48a";
3641
+ }
3642
+
3643
+ .mdi-pizza:before {
3644
+ content: "\f48b";
3645
+ }
3646
+
3647
+ .mdi-play:before {
3648
+ content: "\f48c";
3649
+ }
3650
+
3651
+ .mdi-play-box-outline:before {
3652
+ content: "\f48d";
3653
+ }
3654
+
3655
+ .mdi-play-circle:before {
3656
+ content: "\f48e";
3657
+ }
3658
+
3659
+ .mdi-play-circle-outline:before {
3660
+ content: "\f48f";
3661
+ }
3662
+
3663
+ .mdi-playlist-minus:before {
3664
+ content: "\f490";
3665
+ }
3666
+
3667
+ .mdi-playlist-plus:before {
3668
+ content: "\f491";
3669
+ }
3670
+
3671
+ .mdi-playstation:before {
3672
+ content: "\f492";
3673
+ }
3674
+
3675
+ .mdi-plus:before {
3676
+ content: "\f493";
3677
+ }
3678
+
3679
+ .mdi-plus-box:before {
3680
+ content: "\f494";
3681
+ }
3682
+
3683
+ .mdi-plus-circle:before {
3684
+ content: "\f495";
3685
+ }
3686
+
3687
+ .mdi-plus-circle-outline:before {
3688
+ content: "\f496";
3689
+ }
3690
+
3691
+ .mdi-plus-network:before {
3692
+ content: "\f497";
3693
+ }
3694
+
3695
+ .mdi-plus-one:before {
3696
+ content: "\f498";
3697
+ }
3698
+
3699
+ .mdi-pocket:before {
3700
+ content: "\f499";
3701
+ }
3702
+
3703
+ .mdi-poll:before {
3704
+ content: "\f49a";
3705
+ }
3706
+
3707
+ .mdi-poll-box:before {
3708
+ content: "\f49b";
3709
+ }
3710
+
3711
+ .mdi-polymer:before {
3712
+ content: "\f49c";
3713
+ }
3714
+
3715
+ .mdi-popcorn:before {
3716
+ content: "\f49d";
3717
+ }
3718
+
3719
+ .mdi-pound:before {
3720
+ content: "\f49e";
3721
+ }
3722
+
3723
+ .mdi-pound-box:before {
3724
+ content: "\f49f";
3725
+ }
3726
+
3727
+ .mdi-power:before {
3728
+ content: "\f4a0";
3729
+ }
3730
+
3731
+ .mdi-power-settings:before {
3732
+ content: "\f4a1";
3733
+ }
3734
+
3735
+ .mdi-power-socket:before {
3736
+ content: "\f4a2";
3737
+ }
3738
+
3739
+ .mdi-presentation:before {
3740
+ content: "\f4a3";
3741
+ }
3742
+
3743
+ .mdi-presentation-play:before {
3744
+ content: "\f4a4";
3745
+ }
3746
+
3747
+ .mdi-printer:before {
3748
+ content: "\f4a5";
3749
+ }
3750
+
3751
+ .mdi-printer-3d:before {
3752
+ content: "\f4a6";
3753
+ }
3754
+
3755
+ .mdi-pulse:before {
3756
+ content: "\f4a7";
3757
+ }
3758
+
3759
+ .mdi-puzzle:before {
3760
+ content: "\f4a8";
3761
+ }
3762
+
3763
+ .mdi-qrcode:before {
3764
+ content: "\f4a9";
3765
+ }
3766
+
3767
+ .mdi-quadcopter:before {
3768
+ content: "\f4aa";
3769
+ }
3770
+
3771
+ .mdi-quality-high:before {
3772
+ content: "\f4ab";
3773
+ }
3774
+
3775
+ .mdi-quicktime:before {
3776
+ content: "\f4ac";
3777
+ }
3778
+
3779
+ .mdi-radiator:before {
3780
+ content: "\f4ad";
3781
+ }
3782
+
3783
+ .mdi-radio:before {
3784
+ content: "\f4ae";
3785
+ }
3786
+
3787
+ .mdi-radio-tower:before {
3788
+ content: "\f4af";
3789
+ }
3790
+
3791
+ .mdi-radioactive:before {
3792
+ content: "\f4b0";
3793
+ }
3794
+
3795
+ .mdi-radiobox-blank:before {
3796
+ content: "\f4b1";
3797
+ }
3798
+
3799
+ .mdi-radiobox-marked:before {
3800
+ content: "\f4b2";
3801
+ }
3802
+
3803
+ .mdi-raspberrypi:before {
3804
+ content: "\f4b3";
3805
+ }
3806
+
3807
+ .mdi-rdio:before {
3808
+ content: "\f4b4";
3809
+ }
3810
+
3811
+ .mdi-read:before {
3812
+ content: "\f4b5";
3813
+ }
3814
+
3815
+ .mdi-readability:before {
3816
+ content: "\f4b6";
3817
+ }
3818
+
3819
+ .mdi-receipt:before {
3820
+ content: "\f4b7";
3821
+ }
3822
+
3823
+ .mdi-recycle:before {
3824
+ content: "\f4b8";
3825
+ }
3826
+
3827
+ .mdi-redo:before {
3828
+ content: "\f4b9";
3829
+ }
3830
+
3831
+ .mdi-redo-variant:before {
3832
+ content: "\f4ba";
3833
+ }
3834
+
3835
+ .mdi-refresh:before {
3836
+ content: "\f4bb";
3837
+ }
3838
+
3839
+ .mdi-relative-scale:before {
3840
+ content: "\f4bc";
3841
+ }
3842
+
3843
+ .mdi-reload:before {
3844
+ content: "\f4bd";
3845
+ }
3846
+
3847
+ .mdi-remote:before {
3848
+ content: "\f4be";
3849
+ }
3850
+
3851
+ .mdi-rename-box:before {
3852
+ content: "\f4bf";
3853
+ }
3854
+
3855
+ .mdi-repeat:before {
3856
+ content: "\f4c0";
3857
+ }
3858
+
3859
+ .mdi-repeat-off:before {
3860
+ content: "\f4c1";
3861
+ }
3862
+
3863
+ .mdi-repeat-once:before {
3864
+ content: "\f4c2";
3865
+ }
3866
+
3867
+ .mdi-replay:before {
3868
+ content: "\f4c3";
3869
+ }
3870
+
3871
+ .mdi-reply:before {
3872
+ content: "\f4c4";
3873
+ }
3874
+
3875
+ .mdi-reply-all:before {
3876
+ content: "\f4c5";
3877
+ }
3878
+
3879
+ .mdi-reproduction:before {
3880
+ content: "\f4c6";
3881
+ }
3882
+
3883
+ .mdi-resize-bottom-right:before {
3884
+ content: "\f4c7";
3885
+ }
3886
+
3887
+ .mdi-responsive:before {
3888
+ content: "\f4c8";
3889
+ }
3890
+
3891
+ .mdi-rewind:before {
3892
+ content: "\f4c9";
3893
+ }
3894
+
3895
+ .mdi-ribbon:before {
3896
+ content: "\f4ca";
3897
+ }
3898
+
3899
+ .mdi-road:before {
3900
+ content: "\f4cb";
3901
+ }
3902
+
3903
+ .mdi-rocket:before {
3904
+ content: "\f4cc";
3905
+ }
3906
+
3907
+ .mdi-rotate-3d:before {
3908
+ content: "\f4cd";
3909
+ }
3910
+
3911
+ .mdi-rotate-left:before {
3912
+ content: "\f4ce";
3913
+ }
3914
+
3915
+ .mdi-rotate-left-variant:before {
3916
+ content: "\f4cf";
3917
+ }
3918
+
3919
+ .mdi-rotate-right:before {
3920
+ content: "\f4d0";
3921
+ }
3922
+
3923
+ .mdi-rotate-right-variant:before {
3924
+ content: "\f4d1";
3925
+ }
3926
+
3927
+ .mdi-routes:before {
3928
+ content: "\f4d2";
3929
+ }
3930
+
3931
+ .mdi-rss:before {
3932
+ content: "\f4d3";
3933
+ }
3934
+
3935
+ .mdi-rss-box:before {
3936
+ content: "\f4d4";
3937
+ }
3938
+
3939
+ .mdi-ruler:before {
3940
+ content: "\f4d5";
3941
+ }
3942
+
3943
+ .mdi-run:before {
3944
+ content: "\f4d6";
3945
+ }
3946
+
3947
+ .mdi-sale:before {
3948
+ content: "\f4d7";
3949
+ }
3950
+
3951
+ .mdi-satellite:before {
3952
+ content: "\f4d8";
3953
+ }
3954
+
3955
+ .mdi-satellite-variant:before {
3956
+ content: "\f4d9";
3957
+ }
3958
+
3959
+ .mdi-scale:before {
3960
+ content: "\f4da";
3961
+ }
3962
+
3963
+ .mdi-scale-bathroom:before {
3964
+ content: "\f4db";
3965
+ }
3966
+
3967
+ .mdi-school:before {
3968
+ content: "\f4dc";
3969
+ }
3970
+
3971
+ .mdi-screen-rotation:before {
3972
+ content: "\f4dd";
3973
+ }
3974
+
3975
+ .mdi-screen-rotation-lock:before {
3976
+ content: "\f4de";
3977
+ }
3978
+
3979
+ .mdi-script:before {
3980
+ content: "\f4df";
3981
+ }
3982
+
3983
+ .mdi-sd:before {
3984
+ content: "\f4e0";
3985
+ }
3986
+
3987
+ .mdi-security:before {
3988
+ content: "\f4e1";
3989
+ }
3990
+
3991
+ .mdi-security-network:before {
3992
+ content: "\f4e2";
3993
+ }
3994
+
3995
+ .mdi-select:before {
3996
+ content: "\f4e3";
3997
+ }
3998
+
3999
+ .mdi-select-all:before {
4000
+ content: "\f4e4";
4001
+ }
4002
+
4003
+ .mdi-select-inverse:before {
4004
+ content: "\f4e5";
4005
+ }
4006
+
4007
+ .mdi-select-off:before {
4008
+ content: "\f4e6";
4009
+ }
4010
+
4011
+ .mdi-send:before {
4012
+ content: "\f4e7";
4013
+ }
4014
+
4015
+ .mdi-server:before {
4016
+ content: "\f4e8";
4017
+ }
4018
+
4019
+ .mdi-server-minus:before {
4020
+ content: "\f4e9";
4021
+ }
4022
+
4023
+ .mdi-server-network:before {
4024
+ content: "\f4ea";
4025
+ }
4026
+
4027
+ .mdi-server-network-off:before {
4028
+ content: "\f4eb";
4029
+ }
4030
+
4031
+ .mdi-server-off:before {
4032
+ content: "\f4ec";
4033
+ }
4034
+
4035
+ .mdi-server-plus:before {
4036
+ content: "\f4ed";
4037
+ }
4038
+
4039
+ .mdi-server-remove:before {
4040
+ content: "\f4ee";
4041
+ }
4042
+
4043
+ .mdi-server-security:before {
4044
+ content: "\f4ef";
4045
+ }
4046
+
4047
+ .mdi-settings:before {
4048
+ content: "\f4f0";
4049
+ }
4050
+
4051
+ .mdi-settings-box:before {
4052
+ content: "\f4f1";
4053
+ }
4054
+
4055
+ .mdi-shape-plus:before {
4056
+ content: "\f4f2";
4057
+ }
4058
+
4059
+ .mdi-share:before {
4060
+ content: "\f4f3";
4061
+ }
4062
+
4063
+ .mdi-share-variant:before {
4064
+ content: "\f4f4";
4065
+ }
4066
+
4067
+ .mdi-shield:before {
4068
+ content: "\f4f5";
4069
+ }
4070
+
4071
+ .mdi-shield-outline:before {
4072
+ content: "\f4f6";
4073
+ }
4074
+
4075
+ .mdi-shopping:before {
4076
+ content: "\f4f7";
4077
+ }
4078
+
4079
+ .mdi-shopping-music:before {
4080
+ content: "\f4f8";
4081
+ }
4082
+
4083
+ .mdi-shuffle:before {
4084
+ content: "\f4f9";
4085
+ }
4086
+
4087
+ .mdi-sigma:before {
4088
+ content: "\f4fa";
4089
+ }
4090
+
4091
+ .mdi-sign-caution:before {
4092
+ content: "\f4fb";
4093
+ }
4094
+
4095
+ .mdi-signal:before {
4096
+ content: "\f4fc";
4097
+ }
4098
+
4099
+ .mdi-silverware:before {
4100
+ content: "\f4fd";
4101
+ }
4102
+
4103
+ .mdi-silverware-fork:before {
4104
+ content: "\f4fe";
4105
+ }
4106
+
4107
+ .mdi-silverware-spoon:before {
4108
+ content: "\f4ff";
4109
+ }
4110
+
4111
+ .mdi-silverware-variant:before {
4112
+ content: "\f500";
4113
+ }
4114
+
4115
+ .mdi-sim-alert:before {
4116
+ content: "\f501";
4117
+ }
4118
+
4119
+ .mdi-sitemap:before {
4120
+ content: "\f502";
4121
+ }
4122
+
4123
+ .mdi-skip-next:before {
4124
+ content: "\f503";
4125
+ }
4126
+
4127
+ .mdi-skip-previous:before {
4128
+ content: "\f504";
4129
+ }
4130
+
4131
+ .mdi-skype:before {
4132
+ content: "\f505";
4133
+ }
4134
+
4135
+ .mdi-skype-business:before {
4136
+ content: "\f506";
4137
+ }
4138
+
4139
+ .mdi-sleep:before {
4140
+ content: "\f507";
4141
+ }
4142
+
4143
+ .mdi-sleep-off:before {
4144
+ content: "\f508";
4145
+ }
4146
+
4147
+ .mdi-smoking:before {
4148
+ content: "\f509";
4149
+ }
4150
+
4151
+ .mdi-smoking-off:before {
4152
+ content: "\f50a";
4153
+ }
4154
+
4155
+ .mdi-snapchat:before {
4156
+ content: "\f50b";
4157
+ }
4158
+
4159
+ .mdi-snowman:before {
4160
+ content: "\f50c";
4161
+ }
4162
+
4163
+ .mdi-sofa:before {
4164
+ content: "\f50d";
4165
+ }
4166
+
4167
+ .mdi-sort:before {
4168
+ content: "\f50e";
4169
+ }
4170
+
4171
+ .mdi-sort-alphabetical:before {
4172
+ content: "\f50f";
4173
+ }
4174
+
4175
+ .mdi-sort-ascending:before {
4176
+ content: "\f510";
4177
+ }
4178
+
4179
+ .mdi-sort-descending:before {
4180
+ content: "\f511";
4181
+ }
4182
+
4183
+ .mdi-sort-numeric:before {
4184
+ content: "\f512";
4185
+ }
4186
+
4187
+ .mdi-sort-variant:before {
4188
+ content: "\f513";
4189
+ }
4190
+
4191
+ .mdi-soundcloud:before {
4192
+ content: "\f514";
4193
+ }
4194
+
4195
+ .mdi-source-fork:before {
4196
+ content: "\f515";
4197
+ }
4198
+
4199
+ .mdi-source-pull:before {
4200
+ content: "\f516";
4201
+ }
4202
+
4203
+ .mdi-speaker:before {
4204
+ content: "\f517";
4205
+ }
4206
+
4207
+ .mdi-speaker-off:before {
4208
+ content: "\f518";
4209
+ }
4210
+
4211
+ .mdi-speedometer:before {
4212
+ content: "\f519";
4213
+ }
4214
+
4215
+ .mdi-spellcheck:before {
4216
+ content: "\f51a";
4217
+ }
4218
+
4219
+ .mdi-spotify:before {
4220
+ content: "\f51b";
4221
+ }
4222
+
4223
+ .mdi-spotlight:before {
4224
+ content: "\f51c";
4225
+ }
4226
+
4227
+ .mdi-spotlight-beam:before {
4228
+ content: "\f51d";
4229
+ }
4230
+
4231
+ .mdi-square-inc:before {
4232
+ content: "\f51e";
4233
+ }
4234
+
4235
+ .mdi-square-inc-cash:before {
4236
+ content: "\f51f";
4237
+ }
4238
+
4239
+ .mdi-stackoverflow:before {
4240
+ content: "\f520";
4241
+ }
4242
+
4243
+ .mdi-star:before {
4244
+ content: "\f521";
4245
+ }
4246
+
4247
+ .mdi-star-circle:before {
4248
+ content: "\f522";
4249
+ }
4250
+
4251
+ .mdi-star-half:before {
4252
+ content: "\f523";
4253
+ }
4254
+
4255
+ .mdi-star-outline:before {
4256
+ content: "\f524";
4257
+ }
4258
+
4259
+ .mdi-steam:before {
4260
+ content: "\f525";
4261
+ }
4262
+
4263
+ .mdi-stethoscope:before {
4264
+ content: "\f526";
4265
+ }
4266
+
4267
+ .mdi-stocking:before {
4268
+ content: "\f527";
4269
+ }
4270
+
4271
+ .mdi-stop:before {
4272
+ content: "\f528";
4273
+ }
4274
+
4275
+ .mdi-store:before {
4276
+ content: "\f529";
4277
+ }
4278
+
4279
+ .mdi-store-24-hour:before {
4280
+ content: "\f52a";
4281
+ }
4282
+
4283
+ .mdi-stove:before {
4284
+ content: "\f52b";
4285
+ }
4286
+
4287
+ .mdi-subway:before {
4288
+ content: "\f52c";
4289
+ }
4290
+
4291
+ .mdi-sunglasses:before {
4292
+ content: "\f52d";
4293
+ }
4294
+
4295
+ .mdi-swap-horizontal:before {
4296
+ content: "\f52e";
4297
+ }
4298
+
4299
+ .mdi-swap-vertical:before {
4300
+ content: "\f52f";
4301
+ }
4302
+
4303
+ .mdi-swim:before {
4304
+ content: "\f530";
4305
+ }
4306
+
4307
+ .mdi-sword:before {
4308
+ content: "\f531";
4309
+ }
4310
+
4311
+ .mdi-sync:before {
4312
+ content: "\f532";
4313
+ }
4314
+
4315
+ .mdi-sync-alert:before {
4316
+ content: "\f533";
4317
+ }
4318
+
4319
+ .mdi-sync-off:before {
4320
+ content: "\f534";
4321
+ }
4322
+
4323
+ .mdi-tab:before {
4324
+ content: "\f535";
4325
+ }
4326
+
4327
+ .mdi-tab-unselected:before {
4328
+ content: "\f536";
4329
+ }
4330
+
4331
+ .mdi-table:before {
4332
+ content: "\f537";
4333
+ }
4334
+
4335
+ .mdi-table-column-plus-after:before {
4336
+ content: "\f538";
4337
+ }
4338
+
4339
+ .mdi-table-column-plus-before:before {
4340
+ content: "\f539";
4341
+ }
4342
+
4343
+ .mdi-table-column-remove:before {
4344
+ content: "\f53a";
4345
+ }
4346
+
4347
+ .mdi-table-column-width:before {
4348
+ content: "\f53b";
4349
+ }
4350
+
4351
+ .mdi-table-edit:before {
4352
+ content: "\f53c";
4353
+ }
4354
+
4355
+ .mdi-table-large:before {
4356
+ content: "\f53d";
4357
+ }
4358
+
4359
+ .mdi-table-row-height:before {
4360
+ content: "\f53e";
4361
+ }
4362
+
4363
+ .mdi-table-row-plus-after:before {
4364
+ content: "\f53f";
4365
+ }
4366
+
4367
+ .mdi-table-row-plus-before:before {
4368
+ content: "\f540";
4369
+ }
4370
+
4371
+ .mdi-table-row-remove:before {
4372
+ content: "\f541";
4373
+ }
4374
+
4375
+ .mdi-tablet:before {
4376
+ content: "\f542";
4377
+ }
4378
+
4379
+ .mdi-tablet-android:before {
4380
+ content: "\f543";
4381
+ }
4382
+
4383
+ .mdi-tablet-ipad:before {
4384
+ content: "\f544";
4385
+ }
4386
+
4387
+ .mdi-tag:before {
4388
+ content: "\f545";
4389
+ }
4390
+
4391
+ .mdi-tag-faces:before {
4392
+ content: "\f546";
4393
+ }
4394
+
4395
+ .mdi-tag-multiple:before {
4396
+ content: "\f547";
4397
+ }
4398
+
4399
+ .mdi-tag-outline:before {
4400
+ content: "\f548";
4401
+ }
4402
+
4403
+ .mdi-tag-text-outline:before {
4404
+ content: "\f549";
4405
+ }
4406
+
4407
+ .mdi-taxi:before {
4408
+ content: "\f54a";
4409
+ }
4410
+
4411
+ .mdi-teamviewer:before {
4412
+ content: "\f54b";
4413
+ }
4414
+
4415
+ .mdi-telegram:before {
4416
+ content: "\f54c";
4417
+ }
4418
+
4419
+ .mdi-television:before {
4420
+ content: "\f54d";
4421
+ }
4422
+
4423
+ .mdi-television-guide:before {
4424
+ content: "\f54e";
4425
+ }
4426
+
4427
+ .mdi-temperature-celsius:before {
4428
+ content: "\f54f";
4429
+ }
4430
+
4431
+ .mdi-temperature-fahrenheit:before {
4432
+ content: "\f550";
4433
+ }
4434
+
4435
+ .mdi-temperature-kelvin:before {
4436
+ content: "\f551";
4437
+ }
4438
+
4439
+ .mdi-tennis:before {
4440
+ content: "\f552";
4441
+ }
4442
+
4443
+ .mdi-tent:before {
4444
+ content: "\f553";
4445
+ }
4446
+
4447
+ .mdi-terrain:before {
4448
+ content: "\f554";
4449
+ }
4450
+
4451
+ .mdi-text-to-speech:before {
4452
+ content: "\f555";
4453
+ }
4454
+
4455
+ .mdi-text-to-speech-off:before {
4456
+ content: "\f556";
4457
+ }
4458
+
4459
+ .mdi-texture:before {
4460
+ content: "\f557";
4461
+ }
4462
+
4463
+ .mdi-theater:before {
4464
+ content: "\f558";
4465
+ }
4466
+
4467
+ .mdi-theme-light-dark:before {
4468
+ content: "\f559";
4469
+ }
4470
+
4471
+ .mdi-thermometer:before {
4472
+ content: "\f55a";
4473
+ }
4474
+
4475
+ .mdi-thermometer-lines:before {
4476
+ content: "\f55b";
4477
+ }
4478
+
4479
+ .mdi-thumb-down:before {
4480
+ content: "\f55c";
4481
+ }
4482
+
4483
+ .mdi-thumb-down-outline:before {
4484
+ content: "\f55d";
4485
+ }
4486
+
4487
+ .mdi-thumb-up:before {
4488
+ content: "\f55e";
4489
+ }
4490
+
4491
+ .mdi-thumb-up-outline:before {
4492
+ content: "\f55f";
4493
+ }
4494
+
4495
+ .mdi-thumbs-up-down:before {
4496
+ content: "\f560";
4497
+ }
4498
+
4499
+ .mdi-ticket:before {
4500
+ content: "\f561";
4501
+ }
4502
+
4503
+ .mdi-ticket-account:before {
4504
+ content: "\f562";
4505
+ }
4506
+
4507
+ .mdi-tie:before {
4508
+ content: "\f563";
4509
+ }
4510
+
4511
+ .mdi-timelapse:before {
4512
+ content: "\f564";
4513
+ }
4514
+
4515
+ .mdi-timer:before {
4516
+ content: "\f565";
4517
+ }
4518
+
4519
+ .mdi-timer-10:before {
4520
+ content: "\f566";
4521
+ }
4522
+
4523
+ .mdi-timer-3:before {
4524
+ content: "\f567";
4525
+ }
4526
+
4527
+ .mdi-timer-off:before {
4528
+ content: "\f568";
4529
+ }
4530
+
4531
+ .mdi-timer-sand:before {
4532
+ content: "\f569";
4533
+ }
4534
+
4535
+ .mdi-timetable:before {
4536
+ content: "\f56a";
4537
+ }
4538
+
4539
+ .mdi-toggle-switch:before {
4540
+ content: "\f56b";
4541
+ }
4542
+
4543
+ .mdi-toggle-switch-off:before {
4544
+ content: "\f56c";
4545
+ }
4546
+
4547
+ .mdi-tooltip:before {
4548
+ content: "\f56d";
4549
+ }
4550
+
4551
+ .mdi-tooltip-edit:before {
4552
+ content: "\f56e";
4553
+ }
4554
+
4555
+ .mdi-tooltip-image:before {
4556
+ content: "\f56f";
4557
+ }
4558
+
4559
+ .mdi-tooltip-outline:before {
4560
+ content: "\f570";
4561
+ }
4562
+
4563
+ .mdi-tooltip-outline-plus:before {
4564
+ content: "\f571";
4565
+ }
4566
+
4567
+ .mdi-tooltip-text:before {
4568
+ content: "\f572";
4569
+ }
4570
+
4571
+ .mdi-tor:before {
4572
+ content: "\f573";
4573
+ }
4574
+
4575
+ .mdi-traffic-light:before {
4576
+ content: "\f574";
4577
+ }
4578
+
4579
+ .mdi-train:before {
4580
+ content: "\f575";
4581
+ }
4582
+
4583
+ .mdi-tram:before {
4584
+ content: "\f576";
4585
+ }
4586
+
4587
+ .mdi-transcribe:before {
4588
+ content: "\f577";
4589
+ }
4590
+
4591
+ .mdi-transcribe-close:before {
4592
+ content: "\f578";
4593
+ }
4594
+
4595
+ .mdi-transfer:before {
4596
+ content: "\f579";
4597
+ }
4598
+
4599
+ .mdi-tree:before {
4600
+ content: "\f57a";
4601
+ }
4602
+
4603
+ .mdi-trello:before {
4604
+ content: "\f57b";
4605
+ }
4606
+
4607
+ .mdi-trending-down:before {
4608
+ content: "\f57c";
4609
+ }
4610
+
4611
+ .mdi-trending-neutral:before {
4612
+ content: "\f57d";
4613
+ }
4614
+
4615
+ .mdi-trending-up:before {
4616
+ content: "\f57e";
4617
+ }
4618
+
4619
+ .mdi-trophy:before {
4620
+ content: "\f57f";
4621
+ }
4622
+
4623
+ .mdi-trophy-award:before {
4624
+ content: "\f580";
4625
+ }
4626
+
4627
+ .mdi-trophy-variant:before {
4628
+ content: "\f581";
4629
+ }
4630
+
4631
+ .mdi-truck:before {
4632
+ content: "\f582";
4633
+ }
4634
+
4635
+ .mdi-tshirt-crew:before {
4636
+ content: "\f583";
4637
+ }
4638
+
4639
+ .mdi-tshirt-v:before {
4640
+ content: "\f584";
4641
+ }
4642
+
4643
+ .mdi-tumblr:before {
4644
+ content: "\f585";
4645
+ }
4646
+
4647
+ .mdi-tumblr-reblog:before {
4648
+ content: "\f586";
4649
+ }
4650
+
4651
+ .mdi-twitch:before {
4652
+ content: "\f587";
4653
+ }
4654
+
4655
+ .mdi-twitter:before {
4656
+ content: "\f588";
4657
+ }
4658
+
4659
+ .mdi-twitter-box:before {
4660
+ content: "\f589";
4661
+ }
4662
+
4663
+ .mdi-twitter-circle:before {
4664
+ content: "\f58a";
4665
+ }
4666
+
4667
+ .mdi-twitter-retweet:before {
4668
+ content: "\f58b";
4669
+ }
4670
+
4671
+ .mdi-ubuntu:before {
4672
+ content: "\f58c";
4673
+ }
4674
+
4675
+ .mdi-umbrella:before {
4676
+ content: "\f58d";
4677
+ }
4678
+
4679
+ .mdi-umbrella-outline:before {
4680
+ content: "\f58e";
4681
+ }
4682
+
4683
+ .mdi-undo:before {
4684
+ content: "\f58f";
4685
+ }
4686
+
4687
+ .mdi-undo-variant:before {
4688
+ content: "\f590";
4689
+ }
4690
+
4691
+ .mdi-unfold-less:before {
4692
+ content: "\f591";
4693
+ }
4694
+
4695
+ .mdi-unfold-more:before {
4696
+ content: "\f592";
4697
+ }
4698
+
4699
+ .mdi-ungroup:before {
4700
+ content: "\f593";
4701
+ }
4702
+
4703
+ .mdi-untappd:before {
4704
+ content: "\f594";
4705
+ }
4706
+
4707
+ .mdi-upload:before {
4708
+ content: "\f595";
4709
+ }
4710
+
4711
+ .mdi-usb:before {
4712
+ content: "\f596";
4713
+ }
4714
+
4715
+ .mdi-vector-curve:before {
4716
+ content: "\f597";
4717
+ }
4718
+
4719
+ .mdi-vector-point:before {
4720
+ content: "\f598";
4721
+ }
4722
+
4723
+ .mdi-vector-square:before {
4724
+ content: "\f599";
4725
+ }
4726
+
4727
+ .mdi-verified:before {
4728
+ content: "\f59a";
4729
+ }
4730
+
4731
+ .mdi-vibrate:before {
4732
+ content: "\f59b";
4733
+ }
4734
+
4735
+ .mdi-video:before {
4736
+ content: "\f59c";
4737
+ }
4738
+
4739
+ .mdi-video-off:before {
4740
+ content: "\f59d";
4741
+ }
4742
+
4743
+ .mdi-video-switch:before {
4744
+ content: "\f59e";
4745
+ }
4746
+
4747
+ .mdi-view-agenda:before {
4748
+ content: "\f59f";
4749
+ }
4750
+
4751
+ .mdi-view-array:before {
4752
+ content: "\f5a0";
4753
+ }
4754
+
4755
+ .mdi-view-carousel:before {
4756
+ content: "\f5a1";
4757
+ }
4758
+
4759
+ .mdi-view-column:before {
4760
+ content: "\f5a2";
4761
+ }
4762
+
4763
+ .mdi-view-dashboard:before {
4764
+ content: "\f5a3";
4765
+ }
4766
+
4767
+ .mdi-view-day:before {
4768
+ content: "\f5a4";
4769
+ }
4770
+
4771
+ .mdi-view-grid:before {
4772
+ content: "\f5a5";
4773
+ }
4774
+
4775
+ .mdi-view-headline:before {
4776
+ content: "\f5a6";
4777
+ }
4778
+
4779
+ .mdi-view-list:before {
4780
+ content: "\f5a7";
4781
+ }
4782
+
4783
+ .mdi-view-module:before {
4784
+ content: "\f5a8";
4785
+ }
4786
+
4787
+ .mdi-view-quilt:before {
4788
+ content: "\f5a9";
4789
+ }
4790
+
4791
+ .mdi-view-stream:before {
4792
+ content: "\f5aa";
4793
+ }
4794
+
4795
+ .mdi-view-week:before {
4796
+ content: "\f5ab";
4797
+ }
4798
+
4799
+ .mdi-vimeo:before {
4800
+ content: "\f5ac";
4801
+ }
4802
+
4803
+ .mdi-vine:before {
4804
+ content: "\f5ad";
4805
+ }
4806
+
4807
+ .mdi-vk:before {
4808
+ content: "\f5ae";
4809
+ }
4810
+
4811
+ .mdi-vk-box:before {
4812
+ content: "\f5af";
4813
+ }
4814
+
4815
+ .mdi-vk-circle:before {
4816
+ content: "\f5b0";
4817
+ }
4818
+
4819
+ .mdi-voicemail:before {
4820
+ content: "\f5b1";
4821
+ }
4822
+
4823
+ .mdi-volume-high:before {
4824
+ content: "\f5b2";
4825
+ }
4826
+
4827
+ .mdi-volume-low:before {
4828
+ content: "\f5b3";
4829
+ }
4830
+
4831
+ .mdi-volume-medium:before {
4832
+ content: "\f5b4";
4833
+ }
4834
+
4835
+ .mdi-volume-off:before {
4836
+ content: "\f5b5";
4837
+ }
4838
+
4839
+ .mdi-vpn:before {
4840
+ content: "\f5b6";
4841
+ }
4842
+
4843
+ .mdi-walk:before {
4844
+ content: "\f5b7";
4845
+ }
4846
+
4847
+ .mdi-wallet:before {
4848
+ content: "\f5b8";
4849
+ }
4850
+
4851
+ .mdi-wallet-giftcard:before {
4852
+ content: "\f5b9";
4853
+ }
4854
+
4855
+ .mdi-wallet-membership:before {
4856
+ content: "\f5ba";
4857
+ }
4858
+
4859
+ .mdi-wallet-travel:before {
4860
+ content: "\f5bb";
4861
+ }
4862
+
4863
+ .mdi-watch:before {
4864
+ content: "\f5bc";
4865
+ }
4866
+
4867
+ .mdi-watch-export:before {
4868
+ content: "\f5bd";
4869
+ }
4870
+
4871
+ .mdi-watch-import:before {
4872
+ content: "\f5be";
4873
+ }
4874
+
4875
+ .mdi-water:before {
4876
+ content: "\f5bf";
4877
+ }
4878
+
4879
+ .mdi-water-off:before {
4880
+ content: "\f5c0";
4881
+ }
4882
+
4883
+ .mdi-water-pump:before {
4884
+ content: "\f5c1";
4885
+ }
4886
+
4887
+ .mdi-weather-cloudy:before {
4888
+ content: "\f5c2";
4889
+ }
4890
+
4891
+ .mdi-weather-fog:before {
4892
+ content: "\f5c3";
4893
+ }
4894
+
4895
+ .mdi-weather-hail:before {
4896
+ content: "\f5c4";
4897
+ }
4898
+
4899
+ .mdi-weather-lightning:before {
4900
+ content: "\f5c5";
4901
+ }
4902
+
4903
+ .mdi-weather-night:before {
4904
+ content: "\f5c6";
4905
+ }
4906
+
4907
+ .mdi-weather-partlycloudy:before {
4908
+ content: "\f5c7";
4909
+ }
4910
+
4911
+ .mdi-weather-pouring:before {
4912
+ content: "\f5c8";
4913
+ }
4914
+
4915
+ .mdi-weather-rainy:before {
4916
+ content: "\f5c9";
4917
+ }
4918
+
4919
+ .mdi-weather-snowy:before {
4920
+ content: "\f5ca";
4921
+ }
4922
+
4923
+ .mdi-weather-sunny:before {
4924
+ content: "\f5cb";
4925
+ }
4926
+
4927
+ .mdi-weather-sunset:before {
4928
+ content: "\f5cc";
4929
+ }
4930
+
4931
+ .mdi-weather-sunset-down:before {
4932
+ content: "\f5cd";
4933
+ }
4934
+
4935
+ .mdi-weather-sunset-up:before {
4936
+ content: "\f5ce";
4937
+ }
4938
+
4939
+ .mdi-weather-windy:before {
4940
+ content: "\f5cf";
4941
+ }
4942
+
4943
+ .mdi-weather-windy-variant:before {
4944
+ content: "\f5d0";
4945
+ }
4946
+
4947
+ .mdi-web:before {
4948
+ content: "\f5d1";
4949
+ }
4950
+
4951
+ .mdi-webcam:before {
4952
+ content: "\f5d2";
4953
+ }
4954
+
4955
+ .mdi-weight:before {
4956
+ content: "\f5d3";
4957
+ }
4958
+
4959
+ .mdi-weight-kilogram:before {
4960
+ content: "\f5d4";
4961
+ }
4962
+
4963
+ .mdi-whatsapp:before {
4964
+ content: "\f5d5";
4965
+ }
4966
+
4967
+ .mdi-wheelchair-accessibility:before {
4968
+ content: "\f5d6";
4969
+ }
4970
+
4971
+ .mdi-white-balance-auto:before {
4972
+ content: "\f5d7";
4973
+ }
4974
+
4975
+ .mdi-white-balance-incandescent:before {
4976
+ content: "\f5d8";
4977
+ }
4978
+
4979
+ .mdi-white-balance-irradescent:before {
4980
+ content: "\f5d9";
4981
+ }
4982
+
4983
+ .mdi-white-balance-sunny:before {
4984
+ content: "\f5da";
4985
+ }
4986
+
4987
+ .mdi-wifi:before {
4988
+ content: "\f5db";
4989
+ }
4990
+
4991
+ .mdi-wii:before {
4992
+ content: "\f5dc";
4993
+ }
4994
+
4995
+ .mdi-wikipedia:before {
4996
+ content: "\f5dd";
4997
+ }
4998
+
4999
+ .mdi-window-close:before {
5000
+ content: "\f5de";
5001
+ }
5002
+
5003
+ .mdi-window-closed:before {
5004
+ content: "\f5df";
5005
+ }
5006
+
5007
+ .mdi-window-maximize:before {
5008
+ content: "\f5e0";
5009
+ }
5010
+
5011
+ .mdi-window-minimize:before {
5012
+ content: "\f5e1";
5013
+ }
5014
+
5015
+ .mdi-window-open:before {
5016
+ content: "\f5e2";
5017
+ }
5018
+
5019
+ .mdi-window-restore:before {
5020
+ content: "\f5e3";
5021
+ }
5022
+
5023
+ .mdi-windows:before {
5024
+ content: "\f5e4";
5025
+ }
5026
+
5027
+ .mdi-wordpress:before {
5028
+ content: "\f5e5";
5029
+ }
5030
+
5031
+ .mdi-worker:before {
5032
+ content: "\f5e6";
5033
+ }
5034
+
5035
+ .mdi-wunderlist:before {
5036
+ content: "\f5e7";
5037
+ }
5038
+
5039
+ .mdi-xbox:before {
5040
+ content: "\f5e8";
5041
+ }
5042
+
5043
+ .mdi-xbox-controller:before {
5044
+ content: "\f5e9";
5045
+ }
5046
+
5047
+ .mdi-xbox-controller-off:before {
5048
+ content: "\f5ea";
5049
+ }
5050
+
5051
+ .mdi-xda:before {
5052
+ content: "\f5eb";
5053
+ }
5054
+
5055
+ .mdi-xml:before {
5056
+ content: "\f5ec";
5057
+ }
5058
+
5059
+ .mdi-yeast:before {
5060
+ content: "\f5ed";
5061
+ }
5062
+
5063
+ .mdi-yelp:before {
5064
+ content: "\f5ee";
5065
+ }
5066
+
5067
+ .mdi-youtube-play:before {
5068
+ content: "\f5ef";
5069
+ }
5070
+
5071
+ .mdi-zip-box:before {
5072
+ content: "\f5f0";
5073
+ }
5074
+
5075
+ .mdi-18px {
5076
+ font-size: 18px;
5077
+ }
5078
+
5079
+ .mdi-24px {
5080
+ font-size: 24px;
5081
+ }
5082
+
5083
+ .mdi-36px {
5084
+ font-size: 36px;
5085
+ }
5086
+
5087
+ .mdi-48px {
5088
+ font-size: 48px;
5089
+ }
5090
+
5091
+ .mdi-dark {
5092
+ color: rgba(0, 0, 0, 0.54);
5093
+ }
5094
+
5095
+ .mdi-dark.mdi-inactive {
5096
+ color: rgba(0, 0, 0, 0.26);
5097
+ }
5098
+
5099
+ .mdi-light {
5100
+ color: white;
5101
+ }
5102
+
5103
+ .mdi-light.mdi-inactive {
5104
+ color: rgba(255, 255, 255, 0.3);
5105
+ }
5106
+
5107
+ /*# sourceMappingURL=materialdesignicons.css.map */
admin/css/materialize.css CHANGED
@@ -1,5702 +1,5702 @@
1
- /*!
2
- * Materialize v0.95.3 (http://materializecss.com)
3
- * Copyright 2014-2015 Materialize
4
- * MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
5
- */
6
- .materialize-red.lighten-5 {
7
- background-color: #fdeaeb !important; }
8
-
9
- .materialize-red-text.text-lighten-5 {
10
- color: #fdeaeb !important; }
11
-
12
- .materialize-red.lighten-4 {
13
- background-color: #f8c1c3 !important; }
14
-
15
- .materialize-red-text.text-lighten-4 {
16
- color: #f8c1c3 !important; }
17
-
18
- .materialize-red.lighten-3 {
19
- background-color: #f3989b !important; }
20
-
21
- .materialize-red-text.text-lighten-3 {
22
- color: #f3989b !important; }
23
-
24
- .materialize-red.lighten-2 {
25
- background-color: #ee6e73 !important; }
26
-
27
- .materialize-red-text.text-lighten-2 {
28
- color: #ee6e73 !important; }
29
-
30
- .materialize-red.lighten-1 {
31
- background-color: #ea454b !important; }
32
-
33
- .materialize-red-text.text-lighten-1 {
34
- color: #ea454b !important; }
35
-
36
- .materialize-red {
37
- background-color: #e51c23 !important; }
38
-
39
- .materialize-red-text {
40
- color: #e51c23 !important; }
41
-
42
- .materialize-red.darken-1 {
43
- background-color: #d0181e !important; }
44
-
45
- .materialize-red-text.text-darken-1 {
46
- color: #d0181e !important; }
47
-
48
- .materialize-red.darken-2 {
49
- background-color: #b9151b !important; }
50
-
51
- .materialize-red-text.text-darken-2 {
52
- color: #b9151b !important; }
53
-
54
- .materialize-red.darken-3 {
55
- background-color: #a21318 !important; }
56
-
57
- .materialize-red-text.text-darken-3 {
58
- color: #a21318 !important; }
59
-
60
- .materialize-red.darken-4 {
61
- background-color: #8b1014 !important; }
62
-
63
- .materialize-red-text.text-darken-4 {
64
- color: #8b1014 !important; }
65
-
66
- .red.lighten-5 {
67
- background-color: #FFEBEE !important; }
68
-
69
- .red-text.text-lighten-5 {
70
- color: #FFEBEE !important; }
71
-
72
- .red.lighten-4 {
73
- background-color: #FFCDD2 !important; }
74
-
75
- .red-text.text-lighten-4 {
76
- color: #FFCDD2 !important; }
77
-
78
- .red.lighten-3 {
79
- background-color: #EF9A9A !important; }
80
-
81
- .red-text.text-lighten-3 {
82
- color: #EF9A9A !important; }
83
-
84
- .red.lighten-2 {
85
- background-color: #E57373 !important; }
86
-
87
- .red-text.text-lighten-2 {
88
- color: #E57373 !important; }
89
-
90
- .red.lighten-1 {
91
- background-color: #EF5350 !important; }
92
-
93
- .red-text.text-lighten-1 {
94
- color: #EF5350 !important; }
95
-
96
- .red {
97
- background-color: #F44336 !important; }
98
-
99
- .red-text {
100
- color: #F44336 !important; }
101
-
102
- .red.darken-1 {
103
- background-color: #E53935 !important; }
104
-
105
- .red-text.text-darken-1 {
106
- color: #E53935 !important; }
107
-
108
- .red.darken-2 {
109
- background-color: #D32F2F !important; }
110
-
111
- .red-text.text-darken-2 {
112
- color: #D32F2F !important; }
113
-
114
- .red.darken-3 {
115
- background-color: #C62828 !important; }
116
-
117
- .red-text.text-darken-3 {
118
- color: #C62828 !important; }
119
-
120
- .red.darken-4 {
121
- background-color: #B71C1C !important; }
122
-
123
- .red-text.text-darken-4 {
124
- color: #B71C1C !important; }
125
-
126
- .red.accent-1 {
127
- background-color: #FF8A80 !important; }
128
-
129
- .red-text.text-accent-1 {
130
- color: #FF8A80 !important; }
131
-
132
- .red.accent-2 {
133
- background-color: #FF5252 !important; }
134
-
135
- .red-text.text-accent-2 {
136
- color: #FF5252 !important; }
137
-
138
- .red.accent-3 {
139
- background-color: #FF1744 !important; }
140
-
141
- .red-text.text-accent-3 {
142
- color: #FF1744 !important; }
143
-
144
- .red.accent-4 {
145
- background-color: #D50000 !important; }
146
-
147
- .red-text.text-accent-4 {
148
- color: #D50000 !important; }
149
-
150
- .pink.lighten-5 {
151
- background-color: #fce4ec !important; }
152
-
153
- .pink-text.text-lighten-5 {
154
- color: #fce4ec !important; }
155
-
156
- .pink.lighten-4 {
157
- background-color: #f8bbd0 !important; }
158
-
159
- .pink-text.text-lighten-4 {
160
- color: #f8bbd0 !important; }
161
-
162
- .pink.lighten-3 {
163
- background-color: #f48fb1 !important; }
164
-
165
- .pink-text.text-lighten-3 {
166
- color: #f48fb1 !important; }
167
-
168
- .pink.lighten-2 {
169
- background-color: #f06292 !important; }
170
-
171
- .pink-text.text-lighten-2 {
172
- color: #f06292 !important; }
173
-
174
- .pink.lighten-1 {
175
- background-color: #ec407a !important; }
176
-
177
- .pink-text.text-lighten-1 {
178
- color: #ec407a !important; }
179
-
180
- .pink {
181
- background-color: #e91e63 !important; }
182
-
183
- .pink-text {
184
- color: #e91e63 !important; }
185
-
186
- .pink.darken-1 {
187
- background-color: #d81b60 !important; }
188
-
189
- .pink-text.text-darken-1 {
190
- color: #d81b60 !important; }
191
-
192
- .pink.darken-2 {
193
- background-color: #c2185b !important; }
194
-
195
- .pink-text.text-darken-2 {
196
- color: #c2185b !important; }
197
-
198
- .pink.darken-3 {
199
- background-color: #ad1457 !important; }
200
-
201
- .pink-text.text-darken-3 {
202
- color: #ad1457 !important; }
203
-
204
- .pink.darken-4 {
205
- background-color: #880e4f !important; }
206
-
207
- .pink-text.text-darken-4 {
208
- color: #880e4f !important; }
209
-
210
- .pink.accent-1 {
211
- background-color: #ff80ab !important; }
212
-
213
- .pink-text.text-accent-1 {
214
- color: #ff80ab !important; }
215
-
216
- .pink.accent-2 {
217
- background-color: #ff4081 !important; }
218
-
219
- .pink-text.text-accent-2 {
220
- color: #ff4081 !important; }
221
-
222
- .pink.accent-3 {
223
- background-color: #f50057 !important; }
224
-
225
- .pink-text.text-accent-3 {
226
- color: #f50057 !important; }
227
-
228
- .pink.accent-4 {
229
- background-color: #c51162 !important; }
230
-
231
- .pink-text.text-accent-4 {
232
- color: #c51162 !important; }
233
-
234
- .purple.lighten-5 {
235
- background-color: #f3e5f5 !important; }
236
-
237
- .purple-text.text-lighten-5 {
238
- color: #f3e5f5 !important; }
239
-
240
- .purple.lighten-4 {
241
- background-color: #e1bee7 !important; }
242
-
243
- .purple-text.text-lighten-4 {
244
- color: #e1bee7 !important; }
245
-
246
- .purple.lighten-3 {
247
- background-color: #ce93d8 !important; }
248
-
249
- .purple-text.text-lighten-3 {
250
- color: #ce93d8 !important; }
251
-
252
- .purple.lighten-2 {
253
- background-color: #ba68c8 !important; }
254
-
255
- .purple-text.text-lighten-2 {
256
- color: #ba68c8 !important; }
257
-
258
- .purple.lighten-1 {
259
- background-color: #ab47bc !important; }
260
-
261
- .purple-text.text-lighten-1 {
262
- color: #ab47bc !important; }
263
-
264
- .purple {
265
- background-color: #9c27b0 !important; }
266
-
267
- .purple-text {
268
- color: #9c27b0 !important; }
269
-
270
- .purple.darken-1 {
271
- background-color: #8e24aa !important; }
272
-
273
- .purple-text.text-darken-1 {
274
- color: #8e24aa !important; }
275
-
276
- .purple.darken-2 {
277
- background-color: #7b1fa2 !important; }
278
-
279
- .purple-text.text-darken-2 {
280
- color: #7b1fa2 !important; }
281
-
282
- .purple.darken-3 {
283
- background-color: #6a1b9a !important; }
284
-
285
- .purple-text.text-darken-3 {
286
- color: #6a1b9a !important; }
287
-
288
- .purple.darken-4 {
289
- background-color: #4a148c !important; }
290
-
291
- .purple-text.text-darken-4 {
292
- color: #4a148c !important; }
293
-
294
- .purple.accent-1 {
295
- background-color: #ea80fc !important; }
296
-
297
- .purple-text.text-accent-1 {
298
- color: #ea80fc !important; }
299
-
300
- .purple.accent-2 {
301
- background-color: #e040fb !important; }
302
-
303
- .purple-text.text-accent-2 {
304
- color: #e040fb !important; }
305
-
306
- .purple.accent-3 {
307
- background-color: #d500f9 !important; }
308
-
309
- .purple-text.text-accent-3 {
310
- color: #d500f9 !important; }
311
-
312
- .purple.accent-4 {
313
- background-color: #aa00ff !important; }
314
-
315
- .purple-text.text-accent-4 {
316
- color: #aa00ff !important; }
317
-
318
- .deep-purple.lighten-5 {
319
- background-color: #ede7f6 !important; }
320
-
321
- .deep-purple-text.text-lighten-5 {
322
- color: #ede7f6 !important; }
323
-
324
- .deep-purple.lighten-4 {
325
- background-color: #d1c4e9 !important; }
326
-
327
- .deep-purple-text.text-lighten-4 {
328
- color: #d1c4e9 !important; }
329
-
330
- .deep-purple.lighten-3 {
331
- background-color: #b39ddb !important; }
332
-
333
- .deep-purple-text.text-lighten-3 {
334
- color: #b39ddb !important; }
335
-
336
- .deep-purple.lighten-2 {
337
- background-color: #9575cd !important; }
338
-
339
- .deep-purple-text.text-lighten-2 {
340
- color: #9575cd !important; }
341
-
342
- .deep-purple.lighten-1 {
343
- background-color: #7e57c2 !important; }
344
-
345
- .deep-purple-text.text-lighten-1 {
346
- color: #7e57c2 !important; }
347
-
348
- .deep-purple {
349
- background-color: #673ab7 !important; }
350
-
351
- .deep-purple-text {
352
- color: #673ab7 !important; }
353
-
354
- .deep-purple.darken-1 {
355
- background-color: #5e35b1 !important; }
356
-
357
- .deep-purple-text.text-darken-1 {
358
- color: #5e35b1 !important; }
359
-
360
- .deep-purple.darken-2 {
361
- background-color: #512da8 !important; }
362
-
363
- .deep-purple-text.text-darken-2 {
364
- color: #512da8 !important; }
365
-
366
- .deep-purple.darken-3 {
367
- background-color: #4527a0 !important; }
368
-
369
- .deep-purple-text.text-darken-3 {
370
- color: #4527a0 !important; }
371
-
372
- .deep-purple.darken-4 {
373
- background-color: #311b92 !important; }
374
-
375
- .deep-purple-text.text-darken-4 {
376
- color: #311b92 !important; }
377
-
378
- .deep-purple.accent-1 {
379
- background-color: #b388ff !important; }
380
-
381
- .deep-purple-text.text-accent-1 {
382
- color: #b388ff !important; }
383
-
384
- .deep-purple.accent-2 {
385
- background-color: #7c4dff !important; }
386
-
387
- .deep-purple-text.text-accent-2 {
388
- color: #7c4dff !important; }
389
-
390
- .deep-purple.accent-3 {
391
- background-color: #651fff !important; }
392
-
393
- .deep-purple-text.text-accent-3 {
394
- color: #651fff !important; }
395
-
396
- .deep-purple.accent-4 {
397
- background-color: #6200ea !important; }
398
-
399
- .deep-purple-text.text-accent-4 {
400
- color: #6200ea !important; }
401
-
402
- .indigo.lighten-5 {
403
- background-color: #e8eaf6 !important; }
404
-
405
- .indigo-text.text-lighten-5 {
406
- color: #e8eaf6 !important; }
407
-
408
- .indigo.lighten-4 {
409
- background-color: #c5cae9 !important; }
410
-
411
- .indigo-text.text-lighten-4 {
412
- color: #c5cae9 !important; }
413
-
414
- .indigo.lighten-3 {
415
- background-color: #9fa8da !important; }
416
-
417
- .indigo-text.text-lighten-3 {
418
- color: #9fa8da !important; }
419
-
420
- .indigo.lighten-2 {
421
- background-color: #7986cb !important; }
422
-
423
- .indigo-text.text-lighten-2 {
424
- color: #7986cb !important; }
425
-
426
- .indigo.lighten-1 {
427
- background-color: #5c6bc0 !important; }
428
-
429
- .indigo-text.text-lighten-1 {
430
- color: #5c6bc0 !important; }
431
-
432
- .indigo {
433
- background-color: #3f51b5 !important; }
434
-
435
- .indigo-text {
436
- color: #3f51b5 !important; }
437
-
438
- .indigo.darken-1 {
439
- background-color: #3949ab !important; }
440
-
441
- .indigo-text.text-darken-1 {
442
- color: #3949ab !important; }
443
-
444
- .indigo.darken-2 {
445
- background-color: #303f9f !important; }
446
-
447
- .indigo-text.text-darken-2 {
448
- color: #303f9f !important; }
449
-
450
- .indigo.darken-3 {
451
- background-color: #283593 !important; }
452
-
453
- .indigo-text.text-darken-3 {
454
- color: #283593 !important; }
455
-
456
- .indigo.darken-4 {
457
- background-color: #1a237e !important; }
458
-
459
- .indigo-text.text-darken-4 {
460
- color: #1a237e !important; }
461
-
462
- .indigo.accent-1 {
463
- background-color: #8c9eff !important; }
464
-
465
- .indigo-text.text-accent-1 {
466
- color: #8c9eff !important; }
467
-
468
- .indigo.accent-2 {
469
- background-color: #536dfe !important; }
470
-
471
- .indigo-text.text-accent-2 {
472
- color: #536dfe !important; }
473
-
474
- .indigo.accent-3 {
475
- background-color: #3d5afe !important; }
476
-
477
- .indigo-text.text-accent-3 {
478
- color: #3d5afe !important; }
479
-
480
- .indigo.accent-4 {
481
- background-color: #304ffe !important; }
482
-
483
- .indigo-text.text-accent-4 {
484
- color: #304ffe !important; }
485
-
486
- .blue.lighten-5 {
487
- background-color: #E3F2FD !important; }
488
-
489
- .blue-text.text-lighten-5 {
490
- color: #E3F2FD !important; }
491
-
492
- .blue.lighten-4 {
493
- background-color: #BBDEFB !important; }
494
-
495
- .blue-text.text-lighten-4 {
496
- color: #BBDEFB !important; }
497
-
498
- .blue.lighten-3 {
499
- background-color: #90CAF9 !important; }
500
-
501
- .blue-text.text-lighten-3 {
502
- color: #90CAF9 !important; }
503
-
504
- .blue.lighten-2 {
505
- background-color: #64B5F6 !important; }
506
-
507
- .blue-text.text-lighten-2 {
508
- color: #64B5F6 !important; }
509
-
510
- .blue.lighten-1 {
511
- background-color: #42A5F5 !important; }
512
-
513
- .blue-text.text-lighten-1 {
514
- color: #42A5F5 !important; }
515
-
516
- .blue {
517
- background-color: #2196F3 !important; }
518
-
519
- .blue-text {
520
- color: #2196F3 !important; }
521
-
522
- .blue.darken-1 {
523
- background-color: #1E88E5 !important; }
524
-
525
- .blue-text.text-darken-1 {
526
- color: #1E88E5 !important; }
527
-
528
- .blue.darken-2 {
529
- background-color: #1976D2 !important; }
530
-
531
- .blue-text.text-darken-2 {
532
- color: #1976D2 !important; }
533
-
534
- .blue.darken-3 {
535
- background-color: #1565C0 !important; }
536
-
537
- .blue-text.text-darken-3 {
538
- color: #1565C0 !important; }
539
-
540
- .blue.darken-4 {
541
- background-color: #0D47A1 !important; }
542
-
543
- .blue-text.text-darken-4 {
544
- color: #0D47A1 !important; }
545
-
546
- .blue.accent-1 {
547
- background-color: #82B1FF !important; }
548
-
549
- .blue-text.text-accent-1 {
550
- color: #82B1FF !important; }
551
-
552
- .blue.accent-2 {
553
- background-color: #448AFF !important; }
554
-
555
- .blue-text.text-accent-2 {
556
- color: #448AFF !important; }
557
-
558
- .blue.accent-3 {
559
- background-color: #2979FF !important; }
560
-
561
- .blue-text.text-accent-3 {
562
- color: #2979FF !important; }
563
-
564
- .blue.accent-4 {
565
- background-color: #2962FF !important; }
566
-
567
- .blue-text.text-accent-4 {
568
- color: #2962FF !important; }
569
-
570
- .light-blue.lighten-5 {
571
- background-color: #e1f5fe !important; }
572
-
573
- .light-blue-text.text-lighten-5 {
574
- color: #e1f5fe !important; }
575
-
576
- .light-blue.lighten-4 {
577
- background-color: #b3e5fc !important; }
578
-
579
- .light-blue-text.text-lighten-4 {
580
- color: #b3e5fc !important; }
581
-
582
- .light-blue.lighten-3 {
583
- background-color: #81d4fa !important; }
584
-
585
- .light-blue-text.text-lighten-3 {
586
- color: #81d4fa !important; }
587
-
588
- .light-blue.lighten-2 {
589
- background-color: #4fc3f7 !important; }
590
-
591
- .light-blue-text.text-lighten-2 {
592
- color: #4fc3f7 !important; }
593
-
594
- .light-blue.lighten-1 {
595
- background-color: #29b6f6 !important; }
596
-
597
- .light-blue-text.text-lighten-1 {
598
- color: #29b6f6 !important; }
599
-
600
- .light-blue {
601
- background-color: #03a9f4 !important; }
602
-
603
- .light-blue-text {
604
- color: #03a9f4 !important; }
605
-
606
- .light-blue.darken-1 {
607
- background-color: #039be5 !important; }
608
-
609
- .light-blue-text.text-darken-1 {
610
- color: #039be5 !important; }
611
-
612
- .light-blue.darken-2 {
613
- background-color: #0288d1 !important; }
614
-
615
- .light-blue-text.text-darken-2 {
616
- color: #0288d1 !important; }
617
-
618
- .light-blue.darken-3 {
619
- background-color: #0277bd !important; }
620
-
621
- .light-blue-text.text-darken-3 {
622
- color: #0277bd !important; }
623
-
624
- .light-blue.darken-4 {
625
- background-color: #01579b !important; }
626
-
627
- .light-blue-text.text-darken-4 {
628
- color: #01579b !important; }
629
-
630
- .light-blue.accent-1 {
631
- background-color: #80d8ff !important; }
632
-
633
- .light-blue-text.text-accent-1 {
634
- color: #80d8ff !important; }
635
-
636
- .light-blue.accent-2 {
637
- background-color: #40c4ff !important; }
638
-
639
- .light-blue-text.text-accent-2 {
640
- color: #40c4ff !important; }
641
-
642
- .light-blue.accent-3 {
643
- background-color: #00b0ff !important; }
644
-
645
- .light-blue-text.text-accent-3 {
646
- color: #00b0ff !important; }
647
-
648
- .light-blue.accent-4 {
649
- background-color: #0091ea !important; }
650
-
651
- .light-blue-text.text-accent-4 {
652
- color: #0091ea !important; }
653
-
654
- .cyan.lighten-5 {
655
- background-color: #e0f7fa !important; }
656
-
657
- .cyan-text.text-lighten-5 {
658
- color: #e0f7fa !important; }
659
-
660
- .cyan.lighten-4 {
661
- background-color: #b2ebf2 !important; }
662
-
663
- .cyan-text.text-lighten-4 {
664
- color: #b2ebf2 !important; }
665
-
666
- .cyan.lighten-3 {
667
- background-color: #80deea !important; }
668
-
669
- .cyan-text.text-lighten-3 {
670
- color: #80deea !important; }
671
-
672
- .cyan.lighten-2 {
673
- background-color: #4dd0e1 !important; }
674
-
675
- .cyan-text.text-lighten-2 {
676
- color: #4dd0e1 !important; }
677
-
678
- .cyan.lighten-1 {
679
- background-color: #26c6da !important; }
680
-
681
- .cyan-text.text-lighten-1 {
682
- color: #26c6da !important; }
683
-
684
- .cyan {
685
- background-color: #00bcd4 !important; }
686
-
687
- .cyan-text {
688
- color: #00bcd4 !important; }
689
-
690
- .cyan.darken-1 {
691
- background-color: #00acc1 !important; }
692
-
693
- .cyan-text.text-darken-1 {
694
- color: #00acc1 !important; }
695
-
696
- .cyan.darken-2 {
697
- background-color: #0097a7 !important; }
698
-
699
- .cyan-text.text-darken-2 {
700
- color: #0097a7 !important; }
701
-
702
- .cyan.darken-3 {
703
- background-color: #00838f !important; }
704
-
705
- .cyan-text.text-darken-3 {
706
- color: #00838f !important; }
707
-
708
- .cyan.darken-4 {
709
- background-color: #006064 !important; }
710
-
711
- .cyan-text.text-darken-4 {
712
- color: #006064 !important; }
713
-
714
- .cyan.accent-1 {
715
- background-color: #84ffff !important; }
716
-
717
- .cyan-text.text-accent-1 {
718
- color: #84ffff !important; }
719
-
720
- .cyan.accent-2 {
721
- background-color: #18ffff !important; }
722
-
723
- .cyan-text.text-accent-2 {
724
- color: #18ffff !important; }
725
-
726
- .cyan.accent-3 {
727
- background-color: #00e5ff !important; }
728
-
729
- .cyan-text.text-accent-3 {
730
- color: #00e5ff !important; }
731
-
732
- .cyan.accent-4 {
733
- background-color: #00b8d4 !important; }
734
-
735
- .cyan-text.text-accent-4 {
736
- color: #00b8d4 !important; }
737
-
738
- .teal.lighten-5 {
739
- background-color: #e0f2f1 !important; }
740
-
741
- .teal-text.text-lighten-5 {
742
- color: #e0f2f1 !important; }
743
-
744
- .teal.lighten-4 {
745
- background-color: #b2dfdb !important; }
746
-
747
- .teal-text.text-lighten-4 {
748
- color: #b2dfdb !important; }
749
-
750
- .teal.lighten-3 {
751
- background-color: #80cbc4 !important; }
752
-
753
- .teal-text.text-lighten-3 {
754
- color: #80cbc4 !important; }
755
-
756
- .teal.lighten-2 {
757
- background-color: #4db6ac !important; }
758
-
759
- .teal-text.text-lighten-2 {
760
- color: #4db6ac !important; }
761
-
762
- .teal.lighten-1 {
763
- background-color: #26a69a !important; }
764
-
765
- .teal-text.text-lighten-1 {
766
- color: #26a69a !important; }
767
-
768
- .teal {
769
- background-color: #009688 !important; }
770
-
771
- .teal-text {
772
- color: #009688 !important; }
773
-
774
- .teal.darken-1 {
775
- background-color: #00897b !important; }
776
-
777
- .teal-text.text-darken-1 {
778
- color: #00897b !important; }
779
-
780
- .teal.darken-2 {
781
- background-color: #00796b !important; }
782
-
783
- .teal-text.text-darken-2 {
784
- color: #00796b !important; }
785
-
786
- .teal.darken-3 {
787
- background-color: #00695c !important; }
788
-
789
- .teal-text.text-darken-3 {
790
- color: #00695c !important; }
791
-
792
- .teal.darken-4 {
793
- background-color: #004d40 !important; }
794
-
795
- .teal-text.text-darken-4 {
796
- color: #004d40 !important; }
797
-
798
- .teal.accent-1 {
799
- background-color: #a7ffeb !important; }
800
-
801
- .teal-text.text-accent-1 {
802
- color: #a7ffeb !important; }
803
-
804
- .teal.accent-2 {
805
- background-color: #64ffda !important; }
806
-
807
- .teal-text.text-accent-2 {
808
- color: #64ffda !important; }
809
-
810
- .teal.accent-3 {
811
- background-color: #1de9b6 !important; }
812
-
813
- .teal-text.text-accent-3 {
814
- color: #1de9b6 !important; }
815
-
816
- .teal.accent-4 {
817
- background-color: #00bfa5 !important; }
818
-
819
- .teal-text.text-accent-4 {
820
- color: #00bfa5 !important; }
821
-
822
- .green.lighten-5 {
823
- background-color: #E8F5E9 !important; }
824
-
825
- .green-text.text-lighten-5 {
826
- color: #E8F5E9 !important; }
827
-
828
- .green.lighten-4 {
829
- background-color: #C8E6C9 !important; }
830
-
831
- .green-text.text-lighten-4 {
832
- color: #C8E6C9 !important; }
833
-
834
- .green.lighten-3 {
835
- background-color: #A5D6A7 !important; }
836
-
837
- .green-text.text-lighten-3 {
838
- color: #A5D6A7 !important; }
839
-
840
- .green.lighten-2 {
841
- background-color: #81C784 !important; }
842
-
843
- .green-text.text-lighten-2 {
844
- color: #81C784 !important; }
845
-
846
- .green.lighten-1 {
847
- background-color: #66BB6A !important; }
848
-
849
- .green-text.text-lighten-1 {
850
- color: #66BB6A !important; }
851
-
852
- .green {
853
- background-color: #4CAF50 !important; }
854
-
855
- .green-text {
856
- color: #4CAF50 !important; }
857
-
858
- .green.darken-1 {
859
- background-color: #43A047 !important; }
860
-
861
- .green-text.text-darken-1 {
862
- color: #43A047 !important; }
863
-
864
- .green.darken-2 {
865
- background-color: #388E3C !important; }
866
-
867
- .green-text.text-darken-2 {
868
- color: #388E3C !important; }
869
-
870
- .green.darken-3 {
871
- background-color: #2E7D32 !important; }
872
-
873
- .green-text.text-darken-3 {
874
- color: #2E7D32 !important; }
875
-
876
- .green.darken-4 {
877
- background-color: #1B5E20 !important; }
878
-
879
- .green-text.text-darken-4 {
880
- color: #1B5E20 !important; }
881
-
882
- .green.accent-1 {
883
- background-color: #B9F6CA !important; }
884
-
885
- .green-text.text-accent-1 {
886
- color: #B9F6CA !important; }
887
-
888
- .green.accent-2 {
889
- background-color: #69F0AE !important; }
890
-
891
- .green-text.text-accent-2 {
892
- color: #69F0AE !important; }
893
-
894
- .green.accent-3 {
895
- background-color: #00E676 !important; }
896
-
897
- .green-text.text-accent-3 {
898
- color: #00E676 !important; }
899
-
900
- .green.accent-4 {
901
- background-color: #00C853 !important; }
902
-
903
- .green-text.text-accent-4 {
904
- color: #00C853 !important; }
905
-
906
- .light-green.lighten-5 {
907
- background-color: #f1f8e9 !important; }
908
-
909
- .light-green-text.text-lighten-5 {
910
- color: #f1f8e9 !important; }
911
-
912
- .light-green.lighten-4 {
913
- background-color: #dcedc8 !important; }
914
-
915
- .light-green-text.text-lighten-4 {
916
- color: #dcedc8 !important; }
917
-
918
- .light-green.lighten-3 {
919
- background-color: #c5e1a5 !important; }
920
-
921
- .light-green-text.text-lighten-3 {
922
- color: #c5e1a5 !important; }
923
-
924
- .light-green.lighten-2 {
925
- background-color: #aed581 !important; }
926
-
927
- .light-green-text.text-lighten-2 {
928
- color: #aed581 !important; }
929
-
930
- .light-green.lighten-1 {
931
- background-color: #9ccc65 !important; }
932
-
933
- .light-green-text.text-lighten-1 {
934
- color: #9ccc65 !important; }
935
-
936
- .light-green {
937
- background-color: #8bc34a !important; }
938
-
939
- .light-green-text {
940
- color: #8bc34a !important; }
941
-
942
- .light-green.darken-1 {
943
- background-color: #7cb342 !important; }
944
-
945
- .light-green-text.text-darken-1 {
946
- color: #7cb342 !important; }
947
-
948
- .light-green.darken-2 {
949
- background-color: #689f38 !important; }
950
-
951
- .light-green-text.text-darken-2 {
952
- color: #689f38 !important; }
953
-
954
- .light-green.darken-3 {
955
- background-color: #558b2f !important; }
956
-
957
- .light-green-text.text-darken-3 {
958
- color: #558b2f !important; }
959
-
960
- .light-green.darken-4 {
961
- background-color: #33691e !important; }
962
-
963
- .light-green-text.text-darken-4 {
964
- color: #33691e !important; }
965
-
966
- .light-green.accent-1 {
967
- background-color: #ccff90 !important; }
968
-
969
- .light-green-text.text-accent-1 {
970
- color: #ccff90 !important; }
971
-
972
- .light-green.accent-2 {
973
- background-color: #b2ff59 !important; }
974
-
975
- .light-green-text.text-accent-2 {
976
- color: #b2ff59 !important; }
977
-
978
- .light-green.accent-3 {
979
- background-color: #76ff03 !important; }
980
-
981
- .light-green-text.text-accent-3 {
982
- color: #76ff03 !important; }
983
-
984
- .light-green.accent-4 {
985
- background-color: #64dd17 !important; }
986
-
987
- .light-green-text.text-accent-4 {
988
- color: #64dd17 !important; }
989
-
990
- .lime.lighten-5 {
991
- background-color: #f9fbe7 !important; }
992
-
993
- .lime-text.text-lighten-5 {
994
- color: #f9fbe7 !important; }
995
-
996
- .lime.lighten-4 {
997
- background-color: #f0f4c3 !important; }
998
-
999
- .lime-text.text-lighten-4 {
1000
- color: #f0f4c3 !important; }
1001
-
1002
- .lime.lighten-3 {
1003
- background-color: #e6ee9c !important; }
1004
-
1005
- .lime-text.text-lighten-3 {
1006
- color: #e6ee9c !important; }
1007
-
1008
- .lime.lighten-2 {
1009
- background-color: #dce775 !important; }
1010
-
1011
- .lime-text.text-lighten-2 {
1012
- color: #dce775 !important; }
1013
-
1014
- .lime.lighten-1 {
1015
- background-color: #d4e157 !important; }
1016
-
1017
- .lime-text.text-lighten-1 {
1018
- color: #d4e157 !important; }
1019
-
1020
- .lime {
1021
- background-color: #cddc39 !important; }
1022
-
1023
- .lime-text {
1024
- color: #cddc39 !important; }
1025
-
1026
- .lime.darken-1 {
1027
- background-color: #c0ca33 !important; }
1028
-
1029
- .lime-text.text-darken-1 {
1030
- color: #c0ca33 !important; }
1031
-
1032
- .lime.darken-2 {
1033
- background-color: #afb42b !important; }
1034
-
1035
- .lime-text.text-darken-2 {
1036
- color: #afb42b !important; }
1037
-
1038
- .lime.darken-3 {
1039
- background-color: #9e9d24 !important; }
1040
-
1041
- .lime-text.text-darken-3 {
1042
- color: #9e9d24 !important; }
1043
-
1044
- .lime.darken-4 {
1045
- background-color: #827717 !important; }
1046
-
1047
- .lime-text.text-darken-4 {
1048
- color: #827717 !important; }
1049
-
1050
- .lime.accent-1 {
1051
- background-color: #f4ff81 !important; }
1052
-
1053
- .lime-text.text-accent-1 {
1054
- color: #f4ff81 !important; }
1055
-
1056
- .lime.accent-2 {
1057
- background-color: #eeff41 !important; }
1058
-
1059
- .lime-text.text-accent-2 {
1060
- color: #eeff41 !important; }
1061
-
1062
- .lime.accent-3 {
1063
- background-color: #c6ff00 !important; }
1064
-
1065
- .lime-text.text-accent-3 {
1066
- color: #c6ff00 !important; }
1067
-
1068
- .lime.accent-4 {
1069
- background-color: #aeea00 !important; }
1070
-
1071
- .lime-text.text-accent-4 {
1072
- color: #aeea00 !important; }
1073
-
1074
- .yellow.lighten-5 {
1075
- background-color: #fffde7 !important; }
1076
-
1077
- .yellow-text.text-lighten-5 {
1078
- color: #fffde7 !important; }
1079
-
1080
- .yellow.lighten-4 {
1081
- background-color: #fff9c4 !important; }
1082
-
1083
- .yellow-text.text-lighten-4 {
1084
- color: #fff9c4 !important; }
1085
-
1086
- .yellow.lighten-3 {
1087
- background-color: #fff59d !important; }
1088
-
1089
- .yellow-text.text-lighten-3 {
1090
- color: #fff59d !important; }
1091
-
1092
- .yellow.lighten-2 {
1093
- background-color: #fff176 !important; }
1094
-
1095
- .yellow-text.text-lighten-2 {
1096
- color: #fff176 !important; }
1097
-
1098
- .yellow.lighten-1 {
1099
- background-color: #ffee58 !important; }
1100
-
1101
- .yellow-text.text-lighten-1 {
1102
- color: #ffee58 !important; }
1103
-
1104
- .yellow {
1105
- background-color: #ffeb3b !important; }
1106
-
1107
- .yellow-text {
1108
- color: #ffeb3b !important; }
1109
-
1110
- .yellow.darken-1 {
1111
- background-color: #fdd835 !important; }
1112
-
1113
- .yellow-text.text-darken-1 {
1114
- color: #fdd835 !important; }
1115
-
1116
- .yellow.darken-2 {
1117
- background-color: #fbc02d !important; }
1118
-
1119
- .yellow-text.text-darken-2 {
1120
- color: #fbc02d !important; }
1121
-
1122
- .yellow.darken-3 {
1123
- background-color: #f9a825 !important; }
1124
-
1125
- .yellow-text.text-darken-3 {
1126
- color: #f9a825 !important; }
1127
-
1128
- .yellow.darken-4 {
1129
- background-color: #f57f17 !important; }
1130
-
1131
- .yellow-text.text-darken-4 {
1132
- color: #f57f17 !important; }
1133
-
1134
- .yellow.accent-1 {
1135
- background-color: #ffff8d !important; }
1136
-
1137
- .yellow-text.text-accent-1 {
1138
- color: #ffff8d !important; }
1139
-
1140
- .yellow.accent-2 {
1141
- background-color: #ffff00 !important; }
1142
-
1143
- .yellow-text.text-accent-2 {
1144
- color: #ffff00 !important; }
1145
-
1146
- .yellow.accent-3 {
1147
- background-color: #ffea00 !important; }
1148
-
1149
- .yellow-text.text-accent-3 {
1150
- color: #ffea00 !important; }
1151
-
1152
- .yellow.accent-4 {
1153
- background-color: #ffd600 !important; }
1154
-
1155
- .yellow-text.text-accent-4 {
1156
- color: #ffd600 !important; }
1157
-
1158
- .amber.lighten-5 {
1159
- background-color: #fff8e1 !important; }
1160
-
1161
- .amber-text.text-lighten-5 {
1162
- color: #fff8e1 !important; }
1163
-
1164
- .amber.lighten-4 {
1165
- background-color: #ffecb3 !important; }
1166
-
1167
- .amber-text.text-lighten-4 {
1168
- color: #ffecb3 !important; }
1169
-
1170
- .amber.lighten-3 {
1171
- background-color: #ffe082 !important; }
1172
-
1173
- .amber-text.text-lighten-3 {
1174
- color: #ffe082 !important; }
1175
-
1176
- .amber.lighten-2 {
1177
- background-color: #ffd54f !important; }
1178
-
1179
- .amber-text.text-lighten-2 {
1180
- color: #ffd54f !important; }
1181
-
1182
- .amber.lighten-1 {
1183
- background-color: #ffca28 !important; }
1184
-
1185
- .amber-text.text-lighten-1 {
1186
- color: #ffca28 !important; }
1187
-
1188
- .amber {
1189
- background-color: #ffc107 !important; }
1190
-
1191
- .amber-text {
1192
- color: #ffc107 !important; }
1193
-
1194
- .amber.darken-1 {
1195
- background-color: #ffb300 !important; }
1196
-
1197
- .amber-text.text-darken-1 {
1198
- color: #ffb300 !important; }
1199
-
1200
- .amber.darken-2 {
1201
- background-color: #ffa000 !important; }
1202
-
1203
- .amber-text.text-darken-2 {
1204
- color: #ffa000 !important; }
1205
-
1206
- .amber.darken-3 {
1207
- background-color: #ff8f00 !important; }
1208
-
1209
- .amber-text.text-darken-3 {
1210
- color: #ff8f00 !important; }
1211
-
1212
- .amber.darken-4 {
1213
- background-color: #ff6f00 !important; }
1214
-
1215
- .amber-text.text-darken-4 {
1216
- color: #ff6f00 !important; }
1217
-
1218
- .amber.accent-1 {
1219
- background-color: #ffe57f !important; }
1220
-
1221
- .amber-text.text-accent-1 {
1222
- color: #ffe57f !important; }
1223
-
1224
- .amber.accent-2 {
1225
- background-color: #ffd740 !important; }
1226
-
1227
- .amber-text.text-accent-2 {
1228
- color: #ffd740 !important; }
1229
-
1230
- .amber.accent-3 {
1231
- background-color: #ffc400 !important; }
1232
-
1233
- .amber-text.text-accent-3 {
1234
- color: #ffc400 !important; }
1235
-
1236
- .amber.accent-4 {
1237
- background-color: #ffab00 !important; }
1238
-
1239
- .amber-text.text-accent-4 {
1240
- color: #ffab00 !important; }
1241
-
1242
- .orange.lighten-5 {
1243
- background-color: #fff3e0 !important; }
1244
-
1245
- .orange-text.text-lighten-5 {
1246
- color: #fff3e0 !important; }
1247
-
1248
- .orange.lighten-4 {
1249
- background-color: #ffe0b2 !important; }
1250
-
1251
- .orange-text.text-lighten-4 {
1252
- color: #ffe0b2 !important; }
1253
-
1254
- .orange.lighten-3 {
1255
- background-color: #ffcc80 !important; }
1256
-
1257
- .orange-text.text-lighten-3 {
1258
- color: #ffcc80 !important; }
1259
-
1260
- .orange.lighten-2 {
1261
- background-color: #ffb74d !important; }
1262
-
1263
- .orange-text.text-lighten-2 {
1264
- color: #ffb74d !important; }
1265
-
1266
- .orange.lighten-1 {
1267
- background-color: #ffa726 !important; }
1268
-
1269
- .orange-text.text-lighten-1 {
1270
- color: #ffa726 !important; }
1271
-
1272
- .orange {
1273
- background-color: #ff9800 !important; }
1274
-
1275
- .orange-text {
1276
- color: #ff9800 !important; }
1277
-
1278
- .orange.darken-1 {
1279
- background-color: #fb8c00 !important; }
1280
-
1281
- .orange-text.text-darken-1 {
1282
- color: #fb8c00 !important; }
1283
-
1284
- .orange.darken-2 {
1285
- background-color: #f57c00 !important; }
1286
-
1287
- .orange-text.text-darken-2 {
1288
- color: #f57c00 !important; }
1289
-
1290
- .orange.darken-3 {
1291
- background-color: #ef6c00 !important; }
1292
-
1293
- .orange-text.text-darken-3 {
1294
- color: #ef6c00 !important; }
1295
-
1296
- .orange.darken-4 {
1297
- background-color: #e65100 !important; }
1298
-
1299
- .orange-text.text-darken-4 {
1300
- color: #e65100 !important; }
1301
-
1302
- .orange.accent-1 {
1303
- background-color: #ffd180 !important; }
1304
-
1305
- .orange-text.text-accent-1 {
1306
- color: #ffd180 !important; }
1307
-
1308
- .orange.accent-2 {
1309
- background-color: #ffab40 !important; }
1310
-
1311
- .orange-text.text-accent-2 {
1312
- color: #ffab40 !important; }
1313
-
1314
- .orange.accent-3 {
1315
- background-color: #ff9100 !important; }
1316
-
1317
- .orange-text.text-accent-3 {
1318
- color: #ff9100 !important; }
1319
-
1320
- .orange.accent-4 {
1321
- background-color: #ff6d00 !important; }
1322
-
1323
- .orange-text.text-accent-4 {
1324
- color: #ff6d00 !important; }
1325
-
1326
- .deep-orange.lighten-5 {
1327
- background-color: #fbe9e7 !important; }
1328
-
1329
- .deep-orange-text.text-lighten-5 {
1330
- color: #fbe9e7 !important; }
1331
-
1332
- .deep-orange.lighten-4 {
1333
- background-color: #ffccbc !important; }
1334
-
1335
- .deep-orange-text.text-lighten-4 {
1336
- color: #ffccbc !important; }
1337
-
1338
- .deep-orange.lighten-3 {
1339
- background-color: #ffab91 !important; }
1340
-
1341
- .deep-orange-text.text-lighten-3 {
1342
- color: #ffab91 !important; }
1343
-
1344
- .deep-orange.lighten-2 {
1345
- background-color: #ff8a65 !important; }
1346
-
1347
- .deep-orange-text.text-lighten-2 {
1348
- color: #ff8a65 !important; }
1349
-
1350
- .deep-orange.lighten-1 {
1351
- background-color: #ff7043 !important; }
1352
-
1353
- .deep-orange-text.text-lighten-1 {
1354
- color: #ff7043 !important; }
1355
-
1356
- .deep-orange {
1357
- background-color: #ff5722 !important; }
1358
-
1359
- .deep-orange-text {
1360
- color: #ff5722 !important; }
1361
-
1362
- .deep-orange.darken-1 {
1363
- background-color: #f4511e !important; }
1364
-
1365
- .deep-orange-text.text-darken-1 {
1366
- color: #f4511e !important; }
1367
-
1368
- .deep-orange.darken-2 {
1369
- background-color: #e64a19 !important; }
1370
-
1371
- .deep-orange-text.text-darken-2 {
1372
- color: #e64a19 !important; }
1373
-
1374
- .deep-orange.darken-3 {
1375
- background-color: #d84315 !important; }
1376
-
1377
- .deep-orange-text.text-darken-3 {
1378
- color: #d84315 !important; }
1379
-
1380
- .deep-orange.darken-4 {
1381
- background-color: #bf360c !important; }
1382
-
1383
- .deep-orange-text.text-darken-4 {
1384
- color: #bf360c !important; }
1385
-
1386
- .deep-orange.accent-1 {
1387
- background-color: #ff9e80 !important; }
1388
-
1389
- .deep-orange-text.text-accent-1 {
1390
- color: #ff9e80 !important; }
1391
-
1392
- .deep-orange.accent-2 {
1393
- background-color: #ff6e40 !important; }
1394
-
1395
- .deep-orange-text.text-accent-2 {
1396
- color: #ff6e40 !important; }
1397
-
1398
- .deep-orange.accent-3 {
1399
- background-color: #ff3d00 !important; }
1400
-
1401
- .deep-orange-text.text-accent-3 {
1402
- color: #ff3d00 !important; }
1403
-
1404
- .deep-orange.accent-4 {
1405
- background-color: #dd2c00 !important; }
1406
-
1407
- .deep-orange-text.text-accent-4 {
1408
- color: #dd2c00 !important; }
1409
-
1410
- .brown.lighten-5 {
1411
- background-color: #efebe9 !important; }
1412
-
1413
- .brown-text.text-lighten-5 {
1414
- color: #efebe9 !important; }
1415
-
1416
- .brown.lighten-4 {
1417
- background-color: #d7ccc8 !important; }
1418
-
1419
- .brown-text.text-lighten-4 {
1420
- color: #d7ccc8 !important; }
1421
-
1422
- .brown.lighten-3 {
1423
- background-color: #bcaaa4 !important; }
1424
-
1425
- .brown-text.text-lighten-3 {
1426
- color: #bcaaa4 !important; }
1427
-
1428
- .brown.lighten-2 {
1429
- background-color: #a1887f !important; }
1430
-
1431
- .brown-text.text-lighten-2 {
1432
- color: #a1887f !important; }
1433
-
1434
- .brown.lighten-1 {
1435
- background-color: #8d6e63 !important; }
1436
-
1437
- .brown-text.text-lighten-1 {
1438
- color: #8d6e63 !important; }
1439
-
1440
- .brown {
1441
- background-color: #795548 !important; }
1442
-
1443
- .brown-text {
1444
- color: #795548 !important; }
1445
-
1446
- .brown.darken-1 {
1447
- background-color: #6d4c41 !important; }
1448
-
1449
- .brown-text.text-darken-1 {
1450
- color: #6d4c41 !important; }
1451
-
1452
- .brown.darken-2 {
1453
- background-color: #5d4037 !important; }
1454
-
1455
- .brown-text.text-darken-2 {
1456
- color: #5d4037 !important; }
1457
-
1458
- .brown.darken-3 {
1459
- background-color: #4e342e !important; }
1460
-
1461
- .brown-text.text-darken-3 {
1462
- color: #4e342e !important; }
1463
-
1464
- .brown.darken-4 {
1465
- background-color: #3e2723 !important; }
1466
-
1467
- .brown-text.text-darken-4 {
1468
- color: #3e2723 !important; }
1469
-
1470
- .blue-grey.lighten-5 {
1471
- background-color: #eceff1 !important; }
1472
-
1473
- .blue-grey-text.text-lighten-5 {
1474
- color: #eceff1 !important; }
1475
-
1476
- .blue-grey.lighten-4 {
1477
- background-color: #cfd8dc !important; }
1478
-
1479
- .blue-grey-text.text-lighten-4 {
1480
- color: #cfd8dc !important; }
1481
-
1482
- .blue-grey.lighten-3 {
1483
- background-color: #b0bec5 !important; }
1484
-
1485
- .blue-grey-text.text-lighten-3 {
1486
- color: #b0bec5 !important; }
1487
-
1488
- .blue-grey.lighten-2 {
1489
- background-color: #90a4ae !important; }
1490
-
1491
- .blue-grey-text.text-lighten-2 {
1492
- color: #90a4ae !important; }
1493
-
1494
- .blue-grey.lighten-1 {
1495
- background-color: #78909c !important; }
1496
-
1497
- .blue-grey-text.text-lighten-1 {
1498
- color: #78909c !important; }
1499
-
1500
- .blue-grey {
1501
- background-color: #607d8b !important; }
1502
-
1503
- .blue-grey-text {
1504
- color: #607d8b !important; }
1505
-
1506
- .blue-grey.darken-1 {
1507
- background-color: #546e7a !important; }
1508
-
1509
- .blue-grey-text.text-darken-1 {
1510
- color: #546e7a !important; }
1511
-
1512
- .blue-grey.darken-2 {
1513
- background-color: #455a64 !important; }
1514
-
1515
- .blue-grey-text.text-darken-2 {
1516
- color: #455a64 !important; }
1517
-
1518
- .blue-grey.darken-3 {
1519
- background-color: #37474f !important; }
1520
-
1521
- .blue-grey-text.text-darken-3 {
1522
- color: #37474f !important; }
1523
-
1524
- .blue-grey.darken-4 {
1525
- background-color: #263238 !important; }
1526
-
1527
- .blue-grey-text.text-darken-4 {
1528
- color: #263238 !important; }
1529
-
1530
- .grey.lighten-5 {
1531
- background-color: #fafafa !important; }
1532
-
1533
- .grey-text.text-lighten-5 {
1534
- color: #fafafa !important; }
1535
-
1536
- .grey.lighten-4 {
1537
- background-color: #f5f5f5 !important; }
1538
-
1539
- .grey-text.text-lighten-4 {
1540
- color: #f5f5f5 !important; }
1541
-
1542
- .grey.lighten-3 {
1543
- background-color: #eeeeee !important; }
1544
-
1545
- .grey-text.text-lighten-3 {
1546
- color: #eeeeee !important; }
1547
-
1548
- .grey.lighten-2 {
1549
- background-color: #e0e0e0 !important; }
1550
-
1551
- .grey-text.text-lighten-2 {
1552
- color: #e0e0e0 !important; }
1553
-
1554
- .grey.lighten-1 {
1555
- background-color: #bdbdbd !important; }
1556
-
1557
- .grey-text.text-lighten-1 {
1558
- color: #bdbdbd !important; }
1559
-
1560
- .grey {
1561
- background-color: #9e9e9e !important; }
1562
-
1563
- .grey-text {
1564
- color: #9e9e9e !important; }
1565
-
1566
- .grey.darken-1 {
1567
- background-color: #757575 !important; }
1568
-
1569
- .grey-text.text-darken-1 {
1570
- color: #757575 !important; }
1571
-
1572
- .grey.darken-2 {
1573
- background-color: #616161 !important; }
1574
-
1575
- .grey-text.text-darken-2 {
1576
- color: #616161 !important; }
1577
-
1578
- .grey.darken-3 {
1579
- background-color: #424242 !important; }
1580
-
1581
- .grey-text.text-darken-3 {
1582
- color: #424242 !important; }
1583
-
1584
- .grey.darken-4 {
1585
- background-color: #212121 !important; }
1586
-
1587
- .grey-text.text-darken-4 {
1588
- color: #212121 !important; }
1589
-
1590
- .shades.black {
1591
- background-color: #000000 !important; }
1592
-
1593
- .shades-text.text-black {
1594
- color: #000000 !important; }
1595
-
1596
- .shades.white {
1597
- background-color: #FFFFFF !important; }
1598
-
1599
- .shades-text.text-white {
1600
- color: #FFFFFF !important; }
1601
-
1602
- .black {
1603
- background-color: #000000 !important; }
1604
-
1605
- .black-text {
1606
- color: #000000 !important; }
1607
-
1608
- .white {
1609
- background-color: #FFFFFF !important; }
1610
-
1611
- .white-text {
1612
- color: #FFFFFF !important; }
1613
-
1614
- /*** Colors ***/
1615
- /*** Badges ***/
1616
- /*** Buttons ***/
1617
- /*** Cards ***/
1618
- /*** Collapsible ***/
1619
- /*** Dropdown ***/
1620
- /*** Fonts ***/
1621
- /*** Forms ***/
1622
- /*** Global ***/
1623
- /*** Navbar ***/
1624
- /*** SideNav ***/
1625
- /*** Tabs ***/
1626
- /*** Tables ***/
1627
- /*** Toasts ***/
1628
- /*** Typography ***/
1629
- /*** Collections ***/
1630
- /* Progress Bar */
1631
- /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
1632
- /**
1633
- * 1. Set default font family to sans-serif.
1634
- * 2. Prevent iOS text size adjust after orientation change, without disabling
1635
- * user zoom.
1636
- */
1637
- html {
1638
- font-family: sans-serif;
1639
- /* 1 */
1640
- -ms-text-size-adjust: 100%;
1641
- /* 2 */
1642
- -webkit-text-size-adjust: 100%;
1643
- /* 2 */ }
1644
-
1645
- /**
1646
- * Remove default margin.
1647
- */
1648
- body {
1649
- margin: 0;
1650
- width:80%; }
1651
-
1652
- /* HTML5 display definitions
1653
- ========================================================================== */
1654
- /**
1655
- * Correct `block` display not defined for any HTML5 element in IE 8/9.
1656
- * Correct `block` display not defined for `details` or `summary` in IE 10/11
1657
- * and Firefox.
1658
- * Correct `block` display not defined for `main` in IE 11.
1659
- */
1660
- article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
1661
- display: block; }
1662
-
1663
- /**
1664
- * 1. Correct `inline-block` display not defined in IE 8/9.
1665
- * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
1666
- */
1667
- audio, canvas, progress, video {
1668
- display: inline-block;
1669
- /* 1 */
1670
- vertical-align: baseline;
1671
- /* 2 */ }
1672
-
1673
- /**
1674
- * Prevent modern browsers from displaying `audio` without controls.
1675
- * Remove excess height in iOS 5 devices.
1676
- */
1677
- audio:not([controls]) {
1678
- display: none;
1679
- height: 0; }
1680
-
1681
- /**
1682
- * Address `[hidden]` styling not present in IE 8/9/10.
1683
- * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
1684
- */
1685
- [hidden], template {
1686
- display: none; }
1687
-
1688
- /* Links
1689
- ========================================================================== */
1690
- /**
1691
- * Remove the gray background color from active links in IE 10.
1692
- */
1693
- a {
1694
- background-color: transparent; }
1695
-
1696
- /**
1697
- * Improve readability when focused and also mouse hovered in all browsers.
1698
- */
1699
- a:active, a:hover {
1700
- outline: 0; }
1701
-
1702
- /* Text-level semantics
1703
- ========================================================================== */
1704
- /**
1705
- * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
1706
- */
1707
- abbr[title] {
1708
- border-bottom: 1px dotted; }
1709
-
1710
- /**
1711
- * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
1712
- */
1713
- b, strong {
1714
- font-weight: bold; }
1715
-
1716
- /**
1717
- * Address styling not present in Safari and Chrome.
1718
- */
1719
- dfn {
1720
- font-style: italic; }
1721
-
1722
- /**
1723
- * Address variable `h1` font-size and margin within `section` and `article`
1724
- * contexts in Firefox 4+, Safari, and Chrome.
1725
- */
1726
- h1 {
1727
- font-size: 2em;
1728
- margin: 0.67em 0; }
1729
-
1730
- /**
1731
- * Address styling not present in IE 8/9.
1732
- */
1733
- mark {
1734
- background: #ff0;
1735
- color: #000; }
1736
-
1737
- /**
1738
- * Address inconsistent and variable font size in all browsers.
1739
- */
1740
- small {
1741
- font-size: 80%; }
1742
-
1743
- /**
1744
- * Prevent `sub` and `sup` affecting `line-height` in all browsers.
1745
- */
1746
- sub, sup {
1747
- font-size: 75%;
1748
- line-height: 0;
1749
- position: relative;
1750
- vertical-align: baseline; }
1751
-
1752
- sup {
1753
- top: -0.5em; }
1754
-
1755
- sub {
1756
- bottom: -0.25em; }
1757
-
1758
- /* Embedded content
1759
- ========================================================================== */
1760
- /**
1761
- * Remove border when inside `a` element in IE 8/9/10.
1762
- */
1763
- img {
1764
- border: 0; }
1765
-
1766
- /**
1767
- * Correct overflow not hidden in IE 9/10/11.
1768
- */
1769
- svg:not(:root) {
1770
- overflow: hidden; }
1771
-
1772
- /* Grouping content
1773
- ========================================================================== */
1774
- /**
1775
- * Address margin not present in IE 8/9 and Safari.
1776
- */
1777
- figure {
1778
- margin: 1em 40px; }
1779
-
1780
- /**
1781
- * Address differences between Firefox and other browsers.
1782
- */
1783
- hr {
1784
- -moz-box-sizing: content-box;
1785
- box-sizing: content-box;
1786
- height: 0; }
1787
-
1788
- /**
1789
- * Contain overflow in all browsers.
1790
- */
1791
- pre {
1792
- overflow: auto; }
1793
-
1794
- /**
1795
- * Address odd `em`-unit font size rendering in all browsers.
1796
- */
1797
- code, kbd, pre, samp {
1798
- font-family: monospace, monospace;
1799
- font-size: 1em; }
1800
-
1801
- /* Forms
1802
- ========================================================================== */
1803
- /**
1804
- * Known limitation: by default, Chrome and Safari on OS X allow very limited
1805
- * styling of `select`, unless a `border` property is set.
1806
- */
1807
- /**
1808
- * 1. Correct color not being inherited.
1809
- * Known issue: affects color of disabled elements.
1810
- * 2. Correct font properties not being inherited.
1811
- * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
1812
- */
1813
- button, input, optgroup, select, textarea {
1814
- color: inherit;
1815
- /* 1 */
1816
- font: inherit;
1817
- /* 2 */
1818
- margin: 0;
1819
- /* 3 */ }
1820
-
1821
- /**
1822
- * Address `overflow` set to `hidden` in IE 8/9/10/11.
1823
- */
1824
- button {
1825
- overflow: visible; }
1826
-
1827
- /**
1828
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
1829
- * All other form control elements do not inherit `text-transform` values.
1830
- * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
1831
- * Correct `select` style inheritance in Firefox.
1832
- */
1833
- button, select {
1834
- text-transform: none; }
1835
-
1836
- /**
1837
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
1838
- * and `video` controls.
1839
- * 2. Correct inability to style clickable `input` types in iOS.
1840
- * 3. Improve usability and consistency of cursor style between image-type
1841
- * `input` and others.
1842
- */
1843
- button, html input[type="button"], input[type="reset"], input[type="submit"] {
1844
- -webkit-appearance: button;
1845
- /* 2 */
1846
- cursor: pointer;
1847
- /* 3 */ }
1848
-
1849
- /**
1850
- * Re-set default cursor for disabled elements.
1851
- */
1852
- button[disabled], html input[disabled] {
1853
- cursor: default; }
1854
-
1855
- /**
1856
- * Remove inner padding and border in Firefox 4+.
1857
- */
1858
- button::-moz-focus-inner, input::-moz-focus-inner {
1859
- border: 0;
1860
- padding: 0; }
1861
-
1862
- /**
1863
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in
1864
- * the UA stylesheet.
1865
- */
1866
- input {
1867
- line-height: normal; }
1868
-
1869
- /**
1870
- * It's recommended that you don't attempt to style these elements.
1871
- * Firefox's implementation doesn't respect box-sizing, padding, or width.
1872
- *
1873
- * 1. Address box sizing set to `content-box` in IE 8/9/10.
1874
- * 2. Remove excess padding in IE 8/9/10.
1875
- */
1876
- input[type="checkbox"], input[type="radio"] {
1877
- box-sizing: border-box;
1878
- /* 1 */
1879
- padding: 0;
1880
- /* 2 */ }
1881
-
1882
- /**
1883
- * Fix the cursor style for Chrome's increment/decrement buttons. For certain
1884
- * `font-size` values of the `input`, it causes the cursor style of the
1885
- * decrement button to change from `default` to `text`.
1886
- */
1887
- input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
1888
- height: auto; }
1889
-
1890
- /**
1891
- * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
1892
- * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
1893
- * (include `-moz` to future-proof).
1894
- */
1895
- input[type="search"] {
1896
- -webkit-appearance: textfield;
1897
- /* 1 */
1898
- -moz-box-sizing: content-box;
1899
- -webkit-box-sizing: content-box;
1900
- /* 2 */
1901
- box-sizing: content-box; }
1902
-
1903
- /**
1904
- * Remove inner padding and search cancel button in Safari and Chrome on OS X.
1905
- * Safari (but not Chrome) clips the cancel button when the search input has
1906
- * padding (and `textfield` appearance).
1907
- */
1908
- input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
1909
- -webkit-appearance: none; }
1910
-
1911
- /**
1912
- * Define consistent border, margin, and padding.
1913
- */
1914
- fieldset {
1915
- border: 1px solid #c0c0c0;
1916
- margin: 0 2px;
1917
- padding: 0.35em 0.625em 0.75em; }
1918
-
1919
- /**
1920
- * 1. Correct `color` not being inherited in IE 8/9/10/11.
1921
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
1922
- */
1923
- legend {
1924
- border: 0;
1925
- /* 1 */
1926
- padding: 0;
1927
- /* 2 */ }
1928
-
1929
- /**
1930
- * Remove default vertical scrollbar in IE 8/9/10/11.
1931
- */
1932
- textarea {
1933
- overflow: auto; }
1934
-
1935
- /**
1936
- * Don't inherit the `font-weight` (applied by a rule above).
1937
- * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
1938
- */
1939
- optgroup {
1940
- font-weight: bold; }
1941
-
1942
- /* Tables
1943
- ========================================================================== */
1944
- /**
1945
- * Remove most spacing between table cells.
1946
- */
1947
- table {
1948
- border-collapse: collapse;
1949
- border-spacing: 0; }
1950
-
1951
- td, th {
1952
- padding: 0; }
1953
-
1954
- html {
1955
- box-sizing: border-box; }
1956
-
1957
- *, *:before, *:after {
1958
- box-sizing: inherit; }
1959
-
1960
- ul {
1961
- list-style-type: none; }
1962
-
1963
- a {
1964
- color: #039be5;
1965
- text-decoration: none;
1966
- -webkit-tap-highlight-color: transparent; }
1967
-
1968
- .valign-wrapper {
1969
- display: -webkit-box;
1970
- display: -moz-box;
1971
- display: -ms-flexbox;
1972
- display: -webkit-flex;
1973
- display: flex;
1974
- -webkit-flex-align: center;
1975
- -ms-flex-align: center;
1976
- -webkit-align-items: center;
1977
- align-items: center; }
1978
- .valign-wrapper .valign {
1979
- display: block; }
1980
-
1981
- ul {
1982
- padding: 0; }
1983
- ul li {
1984
- list-style-type: none; }
1985
-
1986
- .clearfix {
1987
- clear: both; }
1988
-
1989
- .z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, ul.side-nav {
1990
- -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
1991
- -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
1992
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
1993
-
1994
- .z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover {
1995
- -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
1996
- -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
1997
- box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
1998
-
1999
- .z-depth-2 {
2000
- -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2001
- -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2002
- box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
2003
-
2004
- .z-depth-3 {
2005
- -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
2006
- -moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
2007
- box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }
2008
-
2009
- .z-depth-4, .modal {
2010
- -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
2011
- -moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
2012
- box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); }
2013
-
2014
- .z-depth-5 {
2015
- -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
2016
- -moz-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
2017
- box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); }
2018
-
2019
- .divider {
2020
- height: 1px;
2021
- overflow: hidden;
2022
- background-color: #e0e0e0; }
2023
-
2024
- blockquote {
2025
- margin: 20px 0;
2026
- padding-left: 1.5rem;
2027
- border-left: 5px solid #EF9A9A; }
2028
-
2029
- i {
2030
- line-height: inherit; }
2031
- i.left {
2032
- float: left;
2033
- margin-right: 15px; }
2034
- i.right {
2035
- float: right;
2036
- margin-left: 15px; }
2037
- i.tiny {
2038
- font-size: 1rem; }
2039
- i.small {
2040
- font-size: 2rem; }
2041
- i.medium {
2042
- font-size: 4rem; }
2043
- i.large {
2044
- font-size: 6rem; }
2045
-
2046
- img.responsive-img, video.responsive-video {
2047
- max-width: 100%;
2048
- height: auto; }
2049
-
2050
- .pagination li {
2051
- font-size: 1.2rem;
2052
- float: left;
2053
- width: 30px;
2054
- height: 30px;
2055
- margin: 0 10px;
2056
- -webkit-border-radius: 2px;
2057
- -moz-border-radius: 2px;
2058
- border-radius: 2px;
2059
- background-clip: padding-box;
2060
- text-align: center; }
2061
- .pagination li a {
2062
- color: #444; }
2063
- .pagination li.active a {
2064
- color: #fff; }
2065
- .pagination li.active {
2066
- background-color: #ee6e73; }
2067
- .pagination li.disabled a {
2068
- color: #999; }
2069
- .pagination li i {
2070
- font-size: 2rem;
2071
- line-height: 1.8rem; }
2072
-
2073
- .parallax-container {
2074
- position: relative;
2075
- overflow: hidden;
2076
- height: 500px; }
2077
-
2078
- .parallax {
2079
- position: absolute;
2080
- top: 0;
2081
- left: 0;
2082
- right: 0;
2083
- bottom: 0;
2084
- z-index: -1; }
2085
- .parallax img {
2086
- display: none;
2087
- position: absolute;
2088
- bottom: 0;
2089
- width: 100%;
2090
- min-height: 100%;
2091
- background-position: center; }
2092
-
2093
- .pin-top, .pin-bottom {
2094
- position: relative; }
2095
-
2096
- .pinned {
2097
- position: fixed !important; }
2098
-
2099
- /*********************
2100
- Transition Classes
2101
- **********************/
2102
- ul.staggered-list li {
2103
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
2104
- filter: "alpha(opacity=(${iefactor}))";
2105
- -moz-opacity: 0;
2106
- -khtml-opacity: 0;
2107
- opacity: 0; }
2108
-
2109
- .fade-in {
2110
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
2111
- filter: "alpha(opacity=(${iefactor}))";
2112
- -moz-opacity: 0;
2113
- -khtml-opacity: 0;
2114
- opacity: 0;
2115
- transform-origin: 0 50%; }
2116
-
2117
- /*********************
2118
- Media Query Classes
2119
- **********************/
2120
- @media only screen and (max-width : 600px) {
2121
- .hide-on-small-only, .hide-on-small-and-down {
2122
- display: none !important; } }
2123
-
2124
- @media only screen and (max-width : 992px) {
2125
- .hide-on-med-and-down {
2126
- display: none !important; } }
2127
-
2128
- @media only screen and (min-width : 601px) {
2129
- .hide-on-med-and-up {
2130
- display: none !important; } }
2131
-
2132
- @media only screen and (min-width: 600px) and (max-width: 992px) {
2133
- .hide-on-med-only {
2134
- display: none !important; } }
2135
-
2136
- @media only screen and (min-width : 993px) {
2137
- .hide-on-large-only {
2138
- display: none !important; } }
2139
-
2140
- @media only screen and (min-width : 993px) {
2141
- .show-on-large {
2142
- display: initial !important; } }
2143
-
2144
- @media only screen and (min-width: 600px) and (max-width: 992px) {
2145
- .show-on-medium {
2146
- display: initial !important; } }
2147
-
2148
- @media only screen and (max-width : 600px) {
2149
- .show-on-small {
2150
- display: initial !important; } }
2151
-
2152
- @media only screen and (min-width : 601px) {
2153
- .show-on-medium-and-up {
2154
- display: initial !important; } }
2155
-
2156
- @media only screen and (max-width : 992px) {
2157
- .show-on-medium-and-down {
2158
- display: initial !important; } }
2159
-
2160
- @media only screen and (max-width : 600px) {
2161
- .center-on-small-only {
2162
- text-align: center; } }
2163
-
2164
- footer.page-footer {
2165
- margin-top: 20px;
2166
- padding-top: 20px;
2167
- background-color: #ee6e73; }
2168
- footer.page-footer .footer-copyright {
2169
- overflow: hidden;
2170
- height: 50px;
2171
- line-height: 50px;
2172
- color: rgba(255, 255, 255, 0.8);
2173
- background-color: rgba(51, 51, 51, 0.08); }
2174
-
2175
- table, th, td {
2176
- border: none; }
2177
-
2178
- table {
2179
- width: 100%;
2180
- display: table; }
2181
- table.bordered tr {
2182
- border-bottom: 1px solid #d0d0d0; }
2183
- table.striped tbody tr:nth-child(odd) {
2184
- background-color: #f2f2f2; }
2185
- table.hoverable tbody tr {
2186
- -webkit-transition: background-color 0.25s ease;
2187
- -moz-transition: background-color 0.25s ease;
2188
- -o-transition: background-color 0.25s ease;
2189
- -ms-transition: background-color 0.25s ease;
2190
- transition: background-color 0.25s ease; }
2191
- table.hoverable tbody tr:hover {
2192
- background-color: #f2f2f2; }
2193
- table.centered thead tr th, table.centered tbody tr td {
2194
- text-align: center; }
2195
-
2196
- thead {
2197
- border-bottom: 1px solid #d0d0d0; }
2198
-
2199
- td, th {
2200
- padding: 15px 5px;
2201
- display: table-cell;
2202
- text-align: left;
2203
- vertical-align: middle;
2204
- -webkit-border-radius: 2px;
2205
- -moz-border-radius: 2px;
2206
- border-radius: 2px;
2207
- background-clip: padding-box; }
2208
-
2209
- @media only screen and (max-width : 992px) {
2210
- table.responsive-table {
2211
- width: 100%;
2212
- border-collapse: collapse;
2213
- border-spacing: 0;
2214
- display: block;
2215
- position: relative;
2216
- /* sort out borders */ }
2217
- table.responsive-table th, table.responsive-table td {
2218
- margin: 0;
2219
- vertical-align: top; }
2220
- table.responsive-table th {
2221
- text-align: left; }
2222
- table.responsive-table thead {
2223
- display: block;
2224
- float: left; }
2225
- table.responsive-table thead tr {
2226
- display: block;
2227
- padding: 0 10px 0 0; }
2228
- table.responsive-table tbody {
2229
- display: block;
2230
- width: auto;
2231
- position: relative;
2232
- overflow-x: auto;
2233
- white-space: nowrap; }
2234
- table.responsive-table tbody tr {
2235
- display: inline-block;
2236
- vertical-align: top; }
2237
- table.responsive-table th {
2238
- display: block;
2239
- text-align: right; }
2240
- table.responsive-table td {
2241
- display: block;
2242
- min-height: 1.25em;
2243
- text-align: left; }
2244
- table.responsive-table tr {
2245
- padding: 0 10px; }
2246
- table.responsive-table thead {
2247
- border: 0;
2248
- border-right: 1px solid #d0d0d0; }
2249
- table.responsive-table.bordered th {
2250
- border-bottom: 0;
2251
- border-left: 0; }
2252
- table.responsive-table.bordered td {
2253
- border-left: 0;
2254
- border-right: 0;
2255
- border-bottom: 0; }
2256
- table.responsive-table.bordered tr {
2257
- border: 0; }
2258
- table.responsive-table.bordered tbody tr {
2259
- border-right: 1px solid #d0d0d0; }
2260
- }
2261
-
2262
- .collection {
2263
- background-color: #999;
2264
- margin: 0.5rem 0 1rem 0;
2265
- border: 1px solid #e0e0e0;
2266
- -webkit-border-radius: 2px;
2267
- -moz-border-radius: 2px;
2268
- border-radius: 2px;
2269
- background-clip: padding-box;
2270
- overflow: hidden; }
2271
- .collection .collection-item {
2272
- background-color: #fff;
2273
- line-height: 1.5rem;
2274
- padding: 10px 20px;
2275
- margin: 0px;
2276
- border-bottom: 1px solid #e0e0e0; }
2277
- .collection .collection-item.avatar {
2278
- height: 84px;
2279
- padding-left: 72px;
2280
- position: relative; }
2281
- .collection .collection-item.avatar .circle {
2282
- position: absolute;
2283
- width: 42px;
2284
- height: 42px;
2285
- overflow: hidden;
2286
- left: 15px;
2287
- display: inline-block;
2288
- vertical-align: middle; }
2289
- .collection .collection-item.avatar i.circle {
2290
- font-size: 18px;
2291
- line-height: 42px;
2292
- color: #fff;
2293
- background-color: #999;
2294
- text-align: center; }
2295
- .collection .collection-item.avatar .title {
2296
- font-size: 16px; }
2297
- .collection .collection-item.avatar p {
2298
- margin: 0; }
2299
- .collection .collection-item.avatar .secondary-content {
2300
- position: absolute;
2301
- top: 16px;
2302
- right: 16px; }
2303
- .collection .collection-item:last-child {
2304
- border-bottom: none; }
2305
- .collection .collection-item.active {
2306
- background-color: #26a69a;
2307
- color: #eafaf9; }
2308
- .collection a.collection-item {
2309
- display: block;
2310
- -webkit-transition: 0.25s;
2311
- -moz-transition: 0.25s;
2312
- -o-transition: 0.25s;
2313
- -ms-transition: 0.25s;
2314
- transition: 0.25s;
2315
- color: #26a69a; }
2316
- .collection a.collection-item:not(.active):hover {
2317
- background-color: #ddd; }
2318
- .collection.with-header .collection-header {
2319
- background-color: #fff;
2320
- border-bottom: 1px solid #e0e0e0;
2321
- padding: 10px 20px; }
2322
- .collection.with-header .collection-item {
2323
- padding-left: 30px; }
2324
-
2325
- .secondary-content {
2326
- float: right;
2327
- color: #26a69a; }
2328
-
2329
- span.badge {
2330
- min-width: 3rem;
2331
- padding: 0 6px;
2332
- text-align: center;
2333
- font-size: 1rem;
2334
- line-height: inherit;
2335
- color: #757575;
2336
- float: right;
2337
- -webkit-box-sizing: border-box;
2338
- -moz-box-sizing: border-box;
2339
- box-sizing: border-box; }
2340
- span.badge.new {
2341
- font-weight: 300;
2342
- font-size: 0.8rem;
2343
- color: #fff;
2344
- background-color: #26a69a;
2345
- -webkit-border-radius: 2px;
2346
- -moz-border-radius: 2px;
2347
- border-radius: 2px;
2348
- background-clip: padding-box; }
2349
- span.badge.new:after {
2350
- content: " new"; }
2351
-
2352
- .video-container {
2353
- position: relative;
2354
- padding-bottom: 56.25%;
2355
- padding-top: 30px;
2356
- height: 0;
2357
- overflow: hidden; }
2358
- .video-container iframe, .video-container object, .video-container embed {
2359
- position: absolute;
2360
- top: 0;
2361
- left: 0;
2362
- width: 100%;
2363
- height: 100%; }
2364
-
2365
- .progress {
2366
- position: relative;
2367
- height: 4px;
2368
- display: block;
2369
- width: 100%;
2370
- background-color: #acece6;
2371
- -webkit-border-radius: 2px;
2372
- -moz-border-radius: 2px;
2373
- border-radius: 2px;
2374
- background-clip: padding-box;
2375
- margin: 0.5rem 0 1rem 0;
2376
- overflow: hidden; }
2377
- .progress .determinate {
2378
- position: absolute;
2379
- background-color: inherit;
2380
- top: 0;
2381
- bottom: 0;
2382
- background-color: #26a69a;
2383
- -webkit-transition: width 0.3s linear;
2384
- -moz-transition: width 0.3s linear;
2385
- -o-transition: width 0.3s linear;
2386
- -ms-transition: width 0.3s linear;
2387
- transition: width 0.3s linear; }
2388
- .progress .indeterminate {
2389
- background-color: #26a69a; }
2390
- .progress .indeterminate:before {
2391
- content: '';
2392
- position: absolute;
2393
- background-color: inherit;
2394
- top: 0;
2395
- left: 0;
2396
- bottom: 0;
2397
- will-change: left, right;
2398
- -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2399
- -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2400
- -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2401
- -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2402
- animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
2403
- .progress .indeterminate:after {
2404
- content: '';
2405
- position: absolute;
2406
- background-color: inherit;
2407
- top: 0;
2408
- left: 0;
2409
- bottom: 0;
2410
- will-change: left, right;
2411
- -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2412
- -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2413
- -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2414
- -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2415
- animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2416
- -webkit-animation-delay: 1.15s;
2417
- -moz-animation-delay: 1.15s;
2418
- -ms-animation-delay: 1.15s;
2419
- -o-animation-delay: 1.15s;
2420
- animation-delay: 1.15s; }
2421
-
2422
- @-webkit-keyframes indeterminate {
2423
- 0% {
2424
- left: -35%;
2425
- right: 100%; }
2426
-
2427
- 60% {
2428
- left: 100%;
2429
- right: -90%; }
2430
-
2431
- 100% {
2432
- left: 100%;
2433
- right: -90%; } }
2434
-
2435
- @-moz-keyframes indeterminate {
2436
- 0% {
2437
- left: -35%;
2438
- right: 100%; }
2439
-
2440
- 60% {
2441
- left: 100%;
2442
- right: -90%; }
2443
-
2444
- 100% {
2445
- left: 100%;
2446
- right: -90%; } }
2447
-
2448
- @keyframes indeterminate {
2449
- 0% {
2450
- left: -35%;
2451
- right: 100%; }
2452
-
2453
- 60% {
2454
- left: 100%;
2455
- right: -90%; }
2456
-
2457
- 100% {
2458
- left: 100%;
2459
- right: -90%; } }
2460
-
2461
- @-webkit-keyframes indeterminate-short {
2462
- 0% {
2463
- left: -200%;
2464
- right: 100%; }
2465
-
2466
- 60% {
2467
- left: 107%;
2468
- right: -8%; }
2469
-
2470
- 100% {
2471
- left: 107%;
2472
- right: -8%; } }
2473
-
2474
- @-moz-keyframes indeterminate-short {
2475
- 0% {
2476
- left: -200%;
2477
- right: 100%; }
2478
-
2479
- 60% {
2480
- left: 107%;
2481
- right: -8%; }
2482
-
2483
- 100% {
2484
- left: 107%;
2485
- right: -8%; } }
2486
-
2487
- @keyframes indeterminate-short {
2488
- 0% {
2489
- left: -200%;
2490
- right: 100%; }
2491
-
2492
- 60% {
2493
- left: 107%;
2494
- right: -8%; }
2495
-
2496
- 100% {
2497
- left: 107%;
2498
- right: -8%; } }
2499
-
2500
- /*******************
2501
- Utility Classes
2502
- *******************/
2503
- .left-align {
2504
- text-align: left; }
2505
-
2506
- .right-align {
2507
- text-align: right; }
2508
-
2509
- .center, .center-align {
2510
- text-align: center; }
2511
-
2512
- .left {
2513
- float: left !important; }
2514
-
2515
- .right {
2516
- float: right !important; }
2517
-
2518
- .no-select, input[type=range], input[type=range] + .thumb {
2519
- -webkit-touch-callout: none;
2520
- -webkit-user-select: none;
2521
- -khtml-user-select: none;
2522
- -moz-user-select: none;
2523
- -ms-user-select: none;
2524
- user-select: none; }
2525
-
2526
- .circle {
2527
- -webkit-border-radius: 50%;
2528
- -moz-border-radius: 50%;
2529
- border-radius: 50%;
2530
- background-clip: padding-box; }
2531
-
2532
- .center-block {
2533
- display: block;
2534
- margin-left: auto;
2535
- margin-right: auto; }
2536
-
2537
- .truncate {
2538
- white-space: nowrap;
2539
- overflow: hidden;
2540
- text-overflow: ellipsis; }
2541
-
2542
- .container {
2543
- padding: 0 1.5rem;
2544
- margin: 0 auto;
2545
- max-width: 1280px;
2546
- width: 90%; }
2547
-
2548
- @media only screen and (min-width : 601px) {
2549
- .container {
2550
- width: 85%; }
2551
- }
2552
-
2553
- @media only screen and (min-width : 993px) {
2554
- .container {
2555
- width: 70%; }
2556
- }
2557
-
2558
- .container .row {
2559
- margin-left: -0.75rem;
2560
- margin-right: -0.75rem; }
2561
-
2562
- .section {
2563
- padding-top: 1rem;
2564
- padding-bottom: 1rem; }
2565
- .section.no-pad {
2566
- padding: 0; }
2567
- .section.no-pad-bot {
2568
- padding-bottom: 0; }
2569
- .section.no-pad-top {
2570
- padding-top: 0; }
2571
-
2572
- .row {
2573
- margin-left: auto;
2574
- margin-right: auto;
2575
- margin-bottom: 20px; }
2576
- .row:after {
2577
- content: "";
2578
- display: table;
2579
- clear: both; }
2580
- .row .col {
2581
- float: left;
2582
- -webkit-box-sizing: border-box;
2583
- -moz-box-sizing: border-box;
2584
- box-sizing: border-box;
2585
- padding: 0 0.75rem; }
2586
- .row .col.s1 {
2587
- width: 8.33333%;
2588
- margin-left: 0; }
2589
- .row .col.s2 {
2590
- width: 16.66667%;
2591
- margin-left: 0; }
2592
- .row .col.s3 {
2593
- width: 25%;
2594
- margin-left: 0; }
2595
- .row .col.s4 {
2596
- width: 33.33333%;
2597
- margin-left: 0; }
2598
- .row .col.s5 {
2599
- width: 41.66667%;
2600
- margin-left: 0; }
2601
- .row .col.s6 {
2602
- width: 50%;
2603
- margin-left: 0; }
2604
- .row .col.s7 {
2605
- width: 58.33333%;
2606
- margin-left: 0; }
2607
- .row .col.s8 {
2608
- width: 66.66667%;
2609
- margin-left: 0; }
2610
- .row .col.s9 {
2611
- width: 75%;
2612
- margin-left: 0; }
2613
- .row .col.s10 {
2614
- width: 83.33333%;
2615
- margin-left: 0; }
2616
- .row .col.s11 {
2617
- width: 91.66667%;
2618
- margin-left: 0; }
2619
- .row .col.s12 {
2620
- width: 100%;
2621
- margin-left: 0; }
2622
- .row .col.offset-s1 {
2623
- margin-left: 8.33333%; }
2624
- .row .col.offset-s2 {
2625
- margin-left: 16.66667%; }
2626
- .row .col.offset-s3 {
2627
- margin-left: 25%; }
2628
- .row .col.offset-s4 {
2629
- margin-left: 33.33333%; }
2630
- .row .col.offset-s5 {
2631
- margin-left: 41.66667%; }
2632
- .row .col.offset-s6 {
2633
- margin-left: 50%; }
2634
- .row .col.offset-s7 {
2635
- margin-left: 58.33333%; }
2636
- .row .col.offset-s8 {
2637
- margin-left: 66.66667%; }
2638
- .row .col.offset-s9 {
2639
- margin-left: 75%; }
2640
- .row .col.offset-s10 {
2641
- margin-left: 83.33333%; }
2642
- .row .col.offset-s11 {
2643
- margin-left: 91.66667%; }
2644
- .row .col.offset-s12 {
2645
- margin-left: 100%; }
2646
- @media only screen and (min-width : 601px) {
2647
- .row .col.m1 {
2648
- width: 8.33333%;
2649
- margin-left: 0; }
2650
-
2651
- .row .col.m2 {
2652
- width: 16.66667%;
2653
- margin-left: 0; }
2654
-
2655
- .row .col.m3 {
2656
- width: 25%;
2657
- margin-left: 0; }
2658
-
2659
- .row .col.m4 {
2660
- width: 33.33333%;
2661
- margin-left: 0; }
2662
-
2663
- .row .col.m5 {
2664
- width: 41.66667%;
2665
- margin-left: 0; }
2666
-
2667
- .row .col.m6 {
2668
- width: 50%;
2669
- margin-left: 0; }
2670
-
2671
- .row .col.m7 {
2672
- width: 58.33333%;
2673
- margin-left: 0; }
2674
-
2675
- .row .col.m8 {
2676
- width: 66.66667%;
2677
- margin-left: 0; }
2678
-
2679
- .row .col.m9 {
2680
- width: 75%;
2681
- margin-left: 0; }
2682
-
2683
- .row .col.m10 {
2684
- width: 83.33333%;
2685
- margin-left: 0; }
2686
-
2687
- .row .col.m11 {
2688
- width: 91.66667%;
2689
- margin-left: 0; }
2690
-
2691
- .row .col.m12 {
2692
- width: 100%;
2693
- margin-left: 0; }
2694
-
2695
- .row .col.offset-m1 {
2696
- margin-left: 8.33333%; }
2697
-
2698
- .row .col.offset-m2 {
2699
- margin-left: 16.66667%; }
2700
-
2701
- .row .col.offset-m3 {
2702
- margin-left: 25%; }
2703
-
2704
- .row .col.offset-m4 {
2705
- margin-left: 33.33333%; }
2706
-
2707
- .row .col.offset-m5 {
2708
- margin-left: 41.66667%; }
2709
-
2710
- .row .col.offset-m6 {
2711
- margin-left: 50%; }
2712
-
2713
- .row .col.offset-m7 {
2714
- margin-left: 58.33333%; }
2715
-
2716
- .row .col.offset-m8 {
2717
- margin-left: 66.66667%; }
2718
-
2719
- .row .col.offset-m9 {
2720
- margin-left: 75%; }
2721
-
2722
- .row .col.offset-m10 {
2723
- margin-left: 83.33333%; }
2724
-
2725
- .row .col.offset-m11 {
2726
- margin-left: 91.66667%; }
2727
-
2728
- .row .col.offset-m12 {
2729
- margin-left: 100%; }
2730
- }
2731
- @media only screen and (min-width : 993px) {
2732
- .row .col.l1 {
2733
- width: 8.33333%;
2734
- margin-left: 0; }
2735
-
2736
- .row .col.l2 {
2737
- width: 16.66667%;
2738
- margin-left: 0; }
2739
-
2740
- .row .col.l3 {
2741
- width: 25%;
2742
- margin-left: 0; }
2743
-
2744
- .row .col.l4 {
2745
- width: 33.33333%;
2746
- margin-left: 0; }
2747
-
2748
- .row .col.l5 {
2749
- width: 41.66667%;
2750
- margin-left: 0; }
2751
-
2752
- .row .col.l6 {
2753
- width: 50%;
2754
- margin-left: 0; }
2755
-
2756
- .row .col.l7 {
2757
- width: 58.33333%;
2758
- margin-left: 0; }
2759
-
2760
- .row .col.l8 {
2761
- width: 66.66667%;
2762
- margin-left: 0; }
2763
-
2764
- .row .col.l9 {
2765
- width: 75%;
2766
- margin-left: 0; }
2767
-
2768
- .row .col.l10 {
2769
- width: 83.33333%;
2770
- margin-left: 0; }
2771
-
2772
- .row .col.l11 {
2773
- width: 91.66667%;
2774
- margin-left: 0; }
2775
-
2776
- .row .col.l12 {
2777
- width: 100%;
2778
- margin-left: 0; }
2779
-
2780
- .row .col.offset-l1 {
2781
- margin-left: 8.33333%; }
2782
-
2783
- .row .col.offset-l2 {
2784
- margin-left: 16.66667%; }
2785
-
2786
- .row .col.offset-l3 {
2787
- margin-left: 25%; }
2788
-
2789
- .row .col.offset-l4 {
2790
- margin-left: 33.33333%; }
2791
-
2792
- .row .col.offset-l5 {
2793
- margin-left: 41.66667%; }
2794
-
2795
- .row .col.offset-l6 {
2796
- margin-left: 50%; }
2797
-
2798
- .row .col.offset-l7 {
2799
- margin-left: 58.33333%; }
2800
-
2801
- .row .col.offset-l8 {
2802
- margin-left: 66.66667%; }
2803
-
2804
- .row .col.offset-l9 {
2805
- margin-left: 75%; }
2806
-
2807
- .row .col.offset-l10 {
2808
- margin-left: 83.33333%; }
2809
-
2810
- .row .col.offset-l11 {
2811
- margin-left: 91.66667%; }
2812
-
2813
- .row .col.offset-l12 {
2814
- margin-left: 100%; }
2815
- }
2816
-
2817
- nav {
2818
- color: #fff;
2819
- background-color: #ee6e73;
2820
- width: 100%;
2821
- height: 56px;
2822
- line-height: 56px;
2823
- overflow: hidden; }
2824
- nav a {
2825
- color: #fff; }
2826
- nav .nav-wrapper {
2827
- position: relative;
2828
- height: 100%; }
2829
- nav .nav-wrapper i {
2830
- font-size: 2rem; }
2831
- @media only screen and (min-width : 993px) {
2832
- nav a.button-collapse {
2833
- display: none; }
2834
- }
2835
- nav a.button-collapse {
2836
- float: left;
2837
- position: relative;
2838
- z-index: 1;
2839
- height: 56px;
2840
- color: #fff; }
2841
- nav a.button-collapse i {
2842
- font-size: 2.7rem;
2843
- height: 56px;
2844
- line-height: 56px; }
2845
- nav .brand-logo {
2846
- position: absolute;
2847
- color: #fff;
2848
- display: inline-block;
2849
- font-size: 2.1rem;
2850
- padding: 0; }
2851
- nav .brand-logo.center {
2852
- top: 50%;
2853
- left: 50%;
2854
- -webkit-transform: translate(-50%, -50%);
2855
- -moz-transform: translate(-50%, -50%);
2856
- -ms-transform: translate(-50%, -50%);
2857
- -o-transform: translate(-50%, -50%);
2858
- transform: translate(-50%, -50%); }
2859
- @media only screen and (max-width : 992px) {
2860
- nav .brand-logo {
2861
- top: 50%;
2862
- left: 50%;
2863
- -webkit-transform: translate(-50%, -50%);
2864
- -moz-transform: translate(-50%, -50%);
2865
- -ms-transform: translate(-50%, -50%);
2866
- -o-transform: translate(-50%, -50%);
2867
- transform: translate(-50%, -50%); } }
2868
- nav .brand-logo.right {
2869
- right: 0.5rem;
2870
- padding: 0; }
2871
- nav ul {
2872
- margin: 0; }
2873
- nav ul li {
2874
- -webkit-transition: background-color 0.3s;
2875
- -moz-transition: background-color 0.3s;
2876
- -o-transition: background-color 0.3s;
2877
- -ms-transition: background-color 0.3s;
2878
- transition: background-color 0.3s;
2879
- float: left;
2880
- padding: 0px; }
2881
- nav ul li:hover, nav ul li.active {
2882
- background-color: rgba(0, 0, 0, 0.1); }
2883
- nav ul a {
2884
- font-size: 1rem;
2885
- color: #fff;
2886
- display: inline-block;
2887
- padding: 0px 15px; }
2888
- nav ul.left {
2889
- float: left; }
2890
- nav .input-field {
2891
- margin: 0; }
2892
- nav .input-field input {
2893
- height: 100%;
2894
- font-size: 1.2rem;
2895
- border: none;
2896
- padding-left: 2rem;
2897
- -webkit-box-sizing: border-box;
2898
- -moz-box-sizing: border-box;
2899
- box-sizing: border-box; }
2900
- nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
2901
- border: none;
2902
- -webkit-box-shadow: none;
2903
- -moz-box-shadow: none;
2904
- box-shadow: none; }
2905
- nav .input-field label {
2906
- top: 0;
2907
- left: 0; }
2908
- nav .input-field label i {
2909
- color: rgba(255, 255, 255, 0.7);
2910
- -webkit-transition: color 0.3s;
2911
- -moz-transition: color 0.3s;
2912
- -o-transition: color 0.3s;
2913
- -ms-transition: color 0.3s;
2914
- transition: color 0.3s; }
2915
- nav .input-field label.active i {
2916
- color: #fff; }
2917
- nav .input-field label.active {
2918
- -webkit-transform: translateY(0);
2919
- -moz-transform: translateY(0);
2920
- -ms-transform: translateY(0);
2921
- -o-transform: translateY(0);
2922
- transform: translateY(0); }
2923
-
2924
- .navbar-fixed {
2925
- position: relative;
2926
- height: 56px;
2927
- z-index: 998; }
2928
- .navbar-fixed nav {
2929
- position: fixed; }
2930
-
2931
- @media only screen and (min-width : 601px) {
2932
- nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i {
2933
- height: 64px;
2934
- line-height: 64px; }
2935
-
2936
- .navbar-fixed {
2937
- height: 64px; }
2938
- }
2939
-
2940
- a {
2941
- text-decoration: none; }
2942
-
2943
- html {
2944
- line-height: 1.5;
2945
- font-family: "Roboto", sans-serif;
2946
- font-weight: normal;
2947
- color: rgba(0, 0, 0, 0.87); }
2948
- @media only screen and (min-width: 0) {
2949
- html {
2950
- font-size: 14px; } }
2951
- @media only screen and (min-width: 992px) {
2952
- html {
2953
- font-size: 14.5px; } }
2954
- @media only screen and (min-width: 1200px) {
2955
- html {
2956
- font-size: 15px; } }
2957
-
2958
- h1, h2, h3, h4, h5, h6 {
2959
- font-weight: 400; }
2960
-
2961
- h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
2962
- font-weight: inherit; }
2963
-
2964
- h1 {
2965
- font-size: 4.2rem;
2966
- line-height: 4.62rem;
2967
- margin: 2.1rem 0 1.68rem 0; }
2968
-
2969
- h2 {
2970
- font-size: 3.56rem;
2971
- line-height: 3.916rem;
2972
- margin: 1.78rem 0 1.424rem 0; }
2973
-
2974
- h3 {
2975
- font-size: 2.92rem;
2976
- line-height: 3.212rem;
2977
- margin: 1.46rem 0 1.168rem 0; }
2978
-
2979
- h4 {
2980
- font-size: 2.28rem;
2981
- line-height: 2.508rem;
2982
- margin: 1.14rem 0 0.912rem 0; }
2983
-
2984
- h5 {
2985
- font-size: 1.64rem;
2986
- line-height: 1.804rem;
2987
- margin: 0.82rem 0 0.656rem 0; }
2988
-
2989
- h6 {
2990
- font-size: 1rem;
2991
- line-height: 1.1rem;
2992
- margin: 0.5rem 0 0.4rem 0; }
2993
-
2994
- em {
2995
- font-style: italic; }
2996
-
2997
- strong {
2998
- font-weight: 500; }
2999
-
3000
- small {
3001
- font-size: 75%; }
3002
-
3003
- .light, footer.page-footer .footer-copyright {
3004
- font-weight: 300; }
3005
-
3006
- .flow-text {
3007
- font-weight: 300; }
3008
- @media only screen and (min-width: 360px) {
3009
- .flow-text {
3010
- font-size: 1.2rem; } }
3011
- @media only screen and (min-width: 0px) {
3012
- .flow-text {
3013
- line-height: 0.8rem; } }
3014
- @media only screen and (min-width: 390px) {
3015
- .flow-text {
3016
- font-size: 1.224rem; } }
3017
- @media only screen and (min-width: 30px) {
3018
- .flow-text {
3019
- line-height: 0.904rem; } }
3020
- @media only screen and (min-width: 420px) {
3021
- .flow-text {
3022
- font-size: 1.248rem; } }
3023
- @media only screen and (min-width: 60px) {
3024
- .flow-text {
3025
- line-height: 1.008rem; } }
3026
- @media only screen and (min-width: 450px) {
3027
- .flow-text {
3028
- font-size: 1.272rem; } }
3029
- @media only screen and (min-width: 90px) {
3030
- .flow-text {
3031
- line-height: 1.112rem; } }
3032
- @media only screen and (min-width: 480px) {
3033
- .flow-text {
3034
- font-size: 1.296rem; } }
3035
- @media only screen and (min-width: 120px) {
3036
- .flow-text {
3037
- line-height: 1.216rem; } }
3038
- @media only screen and (min-width: 510px) {
3039
- .flow-text {
3040
- font-size: 1.32rem; } }
3041
- @media only screen and (min-width: 150px) {
3042
- .flow-text {
3043
- line-height: 1.32rem; } }
3044
- @media only screen and (min-width: 540px) {
3045
- .flow-text {
3046
- font-size: 1.344rem; } }
3047
- @media only screen and (min-width: 180px) {
3048
- .flow-text {
3049
- line-height: 1.424rem; } }
3050
- @media only screen and (min-width: 570px) {
3051
- .flow-text {
3052
- font-size: 1.368rem; } }
3053
- @media only screen and (min-width: 210px) {
3054
- .flow-text {
3055
- line-height: 1.528rem; } }
3056
- @media only screen and (min-width: 600px) {
3057
- .flow-text {
3058
- font-size: 1.392rem; } }
3059
- @media only screen and (min-width: 240px) {
3060
- .flow-text {
3061
- line-height: 1.632rem; } }
3062
- @media only screen and (min-width: 630px) {
3063
- .flow-text {
3064
- font-size: 1.416rem; } }
3065
- @media only screen and (min-width: 270px) {
3066
- .flow-text {
3067
- line-height: 1.736rem; } }
3068
- @media only screen and (min-width: 660px) {
3069
- .flow-text {
3070
- font-size: 1.44rem; } }
3071
- @media only screen and (min-width: 300px) {
3072
- .flow-text {
3073
- line-height: 1.84rem; } }
3074
- @media only screen and (min-width: 690px) {
3075
- .flow-text {
3076
- font-size: 1.464rem; } }
3077
- @media only screen and (min-width: 330px) {
3078
- .flow-text {
3079
- line-height: 1.944rem; } }
3080
- @media only screen and (min-width: 720px) {
3081
- .flow-text {
3082
- font-size: 1.488rem; } }
3083
- @media only screen and (min-width: 360px) {
3084
- .flow-text {
3085
- line-height: 2.048rem; } }
3086
- @media only screen and (min-width: 750px) {
3087
- .flow-text {
3088
- font-size: 1.512rem; } }
3089
- @media only screen and (min-width: 390px) {
3090
- .flow-text {
3091
- line-height: 2.152rem; } }
3092
- @media only screen and (min-width: 780px) {
3093
- .flow-text {
3094
- font-size: 1.536rem; } }
3095
- @media only screen and (min-width: 420px) {
3096
- .flow-text {
3097
- line-height: 2.256rem; } }
3098
- @media only screen and (min-width: 810px) {
3099
- .flow-text {
3100
- font-size: 1.56rem; } }
3101
- @media only screen and (min-width: 450px) {
3102
- .flow-text {
3103
- line-height: 2.36rem; } }
3104
- @media only screen and (min-width: 840px) {
3105
- .flow-text {
3106
- font-size: 1.584rem; } }
3107
- @media only screen and (min-width: 480px) {
3108
- .flow-text {
3109
- line-height: 2.464rem; } }
3110
- @media only screen and (min-width: 870px) {
3111
- .flow-text {
3112
- font-size: 1.608rem; } }
3113
- @media only screen and (min-width: 510px) {
3114
- .flow-text {
3115
- line-height: 2.568rem; } }
3116
- @media only screen and (min-width: 900px) {
3117
- .flow-text {
3118
- font-size: 1.632rem; } }
3119
- @media only screen and (min-width: 540px) {
3120
- .flow-text {
3121
- line-height: 2.672rem; } }
3122
- @media only screen and (min-width: 930px) {
3123
- .flow-text {
3124
- font-size: 1.656rem; } }
3125
- @media only screen and (min-width: 570px) {
3126
- .flow-text {
3127
- line-height: 2.776rem; } }
3128
- @media only screen and (min-width: 960px) {
3129
- .flow-text {
3130
- font-size: 1.68rem; } }
3131
- @media only screen and (min-width: 600px) {
3132
- .flow-text {
3133
- line-height: 2.88rem; } }
3134
-
3135
- .card-panel {
3136
- padding: 20px;
3137
- margin: 0.5rem 0 1rem 0;
3138
- -webkit-border-radius: 2px;
3139
- -moz-border-radius: 2px;
3140
- border-radius: 2px;
3141
- background-clip: padding-box;
3142
- background-color: #fff; }
3143
-
3144
- .card {
3145
- position: relative;
3146
- overflow: hidden;
3147
- margin: 0.5rem 0 1rem 0;
3148
- background-color: #fff;
3149
- -webkit-box-sizing: border-box;
3150
- -moz-box-sizing: border-box;
3151
- box-sizing: border-box;
3152
- -webkit-border-radius: 2px;
3153
- -moz-border-radius: 2px;
3154
- border-radius: 2px;
3155
- background-clip: padding-box; }
3156
- .card .card-title {
3157
- color: #fff;
3158
- font-size: 24px;
3159
- font-weight: 300; }
3160
- .card .card-title.activator {
3161
- cursor: pointer; }
3162
- .card a {
3163
- color: #ffab40;
3164
- margin-right: 20px;
3165
- -webkit-transition: color 0.3s ease;
3166
- -moz-transition: color 0.3s ease;
3167
- -o-transition: color 0.3s ease;
3168
- -ms-transition: color 0.3s ease;
3169
- transition: color 0.3s ease;
3170
- text-transform: uppercase; }
3171
- .card a:hover {
3172
- color: #ffd8a6; }
3173
- .card.small, .card.medium, .card.large {
3174
- position: relative; }
3175
- .card.small .card-image, .card.medium .card-image, .card.large .card-image {
3176
- overflow: hidden; }
3177
- .card.small .card-content, .card.medium .card-content, .card.large .card-content {
3178
- overflow: hidden; }
3179
- .card.small .card-action, .card.medium .card-action, .card.large .card-action {
3180
- position: absolute;
3181
- bottom: 0;
3182
- left: 0;
3183
- right: 0; }
3184
- .card.small {
3185
- height: 300px; }
3186
- .card.small .card-image {
3187
- height: 150px; }
3188
- .card.small .card-content {
3189
- height: 150px; }
3190
- .card.medium {
3191
- height: 400px; }
3192
- .card.medium .card-image {
3193
- height: 250px; }
3194
- .card.medium .card-content {
3195
- height: 150px; }
3196
- .card.large {
3197
- height: 500px; }
3198
- .card.large .card-image {
3199
- height: 330px; }
3200
- .card.large .card-content {
3201
- height: 170px; }
3202
- .card .card-image {
3203
- position: relative; }
3204
- .card .card-image img {
3205
- -webkit-border-radius: 2px 2px 0 0;
3206
- -moz-border-radius: 2px 2px 0 0;
3207
- border-radius: 2px 2px 0 0;
3208
- background-clip: padding-box;
3209
- position: relative;
3210
- left: 0;
3211
- right: 0;
3212
- top: 0;
3213
- bottom: 0;
3214
- width: 100%; }
3215
- .card .card-image .card-title {
3216
- position: absolute;
3217
- bottom: 0;
3218
- left: 0;
3219
- padding: 20px; }
3220
- .card .card-content {
3221
- padding: 20px;
3222
- -webkit-border-radius: 0 0 2px 2px;
3223
- -moz-border-radius: 0 0 2px 2px;
3224
- border-radius: 0 0 2px 2px;
3225
- background-clip: padding-box;
3226
- -webkit-box-sizing: border-box;
3227
- -moz-box-sizing: border-box;
3228
- box-sizing: border-box; }
3229
- .card .card-content p {
3230
- margin: 0;
3231
- color: inherit; }
3232
- .card .card-content .card-title {
3233
- line-height: 48px; }
3234
- .card .card-action {
3235
- border-top: 1px solid rgba(160, 160, 160, 0.2);
3236
- padding: 20px; }
3237
- .card .card-reveal {
3238
- padding: 20px;
3239
- position: absolute;
3240
- background-color: #FFF;
3241
- width: 100%;
3242
- overflow-y: auto;
3243
- top: 100%;
3244
- height: 100%;
3245
- z-index: 1;
3246
- -webkit-box-sizing: border-box;
3247
- -moz-box-sizing: border-box;
3248
- box-sizing: border-box; }
3249
- .card .card-reveal .card-title {
3250
- cursor: pointer;
3251
- display: block; }
3252
-
3253
- #toast-container {
3254
- display: block;
3255
- position: fixed;
3256
- z-index: 1001; }
3257
- @media only screen and (max-width : 600px) {
3258
- #toast-container {
3259
- min-width: 100%;
3260
- bottom: 0%; } }
3261
- @media only screen and (min-width : 601px) and (max-width : 992px) {
3262
- #toast-container {
3263
- min-width: 30%;
3264
- left: 5%;
3265
- bottom: 7%; } }
3266
- @media only screen and (min-width : 993px) {
3267
- #toast-container {
3268
- min-width: 8%;
3269
- top: 10%;
3270
- right: 7%; } }
3271
-
3272
- .toast {
3273
- -webkit-border-radius: 2px;
3274
- -moz-border-radius: 2px;
3275
- border-radius: 2px;
3276
- background-clip: padding-box;
3277
- -webkit-box-sizing: border-box;
3278
- -moz-box-sizing: border-box;
3279
- box-sizing: border-box;
3280
- top: 0px;
3281
- width: auto;
3282
- clear: both;
3283
- margin-top: 10px;
3284
- position: relative;
3285
- max-width: 100%;
3286
- height: 48px;
3287
- line-height: 48px;
3288
- background-color: #323232;
3289
- padding: 0px 25px;
3290
- font-size: 1.1rem;
3291
- font-weight: 300;
3292
- color: #fff;
3293
- display: -webkit-box;
3294
- display: -moz-box;
3295
- display: -ms-flexbox;
3296
- display: -webkit-flex;
3297
- display: flex;
3298
- -webkit-flex-align: center;
3299
- -ms-flex-align: center;
3300
- -webkit-align-items: center;
3301
- align-items: center;
3302
- -webkit-justify-content: space-between;
3303
- justify-content: space-between; }
3304
- .toast .btn, .toast .btn-large, .toast .btn-flat {
3305
- margin: 0;
3306
- margin-left: 3rem; }
3307
- .toast.rounded {
3308
- border-radius: 24px; }
3309
- @media only screen and (max-width : 600px) {
3310
- .toast {
3311
- width: 100%;
3312
- -webkit-border-radius: 0px;
3313
- -moz-border-radius: 0px;
3314
- border-radius: 0px;
3315
- background-clip: padding-box; } }
3316
- @media only screen and (min-width : 601px) and (max-width : 992px) {
3317
- .toast {
3318
- float: left; } }
3319
- @media only screen and (min-width : 993px) {
3320
- .toast {
3321
- float: right; } }
3322
-
3323
- .tabs {
3324
- position: relative;
3325
- height: 48px;
3326
- background-color: #FFF;
3327
- margin: 0 auto;
3328
- width: 100%;
3329
- white-space: nowrap; }
3330
- .tabs li.tab {
3331
- display: block;
3332
- float: left;
3333
- text-align: center;
3334
- background-color: #fff;
3335
- line-height: 48px;
3336
- height: 48px;
3337
- padding: 0 20px;
3338
- margin: 0;
3339
- text-transform: uppercase;
3340
- letter-spacing: 0.8px;
3341
- width: 15%; }
3342
- .tabs li.tab a {
3343
- color: #ee6e73;
3344
- display: block;
3345
- width: 100%;
3346
- height: 100%;
3347
- -webkit-transition: color 0.28s ease;
3348
- -moz-transition: color 0.28s ease;
3349
- -o-transition: color 0.28s ease;
3350
- -ms-transition: color 0.28s ease;
3351
- transition: color 0.28s ease; }
3352
- .tabs li.tab a:hover {
3353
- color: #f9c9cb; }
3354
- .tabs .indicator {
3355
- position: absolute;
3356
- bottom: 0;
3357
- height: 2px;
3358
- background-color: #f6b2b5;
3359
- will-change: left, right; }
3360
-
3361
- ul.tabs li.tab {
3362
- padding: 0; }
3363
-
3364
- .material-tooltip {
3365
- padding: 10px 8px;
3366
- font-size: 1rem;
3367
- z-index: 1000;
3368
- background-color: transparent;
3369
- -webkit-border-radius: 2px;
3370
- -moz-border-radius: 2px;
3371
- border-radius: 2px;
3372
- background-clip: padding-box;
3373
- color: #fff;
3374
- min-height: 36px;
3375
- line-height: 1rem;
3376
- opacity: 0;
3377
- display: none;
3378
- position: absolute;
3379
- text-align: center;
3380
- overflow: hidden;
3381
- left: 0;
3382
- top: 0;
3383
- will-change: top, left; }
3384
-
3385
- .backdrop {
3386
- position: absolute;
3387
- opacity: 0;
3388
- display: none;
3389
- height: 7px;
3390
- width: 14px;
3391
- -webkit-border-radius: 0 0 14px 14px;
3392
- -moz-border-radius: 0 0 14px 14px;
3393
- border-radius: 0 0 14px 14px;
3394
- background-clip: padding-box;
3395
- background-color: #323232;
3396
- z-index: -1;
3397
- -webkit-transform-origin: 50% 10%;
3398
- -moz-transform-origin: 50% 10%;
3399
- -ms-transform-origin: 50% 10%;
3400
- -o-transform-origin: 50% 10%;
3401
- transform-origin: 50% 10%;
3402
- will-change: transform, opacity; }
3403
-
3404
- .btn, .btn-large, .btn-flat {
3405
- display: inline-block;
3406
- height: 36px;
3407
- margin-bottom: 15px;
3408
- padding: 0 2rem;
3409
- -webkit-border-radius: 2px;
3410
- -moz-border-radius: 2px;
3411
- border-radius: 2px;
3412
- background-clip: padding-box;
3413
- line-height: 36px;
3414
- text-transform: uppercase;
3415
- border: none;
3416
- outline: 0;
3417
- -webkit-tap-highlight-color: transparent; }
3418
-
3419
- .btn.disabled, .disabled.btn-large, .btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled {
3420
- background-color: #DFDFDF;
3421
- box-shadow: none;
3422
- color: #9F9F9F;
3423
- cursor: default; }
3424
- .btn.disabled:hover, .disabled.btn-large:hover, .btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover {
3425
- background-color: #DFDFDF;
3426
- color: #9F9F9F; }
3427
-
3428
- .btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
3429
- font-size: 1.3rem;
3430
- line-height: inherit; }
3431
-
3432
- .btn, .btn-large {
3433
- text-decoration: none;
3434
- color: #FFF;
3435
- background-color: #26a69a;
3436
- text-align: center;
3437
- letter-spacing: 0.5px;
3438
- -webkit-transition: 0.2s ease-out;
3439
- -moz-transition: 0.2s ease-out;
3440
- -o-transition: 0.2s ease-out;
3441
- -ms-transition: 0.2s ease-out;
3442
- transition: 0.2s ease-out;
3443
- cursor: pointer; }
3444
- .btn:hover, .btn-large:hover {
3445
- background-color: #2bbbad; }
3446
-
3447
- .btn-floating {
3448
- display: inline-block;
3449
- color: #FFF;
3450
- position: relative;
3451
- z-index: 1;
3452
- width: 37px;
3453
- height: 37px;
3454
- line-height: 37px;
3455
- padding: 0;
3456
- background-color: #26a69a;
3457
- -webkit-border-radius: 50%;
3458
- -moz-border-radius: 50%;
3459
- border-radius: 50%;
3460
- background-clip: padding-box;
3461
- -webkit-transition: 0.3s;
3462
- -moz-transition: 0.3s;
3463
- -o-transition: 0.3s;
3464
- -ms-transition: 0.3s;
3465
- transition: 0.3s;
3466
- cursor: pointer; }
3467
- .btn-floating i {
3468
- width: inherit;
3469
- display: inline-block;
3470
- text-align: center;
3471
- color: #FFF;
3472
- font-size: 1.6rem;
3473
- line-height: 37px; }
3474
- .btn-floating.btn-large {
3475
- width: 55.5px;
3476
- height: 55.5px; }
3477
- .btn-floating.btn-large i {
3478
- line-height: 55.5px; }
3479
-
3480
- .fixed-action-btn {
3481
- position: fixed;
3482
- right: 23px;
3483
- bottom: 23px;
3484
- padding-top: 15px;
3485
- margin-bottom: 0;
3486
- z-index: 1000; }
3487
- .fixed-action-btn ul {
3488
- left: 0;
3489
- right: 0;
3490
- text-align: center;
3491
- position: absolute;
3492
- bottom: 64px; }
3493
- .fixed-action-btn ul li {
3494
- margin-bottom: 15px; }
3495
- .fixed-action-btn ul a.btn-floating {
3496
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
3497
- filter: "alpha(opacity=(${iefactor}))";
3498
- -moz-opacity: 0;
3499
- -khtml-opacity: 0;
3500
- opacity: 0; }
3501
-
3502
- .btn-flat {
3503
- box-shadow: none;
3504
- background-color: transparent;
3505
- color: #343434;
3506
- cursor: pointer; }
3507
- .btn-flat.disabled {
3508
- color: #b3b3b3;
3509
- cursor: default; }
3510
-
3511
- .btn-large {
3512
- height: 54px;
3513
- line-height: 56px; }
3514
- .btn-large i {
3515
- font-size: 1.6rem; }
3516
-
3517
- .dropdown-content {
3518
- display: none;
3519
- position: absolute;
3520
- background-color: #FFFFFF;
3521
- margin: 0px;
3522
- min-width: 100px;
3523
- z-index: 1000;
3524
- max-height: 70%;
3525
- opacity: 0;
3526
- overflow-y: hidden;
3527
- will-change: width, height; }
3528
- .dropdown-content li {
3529
- cursor: pointer;
3530
- font-size: 1.2rem;
3531
- color: rgba(0, 0, 0, 0.87);
3532
- line-height: 1.5rem; }
3533
- .dropdown-content li:hover, .dropdown-content li.active {
3534
- background-color: rgba(0, 0, 0, 0.06); }
3535
- .dropdown-content li > a, .dropdown-content li > span {
3536
- display: block;
3537
- padding: 1rem 1rem;
3538
- color: #26a69a; }
3539
-
3540
- /*!
3541
- * Waves v0.6.0
3542
- * http://fian.my.id/Waves
3543
- *
3544
- * Copyright 2014 Alfiana E. Sibuea and other contributors
3545
- * Released under the MIT license
3546
- * https://github.com/fians/Waves/blob/master/LICENSE
3547
- */
3548
- .waves-effect {
3549
- position: relative;
3550
- cursor: pointer;
3551
- display: inline-block;
3552
- overflow: hidden;
3553
- -webkit-user-select: none;
3554
- -moz-user-select: none;
3555
- -ms-user-select: none;
3556
- user-select: none;
3557
- -webkit-tap-highlight-color: transparent;
3558
- vertical-align: middle;
3559
- z-index: 1;
3560
- will-change: opacity, transform;
3561
- -webkit-transition: all 0.3s ease-out;
3562
- -moz-transition: all 0.3s ease-out;
3563
- -o-transition: all 0.3s ease-out;
3564
- -ms-transition: all 0.3s ease-out;
3565
- transition: all 0.3s ease-out; }
3566
- .waves-effect .waves-ripple {
3567
- position: absolute;
3568
- border-radius: 50%;
3569
- width: 20px;
3570
- height: 20px;
3571
- margin-top: -10px;
3572
- margin-left: -10px;
3573
- opacity: 0;
3574
- background: rgba(0, 0, 0, 0.2);
3575
- -webkit-transition: all 0.7s ease-out;
3576
- -moz-transition: all 0.7s ease-out;
3577
- -o-transition: all 0.7s ease-out;
3578
- -ms-transition: all 0.7s ease-out;
3579
- transition: all 0.7s ease-out;
3580
- -webkit-transition-property: -webkit-transform, opacity;
3581
- -moz-transition-property: -moz-transform, opacity;
3582
- -o-transition-property: -o-transform, opacity;
3583
- transition-property: transform, opacity;
3584
- -webkit-transform: scale(0);
3585
- -moz-transform: scale(0);
3586
- -ms-transform: scale(0);
3587
- -o-transform: scale(0);
3588
- transform: scale(0);
3589
- pointer-events: none; }
3590
- .waves-effect.waves-light .waves-ripple {
3591
- background-color: rgba(255, 255, 255, 0.45); }
3592
- .waves-effect.waves-red .waves-ripple {
3593
- background-color: rgba(244, 67, 54, 0.7); }
3594
- .waves-effect.waves-yellow .waves-ripple {
3595
- background-color: rgba(255, 235, 59, 0.7); }
3596
- .waves-effect.waves-orange .waves-ripple {
3597
- background-color: rgba(255, 152, 0, 0.7); }
3598
- .waves-effect.waves-purple .waves-ripple {
3599
- background-color: rgba(156, 39, 176, 0.7); }
3600
- .waves-effect.waves-green .waves-ripple {
3601
- background-color: rgba(76, 175, 80, 0.7); }
3602
- .waves-effect.waves-teal .waves-ripple {
3603
- background-color: rgba(0, 150, 136, 0.7); }
3604
-
3605
- .waves-notransition {
3606
- -webkit-transition: none !important;
3607
- -moz-transition: none !important;
3608
- -o-transition: none !important;
3609
- -ms-transition: none !important;
3610
- transition: none !important; }
3611
-
3612
- .waves-circle {
3613
- -webkit-transform: translateZ(0);
3614
- -moz-transform: translateZ(0);
3615
- -ms-transform: translateZ(0);
3616
- -o-transform: translateZ(0);
3617
- transform: translateZ(0);
3618
- -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }
3619
-
3620
- .waves-input-wrapper {
3621
- border-radius: 0.2em;
3622
- vertical-align: bottom; }
3623
- .waves-input-wrapper .waves-button-input {
3624
- position: relative;
3625
- top: 0;
3626
- left: 0;
3627
- z-index: 1; }
3628
-
3629
- .waves-circle {
3630
- text-align: center;
3631
- width: 2.5em;
3632
- height: 2.5em;
3633
- line-height: 2.5em;
3634
- border-radius: 50%;
3635
- -webkit-mask-image: none; }
3636
-
3637
- .waves-block {
3638
- display: block; }
3639
-
3640
- /* Firefox Bug: link not triggered */
3641
- a.waves-effect .waves-ripple {
3642
- z-index: -1; }
3643
-
3644
- .modal {
3645
- display: none;
3646
- position: fixed;
3647
- left: 0;
3648
- right: 0;
3649
- background-color: inherit;
3650
- padding: 0;
3651
- max-height: 70%;
3652
- width: 55%;
3653
- margin: auto;
3654
- overflow-y: auto;
3655
- z-index: 1000;
3656
- -webkit-border-radius: 2px;
3657
- -moz-border-radius: 2px;
3658
- border-radius: 2px;
3659
- background-clip: padding-box;
3660
- -webkit-transform: translate(0);
3661
- -moz-transform: translate(0);
3662
- -ms-transform: translate(0);
3663
- -o-transform: translate(0);
3664
- transform: translate(0);
3665
- will-change: top, opacity; }
3666
- @media only screen and (max-width : 992px) {
3667
- .modal {
3668
- width: 80%; } }
3669
- .modal h1, .modal h2, .modal h3, .modal h4 {
3670
- margin-top: 0; }
3671
- .modal .modal-content {
3672
- padding: 24px; }
3673
- .modal .modal-footer {
3674
- background-color: #eee;
3675
- padding: 4px 6px;
3676
- height: 56px;
3677
- width: 100%; }
3678
- .modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat {
3679
- float: right;
3680
- margin: 6px 0; }
3681
-
3682
- #lean-overlay {
3683
- position: fixed;
3684
- z-index: 999;
3685
- top: 0;
3686
- left: 0;
3687
- bottom: 0;
3688
- right: 0;
3689
- height: 115%;
3690
- width: 100%;
3691
- background: #000;
3692
- display: none;
3693
- will-change: opacity; }
3694
-
3695
- .modal.modal-fixed-footer {
3696
- padding: 0;
3697
- height: 70%; }
3698
- .modal.modal-fixed-footer .modal-content {
3699
- position: fixed;
3700
- max-height: 100%;
3701
- padding-bottom: 64px;
3702
- width: 100%;
3703
- overflow-y: auto; }
3704
- .modal.modal-fixed-footer .modal-footer {
3705
- border-top: 1px solid rgba(0, 0, 0, 0.1);
3706
- position: fixed;
3707
- bottom: 0; }
3708
-
3709
- .collapsible {
3710
- border-top: 1px solid #ddd;
3711
- border-right: 1px solid #ddd;
3712
- border-left: 1px solid #ddd;
3713
- margin: 0.5rem 0 1rem 0; }
3714
- .collapsible li {
3715
- -webkit-transition: 0.3s;
3716
- -moz-transition: 0.3s;
3717
- -o-transition: 0.3s;
3718
- -ms-transition: 0.3s;
3719
- transition: 0.3s; }
3720
-
3721
- .collapsible-header {
3722
- display: block;
3723
- cursor: pointer;
3724
- height: 3rem;
3725
- width: 100%;
3726
- line-height: 3rem;
3727
- padding: 0 1rem;
3728
- margin-left:20px;
3729
- background-color: #fff;
3730
- border-bottom: 1px solid #ddd; }
3731
- .collapsible-header i {
3732
- width: 2rem;
3733
- font-size: 1.6rem;
3734
- line-height: 3rem;
3735
- display: block;
3736
- float: left;
3737
- text-align: center;
3738
- margin-right: 1rem; }
3739
-
3740
- .collapsible-body {
3741
- width: 100%;
3742
- overflow: hidden;
3743
- display: none;
3744
- margin-left:20px;
3745
- padding: 0px 18px 40px 10px;
3746
- border-bottom: 1px solid #ddd;
3747
- -webkit-box-sizing: border-box;
3748
- -moz-box-sizing: border-box;
3749
- box-sizing: border-box; }
3750
- .collapsible-body p {
3751
- margin: 0;
3752
- padding: 2rem; }
3753
-
3754
- ul.side-nav ul.collapsible {
3755
- border: none;
3756
- -webkit-box-shadow: none;
3757
- -moz-box-shadow: none;
3758
- box-shadow: none; }
3759
- ul.side-nav ul.collapsible li {
3760
- padding: 0; }
3761
- ul.side-nav .collapsible-header {
3762
- background-color: transparent;
3763
- border: none;
3764
- line-height: inherit;
3765
- height: inherit;
3766
- margin: 0 1rem; }
3767
- ul.side-nav .collapsible-header i {
3768
- line-height: inherit; }
3769
- ul.side-nav .collapsible-body {
3770
- border: 0;
3771
- background-color: #FFF; }
3772
- ul.side-nav .collapsible-body li a {
3773
- margin: 0 1rem 0 2rem; }
3774
-
3775
- li.no-padding {
3776
- padding: 0 !important; }
3777
-
3778
- .materialboxed {
3779
- cursor: zoom-in;
3780
- position: relative;
3781
- -webkit-transition: opacity 0.4s;
3782
- -moz-transition: opacity 0.4s;
3783
- -o-transition: opacity 0.4s;
3784
- -ms-transition: opacity 0.4s;
3785
- transition: opacity 0.4s; }
3786
- .materialboxed:hover {
3787
- will-change: left, top, width, height; }
3788
- .materialboxed:hover:not(.active) {
3789
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
3790
- filter: "alpha(opacity=(${iefactor}))";
3791
- -moz-opacity: 0.8;
3792
- -khtml-opacity: 0.8;
3793
- opacity: 0.8; }
3794
-
3795
- .materialboxed.active {
3796
- cursor: zoom-out; }
3797
-
3798
- #materialbox-overlay {
3799
- position: fixed;
3800
- top: 0;
3801
- left: 0;
3802
- right: 0;
3803
- bottom: 0;
3804
- background-color: #292929;
3805
- z-index: 999;
3806
- will-change: opacity; }
3807
-
3808
- .materialbox-caption {
3809
- position: fixed;
3810
- display: none;
3811
- color: #fff;
3812
- line-height: 50px;
3813
- bottom: 0px;
3814
- width: 100%;
3815
- box-sizing: border-box;
3816
- text-align: center;
3817
- padding: 0% 15%;
3818
- height: 50px;
3819
- z-index: 1000;
3820
- -webkit-font-smoothing: antialiased; }
3821
-
3822
- /* Remove Focus Boxes */
3823
- select:focus {
3824
- outline: 1px solid #f8c1c3; }
3825
-
3826
- button:focus {
3827
- outline: none;
3828
- background-color: #2ab7a9; }
3829
-
3830
- label {
3831
- font-size: 0.8rem;
3832
- color: #9e9e9e; }
3833
-
3834
- /***************************
3835
- Text Inputs + Textarea
3836
- ****************************/
3837
- .input-field {
3838
- position: relative;
3839
- margin-top: 1rem; }
3840
- .input-field label {
3841
- color: #9e9e9e;
3842
- position: absolute;
3843
- top: 0.8rem;
3844
- left: 0.75rem;
3845
- font-size: 1rem;
3846
- cursor: text;
3847
- -webkit-transition: 0.2s ease-out;
3848
- -moz-transition: 0.2s ease-out;
3849
- -o-transition: 0.2s ease-out;
3850
- -ms-transition: 0.2s ease-out;
3851
- transition: 0.2s ease-out; }
3852
- .input-field label.active {
3853
- font-size: 0.8rem;
3854
- -webkit-transform: translateY(-140%);
3855
- -moz-transform: translateY(-140%);
3856
- -ms-transform: translateY(-140%);
3857
- -o-transform: translateY(-140%);
3858
- transform: translateY(-140%); }
3859
- .input-field input[type=text]:focus + label, .input-field input[type=password]:focus + label, .input-field input[type=email]:focus + label, .input-field input[type=url]:focus + label, .input-field input[type=date]:focus + label, .input-field input[type=tel]:focus + label, .input-field input[type=number]:focus + label, .input-field input[type=search]:focus + label, .input-field textarea:focus.materialize-textarea + label {
3860
- color: #26a69a; }
3861
- .input-field input[type=text].valid, .input-field input[type=password].valid, .input-field input[type=email].valid, .input-field input[type=url].valid, .input-field input[type=date].valid, .input-field input[type=tel].valid, .input-field input[type=number].valid, .input-field input[type=search].valid, .input-field textarea.materialize-textarea.valid {
3862
- border-bottom: 1px solid #4CAF50;
3863
- -webkit-box-shadow: 0 1px 0 0 #4CAF50;
3864
- -moz-box-shadow: 0 1px 0 0 #4CAF50;
3865
- box-shadow: 0 1px 0 0 #4CAF50; }
3866
- .input-field input[type=text].invalid, .input-field input[type=password].invalid, .input-field input[type=email].invalid, .input-field input[type=url].invalid, .input-field input[type=date].invalid, .input-field input[type=tel].invalid, .input-field input[type=number].invalid, .input-field input[type=search].invalid, .input-field textarea.materialize-textarea.invalid {
3867
- border-bottom: 1px solid #F44336;
3868
- -webkit-box-shadow: 0 1px 0 0 #F44336;
3869
- -moz-box-shadow: 0 1px 0 0 #F44336;
3870
- box-shadow: 0 1px 0 0 #F44336; }
3871
- .input-field .prefix {
3872
- position: absolute;
3873
- width: 3rem;
3874
- font-size: 2rem;
3875
- -webkit-transition: color 0.2s;
3876
- -moz-transition: color 0.2s;
3877
- -o-transition: color 0.2s;
3878
- -ms-transition: color 0.2s;
3879
- transition: color 0.2s; }
3880
- .input-field .prefix.active {
3881
- color: #26a69a; }
3882
- .input-field .prefix ~ input, .input-field .prefix ~ textarea {
3883
- margin-left: 3rem;
3884
- width: 92%;
3885
- width: calc(100% - 3rem); }
3886
- .input-field .prefix ~ textarea {
3887
- padding-top: 0.8rem; }
3888
- .input-field .prefix ~ label {
3889
- margin-left: 3rem; }
3890
- @media only screen and (max-width : 992px) {
3891
- .input-field .prefix ~ input {
3892
- width: 86%;
3893
- width: calc(100% - 3rem); }
3894
- }
3895
- @media only screen and (max-width : 600px) {
3896
- .input-field .prefix ~ input {
3897
- width: 80%;
3898
- width: calc(100% - 3rem); }
3899
- }
3900
-
3901
- textarea {
3902
- width: 100%;
3903
- height: 3rem;
3904
- background-color: transparent; }
3905
-
3906
- input[type=text], input[type=password], input[type=email], input[type=url], input[type=date], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
3907
- background-color: transparent;
3908
- border: none;
3909
- border-bottom: 1px solid #9e9e9e;
3910
- outline: none;
3911
- height: 3rem;
3912
- width: 80%;
3913
- font-size: 1rem;
3914
- margin: 0 0 15px 0;
3915
- padding: 0;
3916
- -webkit-box-shadow: none;
3917
- -moz-box-shadow: none;
3918
- box-shadow: none;
3919
- -webkit-box-sizing: content-box;
3920
- -moz-box-sizing: content-box;
3921
- box-sizing: content-box;
3922
- -webkit-transition: 0.3s;
3923
- -moz-transition: 0.3s;
3924
- -o-transition: 0.3s;
3925
- -ms-transition: 0.3s;
3926
- transition: 0.3s; }
3927
-
3928
- input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=url]:focus, input[type=date]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=search]:focus, textarea:focus.materialize-textarea {
3929
- border-bottom: 1px solid #26a69a;
3930
- -webkit-box-shadow: 0 1px 0 0 #26a69a;
3931
- -moz-box-shadow: 0 1px 0 0 #26a69a;
3932
- box-shadow: 0 1px 0 0 #26a69a; }
3933
-
3934
- textarea.materialize-textarea {
3935
- overflow-y: hidden;
3936
- /* prevents scroll bar flash */
3937
- padding: 1.6rem 0;
3938
- /* prevents text jump on Enter keypress */
3939
- resize: none;
3940
- min-height: 3rem; }
3941
-
3942
- .hiddendiv {
3943
- display: none;
3944
- white-space: pre-wrap;
3945
- word-wrap: break-word;
3946
- overflow-wrap: break-word;
3947
- /* future version of deprecated 'word-wrap' */
3948
- padding-top: 1.2rem;
3949
- /* prevents text jump on Enter keypress */ }
3950
-
3951
- /***************
3952
- Radio Buttons
3953
- ***************/
3954
- /* Remove default Radio Buttons */
3955
- [type="radio"]:not(:checked), [type="radio"]:checked {
3956
- position: absolute;
3957
- left: -9999px; }
3958
-
3959
- [type="radio"]:not(:checked) + label, [type="radio"]:checked + label {
3960
- position: relative;
3961
- padding-left: 35px;
3962
- cursor: pointer;
3963
- display: inline-block;
3964
- height: 25px;
3965
- line-height: 25px;
3966
- font-size: 1rem;
3967
- -webkit-transition: 0.28s ease;
3968
- -moz-transition: 0.28s ease;
3969
- -o-transition: 0.28s ease;
3970
- -ms-transition: 0.28s ease;
3971
- transition: 0.28s ease;
3972
- -webkit-user-select: none;
3973
- /* webkit (safari, chrome) browsers */
3974
- -moz-user-select: none;
3975
- /* mozilla browsers */
3976
- -khtml-user-select: none;
3977
- /* webkit (konqueror) browsers */
3978
- -ms-user-select: none;
3979
- /* IE10+ */ }
3980
-
3981
- [type="radio"] + label:before, [type="radio"] + label:after {
3982
- content: '';
3983
- position: absolute;
3984
- left: 0px;
3985
- top: 0px;
3986
- margin: 4px;
3987
- width: 16px;
3988
- height: 16px;
3989
- z-index: 0;
3990
- -webkit-transition: 0.28s ease;
3991
- -moz-transition: 0.28s ease;
3992
- -o-transition: 0.28s ease;
3993
- -ms-transition: 0.28s ease;
3994
- transition: 0.28s ease; }
3995
-
3996
- /* Unchecked styles */
3997
- [type="radio"]:not(:checked) + label:before {
3998
- border-radius: 50%;
3999
- border: 2px solid #5a5a5a; }
4000
-
4001
- [type="radio"]:not(:checked) + label:after {
4002
- border-radius: 50%;
4003
- border: 2px solid #5a5a5a;
4004
- z-index: -1;
4005
- -webkit-transform: scale(0);
4006
- -moz-transform: scale(0);
4007
- -ms-transform: scale(0);
4008
- -o-transform: scale(0);
4009
- transform: scale(0); }
4010
-
4011
- /* Checked styles */
4012
- [type="radio"]:checked + label:before {
4013
- border-radius: 50%;
4014
- border: 2px solid transparent; }
4015
-
4016
- [type="radio"]:checked + label:after {
4017
- border-radius: 50%;
4018
- border: 2px solid #26a69a;
4019
- background-color: #26a69a;
4020
- z-index: 0;
4021
- -webkit-transform: scale(1.02);
4022
- -moz-transform: scale(1.02);
4023
- -ms-transform: scale(1.02);
4024
- -o-transform: scale(1.02);
4025
- transform: scale(1.02); }
4026
-
4027
- /* Radio With gap */
4028
- [type="radio"].with-gap:checked + label:before {
4029
- border-radius: 50%;
4030
- border: 2px solid #26a69a; }
4031
-
4032
- [type="radio"].with-gap:checked + label:after {
4033
- border-radius: 50%;
4034
- border: 2px solid #26a69a;
4035
- background-color: #26a69a;
4036
- z-index: 0;
4037
- -webkit-transform: scale(0.5);
4038
- -moz-transform: scale(0.5);
4039
- -ms-transform: scale(0.5);
4040
- -o-transform: scale(0.5);
4041
- transform: scale(0.5); }
4042
-
4043
- /* Disabled style */
4044
- [type="radio"]:disabled:not(:checked) + label:before, [type="radio"]:disabled:checked + label:before {
4045
- background-color: transparent;
4046
- border-color: rgba(0, 0, 0, 0.26); }
4047
-
4048
- [type="radio"]:disabled + label {
4049
- color: rgba(0, 0, 0, 0.26); }
4050
-
4051
- [type="radio"]:disabled:not(:checked) + label:hover:before {
4052
- border-color: rgba(0, 0, 0, 0.26); }
4053
-
4054
- /***************
4055
- Checkboxes
4056
- ***************/
4057
- /* CUSTOM CSS CHECKBOXES */
4058
- form p {
4059
- margin-bottom: 10px;
4060
- text-align: left; }
4061
-
4062
- form p:last-child {
4063
- margin-bottom: 0px; }
4064
-
4065
- /* Remove default checkbox */
4066
- [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
4067
- position: absolute;
4068
- left: -9999px; }
4069
-
4070
- [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
4071
- position: relative;
4072
- padding-left: 35px;
4073
- cursor: pointer;
4074
- display: inline-block;
4075
- height: 25px;
4076
- line-height: 25px;
4077
- font-size: 1rem;
4078
- -webkit-user-select: none;
4079
- /* webkit (safari, chrome) browsers */
4080
- -moz-user-select: none;
4081
- /* mozilla browsers */
4082
- -khtml-user-select: none;
4083
- /* webkit (konqueror) browsers */
4084
- -ms-user-select: none;
4085
- /* IE10+ */ }
4086
-
4087
- /* checkbox aspect */
4088
- [type="checkbox"] + label:before {
4089
- content: '';
4090
- position: absolute;
4091
- margin-top: 2px;
4092
- left: 0;
4093
- z-index: 0;
4094
- -webkit-border-radius: 1px;
4095
- -moz-border-radius: 1px;
4096
- border-radius: 1px;
4097
- background-clip: padding-box;
4098
- -webkit-transition: 0.2s;
4099
- -moz-transition: 0.2s;
4100
- -o-transition: 0.2s;
4101
- -ms-transition: 0.2s;
4102
- transition: 0.2s; }
4103
-
4104
- /* Unchecked styles */
4105
- [type="checkbox"]:not(:checked) + label:before {
4106
- top: 0px;
4107
- width: 18px;
4108
- height: 18px;
4109
- border: 2px solid #5a5a5a; }
4110
-
4111
- /* Checked styles */
4112
- [type="checkbox"]:checked + label:before {
4113
- left: -3px;
4114
- top: -4px;
4115
- width: 12px;
4116
- height: 22px;
4117
- border-top: 2px solid transparent;
4118
- border-left: 2px solid transparent;
4119
- border-right: 2px solid #26a69a;
4120
- border-bottom: 2px solid #26a69a;
4121
- -webkit-transform: rotateZ(40deg);
4122
- -moz-transform: rotateZ(40deg);
4123
- -ms-transform: rotateZ(40deg);
4124
- -o-transform: rotateZ(40deg);
4125
- transform: rotateZ(40deg);
4126
- -webkit-backface-visibility: hidden;
4127
- -webkit-transform-origin: 100% 100%;
4128
- -moz-transform-origin: 100% 100%;
4129
- -ms-transform-origin: 100% 100%;
4130
- -o-transform-origin: 100% 100%;
4131
- transform-origin: 100% 100%; }
4132
-
4133
- /* disabled checkbox */
4134
- [type="checkbox"]:disabled:not(:checked) + label:before {
4135
- top: 0;
4136
- left: 0;
4137
- box-shadow: none;
4138
- background-color: rgba(0, 0, 0, 0.26);
4139
- width: 18px;
4140
- height: 18px;
4141
- border: 2px solid rgba(0, 0, 0, 0.26);
4142
- -webkit-transform: rotateZ(0deg);
4143
- -moz-transform: rotateZ(0deg);
4144
- -ms-transform: rotateZ(0deg);
4145
- -o-transform: rotateZ(0deg);
4146
- transform: rotateZ(0deg); }
4147
-
4148
- [type="checkbox"]:disabled:checked + label:before {
4149
- left: -3px;
4150
- top: -4px;
4151
- width: 12px;
4152
- height: 22px;
4153
- border-top: 2px solid transparent;
4154
- border-left: 2px solid transparent;
4155
- border-right: 2px solid rgba(0, 0, 0, 0.26);
4156
- border-bottom: 2px solid rgba(0, 0, 0, 0.26);
4157
- -webkit-transform: rotateZ(40deg);
4158
- -moz-transform: rotateZ(40deg);
4159
- -ms-transform: rotateZ(40deg);
4160
- -o-transform: rotateZ(40deg);
4161
- transform: rotateZ(40deg);
4162
- -webkit-backface-visibility: hidden;
4163
- -webkit-transform-origin: 100% 100%;
4164
- -moz-transform-origin: 100% 100%;
4165
- -ms-transform-origin: 100% 100%;
4166
- -o-transform-origin: 100% 100%;
4167
- transform-origin: 100% 100%; }
4168
-
4169
- [type="checkbox"]:disabled:checked + label {
4170
- color: rgba(0, 0, 0, 0.26); }
4171
-
4172
- [type="checkbox"]:disabled:not(:checked) + label:hover:before {
4173
- border-color: rgba(0, 0, 0, 0.26); }
4174
-
4175
- /***************
4176
- Switch
4177
- ***************/
4178
- .switch, .switch * {
4179
- -webkit-user-select: none;
4180
- -moz-user-select: none;
4181
- -ms-user-select: none; }
4182
-
4183
- .switch label {
4184
- cursor: pointer; }
4185
-
4186
- .switch label input[type=checkbox] {
4187
- opacity: 0;
4188
- width: 0;
4189
- height: 0; }
4190
-
4191
- .switch label input[type=checkbox]:checked + .lever {
4192
- background-color: #84c7c1; }
4193
-
4194
- .switch label input[type=checkbox]:checked + .lever:after {
4195
- background-color: #26a69a; }
4196
-
4197
- .switch label .lever {
4198
- content: "";
4199
- display: inline-block;
4200
- position: relative;
4201
- width: 40px;
4202
- height: 15px;
4203
- background-color: #818181;
4204
- border-radius: 15px;
4205
- margin-right: 10px;
4206
- transition: background 0.3s ease;
4207
- vertical-align: middle;
4208
- margin: 0px 16px; }
4209
-
4210
- .switch label .lever:after {
4211
- content: "";
4212
- position: absolute;
4213
- display: inline-block;
4214
- width: 21px;
4215
- height: 21px;
4216
- background-color: #F1F1F1;
4217
- border-radius: 21px;
4218
- box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
4219
- left: -5px;
4220
- top: -3px;
4221
- transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease; }
4222
-
4223
- input[type=checkbox]:checked:not(:disabled) ~ .lever:active:after {
4224
- box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1); }
4225
-
4226
- input[type=checkbox]:not(:disabled) ~ .lever:active:after {
4227
- box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08); }
4228
-
4229
- .switch label input[type=checkbox]:checked + .lever:after {
4230
- left: 24px; }
4231
-
4232
- .switch input[type=checkbox][disabled] + .lever {
4233
- cursor: default; }
4234
-
4235
- .switch label input[type=checkbox][disabled] + .lever:after, .switch label input[type=checkbox][disabled]:checked + .lever:after {
4236
- background-color: #BDBDBD; }
4237
-
4238
- /***************
4239
- Select Field
4240
- ***************/
4241
- .select-label {
4242
- position: absolute; }
4243
-
4244
- .select-wrapper {
4245
- position: relative;
4246
- margin-top: 15px; }
4247
- .select-wrapper input.select-dropdown {
4248
- position: relative;
4249
- cursor: pointer;
4250
- color: #444;
4251
- background-color: transparent;
4252
- border: none;
4253
- border-bottom: 1px solid #9e9e9e;
4254
- outline: none;
4255
- height: 3rem;
4256
- line-height: 3rem;
4257
- width: 100%;
4258
- font-size: 1rem;
4259
- margin: 0 0 15px 0;
4260
- padding: 0;
4261
- display: block; }
4262
- .select-wrapper .mdi-navigation-arrow-drop-down {
4263
- position: absolute;
4264
- right: 0;
4265
- top: 0;
4266
- font-size: 23px; }
4267
-
4268
- /*select {
4269
- display: none; }*/
4270
-
4271
- select.browser-default {
4272
- display: block; }
4273
-
4274
- select:disabled {
4275
- color: rgba(0, 0, 0, 0.3); }
4276
-
4277
- .select-wrapper input.select-dropdown:disabled {
4278
- color: rgba(0, 0, 0, 0.3);
4279
- border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
4280
-
4281
- .select-wrapper i {
4282
- color: rgba(0, 0, 0, 0.3); }
4283
-
4284
- .select-dropdown li.disabled {
4285
- color: rgba(0, 0, 0, 0.3); }
4286
- .select-dropdown li.disabled:hover {
4287
- background-color: transparent; }
4288
-
4289
- /*********************
4290
- File Input
4291
- **********************/
4292
- .file-field {
4293
- position: relative;
4294
- overflow: hidden; }
4295
- .file-field input.file-path {
4296
- margin-left: 100px; }
4297
- .file-field .btn, .file-field .btn-large {
4298
- position: absolute;
4299
- top: 0;
4300
- height: 3rem;
4301
- line-height: 3rem; }
4302
- .file-field span {
4303
- cursor: pointer; }
4304
- .file-field input[type=file] {
4305
- position: absolute;
4306
- top: 0;
4307
- right: 0;
4308
- left: 0;
4309
- bottom: 0;
4310
- width: 100%;
4311
- margin: 0;
4312
- padding: 0;
4313
- font-size: 20px;
4314
- cursor: pointer;
4315
- opacity: 0;
4316
- filter: alpha(opacity=0); }
4317
-
4318
- /***************
4319
- Range
4320
- ***************/
4321
- .range-field {
4322
- position: relative; }
4323
-
4324
- input[type=range], input[type=range] + .thumb {
4325
- cursor: pointer; }
4326
-
4327
- input[type=range] {
4328
- position: relative;
4329
- background-color: transparent;
4330
- border: none;
4331
- outline: none;
4332
- width: 100%;
4333
- margin: 15px 0px;
4334
- padding: 0; }
4335
-
4336
- input[type=range] + .thumb {
4337
- position: absolute;
4338
- border: none;
4339
- height: 0;
4340
- width: 0;
4341
- border-radius: 50%;
4342
- background-color: #26a69a;
4343
- top: 10px;
4344
- margin-left: -6px;
4345
- -webkit-transform-origin: 50% 50%;
4346
- -moz-transform-origin: 50% 50%;
4347
- -ms-transform-origin: 50% 50%;
4348
- -o-transform-origin: 50% 50%;
4349
- transform-origin: 50% 50%;
4350
- -webkit-transform: rotate(-45deg);
4351
- -moz-transform: rotate(-45deg);
4352
- -ms-transform: rotate(-45deg);
4353
- -o-transform: rotate(-45deg);
4354
- transform: rotate(-45deg); }
4355
- input[type=range] + .thumb .value {
4356
- display: block;
4357
- width: 30px;
4358
- text-align: center;
4359
- color: #26a69a;
4360
- font-size: 0px;
4361
- -webkit-transform: rotate(45deg);
4362
- -moz-transform: rotate(45deg);
4363
- -ms-transform: rotate(45deg);
4364
- -o-transform: rotate(45deg);
4365
- transform: rotate(45deg); }
4366
- input[type=range] + .thumb.active {
4367
- border-radius: 50% 50% 50% 0; }
4368
- input[type=range] + .thumb.active .value {
4369
- color: #fff;
4370
- margin-left: -1px;
4371
- margin-top: 8px;
4372
- font-size: 10px; }
4373
-
4374
- input[type=range]:focus {
4375
- outline: none; }
4376
-
4377
- input[type=range] {
4378
- -webkit-appearance: none; }
4379
-
4380
- input[type=range]::-webkit-slider-runnable-track {
4381
- height: 3px;
4382
- background: #c2c0c2;
4383
- border: none; }
4384
-
4385
- input[type=range]::-webkit-slider-thumb {
4386
- -webkit-appearance: none;
4387
- border: none;
4388
- height: 14px;
4389
- width: 14px;
4390
- border-radius: 50%;
4391
- background-color: #26a69a;
4392
- transform-origin: 50% 50%;
4393
- margin: -5px 0 0 0;
4394
- -webkit-transition: 0.3s;
4395
- -moz-transition: 0.3s;
4396
- -o-transition: 0.3s;
4397
- -ms-transition: 0.3s;
4398
- transition: 0.3s; }
4399
-
4400
- input[type=range]:focus::-webkit-slider-runnable-track {
4401
- background: #ccc; }
4402
-
4403
- input[type=range] {
4404
- /* fix for FF unable to apply focus style bug */
4405
- border: 1px solid white;
4406
- /*required for proper track sizing in FF*/ }
4407
-
4408
- input[type=range]::-moz-range-track {
4409
- height: 3px;
4410
- background: #ddd;
4411
- border: none; }
4412
-
4413
- input[type=range]::-moz-range-thumb {
4414
- border: none;
4415
- height: 14px;
4416
- width: 14px;
4417
- border-radius: 50%;
4418
- background: #26a69a;
4419
- margin-top: -5px; }
4420
-
4421
- /*hide the outline behind the border*/
4422
- input[type=range]:-moz-focusring {
4423
- outline: 1px solid white;
4424
- outline-offset: -1px; }
4425
-
4426
- input[type=range]:focus::-moz-range-track {
4427
- background: #ccc; }
4428
-
4429
- input[type=range]::-ms-track {
4430
- height: 3px;
4431
- /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
4432
- background: transparent;
4433
- /*leave room for the larger thumb to overflow with a transparent border */
4434
- border-color: transparent;
4435
- border-width: 6px 0;
4436
- /*remove default tick marks*/
4437
- color: transparent; }
4438
-
4439
- input[type=range]::-ms-fill-lower {
4440
- background: #777; }
4441
-
4442
- input[type=range]::-ms-fill-upper {
4443
- background: #ddd; }
4444
-
4445
- input[type=range]::-ms-thumb {
4446
- border: none;
4447
- height: 14px;
4448
- width: 14px;
4449
- border-radius: 50%;
4450
- background: #26a69a; }
4451
-
4452
- input[type=range]:focus::-ms-fill-lower {
4453
- background: #888; }
4454
-
4455
- input[type=range]:focus::-ms-fill-upper {
4456
- background: #ccc; }
4457
-
4458
- /***************************
4459
- Text Inputs + Textarea
4460
- ****************************/
4461
- /*select {
4462
- background-color: #fffafa;
4463
- width: 100%;
4464
- padding: 5px;
4465
- border: 1px solid #f2f2f2;
4466
- border-radius: 2px;
4467
- height: 3rem; }*/
4468
-
4469
- /***************
4470
- Nav List
4471
- ***************/
4472
- ul.table-of-contents.fixed {
4473
- position: fixed; }
4474
- ul.table-of-contents li {
4475
- padding: 2px 0; }
4476
- ul.table-of-contents a {
4477
- display: inline-block;
4478
- font-weight: 300;
4479
- color: #757575;
4480
- padding-left: 20px;
4481
- height: 1.5rem;
4482
- line-height: 1.5rem;
4483
- letter-spacing: 0.4;
4484
- display: inline-block; }
4485
- ul.table-of-contents a:hover {
4486
- color: #a8a8a8;
4487
- padding-left: 19px;
4488
- border-left: 1px solid #ea4a4f; }
4489
- ul.table-of-contents a.active {
4490
- font-weight: 500;
4491
- padding-left: 18px;
4492
- border-left: 2px solid #ea4a4f; }
4493
-
4494
- ul.side-nav {
4495
- position: fixed;
4496
- width: 240px;
4497
- left: -105%;
4498
- top: 0;
4499
- margin: 0;
4500
- height: 100%;
4501
- height: calc(100% + 60px);
4502
- padding-bottom: 60px;
4503
- background-color: #FFF;
4504
- z-index: 999;
4505
- will-change: left; }
4506
- ul.side-nav.right-aligned {
4507
- will-change: right;
4508
- right: -105%;
4509
- left: auto; }
4510
- ul.side-nav .collapsible {
4511
- margin: 0; }
4512
- ul.side-nav li {
4513
- float: none;
4514
- padding: 0 15px; }
4515
- ul.side-nav li:hover, ul.side-nav li.active {
4516
- background-color: #ddd; }
4517
- ul.side-nav a {
4518
- color: #444; }
4519
-
4520
- .drag-target {
4521
- height: 100%;
4522
- width: 10px;
4523
- position: fixed;
4524
- top: 0;
4525
- z-index: 998; }
4526
-
4527
- ul.side-nav.fixed a {
4528
- display: block;
4529
- padding: 0 15px;
4530
- color: #444; }
4531
-
4532
- ul.side-nav.fixed {
4533
- left: 0;
4534
- position: fixed; }
4535
- ul.side-nav.fixed.right-aligned {
4536
- right: 0;
4537
- left: auto; }
4538
-
4539
- @media only screen and (max-width : 992px) {
4540
- ul.side-nav.fixed {
4541
- left: -105%; }
4542
- ul.side-nav.fixed.right-aligned {
4543
- right: -105%;
4544
- left: auto; }
4545
- }
4546
-
4547
- ul.side-nav .collapsible-body li.active, ul.side-nav.fixed .collapsible-body li.active {
4548
- background-color: #ee6e73; }
4549
- ul.side-nav .collapsible-body li.active a, ul.side-nav.fixed .collapsible-body li.active a {
4550
- color: #fff; }
4551
-
4552
- #sidenav-overlay {
4553
- position: fixed;
4554
- top: 0px;
4555
- left: 0px;
4556
- right: 0px;
4557
- height: 120vh;
4558
- background-color: rgba(0, 0, 0, 0.5);
4559
- z-index: 997;
4560
- will-change: opacity; }
4561
-
4562
- /*
4563
- @license
4564
- Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4565
- This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4566
- The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
4567
- The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
4568
- Code distributed by Google as part of the polymer project is also
4569
- subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
4570
- */
4571
- /**************************/
4572
- /* STYLES FOR THE SPINNER */
4573
- /**************************/
4574
- /*
4575
- * Constants:
4576
- * STROKEWIDTH = 3px
4577
- * ARCSIZE = 270 degrees (amount of circle the arc takes up)
4578
- * ARCTIME = 1333ms (time it takes to expand and contract arc)
4579
- * ARCSTARTROT = 216 degrees (how much the start location of the arc
4580
- * should rotate each time, 216 gives us a
4581
- * 5 pointed star shape (it's 360/5 * 3).
4582
- * For a 7 pointed star, we might do
4583
- * 360/7 * 3 = 154.286)
4584
- * CONTAINERWIDTH = 28px
4585
- * SHRINK_TIME = 400ms
4586
- */
4587
- .preloader-wrapper {
4588
- display: inline-block;
4589
- position: relative;
4590
- width: 48px;
4591
- height: 48px; }
4592
- .preloader-wrapper.small {
4593
- width: 36px;
4594
- height: 36px; }
4595
- .preloader-wrapper.big {
4596
- width: 64px;
4597
- height: 64px; }
4598
- .preloader-wrapper.active {
4599
- /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
4600
- -webkit-animation: container-rotate 1568ms linear infinite;
4601
- animation: container-rotate 1568ms linear infinite; }
4602
-
4603
- @-webkit-keyframes container-rotate {
4604
- to {
4605
- -webkit-transform: rotate(360deg); } }
4606
-
4607
- @keyframes container-rotate {
4608
- to {
4609
- transform: rotate(360deg); } }
4610
-
4611
- .spinner-layer {
4612
- position: absolute;
4613
- width: 100%;
4614
- height: 100%;
4615
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
4616
- filter: "alpha(opacity=(${iefactor}))";
4617
- -moz-opacity: 0;
4618
- -khtml-opacity: 0;
4619
- opacity: 0; }
4620
-
4621
- .spinner-blue, .spinner-blue-only {
4622
- border-color: #4285f4; }
4623
-
4624
- .spinner-red, .spinner-red-only {
4625
- border-color: #db4437; }
4626
-
4627
- .spinner-yellow, .spinner-yellow-only {
4628
- border-color: #f4b400; }
4629
-
4630
- .spinner-green, .spinner-green-only {
4631
- border-color: #0f9d58; }
4632
-
4633
- /**
4634
- * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
4635
- *
4636
- * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
4637
- * guarantee that the animation will start _exactly_ after that value. So we avoid using
4638
- * animation-delay and instead set custom keyframes for each color (as redundant as it
4639
- * seems).
4640
- *
4641
- * We write out each animation in full (instead of separating animation-name,
4642
- * animation-duration, etc.) because under the polyfill, Safari does not recognize those
4643
- * specific properties properly, treats them as -webkit-animation, and overrides the
4644
- * other animation rules. See https://github.com/Polymer/platform/issues/53.
4645
- */
4646
- .active .spinner-layer.spinner-blue {
4647
- /* durations: 4 * ARCTIME */
4648
- -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4649
- animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4650
-
4651
- .active .spinner-layer.spinner-red {
4652
- /* durations: 4 * ARCTIME */
4653
- -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4654
- animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4655
-
4656
- .active .spinner-layer.spinner-yellow {
4657
- /* durations: 4 * ARCTIME */
4658
- -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4659
- animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4660
-
4661
- .active .spinner-layer.spinner-green {
4662
- /* durations: 4 * ARCTIME */
4663
- -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4664
- animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4665
-
4666
- .active .spinner-layer.spinner-blue-only, .active .spinner-layer.spinner-red-only, .active .spinner-layer.spinner-yellow-only, .active .spinner-layer.spinner-green-only {
4667
- /* durations: 4 * ARCTIME */
4668
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
4669
- filter: "alpha(opacity=(${iefactor}))";
4670
- -moz-opacity: 1;
4671
- -khtml-opacity: 1;
4672
- opacity: 1;
4673
- -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4674
- animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4675
-
4676
- @-webkit-keyframes fill-unfill-rotate {
4677
- /* 0.5 * ARCSIZE */
4678
- /* 1 * ARCSIZE */
4679
- /* 1.5 * ARCSIZE */
4680
- /* 2 * ARCSIZE */
4681
- /* 2.5 * ARCSIZE */
4682
- /* 3 * ARCSIZE */
4683
- /* 3.5 * ARCSIZE */
4684
- /* 4 * ARCSIZE */
4685
- 12.5% {
4686
- -webkit-transform: rotate(135deg); }
4687
-
4688
- 25% {
4689
- -webkit-transform: rotate(270deg); }
4690
-
4691
- 37.5% {
4692
- -webkit-transform: rotate(405deg); }
4693
-
4694
- 50% {
4695
- -webkit-transform: rotate(540deg); }
4696
-
4697
- 62.5% {
4698
- -webkit-transform: rotate(675deg); }
4699
-
4700
- 75% {
4701
- -webkit-transform: rotate(810deg); }
4702
-
4703
- 87.5% {
4704
- -webkit-transform: rotate(945deg); }
4705
-
4706
- to {
4707
- -webkit-transform: rotate(1080deg); } }
4708
-
4709
- @keyframes fill-unfill-rotate {
4710
- /* 0.5 * ARCSIZE */
4711
- /* 1 * ARCSIZE */
4712
- /* 1.5 * ARCSIZE */
4713
- /* 2 * ARCSIZE */
4714
- /* 2.5 * ARCSIZE */
4715
- /* 3 * ARCSIZE */
4716
- /* 3.5 * ARCSIZE */
4717
- /* 4 * ARCSIZE */
4718
- 12.5% {
4719
- transform: rotate(135deg); }
4720
-
4721
- 25% {
4722
- transform: rotate(270deg); }
4723
-
4724
- 37.5% {
4725
- transform: rotate(405deg); }
4726
-
4727
- 50% {
4728
- transform: rotate(540deg); }
4729
-
4730
- 62.5% {
4731
- transform: rotate(675deg); }
4732
-
4733
- 75% {
4734
- transform: rotate(810deg); }
4735
-
4736
- 87.5% {
4737
- transform: rotate(945deg); }
4738
-
4739
- to {
4740
- transform: rotate(1080deg); } }
4741
-
4742
- @-webkit-keyframes blue-fade-in-out {
4743
- from {
4744
- opacity: 1; }
4745
-
4746
- 25% {
4747
- opacity: 1; }
4748
-
4749
- 26% {
4750
- opacity: 0; }
4751
-
4752
- 89% {
4753
- opacity: 0; }
4754
-
4755
- 90% {
4756
- opacity: 1; }
4757
-
4758
- 100% {
4759
- opacity: 1; } }
4760
-
4761
- @keyframes blue-fade-in-out {
4762
- from {
4763
- opacity: 1; }
4764
-
4765
- 25% {
4766
- opacity: 1; }
4767
-
4768
- 26% {
4769
- opacity: 0; }
4770
-
4771
- 89% {
4772
- opacity: 0; }
4773
-
4774
- 90% {
4775
- opacity: 1; }
4776
-
4777
- 100% {
4778
- opacity: 1; } }
4779
-
4780
- @-webkit-keyframes red-fade-in-out {
4781
- from {
4782
- opacity: 0; }
4783
-
4784
- 15% {
4785
- opacity: 0; }
4786
-
4787
- 25% {
4788
- opacity: 1; }
4789
-
4790
- 50% {
4791
- opacity: 1; }
4792
-
4793
- 51% {
4794
- opacity: 0; } }
4795
-
4796
- @keyframes red-fade-in-out {
4797
- from {
4798
- opacity: 0; }
4799
-
4800
- 15% {
4801
- opacity: 0; }
4802
-
4803
- 25% {
4804
- opacity: 1; }
4805
-
4806
- 50% {
4807
- opacity: 1; }
4808
-
4809
- 51% {
4810
- opacity: 0; } }
4811
-
4812
- @-webkit-keyframes yellow-fade-in-out {
4813
- from {
4814
- opacity: 0; }
4815
-
4816
- 40% {
4817
- opacity: 0; }
4818
-
4819
- 50% {
4820
- opacity: 1; }
4821
-
4822
- 75% {
4823
- opacity: 1; }
4824
-
4825
- 76% {
4826
- opacity: 0; } }
4827
-
4828
- @keyframes yellow-fade-in-out {
4829
- from {
4830
- opacity: 0; }
4831
-
4832
- 40% {
4833
- opacity: 0; }
4834
-
4835
- 50% {
4836
- opacity: 1; }
4837
-
4838
- 75% {
4839
- opacity: 1; }
4840
-
4841
- 76% {
4842
- opacity: 0; } }
4843
-
4844
- @-webkit-keyframes green-fade-in-out {
4845
- from {
4846
- opacity: 0; }
4847
-
4848
- 65% {
4849
- opacity: 0; }
4850
-
4851
- 75% {
4852
- opacity: 1; }
4853
-
4854
- 90% {
4855
- opacity: 1; }
4856
-
4857
- 100% {
4858
- opacity: 0; } }
4859
-
4860
- @keyframes green-fade-in-out {
4861
- from {
4862
- opacity: 0; }
4863
-
4864
- 65% {
4865
- opacity: 0; }
4866
-
4867
- 75% {
4868
- opacity: 1; }
4869
-
4870
- 90% {
4871
- opacity: 1; }
4872
-
4873
- 100% {
4874
- opacity: 0; } }
4875
-
4876
- /**
4877
- * Patch the gap that appear between the two adjacent div.circle-clipper while the
4878
- * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
4879
- */
4880
- .gap-patch {
4881
- position: absolute;
4882
- box-sizing: border-box;
4883
- top: 0;
4884
- left: 45%;
4885
- width: 10%;
4886
- height: 100%;
4887
- overflow: hidden;
4888
- border-color: inherit; }
4889
-
4890
- .gap-patch .circle {
4891
- width: 1000%;
4892
- left: -450%; }
4893
-
4894
- .circle-clipper {
4895
- display: inline-block;
4896
- position: relative;
4897
- width: 50%;
4898
- height: 100%;
4899
- overflow: hidden;
4900
- border-color: inherit; }
4901
- .circle-clipper .circle {
4902
- width: 200%;
4903
- box-sizing: border-box;
4904
- height: 100%;
4905
- border-width: 3px;
4906
- /* STROKEWIDTH */
4907
- border-style: solid;
4908
- border-color: inherit;
4909
- border-bottom-color: transparent !important;
4910
- border-radius: 50%;
4911
- -webkit-animation: none;
4912
- animation: none;
4913
- position: absolute;
4914
- top: 0;
4915
- right: 0;
4916
- bottom: 0; }
4917
- .circle-clipper.left .circle {
4918
- left: 0;
4919
- border-right-color: transparent !important;
4920
- -webkit-transform: rotate(129deg);
4921
- transform: rotate(129deg); }
4922
- .circle-clipper.right .circle {
4923
- left: -100%;
4924
- border-left-color: transparent !important;
4925
- -webkit-transform: rotate(-129deg);
4926
- transform: rotate(-129deg); }
4927
-
4928
- .active .circle-clipper.left .circle {
4929
- /* duration: ARCTIME */
4930
- -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4931
- animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4932
-
4933
- .active .circle-clipper.right .circle {
4934
- /* duration: ARCTIME */
4935
- -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4936
- animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4937
-
4938
- @-webkit-keyframes left-spin {
4939
- from {
4940
- -webkit-transform: rotate(130deg); }
4941
-
4942
- 50% {
4943
- -webkit-transform: rotate(-5deg); }
4944
-
4945
- to {
4946
- -webkit-transform: rotate(130deg); } }
4947
-
4948
- @keyframes left-spin {
4949
- from {
4950
- transform: rotate(130deg); }
4951
-
4952
- 50% {
4953
- transform: rotate(-5deg); }
4954
-
4955
- to {
4956
- transform: rotate(130deg); } }
4957
-
4958
- @-webkit-keyframes right-spin {
4959
- from {
4960
- -webkit-transform: rotate(-130deg); }
4961
-
4962
- 50% {
4963
- -webkit-transform: rotate(5deg); }
4964
-
4965
- to {
4966
- -webkit-transform: rotate(-130deg); } }
4967
-
4968
- @keyframes right-spin {
4969
- from {
4970
- transform: rotate(-130deg); }
4971
-
4972
- 50% {
4973
- transform: rotate(5deg); }
4974
-
4975
- to {
4976
- transform: rotate(-130deg); } }
4977
-
4978
- #spinnerContainer.cooldown {
4979
- /* duration: SHRINK_TIME */
4980
- -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
4981
- animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }
4982
-
4983
- @-webkit-keyframes fade-out {
4984
- from {
4985
- opacity: 1; }
4986
-
4987
- to {
4988
- opacity: 0; } }
4989
-
4990
- @keyframes fade-out {
4991
- from {
4992
- opacity: 1; }
4993
-
4994
- to {
4995
- opacity: 0; } }
4996
-
4997
- .slider {
4998
- position: relative;
4999
- height: 440px;
5000
- width: 100%; }
5001
- .slider.fullscreen {
5002
- height: 100%;
5003
- width: 100%;
5004
- position: absolute;
5005
- top: 0;
5006
- left: 0;
5007
- right: 0;
5008
- bottom: 0; }
5009
- .slider.fullscreen ul.slides {
5010
- height: 100%; }
5011
- .slider.fullscreen ul.indicators {
5012
- z-index: 2;
5013
- bottom: 30px; }
5014
- .slider ul.slides {
5015
- background-color: #9e9e9e;
5016
- margin: 0;
5017
- height: 400px; }
5018
- .slider ul.slides li {
5019
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
5020
- filter: "alpha(opacity=(${iefactor}))";
5021
- -moz-opacity: 0;
5022
- -khtml-opacity: 0;
5023
- opacity: 0;
5024
- position: absolute;
5025
- top: 0;
5026
- left: 0;
5027
- z-index: 1;
5028
- width: 100%;
5029
- height: inherit;
5030
- overflow: hidden; }
5031
- .slider ul.slides li img {
5032
- height: 100%;
5033
- width: 100%;
5034
- background-size: cover;
5035
- background-position: center; }
5036
- .slider ul.slides li .caption {
5037
- color: #fff;
5038
- position: absolute;
5039
- top: 15%;
5040
- left: 15%;
5041
- width: 70%;
5042
- -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
5043
- filter: "alpha(opacity=(${iefactor}))";
5044
- -moz-opacity: 0;
5045
- -khtml-opacity: 0;
5046
- opacity: 0; }
5047
- .slider ul.slides li .caption p {
5048
- color: #e0e0e0; }
5049
- .slider ul.slides li.active {
5050
- z-index: 2; }
5051
- .slider ul.indicators {
5052
- position: absolute;
5053
- text-align: center;
5054
- left: 0;
5055
- right: 0;
5056
- bottom: 0;
5057
- margin: 0; }
5058
- .slider ul.indicators li.indicator-item {
5059
- display: inline-block;
5060
- position: relative;
5061
- cursor: pointer;
5062
- height: 16px;
5063
- width: 16px;
5064
- margin: 0 12px;
5065
- background-color: #e0e0e0;
5066
- -webkit-transition: background-color 0.3s;
5067
- -moz-transition: background-color 0.3s;
5068
- -o-transition: background-color 0.3s;
5069
- -ms-transition: background-color 0.3s;
5070
- transition: background-color 0.3s;
5071
- -webkit-border-radius: 50%;
5072
- -moz-border-radius: 50%;
5073
- border-radius: 50%;
5074
- background-clip: padding-box; }
5075
- .slider ul.indicators li.indicator-item.active {
5076
- background-color: #4CAF50; }
5077
-
5078
- /* ==========================================================================
5079
- $BASE-PICKER
5080
- ========================================================================== */
5081
- /**
5082
- * Note: the root picker element should *NOT* be styled more than what's here.
5083
- */
5084
- .picker {
5085
- font-size: 16px;
5086
- text-align: left;
5087
- line-height: 1.2;
5088
- color: #000000;
5089
- position: absolute;
5090
- z-index: 10000;
5091
- -webkit-user-select: none;
5092
- -moz-user-select: none;
5093
- -ms-user-select: none;
5094
- user-select: none; }
5095
-
5096
- /**
5097
- * The picker input element.
5098
- */
5099
- .picker__input {
5100
- cursor: default; }
5101
-
5102
- /**
5103
- * When the picker is opened, the input element is "activated".
5104
- */
5105
- .picker__input.picker__input--active {
5106
- border-color: #0089ec; }
5107
-
5108
- /**
5109
- * The holder is the only "scrollable" top-level container element.
5110
- */
5111
- .picker__holder {
5112
- width: 100%;
5113
- overflow-y: auto;
5114
- -webkit-overflow-scrolling: touch; }
5115
-
5116
- /*!
5117
- * Default mobile-first, responsive styling for pickadate.js
5118
- * Demo: http://amsul.github.io/pickadate.js
5119
- */
5120
- /**
5121
- * Note: the root picker element should *NOT* be styled more than what's here.
5122
- */
5123
- /**
5124
- * Make the holder and frame fullscreen.
5125
- */
5126
- .picker__holder, .picker__frame {
5127
- bottom: 0;
5128
- left: 0;
5129
- right: 0;
5130
- top: 100%; }
5131
-
5132
- /**
5133
- * The holder should overlay the entire screen.
5134
- */
5135
- .picker__holder {
5136
- position: fixed;
5137
- -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
5138
- -moz-transition: background 0.15s ease-out, top 0s 0.15s;
5139
- transition: background 0.15s ease-out, top 0s 0.15s;
5140
- -webkit-backface-visibility: hidden; }
5141
-
5142
- /**
5143
- * The frame that bounds the box contents of the picker.
5144
- */
5145
- .picker__frame {
5146
- position: absolute;
5147
- margin: 0 auto;
5148
- min-width: 256px;
5149
- max-width: 300px;
5150
- max-height: 350px;
5151
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
5152
- filter: alpha(opacity=0);
5153
- -moz-opacity: 0;
5154
- opacity: 0;
5155
- -webkit-transition: all 0.15s ease-out;
5156
- -moz-transition: all 0.15s ease-out;
5157
- transition: all 0.15s ease-out; }
5158
-
5159
- @media (min-height: 28.875em) {
5160
- .picker__frame {
5161
- overflow: visible;
5162
- top: auto;
5163
- bottom: -100%;
5164
- max-height: 80%; }
5165
- }
5166
-
5167
- @media (min-height: 40.125em) {
5168
- .picker__frame {
5169
- margin-bottom: 7.5%; }
5170
- }
5171
-
5172
- /**
5173
- * The wrapper sets the stage to vertically align the box contents.
5174
- */
5175
- .picker__wrap {
5176
- display: table;
5177
- width: 100%;
5178
- height: 100%; }
5179
-
5180
- @media (min-height: 28.875em) {
5181
- .picker__wrap {
5182
- display: block; }
5183
- }
5184
-
5185
- /**
5186
- * The box contains all the picker contents.
5187
- */
5188
- .picker__box {
5189
- background: #ffffff;
5190
- display: table-cell;
5191
- vertical-align: middle; }
5192
-
5193
- @media (min-height: 28.875em) {
5194
- .picker__box {
5195
- display: block;
5196
- border: 1px solid #777777;
5197
- border-top-color: #898989;
5198
- border-bottom-width: 0;
5199
- -webkit-border-radius: 5px 5px 0 0;
5200
- -moz-border-radius: 5px 5px 0 0;
5201
- border-radius: 5px 5px 0 0;
5202
- -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
5203
- -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
5204
- box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); }
5205
- }
5206
-
5207
- /**
5208
- * When the picker opens...
5209
- */
5210
- .picker--opened .picker__holder {
5211
- top: 0;
5212
- background: transparent;
5213
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
5214
- zoom: 1;
5215
- background: rgba(0, 0, 0, 0.32);
5216
- -webkit-transition: background 0.15s ease-out;
5217
- -moz-transition: background 0.15s ease-out;
5218
- transition: background 0.15s ease-out; }
5219
-
5220
- .picker--opened .picker__frame {
5221
- top: 0;
5222
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
5223
- filter: alpha(opacity=100);
5224
- -moz-opacity: 1;
5225
- opacity: 1; }
5226
-
5227
- @media (min-height: 35.875em) {
5228
- .picker--opened .picker__frame {
5229
- top: 10%;
5230
- bottom: 20% auto; }
5231
- }
5232
-
5233
- /**
5234
- * For `large` screens, transform into an inline picker.
5235
- */
5236
- /* ==========================================================================
5237
- CUSTOM MATERIALIZE STYLES
5238
- ========================================================================== */
5239
- .picker__input.picker__input--active {
5240
- border-color: #E3F2FD; }
5241
-
5242
- .picker__frame {
5243
- margin: 0 auto;
5244
- max-width: 325px; }
5245
-
5246
- @media (min-height: 38.875em) {
5247
- .picker--opened .picker__frame {
5248
- top: 10%;
5249
- bottom: auto; }
5250
- }
5251
-
5252
- /* ==========================================================================
5253
- $BASE-DATE-PICKER
5254
- ========================================================================== */
5255
- /**
5256
- * The picker box.
5257
- */
5258
- .picker__box {
5259
- padding: 0 1em; }
5260
-
5261
- /**
5262
- * The header containing the month and year stuff.
5263
- */
5264
- .picker__header {
5265
- text-align: center;
5266
- position: relative;
5267
- margin-top: 0.75em; }
5268
-
5269
- /**
5270
- * The month and year labels.
5271
- */
5272
- .picker__month, .picker__year {
5273
- display: inline-block;
5274
- margin-left: 0.25em;
5275
- margin-right: 0.25em; }
5276
-
5277
- /**
5278
- * The month and year selectors.
5279
- */
5280
- .picker__select--month, .picker__select--year {
5281
- height: 2em;
5282
- padding: 0.5em;
5283
- margin-left: 0.25em;
5284
- margin-right: 0.25em; }
5285
-
5286
- @media (min-width: 24.5em) {
5287
- .picker__select--month, .picker__select--year {
5288
- margin-top: -0.5em; }
5289
- }
5290
-
5291
- .picker__select--month.browser-default {
5292
- display: inline;
5293
- background-color: #FFFFFF;
5294
- width: 40%; }
5295
-
5296
- .picker__select--year.browser-default {
5297
- display: inline;
5298
- background-color: #FFFFFF;
5299
- width: 25%; }
5300
-
5301
- .picker__select--month:focus, .picker__select--year:focus {
5302
- border-color: rgba(0, 0, 0, 0.05); }
5303
-
5304
- /**
5305
- * The month navigation buttons.
5306
- */
5307
- .picker__nav--prev, .picker__nav--next {
5308
- position: absolute;
5309
- padding: 0.5em 1.25em;
5310
- width: 1em;
5311
- height: 1em;
5312
- box-sizing: content-box;
5313
- top: -0.25em; }
5314
-
5315
- .picker__nav--prev {
5316
- left: -1em;
5317
- padding-right: 1.25em; }
5318
-
5319
- .picker__nav--next {
5320
- right: -1em;
5321
- padding-left: 1.25em; }
5322
-
5323
- .picker__nav--disabled, .picker__nav--disabled:hover, .picker__nav--disabled:before, .picker__nav--disabled:before:hover {
5324
- cursor: default;
5325
- background: none;
5326
- border-right-color: #f5f5f5;
5327
- border-left-color: #f5f5f5; }
5328
-
5329
- /**
5330
- * The calendar table of dates
5331
- */
5332
- .picker__table {
5333
- text-align: center;
5334
- border-collapse: collapse;
5335
- border-spacing: 0;
5336
- table-layout: fixed;
5337
- font-size: 1rem;
5338
- width: 100%;
5339
- margin-top: 0.75em;
5340
- margin-bottom: 0.5em; }
5341
-
5342
- .picker__table th, .picker__table td {
5343
- text-align: center; }
5344
-
5345
- .picker__table td {
5346
- margin: 0;
5347
- padding: 0; }
5348
-
5349
- /**
5350
- * The weekday labels
5351
- */
5352
- .picker__weekday {
5353
- width: 14.285714286%;
5354
- font-size: 0.75em;
5355
- padding-bottom: 0.25em;
5356
- color: #999999;
5357
- font-weight: 500;
5358
- /* Increase the spacing a tad */ }
5359
-
5360
- @media (min-height: 33.875em) {
5361
- .picker__weekday {
5362
- padding-bottom: 0.5em; }
5363
- }
5364
-
5365
- /**
5366
- * The days on the calendar
5367
- */
5368
- .picker__day--today {
5369
- position: relative;
5370
- color: #595959;
5371
- letter-spacing: -0.3;
5372
- padding: 0.75rem 0;
5373
- font-weight: 400;
5374
- border: 1px solid transparent; }
5375
-
5376
- .picker__day--disabled:before {
5377
- border-top-color: #aaaaaa; }
5378
-
5379
- .picker__day--infocus:hover {
5380
- cursor: pointer;
5381
- color: #000;
5382
- font-weight: 500; }
5383
-
5384
- .picker__day--outfocus {
5385
- padding: 0.75rem 0;
5386
- color: #fff; }
5387
-
5388
- .picker__day--outfocus:hover {
5389
- cursor: pointer;
5390
- color: #dddddd;
5391
- font-weight: 500; }
5392
-
5393
- .picker__day--highlighted:hover, .picker--focused .picker__day--highlighted {
5394
- cursor: pointer; }
5395
-
5396
- .picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
5397
- border-radius: 50%;
5398
- -webkit-transform: scale(0.75);
5399
- -moz-transform: scale(0.75);
5400
- -ms-transform: scale(0.75);
5401
- -o-transform: scale(0.75);
5402
- transform: scale(0.75);
5403
- background: #0089ec;
5404
- color: #ffffff; }
5405
-
5406
- .picker__day--disabled, .picker__day--disabled:hover, .picker--focused .picker__day--disabled {
5407
- background: #f5f5f5;
5408
- border-color: #f5f5f5;
5409
- color: #dddddd;
5410
- cursor: default; }
5411
-
5412
- .picker__day--highlighted.picker__day--disabled, .picker__day--highlighted.picker__day--disabled:hover {
5413
- background: #bbbbbb; }
5414
-
5415
- /**
5416
- * The footer containing the "today", "clear", and "close" buttons.
5417
- */
5418
- .picker__footer {
5419
- text-align: center;
5420
- display: flex;
5421
- align-items: center;
5422
- justify-content: space-between; }
5423
-
5424
- .picker__button--today, .picker__button--clear, .picker__button--close {
5425
- border: 1px solid #ffffff;
5426
- background: #ffffff;
5427
- font-size: 0.8em;
5428
- padding: 0.66em 0;
5429
- font-weight: bold;
5430
- width: 33%;
5431
- display: inline-block;
5432
- vertical-align: bottom; }
5433
-
5434
- .picker__button--today:hover, .picker__button--clear:hover, .picker__button--close:hover {
5435
- cursor: pointer;
5436
- color: #000000;
5437
- background: #b1dcfb;
5438
- border-bottom-color: #b1dcfb; }
5439
-
5440
- .picker__button--today:focus, .picker__button--clear:focus, .picker__button--close:focus {
5441
- background: #b1dcfb;
5442
- border-color: rgba(0, 0, 0, 0.05);
5443
- outline: none; }
5444
-
5445
- .picker__button--today:before, .picker__button--clear:before, .picker__button--close:before {
5446
- position: relative;
5447
- display: inline-block;
5448
- height: 0; }
5449
-
5450
- .picker__button--today:before, .picker__button--clear:before {
5451
- content: " ";
5452
- margin-right: 0.45em; }
5453
-
5454
- .picker__button--today:before {
5455
- top: -0.05em;
5456
- width: 0;
5457
- border-top: 0.66em solid #0059bc;
5458
- border-left: 0.66em solid transparent; }
5459
-
5460
- .picker__button--clear:before {
5461
- top: -0.25em;
5462
- width: 0.66em;
5463
- border-top: 3px solid #ee2200; }
5464
-
5465
- .picker__button--close:before {
5466
- content: "\D7";
5467
- top: -0.1em;
5468
- vertical-align: top;
5469
- font-size: 1.1em;
5470
- margin-right: 0.35em;
5471
- color: #777777; }
5472
-
5473
- .picker__button--today[disabled], .picker__button--today[disabled]:hover {
5474
- background: #f5f5f5;
5475
- border-color: #f5f5f5;
5476
- color: #dddddd;
5477
- cursor: default; }
5478
-
5479
- .picker__button--today[disabled]:before {
5480
- border-top-color: #aaaaaa; }
5481
-
5482
- /* ==========================================================================
5483
- CUSTOM MATERIALIZE STYLES
5484
- ========================================================================== */
5485
- .picker__box {
5486
- border-radius: 2px;
5487
- overflow: hidden; }
5488
-
5489
- .picker__date-display {
5490
- text-align: center;
5491
- background-color: #26a69a;
5492
- color: #fff;
5493
- padding-bottom: 15px;
5494
- font-weight: 300; }
5495
-
5496
- .picker__nav--prev:hover, .picker__nav--next:hover {
5497
- cursor: pointer;
5498
- color: #000000;
5499
- background: #a1ded8; }
5500
-
5501
- .picker__weekday-display {
5502
- background-color: #1f897f;
5503
- padding: 10px;
5504
- font-weight: 200;
5505
- letter-spacing: 0.5;
5506
- font-size: 1rem;
5507
- margin-bottom: 15px; }
5508
-
5509
- .picker__month-display {
5510
- text-transform: uppercase;
5511
- font-size: 2rem; }
5512
-
5513
- .picker__day-display {
5514
- font-size: 4.5rem;
5515
- font-weight: 400; }
5516
-
5517
- .picker__year-display {
5518
- font-size: 1.8rem;
5519
- color: rgba(255, 255, 255, 0.4); }
5520
-
5521
- .picker__box {
5522
- padding: 0; }
5523
-
5524
- .picker__calendar-container {
5525
- padding: 0 1rem; }
5526
- .picker__calendar-container thead {
5527
- border: none; }
5528
-
5529
- .picker__table {
5530
- margin-top: 0;
5531
- margin-bottom: 0.5em; }
5532
-
5533
- .picker__day--infocus {
5534
- color: #595959;
5535
- letter-spacing: -0.3;
5536
- padding: 0.75rem 0;
5537
- font-weight: 400;
5538
- border: 1px solid transparent; }
5539
-
5540
- .picker__day.picker__day--today {
5541
- color: #26a69a; }
5542
-
5543
- .picker__day.picker__day--today.picker__day--selected {
5544
- color: #fff; }
5545
-
5546
- .picker__weekday {
5547
- font-size: 0.9rem; }
5548
-
5549
- .picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
5550
- border-radius: 50%;
5551
- -webkit-transform: scale(0.9);
5552
- -moz-transform: scale(0.9);
5553
- -ms-transform: scale(0.9);
5554
- -o-transform: scale(0.9);
5555
- transform: scale(0.9);
5556
- background-color: #26a69a;
5557
- color: #ffffff; }
5558
- .picker__day--selected.picker__day--outfocus, .picker__day--selected:hover.picker__day--outfocus, .picker--focused .picker__day--selected.picker__day--outfocus {
5559
- background-color: #a1ded8; }
5560
-
5561
- .picker__footer {
5562
- text-align: right;
5563
- padding: 5px 10px; }
5564
-
5565
- .picker__close, .picker__today {
5566
- font-size: 1.1rem;
5567
- padding: 0 1rem;
5568
- color: #26a69a; }
5569
-
5570
- .picker__nav--prev:before, .picker__nav--next:before {
5571
- content: " ";
5572
- border-top: 0.5em solid transparent;
5573
- border-bottom: 0.5em solid transparent;
5574
- border-right: 0.75em solid #676767;
5575
- width: 0;
5576
- height: 0;
5577
- display: block;
5578
- margin: 0 auto; }
5579
-
5580
- .picker__nav--next:before {
5581
- border-right: 0;
5582
- border-left: 0.75em solid #676767; }
5583
-
5584
- button.picker__today:focus, button.picker__clear:focus, button.picker__close:focus {
5585
- background-color: #a1ded8; }
5586
-
5587
- /* ==========================================================================
5588
- $BASE-TIME-PICKER
5589
- ========================================================================== */
5590
- /**
5591
- * The list of times.
5592
- */
5593
- .picker__list {
5594
- list-style: none;
5595
- padding: 0.75em 0 4.2em;
5596
- margin: 0; }
5597
-
5598
- /**
5599
- * The times on the clock.
5600
- */
5601
- .picker__list-item {
5602
- border-bottom: 1px solid #dddddd;
5603
- border-top: 1px solid #dddddd;
5604
- margin-bottom: -1px;
5605
- position: relative;
5606
- background: #ffffff;
5607
- padding: 0.75em 1.25em; }
5608
-
5609
- @media (min-height: 46.75em) {
5610
- .picker__list-item {
5611
- padding: 0.5em 1em; }
5612
- }
5613
-
5614
- /* Hovered time */
5615
- .picker__list-item:hover {
5616
- cursor: pointer;
5617
- color: #000000;
5618
- background: #b1dcfb;
5619
- border-color: #0089ec;
5620
- z-index: 10; }
5621
-
5622
- /* Highlighted and hovered/focused time */
5623
- .picker__list-item--highlighted {
5624
- border-color: #0089ec;
5625
- z-index: 10; }
5626
-
5627
- .picker__list-item--highlighted:hover, .picker--focused .picker__list-item--highlighted {
5628
- cursor: pointer;
5629
- color: #000000;
5630
- background: #b1dcfb; }
5631
-
5632
- /* Selected and hovered/focused time */
5633
- .picker__list-item--selected, .picker__list-item--selected:hover, .picker--focused .picker__list-item--selected {
5634
- background: #0089ec;
5635
- color: #ffffff;
5636
- z-index: 10; }
5637
-
5638
- /* Disabled time */
5639
- .picker__list-item--disabled, .picker__list-item--disabled:hover, .picker--focused .picker__list-item--disabled {
5640
- background: #f5f5f5;
5641
- border-color: #f5f5f5;
5642
- color: #dddddd;
5643
- cursor: default;
5644
- border-color: #dddddd;
5645
- z-index: auto; }
5646
-
5647
- /**
5648
- * The clear button
5649
- */
5650
- .picker--time .picker__button--clear {
5651
- display: block;
5652
- width: 80%;
5653
- margin: 1em auto 0;
5654
- padding: 1em 1.25em;
5655
- background: none;
5656
- border: 0;
5657
- font-weight: 500;
5658
- font-size: 0.67em;
5659
- text-align: center;
5660
- text-transform: uppercase;
5661
- color: #666; }
5662
-
5663
- .picker--time .picker__button--clear:hover, .picker--time .picker__button--clear:focus {
5664
- color: #000000;
5665
- background: #b1dcfb;
5666
- background: #ee2200;
5667
- border-color: #ee2200;
5668
- cursor: pointer;
5669
- color: #ffffff;
5670
- outline: none; }
5671
-
5672
- .picker--time .picker__button--clear:before {
5673
- top: -0.25em;
5674
- color: #666;
5675
- font-size: 1.25em;
5676
- font-weight: bold; }
5677
-
5678
- .picker--time .picker__button--clear:hover:before, .picker--time .picker__button--clear:focus:before {
5679
- color: #ffffff; }
5680
-
5681
- /* ==========================================================================
5682
- $DEFAULT-TIME-PICKER
5683
- ========================================================================== */
5684
- /**
5685
- * The frame the bounds the time picker.
5686
- */
5687
- .picker--time .picker__frame {
5688
- min-width: 256px;
5689
- max-width: 320px; }
5690
-
5691
- /**
5692
- * The picker box.
5693
- */
5694
- .picker--time .picker__box {
5695
- font-size: 1em;
5696
- background: #f2f2f2;
5697
- padding: 0; }
5698
-
5699
- @media (min-height: 40.125em) {
5700
- .picker--time .picker__box {
5701
- margin-bottom: 5em; }
5702
- }
1
+ /*!
2
+ * Materialize v0.95.3 (http://materializecss.com)
3
+ * Copyright 2014-2015 Materialize
4
+ * MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
5
+ */
6
+ .materialize-red.lighten-5 {
7
+ background-color: #fdeaeb !important; }
8
+
9
+ .materialize-red-text.text-lighten-5 {
10
+ color: #fdeaeb !important; }
11
+
12
+ .materialize-red.lighten-4 {
13
+ background-color: #f8c1c3 !important; }
14
+
15
+ .materialize-red-text.text-lighten-4 {
16
+ color: #f8c1c3 !important; }
17
+
18
+ .materialize-red.lighten-3 {
19
+ background-color: #f3989b !important; }
20
+
21
+ .materialize-red-text.text-lighten-3 {
22
+ color: #f3989b !important; }
23
+
24
+ .materialize-red.lighten-2 {
25
+ background-color: #ee6e73 !important; }
26
+
27
+ .materialize-red-text.text-lighten-2 {
28
+ color: #ee6e73 !important; }
29
+
30
+ .materialize-red.lighten-1 {
31
+ background-color: #ea454b !important; }
32
+
33
+ .materialize-red-text.text-lighten-1 {
34
+ color: #ea454b !important; }
35
+
36
+ .materialize-red {
37
+ background-color: #e51c23 !important; }
38
+
39
+ .materialize-red-text {
40
+ color: #e51c23 !important; }
41
+
42
+ .materialize-red.darken-1 {
43
+ background-color: #d0181e !important; }
44
+
45
+ .materialize-red-text.text-darken-1 {
46
+ color: #d0181e !important; }
47
+
48
+ .materialize-red.darken-2 {
49
+ background-color: #b9151b !important; }
50
+
51
+ .materialize-red-text.text-darken-2 {
52
+ color: #b9151b !important; }
53
+
54
+ .materialize-red.darken-3 {
55
+ background-color: #a21318 !important; }
56
+
57
+ .materialize-red-text.text-darken-3 {
58
+ color: #a21318 !important; }
59
+
60
+ .materialize-red.darken-4 {
61
+ background-color: #8b1014 !important; }
62
+
63
+ .materialize-red-text.text-darken-4 {
64
+ color: #8b1014 !important; }
65
+
66
+ .red.lighten-5 {
67
+ background-color: #FFEBEE !important; }
68
+
69
+ .red-text.text-lighten-5 {
70
+ color: #FFEBEE !important; }
71
+
72
+ .red.lighten-4 {
73
+ background-color: #FFCDD2 !important; }
74
+
75
+ .red-text.text-lighten-4 {
76
+ color: #FFCDD2 !important; }
77
+
78
+ .red.lighten-3 {
79
+ background-color: #EF9A9A !important; }
80
+
81
+ .red-text.text-lighten-3 {
82
+ color: #EF9A9A !important; }
83
+
84
+ .red.lighten-2 {
85
+ background-color: #E57373 !important; }
86
+
87
+ .red-text.text-lighten-2 {
88
+ color: #E57373 !important; }
89
+
90
+ .red.lighten-1 {
91
+ background-color: #EF5350 !important; }
92
+
93
+ .red-text.text-lighten-1 {
94
+ color: #EF5350 !important; }
95
+
96
+ .red {
97
+ background-color: #F44336 !important; }
98
+
99
+ .red-text {
100
+ color: #F44336 !important; }
101
+
102
+ .red.darken-1 {
103
+ background-color: #E53935 !important; }
104
+
105
+ .red-text.text-darken-1 {
106
+ color: #E53935 !important; }
107
+
108
+ .red.darken-2 {
109
+ background-color: #D32F2F !important; }
110
+
111
+ .red-text.text-darken-2 {
112
+ color: #D32F2F !important; }
113
+
114
+ .red.darken-3 {
115
+ background-color: #C62828 !important; }
116
+
117
+ .red-text.text-darken-3 {
118
+ color: #C62828 !important; }
119
+
120
+ .red.darken-4 {
121
+ background-color: #B71C1C !important; }
122
+
123
+ .red-text.text-darken-4 {
124
+ color: #B71C1C !important; }
125
+
126
+ .red.accent-1 {
127
+ background-color: #FF8A80 !important; }
128
+
129
+ .red-text.text-accent-1 {
130
+ color: #FF8A80 !important; }
131
+
132
+ .red.accent-2 {
133
+ background-color: #FF5252 !important; }
134
+
135
+ .red-text.text-accent-2 {
136
+ color: #FF5252 !important; }
137
+
138
+ .red.accent-3 {
139
+ background-color: #FF1744 !important; }
140
+
141
+ .red-text.text-accent-3 {
142
+ color: #FF1744 !important; }
143
+
144
+ .red.accent-4 {
145
+ background-color: #D50000 !important; }
146
+
147
+ .red-text.text-accent-4 {
148
+ color: #D50000 !important; }
149
+
150
+ .pink.lighten-5 {
151
+ background-color: #fce4ec !important; }
152
+
153
+ .pink-text.text-lighten-5 {
154
+ color: #fce4ec !important; }
155
+
156
+ .pink.lighten-4 {
157
+ background-color: #f8bbd0 !important; }
158
+
159
+ .pink-text.text-lighten-4 {
160
+ color: #f8bbd0 !important; }
161
+
162
+ .pink.lighten-3 {
163
+ background-color: #f48fb1 !important; }
164
+
165
+ .pink-text.text-lighten-3 {
166
+ color: #f48fb1 !important; }
167
+
168
+ .pink.lighten-2 {
169
+ background-color: #f06292 !important; }
170
+
171
+ .pink-text.text-lighten-2 {
172
+ color: #f06292 !important; }
173
+
174
+ .pink.lighten-1 {
175
+ background-color: #ec407a !important; }
176
+
177
+ .pink-text.text-lighten-1 {
178
+ color: #ec407a !important; }
179
+
180
+ .pink {
181
+ background-color: #e91e63 !important; }
182
+
183
+ .pink-text {
184
+ color: #e91e63 !important; }
185
+
186
+ .pink.darken-1 {
187
+ background-color: #d81b60 !important; }
188
+
189
+ .pink-text.text-darken-1 {
190
+ color: #d81b60 !important; }
191
+
192
+ .pink.darken-2 {
193
+ background-color: #c2185b !important; }
194
+
195
+ .pink-text.text-darken-2 {
196
+ color: #c2185b !important; }
197
+
198
+ .pink.darken-3 {
199
+ background-color: #ad1457 !important; }
200
+
201
+ .pink-text.text-darken-3 {
202
+ color: #ad1457 !important; }
203
+
204
+ .pink.darken-4 {
205
+ background-color: #880e4f !important; }
206
+
207
+ .pink-text.text-darken-4 {
208
+ color: #880e4f !important; }
209
+
210
+ .pink.accent-1 {
211
+ background-color: #ff80ab !important; }
212
+
213
+ .pink-text.text-accent-1 {
214
+ color: #ff80ab !important; }
215
+
216
+ .pink.accent-2 {
217
+ background-color: #ff4081 !important; }
218
+
219
+ .pink-text.text-accent-2 {
220
+ color: #ff4081 !important; }
221
+
222
+ .pink.accent-3 {
223
+ background-color: #f50057 !important; }
224
+
225
+ .pink-text.text-accent-3 {
226
+ color: #f50057 !important; }
227
+
228
+ .pink.accent-4 {
229
+ background-color: #c51162 !important; }
230
+
231
+ .pink-text.text-accent-4 {
232
+ color: #c51162 !important; }
233
+
234
+ .purple.lighten-5 {
235
+ background-color: #f3e5f5 !important; }
236
+
237
+ .purple-text.text-lighten-5 {
238
+ color: #f3e5f5 !important; }
239
+
240
+ .purple.lighten-4 {
241
+ background-color: #e1bee7 !important; }
242
+
243
+ .purple-text.text-lighten-4 {
244
+ color: #e1bee7 !important; }
245
+
246
+ .purple.lighten-3 {
247
+ background-color: #ce93d8 !important; }
248
+
249
+ .purple-text.text-lighten-3 {
250
+ color: #ce93d8 !important; }
251
+
252
+ .purple.lighten-2 {
253
+ background-color: #ba68c8 !important; }
254
+
255
+ .purple-text.text-lighten-2 {
256
+ color: #ba68c8 !important; }
257
+
258
+ .purple.lighten-1 {
259
+ background-color: #ab47bc !important; }
260
+
261
+ .purple-text.text-lighten-1 {
262
+ color: #ab47bc !important; }
263
+
264
+ .purple {
265
+ background-color: #9c27b0 !important; }
266
+
267
+ .purple-text {
268
+ color: #9c27b0 !important; }
269
+
270
+ .purple.darken-1 {
271
+ background-color: #8e24aa !important; }
272
+
273
+ .purple-text.text-darken-1 {
274
+ color: #8e24aa !important; }
275
+
276
+ .purple.darken-2 {
277
+ background-color: #7b1fa2 !important; }
278
+
279
+ .purple-text.text-darken-2 {
280
+ color: #7b1fa2 !important; }
281
+
282
+ .purple.darken-3 {
283
+ background-color: #6a1b9a !important; }
284
+
285
+ .purple-text.text-darken-3 {
286
+ color: #6a1b9a !important; }
287
+
288
+ .purple.darken-4 {
289
+ background-color: #4a148c !important; }
290
+
291
+ .purple-text.text-darken-4 {
292
+ color: #4a148c !important; }
293
+
294
+ .purple.accent-1 {
295
+ background-color: #ea80fc !important; }
296
+
297
+ .purple-text.text-accent-1 {
298
+ color: #ea80fc !important; }
299
+
300
+ .purple.accent-2 {
301
+ background-color: #e040fb !important; }
302
+
303
+ .purple-text.text-accent-2 {
304
+ color: #e040fb !important; }
305
+
306
+ .purple.accent-3 {
307
+ background-color: #d500f9 !important; }
308
+
309
+ .purple-text.text-accent-3 {
310
+ color: #d500f9 !important; }
311
+
312
+ .purple.accent-4 {
313
+ background-color: #aa00ff !important; }
314
+
315
+ .purple-text.text-accent-4 {
316
+ color: #aa00ff !important; }
317
+
318
+ .deep-purple.lighten-5 {
319
+ background-color: #ede7f6 !important; }
320
+
321
+ .deep-purple-text.text-lighten-5 {
322
+ color: #ede7f6 !important; }
323
+
324
+ .deep-purple.lighten-4 {
325
+ background-color: #d1c4e9 !important; }
326
+
327
+ .deep-purple-text.text-lighten-4 {
328
+ color: #d1c4e9 !important; }
329
+
330
+ .deep-purple.lighten-3 {
331
+ background-color: #b39ddb !important; }
332
+
333
+ .deep-purple-text.text-lighten-3 {
334
+ color: #b39ddb !important; }
335
+
336
+ .deep-purple.lighten-2 {
337
+ background-color: #9575cd !important; }
338
+
339
+ .deep-purple-text.text-lighten-2 {
340
+ color: #9575cd !important; }
341
+
342
+ .deep-purple.lighten-1 {
343
+ background-color: #7e57c2 !important; }
344
+
345
+ .deep-purple-text.text-lighten-1 {
346
+ color: #7e57c2 !important; }
347
+
348
+ .deep-purple {
349
+ background-color: #673ab7 !important; }
350
+
351
+ .deep-purple-text {
352
+ color: #673ab7 !important; }
353
+
354
+ .deep-purple.darken-1 {
355
+ background-color: #5e35b1 !important; }
356
+
357
+ .deep-purple-text.text-darken-1 {
358
+ color: #5e35b1 !important; }
359
+
360
+ .deep-purple.darken-2 {
361
+ background-color: #512da8 !important; }
362
+
363
+ .deep-purple-text.text-darken-2 {
364
+ color: #512da8 !important; }
365
+
366
+ .deep-purple.darken-3 {
367
+ background-color: #4527a0 !important; }
368
+
369
+ .deep-purple-text.text-darken-3 {
370
+ color: #4527a0 !important; }
371
+
372
+ .deep-purple.darken-4 {
373
+ background-color: #311b92 !important; }
374
+
375
+ .deep-purple-text.text-darken-4 {
376
+ color: #311b92 !important; }
377
+
378
+ .deep-purple.accent-1 {
379
+ background-color: #b388ff !important; }
380
+
381
+ .deep-purple-text.text-accent-1 {
382
+ color: #b388ff !important; }
383
+
384
+ .deep-purple.accent-2 {
385
+ background-color: #7c4dff !important; }
386
+
387
+ .deep-purple-text.text-accent-2 {
388
+ color: #7c4dff !important; }
389
+
390
+ .deep-purple.accent-3 {
391
+ background-color: #651fff !important; }
392
+
393
+ .deep-purple-text.text-accent-3 {
394
+ color: #651fff !important; }
395
+
396
+ .deep-purple.accent-4 {
397
+ background-color: #6200ea !important; }
398
+
399
+ .deep-purple-text.text-accent-4 {
400
+ color: #6200ea !important; }
401
+
402
+ .indigo.lighten-5 {
403
+ background-color: #e8eaf6 !important; }
404
+
405
+ .indigo-text.text-lighten-5 {
406
+ color: #e8eaf6 !important; }
407
+
408
+ .indigo.lighten-4 {
409
+ background-color: #c5cae9 !important; }
410
+
411
+ .indigo-text.text-lighten-4 {
412
+ color: #c5cae9 !important; }
413
+
414
+ .indigo.lighten-3 {
415
+ background-color: #9fa8da !important; }
416
+
417
+ .indigo-text.text-lighten-3 {
418
+ color: #9fa8da !important; }
419
+
420
+ .indigo.lighten-2 {
421
+ background-color: #7986cb !important; }
422
+
423
+ .indigo-text.text-lighten-2 {
424
+ color: #7986cb !important; }
425
+
426
+ .indigo.lighten-1 {
427
+ background-color: #5c6bc0 !important; }
428
+
429
+ .indigo-text.text-lighten-1 {
430
+ color: #5c6bc0 !important; }
431
+
432
+ .indigo {
433
+ background-color: #3f51b5 !important; }
434
+
435
+ .indigo-text {
436
+ color: #3f51b5 !important; }
437
+
438
+ .indigo.darken-1 {
439
+ background-color: #3949ab !important; }
440
+
441
+ .indigo-text.text-darken-1 {
442
+ color: #3949ab !important; }
443
+
444
+ .indigo.darken-2 {
445
+ background-color: #303f9f !important; }
446
+
447
+ .indigo-text.text-darken-2 {
448
+ color: #303f9f !important; }
449
+
450
+ .indigo.darken-3 {
451
+ background-color: #283593 !important; }
452
+
453
+ .indigo-text.text-darken-3 {
454
+ color: #283593 !important; }
455
+
456
+ .indigo.darken-4 {
457
+ background-color: #1a237e !important; }
458
+
459
+ .indigo-text.text-darken-4 {
460
+ color: #1a237e !important; }
461
+
462
+ .indigo.accent-1 {
463
+ background-color: #8c9eff !important; }
464
+
465
+ .indigo-text.text-accent-1 {
466
+ color: #8c9eff !important; }
467
+
468
+ .indigo.accent-2 {
469
+ background-color: #536dfe !important; }
470
+
471
+ .indigo-text.text-accent-2 {
472
+ color: #536dfe !important; }
473
+
474
+ .indigo.accent-3 {
475
+ background-color: #3d5afe !important; }
476
+
477
+ .indigo-text.text-accent-3 {
478
+ color: #3d5afe !important; }
479
+
480
+ .indigo.accent-4 {
481
+ background-color: #304ffe !important; }
482
+
483
+ .indigo-text.text-accent-4 {
484
+ color: #304ffe !important; }
485
+
486
+ .blue.lighten-5 {
487
+ background-color: #E3F2FD !important; }
488
+
489
+ .blue-text.text-lighten-5 {
490
+ color: #E3F2FD !important; }
491
+
492
+ .blue.lighten-4 {
493
+ background-color: #BBDEFB !important; }
494
+
495
+ .blue-text.text-lighten-4 {
496
+ color: #BBDEFB !important; }
497
+
498
+ .blue.lighten-3 {
499
+ background-color: #90CAF9 !important; }
500
+
501
+ .blue-text.text-lighten-3 {
502
+ color: #90CAF9 !important; }
503
+
504
+ .blue.lighten-2 {
505
+ background-color: #64B5F6 !important; }
506
+
507
+ .blue-text.text-lighten-2 {
508
+ color: #64B5F6 !important; }
509
+
510
+ .blue.lighten-1 {
511
+ background-color: #42A5F5 !important; }
512
+
513
+ .blue-text.text-lighten-1 {
514
+ color: #42A5F5 !important; }
515
+
516
+ .blue {
517
+ background-color: #2196F3 !important; }
518
+
519
+ .blue-text {
520
+ color: #2196F3 !important; }
521
+
522
+ .blue.darken-1 {
523
+ background-color: #1E88E5 !important; }
524
+
525
+ .blue-text.text-darken-1 {
526
+ color: #1E88E5 !important; }
527
+
528
+ .blue.darken-2 {
529
+ background-color: #1976D2 !important; }
530
+
531
+ .blue-text.text-darken-2 {
532
+ color: #1976D2 !important; }
533
+
534
+ .blue.darken-3 {
535
+ background-color: #1565C0 !important; }
536
+
537
+ .blue-text.text-darken-3 {
538
+ color: #1565C0 !important; }
539
+
540
+ .blue.darken-4 {
541
+ background-color: #0D47A1 !important; }
542
+
543
+ .blue-text.text-darken-4 {
544
+ color: #0D47A1 !important; }
545
+
546
+ .blue.accent-1 {
547
+ background-color: #82B1FF !important; }
548
+
549
+ .blue-text.text-accent-1 {
550
+ color: #82B1FF !important; }
551
+
552
+ .blue.accent-2 {
553
+ background-color: #448AFF !important; }
554
+
555
+ .blue-text.text-accent-2 {
556
+ color: #448AFF !important; }
557
+
558
+ .blue.accent-3 {
559
+ background-color: #2979FF !important; }
560
+
561
+ .blue-text.text-accent-3 {
562
+ color: #2979FF !important; }
563
+
564
+ .blue.accent-4 {
565
+ background-color: #2962FF !important; }
566
+
567
+ .blue-text.text-accent-4 {
568
+ color: #2962FF !important; }
569
+
570
+ .light-blue.lighten-5 {
571
+ background-color: #e1f5fe !important; }
572
+
573
+ .light-blue-text.text-lighten-5 {
574
+ color: #e1f5fe !important; }
575
+
576
+ .light-blue.lighten-4 {
577
+ background-color: #b3e5fc !important; }
578
+
579
+ .light-blue-text.text-lighten-4 {
580
+ color: #b3e5fc !important; }
581
+
582
+ .light-blue.lighten-3 {
583
+ background-color: #81d4fa !important; }
584
+
585
+ .light-blue-text.text-lighten-3 {
586
+ color: #81d4fa !important; }
587
+
588
+ .light-blue.lighten-2 {
589
+ background-color: #4fc3f7 !important; }
590
+
591
+ .light-blue-text.text-lighten-2 {
592
+ color: #4fc3f7 !important; }
593
+
594
+ .light-blue.lighten-1 {
595
+ background-color: #29b6f6 !important; }
596
+
597
+ .light-blue-text.text-lighten-1 {
598
+ color: #29b6f6 !important; }
599
+
600
+ .light-blue {
601
+ background-color: #03a9f4 !important; }
602
+
603
+ .light-blue-text {
604
+ color: #03a9f4 !important; }
605
+
606
+ .light-blue.darken-1 {
607
+ background-color: #039be5 !important; }
608
+
609
+ .light-blue-text.text-darken-1 {
610
+ color: #039be5 !important; }
611
+
612
+ .light-blue.darken-2 {
613
+ background-color: #0288d1 !important; }
614
+
615
+ .light-blue-text.text-darken-2 {
616
+ color: #0288d1 !important; }
617
+
618
+ .light-blue.darken-3 {
619
+ background-color: #0277bd !important; }
620
+
621
+ .light-blue-text.text-darken-3 {
622
+ color: #0277bd !important; }
623
+
624
+ .light-blue.darken-4 {
625
+ background-color: #01579b !important; }
626
+
627
+ .light-blue-text.text-darken-4 {
628
+ color: #01579b !important; }
629
+
630
+ .light-blue.accent-1 {
631
+ background-color: #80d8ff !important; }
632
+
633
+ .light-blue-text.text-accent-1 {
634
+ color: #80d8ff !important; }
635
+
636
+ .light-blue.accent-2 {
637
+ background-color: #40c4ff !important; }
638
+
639
+ .light-blue-text.text-accent-2 {
640
+ color: #40c4ff !important; }
641
+
642
+ .light-blue.accent-3 {
643
+ background-color: #00b0ff !important; }
644
+
645
+ .light-blue-text.text-accent-3 {
646
+ color: #00b0ff !important; }
647
+
648
+ .light-blue.accent-4 {
649
+ background-color: #0091ea !important; }
650
+
651
+ .light-blue-text.text-accent-4 {
652
+ color: #0091ea !important; }
653
+
654
+ .cyan.lighten-5 {
655
+ background-color: #e0f7fa !important; }
656
+
657
+ .cyan-text.text-lighten-5 {
658
+ color: #e0f7fa !important; }
659
+
660
+ .cyan.lighten-4 {
661
+ background-color: #b2ebf2 !important; }
662
+
663
+ .cyan-text.text-lighten-4 {
664
+ color: #b2ebf2 !important; }
665
+
666
+ .cyan.lighten-3 {
667
+ background-color: #80deea !important; }
668
+
669
+ .cyan-text.text-lighten-3 {
670
+ color: #80deea !important; }
671
+
672
+ .cyan.lighten-2 {
673
+ background-color: #4dd0e1 !important; }
674
+
675
+ .cyan-text.text-lighten-2 {
676
+ color: #4dd0e1 !important; }
677
+
678
+ .cyan.lighten-1 {
679
+ background-color: #26c6da !important; }
680
+
681
+ .cyan-text.text-lighten-1 {
682
+ color: #26c6da !important; }
683
+
684
+ .cyan {
685
+ background-color: #00bcd4 !important; }
686
+
687
+ .cyan-text {
688
+ color: #00bcd4 !important; }
689
+
690
+ .cyan.darken-1 {
691
+ background-color: #00acc1 !important; }
692
+
693
+ .cyan-text.text-darken-1 {
694
+ color: #00acc1 !important; }
695
+
696
+ .cyan.darken-2 {
697
+ background-color: #0097a7 !important; }
698
+
699
+ .cyan-text.text-darken-2 {
700
+ color: #0097a7 !important; }
701
+
702
+ .cyan.darken-3 {
703
+ background-color: #00838f !important; }
704
+
705
+ .cyan-text.text-darken-3 {
706
+ color: #00838f !important; }
707
+
708
+ .cyan.darken-4 {
709
+ background-color: #006064 !important; }
710
+
711
+ .cyan-text.text-darken-4 {
712
+ color: #006064 !important; }
713
+
714
+ .cyan.accent-1 {
715
+ background-color: #84ffff !important; }
716
+
717
+ .cyan-text.text-accent-1 {
718
+ color: #84ffff !important; }
719
+
720
+ .cyan.accent-2 {
721
+ background-color: #18ffff !important; }
722
+
723
+ .cyan-text.text-accent-2 {
724
+ color: #18ffff !important; }
725
+
726
+ .cyan.accent-3 {
727
+ background-color: #00e5ff !important; }
728
+
729
+ .cyan-text.text-accent-3 {
730
+ color: #00e5ff !important; }
731
+
732
+ .cyan.accent-4 {
733
+ background-color: #00b8d4 !important; }
734
+
735
+ .cyan-text.text-accent-4 {
736
+ color: #00b8d4 !important; }
737
+
738
+ .teal.lighten-5 {
739
+ background-color: #e0f2f1 !important; }
740
+
741
+ .teal-text.text-lighten-5 {
742
+ color: #e0f2f1 !important; }
743
+
744
+ .teal.lighten-4 {
745
+ background-color: #b2dfdb !important; }
746
+
747
+ .teal-text.text-lighten-4 {
748
+ color: #b2dfdb !important; }
749
+
750
+ .teal.lighten-3 {
751
+ background-color: #80cbc4 !important; }
752
+
753
+ .teal-text.text-lighten-3 {
754
+ color: #80cbc4 !important; }
755
+
756
+ .teal.lighten-2 {
757
+ background-color: #4db6ac !important; }
758
+
759
+ .teal-text.text-lighten-2 {
760
+ color: #4db6ac !important; }
761
+
762
+ .teal.lighten-1 {
763
+ background-color: #26a69a !important; }
764
+
765
+ .teal-text.text-lighten-1 {
766
+ color: #26a69a !important; }
767
+
768
+ .teal {
769
+ background-color: #009688 !important; }
770
+
771
+ .teal-text {
772
+ color: #009688 !important; }
773
+
774
+ .teal.darken-1 {
775
+ background-color: #00897b !important; }
776
+
777
+ .teal-text.text-darken-1 {
778
+ color: #00897b !important; }
779
+
780
+ .teal.darken-2 {
781
+ background-color: #00796b !important; }
782
+
783
+ .teal-text.text-darken-2 {
784
+ color: #00796b !important; }
785
+
786
+ .teal.darken-3 {
787
+ background-color: #00695c !important; }
788
+
789
+ .teal-text.text-darken-3 {
790
+ color: #00695c !important; }
791
+
792
+ .teal.darken-4 {
793
+ background-color: #004d40 !important; }
794
+
795
+ .teal-text.text-darken-4 {
796
+ color: #004d40 !important; }
797
+
798
+ .teal.accent-1 {
799
+ background-color: #a7ffeb !important; }
800
+
801
+ .teal-text.text-accent-1 {
802
+ color: #a7ffeb !important; }
803
+
804
+ .teal.accent-2 {
805
+ background-color: #64ffda !important; }
806
+
807
+ .teal-text.text-accent-2 {
808
+ color: #64ffda !important; }
809
+
810
+ .teal.accent-3 {
811
+ background-color: #1de9b6 !important; }
812
+
813
+ .teal-text.text-accent-3 {
814
+ color: #1de9b6 !important; }
815
+
816
+ .teal.accent-4 {
817
+ background-color: #00bfa5 !important; }
818
+
819
+ .teal-text.text-accent-4 {
820
+ color: #00bfa5 !important; }
821
+
822
+ .green.lighten-5 {
823
+ background-color: #E8F5E9 !important; }
824
+
825
+ .green-text.text-lighten-5 {
826
+ color: #E8F5E9 !important; }
827
+
828
+ .green.lighten-4 {
829
+ background-color: #C8E6C9 !important; }
830
+
831
+ .green-text.text-lighten-4 {
832
+ color: #C8E6C9 !important; }
833
+
834
+ .green.lighten-3 {
835
+ background-color: #A5D6A7 !important; }
836
+
837
+ .green-text.text-lighten-3 {
838
+ color: #A5D6A7 !important; }
839
+
840
+ .green.lighten-2 {
841
+ background-color: #81C784 !important; }
842
+
843
+ .green-text.text-lighten-2 {
844
+ color: #81C784 !important; }
845
+
846
+ .green.lighten-1 {
847
+ background-color: #66BB6A !important; }
848
+
849
+ .green-text.text-lighten-1 {
850
+ color: #66BB6A !important; }
851
+
852
+ .green {
853
+ background-color: #4CAF50 !important; }
854
+
855
+ .green-text {
856
+ color: #4CAF50 !important; }
857
+
858
+ .green.darken-1 {
859
+ background-color: #43A047 !important; }
860
+
861
+ .green-text.text-darken-1 {
862
+ color: #43A047 !important; }
863
+
864
+ .green.darken-2 {
865
+ background-color: #388E3C !important; }
866
+
867
+ .green-text.text-darken-2 {
868
+ color: #388E3C !important; }
869
+
870
+ .green.darken-3 {
871
+ background-color: #2E7D32 !important; }
872
+
873
+ .green-text.text-darken-3 {
874
+ color: #2E7D32 !important; }
875
+
876
+ .green.darken-4 {
877
+ background-color: #1B5E20 !important; }
878
+
879
+ .green-text.text-darken-4 {
880
+ color: #1B5E20 !important; }
881
+
882
+ .green.accent-1 {
883
+ background-color: #B9F6CA !important; }
884
+
885
+ .green-text.text-accent-1 {
886
+ color: #B9F6CA !important; }
887
+
888
+ .green.accent-2 {
889
+ background-color: #69F0AE !important; }
890
+
891
+ .green-text.text-accent-2 {
892
+ color: #69F0AE !important; }
893
+
894
+ .green.accent-3 {
895
+ background-color: #00E676 !important; }
896
+
897
+ .green-text.text-accent-3 {
898
+ color: #00E676 !important; }
899
+
900
+ .green.accent-4 {
901
+ background-color: #00C853 !important; }
902
+
903
+ .green-text.text-accent-4 {
904
+ color: #00C853 !important; }
905
+
906
+ .light-green.lighten-5 {
907
+ background-color: #f1f8e9 !important; }
908
+
909
+ .light-green-text.text-lighten-5 {
910
+ color: #f1f8e9 !important; }
911
+
912
+ .light-green.lighten-4 {
913
+ background-color: #dcedc8 !important; }
914
+
915
+ .light-green-text.text-lighten-4 {
916
+ color: #dcedc8 !important; }
917
+
918
+ .light-green.lighten-3 {
919
+ background-color: #c5e1a5 !important; }
920
+
921
+ .light-green-text.text-lighten-3 {
922
+ color: #c5e1a5 !important; }
923
+
924
+ .light-green.lighten-2 {
925
+ background-color: #aed581 !important; }
926
+
927
+ .light-green-text.text-lighten-2 {
928
+ color: #aed581 !important; }
929
+
930
+ .light-green.lighten-1 {
931
+ background-color: #9ccc65 !important; }
932
+
933
+ .light-green-text.text-lighten-1 {
934
+ color: #9ccc65 !important; }
935
+
936
+ .light-green {
937
+ background-color: #8bc34a !important; }
938
+
939
+ .light-green-text {
940
+ color: #8bc34a !important; }
941
+
942
+ .light-green.darken-1 {
943
+ background-color: #7cb342 !important; }
944
+
945
+ .light-green-text.text-darken-1 {
946
+ color: #7cb342 !important; }
947
+
948
+ .light-green.darken-2 {
949
+ background-color: #689f38 !important; }
950
+
951
+ .light-green-text.text-darken-2 {
952
+ color: #689f38 !important; }
953
+
954
+ .light-green.darken-3 {
955
+ background-color: #558b2f !important; }
956
+
957
+ .light-green-text.text-darken-3 {
958
+ color: #558b2f !important; }
959
+
960
+ .light-green.darken-4 {
961
+ background-color: #33691e !important; }
962
+
963
+ .light-green-text.text-darken-4 {
964
+ color: #33691e !important; }
965
+
966
+ .light-green.accent-1 {
967
+ background-color: #ccff90 !important; }
968
+
969
+ .light-green-text.text-accent-1 {
970
+ color: #ccff90 !important; }
971
+
972
+ .light-green.accent-2 {
973
+ background-color: #b2ff59 !important; }
974
+
975
+ .light-green-text.text-accent-2 {
976
+ color: #b2ff59 !important; }
977
+
978
+ .light-green.accent-3 {
979
+ background-color: #76ff03 !important; }
980
+
981
+ .light-green-text.text-accent-3 {
982
+ color: #76ff03 !important; }
983
+
984
+ .light-green.accent-4 {
985
+ background-color: #64dd17 !important; }
986
+
987
+ .light-green-text.text-accent-4 {
988
+ color: #64dd17 !important; }
989
+
990
+ .lime.lighten-5 {
991
+ background-color: #f9fbe7 !important; }
992
+
993
+ .lime-text.text-lighten-5 {
994
+ color: #f9fbe7 !important; }
995
+
996
+ .lime.lighten-4 {
997
+ background-color: #f0f4c3 !important; }
998
+
999
+ .lime-text.text-lighten-4 {
1000
+ color: #f0f4c3 !important; }
1001
+
1002
+ .lime.lighten-3 {
1003
+ background-color: #e6ee9c !important; }
1004
+
1005
+ .lime-text.text-lighten-3 {
1006
+ color: #e6ee9c !important; }
1007
+
1008
+ .lime.lighten-2 {
1009
+ background-color: #dce775 !important; }
1010
+
1011
+ .lime-text.text-lighten-2 {
1012
+ color: #dce775 !important; }
1013
+
1014
+ .lime.lighten-1 {
1015
+ background-color: #d4e157 !important; }
1016
+
1017
+ .lime-text.text-lighten-1 {
1018
+ color: #d4e157 !important; }
1019
+
1020
+ .lime {
1021
+ background-color: #cddc39 !important; }
1022
+
1023
+ .lime-text {
1024
+ color: #cddc39 !important; }
1025
+
1026
+ .lime.darken-1 {
1027
+ background-color: #c0ca33 !important; }
1028
+
1029
+ .lime-text.text-darken-1 {
1030
+ color: #c0ca33 !important; }
1031
+
1032
+ .lime.darken-2 {
1033
+ background-color: #afb42b !important; }
1034
+
1035
+ .lime-text.text-darken-2 {
1036
+ color: #afb42b !important; }
1037
+
1038
+ .lime.darken-3 {
1039
+ background-color: #9e9d24 !important; }
1040
+
1041
+ .lime-text.text-darken-3 {
1042
+ color: #9e9d24 !important; }
1043
+
1044
+ .lime.darken-4 {
1045
+ background-color: #827717 !important; }
1046
+
1047
+ .lime-text.text-darken-4 {
1048
+ color: #827717 !important; }
1049
+
1050
+ .lime.accent-1 {
1051
+ background-color: #f4ff81 !important; }
1052
+
1053
+ .lime-text.text-accent-1 {
1054
+ color: #f4ff81 !important; }
1055
+
1056
+ .lime.accent-2 {
1057
+ background-color: #eeff41 !important; }
1058
+
1059
+ .lime-text.text-accent-2 {
1060
+ color: #eeff41 !important; }
1061
+
1062
+ .lime.accent-3 {
1063
+ background-color: #c6ff00 !important; }
1064
+
1065
+ .lime-text.text-accent-3 {
1066
+ color: #c6ff00 !important; }
1067
+
1068
+ .lime.accent-4 {
1069
+ background-color: #aeea00 !important; }
1070
+
1071
+ .lime-text.text-accent-4 {
1072
+ color: #aeea00 !important; }
1073
+
1074
+ .yellow.lighten-5 {
1075
+ background-color: #fffde7 !important; }
1076
+
1077
+ .yellow-text.text-lighten-5 {
1078
+ color: #fffde7 !important; }
1079
+
1080
+ .yellow.lighten-4 {
1081
+ background-color: #fff9c4 !important; }
1082
+
1083
+ .yellow-text.text-lighten-4 {
1084
+ color: #fff9c4 !important; }
1085
+
1086
+ .yellow.lighten-3 {
1087
+ background-color: #fff59d !important; }
1088
+
1089
+ .yellow-text.text-lighten-3 {
1090
+ color: #fff59d !important; }
1091
+
1092
+ .yellow.lighten-2 {
1093
+ background-color: #fff176 !important; }
1094
+
1095
+ .yellow-text.text-lighten-2 {
1096
+ color: #fff176 !important; }
1097
+
1098
+ .yellow.lighten-1 {
1099
+ background-color: #ffee58 !important; }
1100
+
1101
+ .yellow-text.text-lighten-1 {
1102
+ color: #ffee58 !important; }
1103
+
1104
+ .yellow {
1105
+ background-color: #ffeb3b !important; }
1106
+
1107
+ .yellow-text {
1108
+ color: #ffeb3b !important; }
1109
+
1110
+ .yellow.darken-1 {
1111
+ background-color: #fdd835 !important; }
1112
+
1113
+ .yellow-text.text-darken-1 {
1114
+ color: #fdd835 !important; }
1115
+
1116
+ .yellow.darken-2 {
1117
+ background-color: #fbc02d !important; }
1118
+
1119
+ .yellow-text.text-darken-2 {
1120
+ color: #fbc02d !important; }
1121
+
1122
+ .yellow.darken-3 {
1123
+ background-color: #f9a825 !important; }
1124
+
1125
+ .yellow-text.text-darken-3 {
1126
+ color: #f9a825 !important; }
1127
+
1128
+ .yellow.darken-4 {
1129
+ background-color: #f57f17 !important; }
1130
+
1131
+ .yellow-text.text-darken-4 {
1132
+ color: #f57f17 !important; }
1133
+
1134
+ .yellow.accent-1 {
1135
+ background-color: #ffff8d !important; }
1136
+
1137
+ .yellow-text.text-accent-1 {
1138
+ color: #ffff8d !important; }
1139
+
1140
+ .yellow.accent-2 {
1141
+ background-color: #ffff00 !important; }
1142
+
1143
+ .yellow-text.text-accent-2 {
1144
+ color: #ffff00 !important; }
1145
+
1146
+ .yellow.accent-3 {
1147
+ background-color: #ffea00 !important; }
1148
+
1149
+ .yellow-text.text-accent-3 {
1150
+ color: #ffea00 !important; }
1151
+
1152
+ .yellow.accent-4 {
1153
+ background-color: #ffd600 !important; }
1154
+
1155
+ .yellow-text.text-accent-4 {
1156
+ color: #ffd600 !important; }
1157
+
1158
+ .amber.lighten-5 {
1159
+ background-color: #fff8e1 !important; }
1160
+
1161
+ .amber-text.text-lighten-5 {
1162
+ color: #fff8e1 !important; }
1163
+
1164
+ .amber.lighten-4 {
1165
+ background-color: #ffecb3 !important; }
1166
+
1167
+ .amber-text.text-lighten-4 {
1168
+ color: #ffecb3 !important; }
1169
+
1170
+ .amber.lighten-3 {
1171
+ background-color: #ffe082 !important; }
1172
+
1173
+ .amber-text.text-lighten-3 {
1174
+ color: #ffe082 !important; }
1175
+
1176
+ .amber.lighten-2 {
1177
+ background-color: #ffd54f !important; }
1178
+
1179
+ .amber-text.text-lighten-2 {
1180
+ color: #ffd54f !important; }
1181
+
1182
+ .amber.lighten-1 {
1183
+ background-color: #ffca28 !important; }
1184
+
1185
+ .amber-text.text-lighten-1 {
1186
+ color: #ffca28 !important; }
1187
+
1188
+ .amber {
1189
+ background-color: #ffc107 !important; }
1190
+
1191
+ .amber-text {
1192
+ color: #ffc107 !important; }
1193
+
1194
+ .amber.darken-1 {
1195
+ background-color: #ffb300 !important; }
1196
+
1197
+ .amber-text.text-darken-1 {
1198
+ color: #ffb300 !important; }
1199
+
1200
+ .amber.darken-2 {
1201
+ background-color: #ffa000 !important; }
1202
+
1203
+ .amber-text.text-darken-2 {
1204
+ color: #ffa000 !important; }
1205
+
1206
+ .amber.darken-3 {
1207
+ background-color: #ff8f00 !important; }
1208
+
1209
+ .amber-text.text-darken-3 {
1210
+ color: #ff8f00 !important; }
1211
+
1212
+ .amber.darken-4 {
1213
+ background-color: #ff6f00 !important; }
1214
+
1215
+ .amber-text.text-darken-4 {
1216
+ color: #ff6f00 !important; }
1217
+
1218
+ .amber.accent-1 {
1219
+ background-color: #ffe57f !important; }
1220
+
1221
+ .amber-text.text-accent-1 {
1222
+ color: #ffe57f !important; }
1223
+
1224
+ .amber.accent-2 {
1225
+ background-color: #ffd740 !important; }
1226
+
1227
+ .amber-text.text-accent-2 {
1228
+ color: #ffd740 !important; }
1229
+
1230
+ .amber.accent-3 {
1231
+ background-color: #ffc400 !important; }
1232
+
1233
+ .amber-text.text-accent-3 {
1234
+ color: #ffc400 !important; }
1235
+
1236
+ .amber.accent-4 {
1237
+ background-color: #ffab00 !important; }
1238
+
1239
+ .amber-text.text-accent-4 {
1240
+ color: #ffab00 !important; }
1241
+
1242
+ .orange.lighten-5 {
1243
+ background-color: #fff3e0 !important; }
1244
+
1245
+ .orange-text.text-lighten-5 {
1246
+ color: #fff3e0 !important; }
1247
+
1248
+ .orange.lighten-4 {
1249
+ background-color: #ffe0b2 !important; }
1250
+
1251
+ .orange-text.text-lighten-4 {
1252
+ color: #ffe0b2 !important; }
1253
+
1254
+ .orange.lighten-3 {
1255
+ background-color: #ffcc80 !important; }
1256
+
1257
+ .orange-text.text-lighten-3 {
1258
+ color: #ffcc80 !important; }
1259
+
1260
+ .orange.lighten-2 {
1261
+ background-color: #ffb74d !important; }
1262
+
1263
+ .orange-text.text-lighten-2 {
1264
+ color: #ffb74d !important; }
1265
+
1266
+ .orange.lighten-1 {
1267
+ background-color: #ffa726 !important; }
1268
+
1269
+ .orange-text.text-lighten-1 {
1270
+ color: #ffa726 !important; }
1271
+
1272
+ .orange {
1273
+ background-color: #ff9800 !important; }
1274
+
1275
+ .orange-text {
1276
+ color: #ff9800 !important; }
1277
+
1278
+ .orange.darken-1 {
1279
+ background-color: #fb8c00 !important; }
1280
+
1281
+ .orange-text.text-darken-1 {
1282
+ color: #fb8c00 !important; }
1283
+
1284
+ .orange.darken-2 {
1285
+ background-color: #f57c00 !important; }
1286
+
1287
+ .orange-text.text-darken-2 {
1288
+ color: #f57c00 !important; }
1289
+
1290
+ .orange.darken-3 {
1291
+ background-color: #ef6c00 !important; }
1292
+
1293
+ .orange-text.text-darken-3 {
1294
+ color: #ef6c00 !important; }
1295
+
1296
+ .orange.darken-4 {
1297
+ background-color: #e65100 !important; }
1298
+
1299
+ .orange-text.text-darken-4 {
1300
+ color: #e65100 !important; }
1301
+
1302
+ .orange.accent-1 {
1303
+ background-color: #ffd180 !important; }
1304
+
1305
+ .orange-text.text-accent-1 {
1306
+ color: #ffd180 !important; }
1307
+
1308
+ .orange.accent-2 {
1309
+ background-color: #ffab40 !important; }
1310
+
1311
+ .orange-text.text-accent-2 {
1312
+ color: #ffab40 !important; }
1313
+
1314
+ .orange.accent-3 {
1315
+ background-color: #ff9100 !important; }
1316
+
1317
+ .orange-text.text-accent-3 {
1318
+ color: #ff9100 !important; }
1319
+
1320
+ .orange.accent-4 {
1321
+ background-color: #ff6d00 !important; }
1322
+
1323
+ .orange-text.text-accent-4 {
1324
+ color: #ff6d00 !important; }
1325
+
1326
+ .deep-orange.lighten-5 {
1327
+ background-color: #fbe9e7 !important; }
1328
+
1329
+ .deep-orange-text.text-lighten-5 {
1330
+ color: #fbe9e7 !important; }
1331
+
1332
+ .deep-orange.lighten-4 {
1333
+ background-color: #ffccbc !important; }
1334
+
1335
+ .deep-orange-text.text-lighten-4 {
1336
+ color: #ffccbc !important; }
1337
+
1338
+ .deep-orange.lighten-3 {
1339
+ background-color: #ffab91 !important; }
1340
+
1341
+ .deep-orange-text.text-lighten-3 {
1342
+ color: #ffab91 !important; }
1343
+
1344
+ .deep-orange.lighten-2 {
1345
+ background-color: #ff8a65 !important; }
1346
+
1347
+ .deep-orange-text.text-lighten-2 {
1348
+ color: #ff8a65 !important; }
1349
+
1350
+ .deep-orange.lighten-1 {
1351
+ background-color: #ff7043 !important; }
1352
+
1353
+ .deep-orange-text.text-lighten-1 {
1354
+ color: #ff7043 !important; }
1355
+
1356
+ .deep-orange {
1357
+ background-color: #ff5722 !important; }
1358
+
1359
+ .deep-orange-text {
1360
+ color: #ff5722 !important; }
1361
+
1362
+ .deep-orange.darken-1 {
1363
+ background-color: #f4511e !important; }
1364
+
1365
+ .deep-orange-text.text-darken-1 {
1366
+ color: #f4511e !important; }
1367
+
1368
+ .deep-orange.darken-2 {
1369
+ background-color: #e64a19 !important; }
1370
+
1371
+ .deep-orange-text.text-darken-2 {
1372
+ color: #e64a19 !important; }
1373
+
1374
+ .deep-orange.darken-3 {
1375
+ background-color: #d84315 !important; }
1376
+
1377
+ .deep-orange-text.text-darken-3 {
1378
+ color: #d84315 !important; }
1379
+
1380
+ .deep-orange.darken-4 {
1381
+ background-color: #bf360c !important; }
1382
+
1383
+ .deep-orange-text.text-darken-4 {
1384
+ color: #bf360c !important; }
1385
+
1386
+ .deep-orange.accent-1 {
1387
+ background-color: #ff9e80 !important; }
1388
+
1389
+ .deep-orange-text.text-accent-1 {
1390
+ color: #ff9e80 !important; }
1391
+
1392
+ .deep-orange.accent-2 {
1393
+ background-color: #ff6e40 !important; }
1394
+
1395
+ .deep-orange-text.text-accent-2 {
1396
+ color: #ff6e40 !important; }
1397
+
1398
+ .deep-orange.accent-3 {
1399
+ background-color: #ff3d00 !important; }
1400
+
1401
+ .deep-orange-text.text-accent-3 {
1402
+ color: #ff3d00 !important; }
1403
+
1404
+ .deep-orange.accent-4 {
1405
+ background-color: #dd2c00 !important; }
1406
+
1407
+ .deep-orange-text.text-accent-4 {
1408
+ color: #dd2c00 !important; }
1409
+
1410
+ .brown.lighten-5 {
1411
+ background-color: #efebe9 !important; }
1412
+
1413
+ .brown-text.text-lighten-5 {
1414
+ color: #efebe9 !important; }
1415
+
1416
+ .brown.lighten-4 {
1417
+ background-color: #d7ccc8 !important; }
1418
+
1419
+ .brown-text.text-lighten-4 {
1420
+ color: #d7ccc8 !important; }
1421
+
1422
+ .brown.lighten-3 {
1423
+ background-color: #bcaaa4 !important; }
1424
+
1425
+ .brown-text.text-lighten-3 {
1426
+ color: #bcaaa4 !important; }
1427
+
1428
+ .brown.lighten-2 {
1429
+ background-color: #a1887f !important; }
1430
+
1431
+ .brown-text.text-lighten-2 {
1432
+ color: #a1887f !important; }
1433
+
1434
+ .brown.lighten-1 {
1435
+ background-color: #8d6e63 !important; }
1436
+
1437
+ .brown-text.text-lighten-1 {
1438
+ color: #8d6e63 !important; }
1439
+
1440
+ .brown {
1441
+ background-color: #795548 !important; }
1442
+
1443
+ .brown-text {
1444
+ color: #795548 !important; }
1445
+
1446
+ .brown.darken-1 {
1447
+ background-color: #6d4c41 !important; }
1448
+
1449
+ .brown-text.text-darken-1 {
1450
+ color: #6d4c41 !important; }
1451
+
1452
+ .brown.darken-2 {
1453
+ background-color: #5d4037 !important; }
1454
+
1455
+ .brown-text.text-darken-2 {
1456
+ color: #5d4037 !important; }
1457
+
1458
+ .brown.darken-3 {
1459
+ background-color: #4e342e !important; }
1460
+
1461
+ .brown-text.text-darken-3 {
1462
+ color: #4e342e !important; }
1463
+
1464
+ .brown.darken-4 {
1465
+ background-color: #3e2723 !important; }
1466
+
1467
+ .brown-text.text-darken-4 {
1468
+ color: #3e2723 !important; }
1469
+
1470
+ .blue-grey.lighten-5 {
1471
+ background-color: #eceff1 !important; }
1472
+
1473
+ .blue-grey-text.text-lighten-5 {
1474
+ color: #eceff1 !important; }
1475
+
1476
+ .blue-grey.lighten-4 {
1477
+ background-color: #cfd8dc !important; }
1478
+
1479
+ .blue-grey-text.text-lighten-4 {
1480
+ color: #cfd8dc !important; }
1481
+
1482
+ .blue-grey.lighten-3 {
1483
+ background-color: #b0bec5 !important; }
1484
+
1485
+ .blue-grey-text.text-lighten-3 {
1486
+ color: #b0bec5 !important; }
1487
+
1488
+ .blue-grey.lighten-2 {
1489
+ background-color: #90a4ae !important; }
1490
+
1491
+ .blue-grey-text.text-lighten-2 {
1492
+ color: #90a4ae !important; }
1493
+
1494
+ .blue-grey.lighten-1 {
1495
+ background-color: #78909c !important; }
1496
+
1497
+ .blue-grey-text.text-lighten-1 {
1498
+ color: #78909c !important; }
1499
+
1500
+ .blue-grey {
1501
+ background-color: #607d8b !important; }
1502
+
1503
+ .blue-grey-text {
1504
+ color: #607d8b !important; }
1505
+
1506
+ .blue-grey.darken-1 {
1507
+ background-color: #546e7a !important; }
1508
+
1509
+ .blue-grey-text.text-darken-1 {
1510
+ color: #546e7a !important; }
1511
+
1512
+ .blue-grey.darken-2 {
1513
+ background-color: #455a64 !important; }
1514
+
1515
+ .blue-grey-text.text-darken-2 {
1516
+ color: #455a64 !important; }
1517
+
1518
+ .blue-grey.darken-3 {
1519
+ background-color: #37474f !important; }
1520
+
1521
+ .blue-grey-text.text-darken-3 {
1522
+ color: #37474f !important; }
1523
+
1524
+ .blue-grey.darken-4 {
1525
+ background-color: #263238 !important; }
1526
+
1527
+ .blue-grey-text.text-darken-4 {
1528
+ color: #263238 !important; }
1529
+
1530
+ .grey.lighten-5 {
1531
+ background-color: #fafafa !important; }
1532
+
1533
+ .grey-text.text-lighten-5 {
1534
+ color: #fafafa !important; }
1535
+
1536
+ .grey.lighten-4 {
1537
+ background-color: #f5f5f5 !important; }
1538
+
1539
+ .grey-text.text-lighten-4 {
1540
+ color: #f5f5f5 !important; }
1541
+
1542
+ .grey.lighten-3 {
1543
+ background-color: #eeeeee !important; }
1544
+
1545
+ .grey-text.text-lighten-3 {
1546
+ color: #eeeeee !important; }
1547
+
1548
+ .grey.lighten-2 {
1549
+ background-color: #e0e0e0 !important; }
1550
+
1551
+ .grey-text.text-lighten-2 {
1552
+ color: #e0e0e0 !important; }
1553
+
1554
+ .grey.lighten-1 {
1555
+ background-color: #bdbdbd !important; }
1556
+
1557
+ .grey-text.text-lighten-1 {
1558
+ color: #bdbdbd !important; }
1559
+
1560
+ .grey {
1561
+ background-color: #9e9e9e !important; }
1562
+
1563
+ .grey-text {
1564
+ color: #9e9e9e !important; }
1565
+
1566
+ .grey.darken-1 {
1567
+ background-color: #757575 !important; }
1568
+
1569
+ .grey-text.text-darken-1 {
1570
+ color: #757575 !important; }
1571
+
1572
+ .grey.darken-2 {
1573
+ background-color: #616161 !important; }
1574
+
1575
+ .grey-text.text-darken-2 {
1576
+ color: #616161 !important; }
1577
+
1578
+ .grey.darken-3 {
1579
+ background-color: #424242 !important; }
1580
+
1581
+ .grey-text.text-darken-3 {
1582
+ color: #424242 !important; }
1583
+
1584
+ .grey.darken-4 {
1585
+ background-color: #212121 !important; }
1586
+
1587
+ .grey-text.text-darken-4 {
1588
+ color: #212121 !important; }
1589
+
1590
+ .shades.black {
1591
+ background-color: #000000 !important; }
1592
+
1593
+ .shades-text.text-black {
1594
+ color: #000000 !important; }
1595
+
1596
+ .shades.white {
1597
+ background-color: #FFFFFF !important; }
1598
+
1599
+ .shades-text.text-white {
1600
+ color: #FFFFFF !important; }
1601
+
1602
+ .black {
1603
+ background-color: #000000 !important; }
1604
+
1605
+ .black-text {
1606
+ color: #000000 !important; }
1607
+
1608
+ .white {
1609
+ background-color: #FFFFFF !important; }
1610
+
1611
+ .white-text {
1612
+ color: #FFFFFF !important; }
1613
+
1614
+ /*** Colors ***/
1615
+ /*** Badges ***/
1616
+ /*** Buttons ***/
1617
+ /*** Cards ***/
1618
+ /*** Collapsible ***/
1619
+ /*** Dropdown ***/
1620
+ /*** Fonts ***/
1621
+ /*** Forms ***/
1622
+ /*** Global ***/
1623
+ /*** Navbar ***/
1624
+ /*** SideNav ***/
1625
+ /*** Tabs ***/
1626
+ /*** Tables ***/
1627
+ /*** Toasts ***/
1628
+ /*** Typography ***/
1629
+ /*** Collections ***/
1630
+ /* Progress Bar */
1631
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
1632
+ /**
1633
+ * 1. Set default font family to sans-serif.
1634
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
1635
+ * user zoom.
1636
+ */
1637
+ html {
1638
+ font-family: sans-serif;
1639
+ /* 1 */
1640
+ -ms-text-size-adjust: 100%;
1641
+ /* 2 */
1642
+ -webkit-text-size-adjust: 100%;
1643
+ /* 2 */ }
1644
+
1645
+ /**
1646
+ * Remove default margin.
1647
+ */
1648
+ body {
1649
+ margin: 0;
1650
+ width:80%; }
1651
+
1652
+ /* HTML5 display definitions
1653
+ ========================================================================== */
1654
+ /**
1655
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
1656
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
1657
+ * and Firefox.
1658
+ * Correct `block` display not defined for `main` in IE 11.
1659
+ */
1660
+ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
1661
+ display: block; }
1662
+
1663
+ /**
1664
+ * 1. Correct `inline-block` display not defined in IE 8/9.
1665
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
1666
+ */
1667
+ audio, canvas, progress, video {
1668
+ display: inline-block;
1669
+ /* 1 */
1670
+ vertical-align: baseline;
1671
+ /* 2 */ }
1672
+
1673
+ /**
1674
+ * Prevent modern browsers from displaying `audio` without controls.
1675
+ * Remove excess height in iOS 5 devices.
1676
+ */
1677
+ audio:not([controls]) {
1678
+ display: none;
1679
+ height: 0; }
1680
+
1681
+ /**
1682
+ * Address `[hidden]` styling not present in IE 8/9/10.
1683
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
1684
+ */
1685
+ [hidden], template {
1686
+ display: none; }
1687
+
1688
+ /* Links
1689
+ ========================================================================== */
1690
+ /**
1691
+ * Remove the gray background color from active links in IE 10.
1692
+ */
1693
+ a {
1694
+ background-color: transparent; }
1695
+
1696
+ /**
1697
+ * Improve readability when focused and also mouse hovered in all browsers.
1698
+ */
1699
+ a:active, a:hover {
1700
+ outline: 0; }
1701
+
1702
+ /* Text-level semantics
1703
+ ========================================================================== */
1704
+ /**
1705
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
1706
+ */
1707
+ abbr[title] {
1708
+ border-bottom: 1px dotted; }
1709
+
1710
+ /**
1711
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
1712
+ */
1713
+ b, strong {
1714
+ font-weight: bold; }
1715
+
1716
+ /**
1717
+ * Address styling not present in Safari and Chrome.
1718
+ */
1719
+ dfn {
1720
+ font-style: italic; }
1721
+
1722
+ /**
1723
+ * Address variable `h1` font-size and margin within `section` and `article`
1724
+ * contexts in Firefox 4+, Safari, and Chrome.
1725
+ */
1726
+ h1 {
1727
+ font-size: 2em;
1728
+ margin: 0.67em 0; }
1729
+
1730
+ /**
1731
+ * Address styling not present in IE 8/9.
1732
+ */
1733
+ mark {
1734
+ background: #ff0;
1735
+ color: #000; }
1736
+
1737
+ /**
1738
+ * Address inconsistent and variable font size in all browsers.
1739
+ */
1740
+ small {
1741
+ font-size: 80%; }
1742
+
1743
+ /**
1744
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
1745
+ */
1746
+ sub, sup {
1747
+ font-size: 75%;
1748
+ line-height: 0;
1749
+ position: relative;
1750
+ vertical-align: baseline; }
1751
+
1752
+ sup {
1753
+ top: -0.5em; }
1754
+
1755
+ sub {
1756
+ bottom: -0.25em; }
1757
+
1758
+ /* Embedded content
1759
+ ========================================================================== */
1760
+ /**
1761
+ * Remove border when inside `a` element in IE 8/9/10.
1762
+ */
1763
+ img {
1764
+ border: 0; }
1765
+
1766
+ /**
1767
+ * Correct overflow not hidden in IE 9/10/11.
1768
+ */
1769
+ svg:not(:root) {
1770
+ overflow: hidden; }
1771
+
1772
+ /* Grouping content
1773
+ ========================================================================== */
1774
+ /**
1775
+ * Address margin not present in IE 8/9 and Safari.
1776
+ */
1777
+ figure {
1778
+ margin: 1em 40px; }
1779
+
1780
+ /**
1781
+ * Address differences between Firefox and other browsers.
1782
+ */
1783
+ hr {
1784
+ -moz-box-sizing: content-box;
1785
+ box-sizing: content-box;
1786
+ height: 0; }
1787
+
1788
+ /**
1789
+ * Contain overflow in all browsers.
1790
+ */
1791
+ pre {
1792
+ overflow: auto; }
1793
+
1794
+ /**
1795
+ * Address odd `em`-unit font size rendering in all browsers.
1796
+ */
1797
+ code, kbd, pre, samp {
1798
+ font-family: monospace, monospace;
1799
+ font-size: 1em; }
1800
+
1801
+ /* Forms
1802
+ ========================================================================== */
1803
+ /**
1804
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
1805
+ * styling of `select`, unless a `border` property is set.
1806
+ */
1807
+ /**
1808
+ * 1. Correct color not being inherited.
1809
+ * Known issue: affects color of disabled elements.
1810
+ * 2. Correct font properties not being inherited.
1811
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
1812
+ */
1813
+ button, input, optgroup, select, textarea {
1814
+ color: inherit;
1815
+ /* 1 */
1816
+ font: inherit;
1817
+ /* 2 */
1818
+ margin: 0;
1819
+ /* 3 */ }
1820
+
1821
+ /**
1822
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
1823
+ */
1824
+ button {
1825
+ overflow: visible; }
1826
+
1827
+ /**
1828
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
1829
+ * All other form control elements do not inherit `text-transform` values.
1830
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
1831
+ * Correct `select` style inheritance in Firefox.
1832
+ */
1833
+ button, select {
1834
+ text-transform: none; }
1835
+
1836
+ /**
1837
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
1838
+ * and `video` controls.
1839
+ * 2. Correct inability to style clickable `input` types in iOS.
1840
+ * 3. Improve usability and consistency of cursor style between image-type
1841
+ * `input` and others.
1842
+ */
1843
+ button, html input[type="button"], input[type="reset"], input[type="submit"] {
1844
+ -webkit-appearance: button;
1845
+ /* 2 */
1846
+ cursor: pointer;
1847
+ /* 3 */ }
1848
+
1849
+ /**
1850
+ * Re-set default cursor for disabled elements.
1851
+ */
1852
+ button[disabled], html input[disabled] {
1853
+ cursor: default; }
1854
+
1855
+ /**
1856
+ * Remove inner padding and border in Firefox 4+.
1857
+ */
1858
+ button::-moz-focus-inner, input::-moz-focus-inner {
1859
+ border: 0;
1860
+ padding: 0; }
1861
+
1862
+ /**
1863
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
1864
+ * the UA stylesheet.
1865
+ */
1866
+ input {
1867
+ line-height: normal; }
1868
+
1869
+ /**
1870
+ * It's recommended that you don't attempt to style these elements.
1871
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
1872
+ *
1873
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
1874
+ * 2. Remove excess padding in IE 8/9/10.
1875
+ */
1876
+ input[type="checkbox"], input[type="radio"] {
1877
+ box-sizing: border-box;
1878
+ /* 1 */
1879
+ padding: 0;
1880
+ /* 2 */ }
1881
+
1882
+ /**
1883
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
1884
+ * `font-size` values of the `input`, it causes the cursor style of the
1885
+ * decrement button to change from `default` to `text`.
1886
+ */
1887
+ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
1888
+ height: auto; }
1889
+
1890
+ /**
1891
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
1892
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
1893
+ * (include `-moz` to future-proof).
1894
+ */
1895
+ input[type="search"] {
1896
+ -webkit-appearance: textfield;
1897
+ /* 1 */
1898
+ -moz-box-sizing: content-box;
1899
+ -webkit-box-sizing: content-box;
1900
+ /* 2 */
1901
+ box-sizing: content-box; }
1902
+
1903
+ /**
1904
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
1905
+ * Safari (but not Chrome) clips the cancel button when the search input has
1906
+ * padding (and `textfield` appearance).
1907
+ */
1908
+ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
1909
+ -webkit-appearance: none; }
1910
+
1911
+ /**
1912
+ * Define consistent border, margin, and padding.
1913
+ */
1914
+ fieldset {
1915
+ border: 1px solid #c0c0c0;
1916
+ margin: 0 2px;
1917
+ padding: 0.35em 0.625em 0.75em; }
1918
+
1919
+ /**
1920
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
1921
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
1922
+ */
1923
+ legend {
1924
+ border: 0;
1925
+ /* 1 */
1926
+ padding: 0;
1927
+ /* 2 */ }
1928
+
1929
+ /**
1930
+ * Remove default vertical scrollbar in IE 8/9/10/11.
1931
+ */
1932
+ textarea {
1933
+ overflow: auto; }
1934
+
1935
+ /**
1936
+ * Don't inherit the `font-weight` (applied by a rule above).
1937
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
1938
+ */
1939
+ optgroup {
1940
+ font-weight: bold; }
1941
+
1942
+ /* Tables
1943
+ ========================================================================== */
1944
+ /**
1945
+ * Remove most spacing between table cells.
1946
+ */
1947
+ table {
1948
+ border-collapse: collapse;
1949
+ border-spacing: 0; }
1950
+
1951
+ td, th {
1952
+ padding: 0; }
1953
+
1954
+ html {
1955
+ box-sizing: border-box; }
1956
+
1957
+ *, *:before, *:after {
1958
+ box-sizing: inherit; }
1959
+
1960
+ ul {
1961
+ list-style-type: none; }
1962
+
1963
+ a {
1964
+ color: #039be5;
1965
+ text-decoration: none;
1966
+ -webkit-tap-highlight-color: transparent; }
1967
+
1968
+ .valign-wrapper {
1969
+ display: -webkit-box;
1970
+ display: -moz-box;
1971
+ display: -ms-flexbox;
1972
+ display: -webkit-flex;
1973
+ display: flex;
1974
+ -webkit-flex-align: center;
1975
+ -ms-flex-align: center;
1976
+ -webkit-align-items: center;
1977
+ align-items: center; }
1978
+ .valign-wrapper .valign {
1979
+ display: block; }
1980
+
1981
+ ul {
1982
+ padding: 0; }
1983
+ ul li {
1984
+ list-style-type: none; }
1985
+
1986
+ .clearfix {
1987
+ clear: both; }
1988
+
1989
+ .z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, ul.side-nav {
1990
+ -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
1991
+ -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
1992
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
1993
+
1994
+ .z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover {
1995
+ -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
1996
+ -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
1997
+ box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
1998
+
1999
+ .z-depth-2 {
2000
+ -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2001
+ -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2002
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
2003
+
2004
+ .z-depth-3 {
2005
+ -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
2006
+ -moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
2007
+ box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }
2008
+
2009
+ .z-depth-4, .modal {
2010
+ -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
2011
+ -moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
2012
+ box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); }
2013
+
2014
+ .z-depth-5 {
2015
+ -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
2016
+ -moz-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
2017
+ box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); }
2018
+
2019
+ .divider {
2020
+ height: 1px;
2021
+ overflow: hidden;
2022
+ background-color: #e0e0e0; }
2023
+
2024
+ blockquote {
2025
+ margin: 20px 0;
2026
+ padding-left: 1.5rem;
2027
+ border-left: 5px solid #EF9A9A; }
2028
+
2029
+ i {
2030
+ line-height: inherit; }
2031
+ i.left {
2032
+ float: left;
2033
+ margin-right: 15px; }
2034
+ i.right {
2035
+ float: right;
2036
+ margin-left: 15px; }
2037
+ i.tiny {
2038
+ font-size: 1rem; }
2039
+ i.small {
2040
+ font-size: 2rem; }
2041
+ i.medium {
2042
+ font-size: 4rem; }
2043
+ i.large {
2044
+ font-size: 6rem; }
2045
+
2046
+ img.responsive-img, video.responsive-video {
2047
+ max-width: 100%;
2048
+ height: auto; }
2049
+
2050
+ .pagination li {
2051
+ font-size: 1.2rem;
2052
+ float: left;
2053
+ width: 30px;
2054
+ height: 30px;
2055
+ margin: 0 10px;
2056
+ -webkit-border-radius: 2px;
2057
+ -moz-border-radius: 2px;
2058
+ border-radius: 2px;
2059
+ background-clip: padding-box;
2060
+ text-align: center; }
2061
+ .pagination li a {
2062
+ color: #444; }
2063
+ .pagination li.active a {
2064
+ color: #fff; }
2065
+ .pagination li.active {
2066
+ background-color: #ee6e73; }
2067
+ .pagination li.disabled a {
2068
+ color: #999; }
2069
+ .pagination li i {
2070
+ font-size: 2rem;
2071
+ line-height: 1.8rem; }
2072
+
2073
+ .parallax-container {
2074
+ position: relative;
2075
+ overflow: hidden;
2076
+ height: 500px; }
2077
+
2078
+ .parallax {
2079
+ position: absolute;
2080
+ top: 0;
2081
+ left: 0;
2082
+ right: 0;
2083
+ bottom: 0;
2084
+ z-index: -1; }
2085
+ .parallax img {
2086
+ display: none;
2087
+ position: absolute;
2088
+ bottom: 0;
2089
+ width: 100%;
2090
+ min-height: 100%;
2091
+ background-position: center; }
2092
+
2093
+ .pin-top, .pin-bottom {
2094
+ position: relative; }
2095
+
2096
+ .pinned {
2097
+ position: fixed !important; }
2098
+
2099
+ /*********************
2100
+ Transition Classes
2101
+ **********************/
2102
+ ul.staggered-list li {
2103
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
2104
+ filter: "alpha(opacity=(${iefactor}))";
2105
+ -moz-opacity: 0;
2106
+ -khtml-opacity: 0;
2107
+ opacity: 0; }
2108
+
2109
+ .fade-in {
2110
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
2111
+ filter: "alpha(opacity=(${iefactor}))";
2112
+ -moz-opacity: 0;
2113
+ -khtml-opacity: 0;
2114
+ opacity: 0;
2115
+ transform-origin: 0 50%; }
2116
+
2117
+ /*********************
2118
+ Media Query Classes
2119
+ **********************/
2120
+ @media only screen and (max-width : 600px) {
2121
+ .hide-on-small-only, .hide-on-small-and-down {
2122
+ display: none !important; } }
2123
+
2124
+ @media only screen and (max-width : 992px) {
2125
+ .hide-on-med-and-down {
2126
+ display: none !important; } }
2127
+
2128
+ @media only screen and (min-width : 601px) {
2129
+ .hide-on-med-and-up {
2130
+ display: none !important; } }
2131
+
2132
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
2133
+ .hide-on-med-only {
2134
+ display: none !important; } }
2135
+
2136
+ @media only screen and (min-width : 993px) {
2137
+ .hide-on-large-only {
2138
+ display: none !important; } }
2139
+
2140
+ @media only screen and (min-width : 993px) {
2141
+ .show-on-large {
2142
+ display: initial !important; } }
2143
+
2144
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
2145
+ .show-on-medium {
2146
+ display: initial !important; } }
2147
+
2148
+ @media only screen and (max-width : 600px) {
2149
+ .show-on-small {
2150
+ display: initial !important; } }
2151
+
2152
+ @media only screen and (min-width : 601px) {
2153
+ .show-on-medium-and-up {
2154
+ display: initial !important; } }
2155
+
2156
+ @media only screen and (max-width : 992px) {
2157
+ .show-on-medium-and-down {
2158
+ display: initial !important; } }
2159
+
2160
+ @media only screen and (max-width : 600px) {
2161
+ .center-on-small-only {
2162
+ text-align: center; } }
2163
+
2164
+ footer.page-footer {
2165
+ margin-top: 20px;
2166
+ padding-top: 20px;
2167
+ background-color: #ee6e73; }
2168
+ footer.page-footer .footer-copyright {
2169
+ overflow: hidden;
2170
+ height: 50px;
2171
+ line-height: 50px;
2172
+ color: rgba(255, 255, 255, 0.8);
2173
+ background-color: rgba(51, 51, 51, 0.08); }
2174
+
2175
+ table, th, td {
2176
+ border: none; }
2177
+
2178
+ table {
2179
+ width: 100%;
2180
+ display: table; }
2181
+ table.bordered tr {
2182
+ border-bottom: 1px solid #d0d0d0; }
2183
+ table.striped tbody tr:nth-child(odd) {
2184
+ background-color: #f2f2f2; }
2185
+ table.hoverable tbody tr {
2186
+ -webkit-transition: background-color 0.25s ease;
2187
+ -moz-transition: background-color 0.25s ease;
2188
+ -o-transition: background-color 0.25s ease;
2189
+ -ms-transition: background-color 0.25s ease;
2190
+ transition: background-color 0.25s ease; }
2191
+ table.hoverable tbody tr:hover {
2192
+ background-color: #f2f2f2; }
2193
+ table.centered thead tr th, table.centered tbody tr td {
2194
+ text-align: center; }
2195
+
2196
+ thead {
2197
+ border-bottom: 1px solid #d0d0d0; }
2198
+
2199
+ td, th {
2200
+ padding: 15px 5px;
2201
+ display: table-cell;
2202
+ text-align: left;
2203
+ vertical-align: middle;
2204
+ -webkit-border-radius: 2px;
2205
+ -moz-border-radius: 2px;
2206
+ border-radius: 2px;
2207
+ background-clip: padding-box; }
2208
+
2209
+ @media only screen and (max-width : 992px) {
2210
+ table.responsive-table {
2211
+ width: 100%;
2212
+ border-collapse: collapse;
2213
+ border-spacing: 0;
2214
+ display: block;
2215
+ position: relative;
2216
+ /* sort out borders */ }
2217
+ table.responsive-table th, table.responsive-table td {
2218
+ margin: 0;
2219
+ vertical-align: top; }
2220
+ table.responsive-table th {
2221
+ text-align: left; }
2222
+ table.responsive-table thead {
2223
+ display: block;
2224
+ float: left; }
2225
+ table.responsive-table thead tr {
2226
+ display: block;
2227
+ padding: 0 10px 0 0; }
2228
+ table.responsive-table tbody {
2229
+ display: block;
2230
+ width: auto;
2231
+ position: relative;
2232
+ overflow-x: auto;
2233
+ white-space: nowrap; }
2234
+ table.responsive-table tbody tr {
2235
+ display: inline-block;
2236
+ vertical-align: top; }
2237
+ table.responsive-table th {
2238
+ display: block;
2239
+ text-align: right; }
2240
+ table.responsive-table td {
2241
+ display: block;
2242
+ min-height: 1.25em;
2243
+ text-align: left; }
2244
+ table.responsive-table tr {
2245
+ padding: 0 10px; }
2246
+ table.responsive-table thead {
2247
+ border: 0;
2248
+ border-right: 1px solid #d0d0d0; }
2249
+ table.responsive-table.bordered th {
2250
+ border-bottom: 0;
2251
+ border-left: 0; }
2252
+ table.responsive-table.bordered td {
2253
+ border-left: 0;
2254
+ border-right: 0;
2255
+ border-bottom: 0; }
2256
+ table.responsive-table.bordered tr {
2257
+ border: 0; }
2258
+ table.responsive-table.bordered tbody tr {
2259
+ border-right: 1px solid #d0d0d0; }
2260
+ }
2261
+
2262
+ .collection {
2263
+ background-color: #999;
2264
+ margin: 0.5rem 0 1rem 0;
2265
+ border: 1px solid #e0e0e0;
2266
+ -webkit-border-radius: 2px;
2267
+ -moz-border-radius: 2px;
2268
+ border-radius: 2px;
2269
+ background-clip: padding-box;
2270
+ overflow: hidden; }
2271
+ .collection .collection-item {
2272
+ background-color: #fff;
2273
+ line-height: 1.5rem;
2274
+ padding: 10px 20px;
2275
+ margin: 0px;
2276
+ border-bottom: 1px solid #e0e0e0; }
2277
+ .collection .collection-item.avatar {
2278
+ height: 84px;
2279
+ padding-left: 72px;
2280
+ position: relative; }
2281
+ .collection .collection-item.avatar .circle {
2282
+ position: absolute;
2283
+ width: 42px;
2284
+ height: 42px;
2285
+ overflow: hidden;
2286
+ left: 15px;
2287
+ display: inline-block;
2288
+ vertical-align: middle; }
2289
+ .collection .collection-item.avatar i.circle {
2290
+ font-size: 18px;
2291
+ line-height: 42px;
2292
+ color: #fff;
2293
+ background-color: #999;
2294
+ text-align: center; }
2295
+ .collection .collection-item.avatar .title {
2296
+ font-size: 16px; }
2297
+ .collection .collection-item.avatar p {
2298
+ margin: 0; }
2299
+ .collection .collection-item.avatar .secondary-content {
2300
+ position: absolute;
2301
+ top: 16px;
2302
+ right: 16px; }
2303
+ .collection .collection-item:last-child {
2304
+ border-bottom: none; }
2305
+ .collection .collection-item.active {
2306
+ background-color: #26a69a;
2307
+ color: #eafaf9; }
2308
+ .collection a.collection-item {
2309
+ display: block;
2310
+ -webkit-transition: 0.25s;
2311
+ -moz-transition: 0.25s;
2312
+ -o-transition: 0.25s;
2313
+ -ms-transition: 0.25s;
2314
+ transition: 0.25s;
2315
+ color: #26a69a; }
2316
+ .collection a.collection-item:not(.active):hover {
2317
+ background-color: #ddd; }
2318
+ .collection.with-header .collection-header {
2319
+ background-color: #fff;
2320
+ border-bottom: 1px solid #e0e0e0;
2321
+ padding: 10px 20px; }
2322
+ .collection.with-header .collection-item {
2323
+ padding-left: 30px; }
2324
+
2325
+ .secondary-content {
2326
+ float: right;
2327
+ color: #26a69a; }
2328
+
2329
+ span.badge {
2330
+ min-width: 3rem;
2331
+ padding: 0 6px;
2332
+ text-align: center;
2333
+ font-size: 1rem;
2334
+ line-height: inherit;
2335
+ color: #757575;
2336
+ float: right;
2337
+ -webkit-box-sizing: border-box;
2338
+ -moz-box-sizing: border-box;
2339
+ box-sizing: border-box; }
2340
+ span.badge.new {
2341
+ font-weight: 300;
2342
+ font-size: 0.8rem;
2343
+ color: #fff;
2344
+ background-color: #26a69a;
2345
+ -webkit-border-radius: 2px;
2346
+ -moz-border-radius: 2px;
2347
+ border-radius: 2px;
2348
+ background-clip: padding-box; }
2349
+ span.badge.new:after {
2350
+ content: " new"; }
2351
+
2352
+ .video-container {
2353
+ position: relative;
2354
+ padding-bottom: 56.25%;
2355
+ padding-top: 30px;
2356
+ height: 0;
2357
+ overflow: hidden; }
2358
+ .video-container iframe, .video-container object, .video-container embed {
2359
+ position: absolute;
2360
+ top: 0;
2361
+ left: 0;
2362
+ width: 100%;
2363
+ height: 100%; }
2364
+
2365
+ .progress {
2366
+ position: relative;
2367
+ height: 4px;
2368
+ display: block;
2369
+ width: 100%;
2370
+ background-color: #acece6;
2371
+ -webkit-border-radius: 2px;
2372
+ -moz-border-radius: 2px;
2373
+ border-radius: 2px;
2374
+ background-clip: padding-box;
2375
+ margin: 0.5rem 0 1rem 0;
2376
+ overflow: hidden; }
2377
+ .progress .determinate {
2378
+ position: absolute;
2379
+ background-color: inherit;
2380
+ top: 0;
2381
+ bottom: 0;
2382
+ background-color: #26a69a;
2383
+ -webkit-transition: width 0.3s linear;
2384
+ -moz-transition: width 0.3s linear;
2385
+ -o-transition: width 0.3s linear;
2386
+ -ms-transition: width 0.3s linear;
2387
+ transition: width 0.3s linear; }
2388
+ .progress .indeterminate {
2389
+ background-color: #26a69a; }
2390
+ .progress .indeterminate:before {
2391
+ content: '';
2392
+ position: absolute;
2393
+ background-color: inherit;
2394
+ top: 0;
2395
+ left: 0;
2396
+ bottom: 0;
2397
+ will-change: left, right;
2398
+ -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2399
+ -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2400
+ -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2401
+ -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2402
+ animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
2403
+ .progress .indeterminate:after {
2404
+ content: '';
2405
+ position: absolute;
2406
+ background-color: inherit;
2407
+ top: 0;
2408
+ left: 0;
2409
+ bottom: 0;
2410
+ will-change: left, right;
2411
+ -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2412
+ -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2413
+ -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2414
+ -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2415
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2416
+ -webkit-animation-delay: 1.15s;
2417
+ -moz-animation-delay: 1.15s;
2418
+ -ms-animation-delay: 1.15s;
2419
+ -o-animation-delay: 1.15s;
2420
+ animation-delay: 1.15s; }
2421
+
2422
+ @-webkit-keyframes indeterminate {
2423
+ 0% {
2424
+ left: -35%;
2425
+ right: 100%; }
2426
+
2427
+ 60% {
2428
+ left: 100%;
2429
+ right: -90%; }
2430
+
2431
+ 100% {
2432
+ left: 100%;
2433
+ right: -90%; } }
2434
+
2435
+ @-moz-keyframes indeterminate {
2436
+ 0% {
2437
+ left: -35%;
2438
+ right: 100%; }
2439
+
2440
+ 60% {
2441
+ left: 100%;
2442
+ right: -90%; }
2443
+
2444
+ 100% {
2445
+ left: 100%;
2446
+ right: -90%; } }
2447
+
2448
+ @keyframes indeterminate {
2449
+ 0% {
2450
+ left: -35%;
2451
+ right: 100%; }
2452
+
2453
+ 60% {
2454
+ left: 100%;
2455
+ right: -90%; }
2456
+
2457
+ 100% {
2458
+ left: 100%;
2459
+ right: -90%; } }
2460
+
2461
+ @-webkit-keyframes indeterminate-short {
2462
+ 0% {
2463
+ left: -200%;
2464
+ right: 100%; }
2465
+
2466
+ 60% {
2467
+ left: 107%;
2468
+ right: -8%; }
2469
+
2470
+ 100% {
2471
+ left: 107%;
2472
+ right: -8%; } }
2473
+
2474
+ @-moz-keyframes indeterminate-short {
2475
+ 0% {
2476
+ left: -200%;
2477
+ right: 100%; }
2478
+
2479
+ 60% {
2480
+ left: 107%;
2481
+ right: -8%; }
2482
+
2483
+ 100% {
2484
+ left: 107%;
2485
+ right: -8%; } }
2486
+
2487
+ @keyframes indeterminate-short {
2488
+ 0% {
2489
+ left: -200%;
2490
+ right: 100%; }
2491
+
2492
+ 60% {
2493
+ left: 107%;
2494
+ right: -8%; }
2495
+
2496
+ 100% {
2497
+ left: 107%;
2498
+ right: -8%; } }
2499
+
2500
+ /*******************
2501
+ Utility Classes
2502
+ *******************/
2503
+ .left-align {
2504
+ text-align: left; }
2505
+
2506
+ .right-align {
2507
+ text-align: right; }
2508
+
2509
+ .center, .center-align {
2510
+ text-align: center; }
2511
+
2512
+ .left {
2513
+ float: left !important; }
2514
+
2515
+ .right {
2516
+ float: right !important; }
2517
+
2518
+ .no-select, input[type=range], input[type=range] + .thumb {
2519
+ -webkit-touch-callout: none;
2520
+ -webkit-user-select: none;
2521
+ -khtml-user-select: none;
2522
+ -moz-user-select: none;
2523
+ -ms-user-select: none;
2524
+ user-select: none; }
2525
+
2526
+ .circle {
2527
+ -webkit-border-radius: 50%;
2528
+ -moz-border-radius: 50%;
2529
+ border-radius: 50%;
2530
+ background-clip: padding-box; }
2531
+
2532
+ .center-block {
2533
+ display: block;
2534
+ margin-left: auto;
2535
+ margin-right: auto; }
2536
+
2537
+ .truncate {
2538
+ white-space: nowrap;
2539
+ overflow: hidden;
2540
+ text-overflow: ellipsis; }
2541
+
2542
+ .container {
2543
+ padding: 0 1.5rem;
2544
+ margin: 0 auto;
2545
+ max-width: 1280px;
2546
+ width: 90%; }
2547
+
2548
+ @media only screen and (min-width : 601px) {
2549
+ .container {
2550
+ width: 85%; }
2551
+ }
2552
+
2553
+ @media only screen and (min-width : 993px) {
2554
+ .container {
2555
+ width: 70%; }
2556
+ }
2557
+
2558
+ .container .row {
2559
+ margin-left: -0.75rem;
2560
+ margin-right: -0.75rem; }
2561
+
2562
+ .section {
2563
+ padding-top: 1rem;
2564
+ padding-bottom: 1rem; }
2565
+ .section.no-pad {
2566
+ padding: 0; }
2567
+ .section.no-pad-bot {
2568
+ padding-bottom: 0; }
2569
+ .section.no-pad-top {
2570
+ padding-top: 0; }
2571
+
2572
+ .row {
2573
+ margin-left: auto;
2574
+ margin-right: auto;
2575
+ margin-bottom: 20px; }
2576
+ .row:after {
2577
+ content: "";
2578
+ display: table;
2579
+ clear: both; }
2580
+ .row .col {
2581
+ float: left;
2582
+ -webkit-box-sizing: border-box;
2583
+ -moz-box-sizing: border-box;
2584
+ box-sizing: border-box;
2585
+ padding: 0 0.75rem; }
2586
+ .row .col.s1 {
2587
+ width: 8.33333%;
2588
+ margin-left: 0; }
2589
+ .row .col.s2 {
2590
+ width: 16.66667%;
2591
+ margin-left: 0; }
2592
+ .row .col.s3 {
2593
+ width: 25%;
2594
+ margin-left: 0; }
2595
+ .row .col.s4 {
2596
+ width: 33.33333%;
2597
+ margin-left: 0; }
2598
+ .row .col.s5 {
2599
+ width: 41.66667%;
2600
+ margin-left: 0; }
2601
+ .row .col.s6 {
2602
+ width: 50%;
2603
+ margin-left: 0; }
2604
+ .row .col.s7 {
2605
+ width: 58.33333%;
2606
+ margin-left: 0; }
2607
+ .row .col.s8 {
2608
+ width: 66.66667%;
2609
+ margin-left: 0; }
2610
+ .row .col.s9 {
2611
+ width: 75%;
2612
+ margin-left: 0; }
2613
+ .row .col.s10 {
2614
+ width: 83.33333%;
2615
+ margin-left: 0; }
2616
+ .row .col.s11 {
2617
+ width: 91.66667%;
2618
+ margin-left: 0; }
2619
+ .row .col.s12 {
2620
+ width: 100%;
2621
+ margin-left: 0; }
2622
+ .row .col.offset-s1 {
2623
+ margin-left: 8.33333%; }
2624
+ .row .col.offset-s2 {
2625
+ margin-left: 16.66667%; }
2626
+ .row .col.offset-s3 {
2627
+ margin-left: 25%; }
2628
+ .row .col.offset-s4 {
2629
+ margin-left: 33.33333%; }
2630
+ .row .col.offset-s5 {
2631
+ margin-left: 41.66667%; }
2632
+ .row .col.offset-s6 {
2633
+ margin-left: 50%; }
2634
+ .row .col.offset-s7 {
2635
+ margin-left: 58.33333%; }
2636
+ .row .col.offset-s8 {
2637
+ margin-left: 66.66667%; }
2638
+ .row .col.offset-s9 {
2639
+ margin-left: 75%; }
2640
+ .row .col.offset-s10 {
2641
+ margin-left: 83.33333%; }
2642
+ .row .col.offset-s11 {
2643
+ margin-left: 91.66667%; }
2644
+ .row .col.offset-s12 {
2645
+ margin-left: 100%; }
2646
+ @media only screen and (min-width : 601px) {
2647
+ .row .col.m1 {
2648
+ width: 8.33333%;
2649
+ margin-left: 0; }
2650
+
2651
+ .row .col.m2 {
2652
+ width: 16.66667%;
2653
+ margin-left: 0; }
2654
+
2655
+ .row .col.m3 {
2656
+ width: 25%;
2657
+ margin-left: 0; }
2658
+
2659
+ .row .col.m4 {
2660
+ width: 33.33333%;
2661
+ margin-left: 0; }
2662
+
2663
+ .row .col.m5 {
2664
+ width: 41.66667%;
2665
+ margin-left: 0; }
2666
+
2667
+ .row .col.m6 {
2668
+ width: 50%;
2669
+ margin-left: 0; }
2670
+
2671
+ .row .col.m7 {
2672
+ width: 58.33333%;
2673
+ margin-left: 0; }
2674
+
2675
+ .row .col.m8 {
2676
+ width: 66.66667%;
2677
+ margin-left: 0; }
2678
+
2679
+ .row .col.m9 {
2680
+ width: 75%;
2681
+ margin-left: 0; }
2682
+
2683
+ .row .col.m10 {
2684
+ width: 83.33333%;
2685
+ margin-left: 0; }
2686
+
2687
+ .row .col.m11 {
2688
+ width: 91.66667%;
2689
+ margin-left: 0; }
2690
+
2691
+ .row .col.m12 {
2692
+ width: 100%;
2693
+ margin-left: 0; }
2694
+
2695
+ .row .col.offset-m1 {
2696
+ margin-left: 8.33333%; }
2697
+
2698
+ .row .col.offset-m2 {
2699
+ margin-left: 16.66667%; }
2700
+
2701
+ .row .col.offset-m3 {
2702
+ margin-left: 25%; }
2703
+
2704
+ .row .col.offset-m4 {
2705
+ margin-left: 33.33333%; }
2706
+
2707
+ .row .col.offset-m5 {
2708
+ margin-left: 41.66667%; }
2709
+
2710
+ .row .col.offset-m6 {
2711
+ margin-left: 50%; }
2712
+
2713
+ .row .col.offset-m7 {
2714
+ margin-left: 58.33333%; }
2715
+
2716
+ .row .col.offset-m8 {
2717
+ margin-left: 66.66667%; }
2718
+
2719
+ .row .col.offset-m9 {
2720
+ margin-left: 75%; }
2721
+
2722
+ .row .col.offset-m10 {
2723
+ margin-left: 83.33333%; }
2724
+
2725
+ .row .col.offset-m11 {
2726
+ margin-left: 91.66667%; }
2727
+
2728
+ .row .col.offset-m12 {
2729
+ margin-left: 100%; }
2730
+ }
2731
+ @media only screen and (min-width : 993px) {
2732
+ .row .col.l1 {
2733
+ width: 8.33333%;
2734
+ margin-left: 0; }
2735
+
2736
+ .row .col.l2 {
2737
+ width: 16.66667%;
2738
+ margin-left: 0; }
2739
+
2740
+ .row .col.l3 {
2741
+ width: 25%;
2742
+ margin-left: 0; }
2743
+
2744
+ .row .col.l4 {
2745
+ width: 33.33333%;
2746
+ margin-left: 0; }
2747
+
2748
+ .row .col.l5 {
2749
+ width: 41.66667%;
2750
+ margin-left: 0; }
2751
+
2752
+ .row .col.l6 {
2753
+ width: 50%;
2754
+ margin-left: 0; }
2755
+
2756
+ .row .col.l7 {
2757
+ width: 58.33333%;
2758
+ margin-left: 0; }
2759
+
2760
+ .row .col.l8 {
2761
+ width: 66.66667%;
2762
+ margin-left: 0; }
2763
+
2764
+ .row .col.l9 {
2765
+ width: 75%;
2766
+ margin-left: 0; }
2767
+
2768
+ .row .col.l10 {
2769
+ width: 83.33333%;
2770
+ margin-left: 0; }
2771
+
2772
+ .row .col.l11 {
2773
+ width: 91.66667%;
2774
+ margin-left: 0; }
2775
+
2776
+ .row .col.l12 {
2777
+ width: 100%;
2778
+ margin-left: 0; }
2779
+
2780
+ .row .col.offset-l1 {
2781
+ margin-left: 8.33333%; }
2782
+
2783
+ .row .col.offset-l2 {
2784
+ margin-left: 16.66667%; }
2785
+
2786
+ .row .col.offset-l3 {
2787
+ margin-left: 25%; }
2788
+
2789
+ .row .col.offset-l4 {
2790
+ margin-left: 33.33333%; }
2791
+
2792
+ .row .col.offset-l5 {
2793
+ margin-left: 41.66667%; }
2794
+
2795
+ .row .col.offset-l6 {
2796
+ margin-left: 50%; }
2797
+
2798
+ .row .col.offset-l7 {
2799
+ margin-left: 58.33333%; }
2800
+
2801
+ .row .col.offset-l8 {
2802
+ margin-left: 66.66667%; }
2803
+
2804
+ .row .col.offset-l9 {
2805
+ margin-left: 75%; }
2806
+
2807
+ .row .col.offset-l10 {
2808
+ margin-left: 83.33333%; }
2809
+
2810
+ .row .col.offset-l11 {
2811
+ margin-left: 91.66667%; }
2812
+
2813
+ .row .col.offset-l12 {
2814
+ margin-left: 100%; }
2815
+ }
2816
+
2817
+ nav {
2818
+ color: #fff;
2819
+ background-color: #ee6e73;
2820
+ width: 100%;
2821
+ height: 56px;
2822
+ line-height: 56px;
2823
+ overflow: hidden; }
2824
+ nav a {
2825
+ color: #fff; }
2826
+ nav .nav-wrapper {
2827
+ position: relative;
2828
+ height: 100%; }
2829
+ nav .nav-wrapper i {
2830
+ font-size: 2rem; }
2831
+ @media only screen and (min-width : 993px) {
2832
+ nav a.button-collapse {
2833
+ display: none; }
2834
+ }
2835
+ nav a.button-collapse {
2836
+ float: left;
2837
+ position: relative;
2838
+ z-index: 1;
2839
+ height: 56px;
2840
+ color: #fff; }
2841
+ nav a.button-collapse i {
2842
+ font-size: 2.7rem;
2843
+ height: 56px;
2844
+ line-height: 56px; }
2845
+ nav .brand-logo {
2846
+ position: absolute;
2847
+ color: #fff;
2848
+ display: inline-block;
2849
+ font-size: 2.1rem;
2850
+ padding: 0; }
2851
+ nav .brand-logo.center {
2852
+ top: 50%;
2853
+ left: 50%;
2854
+ -webkit-transform: translate(-50%, -50%);
2855
+ -moz-transform: translate(-50%, -50%);
2856
+ -ms-transform: translate(-50%, -50%);
2857
+ -o-transform: translate(-50%, -50%);
2858
+ transform: translate(-50%, -50%); }
2859
+ @media only screen and (max-width : 992px) {
2860
+ nav .brand-logo {
2861
+ top: 50%;
2862
+ left: 50%;
2863
+ -webkit-transform: translate(-50%, -50%);
2864
+ -moz-transform: translate(-50%, -50%);
2865
+ -ms-transform: translate(-50%, -50%);
2866
+ -o-transform: translate(-50%, -50%);
2867
+ transform: translate(-50%, -50%); } }
2868
+ nav .brand-logo.right {
2869
+ right: 0.5rem;
2870
+ padding: 0; }
2871
+ nav ul {
2872
+ margin: 0; }
2873
+ nav ul li {
2874
+ -webkit-transition: background-color 0.3s;
2875
+ -moz-transition: background-color 0.3s;
2876
+ -o-transition: background-color 0.3s;
2877
+ -ms-transition: background-color 0.3s;
2878
+ transition: background-color 0.3s;
2879
+ float: left;
2880
+ padding: 0px; }
2881
+ nav ul li:hover, nav ul li.active {
2882
+ background-color: rgba(0, 0, 0, 0.1); }
2883
+ nav ul a {
2884
+ font-size: 1rem;
2885
+ color: #fff;
2886
+ display: inline-block;
2887
+ padding: 0px 15px; }
2888
+ nav ul.left {
2889
+ float: left; }
2890
+ nav .input-field {
2891
+ margin: 0; }
2892
+ nav .input-field input {
2893
+ height: 100%;
2894
+ font-size: 1.2rem;
2895
+ border: none;
2896
+ padding-left: 2rem;
2897
+ -webkit-box-sizing: border-box;
2898
+ -moz-box-sizing: border-box;
2899
+ box-sizing: border-box; }
2900
+ nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
2901
+ border: none;
2902
+ -webkit-box-shadow: none;
2903
+ -moz-box-shadow: none;
2904
+ box-shadow: none; }
2905
+ nav .input-field label {
2906
+ top: 0;
2907
+ left: 0; }
2908
+ nav .input-field label i {
2909
+ color: rgba(255, 255, 255, 0.7);
2910
+ -webkit-transition: color 0.3s;
2911
+ -moz-transition: color 0.3s;
2912
+ -o-transition: color 0.3s;
2913
+ -ms-transition: color 0.3s;
2914
+ transition: color 0.3s; }
2915
+ nav .input-field label.active i {
2916
+ color: #fff; }
2917
+ nav .input-field label.active {
2918
+ -webkit-transform: translateY(0);
2919
+ -moz-transform: translateY(0);
2920
+ -ms-transform: translateY(0);
2921
+ -o-transform: translateY(0);
2922
+ transform: translateY(0); }
2923
+
2924
+ .navbar-fixed {
2925
+ position: relative;
2926
+ height: 56px;
2927
+ z-index: 998; }
2928
+ .navbar-fixed nav {
2929
+ position: fixed; }
2930
+
2931
+ @media only screen and (min-width : 601px) {
2932
+ nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i {
2933
+ height: 64px;
2934
+ line-height: 64px; }
2935
+
2936
+ .navbar-fixed {
2937
+ height: 64px; }
2938
+ }
2939
+
2940
+ a {
2941
+ text-decoration: none; }
2942
+
2943
+ html {
2944
+ line-height: 1.5;
2945
+ font-family: "Roboto", sans-serif;
2946
+ font-weight: normal;
2947
+ color: rgba(0, 0, 0, 0.87); }
2948
+ @media only screen and (min-width: 0) {
2949
+ html {
2950
+ font-size: 14px; } }
2951
+ @media only screen and (min-width: 992px) {
2952
+ html {
2953
+ font-size: 14.5px; } }
2954
+ @media only screen and (min-width: 1200px) {
2955
+ html {
2956
+ font-size: 15px; } }
2957
+
2958
+ h1, h2, h3, h4, h5, h6 {
2959
+ font-weight: 400; }
2960
+
2961
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
2962
+ font-weight: inherit; }
2963
+
2964
+ h1 {
2965
+ font-size: 4.2rem;
2966
+ line-height: 4.62rem;
2967
+ margin: 2.1rem 0 1.68rem 0; }
2968
+
2969
+ h2 {
2970
+ font-size: 3.56rem;
2971
+ line-height: 3.916rem;
2972
+ margin: 1.78rem 0 1.424rem 0; }
2973
+
2974
+ h3 {
2975
+ font-size: 2.92rem;
2976
+ line-height: 3.212rem;
2977
+ margin: 1.46rem 0 1.168rem 0; }
2978
+
2979
+ h4 {
2980
+ font-size: 2.28rem;
2981
+ line-height: 2.508rem;
2982
+ margin: 1.14rem 0 0.912rem 0; }
2983
+
2984
+ h5 {
2985
+ font-size: 1.64rem;
2986
+ line-height: 1.804rem;
2987
+ margin: 0.82rem 0 0.656rem 0; }
2988
+
2989
+ h6 {
2990
+ font-size: 1rem;
2991
+ line-height: 1.1rem;
2992
+ margin: 0.5rem 0 0.4rem 0; }
2993
+
2994
+ em {
2995
+ font-style: italic; }
2996
+
2997
+ strong {
2998
+ font-weight: 500; }
2999
+
3000
+ small {
3001
+ font-size: 75%; }
3002
+
3003
+ .light, footer.page-footer .footer-copyright {
3004
+ font-weight: 300; }
3005
+
3006
+ .flow-text {
3007
+ font-weight: 300; }
3008
+ @media only screen and (min-width: 360px) {
3009
+ .flow-text {
3010
+ font-size: 1.2rem; } }
3011
+ @media only screen and (min-width: 0px) {
3012
+ .flow-text {
3013
+ line-height: 0.8rem; } }
3014
+ @media only screen and (min-width: 390px) {
3015
+ .flow-text {
3016
+ font-size: 1.224rem; } }
3017
+ @media only screen and (min-width: 30px) {
3018
+ .flow-text {
3019
+ line-height: 0.904rem; } }
3020
+ @media only screen and (min-width: 420px) {
3021
+ .flow-text {
3022
+ font-size: 1.248rem; } }
3023
+ @media only screen and (min-width: 60px) {
3024
+ .flow-text {
3025
+ line-height: 1.008rem; } }
3026
+ @media only screen and (min-width: 450px) {
3027
+ .flow-text {
3028
+ font-size: 1.272rem; } }
3029
+ @media only screen and (min-width: 90px) {
3030
+ .flow-text {
3031
+ line-height: 1.112rem; } }
3032
+ @media only screen and (min-width: 480px) {
3033
+ .flow-text {
3034
+ font-size: 1.296rem; } }
3035
+ @media only screen and (min-width: 120px) {
3036
+ .flow-text {
3037
+ line-height: 1.216rem; } }
3038
+ @media only screen and (min-width: 510px) {
3039
+ .flow-text {
3040
+ font-size: 1.32rem; } }
3041
+ @media only screen and (min-width: 150px) {
3042
+ .flow-text {
3043
+ line-height: 1.32rem; } }
3044
+ @media only screen and (min-width: 540px) {
3045
+ .flow-text {
3046
+ font-size: 1.344rem; } }
3047
+ @media only screen and (min-width: 180px) {
3048
+ .flow-text {
3049
+ line-height: 1.424rem; } }
3050
+ @media only screen and (min-width: 570px) {
3051
+ .flow-text {
3052
+ font-size: 1.368rem; } }
3053
+ @media only screen and (min-width: 210px) {
3054
+ .flow-text {
3055
+ line-height: 1.528rem; } }
3056
+ @media only screen and (min-width: 600px) {
3057
+ .flow-text {
3058
+ font-size: 1.392rem; } }
3059
+ @media only screen and (min-width: 240px) {
3060
+ .flow-text {
3061
+ line-height: 1.632rem; } }
3062
+ @media only screen and (min-width: 630px) {
3063
+ .flow-text {
3064
+ font-size: 1.416rem; } }
3065
+ @media only screen and (min-width: 270px) {
3066
+ .flow-text {
3067
+ line-height: 1.736rem; } }
3068
+ @media only screen and (min-width: 660px) {
3069
+ .flow-text {
3070
+ font-size: 1.44rem; } }
3071
+ @media only screen and (min-width: 300px) {
3072
+ .flow-text {
3073
+ line-height: 1.84rem; } }
3074
+ @media only screen and (min-width: 690px) {
3075
+ .flow-text {
3076
+ font-size: 1.464rem; } }
3077
+ @media only screen and (min-width: 330px) {
3078
+ .flow-text {
3079
+ line-height: 1.944rem; } }
3080
+ @media only screen and (min-width: 720px) {
3081
+ .flow-text {
3082
+ font-size: 1.488rem; } }
3083
+ @media only screen and (min-width: 360px) {
3084
+ .flow-text {
3085
+ line-height: 2.048rem; } }
3086
+ @media only screen and (min-width: 750px) {
3087
+ .flow-text {
3088
+ font-size: 1.512rem; } }
3089
+ @media only screen and (min-width: 390px) {
3090
+ .flow-text {
3091
+ line-height: 2.152rem; } }
3092
+ @media only screen and (min-width: 780px) {
3093
+ .flow-text {
3094
+ font-size: 1.536rem; } }
3095
+ @media only screen and (min-width: 420px) {
3096
+ .flow-text {
3097
+ line-height: 2.256rem; } }
3098
+ @media only screen and (min-width: 810px) {
3099
+ .flow-text {
3100
+ font-size: 1.56rem; } }
3101
+ @media only screen and (min-width: 450px) {
3102
+ .flow-text {
3103
+ line-height: 2.36rem; } }
3104
+ @media only screen and (min-width: 840px) {
3105
+ .flow-text {
3106
+ font-size: 1.584rem; } }
3107
+ @media only screen and (min-width: 480px) {
3108
+ .flow-text {
3109
+ line-height: 2.464rem; } }
3110
+ @media only screen and (min-width: 870px) {
3111
+ .flow-text {
3112
+ font-size: 1.608rem; } }
3113
+ @media only screen and (min-width: 510px) {
3114
+ .flow-text {
3115
+ line-height: 2.568rem; } }
3116
+ @media only screen and (min-width: 900px) {
3117
+ .flow-text {
3118
+ font-size: 1.632rem; } }
3119
+ @media only screen and (min-width: 540px) {
3120
+ .flow-text {
3121
+ line-height: 2.672rem; } }
3122
+ @media only screen and (min-width: 930px) {
3123
+ .flow-text {
3124
+ font-size: 1.656rem; } }
3125
+ @media only screen and (min-width: 570px) {
3126
+ .flow-text {
3127
+ line-height: 2.776rem; } }
3128
+ @media only screen and (min-width: 960px) {
3129
+ .flow-text {
3130
+ font-size: 1.68rem; } }
3131
+ @media only screen and (min-width: 600px) {
3132
+ .flow-text {
3133
+ line-height: 2.88rem; } }
3134
+
3135
+ .card-panel {
3136
+ padding: 20px;
3137
+ margin: 0.5rem 0 1rem 0;
3138
+ -webkit-border-radius: 2px;
3139
+ -moz-border-radius: 2px;
3140
+ border-radius: 2px;
3141
+ background-clip: padding-box;
3142
+ background-color: #fff; }
3143
+
3144
+ .card {
3145
+ position: relative;
3146
+ overflow: hidden;
3147
+ margin: 0.5rem 0 1rem 0;
3148
+ background-color: #fff;
3149
+ -webkit-box-sizing: border-box;
3150
+ -moz-box-sizing: border-box;
3151
+ box-sizing: border-box;
3152
+ -webkit-border-radius: 2px;
3153
+ -moz-border-radius: 2px;
3154
+ border-radius: 2px;
3155
+ background-clip: padding-box; }
3156
+ .card .card-title {
3157
+ color: #fff;
3158
+ font-size: 24px;
3159
+ font-weight: 300; }
3160
+ .card .card-title.activator {
3161
+ cursor: pointer; }
3162
+ .card a {
3163
+ color: #ffab40;
3164
+ margin-right: 20px;
3165
+ -webkit-transition: color 0.3s ease;
3166
+ -moz-transition: color 0.3s ease;
3167
+ -o-transition: color 0.3s ease;
3168
+ -ms-transition: color 0.3s ease;
3169
+ transition: color 0.3s ease;
3170
+ text-transform: uppercase; }
3171
+ .card a:hover {
3172
+ color: #ffd8a6; }
3173
+ .card.small, .card.medium, .card.large {
3174
+ position: relative; }
3175
+ .card.small .card-image, .card.medium .card-image, .card.large .card-image {
3176
+ overflow: hidden; }
3177
+ .card.small .card-content, .card.medium .card-content, .card.large .card-content {
3178
+ overflow: hidden; }
3179
+ .card.small .card-action, .card.medium .card-action, .card.large .card-action {
3180
+ position: absolute;
3181
+ bottom: 0;
3182
+ left: 0;
3183
+ right: 0; }
3184
+ .card.small {
3185
+ height: 300px; }
3186
+ .card.small .card-image {
3187
+ height: 150px; }
3188
+ .card.small .card-content {
3189
+ height: 150px; }
3190
+ .card.medium {
3191
+ height: 400px; }
3192
+ .card.medium .card-image {
3193
+ height: 250px; }
3194
+ .card.medium .card-content {
3195
+ height: 150px; }
3196
+ .card.large {
3197
+ height: 500px; }
3198
+ .card.large .card-image {
3199
+ height: 330px; }
3200
+ .card.large .card-content {
3201
+ height: 170px; }
3202
+ .card .card-image {
3203
+ position: relative; }
3204
+ .card .card-image img {
3205
+ -webkit-border-radius: 2px 2px 0 0;
3206
+ -moz-border-radius: 2px 2px 0 0;
3207
+ border-radius: 2px 2px 0 0;
3208
+ background-clip: padding-box;
3209
+ position: relative;
3210
+ left: 0;
3211
+ right: 0;
3212
+ top: 0;
3213
+ bottom: 0;
3214
+ width: 100%; }
3215
+ .card .card-image .card-title {
3216
+ position: absolute;
3217
+ bottom: 0;
3218
+ left: 0;
3219
+ padding: 20px; }
3220
+ .card .card-content {
3221
+ padding: 20px;
3222
+ -webkit-border-radius: 0 0 2px 2px;
3223
+ -moz-border-radius: 0 0 2px 2px;
3224
+ border-radius: 0 0 2px 2px;
3225
+ background-clip: padding-box;
3226
+ -webkit-box-sizing: border-box;
3227
+ -moz-box-sizing: border-box;
3228
+ box-sizing: border-box; }
3229
+ .card .card-content p {
3230
+ margin: 0;
3231
+ color: inherit; }
3232
+ .card .card-content .card-title {
3233
+ line-height: 48px; }
3234
+ .card .card-action {
3235
+ border-top: 1px solid rgba(160, 160, 160, 0.2);
3236
+ padding: 20px; }
3237
+ .card .card-reveal {
3238
+ padding: 20px;
3239
+ position: absolute;
3240
+ background-color: #FFF;
3241
+ width: 100%;
3242
+ overflow-y: auto;
3243
+ top: 100%;
3244
+ height: 100%;
3245
+ z-index: 1;
3246
+ -webkit-box-sizing: border-box;
3247
+ -moz-box-sizing: border-box;
3248
+ box-sizing: border-box; }
3249
+ .card .card-reveal .card-title {
3250
+ cursor: pointer;
3251
+ display: block; }
3252
+
3253
+ #toast-container {
3254
+ display: block;
3255
+ position: fixed;
3256
+ z-index: 1001; }
3257
+ @media only screen and (max-width : 600px) {
3258
+ #toast-container {
3259
+ min-width: 100%;
3260
+ bottom: 0%; } }
3261
+ @media only screen and (min-width : 601px) and (max-width : 992px) {
3262
+ #toast-container {
3263
+ min-width: 30%;
3264
+ left: 5%;
3265
+ bottom: 7%; } }
3266
+ @media only screen and (min-width : 993px) {
3267
+ #toast-container {
3268
+ min-width: 8%;
3269
+ top: 10%;
3270
+ right: 7%; } }
3271
+
3272
+ .toast {
3273
+ -webkit-border-radius: 2px;
3274
+ -moz-border-radius: 2px;
3275
+ border-radius: 2px;
3276
+ background-clip: padding-box;
3277
+ -webkit-box-sizing: border-box;
3278
+ -moz-box-sizing: border-box;
3279
+ box-sizing: border-box;
3280
+ top: 0px;
3281
+ width: auto;
3282
+ clear: both;
3283
+ margin-top: 10px;
3284
+ position: relative;
3285
+ max-width: 100%;
3286
+ height: 48px;
3287
+ line-height: 48px;
3288
+ background-color: #323232;
3289
+ padding: 0px 25px;
3290
+ font-size: 1.1rem;
3291
+ font-weight: 300;
3292
+ color: #fff;
3293
+ display: -webkit-box;
3294
+ display: -moz-box;
3295
+ display: -ms-flexbox;
3296
+ display: -webkit-flex;
3297
+ display: flex;
3298
+ -webkit-flex-align: center;
3299
+ -ms-flex-align: center;
3300
+ -webkit-align-items: center;
3301
+ align-items: center;
3302
+ -webkit-justify-content: space-between;
3303
+ justify-content: space-between; }
3304
+ .toast .btn, .toast .btn-large, .toast .btn-flat {
3305
+ margin: 0;
3306
+ margin-left: 3rem; }
3307
+ .toast.rounded {
3308
+ border-radius: 24px; }
3309
+ @media only screen and (max-width : 600px) {
3310
+ .toast {
3311
+ width: 100%;
3312
+ -webkit-border-radius: 0px;
3313
+ -moz-border-radius: 0px;
3314
+ border-radius: 0px;
3315
+ background-clip: padding-box; } }
3316
+ @media only screen and (min-width : 601px) and (max-width : 992px) {
3317
+ .toast {
3318
+ float: left; } }
3319
+ @media only screen and (min-width : 993px) {
3320
+ .toast {
3321
+ float: right; } }
3322
+
3323
+ .tabs {
3324
+ position: relative;
3325
+ height: 48px;
3326
+ background-color: #FFF;
3327
+ margin: 0 auto;
3328
+ width: 100%;
3329
+ white-space: nowrap; }
3330
+ .tabs li.tab {
3331
+ display: block;
3332
+ float: left;
3333
+ text-align: center;
3334
+ background-color: #fff;
3335
+ line-height: 48px;
3336
+ height: 48px;
3337
+ padding: 0 20px;
3338
+ margin: 0;
3339
+ text-transform: uppercase;
3340
+ letter-spacing: 0.8px;
3341
+ width: 15%; }
3342
+ .tabs li.tab a {
3343
+ color: #ee6e73;
3344
+ display: block;
3345
+ width: 100%;
3346
+ height: 100%;
3347
+ -webkit-transition: color 0.28s ease;
3348
+ -moz-transition: color 0.28s ease;
3349
+ -o-transition: color 0.28s ease;
3350
+ -ms-transition: color 0.28s ease;
3351
+ transition: color 0.28s ease; }
3352
+ .tabs li.tab a:hover {
3353
+ color: #f9c9cb; }
3354
+ .tabs .indicator {
3355
+ position: absolute;
3356
+ bottom: 0;
3357
+ height: 2px;
3358
+ background-color: #f6b2b5;
3359
+ will-change: left, right; }
3360
+
3361
+ ul.tabs li.tab {
3362
+ padding: 0; }
3363
+
3364
+ .material-tooltip {
3365
+ padding: 10px 8px;
3366
+ font-size: 1rem;
3367
+ z-index: 1000;
3368
+ background-color: transparent;
3369
+ -webkit-border-radius: 2px;
3370
+ -moz-border-radius: 2px;
3371
+ border-radius: 2px;
3372
+ background-clip: padding-box;
3373
+ color: #fff;
3374
+ min-height: 36px;
3375
+ line-height: 1rem;
3376
+ opacity: 0;
3377
+ display: none;
3378
+ position: absolute;
3379
+ text-align: center;
3380
+ overflow: hidden;
3381
+ left: 0;
3382
+ top: 0;
3383
+ will-change: top, left; }
3384
+
3385
+ .backdrop {
3386
+ position: absolute;
3387
+ opacity: 0;
3388
+ display: none;
3389
+ height: 7px;
3390
+ width: 14px;
3391
+ -webkit-border-radius: 0 0 14px 14px;
3392
+ -moz-border-radius: 0 0 14px 14px;
3393
+ border-radius: 0 0 14px 14px;
3394
+ background-clip: padding-box;
3395
+ background-color: #323232;
3396
+ z-index: -1;
3397
+ -webkit-transform-origin: 50% 10%;
3398
+ -moz-transform-origin: 50% 10%;
3399
+ -ms-transform-origin: 50% 10%;
3400
+ -o-transform-origin: 50% 10%;
3401
+ transform-origin: 50% 10%;
3402
+ will-change: transform, opacity; }
3403
+
3404
+ .btn, .btn-large, .btn-flat {
3405
+ display: inline-block;
3406
+ height: 36px;
3407
+ margin-bottom: 15px;
3408
+ padding: 0 2rem;
3409
+ -webkit-border-radius: 2px;
3410
+ -moz-border-radius: 2px;
3411
+ border-radius: 2px;
3412
+ background-clip: padding-box;
3413
+ line-height: 36px;
3414
+ text-transform: uppercase;
3415
+ border: none;
3416
+ outline: 0;
3417
+ -webkit-tap-highlight-color: transparent; }
3418
+
3419
+ .btn.disabled, .disabled.btn-large, .btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled {
3420
+ background-color: #DFDFDF;
3421
+ box-shadow: none;
3422
+ color: #9F9F9F;
3423
+ cursor: default; }
3424
+ .btn.disabled:hover, .disabled.btn-large:hover, .btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover {
3425
+ background-color: #DFDFDF;
3426
+ color: #9F9F9F; }
3427
+
3428
+ .btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
3429
+ font-size: 1.3rem;
3430
+ line-height: inherit; }
3431
+
3432
+ .btn, .btn-large {
3433
+ text-decoration: none;
3434
+ color: #FFF;
3435
+ background-color: #26a69a;
3436
+ text-align: center;
3437
+ letter-spacing: 0.5px;
3438
+ -webkit-transition: 0.2s ease-out;
3439
+ -moz-transition: 0.2s ease-out;
3440
+ -o-transition: 0.2s ease-out;
3441
+ -ms-transition: 0.2s ease-out;
3442
+ transition: 0.2s ease-out;
3443
+ cursor: pointer; }
3444
+ .btn:hover, .btn-large:hover {
3445
+ background-color: #2bbbad; }
3446
+
3447
+ .btn-floating {
3448
+ display: inline-block;
3449
+ color: #FFF;
3450
+ position: relative;
3451
+ z-index: 1;
3452
+ width: 37px;
3453
+ height: 37px;
3454
+ line-height: 37px;
3455
+ padding: 0;
3456
+ background-color: #26a69a;
3457
+ -webkit-border-radius: 50%;
3458
+ -moz-border-radius: 50%;
3459
+ border-radius: 50%;
3460
+ background-clip: padding-box;
3461
+ -webkit-transition: 0.3s;
3462
+ -moz-transition: 0.3s;
3463
+ -o-transition: 0.3s;
3464
+ -ms-transition: 0.3s;
3465
+ transition: 0.3s;
3466
+ cursor: pointer; }
3467
+ .btn-floating i {
3468
+ width: inherit;
3469
+ display: inline-block;
3470
+ text-align: center;
3471
+ color: #FFF;
3472
+ font-size: 1.6rem;
3473
+ line-height: 37px; }
3474
+ .btn-floating.btn-large {
3475
+ width: 55.5px;
3476
+ height: 55.5px; }
3477
+ .btn-floating.btn-large i {
3478
+ line-height: 55.5px; }
3479
+
3480
+ .fixed-action-btn {
3481
+ position: fixed;
3482
+ right: 23px;
3483
+ bottom: 23px;
3484
+ padding-top: 15px;
3485
+ margin-bottom: 0;
3486
+ z-index: 1000; }
3487
+ .fixed-action-btn ul {
3488
+ left: 0;
3489
+ right: 0;
3490
+ text-align: center;
3491
+ position: absolute;
3492
+ bottom: 64px; }
3493
+ .fixed-action-btn ul li {
3494
+ margin-bottom: 15px; }
3495
+ .fixed-action-btn ul a.btn-floating {
3496
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
3497
+ filter: "alpha(opacity=(${iefactor}))";
3498
+ -moz-opacity: 0;
3499
+ -khtml-opacity: 0;
3500
+ opacity: 0; }
3501
+
3502
+ .btn-flat {
3503
+ box-shadow: none;
3504
+ background-color: transparent;
3505
+ color: #343434;
3506
+ cursor: pointer; }
3507
+ .btn-flat.disabled {
3508
+ color: #b3b3b3;
3509
+ cursor: default; }
3510
+
3511
+ .btn-large {
3512
+ height: 54px;
3513
+ line-height: 56px; }
3514
+ .btn-large i {
3515
+ font-size: 1.6rem; }
3516
+
3517
+ .dropdown-content {
3518
+ display: none;
3519
+ position: absolute;
3520
+ background-color: #FFFFFF;
3521
+ margin: 0px;
3522
+ min-width: 100px;
3523
+ z-index: 1000;
3524
+ max-height: 70%;
3525
+ opacity: 0;
3526
+ overflow-y: hidden;
3527
+ will-change: width, height; }
3528
+ .dropdown-content li {
3529
+ cursor: pointer;
3530
+ font-size: 1.2rem;
3531
+ color: rgba(0, 0, 0, 0.87);
3532
+ line-height: 1.5rem; }
3533
+ .dropdown-content li:hover, .dropdown-content li.active {
3534
+ background-color: rgba(0, 0, 0, 0.06); }
3535
+ .dropdown-content li > a, .dropdown-content li > span {
3536
+ display: block;
3537
+ padding: 1rem 1rem;
3538
+ color: #26a69a; }
3539
+
3540
+ /*!
3541
+ * Waves v0.6.0
3542
+ * http://fian.my.id/Waves
3543
+ *
3544
+ * Copyright 2014 Alfiana E. Sibuea and other contributors
3545
+ * Released under the MIT license
3546
+ * https://github.com/fians/Waves/blob/master/LICENSE
3547
+ */
3548
+ .waves-effect {
3549
+ position: relative;
3550
+ cursor: pointer;
3551
+ display: inline-block;
3552
+ overflow: hidden;
3553
+ -webkit-user-select: none;
3554
+ -moz-user-select: none;
3555
+ -ms-user-select: none;
3556
+ user-select: none;
3557
+ -webkit-tap-highlight-color: transparent;
3558
+ vertical-align: middle;
3559
+ z-index: 1;
3560
+ will-change: opacity, transform;
3561
+ -webkit-transition: all 0.3s ease-out;
3562
+ -moz-transition: all 0.3s ease-out;
3563
+ -o-transition: all 0.3s ease-out;
3564
+ -ms-transition: all 0.3s ease-out;
3565
+ transition: all 0.3s ease-out; }
3566
+ .waves-effect .waves-ripple {
3567
+ position: absolute;
3568
+ border-radius: 50%;
3569
+ width: 20px;
3570
+ height: 20px;
3571
+ margin-top: -10px;
3572
+ margin-left: -10px;
3573
+ opacity: 0;
3574
+ background: rgba(0, 0, 0, 0.2);
3575
+ -webkit-transition: all 0.7s ease-out;
3576
+ -moz-transition: all 0.7s ease-out;
3577
+ -o-transition: all 0.7s ease-out;
3578
+ -ms-transition: all 0.7s ease-out;
3579
+ transition: all 0.7s ease-out;
3580
+ -webkit-transition-property: -webkit-transform, opacity;
3581
+ -moz-transition-property: -moz-transform, opacity;
3582
+ -o-transition-property: -o-transform, opacity;
3583
+ transition-property: transform, opacity;
3584
+ -webkit-transform: scale(0);
3585
+ -moz-transform: scale(0);
3586
+ -ms-transform: scale(0);
3587
+ -o-transform: scale(0);
3588
+ transform: scale(0);
3589
+ pointer-events: none; }
3590
+ .waves-effect.waves-light .waves-ripple {
3591
+ background-color: rgba(255, 255, 255, 0.45); }
3592
+ .waves-effect.waves-red .waves-ripple {
3593
+ background-color: rgba(244, 67, 54, 0.7); }
3594
+ .waves-effect.waves-yellow .waves-ripple {
3595
+ background-color: rgba(255, 235, 59, 0.7); }
3596
+ .waves-effect.waves-orange .waves-ripple {
3597
+ background-color: rgba(255, 152, 0, 0.7); }
3598
+ .waves-effect.waves-purple .waves-ripple {
3599
+ background-color: rgba(156, 39, 176, 0.7); }
3600
+ .waves-effect.waves-green .waves-ripple {
3601
+ background-color: rgba(76, 175, 80, 0.7); }
3602
+ .waves-effect.waves-teal .waves-ripple {
3603
+ background-color: rgba(0, 150, 136, 0.7); }
3604
+
3605
+ .waves-notransition {
3606
+ -webkit-transition: none !important;
3607
+ -moz-transition: none !important;
3608
+ -o-transition: none !important;
3609
+ -ms-transition: none !important;
3610
+ transition: none !important; }
3611
+
3612
+ .waves-circle {
3613
+ -webkit-transform: translateZ(0);
3614
+ -moz-transform: translateZ(0);
3615
+ -ms-transform: translateZ(0);
3616
+ -o-transform: translateZ(0);
3617
+ transform: translateZ(0);
3618
+ -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }
3619
+
3620
+ .waves-input-wrapper {
3621
+ border-radius: 0.2em;
3622
+ vertical-align: bottom; }
3623
+ .waves-input-wrapper .waves-button-input {
3624
+ position: relative;
3625
+ top: 0;
3626
+ left: 0;
3627
+ z-index: 1; }
3628
+
3629
+ .waves-circle {
3630
+ text-align: center;
3631
+ width: 2.5em;
3632
+ height: 2.5em;
3633
+ line-height: 2.5em;
3634
+ border-radius: 50%;
3635
+ -webkit-mask-image: none; }
3636
+
3637
+ .waves-block {
3638
+ display: block; }
3639
+
3640
+ /* Firefox Bug: link not triggered */
3641
+ a.waves-effect .waves-ripple {
3642
+ z-index: -1; }
3643
+
3644
+ .modal {
3645
+ display: none;
3646
+ position: fixed;
3647
+ left: 0;
3648
+ right: 0;
3649
+ background-color: inherit;
3650
+ padding: 0;
3651
+ max-height: 70%;
3652
+ width: 55%;
3653
+ margin: auto;
3654
+ overflow-y: auto;
3655
+ z-index: 1000;
3656
+ -webkit-border-radius: 2px;
3657
+ -moz-border-radius: 2px;
3658
+ border-radius: 2px;
3659
+ background-clip: padding-box;
3660
+ -webkit-transform: translate(0);
3661
+ -moz-transform: translate(0);
3662
+ -ms-transform: translate(0);
3663
+ -o-transform: translate(0);
3664
+ transform: translate(0);
3665
+ will-change: top, opacity; }
3666
+ @media only screen and (max-width : 992px) {
3667
+ .modal {
3668
+ width: 80%; } }
3669
+ .modal h1, .modal h2, .modal h3, .modal h4 {
3670
+ margin-top: 0; }
3671
+ .modal .modal-content {
3672
+ padding: 24px; }
3673
+ .modal .modal-footer {
3674
+ background-color: #eee;
3675
+ padding: 4px 6px;
3676
+ height: 56px;
3677
+ width: 100%; }
3678
+ .modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat {
3679
+ float: right;
3680
+ margin: 6px 0; }
3681
+
3682
+ #lean-overlay {
3683
+ position: fixed;
3684
+ z-index: 999;
3685
+ top: 0;
3686
+ left: 0;
3687
+ bottom: 0;
3688
+ right: 0;
3689
+ height: 115%;
3690
+ width: 100%;
3691
+ background: #000;
3692
+ display: none;
3693
+ will-change: opacity; }
3694
+
3695
+ .modal.modal-fixed-footer {
3696
+ padding: 0;
3697
+ height: 70%; }
3698
+ .modal.modal-fixed-footer .modal-content {
3699
+ position: fixed;
3700
+ max-height: 100%;
3701
+ padding-bottom: 64px;
3702
+ width: 100%;
3703
+ overflow-y: auto; }
3704
+ .modal.modal-fixed-footer .modal-footer {
3705
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
3706
+ position: fixed;
3707
+ bottom: 0; }
3708
+
3709
+ .collapsible {
3710
+ border-top: 1px solid #ddd;
3711
+ border-right: 1px solid #ddd;
3712
+ border-left: 1px solid #ddd;
3713
+ margin: 0.5rem 0 1rem 0; }
3714
+ .collapsible li {
3715
+ -webkit-transition: 0.3s;
3716
+ -moz-transition: 0.3s;
3717
+ -o-transition: 0.3s;
3718
+ -ms-transition: 0.3s;
3719
+ transition: 0.3s; }
3720
+
3721
+ .collapsible-header {
3722
+ display: block;
3723
+ cursor: pointer;
3724
+ height: 3rem;
3725
+ width: 100%;
3726
+ line-height: 3rem;
3727
+ padding: 0 1rem;
3728
+ margin-left:20px;
3729
+ background-color: #fff;
3730
+ border-bottom: 1px solid #ddd; }
3731
+ .collapsible-header i {
3732
+ width: 2rem;
3733
+ font-size: 1.6rem;
3734
+ line-height: 3rem;
3735
+ display: block;
3736
+ float: left;
3737
+ text-align: center;
3738
+ margin-right: 1rem; }
3739
+
3740
+ .collapsible-body {
3741
+ width: 100%;
3742
+ overflow: hidden;
3743
+ display: none;
3744
+ margin-left:20px;
3745
+ padding: 0px 18px 40px 10px;
3746
+ border-bottom: 1px solid #ddd;
3747
+ -webkit-box-sizing: border-box;
3748
+ -moz-box-sizing: border-box;
3749
+ box-sizing: border-box; }
3750
+ .collapsible-body p {
3751
+ margin: 0;
3752
+ padding: 2rem; }
3753
+
3754
+ ul.side-nav ul.collapsible {
3755
+ border: none;
3756
+ -webkit-box-shadow: none;
3757
+ -moz-box-shadow: none;
3758
+ box-shadow: none; }
3759
+ ul.side-nav ul.collapsible li {
3760
+ padding: 0; }
3761
+ ul.side-nav .collapsible-header {
3762
+ background-color: transparent;
3763
+ border: none;
3764
+ line-height: inherit;
3765
+ height: inherit;
3766
+ margin: 0 1rem; }
3767
+ ul.side-nav .collapsible-header i {
3768
+ line-height: inherit; }
3769
+ ul.side-nav .collapsible-body {
3770
+ border: 0;
3771
+ background-color: #FFF; }
3772
+ ul.side-nav .collapsible-body li a {
3773
+ margin: 0 1rem 0 2rem; }
3774
+
3775
+ li.no-padding {
3776
+ padding: 0 !important; }
3777
+
3778
+ .materialboxed {
3779
+ cursor: zoom-in;
3780
+ position: relative;
3781
+ -webkit-transition: opacity 0.4s;
3782
+ -moz-transition: opacity 0.4s;
3783
+ -o-transition: opacity 0.4s;
3784
+ -ms-transition: opacity 0.4s;
3785
+ transition: opacity 0.4s; }
3786
+ .materialboxed:hover {
3787
+ will-change: left, top, width, height; }
3788
+ .materialboxed:hover:not(.active) {
3789
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
3790
+ filter: "alpha(opacity=(${iefactor}))";
3791
+ -moz-opacity: 0.8;
3792
+ -khtml-opacity: 0.8;
3793
+ opacity: 0.8; }
3794
+
3795
+ .materialboxed.active {
3796
+ cursor: zoom-out; }
3797
+
3798
+ #materialbox-overlay {
3799
+ position: fixed;
3800
+ top: 0;
3801
+ left: 0;
3802
+ right: 0;
3803
+ bottom: 0;
3804
+ background-color: #292929;
3805
+ z-index: 999;
3806
+ will-change: opacity; }
3807
+
3808
+ .materialbox-caption {
3809
+ position: fixed;
3810
+ display: none;
3811
+ color: #fff;
3812
+ line-height: 50px;
3813
+ bottom: 0px;
3814
+ width: 100%;
3815
+ box-sizing: border-box;
3816
+ text-align: center;
3817
+ padding: 0% 15%;
3818
+ height: 50px;
3819
+ z-index: 1000;
3820
+ -webkit-font-smoothing: antialiased; }
3821
+
3822
+ /* Remove Focus Boxes */
3823
+ select:focus {
3824
+ outline: 1px solid #f8c1c3; }
3825
+
3826
+ button:focus {
3827
+ outline: none;
3828
+ background-color: #2ab7a9; }
3829
+
3830
+ label {
3831
+ font-size: 0.8rem;
3832
+ color: #9e9e9e; }
3833
+
3834
+ /***************************
3835
+ Text Inputs + Textarea
3836
+ ****************************/
3837
+ .input-field {
3838
+ position: relative;
3839
+ margin-top: 1rem; }
3840
+ .input-field label {
3841
+ color: #9e9e9e;
3842
+ position: absolute;
3843
+ top: 0.8rem;
3844
+ left: 0.75rem;
3845
+ font-size: 1rem;
3846
+ cursor: text;
3847
+ -webkit-transition: 0.2s ease-out;
3848
+ -moz-transition: 0.2s ease-out;
3849
+ -o-transition: 0.2s ease-out;
3850
+ -ms-transition: 0.2s ease-out;
3851
+ transition: 0.2s ease-out; }
3852
+ .input-field label.active {
3853
+ font-size: 0.8rem;
3854
+ -webkit-transform: translateY(-140%);
3855
+ -moz-transform: translateY(-140%);
3856
+ -ms-transform: translateY(-140%);
3857
+ -o-transform: translateY(-140%);
3858
+ transform: translateY(-140%); }
3859
+ .input-field input[type=text]:focus + label, .input-field input[type=password]:focus + label, .input-field input[type=email]:focus + label, .input-field input[type=url]:focus + label, .input-field input[type=date]:focus + label, .input-field input[type=tel]:focus + label, .input-field input[type=number]:focus + label, .input-field input[type=search]:focus + label, .input-field textarea:focus.materialize-textarea + label {
3860
+ color: #26a69a; }
3861
+ .input-field input[type=text].valid, .input-field input[type=password].valid, .input-field input[type=email].valid, .input-field input[type=url].valid, .input-field input[type=date].valid, .input-field input[type=tel].valid, .input-field input[type=number].valid, .input-field input[type=search].valid, .input-field textarea.materialize-textarea.valid {
3862
+ border-bottom: 1px solid #4CAF50;
3863
+ -webkit-box-shadow: 0 1px 0 0 #4CAF50;
3864
+ -moz-box-shadow: 0 1px 0 0 #4CAF50;
3865
+ box-shadow: 0 1px 0 0 #4CAF50; }
3866
+ .input-field input[type=text].invalid, .input-field input[type=password].invalid, .input-field input[type=email].invalid, .input-field input[type=url].invalid, .input-field input[type=date].invalid, .input-field input[type=tel].invalid, .input-field input[type=number].invalid, .input-field input[type=search].invalid, .input-field textarea.materialize-textarea.invalid {
3867
+ border-bottom: 1px solid #F44336;
3868
+ -webkit-box-shadow: 0 1px 0 0 #F44336;
3869
+ -moz-box-shadow: 0 1px 0 0 #F44336;
3870
+ box-shadow: 0 1px 0 0 #F44336; }
3871
+ .input-field .prefix {
3872
+ position: absolute;
3873
+ width: 3rem;
3874
+ font-size: 2rem;
3875
+ -webkit-transition: color 0.2s;
3876
+ -moz-transition: color 0.2s;
3877
+ -o-transition: color 0.2s;
3878
+ -ms-transition: color 0.2s;
3879
+ transition: color 0.2s; }
3880
+ .input-field .prefix.active {
3881
+ color: #26a69a; }
3882
+ .input-field .prefix ~ input, .input-field .prefix ~ textarea {
3883
+ margin-left: 3rem;
3884
+ width: 92%;
3885
+ width: calc(100% - 3rem); }
3886
+ .input-field .prefix ~ textarea {
3887
+ padding-top: 0.8rem; }
3888
+ .input-field .prefix ~ label {
3889
+ margin-left: 3rem; }
3890
+ @media only screen and (max-width : 992px) {
3891
+ .input-field .prefix ~ input {
3892
+ width: 86%;
3893
+ width: calc(100% - 3rem); }
3894
+ }
3895
+ @media only screen and (max-width : 600px) {
3896
+ .input-field .prefix ~ input {
3897
+ width: 80%;
3898
+ width: calc(100% - 3rem); }
3899
+ }
3900
+
3901
+ textarea {
3902
+ width: 100%;
3903
+ height: 3rem;
3904
+ background-color: transparent; }
3905
+
3906
+ input[type=text], input[type=password], input[type=email], input[type=url], input[type=date], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
3907
+ background-color: transparent;
3908
+ border: none;
3909
+ border-bottom: 1px solid #9e9e9e;
3910
+ outline: none;
3911
+ height: 3rem;
3912
+ width: 80%;
3913
+ font-size: 1rem;
3914
+ margin: 0 0 15px 0;
3915
+ padding: 0;
3916
+ -webkit-box-shadow: none;
3917
+ -moz-box-shadow: none;
3918
+ box-shadow: none;
3919
+ -webkit-box-sizing: content-box;
3920
+ -moz-box-sizing: content-box;
3921
+ box-sizing: content-box;
3922
+ -webkit-transition: 0.3s;
3923
+ -moz-transition: 0.3s;
3924
+ -o-transition: 0.3s;
3925
+ -ms-transition: 0.3s;
3926
+ transition: 0.3s; }
3927
+
3928
+ input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=url]:focus, input[type=date]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=search]:focus, textarea:focus.materialize-textarea {
3929
+ border-bottom: 1px solid #26a69a;
3930
+ -webkit-box-shadow: 0 1px 0 0 #26a69a;
3931
+ -moz-box-shadow: 0 1px 0 0 #26a69a;
3932
+ box-shadow: 0 1px 0 0 #26a69a; }
3933
+
3934
+ textarea.materialize-textarea {
3935
+ overflow-y: hidden;
3936
+ /* prevents scroll bar flash */
3937
+ padding: 1.6rem 0;
3938
+ /* prevents text jump on Enter keypress */
3939
+ resize: none;
3940
+ min-height: 3rem; }
3941
+
3942
+ .hiddendiv {
3943
+ display: none;
3944
+ white-space: pre-wrap;
3945
+ word-wrap: break-word;
3946
+ overflow-wrap: break-word;
3947
+ /* future version of deprecated 'word-wrap' */
3948
+ padding-top: 1.2rem;
3949
+ /* prevents text jump on Enter keypress */ }
3950
+
3951
+ /***************
3952
+ Radio Buttons
3953
+ ***************/
3954
+ /* Remove default Radio Buttons */
3955
+ [type="radio"]:not(:checked), [type="radio"]:checked {
3956
+ position: absolute;
3957
+ left: -9999px; }
3958
+
3959
+ [type="radio"]:not(:checked) + label, [type="radio"]:checked + label {
3960
+ position: relative;
3961
+ padding-left: 35px;
3962
+ cursor: pointer;
3963
+ display: inline-block;
3964
+ height: 25px;
3965
+ line-height: 25px;
3966
+ font-size: 1rem;
3967
+ -webkit-transition: 0.28s ease;
3968
+ -moz-transition: 0.28s ease;
3969
+ -o-transition: 0.28s ease;
3970
+ -ms-transition: 0.28s ease;
3971
+ transition: 0.28s ease;
3972
+ -webkit-user-select: none;
3973
+ /* webkit (safari, chrome) browsers */
3974
+ -moz-user-select: none;
3975
+ /* mozilla browsers */
3976
+ -khtml-user-select: none;
3977
+ /* webkit (konqueror) browsers */
3978
+ -ms-user-select: none;
3979
+ /* IE10+ */ }
3980
+
3981
+ [type="radio"] + label:before, [type="radio"] + label:after {
3982
+ content: '';
3983
+ position: absolute;
3984
+ left: 0px;
3985
+ top: 0px;
3986
+ margin: 4px;
3987
+ width: 16px;
3988
+ height: 16px;
3989
+ z-index: 0;
3990
+ -webkit-transition: 0.28s ease;
3991
+ -moz-transition: 0.28s ease;
3992
+ -o-transition: 0.28s ease;
3993
+ -ms-transition: 0.28s ease;
3994
+ transition: 0.28s ease; }
3995
+
3996
+ /* Unchecked styles */
3997
+ [type="radio"]:not(:checked) + label:before {
3998
+ border-radius: 50%;
3999
+ border: 2px solid #5a5a5a; }
4000
+
4001
+ [type="radio"]:not(:checked) + label:after {
4002
+ border-radius: 50%;
4003
+ border: 2px solid #5a5a5a;
4004
+ z-index: -1;
4005
+ -webkit-transform: scale(0);
4006
+ -moz-transform: scale(0);
4007
+ -ms-transform: scale(0);
4008
+ -o-transform: scale(0);
4009
+ transform: scale(0); }
4010
+
4011
+ /* Checked styles */
4012
+ [type="radio"]:checked + label:before {
4013
+ border-radius: 50%;
4014
+ border: 2px solid transparent; }
4015
+
4016
+ [type="radio"]:checked + label:after {
4017
+ border-radius: 50%;
4018
+ border: 2px solid #26a69a;
4019
+ background-color: #26a69a;
4020
+ z-index: 0;
4021
+ -webkit-transform: scale(1.02);
4022
+ -moz-transform: scale(1.02);
4023
+ -ms-transform: scale(1.02);
4024
+ -o-transform: scale(1.02);
4025
+ transform: scale(1.02); }
4026
+
4027
+ /* Radio With gap */
4028
+ [type="radio"].with-gap:checked + label:before {
4029
+ border-radius: 50%;
4030
+ border: 2px solid #26a69a; }
4031
+
4032
+ [type="radio"].with-gap:checked + label:after {
4033
+ border-radius: 50%;
4034
+ border: 2px solid #26a69a;
4035
+ background-color: #26a69a;
4036
+ z-index: 0;
4037
+ -webkit-transform: scale(0.5);
4038
+ -moz-transform: scale(0.5);
4039
+ -ms-transform: scale(0.5);
4040
+ -o-transform: scale(0.5);
4041
+ transform: scale(0.5); }
4042
+
4043
+ /* Disabled style */
4044
+ [type="radio"]:disabled:not(:checked) + label:before, [type="radio"]:disabled:checked + label:before {
4045
+ background-color: transparent;
4046
+ border-color: rgba(0, 0, 0, 0.26); }
4047
+
4048
+ [type="radio"]:disabled + label {
4049
+ color: rgba(0, 0, 0, 0.26); }
4050
+
4051
+ [type="radio"]:disabled:not(:checked) + label:hover:before {
4052
+ border-color: rgba(0, 0, 0, 0.26); }
4053
+
4054
+ /***************
4055
+ Checkboxes
4056
+ ***************/
4057
+ /* CUSTOM CSS CHECKBOXES */
4058
+ form p {
4059
+ margin-bottom: 10px;
4060
+ text-align: left; }
4061
+
4062
+ form p:last-child {
4063
+ margin-bottom: 0px; }
4064
+
4065
+ /* Remove default checkbox */
4066
+ [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
4067
+ position: absolute;
4068
+ left: -9999px; }
4069
+
4070
+ [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
4071
+ position: relative;
4072
+ padding-left: 35px;
4073
+ cursor: pointer;
4074
+ display: inline-block;
4075
+ height: 25px;
4076
+ line-height: 25px;
4077
+ font-size: 1rem;
4078
+ -webkit-user-select: none;
4079
+ /* webkit (safari, chrome) browsers */
4080
+ -moz-user-select: none;
4081
+ /* mozilla browsers */
4082
+ -khtml-user-select: none;
4083
+ /* webkit (konqueror) browsers */
4084
+ -ms-user-select: none;
4085
+ /* IE10+ */ }
4086
+
4087
+ /* checkbox aspect */
4088
+ [type="checkbox"] + label:before {
4089
+ content: '';
4090
+ position: absolute;
4091
+ margin-top: 2px;
4092
+ left: 0;
4093
+ z-index: 0;
4094
+ -webkit-border-radius: 1px;
4095
+ -moz-border-radius: 1px;
4096
+ border-radius: 1px;
4097
+ background-clip: padding-box;
4098
+ -webkit-transition: 0.2s;
4099
+ -moz-transition: 0.2s;
4100
+ -o-transition: 0.2s;
4101
+ -ms-transition: 0.2s;
4102
+ transition: 0.2s; }
4103
+
4104
+ /* Unchecked styles */
4105
+ [type="checkbox"]:not(:checked) + label:before {
4106
+ top: 0px;
4107
+ width: 18px;
4108
+ height: 18px;
4109
+ border: 2px solid #5a5a5a; }
4110
+
4111
+ /* Checked styles */
4112
+ [type="checkbox"]:checked + label:before {
4113
+ left: -3px;
4114
+ top: -4px;
4115
+ width: 12px;
4116
+ height: 22px;
4117
+ border-top: 2px solid transparent;
4118
+ border-left: 2px solid transparent;
4119
+ border-right: 2px solid #26a69a;
4120
+ border-bottom: 2px solid #26a69a;
4121
+ -webkit-transform: rotateZ(40deg);
4122
+ -moz-transform: rotateZ(40deg);
4123
+ -ms-transform: rotateZ(40deg);
4124
+ -o-transform: rotateZ(40deg);
4125
+ transform: rotateZ(40deg);
4126
+ -webkit-backface-visibility: hidden;
4127
+ -webkit-transform-origin: 100% 100%;
4128
+ -moz-transform-origin: 100% 100%;
4129
+ -ms-transform-origin: 100% 100%;
4130
+ -o-transform-origin: 100% 100%;
4131
+ transform-origin: 100% 100%; }
4132
+
4133
+ /* disabled checkbox */
4134
+ [type="checkbox"]:disabled:not(:checked) + label:before {
4135
+ top: 0;
4136
+ left: 0;
4137
+ box-shadow: none;
4138
+ background-color: rgba(0, 0, 0, 0.26);
4139
+ width: 18px;
4140
+ height: 18px;
4141
+ border: 2px solid rgba(0, 0, 0, 0.26);
4142
+ -webkit-transform: rotateZ(0deg);
4143
+ -moz-transform: rotateZ(0deg);
4144
+ -ms-transform: rotateZ(0deg);
4145
+ -o-transform: rotateZ(0deg);
4146
+ transform: rotateZ(0deg); }
4147
+
4148
+ [type="checkbox"]:disabled:checked + label:before {
4149
+ left: -3px;
4150
+ top: -4px;
4151
+ width: 12px;
4152
+ height: 22px;
4153
+ border-top: 2px solid transparent;
4154
+ border-left: 2px solid transparent;
4155
+ border-right: 2px solid rgba(0, 0, 0, 0.26);
4156
+ border-bottom: 2px solid rgba(0, 0, 0, 0.26);
4157
+ -webkit-transform: rotateZ(40deg);
4158
+ -moz-transform: rotateZ(40deg);
4159
+ -ms-transform: rotateZ(40deg);
4160
+ -o-transform: rotateZ(40deg);
4161
+ transform: rotateZ(40deg);
4162
+ -webkit-backface-visibility: hidden;
4163
+ -webkit-transform-origin: 100% 100%;
4164
+ -moz-transform-origin: 100% 100%;
4165
+ -ms-transform-origin: 100% 100%;
4166
+ -o-transform-origin: 100% 100%;
4167
+ transform-origin: 100% 100%; }
4168
+
4169
+ [type="checkbox"]:disabled:checked + label {
4170
+ color: rgba(0, 0, 0, 0.26); }
4171
+
4172
+ [type="checkbox"]:disabled:not(:checked) + label:hover:before {
4173
+ border-color: rgba(0, 0, 0, 0.26); }
4174
+
4175
+ /***************
4176
+ Switch
4177
+ ***************/
4178
+ .switch, .switch * {
4179
+ -webkit-user-select: none;
4180
+ -moz-user-select: none;
4181
+ -ms-user-select: none; }
4182
+
4183
+ .switch label {
4184
+ cursor: pointer; }
4185
+
4186
+ .switch label input[type=checkbox] {
4187
+ opacity: 0;
4188
+ width: 0;
4189
+ height: 0; }
4190
+
4191
+ .switch label input[type=checkbox]:checked + .lever {
4192
+ background-color: #84c7c1; }
4193
+
4194
+ .switch label input[type=checkbox]:checked + .lever:after {
4195
+ background-color: #26a69a; }
4196
+
4197
+ .switch label .lever {
4198
+ content: "";
4199
+ display: inline-block;
4200
+ position: relative;
4201
+ width: 40px;
4202
+ height: 15px;
4203
+ background-color: #818181;
4204
+ border-radius: 15px;
4205
+ margin-right: 10px;
4206
+ transition: background 0.3s ease;
4207
+ vertical-align: middle;
4208
+ margin: 0px 16px; }
4209
+
4210
+ .switch label .lever:after {
4211
+ content: "";
4212
+ position: absolute;
4213
+ display: inline-block;
4214
+ width: 21px;
4215
+ height: 21px;
4216
+ background-color: #F1F1F1;
4217
+ border-radius: 21px;
4218
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
4219
+ left: -5px;
4220
+ top: -3px;
4221
+ transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease; }
4222
+
4223
+ input[type=checkbox]:checked:not(:disabled) ~ .lever:active:after {
4224
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1); }
4225
+
4226
+ input[type=checkbox]:not(:disabled) ~ .lever:active:after {
4227
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08); }
4228
+
4229
+ .switch label input[type=checkbox]:checked + .lever:after {
4230
+ left: 24px; }
4231
+
4232
+ .switch input[type=checkbox][disabled] + .lever {
4233
+ cursor: default; }
4234
+
4235
+ .switch label input[type=checkbox][disabled] + .lever:after, .switch label input[type=checkbox][disabled]:checked + .lever:after {
4236
+ background-color: #BDBDBD; }
4237
+
4238
+ /***************
4239
+ Select Field
4240
+ ***************/
4241
+ .select-label {
4242
+ position: absolute; }
4243
+
4244
+ .select-wrapper {
4245
+ position: relative;
4246
+ margin-top: 15px; }
4247
+ .select-wrapper input.select-dropdown {
4248
+ position: relative;
4249
+ cursor: pointer;
4250
+ color: #444;
4251
+ background-color: transparent;
4252
+ border: none;
4253
+ border-bottom: 1px solid #9e9e9e;
4254
+ outline: none;
4255
+ height: 3rem;
4256
+ line-height: 3rem;
4257
+ width: 100%;
4258
+ font-size: 1rem;
4259
+ margin: 0 0 15px 0;
4260
+ padding: 0;
4261
+ display: block; }
4262
+ .select-wrapper .mdi-navigation-arrow-drop-down {
4263
+ position: absolute;
4264
+ right: 0;
4265
+ top: 0;
4266
+ font-size: 23px; }
4267
+
4268
+ /*select {
4269
+ display: none; }*/
4270
+
4271
+ select.browser-default {
4272
+ display: block; }
4273
+
4274
+ select:disabled {
4275
+ color: rgba(0, 0, 0, 0.3); }
4276
+
4277
+ .select-wrapper input.select-dropdown:disabled {
4278
+ color: rgba(0, 0, 0, 0.3);
4279
+ border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
4280
+
4281
+ .select-wrapper i {
4282
+ color: rgba(0, 0, 0, 0.3); }
4283
+
4284
+ .select-dropdown li.disabled {
4285
+ color: rgba(0, 0, 0, 0.3); }
4286
+ .select-dropdown li.disabled:hover {
4287
+ background-color: transparent; }
4288
+
4289
+ /*********************
4290
+ File Input
4291
+ **********************/
4292
+ .file-field {
4293
+ position: relative;
4294
+ overflow: hidden; }
4295
+ .file-field input.file-path {
4296
+ margin-left: 100px; }
4297
+ .file-field .btn, .file-field .btn-large {
4298
+ position: absolute;
4299
+ top: 0;
4300
+ height: 3rem;
4301
+ line-height: 3rem; }
4302
+ .file-field span {
4303
+ cursor: pointer; }
4304
+ .file-field input[type=file] {
4305
+ position: absolute;
4306
+ top: 0;
4307
+ right: 0;
4308
+ left: 0;
4309
+ bottom: 0;
4310
+ width: 100%;
4311
+ margin: 0;
4312
+ padding: 0;
4313
+ font-size: 20px;
4314
+ cursor: pointer;
4315
+ opacity: 0;
4316
+ filter: alpha(opacity=0); }
4317
+
4318
+ /***************
4319
+ Range
4320
+ ***************/
4321
+ .range-field {
4322
+ position: relative; }
4323
+
4324
+ input[type=range], input[type=range] + .thumb {
4325
+ cursor: pointer; }
4326
+
4327
+ input[type=range] {
4328
+ position: relative;
4329
+ background-color: transparent;
4330
+ border: none;
4331
+ outline: none;
4332
+ width: 100%;
4333
+ margin: 15px 0px;
4334
+ padding: 0; }
4335
+
4336
+ input[type=range] + .thumb {
4337
+ position: absolute;
4338
+ border: none;
4339
+ height: 0;
4340
+ width: 0;
4341
+ border-radius: 50%;
4342
+ background-color: #26a69a;
4343
+ top: 10px;
4344
+ margin-left: -6px;
4345
+ -webkit-transform-origin: 50% 50%;
4346
+ -moz-transform-origin: 50% 50%;
4347
+ -ms-transform-origin: 50% 50%;
4348
+ -o-transform-origin: 50% 50%;
4349
+ transform-origin: 50% 50%;
4350
+ -webkit-transform: rotate(-45deg);
4351
+ -moz-transform: rotate(-45deg);
4352
+ -ms-transform: rotate(-45deg);
4353
+ -o-transform: rotate(-45deg);
4354
+ transform: rotate(-45deg); }
4355
+ input[type=range] + .thumb .value {
4356
+ display: block;
4357
+ width: 30px;
4358
+ text-align: center;
4359
+ color: #26a69a;
4360
+ font-size: 0px;
4361
+ -webkit-transform: rotate(45deg);
4362
+ -moz-transform: rotate(45deg);
4363
+ -ms-transform: rotate(45deg);
4364
+ -o-transform: rotate(45deg);
4365
+ transform: rotate(45deg); }
4366
+ input[type=range] + .thumb.active {
4367
+ border-radius: 50% 50% 50% 0; }
4368
+ input[type=range] + .thumb.active .value {
4369
+ color: #fff;
4370
+ margin-left: -1px;
4371
+ margin-top: 8px;
4372
+ font-size: 10px; }
4373
+
4374
+ input[type=range]:focus {
4375
+ outline: none; }
4376
+
4377
+ input[type=range] {
4378
+ -webkit-appearance: none; }
4379
+
4380
+ input[type=range]::-webkit-slider-runnable-track {
4381
+ height: 3px;
4382
+ background: #c2c0c2;
4383
+ border: none; }
4384
+
4385
+ input[type=range]::-webkit-slider-thumb {
4386
+ -webkit-appearance: none;
4387
+ border: none;
4388
+ height: 14px;
4389
+ width: 14px;
4390
+ border-radius: 50%;
4391
+ background-color: #26a69a;
4392
+ transform-origin: 50% 50%;
4393
+ margin: -5px 0 0 0;
4394
+ -webkit-transition: 0.3s;
4395
+ -moz-transition: 0.3s;
4396
+ -o-transition: 0.3s;
4397
+ -ms-transition: 0.3s;
4398
+ transition: 0.3s; }
4399
+
4400
+ input[type=range]:focus::-webkit-slider-runnable-track {
4401
+ background: #ccc; }
4402
+
4403
+ input[type=range] {
4404
+ /* fix for FF unable to apply focus style bug */
4405
+ border: 1px solid white;
4406
+ /*required for proper track sizing in FF*/ }
4407
+
4408
+ input[type=range]::-moz-range-track {
4409
+ height: 3px;
4410
+ background: #ddd;
4411
+ border: none; }
4412
+
4413
+ input[type=range]::-moz-range-thumb {
4414
+ border: none;
4415
+ height: 14px;
4416
+ width: 14px;
4417
+ border-radius: 50%;
4418
+ background: #26a69a;
4419
+ margin-top: -5px; }
4420
+
4421
+ /*hide the outline behind the border*/
4422
+ input[type=range]:-moz-focusring {
4423
+ outline: 1px solid white;
4424
+ outline-offset: -1px; }
4425
+
4426
+ input[type=range]:focus::-moz-range-track {
4427
+ background: #ccc; }
4428
+
4429
+ input[type=range]::-ms-track {
4430
+ height: 3px;
4431
+ /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
4432
+ background: transparent;
4433
+ /*leave room for the larger thumb to overflow with a transparent border */
4434
+ border-color: transparent;
4435
+ border-width: 6px 0;
4436
+ /*remove default tick marks*/
4437
+ color: transparent; }
4438
+
4439
+ input[type=range]::-ms-fill-lower {
4440
+ background: #777; }
4441
+
4442
+ input[type=range]::-ms-fill-upper {
4443
+ background: #ddd; }
4444
+
4445
+ input[type=range]::-ms-thumb {
4446
+ border: none;
4447
+ height: 14px;
4448
+ width: 14px;
4449
+ border-radius: 50%;
4450
+ background: #26a69a; }
4451
+
4452
+ input[type=range]:focus::-ms-fill-lower {
4453
+ background: #888; }
4454
+
4455
+ input[type=range]:focus::-ms-fill-upper {
4456
+ background: #ccc; }
4457
+
4458
+ /***************************
4459
+ Text Inputs + Textarea
4460
+ ****************************/
4461
+ /*select {
4462
+ background-color: #fffafa;
4463
+ width: 100%;
4464
+ padding: 5px;
4465
+ border: 1px solid #f2f2f2;
4466
+ border-radius: 2px;
4467
+ height: 3rem; }*/
4468
+
4469
+ /***************
4470
+ Nav List
4471
+ ***************/
4472
+ ul.table-of-contents.fixed {
4473
+ position: fixed; }
4474
+ ul.table-of-contents li {
4475
+ padding: 2px 0; }
4476
+ ul.table-of-contents a {
4477
+ display: inline-block;
4478
+ font-weight: 300;
4479
+ color: #757575;
4480
+ padding-left: 20px;
4481
+ height: 1.5rem;
4482
+ line-height: 1.5rem;
4483
+ letter-spacing: 0.4;
4484
+ display: inline-block; }
4485
+ ul.table-of-contents a:hover {
4486
+ color: #a8a8a8;
4487
+ padding-left: 19px;
4488
+ border-left: 1px solid #ea4a4f; }
4489
+ ul.table-of-contents a.active {
4490
+ font-weight: 500;
4491
+ padding-left: 18px;
4492
+ border-left: 2px solid #ea4a4f; }
4493
+
4494
+ ul.side-nav {
4495
+ position: fixed;
4496
+ width: 240px;
4497
+ left: -105%;
4498
+ top: 0;
4499
+ margin: 0;
4500
+ height: 100%;
4501
+ height: calc(100% + 60px);
4502
+ padding-bottom: 60px;
4503
+ background-color: #FFF;
4504
+ z-index: 999;
4505
+ will-change: left; }
4506
+ ul.side-nav.right-aligned {
4507
+ will-change: right;
4508
+ right: -105%;
4509
+ left: auto; }
4510
+ ul.side-nav .collapsible {
4511
+ margin: 0; }
4512
+ ul.side-nav li {
4513
+ float: none;
4514
+ padding: 0 15px; }
4515
+ ul.side-nav li:hover, ul.side-nav li.active {
4516
+ background-color: #ddd; }
4517
+ ul.side-nav a {
4518
+ color: #444; }
4519
+
4520
+ .drag-target {
4521
+ height: 100%;
4522
+ width: 10px;
4523
+ position: fixed;
4524
+ top: 0;
4525
+ z-index: 998; }
4526
+
4527
+ ul.side-nav.fixed a {
4528
+ display: block;
4529
+ padding: 0 15px;
4530
+ color: #444; }
4531
+
4532
+ ul.side-nav.fixed {
4533
+ left: 0;
4534
+ position: fixed; }
4535
+ ul.side-nav.fixed.right-aligned {
4536
+ right: 0;
4537
+ left: auto; }
4538
+
4539
+ @media only screen and (max-width : 992px) {
4540
+ ul.side-nav.fixed {
4541
+ left: -105%; }
4542
+ ul.side-nav.fixed.right-aligned {
4543
+ right: -105%;
4544
+ left: auto; }
4545
+ }
4546
+
4547
+ ul.side-nav .collapsible-body li.active, ul.side-nav.fixed .collapsible-body li.active {
4548
+ background-color: #ee6e73; }
4549
+ ul.side-nav .collapsible-body li.active a, ul.side-nav.fixed .collapsible-body li.active a {
4550
+ color: #fff; }
4551
+
4552
+ #sidenav-overlay {
4553
+ position: fixed;
4554
+ top: 0px;
4555
+ left: 0px;
4556
+ right: 0px;
4557
+ height: 120vh;
4558
+ background-color: rgba(0, 0, 0, 0.5);
4559
+ z-index: 997;
4560
+ will-change: opacity; }
4561
+
4562
+ /*
4563
+ @license
4564
+ Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4565
+ This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4566
+ The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
4567
+ The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
4568
+ Code distributed by Google as part of the polymer project is also
4569
+ subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
4570
+ */
4571
+ /**************************/
4572
+ /* STYLES FOR THE SPINNER */
4573
+ /**************************/
4574
+ /*
4575
+ * Constants:
4576
+ * STROKEWIDTH = 3px
4577
+ * ARCSIZE = 270 degrees (amount of circle the arc takes up)
4578
+ * ARCTIME = 1333ms (time it takes to expand and contract arc)
4579
+ * ARCSTARTROT = 216 degrees (how much the start location of the arc
4580
+ * should rotate each time, 216 gives us a
4581
+ * 5 pointed star shape (it's 360/5 * 3).
4582
+ * For a 7 pointed star, we might do
4583
+ * 360/7 * 3 = 154.286)
4584
+ * CONTAINERWIDTH = 28px
4585
+ * SHRINK_TIME = 400ms
4586
+ */
4587
+ .preloader-wrapper {
4588
+ display: inline-block;
4589
+ position: relative;
4590
+ width: 48px;
4591
+ height: 48px; }
4592
+ .preloader-wrapper.small {
4593
+ width: 36px;
4594
+ height: 36px; }
4595
+ .preloader-wrapper.big {
4596
+ width: 64px;
4597
+ height: 64px; }
4598
+ .preloader-wrapper.active {
4599
+ /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
4600
+ -webkit-animation: container-rotate 1568ms linear infinite;
4601
+ animation: container-rotate 1568ms linear infinite; }
4602
+
4603
+ @-webkit-keyframes container-rotate {
4604
+ to {
4605
+ -webkit-transform: rotate(360deg); } }
4606
+
4607
+ @keyframes container-rotate {
4608
+ to {
4609
+ transform: rotate(360deg); } }
4610
+
4611
+ .spinner-layer {
4612
+ position: absolute;
4613
+ width: 100%;
4614
+ height: 100%;
4615
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
4616
+ filter: "alpha(opacity=(${iefactor}))";
4617
+ -moz-opacity: 0;
4618
+ -khtml-opacity: 0;
4619
+ opacity: 0; }
4620
+
4621
+ .spinner-blue, .spinner-blue-only {
4622
+ border-color: #4285f4; }
4623
+
4624
+ .spinner-red, .spinner-red-only {
4625
+ border-color: #db4437; }
4626
+
4627
+ .spinner-yellow, .spinner-yellow-only {
4628
+ border-color: #f4b400; }
4629
+
4630
+ .spinner-green, .spinner-green-only {
4631
+ border-color: #0f9d58; }
4632
+
4633
+ /**
4634
+ * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
4635
+ *
4636
+ * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
4637
+ * guarantee that the animation will start _exactly_ after that value. So we avoid using
4638
+ * animation-delay and instead set custom keyframes for each color (as redundant as it
4639
+ * seems).
4640
+ *
4641
+ * We write out each animation in full (instead of separating animation-name,
4642
+ * animation-duration, etc.) because under the polyfill, Safari does not recognize those
4643
+ * specific properties properly, treats them as -webkit-animation, and overrides the
4644
+ * other animation rules. See https://github.com/Polymer/platform/issues/53.
4645
+ */
4646
+ .active .spinner-layer.spinner-blue {
4647
+ /* durations: 4 * ARCTIME */
4648
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4649
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4650
+
4651
+ .active .spinner-layer.spinner-red {
4652
+ /* durations: 4 * ARCTIME */
4653
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4654
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4655
+
4656
+ .active .spinner-layer.spinner-yellow {
4657
+ /* durations: 4 * ARCTIME */
4658
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4659
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4660
+
4661
+ .active .spinner-layer.spinner-green {
4662
+ /* durations: 4 * ARCTIME */
4663
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4664
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4665
+
4666
+ .active .spinner-layer.spinner-blue-only, .active .spinner-layer.spinner-red-only, .active .spinner-layer.spinner-yellow-only, .active .spinner-layer.spinner-green-only {
4667
+ /* durations: 4 * ARCTIME */
4668
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
4669
+ filter: "alpha(opacity=(${iefactor}))";
4670
+ -moz-opacity: 1;
4671
+ -khtml-opacity: 1;
4672
+ opacity: 1;
4673
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4674
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4675
+
4676
+ @-webkit-keyframes fill-unfill-rotate {
4677
+ /* 0.5 * ARCSIZE */
4678
+ /* 1 * ARCSIZE */
4679
+ /* 1.5 * ARCSIZE */
4680
+ /* 2 * ARCSIZE */
4681
+ /* 2.5 * ARCSIZE */
4682
+ /* 3 * ARCSIZE */
4683
+ /* 3.5 * ARCSIZE */
4684
+ /* 4 * ARCSIZE */
4685
+ 12.5% {
4686
+ -webkit-transform: rotate(135deg); }
4687
+
4688
+ 25% {
4689
+ -webkit-transform: rotate(270deg); }
4690
+
4691
+ 37.5% {
4692
+ -webkit-transform: rotate(405deg); }
4693
+
4694
+ 50% {
4695
+ -webkit-transform: rotate(540deg); }
4696
+
4697
+ 62.5% {
4698
+ -webkit-transform: rotate(675deg); }
4699
+
4700
+ 75% {
4701
+ -webkit-transform: rotate(810deg); }
4702
+
4703
+ 87.5% {
4704
+ -webkit-transform: rotate(945deg); }
4705
+
4706
+ to {
4707
+ -webkit-transform: rotate(1080deg); } }
4708
+
4709
+ @keyframes fill-unfill-rotate {
4710
+ /* 0.5 * ARCSIZE */
4711
+ /* 1 * ARCSIZE */
4712
+ /* 1.5 * ARCSIZE */
4713
+ /* 2 * ARCSIZE */
4714
+ /* 2.5 * ARCSIZE */
4715
+ /* 3 * ARCSIZE */
4716
+ /* 3.5 * ARCSIZE */
4717
+ /* 4 * ARCSIZE */
4718
+ 12.5% {
4719
+ transform: rotate(135deg); }
4720
+
4721
+ 25% {
4722
+ transform: rotate(270deg); }
4723
+
4724
+ 37.5% {
4725
+ transform: rotate(405deg); }
4726
+
4727
+ 50% {
4728
+ transform: rotate(540deg); }
4729
+
4730
+ 62.5% {
4731
+ transform: rotate(675deg); }
4732
+
4733
+ 75% {
4734
+ transform: rotate(810deg); }
4735
+
4736
+ 87.5% {
4737
+ transform: rotate(945deg); }
4738
+
4739
+ to {
4740
+ transform: rotate(1080deg); } }
4741
+
4742
+ @-webkit-keyframes blue-fade-in-out {
4743
+ from {
4744
+ opacity: 1; }
4745
+
4746
+ 25% {
4747
+ opacity: 1; }
4748
+
4749
+ 26% {
4750
+ opacity: 0; }
4751
+
4752
+ 89% {
4753
+ opacity: 0; }
4754
+
4755
+ 90% {
4756
+ opacity: 1; }
4757
+
4758
+ 100% {
4759
+ opacity: 1; } }
4760
+
4761
+ @keyframes blue-fade-in-out {
4762
+ from {
4763
+ opacity: 1; }
4764
+
4765
+ 25% {
4766
+ opacity: 1; }
4767
+
4768
+ 26% {
4769
+ opacity: 0; }
4770
+
4771
+ 89% {
4772
+ opacity: 0; }
4773
+
4774
+ 90% {
4775
+ opacity: 1; }
4776
+
4777
+ 100% {
4778
+ opacity: 1; } }
4779
+
4780
+ @-webkit-keyframes red-fade-in-out {
4781
+ from {
4782
+ opacity: 0; }
4783
+
4784
+ 15% {
4785
+ opacity: 0; }
4786
+
4787
+ 25% {
4788
+ opacity: 1; }
4789
+
4790
+ 50% {
4791
+ opacity: 1; }
4792
+
4793
+ 51% {
4794
+ opacity: 0; } }
4795
+
4796
+ @keyframes red-fade-in-out {
4797
+ from {
4798
+ opacity: 0; }
4799
+
4800
+ 15% {
4801
+ opacity: 0; }
4802
+
4803
+ 25% {
4804
+ opacity: 1; }
4805
+
4806
+ 50% {
4807
+ opacity: 1; }
4808
+
4809
+ 51% {
4810
+ opacity: 0; } }
4811
+
4812
+ @-webkit-keyframes yellow-fade-in-out {
4813
+ from {
4814
+ opacity: 0; }
4815
+
4816
+ 40% {
4817
+ opacity: 0; }
4818
+
4819
+ 50% {
4820
+ opacity: 1; }
4821
+
4822
+ 75% {
4823
+ opacity: 1; }
4824
+
4825
+ 76% {
4826
+ opacity: 0; } }
4827
+
4828
+ @keyframes yellow-fade-in-out {
4829
+ from {
4830
+ opacity: 0; }
4831
+
4832
+ 40% {
4833
+ opacity: 0; }
4834
+
4835
+ 50% {
4836
+ opacity: 1; }
4837
+
4838
+ 75% {
4839
+ opacity: 1; }
4840
+
4841
+ 76% {
4842
+ opacity: 0; } }
4843
+
4844
+ @-webkit-keyframes green-fade-in-out {
4845
+ from {
4846
+ opacity: 0; }
4847
+
4848
+ 65% {
4849
+ opacity: 0; }
4850
+
4851
+ 75% {
4852
+ opacity: 1; }
4853
+
4854
+ 90% {
4855
+ opacity: 1; }
4856
+
4857
+ 100% {
4858
+ opacity: 0; } }
4859
+
4860
+ @keyframes green-fade-in-out {
4861
+ from {
4862
+ opacity: 0; }
4863
+
4864
+ 65% {
4865
+ opacity: 0; }
4866
+
4867
+ 75% {
4868
+ opacity: 1; }
4869
+
4870
+ 90% {
4871
+ opacity: 1; }
4872
+
4873
+ 100% {
4874
+ opacity: 0; } }
4875
+
4876
+ /**
4877
+ * Patch the gap that appear between the two adjacent div.circle-clipper while the
4878
+ * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
4879
+ */
4880
+ .gap-patch {
4881
+ position: absolute;
4882
+ box-sizing: border-box;
4883
+ top: 0;
4884
+ left: 45%;
4885
+ width: 10%;
4886
+ height: 100%;
4887
+ overflow: hidden;
4888
+ border-color: inherit; }
4889
+
4890
+ .gap-patch .circle {
4891
+ width: 1000%;
4892
+ left: -450%; }
4893
+
4894
+ .circle-clipper {
4895
+ display: inline-block;
4896
+ position: relative;
4897
+ width: 50%;
4898
+ height: 100%;
4899
+ overflow: hidden;
4900
+ border-color: inherit; }
4901
+ .circle-clipper .circle {
4902
+ width: 200%;
4903
+ box-sizing: border-box;
4904
+ height: 100%;
4905
+ border-width: 3px;
4906
+ /* STROKEWIDTH */
4907
+ border-style: solid;
4908
+ border-color: inherit;
4909
+ border-bottom-color: transparent !important;
4910
+ border-radius: 50%;
4911
+ -webkit-animation: none;
4912
+ animation: none;
4913
+ position: absolute;
4914
+ top: 0;
4915
+ right: 0;
4916
+ bottom: 0; }
4917
+ .circle-clipper.left .circle {
4918
+ left: 0;
4919
+ border-right-color: transparent !important;
4920
+ -webkit-transform: rotate(129deg);
4921
+ transform: rotate(129deg); }
4922
+ .circle-clipper.right .circle {
4923
+ left: -100%;
4924
+ border-left-color: transparent !important;
4925
+ -webkit-transform: rotate(-129deg);
4926
+ transform: rotate(-129deg); }
4927
+
4928
+ .active .circle-clipper.left .circle {
4929
+ /* duration: ARCTIME */
4930
+ -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4931
+ animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4932
+
4933
+ .active .circle-clipper.right .circle {
4934
+ /* duration: ARCTIME */
4935
+ -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
4936
+ animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
4937
+
4938
+ @-webkit-keyframes left-spin {
4939
+ from {
4940
+ -webkit-transform: rotate(130deg); }
4941
+
4942
+ 50% {
4943
+ -webkit-transform: rotate(-5deg); }
4944
+
4945
+ to {
4946
+ -webkit-transform: rotate(130deg); } }
4947
+
4948
+ @keyframes left-spin {
4949
+ from {
4950
+ transform: rotate(130deg); }
4951
+
4952
+ 50% {
4953
+ transform: rotate(-5deg); }
4954
+
4955
+ to {
4956
+ transform: rotate(130deg); } }
4957
+
4958
+ @-webkit-keyframes right-spin {
4959
+ from {
4960
+ -webkit-transform: rotate(-130deg); }
4961
+
4962
+ 50% {
4963
+ -webkit-transform: rotate(5deg); }
4964
+
4965
+ to {
4966
+ -webkit-transform: rotate(-130deg); } }
4967
+
4968
+ @keyframes right-spin {
4969
+ from {
4970
+ transform: rotate(-130deg); }
4971
+
4972
+ 50% {
4973
+ transform: rotate(5deg); }
4974
+
4975
+ to {
4976
+ transform: rotate(-130deg); } }
4977
+
4978
+ #spinnerContainer.cooldown {
4979
+ /* duration: SHRINK_TIME */
4980
+ -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
4981
+ animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }
4982
+
4983
+ @-webkit-keyframes fade-out {
4984
+ from {
4985
+ opacity: 1; }
4986
+
4987
+ to {
4988
+ opacity: 0; } }
4989
+
4990
+ @keyframes fade-out {
4991
+ from {
4992
+ opacity: 1; }
4993
+
4994
+ to {
4995
+ opacity: 0; } }
4996
+
4997
+ .slider {
4998
+ position: relative;
4999
+ height: 440px;
5000
+ width: 100%; }
5001
+ .slider.fullscreen {
5002
+ height: 100%;
5003
+ width: 100%;
5004
+ position: absolute;
5005
+ top: 0;
5006
+ left: 0;
5007
+ right: 0;
5008
+ bottom: 0; }
5009
+ .slider.fullscreen ul.slides {
5010
+ height: 100%; }
5011
+ .slider.fullscreen ul.indicators {
5012
+ z-index: 2;
5013
+ bottom: 30px; }
5014
+ .slider ul.slides {
5015
+ background-color: #9e9e9e;
5016
+ margin: 0;
5017
+ height: 400px; }
5018
+ .slider ul.slides li {
5019
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
5020
+ filter: "alpha(opacity=(${iefactor}))";
5021
+ -moz-opacity: 0;
5022
+ -khtml-opacity: 0;
5023
+ opacity: 0;
5024
+ position: absolute;
5025
+ top: 0;
5026
+ left: 0;
5027
+ z-index: 1;
5028
+ width: 100%;
5029
+ height: inherit;
5030
+ overflow: hidden; }
5031
+ .slider ul.slides li img {
5032
+ height: 100%;
5033
+ width: 100%;
5034
+ background-size: cover;
5035
+ background-position: center; }
5036
+ .slider ul.slides li .caption {
5037
+ color: #fff;
5038
+ position: absolute;
5039
+ top: 15%;
5040
+ left: 15%;
5041
+ width: 70%;
5042
+ -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})";
5043
+ filter: "alpha(opacity=(${iefactor}))";
5044
+ -moz-opacity: 0;
5045
+ -khtml-opacity: 0;
5046
+ opacity: 0; }
5047
+ .slider ul.slides li .caption p {
5048
+ color: #e0e0e0; }
5049
+ .slider ul.slides li.active {
5050
+ z-index: 2; }
5051
+ .slider ul.indicators {
5052
+ position: absolute;
5053
+ text-align: center;
5054
+ left: 0;
5055
+ right: 0;
5056
+ bottom: 0;
5057
+ margin: 0; }
5058
+ .slider ul.indicators li.indicator-item {
5059
+ display: inline-block;
5060
+ position: relative;
5061
+ cursor: pointer;
5062
+ height: 16px;
5063
+ width: 16px;
5064
+ margin: 0 12px;
5065
+ background-color: #e0e0e0;
5066
+ -webkit-transition: background-color 0.3s;
5067
+ -moz-transition: background-color 0.3s;
5068
+ -o-transition: background-color 0.3s;
5069
+ -ms-transition: background-color 0.3s;
5070
+ transition: background-color 0.3s;
5071
+ -webkit-border-radius: 50%;
5072
+ -moz-border-radius: 50%;
5073
+ border-radius: 50%;
5074
+ background-clip: padding-box; }
5075
+ .slider ul.indicators li.indicator-item.active {
5076
+ background-color: #4CAF50; }
5077
+
5078
+ /* ==========================================================================
5079
+ $BASE-PICKER
5080
+ ========================================================================== */
5081
+ /**
5082
+ * Note: the root picker element should *NOT* be styled more than what's here.
5083
+ */
5084
+ .picker {
5085
+ font-size: 16px;
5086
+ text-align: left;
5087
+ line-height: 1.2;
5088
+ color: #000000;
5089
+ position: absolute;
5090
+ z-index: 10000;
5091
+ -webkit-user-select: none;
5092
+ -moz-user-select: none;
5093
+ -ms-user-select: none;
5094
+ user-select: none; }
5095
+
5096
+ /**
5097
+ * The picker input element.
5098
+ */
5099
+ .picker__input {
5100
+ cursor: default; }
5101
+
5102
+ /**
5103
+ * When the picker is opened, the input element is "activated".
5104
+ */
5105
+ .picker__input.picker__input--active {
5106
+ border-color: #0089ec; }
5107
+
5108
+ /**
5109
+ * The holder is the only "scrollable" top-level container element.
5110
+ */
5111
+ .picker__holder {
5112
+ width: 100%;
5113
+ overflow-y: auto;
5114
+ -webkit-overflow-scrolling: touch; }
5115
+
5116
+ /*!
5117
+ * Default mobile-first, responsive styling for pickadate.js
5118
+ * Demo: http://amsul.github.io/pickadate.js
5119
+ */
5120
+ /**
5121
+ * Note: the root picker element should *NOT* be styled more than what's here.
5122
+ */
5123
+ /**
5124
+ * Make the holder and frame fullscreen.
5125
+ */
5126
+ .picker__holder, .picker__frame {
5127
+ bottom: 0;
5128
+ left: 0;
5129
+ right: 0;
5130
+ top: 100%; }
5131
+
5132
+ /**
5133
+ * The holder should overlay the entire screen.
5134
+ */
5135
+ .picker__holder {
5136
+ position: fixed;
5137
+ -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
5138
+ -moz-transition: background 0.15s ease-out, top 0s 0.15s;
5139
+ transition: background 0.15s ease-out, top 0s 0.15s;
5140
+ -webkit-backface-visibility: hidden; }
5141
+
5142
+ /**
5143
+ * The frame that bounds the box contents of the picker.
5144
+ */
5145
+ .picker__frame {
5146
+ position: absolute;
5147
+ margin: 0 auto;
5148
+ min-width: 256px;
5149
+ max-width: 300px;
5150
+ max-height: 350px;
5151
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
5152
+ filter: alpha(opacity=0);
5153
+ -moz-opacity: 0;
5154
+ opacity: 0;
5155
+ -webkit-transition: all 0.15s ease-out;
5156
+ -moz-transition: all 0.15s ease-out;
5157
+ transition: all 0.15s ease-out; }
5158
+
5159
+ @media (min-height: 28.875em) {
5160
+ .picker__frame {
5161
+ overflow: visible;
5162
+ top: auto;
5163
+ bottom: -100%;
5164
+ max-height: 80%; }
5165
+ }
5166
+
5167
+ @media (min-height: 40.125em) {
5168
+ .picker__frame {
5169
+ margin-bottom: 7.5%; }
5170
+ }
5171
+
5172
+ /**
5173
+ * The wrapper sets the stage to vertically align the box contents.
5174
+ */
5175
+ .picker__wrap {
5176
+ display: table;
5177
+ width: 100%;
5178
+ height: 100%; }
5179
+
5180
+ @media (min-height: 28.875em) {
5181
+ .picker__wrap {
5182
+ display: block; }
5183
+ }
5184
+
5185
+ /**
5186
+ * The box contains all the picker contents.
5187
+ */
5188
+ .picker__box {
5189
+ background: #ffffff;
5190
+ display: table-cell;
5191
+ vertical-align: middle; }
5192
+
5193
+ @media (min-height: 28.875em) {
5194
+ .picker__box {
5195
+ display: block;
5196
+ border: 1px solid #777777;
5197
+ border-top-color: #898989;
5198
+ border-bottom-width: 0;
5199
+ -webkit-border-radius: 5px 5px 0 0;
5200
+ -moz-border-radius: 5px 5px 0 0;
5201
+ border-radius: 5px 5px 0 0;
5202
+ -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
5203
+ -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
5204
+ box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); }
5205
+ }
5206
+
5207
+ /**
5208
+ * When the picker opens...
5209
+ */
5210
+ .picker--opened .picker__holder {
5211
+ top: 0;
5212
+ background: transparent;
5213
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
5214
+ zoom: 1;
5215
+ background: rgba(0, 0, 0, 0.32);
5216
+ -webkit-transition: background 0.15s ease-out;
5217
+ -moz-transition: background 0.15s ease-out;
5218
+ transition: background 0.15s ease-out; }
5219
+
5220
+ .picker--opened .picker__frame {
5221
+ top: 0;
5222
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
5223
+ filter: alpha(opacity=100);
5224
+ -moz-opacity: 1;
5225
+ opacity: 1; }
5226
+
5227
+ @media (min-height: 35.875em) {
5228
+ .picker--opened .picker__frame {
5229
+ top: 10%;
5230
+ bottom: 20% auto; }
5231
+ }
5232
+
5233
+ /**
5234
+ * For `large` screens, transform into an inline picker.
5235
+ */
5236
+ /* ==========================================================================
5237
+ CUSTOM MATERIALIZE STYLES
5238
+ ========================================================================== */
5239
+ .picker__input.picker__input--active {
5240
+ border-color: #E3F2FD; }
5241
+
5242
+ .picker__frame {
5243
+ margin: 0 auto;
5244
+ max-width: 325px; }
5245
+
5246
+ @media (min-height: 38.875em) {
5247
+ .picker--opened .picker__frame {
5248
+ top: 10%;
5249
+ bottom: auto; }
5250
+ }
5251
+
5252
+ /* ==========================================================================
5253
+ $BASE-DATE-PICKER
5254
+ ========================================================================== */
5255
+ /**
5256
+ * The picker box.
5257
+ */
5258
+ .picker__box {
5259
+ padding: 0 1em; }
5260
+
5261
+ /**
5262
+ * The header containing the month and year stuff.
5263
+ */
5264
+ .picker__header {
5265
+ text-align: center;
5266
+ position: relative;
5267
+ margin-top: 0.75em; }
5268
+
5269
+ /**
5270
+ * The month and year labels.
5271
+ */
5272
+ .picker__month, .picker__year {
5273
+ display: inline-block;
5274
+ margin-left: 0.25em;
5275
+ margin-right: 0.25em; }
5276
+
5277
+ /**
5278
+ * The month and year selectors.
5279
+ */
5280
+ .picker__select--month, .picker__select--year {
5281
+ height: 2em;
5282
+ padding: 0.5em;
5283
+ margin-left: 0.25em;
5284
+ margin-right: 0.25em; }
5285
+
5286
+ @media (min-width: 24.5em) {
5287
+ .picker__select--month, .picker__select--year {
5288
+ margin-top: -0.5em; }
5289
+ }
5290
+
5291
+ .picker__select--month.browser-default {
5292
+ display: inline;
5293
+ background-color: #FFFFFF;
5294
+ width: 40%; }
5295
+
5296
+ .picker__select--year.browser-default {
5297
+ display: inline;
5298
+ background-color: #FFFFFF;
5299
+ width: 25%; }
5300
+
5301
+ .picker__select--month:focus, .picker__select--year:focus {
5302
+ border-color: rgba(0, 0, 0, 0.05); }
5303
+
5304
+ /**
5305
+ * The month navigation buttons.
5306
+ */
5307
+ .picker__nav--prev, .picker__nav--next {
5308
+ position: absolute;
5309
+ padding: 0.5em 1.25em;
5310
+ width: 1em;
5311
+ height: 1em;
5312
+ box-sizing: content-box;
5313
+ top: -0.25em; }
5314
+
5315
+ .picker__nav--prev {
5316
+ left: -1em;
5317
+ padding-right: 1.25em; }
5318
+
5319
+ .picker__nav--next {
5320
+ right: -1em;
5321
+ padding-left: 1.25em; }
5322
+
5323
+ .picker__nav--disabled, .picker__nav--disabled:hover, .picker__nav--disabled:before, .picker__nav--disabled:before:hover {
5324
+ cursor: default;
5325
+ background: none;
5326
+ border-right-color: #f5f5f5;
5327
+ border-left-color: #f5f5f5; }
5328
+
5329
+ /**
5330
+ * The calendar table of dates
5331
+ */
5332
+ .picker__table {
5333
+ text-align: center;
5334
+ border-collapse: collapse;
5335
+ border-spacing: 0;
5336
+ table-layout: fixed;
5337
+ font-size: 1rem;
5338
+ width: 100%;
5339
+ margin-top: 0.75em;
5340
+ margin-bottom: 0.5em; }
5341
+
5342
+ .picker__table th, .picker__table td {
5343
+ text-align: center; }
5344
+
5345
+ .picker__table td {
5346
+ margin: 0;
5347
+ padding: 0; }
5348
+
5349
+ /**
5350
+ * The weekday labels
5351
+ */
5352
+ .picker__weekday {
5353
+ width: 14.285714286%;
5354
+ font-size: 0.75em;
5355
+ padding-bottom: 0.25em;
5356
+ color: #999999;
5357
+ font-weight: 500;
5358
+ /* Increase the spacing a tad */ }
5359
+
5360
+ @media (min-height: 33.875em) {
5361
+ .picker__weekday {
5362
+ padding-bottom: 0.5em; }
5363
+ }
5364
+
5365
+ /**
5366
+ * The days on the calendar
5367
+ */
5368
+ .picker__day--today {
5369
+ position: relative;
5370
+ color: #595959;
5371
+ letter-spacing: -0.3;
5372
+ padding: 0.75rem 0;
5373
+ font-weight: 400;
5374
+ border: 1px solid transparent; }
5375
+
5376
+ .picker__day--disabled:before {
5377
+ border-top-color: #aaaaaa; }
5378
+
5379
+ .picker__day--infocus:hover {
5380
+ cursor: pointer;
5381
+ color: #000;
5382
+ font-weight: 500; }
5383
+
5384
+ .picker__day--outfocus {
5385
+ padding: 0.75rem 0;
5386
+ color: #fff; }
5387
+
5388
+ .picker__day--outfocus:hover {
5389
+ cursor: pointer;
5390
+ color: #dddddd;
5391
+ font-weight: 500; }
5392
+
5393
+ .picker__day--highlighted:hover, .picker--focused .picker__day--highlighted {
5394
+ cursor: pointer; }
5395
+
5396
+ .picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
5397
+ border-radius: 50%;
5398
+ -webkit-transform: scale(0.75);
5399
+ -moz-transform: scale(0.75);
5400
+ -ms-transform: scale(0.75);
5401
+ -o-transform: scale(0.75);
5402
+ transform: scale(0.75);
5403
+ background: #0089ec;
5404
+ color: #ffffff; }
5405
+
5406
+ .picker__day--disabled, .picker__day--disabled:hover, .picker--focused .picker__day--disabled {
5407
+ background: #f5f5f5;
5408
+ border-color: #f5f5f5;
5409
+ color: #dddddd;
5410
+ cursor: default; }
5411
+
5412
+ .picker__day--highlighted.picker__day--disabled, .picker__day--highlighted.picker__day--disabled:hover {
5413
+ background: #bbbbbb; }
5414
+
5415
+ /**
5416
+ * The footer containing the "today", "clear", and "close" buttons.
5417
+ */
5418
+ .picker__footer {
5419
+ text-align: center;
5420
+ display: flex;
5421
+ align-items: center;
5422
+ justify-content: space-between; }
5423
+
5424
+ .picker__button--today, .picker__button--clear, .picker__button--close {
5425
+ border: 1px solid #ffffff;
5426
+ background: #ffffff;
5427
+ font-size: 0.8em;
5428
+ padding: 0.66em 0;
5429
+ font-weight: bold;
5430
+ width: 33%;
5431
+ display: inline-block;
5432
+ vertical-align: bottom; }
5433
+
5434
+ .picker__button--today:hover, .picker__button--clear:hover, .picker__button--close:hover {
5435
+ cursor: pointer;
5436
+ color: #000000;
5437
+ background: #b1dcfb;
5438
+ border-bottom-color: #b1dcfb; }
5439
+
5440
+ .picker__button--today:focus, .picker__button--clear:focus, .picker__button--close:focus {
5441
+ background: #b1dcfb;
5442
+ border-color: rgba(0, 0, 0, 0.05);
5443
+ outline: none; }
5444
+
5445
+ .picker__button--today:before, .picker__button--clear:before, .picker__button--close:before {
5446
+ position: relative;
5447
+ display: inline-block;
5448
+ height: 0; }
5449
+
5450
+ .picker__button--today:before, .picker__button--clear:before {
5451
+ content: " ";
5452
+ margin-right: 0.45em; }
5453
+
5454
+ .picker__button--today:before {
5455
+ top: -0.05em;
5456
+ width: 0;
5457
+ border-top: 0.66em solid #0059bc;
5458
+ border-left: 0.66em solid transparent; }
5459
+
5460
+ .picker__button--clear:before {
5461
+ top: -0.25em;
5462
+ width: 0.66em;
5463
+ border-top: 3px solid #ee2200; }
5464
+
5465
+ .picker__button--close:before {
5466
+ content: "\D7";
5467
+ top: -0.1em;
5468
+ vertical-align: top;
5469
+ font-size: 1.1em;
5470
+ margin-right: 0.35em;
5471
+ color: #777777; }
5472
+
5473
+ .picker__button--today[disabled], .picker__button--today[disabled]:hover {
5474
+ background: #f5f5f5;
5475
+ border-color: #f5f5f5;
5476
+ color: #dddddd;
5477
+ cursor: default; }
5478
+
5479
+ .picker__button--today[disabled]:before {
5480
+ border-top-color: #aaaaaa; }
5481
+
5482
+ /* ==========================================================================
5483
+ CUSTOM MATERIALIZE STYLES
5484
+ ========================================================================== */
5485
+ .picker__box {
5486
+ border-radius: 2px;
5487
+ overflow: hidden; }
5488
+
5489
+ .picker__date-display {
5490
+ text-align: center;
5491
+ background-color: #26a69a;
5492
+ color: #fff;
5493
+ padding-bottom: 15px;
5494
+ font-weight: 300; }
5495
+
5496
+ .picker__nav--prev:hover, .picker__nav--next:hover {
5497
+ cursor: pointer;
5498
+ color: #000000;
5499
+ background: #a1ded8; }
5500
+
5501
+ .picker__weekday-display {
5502
+ background-color: #1f897f;
5503
+ padding: 10px;
5504
+ font-weight: 200;
5505
+ letter-spacing: 0.5;
5506
+ font-size: 1rem;
5507
+ margin-bottom: 15px; }
5508
+
5509
+ .picker__month-display {
5510
+ text-transform: uppercase;
5511
+ font-size: 2rem; }
5512
+
5513
+ .picker__day-display {
5514
+ font-size: 4.5rem;
5515
+ font-weight: 400; }
5516
+
5517
+ .picker__year-display {
5518
+ font-size: 1.8rem;
5519
+ color: rgba(255, 255, 255, 0.4); }
5520
+
5521
+ .picker__box {
5522
+ padding: 0; }
5523
+
5524
+ .picker__calendar-container {
5525
+ padding: 0 1rem; }
5526
+ .picker__calendar-container thead {
5527
+ border: none; }
5528
+
5529
+ .picker__table {
5530
+ margin-top: 0;
5531
+ margin-bottom: 0.5em; }
5532
+
5533
+ .picker__day--infocus {
5534
+ color: #595959;
5535
+ letter-spacing: -0.3;
5536
+ padding: 0.75rem 0;
5537
+ font-weight: 400;
5538
+ border: 1px solid transparent; }
5539
+
5540
+ .picker__day.picker__day--today {
5541
+ color: #26a69a; }
5542
+
5543
+ .picker__day.picker__day--today.picker__day--selected {
5544
+ color: #fff; }
5545
+
5546
+ .picker__weekday {
5547
+ font-size: 0.9rem; }
5548
+
5549
+ .picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
5550
+ border-radius: 50%;
5551
+ -webkit-transform: scale(0.9);
5552
+ -moz-transform: scale(0.9);
5553
+ -ms-transform: scale(0.9);
5554
+ -o-transform: scale(0.9);
5555
+ transform: scale(0.9);
5556
+ background-color: #26a69a;
5557
+ color: #ffffff; }
5558
+ .picker__day--selected.picker__day--outfocus, .picker__day--selected:hover.picker__day--outfocus, .picker--focused .picker__day--selected.picker__day--outfocus {
5559
+ background-color: #a1ded8; }
5560
+
5561
+ .picker__footer {
5562
+ text-align: right;
5563
+ padding: 5px 10px; }
5564
+
5565
+ .picker__close, .picker__today {
5566
+ font-size: 1.1rem;
5567
+ padding: 0 1rem;
5568
+ color: #26a69a; }
5569
+
5570
+ .picker__nav--prev:before, .picker__nav--next:before {
5571
+ content: " ";
5572
+ border-top: 0.5em solid transparent;
5573
+ border-bottom: 0.5em solid transparent;
5574
+ border-right: 0.75em solid #676767;
5575
+ width: 0;
5576
+ height: 0;
5577
+ display: block;
5578
+ margin: 0 auto; }
5579
+
5580
+ .picker__nav--next:before {
5581
+ border-right: 0;
5582
+ border-left: 0.75em solid #676767; }
5583
+
5584
+ button.picker__today:focus, button.picker__clear:focus, button.picker__close:focus {
5585
+ background-color: #a1ded8; }
5586
+
5587
+ /* ==========================================================================
5588
+ $BASE-TIME-PICKER
5589
+ ========================================================================== */
5590
+ /**
5591
+ * The list of times.
5592
+ */
5593
+ .picker__list {
5594
+ list-style: none;
5595
+ padding: 0.75em 0 4.2em;
5596
+ margin: 0; }
5597
+
5598
+ /**
5599
+ * The times on the clock.
5600
+ */
5601
+ .picker__list-item {
5602
+ border-bottom: 1px solid #dddddd;
5603
+ border-top: 1px solid #dddddd;
5604
+ margin-bottom: -1px;
5605
+ position: relative;
5606
+ background: #ffffff;
5607
+ padding: 0.75em 1.25em; }
5608
+
5609
+ @media (min-height: 46.75em) {
5610
+ .picker__list-item {
5611
+ padding: 0.5em 1em; }
5612
+ }
5613
+
5614
+ /* Hovered time */
5615
+ .picker__list-item:hover {
5616
+ cursor: pointer;
5617
+ color: #000000;
5618
+ background: #b1dcfb;
5619
+ border-color: #0089ec;
5620
+ z-index: 10; }
5621
+
5622
+ /* Highlighted and hovered/focused time */
5623
+ .picker__list-item--highlighted {
5624
+ border-color: #0089ec;
5625
+ z-index: 10; }
5626
+
5627
+ .picker__list-item--highlighted:hover, .picker--focused .picker__list-item--highlighted {
5628
+ cursor: pointer;
5629
+ color: #000000;
5630
+ background: #b1dcfb; }
5631
+
5632
+ /* Selected and hovered/focused time */
5633
+ .picker__list-item--selected, .picker__list-item--selected:hover, .picker--focused .picker__list-item--selected {
5634
+ background: #0089ec;
5635
+ color: #ffffff;
5636
+ z-index: 10; }
5637
+
5638
+ /* Disabled time */
5639
+ .picker__list-item--disabled, .picker__list-item--disabled:hover, .picker--focused .picker__list-item--disabled {
5640
+ background: #f5f5f5;
5641
+ border-color: #f5f5f5;
5642
+ color: #dddddd;
5643
+ cursor: default;
5644
+ border-color: #dddddd;
5645
+ z-index: auto; }
5646
+
5647
+ /**
5648
+ * The clear button
5649
+ */
5650
+ .picker--time .picker__button--clear {
5651
+ display: block;
5652
+ width: 80%;
5653
+ margin: 1em auto 0;
5654
+ padding: 1em 1.25em;
5655
+ background: none;
5656
+ border: 0;
5657
+ font-weight: 500;
5658
+ font-size: 0.67em;
5659
+ text-align: center;
5660
+ text-transform: uppercase;
5661
+ color: #666; }
5662
+
5663
+ .picker--time .picker__button--clear:hover, .picker--time .picker__button--clear:focus {
5664
+ color: #000000;
5665
+ background: #b1dcfb;
5666
+ background: #ee2200;
5667
+ border-color: #ee2200;
5668
+ cursor: pointer;
5669
+ color: #ffffff;
5670
+ outline: none; }
5671
+
5672
+ .picker--time .picker__button--clear:before {
5673
+ top: -0.25em;
5674
+ color: #666;
5675
+ font-size: 1.25em;
5676
+ font-weight: bold; }
5677
+
5678
+ .picker--time .picker__button--clear:hover:before, .picker--time .picker__button--clear:focus:before {
5679
+ color: #ffffff; }
5680
+
5681
+ /* ==========================================================================
5682
+ $DEFAULT-TIME-PICKER
5683
+ ========================================================================== */
5684
+ /**
5685
+ * The frame the bounds the time picker.
5686
+ */
5687
+ .picker--time .picker__frame {
5688
+ min-width: 256px;
5689
+ max-width: 320px; }
5690
+
5691
+ /**
5692
+ * The picker box.
5693
+ */
5694
+ .picker--time .picker__box {
5695
+ font-size: 1em;
5696
+ background: #f2f2f2;
5697
+ padding: 0; }
5698
+
5699
+ @media (min-height: 40.125em) {
5700
+ .picker--time .picker__box {
5701
+ margin-bottom: 5em; }
5702
+ }
admin/css/style.css CHANGED
@@ -1,1482 +1,1482 @@
1
- @charset "UTF-8";
2
-
3
- @font-face {
4
- font-family: "modula-icons";
5
- src:url("../font/modula/modula-icons.eot");
6
- src:url("../font/modula/modula-icons.eot?#iefix") format("embedded-opentype"),
7
- url("../font/modula/modula-icons.woff") format("woff"),
8
- url("../font/modula/modula-icons.ttf") format("truetype"),
9
- url("../font/modula/modula-icons.svg#modula-icons") format("svg");
10
- font-weight: normal;
11
- font-style: normal;
12
-
13
- }
14
-
15
- @font-face {
16
- font-family: 'Roboto';
17
- src: url('../font/roboto/Roboto-Regular-webfont.eot');
18
- src: url('../font/roboto/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
19
- url('../font/roboto/Roboto-Regular-webfont.woff') format('woff'),
20
- url('../font/roboto/Roboto-Regular-webfont.ttf') format('truetype'),
21
- url('../font/roboto/Roboto-Regular-webfont.svg#robotoregular') format('svg');
22
- font-weight: normal;
23
- font-style: normal;
24
-
25
- }
26
-
27
-
28
-
29
- [data-icon]:before {
30
- font-family: "modula-icons" !important;
31
- content: attr(data-icon);
32
- font-style: normal !important;
33
- font-weight: normal !important;
34
- font-variant: normal !important;
35
- text-transform: none !important;
36
- speak: none;
37
- line-height: 1;
38
- -webkit-font-smoothing: antialiased;
39
- -moz-osx-font-smoothing: grayscale;
40
- }
41
-
42
- [class^="icon-"]:before,
43
- [class*=" icon-"]:before {
44
- font-family: "modula-icons" !important;
45
- font-style: normal !important;
46
- font-weight: normal !important;
47
- font-variant: normal !important;
48
- text-transform: none !important;
49
- speak: none;
50
- line-height: 1;
51
- -webkit-font-smoothing: antialiased;
52
- -moz-osx-font-smoothing: grayscale;
53
- }
54
-
55
- .icon-facebook:before {
56
- content: "a";
57
- }
58
- .icon-pinterest:before {
59
- content: "b";
60
- }
61
- .icon-twitter:before {
62
- content: "c";
63
- }
64
- .icon-google-plus:before {
65
- content: "d";
66
- }
67
- .icon-save-disk:before {
68
- content: "e";
69
- }
70
- .icon-angle-up:before {
71
- content: "f";
72
- }
73
- .icon-plus:before {
74
- content: "g";
75
- }
76
- .icon-check-mark-2:before {
77
- content: "h";
78
- }
79
- .icon-chevron-right:before {
80
- content: "i";
81
- }
82
- .dark-content{
83
- opacity: 0.5;
84
- }
85
- body
86
- {
87
- margin:0px;
88
- padding-bottom: 65px;
89
- float: left;
90
- width: 100%;
91
- overflow: visible!important;
92
- }
93
- .image-size-section
94
- {
95
- margin: 10px;
96
- padding: 5px;
97
- }
98
- strong {
99
- font-weight:700;
100
- }
101
-
102
- /*.shortcode-section
103
- {
104
- margin: 48px 0;
105
- padding-left: 43px;
106
- font-size: 1rem;
107
- }*/
108
-
109
- .image-size-section select{
110
- margin-top: 5px;
111
- width: 100%;
112
- }
113
- .page-footer .progress {
114
- display: none;
115
- }
116
- .hide
117
- {
118
- display: none;
119
- }
120
- .editimage-right
121
- {
122
- float:right;
123
- width:60%;
124
- display: block;
125
- margin-left:5px;
126
- }
127
- #image-panel textarea
128
- {
129
- color:black;
130
- }
131
- #image-panel select:not([name=halign]):not([name=valign])
132
- {
133
- width:100%;
134
- }
135
- #image-panel select
136
- {
137
- color:black;
138
- }
139
- .text-input
140
- {
141
- border:1px solid #aaa;
142
- width: 100%;
143
- display: block;
144
- }
145
- .label-text
146
- {
147
- color:black;
148
- font-size: 1rem;
149
- margin: 0px 5px 0px 0px;
150
- font-weight: bold;
151
- }
152
- .label-panel
153
- {
154
- width: 80px;
155
- float:left;
156
- }
157
- .shortpixel {
158
- display: block;
159
- }
160
- .shortpixel img {
161
- position:relative;
162
- top:5px;
163
- }
164
- .dropdown-menu
165
- {
166
- width: 100%;
167
- }
168
- #modula-wizard {
169
- margin: 40px auto;
170
- padding: 20px;
171
- max-width: 600px;
172
- box-shadow: #ccc 0px 0px 40px;
173
- border-radius: 4px;
174
- background: #fff;
175
- }
176
- #modula-wizard fieldset {
177
- border: 0;
178
- display: none;
179
- }
180
- #modula-wizard fieldset:first-of-type {
181
- display: block;
182
- }
183
- #modula-wizard fieldset select {
184
- height: 3rem;
185
- }
186
- #modula-wizard h1 {
187
- font-size: 32px;
188
- text-transform: uppercase;
189
- text-align: center;
190
- margin: 0;
191
- }
192
- #modula-wizard h1 small {
193
- font-size: 12px;
194
- }
195
- #modula-wizard h2 {
196
- font-size: 16px;
197
- text-transform: uppercase;
198
- text-align: center;
199
- margin: 0;
200
- margin-bottom: 50px;
201
- line-height: 1;
202
- }
203
- #modula-wizard h5 {
204
- margin-bottom: 20px;
205
- }
206
- #modula-wizard .field {
207
- margin-bottom: 40px;
208
- }
209
- #modula-wizard .images {
210
- padding: 10px;
211
- max-height: 300px;
212
- overflow: auto;
213
- }
214
- #modula-wizard .images .tile {
215
- margin: 0 10px 10px 0;
216
- width: 23%;
217
- display: inline-block;
218
- position: relative;
219
- }
220
- #modula-wizard .images .tile img {
221
- width: 100%;
222
- }
223
- #modula-wizard .images .tile a {
224
- position: absolute;
225
- top: -5px;
226
- right: -5px;
227
- z-index: 10;
228
- display: none;
229
- width: 26px;
230
- height: 26px;
231
- line-height: 26px;
232
- }
233
-
234
- #modula-wizard .images .tile a i {
235
- line-height: 26px;
236
- font-size: 1.2rem;
237
- }
238
- #modula-wizard .images .tile:hover a {
239
- display: block;
240
- }
241
- #modula-wizard .images .tile:nth-child(4n) {
242
- margin-right: 0;
243
- }
244
- #modula-wizard footer {
245
- background: transparent;
246
- text-align: right;
247
- }
248
- #modula-wizard footer .prev {
249
- visibility: hidden;
250
- }
251
- #wpcontent {
252
- padding-left: 0;
253
- }
254
- #gallery-list {
255
- margin-top: 2rem;
256
- }
257
- #gallery-list .card {
258
- background-color: #6C838B;
259
- padding: 0;
260
- border: none !important;
261
- }
262
- #gallery-list .card .data {
263
- background-size: cover;
264
- background-position: 50% 50%;
265
- }
266
-
267
- .waves-light.btn {
268
- color: #fff;
269
- }
270
- .waves-light.btn:hover {
271
- color: #fff;
272
- }
273
- .card {
274
- padding: 0;
275
- min-width: 0;
276
- max-width: 999em;
277
- }
278
- #top {
279
- padding: 1rem 0 3rem 40px;
280
- /*background-image: url('../images/colors.jpg');*/
281
- background-repeat: repeat-x;
282
- background-position: left bottom;
283
- font-family: Roboto, 'sans-serif';
284
- }
285
- #top h1 {
286
- color: #fff;
287
- font-size: 3.4rem;
288
- margin: 16px 0 25px 0;
289
- font-weight: 300;
290
- }
291
- #top h1 small {
292
- font-size: 1rem;
293
- }
294
- #top h4 {
295
- margin: 17px 0 13px 0;
296
- }
297
- #support-page {
298
- background: #fff;
299
- font-family: Roboto, 'sans-serif';
300
- padding: 40px;
301
- }
302
- .widefat .edit_image_form td {
303
- border-bottom: 0;
304
- border-top: 0;
305
- }
306
-
307
- .widefat th, .widefat td {
308
- overflow: visible;
309
- }
310
-
311
- .widefat tfoot th:first-of-type {
312
- -webkit-border-bottom-left-radius: 0;
313
- border-bottom-left-radius: 0;
314
- }
315
- .widefat tfoot th:last-of-type {
316
- -webkit-border-bottom-right-radius: 0;
317
- border-bottom-rigth-radius: 0;
318
- }
319
- .widefat thead th:first-of-type {
320
- -webkit-border-top-left-radius: 0;
321
- border-bottom-top-radius: 0;
322
- }
323
- .widefat thead th:last-of-type {
324
- -webkit-border-top-rigth-radius: 0;
325
- border-top-right-radius: 0;
326
- }
327
-
328
- #wpcontent {
329
- margin-left: 146px;
330
- padding-left: 20px;
331
- }
332
- #support-page p {
333
- font-size: 16px;
334
- color: #666;
335
- }
336
- #support-page ul {
337
- margin: 40px 20px;
338
- }
339
- #support-page ul li {
340
- list-style-type: circle;
341
- font-size: 18px;
342
- line-height: 1.5;
343
- }
344
- #support-page .buttons {
345
- margin-top: 40px;
346
- }
347
- .ui-dialog.noTitle .ui-dialog-titlebar {
348
- display: none;
349
- }
350
- .modula-header
351
- {
352
- background-color: #51AD31;
353
- margin-left:-10px;
354
- }
355
-
356
- .modula-header h1
357
- {
358
- font-weight: bolder !important;
359
- }
360
- .modula-header h4
361
- {
362
- color: white;
363
- }
364
-
365
- .ui-dialog .loading {
366
- background: url(../loading.gif) no-repeat;
367
- width: 220px;
368
- height: 19px;
369
- margin:50px auto 0 auto;
370
- }
371
- .collapsible {
372
- padding:20px 70px 0px 40px !important;
373
- border: none !important;
374
- box-shadow: none !important;
375
- }
376
- .bd .gallery-hd {
377
- margin: 60px 0;
378
- }
379
- .bd .gallery-hd code {
380
- font-size: 1rem;
381
- }
382
- .input-field {
383
- margin-bottom: 20px;
384
- }
385
- .input-field label {
386
- left: 0;
387
- }
388
- #ftg-wizard {
389
- margin: 40px auto;
390
- padding: 20px;
391
- max-width: 600px;
392
- box-shadow: #ccc 0px 0px 40px;
393
- border-radius: 4px;
394
- background: #fff;
395
- }
396
- #ftg-wizard fieldset {
397
- border: 0;
398
- display: none;
399
- }
400
- #ftg-wizard fieldset:first-of-type {
401
- display: block;
402
- }
403
- #ftg-wizard fieldset select {
404
- height: 3rem;
405
- }
406
- #ftg-wizard h1 {
407
- font-size: 32px;
408
- text-transform: uppercase;
409
- text-align: center;
410
- margin: 0;
411
- }
412
- #ftg-wizard h1 small {
413
- font-size: 12px;
414
- }
415
- #ftg-wizard h2 {
416
- font-size: 16px;
417
- text-transform: uppercase;
418
- text-align: center;
419
- margin: 0;
420
- margin-bottom: 50px;
421
- line-height: 1;
422
- }
423
- #ftg-wizard h5 {
424
- margin-bottom: 20px;
425
- }
426
- #ftg-wizard .field {
427
- margin-bottom: 40px;
428
- }
429
- #ftg-wizard .images {
430
- padding: 10px;
431
- max-height: 300px;
432
- overflow: auto;
433
- }
434
- #ftg-wizard .images .tile {
435
- margin: 0 10px 10px 0;
436
- width: 23%;
437
- display: inline-block;
438
- position: relative;
439
- }
440
- #ftg-wizard .images .tile img {
441
- width: 100%;
442
- }
443
- #ftg-wizard .images .tile a {
444
- position: absolute;
445
- top: -5px;
446
- right: -5px;
447
- z-index: 10;
448
- display: none;
449
- width: 26px;
450
- height: 26px;
451
- line-height: 26px;
452
- }
453
- #ftg-wizard .images .tile a i {
454
- line-height: 26px;
455
- font-size: 1.2rem;
456
- }
457
- #ftg-wizard .images .tile:hover a {
458
- display: block;
459
- }
460
- #ftg-wizard .images .tile:nth-child(4n) {
461
- margin-right: 0;
462
- }
463
- #ftg-wizard footer {
464
- background: transparent;
465
- text-align: right;
466
- }
467
- #ftg-wizard footer .prev {
468
- visibility: hidden;
469
- }
470
- #ftg-wizard .loading {
471
- display: none;
472
- }
473
- .modal p {
474
- font-size: 16px;
475
- }
476
- .modal #modal-close
477
- {
478
- float: right;
479
- }
480
- .modal .code {
481
- display: block;
482
- margin: 20px;
483
- padding: 10px;
484
- font-size: 16px;
485
- }
486
- .modal a {
487
- outline: 0;
488
- }
489
- .modal .modal-content,
490
- .modal .modal-footer {
491
- background: #fff;
492
- }
493
- #gallery-list .card p {
494
- height: 40px;
495
- overflow: hidden;
496
- padding: 4px 8px;
497
- border-radius: 4px;
498
- }
499
- #gallery-list .card .card-action {
500
- padding: 5px 5px;
501
- text-align: center;
502
- border:0;
503
- }
504
- #gallery-list .card.with-image .card-action a {
505
- transition:all .2s;
506
- }
507
- #gallery-list .card .card-action a {
508
- margin: 0 10px;
509
- font-size: 20px;
510
- color: #fff;
511
- padding: 4px;
512
- }
513
- #gallery-list .card .card-image {
514
- display: inline-block;
515
- width: 150px;
516
- height: 150px;
517
- overflow: hidden;
518
- }
519
- #gallery-list .card .card-content {
520
- height: 180px;
521
- cursor: pointer;
522
- letter-spacing: 0.3px;
523
- }
524
- #gallery-list .card.with-image .card-action,
525
- #gallery-list .card.with-image .card-content {
526
- background: rgba(0, 0, 0, .30);
527
- transition:background .4s;
528
- }
529
- #gallery-list .card.with-image:hover .card-action,
530
- #gallery-list .card.with-image:hover .card-content {
531
- background: rgba(0, 0, 0, .60);
532
- }
533
- #gallery-list .card .card-title {
534
- line-height: 32px;
535
- margin-bottom: 18px;
536
- display: block;
537
- font-weight: 400;
538
- padding: 4px 8px;
539
- border-radius: 4px;
540
- }
541
-
542
- #edit-gallery .tab {
543
- padding: 20px;
544
- }
545
- #edit-gallery label {
546
- color: #333;
547
- font-size: 1rem;
548
- top: 0.1rem;
549
- height: auto;
550
- }
551
- #edit-gallery .input-field {
552
- margin-bottom: 0;
553
- }
554
- #edit-gallery .input-field input[type=text],
555
- #edit-gallery .input-field input[type=password],
556
- #edit-gallery .input-field input[type=email],
557
- #edit-gallery .input-field input[type=url],
558
- #edit-gallery .input-field input[type=date],
559
- #edit-gallery .input-field input[type=tel],
560
- #edit-gallery .input-field input[type=number],
561
- #edit-gallery .input-field input[type=search],
562
- #edit-gallery .input-field textarea.materialize-textarea {
563
- font-size: 2rem;
564
- }
565
- #edit-gallery select {
566
- font-size: 1rem;
567
- background: #fff;
568
- }
569
- #edit-gallery .jump-head {
570
- border-bottom: 2px solid rgba(0, 0, 0, 0.3);
571
- padding: 20px 0;
572
- }
573
- #edit-gallery .jump-head select {
574
- height: 2rem;
575
- display: inline;
576
- }
577
- #edit-gallery .jump {
578
- width: auto;
579
- }
580
- .jump-head
581
- {
582
- padding: 40px 0px 40px 10px;
583
- }
584
- .bullet-menu {
585
- position: fixed;
586
- bottom: 20px;
587
- right: 50px;
588
- }
589
- .update-gallery {
590
- position: fixed;
591
- bottom: 20px;
592
- right: 20px;
593
- }
594
- .collapsible li {
595
- margin-bottom: 7px;
596
- margin-left:-20px;
597
- }
598
- .collapsible li .alternate {
599
- background: transparent;
600
- }
601
- .collapsible li .collapsible-header {
602
- font-size: 2rem;
603
- height: 5rem;
604
- line-height: 5rem;
605
- }
606
- .collapsible li .collapsible-header .fa-chevron-right{
607
- float: right;
608
- color: darkgray;
609
- }
610
- .collapsible li .collapsible-header i {
611
- color: #51AD31;
612
- line-height: 5rem;
613
- }
614
- .collapsible li .collapsible-header span{
615
- color: #51AD31;
616
- }
617
- .collapsible li .field .text {
618
- background: #fff;
619
- padding: 20px;
620
- }
621
- .collapsible li .field .text .pickColor {
622
- height: auto;
623
- }
624
- .collapsible li .field .text .wp-color-result {
625
- border-radius: 0;
626
- -webkit-border-radius: 0;
627
- height: 24px;
628
- }
629
- .collapsible li .field .text .wp-color-result::after {
630
- border-radius: 0;
631
- -webkit-border-radius: 0;
632
- }
633
- .collapsible li textarea {
634
- height: 100px;
635
- }
636
- .collapsible li th,
637
- .collapsible li td {
638
- vertical-align: baseline;
639
- }
640
- .collapsible li th {
641
- border-radius: 0;
642
- }
643
- .collapsible li th[scope=row] {
644
- width: 200px;
645
- }
646
- .collapsible li tr.ui-slider {
647
- height: auto;
648
- }
649
- .collapsible li tr.filter {
650
- float: none;
651
- margin: 0;
652
- }
653
- .collapsible li .toggle div.help {
654
- display: none;
655
- }
656
- .collapsible li .toggle div.help strong {
657
- font-weight: bold;
658
- }
659
-
660
- .collapsible li .toggle [type="checkbox"]:not(:checked) + label:before {
661
- top: 4px;
662
- }
663
-
664
- .checkbox, .checkbox-light, .radio, .radio-light {
665
- background: url("../images/checkbox/square.png") 0 0 no-repeat;
666
- color: #dddddd;
667
- cursor: pointer;
668
- padding: 1px 0 3px 25px;
669
- position: relative; }
670
- .checkbox:hover, .checkbox-light:hover, .radio:hover, .radio-light:hover {
671
- background-position: 0 -26px;
672
- color: white; }
673
- .checkbox.checked, .checked.checkbox-light, .checked.radio, .checked.radio-light {
674
- background-position: 0 -53px; }
675
- .checkbox.checked:hover, .checked.checkbox-light:hover, .checked.radio:hover, .checked.radio-light:hover {
676
- background-position: 0 -80px; }
677
-
678
- .checkbox-light {
679
- background-image: url("../images/checkbox/square-light.png"); }
680
- .collapsible li div.help {
681
- background: rgba(255, 255, 255, 0.5);
682
- border-top-left-radius: 0;
683
- border-top-right-radius: 0;
684
- border-bottom-left-radius: 6px;
685
- border-bottom-right-radius: 6px;
686
- padding: 10px;
687
- color: #666;
688
- }
689
- .collapsible li .custom_isf td th {
690
- background: #333;
691
- color: #fff;
692
- }
693
- .collapsible li .custom_isf td td input[type=text] {
694
- background: #fff;
695
- }
696
- .collapsible li .dynamic-table tr {
697
- background: #fff;
698
- }
699
- .collapsible li .dynamic-table .btn {
700
- outline: 0;
701
- color: #fff;
702
- }
703
- .collapsible li .dynamic-table .btn:hover {
704
- color: #fff;
705
- }
706
- .collapsible li .dynamic-table .btn.add {
707
- width: 100%;
708
- }
709
- .collapsible li .dynamic-table .del {
710
- width: 50px;
711
- padding-left: 10px;
712
- padding-top: 18px;
713
- }
714
- .collapsible li td .filters .text p {
715
- padding: 0;
716
- }
717
- .collapsible li td .filters .text p a {
718
- display: inline-block;
719
- margin-right: 20px;
720
- }
721
- .collapsible li td .filters .text p input[type=text] {
722
- width: 77%;
723
- }
724
- #tutorial h5 {
725
- margin: 60px 0 20px;
726
- }
727
- #images .item
728
- {
729
- width:160px;
730
- padding:0px 10px 0px 0px;
731
- /*background:#333;*/
732
- /*border:1px solid #111;*/
733
- float:left;
734
- height:295px;
735
- margin:10px 10px 0 0;
736
- position: relative;
737
- }
738
-
739
- #images .item .size {
740
- position: absolute;
741
- bottom: 6px;
742
- left: 10px;
743
- background: #333;
744
- color: #ccc;
745
- padding: 4px;
746
- display: block;
747
- font-size: 9px;
748
- font-family: monaco,courier, monospace;
749
- }
750
- #images .item .name {
751
- position:absolute;
752
- top:35px;
753
- width:150px;
754
- background: rgba(0,0,0,.5);
755
- color: #fff;
756
- font-size:10px;
757
- left:10px;
758
- z-index:100;
759
- height:20px;
760
- overflow: hidden;
761
- }
762
- #images .item .del {
763
- position: absolute;
764
- top:4px;
765
- right:4px;
766
- width: 20px;
767
- height: 20px;
768
- text-decoration: none;
769
- color: #000;
770
- display: none;
771
- background:#111;
772
- }
773
- #images .item .icons {
774
- /*border-bottom: 1px solid #222;*/
775
- margin-bottom: 9px;
776
- }
777
- #images .item .selection {
778
- float: right;
779
- margin-top: 5px;
780
- height: 12px;
781
- }
782
-
783
- #images .figure {
784
- margin:0;
785
- padding: 0;
786
- width:90%;
787
- height: 120px;
788
- overflow: hidden;
789
- display: table-cell;
790
- vertical-align: middle;
791
- text-align: center;
792
- background-size: cover;
793
- }
794
- #images .figure img {
795
- width:160px;
796
- cursor: pointer;
797
- }
798
- #images .item .data {
799
- display: none;
800
- }
801
-
802
- #image-panel {
803
- background: white;
804
- width:700px;
805
- height:auto;
806
- margin-left: -300px;
807
- position: absolute;
808
- top: 30%;
809
- left: 50%;
810
- z-index: 1001;
811
- box-shadow: #000 0px 0px 20px;
812
- /*border:4px solid #111;*/
813
- padding: 10px;
814
- }
815
- #image-panel .filters {
816
- clear: both;
817
- margin-top: 10px;
818
- }
819
- #image-panel .filters .checkbox {
820
- float: left;
821
- margin-right: 20px;
822
- padding-left: 20px;
823
- }
824
- #image-panel .left {
825
- float:left;
826
- }
827
- #image-panel .figure {
828
- width:200px;
829
- height:200px;
830
- overflow:hidden;
831
- padding: 0;
832
- margin: 0 0 10px 0;
833
- padding: 2px;
834
- border: 1px solid #999;
835
- background: white;
836
- }
837
- #image-panel .figure img {
838
- width:100%;
839
- }
840
- #image-panel .right {
841
- float:left;
842
- margin-left:20px;
843
- }
844
- #image-panel .field {
845
- padding-bottom: 5px;
846
- color: #aaa;
847
- /*border-bottom: 1px solid #555;*/
848
- margin-bottom: 5px;
849
- }
850
- #image-panel .field:last-of-type {
851
- border-bottom: 0;
852
- }
853
- #image-panel .field label {
854
- margin-bottom: 5px;
855
- display: block;
856
- font-weight: bold;
857
- color: black;
858
- }
859
- #image-panel .field textarea {
860
- width: 100%;
861
- height: 60px;
862
- }
863
- #image-panel .actions li {
864
- height: 22px;
865
- margin:0;
866
- }
867
- #image-panel .close {
868
- position: absolute;
869
- top:0;
870
- right:0;
871
- display: block;
872
- background: white;
873
- border-bottom-left-radius: 30px;
874
- width: 30px;
875
- height: 30px;
876
- line-height: 24px;
877
- text-indent: 15px;
878
- text-decoration: none;
879
- color: #fff;
880
- font-family: arial;
881
- font-weight: bold;
882
- }
883
-
884
- #images .actions {
885
- padding: 10px 10px 10px 10px;
886
- background: #242521;
887
- }
888
- #images .bulk ,
889
- #images .actions {
890
- background: #FAFAFA;
891
- border:1px solid #EEE;
892
- padding: 25px;
893
- margin: 10px;
894
- }
895
- #images .bulk h4 {
896
- margin:0 0 4px 0;
897
- color: #fff;
898
- }
899
- #images .bulk .checkbox {
900
- display: inline-block;
901
- padding-left: 20px;
902
- margin-right: 15px;
903
- }
904
- #images .bulk .options a {
905
- display: inline-block;
906
- margin-right: 10px;
907
- color: #fff;
908
- text-decoration: none;
909
- }
910
- #images .bulk .options a:hover {
911
- /*color: #fff;*/
912
- }
913
- #images .bulk .panel {
914
- display: none;
915
- padding: 12px;
916
- background: transparent;
917
- margin-top: 5px;
918
- /*border: 1px solid #333222;*/
919
- }
920
- #images .bulk .panel strong {
921
- color: black;
922
- display: block;
923
- margin-bottom: 4px;
924
- }
925
-
926
- #images .bulk .panel p {
927
- padding: 10px 0px 10px 0px;
928
- margin-bottom: 0;
929
- color: black;
930
- }
931
- #images .tips {
932
- margin-bottom: 15px;
933
- }
934
- #images .tip {
935
- background: url('../images/tip.png') no-repeat;
936
- text-indent: 21px;
937
- display: block;
938
- margin: 0 0 0 15px;
939
- }
940
- #images .shortpixel {
941
-
942
- }
943
- #images .btn.action {
944
- margin-bottom: 0;
945
- }
946
-
947
- .clearfix:after {
948
- content: ".";
949
- display: block;
950
- clear: both;
951
- visibility: hidden;
952
- line-height: 0;
953
- height: 0;
954
- }
955
- #image-panel .buttons {
956
- text-align: right;
957
- margin-top: 10px;
958
- clear: both;
959
- }
960
- #image-panel .buttons a {
961
- margin-left: 10px;
962
- }
963
-
964
- #images .actions label {
965
- font-weight: bold;
966
- cursor: default;
967
- display: block;
968
- margin-bottom: 10px;
969
- }
970
- #images .actions label span {
971
- font-weight: normal;
972
- padding-left: 10px;
973
- }
974
- #images .actions .row {
975
- margin: 0 0 10px 0;
976
- }
977
- #images .actions .bulk .panel {
978
- display: none;
979
- }
980
- #images p label{
981
- display: inline-block;
982
- margin-right: 30px;
983
- padding-left: 28px;
984
- }
985
- #image-panel .filters label
986
- {
987
- margin-right: 30px;
988
- padding-left:28px;
989
- color: #333;
990
- float:left;
991
- font-size: 1rem;
992
- top: .1rem;
993
- height: auto;
994
- }
995
- .filters-bulk-label {
996
- display: inline-block;
997
- margin-right: 30px;
998
- line-height: 30px;
999
- padding-left: 28px;
1000
- }
1001
- #images .actions .bulk .panel p {
1002
- padding: 1rem 0;
1003
- }
1004
- #images .actions .tips {
1005
- font-style: italic;
1006
- color: #777;
1007
- padding: 5px 10px;
1008
- background: rgba(255, 255, 255, 0.7);
1009
- border-radius: 4px;
1010
- }
1011
- #images .actions .tips strong {
1012
- font-weight: 700;
1013
- }
1014
- #image-panel-model[data-source=posts] {
1015
- width: 300px;
1016
- }
1017
- #image-panel-model[data-source=posts] .right-side {
1018
- display: none;
1019
- }
1020
- #image-panel-model .right-side {
1021
- margin-left: 170px;
1022
- }
1023
- #image-panel-model .right-side textarea {
1024
- height: 3.75rem;
1025
- }
1026
- #image-panel-model .right-side input[type=text],
1027
- #image-panel-model .right-side textarea {
1028
- border: 1px solid #9E9E9E;
1029
- }
1030
- #image-panel-model .right-side .filters {
1031
- margin-top: 15px;
1032
- }
1033
- #image-panel-model .right-side .filters label {
1034
- margin-right: 30px;
1035
- padding-left: 28px;
1036
- }
1037
- #video-panel-model textarea {
1038
- height: 160px;
1039
- }
1040
- #image-list .card.selected {
1041
- border: 2px solid #000;
1042
- }
1043
- #image-list .card .card-image {
1044
- cursor: move;
1045
- }
1046
- #image-list .card .card-image iframe {
1047
- width: 100%;
1048
- }
1049
- #image-list .card p {
1050
- padding: 0;
1051
- min-height: 20px;
1052
- }
1053
- #image-list .card .filters {
1054
- position: absolute;
1055
- top: 10px;
1056
- left: 0px;
1057
- }
1058
- #image-list .card .filters li {
1059
- background: #fff;
1060
- color: #666;
1061
- padding: 2px 10px;
1062
- margin: 0 0 2px 0;
1063
- border-top-right-radius: 4px;
1064
- }
1065
- #delete-gallery-modal span {
1066
- color: #ff8a0b;
1067
- font-weight: bold;
1068
- }
1069
- #spinner {
1070
- display: none;
1071
- position: fixed;
1072
- top: 50px;
1073
- right: 50px;
1074
- }
1075
- #spinner.shown {
1076
- display: block;
1077
- }
1078
- .pro-cell {
1079
- padding: 15px 25px;
1080
- border: 1px solid #EEE;
1081
- background-color: #FAFAFA;
1082
- display: inline-block;
1083
- }
1084
- .button-bg {
1085
- background: #DAA308;
1086
- }
1087
- .btn.button-bg:hover {
1088
- background: #bc8f15;
1089
- }
1090
- .btn:hover {
1091
- color:#fff;
1092
- }
1093
- .pro-cell:hover {
1094
- opacity: .8;
1095
- }
1096
- .pro-cell a {
1097
- transition: all .3s;
1098
- color: #fff;
1099
- }
1100
- /**
1101
- * For modern browsers
1102
- * 1. The space content is one way to avoid an Opera bug when the
1103
- * contenteditable attribute is included anywhere else in the document.
1104
- * Otherwise it causes space to appear at the top and bottom of elements
1105
- * that are clearfixed.
1106
- * 2. The use of `table` rather than `block` is only necessary if using
1107
- * `:before` to contain the top-margins of child elements.
1108
- */
1109
- .cf:before,
1110
- .cf:after {
1111
- content: " ";
1112
- /* 1 */
1113
- display: table;
1114
- /* 2 */
1115
- }
1116
- .cf:after {
1117
- clear: both;
1118
- }
1119
- /**
1120
- * For IE 6/7 only
1121
- * Include this rule to trigger hasLayout and contain floats.
1122
- */
1123
- .cf {
1124
- *zoom: 1;
1125
- }
1126
-
1127
- .li
1128
- {
1129
- cursor:pointer;
1130
- font-size:16px;
1131
- display:inline;
1132
- float:left;
1133
- margin-left:7px;
1134
- }
1135
-
1136
- .listview
1137
- {
1138
- font-size:16px;
1139
- display:inline;
1140
- float:left;
1141
- margin-left:7px;
1142
- }
1143
-
1144
- .menu_activ
1145
- {
1146
- cursor: pointer;
1147
- font-size:16px;
1148
- display:inline;
1149
- float:left;
1150
- margin-left:7px;
1151
- color:red;
1152
- }
1153
- /*.hide
1154
- {
1155
- display:none;
1156
- }
1157
- .padd
1158
- {
1159
- padding:2px;
1160
- }*/
1161
-
1162
- #image-list .small .card-title
1163
- {
1164
- display: none;
1165
- }
1166
-
1167
- #image-list .small .card-content
1168
- {
1169
- display: none;
1170
- }
1171
-
1172
- #image-list .small .card-action
1173
- {
1174
- background-color:#402723;
1175
- padding:5px;
1176
- text-align: center;
1177
- }
1178
-
1179
-
1180
- #image-list .medium .card-action i
1181
- {
1182
- text-align: center;
1183
- display: none;
1184
- }
1185
-
1186
- #image-list .big .card-action i
1187
- {
1188
- text-align: center;
1189
-
1190
- display: none;
1191
- }
1192
-
1193
-
1194
- #image-list .small .card-action a span
1195
- {
1196
- display:none;
1197
- }
1198
- #image-list .small .card-action .remove span
1199
- {
1200
- display: none;
1201
- }
1202
-
1203
- {
1204
- display:none;
1205
- }
1206
- #image-list .small .card-action a i
1207
- {
1208
- color:white;
1209
- }
1210
-
1211
- .filter-list
1212
- {
1213
- border-radius: 3px;
1214
- margin-left: 10px;
1215
- margin-right: 10px;
1216
- padding: 12px;
1217
- background-color: #FFF9F0;
1218
- }
1219
-
1220
- .list-view
1221
- {
1222
- float: left;
1223
- font-size: 16px;
1224
- }
1225
-
1226
- .filter-select-control{
1227
- float: left;
1228
- }
1229
- .filter-item
1230
- {
1231
- cursor: pointer;
1232
- display: inline;
1233
- float: left;
1234
- font-size: 16px;
1235
- margin-left: 10px !important;
1236
- }
1237
-
1238
- .menu-activ
1239
- {
1240
- color: red;
1241
- }
1242
-
1243
- .import-export
1244
- {
1245
- padding-left: 42px;
1246
- margin-top: 20px;
1247
- padding-bottom: 50px;
1248
- }
1249
- .import-export a
1250
- {
1251
- display: block;
1252
- padding: 10px 21px 11px 49px;
1253
- width: 145px;
1254
- float: left;
1255
- margin-right: 15px;
1256
- color: #ADACAC;
1257
- background-color: white;
1258
- }
1259
-
1260
- .import-export a:hover
1261
- {
1262
- background-color: #51AD31;
1263
- color: white;
1264
- }
1265
-
1266
- #import-modal textarea, #export-modal textarea
1267
- {
1268
- height: 100px;
1269
- }
1270
-
1271
- .collapsible .active .collapsible-header
1272
- {
1273
- background-color: #51AD31 !important;
1274
- }
1275
- .collapsible .active .collapsible-header span,
1276
- .collapsible .active .collapsible-header i
1277
- {
1278
- color: white;
1279
- }
1280
-
1281
- .collapsible .active .collapsible-body
1282
- {
1283
- background-color: white;
1284
- }
1285
-
1286
- .backdrop
1287
- {
1288
- background: green;
1289
- }
1290
-
1291
- .select-effect
1292
- {
1293
- display: block;
1294
- width: 34%;
1295
- height: 50px !important;
1296
- border-radius: 5px;
1297
- }
1298
-
1299
-
1300
- #hover-effect th
1301
- {
1302
- display: none;
1303
- }
1304
- #hover-effect .panel {
1305
- padding: 20px;
1306
- background: #fafafa;
1307
- }
1308
- #hover-effect .effect-description
1309
- {
1310
- display: block;
1311
- color: #51AD31;
1312
- padding-bottom: 12px;
1313
- font-size: 18px;
1314
- font-weight: normal;
1315
- }
1316
-
1317
- #hover-effect .help
1318
- {
1319
- display: none;
1320
- }
1321
-
1322
- #hover-effect .effect-color
1323
- {
1324
- display: block !important;
1325
- }
1326
- #hover-effect .effect-img
1327
- {
1328
- padding: 17px 0px;
1329
- float: left;
1330
- }
1331
-
1332
- #hover-effect .effect-compatibility
1333
- {
1334
- margin-left: 430px;
1335
- }
1336
-
1337
- #hover-effect .effect-compatibility label
1338
- {
1339
- display: block;
1340
- margin-bottom: 5px;
1341
- }
1342
-
1343
- #hover-effect .effect-compatibility label span
1344
- {
1345
- display: block;
1346
- font-size: 14px;
1347
- margin: 10px;
1348
- }
1349
-
1350
- #hover-effect .jump-head
1351
- {
1352
- display: none;
1353
- }
1354
-
1355
- #hover-effect .fa-check
1356
- {
1357
- color: green;
1358
- }
1359
- #hover-effect .fa-times
1360
- {
1361
- color: red;
1362
- }
1363
- #hover-effect .preview {
1364
- float: none;
1365
- }
1366
- #hover-effect .preview .item {
1367
- width:400px;
1368
- height:267px;
1369
- overflow: hidden;
1370
- position: relative;
1371
- float: left;
1372
- }
1373
- #hover-effect .preview .item img {
1374
- position: absolute;
1375
- }
1376
- .modula .items .item .figc {
1377
- display: flex;
1378
- align-items: center;
1379
- justify-content: center;
1380
- color: #fff;
1381
- font-size: 11px;
1382
- text-align: center;
1383
- position: absolute;
1384
- left: 0;
1385
- width: 100%;
1386
- padding: 0;
1387
- }
1388
- .modula .items .item .figc {
1389
- width:400px;
1390
- height:267px;
1391
- color: #fff;
1392
- font-size: 11px;
1393
- text-align: center;
1394
- position: absolute;
1395
- left: 0;
1396
- width: 100%;
1397
- padding: 0;
1398
- }
1399
- .modula .items .item .figc h2 {
1400
- font-size: 21px;
1401
- color:#fff;
1402
- }
1403
- .modula .items .item .figc p {
1404
- color:#fff;
1405
- font-size: 15px;
1406
- font-style: normal;
1407
- }
1408
- .modula .item .jtg-social a {
1409
- font-size: 17px;
1410
- }
1411
- .all-effects {
1412
- display: inline-block;
1413
- margin: 20px 0;
1414
- color:#fff;
1415
- font-size: 16px;
1416
- background: #DAA308;
1417
- padding: 6px 12px;
1418
- transition:all .2s;
1419
- }
1420
- .all-effects:hover {
1421
- opacity: .8;
1422
- color:#fff;
1423
- }
1424
- .setting
1425
- {
1426
- color: #ADACAC;
1427
- padding-left: 45px;
1428
- margin-bottom: 15px;
1429
- }
1430
-
1431
- #other-galleries .cta {
1432
- width:170px;
1433
- text-align: right;
1434
- }
1435
- #other-galleries .text {
1436
- font-size: 17px;
1437
- width:calc(100% - 180px);
1438
- padding-right: 20px;
1439
- height: 150px;
1440
- }
1441
- #other-galleries .text h4 {
1442
- font-size: 19px;
1443
- font-weight: bold;
1444
- }
1445
- #other-galleries .text,
1446
- #other-galleries .cta {
1447
- display: inline-block;
1448
- vertical-align: top;
1449
- }
1450
- #other-galleries .cta a {
1451
- margin-right: 0;
1452
- margin-top: 69px;
1453
- }
1454
- #other-galleries * {
1455
- outline: 0;
1456
- }
1457
- #adminmenu .wp-submenu .modula-jump-pro-menu {
1458
- color:#22e34f;
1459
- font-weight: bold;
1460
- }
1461
- #external-galleries input[type=checkbox] {
1462
- position: static;
1463
- }
1464
-
1465
- /* Added in 1.2.0 */
1466
- #toplevel_page_modula-lite-admin ul li:last-of-type a {
1467
- color: #7cc048 !important;
1468
- }
1469
-
1470
- body .modula-wrap .wp-badge {
1471
- background: url('../images/modula-logo.jpg') center 35px no-repeat #50ad31;
1472
- padding-top: 160px;
1473
- height: 0;
1474
- background-size: 80px 80px;
1475
- }
1476
-
1477
- .shortpixel {
1478
- display: block;
1479
- background: #fafafa;
1480
- border: 1px solid #DDD;
1481
- padding: 20px;
1482
  }
1
+ @charset "UTF-8";
2
+
3
+ @font-face {
4
+ font-family: "modula-icons";
5
+ src:url("../font/modula/modula-icons.eot");
6
+ src:url("../font/modula/modula-icons.eot?#iefix") format("embedded-opentype"),
7
+ url("../font/modula/modula-icons.woff") format("woff"),
8
+ url("../font/modula/modula-icons.ttf") format("truetype"),
9
+ url("../font/modula/modula-icons.svg#modula-icons") format("svg");
10
+ font-weight: normal;
11
+ font-style: normal;
12
+
13
+ }
14
+
15
+ @font-face {
16
+ font-family: 'Roboto';
17
+ src: url('../font/roboto/Roboto-Regular-webfont.eot');
18
+ src: url('../font/roboto/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
19
+ url('../font/roboto/Roboto-Regular-webfont.woff') format('woff'),
20
+ url('../font/roboto/Roboto-Regular-webfont.ttf') format('truetype'),
21
+ url('../font/roboto/Roboto-Regular-webfont.svg#robotoregular') format('svg');
22
+ font-weight: normal;
23
+ font-style: normal;
24
+
25
+ }
26
+
27
+
28
+
29
+ [data-icon]:before {
30
+ font-family: "modula-icons" !important;
31
+ content: attr(data-icon);
32
+ font-style: normal !important;
33
+ font-weight: normal !important;
34
+ font-variant: normal !important;
35
+ text-transform: none !important;
36
+ speak: none;
37
+ line-height: 1;
38
+ -webkit-font-smoothing: antialiased;
39
+ -moz-osx-font-smoothing: grayscale;
40
+ }
41
+
42
+ [class^="icon-"]:before,
43
+ [class*=" icon-"]:before {
44
+ font-family: "modula-icons" !important;
45
+ font-style: normal !important;
46
+ font-weight: normal !important;
47
+ font-variant: normal !important;
48
+ text-transform: none !important;
49
+ speak: none;
50
+ line-height: 1;
51
+ -webkit-font-smoothing: antialiased;
52
+ -moz-osx-font-smoothing: grayscale;
53
+ }
54
+
55
+ .icon-facebook:before {
56
+ content: "a";
57
+ }
58
+ .icon-pinterest:before {
59
+ content: "b";
60
+ }
61
+ .icon-twitter:before {
62
+ content: "c";
63
+ }
64
+ .icon-google-plus:before {
65
+ content: "d";
66
+ }
67
+ .icon-save-disk:before {
68
+ content: "e";
69
+ }
70
+ .icon-angle-up:before {
71
+ content: "f";
72
+ }
73
+ .icon-plus:before {
74
+ content: "g";
75
+ }
76
+ .icon-check-mark-2:before {
77
+ content: "h";
78
+ }
79
+ .icon-chevron-right:before {
80
+ content: "i";
81
+ }
82
+ .dark-content{
83
+ opacity: 0.5;
84
+ }
85
+ body
86
+ {
87
+ margin:0px;
88
+ padding-bottom: 65px;
89
+ float: left;
90
+ width: 100%;
91
+ overflow: visible!important;
92
+ }
93
+ .image-size-section
94
+ {
95
+ margin: 10px;
96
+ padding: 5px;
97
+ }
98
+ strong {
99
+ font-weight:700;
100
+ }
101
+
102
+ /*.shortcode-section
103
+ {
104
+ margin: 48px 0;
105
+ padding-left: 43px;
106
+ font-size: 1rem;
107
+ }*/
108
+
109
+ .image-size-section select{
110
+ margin-top: 5px;
111
+ width: 100%;
112
+ }
113
+ .page-footer .progress {
114
+ display: none;
115
+ }
116
+ .hide
117
+ {
118
+ display: none;
119
+ }
120
+ .editimage-right
121
+ {
122
+ float:right;
123
+ width:60%;
124
+ display: block;
125
+ margin-left:5px;
126
+ }
127
+ #image-panel textarea
128
+ {
129
+ color:black;
130
+ }
131
+ #image-panel select:not([name=halign]):not([name=valign])
132
+ {
133
+ width:100%;
134
+ }
135
+ #image-panel select
136
+ {
137
+ color:black;
138
+ }
139
+ .text-input
140
+ {
141
+ border:1px solid #aaa;
142
+ width: 100%;
143
+ display: block;
144
+ }
145
+ .label-text
146
+ {
147
+ color:black;
148
+ font-size: 1rem;
149
+ margin: 0px 5px 0px 0px;
150
+ font-weight: bold;
151
+ }
152
+ .label-panel
153
+ {
154
+ width: 80px;
155
+ float:left;
156
+ }
157
+ .shortpixel {
158
+ display: block;
159
+ }
160
+ .shortpixel img {
161
+ position:relative;
162
+ top:5px;
163
+ }
164
+ .dropdown-menu
165
+ {
166
+ width: 100%;
167
+ }
168
+ #modula-wizard {
169
+ margin: 40px auto;
170
+ padding: 20px;
171
+ max-width: 600px;
172
+ box-shadow: #ccc 0px 0px 40px;
173
+ border-radius: 4px;
174
+ background: #fff;
175
+ }
176
+ #modula-wizard fieldset {
177
+ border: 0;
178
+ display: none;
179
+ }
180
+ #modula-wizard fieldset:first-of-type {
181
+ display: block;
182
+ }
183
+ #modula-wizard fieldset select {
184
+ height: 3rem;
185
+ }
186
+ #modula-wizard h1 {
187
+ font-size: 32px;
188
+ text-transform: uppercase;
189
+ text-align: center;
190
+ margin: 0;
191
+ }
192
+ #modula-wizard h1 small {
193
+ font-size: 12px;
194
+ }
195
+ #modula-wizard h2 {
196
+ font-size: 16px;
197
+ text-transform: uppercase;
198
+ text-align: center;
199
+ margin: 0;
200
+ margin-bottom: 50px;
201
+ line-height: 1;
202
+ }
203
+ #modula-wizard h5 {
204
+ margin-bottom: 20px;
205
+ }
206
+ #modula-wizard .field {
207
+ margin-bottom: 40px;
208
+ }
209
+ #modula-wizard .images {
210
+ padding: 10px;
211
+ max-height: 300px;
212
+ overflow: auto;
213
+ }
214
+ #modula-wizard .images .tile {
215
+ margin: 0 10px 10px 0;
216
+ width: 23%;
217
+ display: inline-block;
218
+ position: relative;
219
+ }
220
+ #modula-wizard .images .tile img {
221
+ width: 100%;
222
+ }
223
+ #modula-wizard .images .tile a {
224
+ position: absolute;
225
+ top: -5px;
226
+ right: -5px;
227
+ z-index: 10;
228
+ display: none;
229
+ width: 26px;
230
+ height: 26px;
231
+ line-height: 26px;
232
+ }
233
+
234
+ #modula-wizard .images .tile a i {
235
+ line-height: 26px;
236
+ font-size: 1.2rem;
237
+ }
238
+ #modula-wizard .images .tile:hover a {
239
+ display: block;
240
+ }
241
+ #modula-wizard .images .tile:nth-child(4n) {
242
+ margin-right: 0;
243
+ }
244
+ #modula-wizard footer {
245
+ background: transparent;
246
+ text-align: right;
247
+ }
248
+ #modula-wizard footer .prev {
249
+ visibility: hidden;
250
+ }
251
+ #wpcontent {
252
+ padding-left: 0;
253
+ }
254
+ #gallery-list {
255
+ margin-top: 2rem;
256
+ }
257
+ #gallery-list .card {
258
+ background-color: #6C838B;
259
+ padding: 0;
260
+ border: none !important;
261
+ }
262
+ #gallery-list .card .data {
263
+ background-size: cover;
264
+ background-position: 50% 50%;
265
+ }
266
+
267
+ .waves-light.btn {
268
+ color: #fff;
269
+ }
270
+ .waves-light.btn:hover {
271
+ color: #fff;
272
+ }
273
+ .card {
274
+ padding: 0;
275
+ min-width: 0;
276
+ max-width: 999em;
277
+ }
278
+ #top {
279
+ padding: 1rem 0 3rem 40px;
280
+ /*background-image: url('../images/colors.jpg');*/
281
+ background-repeat: repeat-x;
282
+ background-position: left bottom;
283
+ font-family: Roboto, 'sans-serif';
284
+ }
285
+ #top h1 {
286
+ color: #fff;
287
+ font-size: 3.4rem;
288
+ margin: 16px 0 25px 0;
289
+ font-weight: 300;
290
+ }
291
+ #top h1 small {
292
+ font-size: 1rem;
293
+ }
294
+ #top h4 {
295
+ margin: 17px 0 13px 0;
296
+ }
297
+ #support-page {
298
+ background: #fff;
299
+ font-family: Roboto, 'sans-serif';
300
+ padding: 40px;
301
+ }
302
+ .widefat .edit_image_form td {
303
+ border-bottom: 0;
304
+ border-top: 0;
305
+ }
306
+
307
+ .widefat th, .widefat td {
308
+ overflow: visible;
309
+ }
310
+
311
+ .widefat tfoot th:first-of-type {
312
+ -webkit-border-bottom-left-radius: 0;
313
+ border-bottom-left-radius: 0;
314
+ }
315
+ .widefat tfoot th:last-of-type {
316
+ -webkit-border-bottom-right-radius: 0;
317
+ border-bottom-rigth-radius: 0;
318
+ }
319
+ .widefat thead th:first-of-type {
320
+ -webkit-border-top-left-radius: 0;
321
+ border-bottom-top-radius: 0;
322
+ }
323
+ .widefat thead th:last-of-type {
324
+ -webkit-border-top-rigth-radius: 0;
325
+ border-top-right-radius: 0;
326
+ }
327
+
328
+ #wpcontent {
329
+ margin-left: 146px;
330
+ padding-left: 20px;
331
+ }
332
+ #support-page p {
333
+ font-size: 16px;
334
+ color: #666;
335
+ }
336
+ #support-page ul {
337
+ margin: 40px 20px;
338
+ }
339
+ #support-page ul li {
340
+ list-style-type: circle;
341
+ font-size: 18px;
342
+ line-height: 1.5;
343
+ }
344
+ #support-page .buttons {
345
+ margin-top: 40px;
346
+ }
347
+ .ui-dialog.noTitle .ui-dialog-titlebar {
348
+ display: none;
349
+ }
350
+ .modula-header
351
+ {
352
+ background-color: #51AD31;
353
+ margin-left:-10px;
354
+ }
355
+
356
+ .modula-header h1
357
+ {
358
+ font-weight: bolder !important;
359
+ }
360
+ .modula-header h4
361
+ {
362
+ color: white;
363
+ }
364
+
365
+ .ui-dialog .loading {
366
+ background: url(../loading.gif) no-repeat;
367
+ width: 220px;
368
+ height: 19px;
369
+ margin:50px auto 0 auto;
370
+ }
371
+ .collapsible {
372
+ padding:20px 70px 0px 40px !important;
373
+ border: none !important;
374
+ box-shadow: none !important;
375
+ }
376
+ .bd .gallery-hd {
377
+ margin: 60px 0;
378
+ }
379
+ .bd .gallery-hd code {
380
+ font-size: 1rem;
381
+ }
382
+ .input-field {
383
+ margin-bottom: 20px;
384
+ }
385
+ .input-field label {
386
+ left: 0;
387
+ }
388
+ #ftg-wizard {
389
+ margin: 40px auto;
390
+ padding: 20px;
391
+ max-width: 600px;
392
+ box-shadow: #ccc 0px 0px 40px;
393
+ border-radius: 4px;
394
+ background: #fff;
395
+ }
396
+ #ftg-wizard fieldset {
397
+ border: 0;
398
+ display: none;
399
+ }
400
+ #ftg-wizard fieldset:first-of-type {
401
+ display: block;
402
+ }
403
+ #ftg-wizard fieldset select {
404
+ height: 3rem;
405
+ }
406
+ #ftg-wizard h1 {
407
+ font-size: 32px;
408
+ text-transform: uppercase;
409
+ text-align: center;
410
+ margin: 0;
411
+ }
412
+ #ftg-wizard h1 small {
413
+ font-size: 12px;
414
+ }
415
+ #ftg-wizard h2 {
416
+ font-size: 16px;
417
+ text-transform: uppercase;
418
+ text-align: center;
419
+ margin: 0;
420
+ margin-bottom: 50px;
421
+ line-height: 1;
422
+ }
423
+ #ftg-wizard h5 {
424
+ margin-bottom: 20px;
425
+ }
426
+ #ftg-wizard .field {
427
+ margin-bottom: 40px;
428
+ }
429
+ #ftg-wizard .images {
430
+ padding: 10px;
431
+ max-height: 300px;
432
+ overflow: auto;
433
+ }
434
+ #ftg-wizard .images .tile {
435
+ margin: 0 10px 10px 0;
436
+ width: 23%;
437
+ display: inline-block;
438
+ position: relative;
439
+ }
440
+ #ftg-wizard .images .tile img {
441
+ width: 100%;
442
+ }
443
+ #ftg-wizard .images .tile a {
444
+ position: absolute;
445
+ top: -5px;
446
+ right: -5px;
447
+ z-index: 10;
448
+ display: none;
449
+ width: 26px;
450
+ height: 26px;
451
+ line-height: 26px;
452
+ }
453
+ #ftg-wizard .images .tile a i {
454
+ line-height: 26px;
455
+ font-size: 1.2rem;
456
+ }
457
+ #ftg-wizard .images .tile:hover a {
458
+ display: block;
459
+ }
460
+ #ftg-wizard .images .tile:nth-child(4n) {
461
+ margin-right: 0;
462
+ }
463
+ #ftg-wizard footer {
464
+ background: transparent;
465
+ text-align: right;
466
+ }
467
+ #ftg-wizard footer .prev {
468
+ visibility: hidden;
469
+ }
470
+ #ftg-wizard .loading {
471
+ display: none;
472
+ }
473
+ .modal p {
474
+ font-size: 16px;
475
+ }
476
+ .modal #modal-close
477
+ {
478
+ float: right;
479
+ }
480
+ .modal .code {
481
+ display: block;
482
+ margin: 20px;
483
+ padding: 10px;
484
+ font-size: 16px;
485
+ }
486
+ .modal a {
487
+ outline: 0;
488
+ }
489
+ .modal .modal-content,
490
+ .modal .modal-footer {
491
+ background: #fff;
492
+ }
493
+ #gallery-list .card p {
494
+ height: 40px;
495
+ overflow: hidden;
496
+ padding: 4px 8px;
497
+ border-radius: 4px;
498
+ }
499
+ #gallery-list .card .card-action {
500
+ padding: 5px 5px;
501
+ text-align: center;
502
+ border:0;
503
+ }
504
+ #gallery-list .card.with-image .card-action a {
505
+ transition:all .2s;
506
+ }
507
+ #gallery-list .card .card-action a {
508
+ margin: 0 10px;
509
+ font-size: 20px;
510
+ color: #fff;
511
+ padding: 4px;
512
+ }
513
+ #gallery-list .card .card-image {
514
+ display: inline-block;
515
+ width: 150px;
516
+ height: 150px;
517
+ overflow: hidden;
518
+ }
519
+ #gallery-list .card .card-content {
520
+ height: 180px;
521
+ cursor: pointer;
522
+ letter-spacing: 0.3px;
523
+ }
524
+ #gallery-list .card.with-image .card-action,
525
+ #gallery-list .card.with-image .card-content {
526
+ background: rgba(0, 0, 0, .30);
527
+ transition:background .4s;
528
+ }
529
+ #gallery-list .card.with-image:hover .card-action,
530
+ #gallery-list .card.with-image:hover .card-content {
531
+ background: rgba(0, 0, 0, .60);
532
+ }
533
+ #gallery-list .card .card-title {
534
+ line-height: 32px;
535
+ margin-bottom: 18px;
536
+ display: block;
537
+ font-weight: 400;
538
+ padding: 4px 8px;
539
+ border-radius: 4px;
540
+ }
541
+
542
+ #edit-gallery .tab {
543
+ padding: 20px;
544
+ }
545
+ #edit-gallery label {
546
+ color: #333;
547
+ font-size: 1rem;
548
+ top: 0.1rem;
549
+ height: auto;
550
+ }
551
+ #edit-gallery .input-field {
552
+ margin-bottom: 0;
553
+ }
554
+ #edit-gallery .input-field input[type=text],
555
+ #edit-gallery .input-field input[type=password],
556
+ #edit-gallery .input-field input[type=email],
557
+ #edit-gallery .input-field input[type=url],
558
+ #edit-gallery .input-field input[type=date],
559
+ #edit-gallery .input-field input[type=tel],
560
+ #edit-gallery .input-field input[type=number],
561
+ #edit-gallery .input-field input[type=search],
562
+ #edit-gallery .input-field textarea.materialize-textarea {
563
+ font-size: 2rem;
564
+ }
565
+ #edit-gallery select {
566
+ font-size: 1rem;
567
+ background: #fff;
568
+ }
569
+ #edit-gallery .jump-head {
570
+ border-bottom: 2px solid rgba(0, 0, 0, 0.3);
571
+ padding: 20px 0;
572
+ }
573
+ #edit-gallery .jump-head select {
574
+ height: 2rem;
575
+ display: inline;
576
+ }
577
+ #edit-gallery .jump {
578
+ width: auto;
579
+ }
580
+ .jump-head
581
+ {
582
+ padding: 40px 0px 40px 10px;
583
+ }
584
+ .bullet-menu {
585
+ position: fixed;
586
+ bottom: 20px;
587
+ right: 50px;
588
+ }
589
+ .update-gallery {
590
+ position: fixed;
591
+ bottom: 20px;
592
+ right: 20px;
593
+ }
594
+ .collapsible li {
595
+ margin-bottom: 7px;
596
+ margin-left:-20px;
597
+ }
598
+ .collapsible li .alternate {
599
+ background: transparent;
600
+ }
601
+ .collapsible li .collapsible-header {
602
+ font-size: 2rem;
603
+ height: 5rem;
604
+ line-height: 5rem;
605
+ }
606
+ .collapsible li .collapsible-header .fa-chevron-right{
607
+ float: right;
608
+ color: darkgray;
609
+ }
610
+ .collapsible li .collapsible-header i {
611
+ color: #51AD31;
612
+ line-height: 5rem;
613
+ }
614
+ .collapsible li .collapsible-header span{
615
+ color: #51AD31;
616
+ }
617
+ .collapsible li .field .text {
618
+ background: #fff;
619
+ padding: 20px;
620
+ }
621
+ .collapsible li .field .text .pickColor {
622
+ height: auto;
623
+ }
624
+ .collapsible li .field .text .wp-color-result {
625
+ border-radius: 0;
626
+ -webkit-border-radius: 0;
627
+ height: 24px;
628
+ }
629
+ .collapsible li .field .text .wp-color-result::after {
630
+ border-radius: 0;
631
+ -webkit-border-radius: 0;
632
+ }
633
+ .collapsible li textarea {
634
+ height: 100px;
635
+ }
636
+ .collapsible li th,
637
+ .collapsible li td {
638
+ vertical-align: baseline;
639
+ }
640
+ .collapsible li th {
641
+ border-radius: 0;
642
+ }
643
+ .collapsible li th[scope=row] {
644
+ width: 200px;
645
+ }
646
+ .collapsible li tr.ui-slider {
647
+ height: auto;
648
+ }
649
+ .collapsible li tr.filter {
650
+ float: none;
651
+ margin: 0;
652
+ }
653
+ .collapsible li .toggle div.help {
654
+ display: none;
655
+ }
656
+ .collapsible li .toggle div.help strong {
657
+ font-weight: bold;
658
+ }
659
+
660
+ .collapsible li .toggle [type="checkbox"]:not(:checked) + label:before {
661
+ top: 4px;
662
+ }
663
+
664
+ .checkbox, .checkbox-light, .radio, .radio-light {
665
+ background: url("../images/checkbox/square.png") 0 0 no-repeat;
666
+ color: #dddddd;
667
+ cursor: pointer;
668
+ padding: 1px 0 3px 25px;
669
+ position: relative; }
670
+ .checkbox:hover, .checkbox-light:hover, .radio:hover, .radio-light:hover {
671
+ background-position: 0 -26px;
672
+ color: white; }
673
+ .checkbox.checked, .checked.checkbox-light, .checked.radio, .checked.radio-light {
674
+ background-position: 0 -53px; }
675
+ .checkbox.checked:hover, .checked.checkbox-light:hover, .checked.radio:hover, .checked.radio-light:hover {
676
+ background-position: 0 -80px; }
677
+
678
+ .checkbox-light {
679
+ background-image: url("../images/checkbox/square-light.png"); }
680
+ .collapsible li div.help {
681
+ background: rgba(255, 255, 255, 0.5);
682
+ border-top-left-radius: 0;
683
+ border-top-right-radius: 0;
684
+ border-bottom-left-radius: 6px;
685
+ border-bottom-right-radius: 6px;
686
+ padding: 10px;
687
+ color: #666;
688
+ }
689
+ .collapsible li .custom_isf td th {
690
+ background: #333;
691
+ color: #fff;
692
+ }
693
+ .collapsible li .custom_isf td td input[type=text] {
694
+ background: #fff;
695
+ }
696
+ .collapsible li .dynamic-table tr {
697
+ background: #fff;
698
+ }
699
+ .collapsible li .dynamic-table .btn {
700
+ outline: 0;
701
+ color: #fff;
702
+ }
703
+ .collapsible li .dynamic-table .btn:hover {
704
+ color: #fff;
705
+ }
706
+ .collapsible li .dynamic-table .btn.add {
707
+ width: 100%;
708
+ }
709
+ .collapsible li .dynamic-table .del {
710
+ width: 50px;
711
+ padding-left: 10px;
712
+ padding-top: 18px;
713
+ }
714
+ .collapsible li td .filters .text p {
715
+ padding: 0;
716
+ }
717
+ .collapsible li td .filters .text p a {
718
+ display: inline-block;
719
+ margin-right: 20px;
720
+ }
721
+ .collapsible li td .filters .text p input[type=text] {
722
+ width: 77%;
723
+ }
724
+ #tutorial h5 {
725
+ margin: 60px 0 20px;
726
+ }
727
+ #images .item
728
+ {
729
+ width:160px;
730
+ padding:0px 10px 0px 0px;
731
+ /*background:#333;*/
732
+ /*border:1px solid #111;*/
733
+ float:left;
734
+ height:295px;
735
+ margin:10px 10px 0 0;
736
+ position: relative;
737
+ }
738
+
739
+ #images .item .size {
740
+ position: absolute;
741
+ bottom: 6px;
742
+ left: 10px;
743
+ background: #333;
744
+ color: #ccc;
745
+ padding: 4px;
746
+ display: block;
747
+ font-size: 9px;
748
+ font-family: monaco,courier, monospace;
749
+ }
750
+ #images .item .name {
751
+ position:absolute;
752
+ top:35px;
753
+ width:150px;
754
+ background: rgba(0,0,0,.5);
755
+ color: #fff;
756
+ font-size:10px;
757
+ left:10px;
758
+ z-index:100;
759
+ height:20px;
760
+ overflow: hidden;
761
+ }
762
+ #images .item .del {
763
+ position: absolute;
764
+ top:4px;
765
+ right:4px;
766
+ width: 20px;
767
+ height: 20px;
768
+ text-decoration: none;
769
+ color: #000;
770
+ display: none;
771
+ background:#111;
772
+ }
773
+ #images .item .icons {
774
+ /*border-bottom: 1px solid #222;*/
775
+ margin-bottom: 9px;
776
+ }
777
+ #images .item .selection {
778
+ float: right;
779
+ margin-top: 5px;
780
+ height: 12px;
781
+ }
782
+
783
+ #images .figure {
784
+ margin:0;
785
+ padding: 0;
786
+ width:90%;
787
+ height: 120px;
788
+ overflow: hidden;
789
+ display: table-cell;
790
+ vertical-align: middle;
791
+ text-align: center;
792
+ background-size: cover;
793
+ }
794
+ #images .figure img {
795
+ width:160px;
796
+ cursor: pointer;
797
+ }
798
+ #images .item .data {
799
+ display: none;
800
+ }
801
+
802
+ #image-panel {
803
+ background: white;
804
+ width:700px;
805
+ height:auto;
806
+ margin-left: -300px;
807
+ position: absolute;
808
+ top: 30%;
809
+ left: 50%;
810
+ z-index: 1001;
811
+ box-shadow: #000 0px 0px 20px;
812
+ /*border:4px solid #111;*/
813
+ padding: 10px;
814
+ }
815
+ #image-panel .filters {
816
+ clear: both;
817
+ margin-top: 10px;
818
+ }
819
+ #image-panel .filters .checkbox {
820
+ float: left;
821
+ margin-right: 20px;
822
+ padding-left: 20px;
823
+ }
824
+ #image-panel .left {
825
+ float:left;
826
+ }
827
+ #image-panel .figure {
828
+ width:200px;
829
+ height:200px;
830
+ overflow:hidden;
831
+ padding: 0;
832
+ margin: 0 0 10px 0;
833
+ padding: 2px;
834
+ border: 1px solid #999;
835
+ background: white;
836
+ }
837
+ #image-panel .figure img {
838
+ width:100%;
839
+ }
840
+ #image-panel .right {
841
+ float:left;
842
+ margin-left:20px;
843
+ }
844
+ #image-panel .field {
845
+ padding-bottom: 5px;
846
+ color: #aaa;
847
+ /*border-bottom: 1px solid #555;*/
848
+ margin-bottom: 5px;
849
+ }
850
+ #image-panel .field:last-of-type {
851
+ border-bottom: 0;
852
+ }
853
+ #image-panel .field label {
854
+ margin-bottom: 5px;
855
+ display: block;
856
+ font-weight: bold;
857
+ color: black;
858
+ }
859
+ #image-panel .field textarea {
860
+ width: 100%;
861
+ height: 60px;
862
+ }
863
+ #image-panel .actions li {
864
+ height: 22px;
865
+ margin:0;
866
+ }
867
+ #image-panel .close {
868
+ position: absolute;
869
+ top:0;
870
+ right:0;
871
+ display: block;
872
+ background: white;
873
+ border-bottom-left-radius: 30px;
874
+ width: 30px;
875
+ height: 30px;
876
+ line-height: 24px;
877
+ text-indent: 15px;
878
+ text-decoration: none;
879
+ color: #fff;
880
+ font-family: arial;
881
+ font-weight: bold;
882
+ }
883
+
884
+ #images .actions {
885
+ padding: 10px 10px 10px 10px;
886
+ background: #242521;
887
+ }
888
+ #images .bulk ,
889
+ #images .actions {
890
+ background: #FAFAFA;
891
+ border:1px solid #EEE;
892
+ padding: 25px;
893
+ margin: 10px;
894
+ }
895
+ #images .bulk h4 {
896
+ margin:0 0 4px 0;
897
+ color: #fff;
898
+ }
899
+ #images .bulk .checkbox {
900
+ display: inline-block;
901
+ padding-left: 20px;
902
+ margin-right: 15px;
903
+ }
904
+ #images .bulk .options a {
905
+ display: inline-block;
906
+ margin-right: 10px;
907
+ color: #fff;
908
+ text-decoration: none;
909
+ }
910
+ #images .bulk .options a:hover {
911
+ /*color: #fff;*/
912
+ }
913
+ #images .bulk .panel {
914
+ display: none;
915
+ padding: 12px;
916
+ background: transparent;
917
+ margin-top: 5px;
918
+ /*border: 1px solid #333222;*/
919
+ }
920
+ #images .bulk .panel strong {
921
+ color: black;
922
+ display: block;
923
+ margin-bottom: 4px;
924
+ }
925
+
926
+ #images .bulk .panel p {
927
+ padding: 10px 0px 10px 0px;
928
+ margin-bottom: 0;
929
+ color: black;
930
+ }
931
+ #images .tips {
932
+ margin-bottom: 15px;
933
+ }
934
+ #images .tip {
935
+ background: url('../images/tip.png') no-repeat;
936
+ text-indent: 21px;
937
+ display: block;
938
+ margin: 0 0 0 15px;
939
+ }
940
+ #images .shortpixel {
941
+
942
+ }
943
+ #images .btn.action {
944
+ margin-bottom: 0;
945
+ }
946
+
947
+ .clearfix:after {
948
+ content: ".";
949
+ display: block;
950
+ clear: both;
951
+ visibility: hidden;
952
+ line-height: 0;
953
+ height: 0;
954
+ }
955
+ #image-panel .buttons {
956
+ text-align: right;
957
+ margin-top: 10px;
958
+ clear: both;
959
+ }
960
+ #image-panel .buttons a {
961
+ margin-left: 10px;
962
+ }
963
+
964
+ #images .actions label {
965
+ font-weight: bold;
966
+ cursor: default;
967
+ display: block;
968
+ margin-bottom: 10px;
969
+ }
970
+ #images .actions label span {
971
+ font-weight: normal;
972
+ padding-left: 10px;
973
+ }
974
+ #images .actions .row {
975
+ margin: 0 0 10px 0;
976
+ }
977
+ #images .actions .bulk .panel {
978
+ display: none;
979
+ }
980
+ #images p label{
981
+ display: inline-block;
982
+ margin-right: 30px;
983
+ padding-left: 28px;
984
+ }
985
+ #image-panel .filters label
986
+ {
987
+ margin-right: 30px;
988
+ padding-left:28px;
989
+ color: #333;
990
+ float:left;
991
+ font-size: 1rem;
992
+ top: .1rem;
993
+ height: auto;
994
+ }
995
+ .filters-bulk-label {
996
+ display: inline-block;
997
+ margin-right: 30px;
998
+ line-height: 30px;
999
+ padding-left: 28px;
1000
+ }
1001
+ #images .actions .bulk .panel p {
1002
+ padding: 1rem 0;
1003
+ }
1004
+ #images .actions .tips {
1005
+ font-style: italic;
1006
+ color: #777;
1007
+ padding: 5px 10px;
1008
+ background: rgba(255, 255, 255, 0.7);
1009
+ border-radius: 4px;
1010
+ }
1011
+ #images .actions .tips strong {
1012
+ font-weight: 700;
1013
+ }
1014
+ #image-panel-model[data-source=posts] {
1015
+ width: 300px;
1016
+ }
1017
+ #image-panel-model[data-source=posts] .right-side {
1018
+ display: none;
1019
+ }
1020
+ #image-panel-model .right-side {
1021
+ margin-left: 170px;
1022
+ }
1023
+ #image-panel-model .right-side textarea {
1024
+ height: 3.75rem;
1025
+ }
1026
+ #image-panel-model .right-side input[type=text],
1027
+ #image-panel-model .right-side textarea {
1028
+ border: 1px solid #9E9E9E;
1029
+ }
1030
+ #image-panel-model .right-side .filters {
1031
+ margin-top: 15px;
1032
+ }
1033
+ #image-panel-model .right-side .filters label {
1034
+ margin-right: 30px;
1035
+ padding-left: 28px;
1036
+ }
1037
+ #video-panel-model textarea {
1038
+ height: 160px;
1039
+ }
1040
+ #image-list .card.selected {
1041
+ border: 2px solid #000;
1042
+ }
1043
+ #image-list .card .card-image {
1044
+ cursor: move;
1045
+ }
1046
+ #image-list .card .card-image iframe {
1047
+ width: 100%;
1048
+ }
1049
+ #image-list .card p {
1050
+ padding: 0;
1051
+ min-height: 20px;
1052
+ }
1053
+ #image-list .card .filters {
1054
+ position: absolute;
1055
+ top: 10px;
1056
+ left: 0px;
1057
+ }
1058
+ #image-list .card .filters li {
1059
+ background: #fff;
1060
+ color: #666;
1061
+ padding: 2px 10px;
1062
+ margin: 0 0 2px 0;
1063
+ border-top-right-radius: 4px;
1064
+ }
1065
+ #delete-gallery-modal span {
1066
+ color: #ff8a0b;
1067
+ font-weight: bold;
1068
+ }
1069
+ #spinner {
1070
+ display: none;
1071
+ position: fixed;
1072
+ top: 50px;
1073
+ right: 50px;
1074
+ }
1075
+ #spinner.shown {
1076
+ display: block;
1077
+ }
1078
+ .pro-cell {
1079
+ padding: 15px 25px;
1080
+ border: 1px solid #EEE;
1081
+ background-color: #FAFAFA;
1082
+ display: inline-block;
1083
+ }
1084
+ .button-bg {
1085
+ background: #DAA308;
1086
+ }
1087
+ .btn.button-bg:hover {
1088
+ background: #bc8f15;
1089
+ }
1090
+ .btn:hover {
1091
+ color:#fff;
1092
+ }
1093
+ .pro-cell:hover {
1094
+ opacity: .8;
1095
+ }
1096
+ .pro-cell a {
1097
+ transition: all .3s;
1098
+ color: #fff;
1099
+ }
1100
+ /**
1101
+ * For modern browsers
1102
+ * 1. The space content is one way to avoid an Opera bug when the
1103
+ * contenteditable attribute is included anywhere else in the document.
1104
+ * Otherwise it causes space to appear at the top and bottom of elements
1105
+ * that are clearfixed.
1106
+ * 2. The use of `table` rather than `block` is only necessary if using
1107
+ * `:before` to contain the top-margins of child elements.
1108
+ */
1109
+ .cf:before,
1110
+ .cf:after {
1111
+ content: " ";
1112
+ /* 1 */
1113
+ display: table;
1114
+ /* 2 */
1115
+ }
1116
+ .cf:after {
1117
+ clear: both;
1118
+ }
1119
+ /**
1120
+ * For IE 6/7 only
1121
+ * Include this rule to trigger hasLayout and contain floats.
1122
+ */
1123
+ .cf {
1124
+ *zoom: 1;
1125
+ }
1126
+
1127
+ .li
1128
+ {
1129
+ cursor:pointer;
1130
+ font-size:16px;
1131
+ display:inline;
1132
+ float:left;
1133
+ margin-left:7px;
1134
+ }
1135
+
1136
+ .listview
1137
+ {
1138
+ font-size:16px;
1139
+ display:inline;
1140
+ float:left;
1141
+ margin-left:7px;
1142
+ }
1143
+
1144
+ .menu_activ
1145
+ {
1146
+ cursor: pointer;
1147
+ font-size:16px;
1148
+ display:inline;
1149
+ float:left;
1150
+ margin-left:7px;
1151
+ color:red;
1152
+ }
1153
+ /*.hide
1154
+ {
1155
+ display:none;
1156
+ }
1157
+ .padd
1158
+ {
1159
+ padding:2px;
1160
+ }*/
1161
+
1162
+ #image-list .small .card-title
1163
+ {
1164
+ display: none;
1165
+ }
1166
+
1167
+ #image-list .small .card-content
1168
+ {
1169
+ display: none;
1170
+ }
1171
+
1172
+ #image-list .small .card-action
1173
+ {
1174
+ background-color:#402723;
1175
+ padding:5px;
1176
+ text-align: center;
1177
+ }
1178
+
1179
+
1180
+ #image-list .medium .card-action i
1181
+ {
1182
+ text-align: center;
1183
+ display: none;
1184
+ }
1185
+
1186
+ #image-list .big .card-action i
1187
+ {
1188
+ text-align: center;
1189
+
1190
+ display: none;
1191
+ }
1192
+
1193
+
1194
+ #image-list .small .card-action a span
1195
+ {
1196
+ display:none;
1197
+ }
1198
+ #image-list .small .card-action .remove span
1199
+ {
1200
+ display: none;
1201
+ }
1202
+
1203
+ {
1204
+ display:none;
1205
+ }
1206
+ #image-list .small .card-action a i
1207
+ {
1208
+ color:white;
1209
+ }
1210
+
1211
+ .filter-list
1212
+ {
1213
+ border-radius: 3px;
1214
+ margin-left: 10px;
1215
+ margin-right: 10px;
1216
+ padding: 12px;
1217
+ background-color: #FFF9F0;
1218
+ }
1219
+
1220
+ .list-view
1221
+ {
1222
+ float: left;
1223
+ font-size: 16px;
1224
+ }
1225
+
1226
+ .filter-select-control{
1227
+ float: left;
1228
+ }
1229
+ .filter-item
1230
+ {
1231
+ cursor: pointer;
1232
+ display: inline;
1233
+ float: left;
1234
+ font-size: 16px;
1235
+ margin-left: 10px !important;
1236
+ }
1237
+
1238
+ .menu-activ
1239
+ {
1240
+ color: red;
1241
+ }
1242
+
1243
+ .import-export
1244
+ {
1245
+ padding-left: 42px;
1246
+ margin-top: 20px;
1247
+ padding-bottom: 50px;
1248
+ }
1249
+ .import-export a
1250
+ {
1251
+ display: block;
1252
+ padding: 10px 21px 11px 49px;
1253
+ width: 145px;
1254
+ float: left;
1255
+ margin-right: 15px;
1256
+ color: #ADACAC;
1257
+ background-color: white;
1258
+ }
1259
+
1260
+ .import-export a:hover
1261
+ {
1262
+ background-color: #51AD31;
1263
+ color: white;
1264
+ }
1265
+
1266
+ #import-modal textarea, #export-modal textarea
1267
+ {
1268
+ height: 100px;
1269
+ }
1270
+
1271
+ .collapsible .active .collapsible-header
1272
+ {
1273
+ background-color: #51AD31 !important;
1274
+ }
1275
+ .collapsible .active .collapsible-header span,
1276
+ .collapsible .active .collapsible-header i
1277
+ {
1278
+ color: white;
1279
+ }
1280
+
1281
+ .collapsible .active .collapsible-body
1282
+ {
1283
+ background-color: white;
1284
+ }
1285
+
1286
+ .backdrop
1287
+ {
1288
+ background: green;
1289
+ }
1290
+
1291
+ .select-effect
1292
+ {
1293
+ display: block;
1294
+ width: 34%;
1295
+ height: 50px !important;
1296
+ border-radius: 5px;
1297
+ }
1298
+
1299
+
1300
+ #hover-effect th
1301
+ {
1302
+ display: none;
1303
+ }
1304
+ #hover-effect .panel {
1305
+ padding: 20px;
1306
+ background: #fafafa;
1307
+ }
1308
+ #hover-effect .effect-description
1309
+ {
1310
+ display: block;
1311
+ color: #51AD31;
1312
+ padding-bottom: 12px;
1313
+ font-size: 18px;
1314
+ font-weight: normal;
1315
+ }
1316
+
1317
+ #hover-effect .help
1318
+ {
1319
+ display: none;
1320
+ }
1321
+
1322
+ #hover-effect .effect-color
1323
+ {
1324
+ display: block !important;
1325
+ }
1326
+ #hover-effect .effect-img
1327
+ {
1328
+ padding: 17px 0px;
1329
+ float: left;
1330
+ }
1331
+
1332
+ #hover-effect .effect-compatibility
1333
+ {
1334
+ margin-left: 430px;
1335
+ }
1336
+
1337
+ #hover-effect .effect-compatibility label
1338
+ {
1339
+ display: block;
1340
+ margin-bottom: 5px;
1341
+ }
1342
+
1343
+ #hover-effect .effect-compatibility label span
1344
+ {
1345
+ display: block;
1346
+ font-size: 14px;
1347
+ margin: 10px;
1348
+ }
1349
+
1350
+ #hover-effect .jump-head
1351
+ {
1352
+ display: none;
1353
+ }
1354
+
1355
+ #hover-effect .fa-check
1356
+ {
1357
+ color: green;
1358
+ }
1359
+ #hover-effect .fa-times
1360
+ {
1361
+ color: red;
1362
+ }
1363
+ #hover-effect .preview {
1364
+ float: none;
1365
+ }
1366
+ #hover-effect .preview .item {
1367
+ width:400px;
1368
+ height:267px;
1369
+ overflow: hidden;
1370
+ position: relative;
1371
+ float: left;
1372
+ }
1373
+ #hover-effect .preview .item img {
1374
+ position: absolute;
1375
+ }
1376
+ .modula .items .item .figc {
1377
+ display: flex;
1378
+ align-items: center;
1379
+ justify-content: center;
1380
+ color: #fff;
1381
+ font-size: 11px;
1382
+ text-align: center;
1383
+ position: absolute;
1384
+ left: 0;
1385
+ width: 100%;
1386
+ padding: 0;
1387
+ }
1388
+ .modula .items .item .figc {
1389
+ width:400px;
1390
+ height:267px;
1391
+ color: #fff;
1392
+ font-size: 11px;
1393
+ text-align: center;
1394
+ position: absolute;
1395
+ left: 0;
1396
+ width: 100%;
1397
+ padding: 0;
1398
+ }
1399
+ .modula .items .item .figc h2 {
1400
+ font-size: 21px;
1401
+ color:#fff;
1402
+ }
1403
+ .modula .items .item .figc p {
1404
+ color:#fff;
1405
+ font-size: 15px;
1406
+ font-style: normal;
1407
+ }
1408
+ .modula .item .jtg-social a {
1409
+ font-size: 17px;
1410
+ }
1411
+ .all-effects {
1412
+ display: inline-block;
1413
+ margin: 20px 0;
1414
+ color:#fff;
1415
+ font-size: 16px;
1416
+ background: #DAA308;
1417
+ padding: 6px 12px;
1418
+ transition:all .2s;
1419
+ }
1420
+ .all-effects:hover {
1421
+ opacity: .8;
1422
+ color:#fff;
1423
+ }
1424
+ .setting
1425
+ {
1426
+ color: #ADACAC;
1427
+ padding-left: 45px;
1428
+ margin-bottom: 15px;
1429
+ }
1430
+
1431
+ #other-galleries .cta {
1432
+ width:170px;
1433
+ text-align: right;
1434
+ }
1435
+ #other-galleries .text {
1436
+ font-size: 17px;
1437
+ width:calc(100% - 180px);
1438
+ padding-right: 20px;
1439
+ height: 150px;
1440
+ }
1441
+ #other-galleries .text h4 {
1442
+ font-size: 19px;
1443
+ font-weight: bold;
1444
+ }
1445
+ #other-galleries .text,
1446
+ #other-galleries .cta {
1447
+ display: inline-block;
1448
+ vertical-align: top;
1449
+ }
1450
+ #other-galleries .cta a {
1451
+ margin-right: 0;
1452
+ margin-top: 69px;
1453
+ }
1454
+ #other-galleries * {
1455
+ outline: 0;
1456
+ }
1457
+ #adminmenu .wp-submenu .modula-jump-pro-menu {
1458
+ color:#22e34f;
1459
+ font-weight: bold;
1460
+ }
1461
+ #external-galleries input[type=checkbox] {
1462
+ position: static;
1463
+ }
1464
+
1465
+ /* Added in 1.2.0 */
1466
+ #toplevel_page_modula-lite-admin ul li:last-of-type a {
1467
+ color: #7cc048 !important;
1468
+ }
1469
+
1470
+ body .modula-wrap .wp-badge {
1471
+ background: url('../images/modula-logo.jpg') center 35px no-repeat #50ad31;
1472
+ padding-top: 160px;
1473
+ height: 0;
1474
+ background-size: 80px 80px;
1475
+ }
1476
+
1477
+ .shortpixel {
1478
+ display: block;
1479
+ background: #fafafa;
1480
+ border: 1px solid #DDD;
1481
+ padding: 20px;
1482
  }
admin/edit-gallery.php CHANGED
@@ -1,393 +1,393 @@
1
- <?php
2
- if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
3
- die( _e( 'You are not allowed to call this page directly.', 'modula-gallery' ) );
4
- }
5
-
6
- function modula_print_value( $gallery, $field, $default = null ) {
7
- if ( $gallery == null || $gallery->$field === null ) {
8
- if ( $default === null ) {
9
- print "";
10
- } else {
11
- print stripslashes( $default );
12
- }
13
- } else {
14
- print stripslashes( $gallery->$field );
15
- }
16
- }
17
-
18
- $galleryResults = $this->ModulaDB->getGalleries();
19
-
20
- $gallery = $this->loadedData;
21
- $tg_subtitle = "Edit Gallery: " . $gallery->name;
22
-
23
- include( "header.php" );
24
-
25
- ?>
26
-
27
- <script>
28
- var modula_wp_caption_field = '<?php modula_print_value( $gallery, "wp_field_caption" ) ?>';
29
- </script>
30
- <div class="container">
31
- <div class="row collapsible">
32
- <div class="card-panel light-green lighten-4">
33
- <span> <?php echo esc_html__( 'Shortcode', 'modula-gallery' ); ?>: </span>
34
- <input type="text" readonly value="[Modula id='<?php print $gallery->id; ?>']"> </input>
35
- </div>
36
- </div>
37
- </div>
38
-
39
- <div class="container">
40
- <div class="row">
41
- <ul class="collapsible" data-collapsible="accordion">
42
- <?php foreach ( $modula_fields as $section => $s ): ?>
43
- <li id="<?php echo strtolower( str_replace( ' ', '-', $section ) ); ?>">
44
- <div class="collapsible-header white-text darken-2">
45
- <i class="<?php echo esc_attr( $s["icon"] ); ?>"></i>
46
- <span><?php echo esc_html( $section ) ?> </span> <i class="fa fa-chevron-right"></i>
47
- </div>
48
-
49
- <div class="collapsible-body lighten-5 tab form-fields">
50
-
51
- <input type="hidden" id="wp_caption" value="<?php echo esc_attr( $gallery->wp_field_caption ); ?>">
52
- <input type="hidden" id="wp_title" value="<?php echo esc_attr( $gallery->wp_field_title ); ?>">
53
-
54
- <form name="gallery_form" id="gallery_form" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>" method="post">
55
- <?php wp_nonce_field( 'Modula', 'Modula' ); ?>
56
- <input type="hidden" name="ftg_gallery_edit" id="gallery-id" value="<?php echo esc_attr( $gallery->id ); ?>"/>
57
- <table class="widefat post fixed" cellspacing="0">
58
- </tbody>
59
- </table>
60
- </form>
61
-
62
- <table>
63
- <tbody>
64
- <?php foreach ( $s["fields"] as $f => $data ) : ?><?php if ( is_array( $data["excludeFrom"] ) && ! in_array( $modula_parent_page, $data["excludeFrom"] ) ) : ?>
65
- <tr class="row-<?php echo esc_attr( $f ); ?> <?php echo esc_attr( $data["type"] ); ?>">
66
- <th scope="row">
67
- <label class="label-text"><?php echo esc_html( $data["name"] ); ?>
68
- <?php if ( isset( $data["mu"] ) ) : ?>
69
- (<?php echo esc_html( $data["mu"] ) ?>)
70
- <?php endif ?>
71
- </label>
72
- </th>
73
- <td>
74
- <div class="field">
75
- <?php if ( $data["type"] == "text" ) : ?>
76
- <div class="text">
77
- <input type="text" size="30" name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>"/>
78
- </div>
79
- <?php elseif ( $data["type"] == "select" ) : ?>
80
-
81
- <div class="text">
82
- <select class="browser-default dropdown-menu" name="tg_<?php echo esc_attr( $f ); ?>">
83
- <?php foreach ( array_keys( $data["values"] ) as $optgroup ) : ?>
84
- <optgroup label="<?php echo esc_attr( $optgroup ); ?>">
85
- <?php foreach ( $data["values"][ $optgroup ] as $option ) : ?><?php $v = explode( "|", $option ); ?>
86
- <option value="<?php echo esc_attr( $v[0] ); ?>" <?php echo $v[0] == $gallery->$f ? "selected" : "" ?> ><?php echo esc_html( $v[1] ); ?></option>
87
- <?php endforeach ?>
88
- </optgroup>
89
- <?php endforeach ?>
90
- <?php if ( isset( $data["disabled"] ) ) : ?><?php foreach ( array_keys( $data["disabled"] ) as $optgroup ) : ?>
91
- <optgroup label="<?php echo esc_attr( $optgroup ); ?>">
92
- <?php foreach ( $data["disabled"][ $optgroup ] as $option ) : ?>
93
-
94
- <?php $v = explode( "|", $option ); ?>
95
- <option disabled><?php echo esc_html( $v[1] ) ?></option>
96
- <?php endforeach ?>
97
- </optgroup>
98
- <?php endforeach ?>
99
-
100
- <?php endif ?>
101
- </select>
102
- </div>
103
- <?php elseif ( $data["type"] == "toggle" ) : ?>
104
- <div class="text">
105
- <input type="checkbox" id="ftg_<?php echo esc_attr( $f ); ?>" name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>" <?php echo $gallery->$f == 'T' ? 'checked' : '' ?> />
106
- <label for="ftg_<?php echo esc_attr( $f ); ?>"><?php echo esc_html( $data["description"] ); ?></label>
107
- </div>
108
-
109
- <?php elseif ( $data["type"] == "ui-slider" || $data['type'] == 'slider' ) : ?>
110
- <div class="text">
111
- <label class="effect-description"><?php echo esc_html( $data['description'] ); ?></label>
112
- <p class="range-field">
113
- <input name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>" type="range" min="<?php echo esc_attr( $data["min"] ); ?>" max="<?php echo esc_attr( $data["max"] ); ?>"/>
114
- </p>
115
- </div>
116
-
117
- <?php elseif ( $data["type"] == "number" ) : ?>
118
- <div class="text">
119
- <input type="text" name="tg_<?php echo esc_attr( $f ); ?>" class="integer-only" value="<?php echo esc_attr( $gallery->$f ); ?>">
120
- </div>
121
-
122
- <?php elseif ( $data["type"] == "color" ) : ?>
123
- <div class="text">
124
- <label class="effect-description effect-color" style="display:none;"> <?php echo esc_html( $data['description'] ); ?></label>
125
- <input type="text" size="6" data-default-color="<?php echo esc_attr( $data["default"] ); ?>" name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>" class='pickColor'/>
126
- </div>
127
- <?php elseif ( $data["type"] == "PRO_FEATURE" ) : ?>
128
-
129
- <div class="pro-cell">
130
- <h6><?php echo esc_html__( 'This feature is available only in the PRO version of Modula', 'modula-gallery' ); ?></h6>
131
- <br/>
132
- <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=modula-lite-gallery-upgrade&tab=comparison_table' ) ); ?>" target="_blank">
133
- <?php echo esc_html__( 'See LITE vs PRO Differences', 'modula-gallery' ); ?></a>
134
- <a class="button button-primary" href="https://wp-modula.com/?utm_source=modulalite_inst&utm_medium=banner&utm_campaign=Modula%20Lite#buy" target="_blank"><span class="dashicons dashicons-cart"></span>
135
- <?php echo esc_html__( 'Get Modula Pro!', 'modula-gallery' ); ?>
136
- </a>
137
- </div>
138
-
139
- <?php elseif ( $data["type"] == "textarea" ) : ?>
140
- <div class="text">
141
- <textarea name="tg_<?php echo esc_attr( $f ); ?>"><?php echo esc_html( $gallery->$f ); ?></textarea>
142
- </div>
143
- <?php elseif ( $data["type"] == "hover-effect" ): ?>
144
-
145
- <div class="text">
146
- <label class="effect-description"> <?php print $data['description']; ?> </label>
147
- <select name="tg_hoverEffect" class="select-effect">
148
- <?php $hoverEffectIdx = 0 ?>
149
- <option value="none"><?php echo esc_html__( 'None', 'modula-gallery' ); ?></option>
150
- <option <?php selected( 'pufrobo', $gallery->hoverEffect ) ?> value="pufrobo">Pufrobo</option>
151
- <optgroup label="Buy a PRO license to unlock all hover effects">
152
- <?php foreach ( $this->hoverEffects as $effect ) : if ( 'none' == $effect->code || 'pufrobo' == $effect->code ) { continue; } ?>
153
- <option disabled value="<?php echo esc_attr( $effect->code ); ?>"><?php echo esc_attr( $effect->name ); ?></option>
154
- <?php endforeach ?>
155
- </optgroup>
156
- </select>
157
- <a class="all-effects" href="https://wp-modula.com/demo/effects/appear/?utm_source=modulalite_inst&utm_campaign=Modula%20Lite&utm_medium=banner&utm_term=all%20effects" target="_blank"><i class="mdi mdi-comment-alert-outline"></i>
158
- <?php echo esc_html__( 'Click to see all available effects', 'modula-gallery' ); ?>
159
- </a>
160
-
161
- <!-- all effects preview -->
162
- <div class="preview modula">
163
- <div class="panel panel-pufrobo items clearfix">
164
- <!-- show preview -->
165
-
166
- <div class="item effect-pufrobo">
167
- <img src="<?php print plugins_url() ?>/modula-best-grid-gallery/admin/images/effect.jpg" class="pic">
168
- <div class="figc">
169
- <div class="figc-inner">
170
-
171
- <h2>Lorem ipsum</h2>
172
- <p class="description">Quisque diam erat, mollis
173
- vitae enim eget</p>
174
- <div class="jtg-social">
175
- <a class="fa fa-twitter" href="#"></a>
176
- <a class="fa fa-facebook" href="#"></a>
177
- <a class="fa fa-google-plus" href="#"></a>
178
- <a class="fa fa-pinterest" href="#"></a>
179
- </div>
180
- </div>
181
- </div>
182
- </div>
183
-
184
- <div class="effect-compatibility">
185
-
186
- <label class="effect-description"> <?php echo esc_html( 'This effect is compatible with:', 'modula-gallery' ); ?>
187
- <span><i class="fa fa-check"></i> <?php echo esc_html( 'Title', 'modula-gallery' ); ?></span>
188
- <span><i class="fa fa-check"></i> <?php echo esc_html( 'Subtitle', 'modula-gallery' ); ?> </span>
189
- <span><i class="fa fa-check"></i> <?php echo esc_html( 'Social Icons', 'modula-gallery' ); ?> </span>
190
- </label>
191
-
192
- </div>
193
- </div>
194
- </div>
195
- <input type="hidden" name="ftg_hoverColor" value="#000">
196
- <input type="hidden" name="ftg_hoverOpacity" value="#.8"> <br/>
197
- <div class="pro-cell">
198
- <h6><?php echo esc_html__( 'The PRO version of Modula bundles over 12 different hover effects.', 'modula-gallery' ); ?></h6>
199
- <br/>
200
- <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=modula-lite-gallery-upgrade&tab=comparison_table' ) ); ?>" target="_blank">
201
- <?php echo esc_html__( 'See LITE vs PRO Differences', 'modula-gallery' ); ?>
202
- </a>
203
- <a class="button button-primary" href="https://wp-modula.com/?utm_source=modulalite_inst&utm_medium=banner&utm_campaign=Modula%20Lite#buy" target="_blank"><span class="dashicons dashicons-cart"></span>
204
- <?php echo esc_html__( 'Get Modula Pro!', 'modula-gallery' ); ?>
205
- </a>
206
- </div>
207
- </div>
208
- <?php endif ?>
209
- <div class="help">
210
- <?php _e( $data["description"] ); ?>
211
- </div>
212
-
213
- </div>
214
- </td>
215
- </tr>
216
- <?php endif ?><?php endforeach ?>
217
-
218
- </tbody>
219
- </table>
220
- </div>
221
- </li>
222
- <?php endforeach; ?>
223
-
224
- <li id="images">
225
- <div class="collapsible-header white-text white darken-2">
226
- <i class="mdi mdi-image-filter"></i>
227
- <span><?php echo esc_html__( 'Images', 'Modula-gallery' ) ?> </span>
228
- <i class="fa fa-chevron-right"></i>
229
- </div>
230
-
231
- <div class="collapsible-body white lighten-5">
232
-
233
- <div class="image-size-section">
234
- <div>
235
- <div class="tips">
236
-
237
- <span class="shortpixel">
238
- <img src="<?php echo plugins_url( '', __file__ ) ?>/images/icon-shortpixel.png" alt="ShortPixel">
239
- <a target="_blank" href="https://shortpixel.com/h/af/HUOYEBB31472"><?php echo esc_html__( 'We suggest using the ShortPixel image optimization plugin to optimize your images and get the best possible SEO results & load speed..', 'modula-gallery' ) ?></a>
240
- </span>
241
-
242
- </div>
243
- </div>
244
- </div>
245
-
246
- <div>
247
- <div class="pro-cell">
248
- <h6><?php echo esc_html__( 'Add more than 20 images per gallery. Upgrade to PRO', 'modula-gallery' ); ?></h6>
249
- <br/>
250
- <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=modula-lite-gallery-upgrade&tab=comparison_table' ) ); ?>" target="_blank">See
251
- <?php echo esc_html__( 'LITE vs PRO Differences', 'modula-gallery' ); ?></a>
252
- <a class="button button-primary" href="https://wp-modula.com/?utm_source=modulalite_inst&utm_medium=banner&utm_campaign=Modula%20Lite#buy" target="_blank"><span class="dashicons dashicons-cart"></span>
253
- <?php echo esc_html__( 'Get Modula Pro!', 'modula-gallery' ); ?></a>
254
- </div>
255
-
256
- <div class="actions row">
257
- <label class="label-text row"><?php echo esc_html__( 'Add Images', 'modula-gallery' ) ?></label>
258
- <a href="#" class="open-media-panel waves-effect button-bg waves-light btn action"><i class="mdi-image-photo"></i> <?php echo esc_html__( 'Add images', 'modula-gallery' ) ?>
259
- </a>
260
- </div>
261
-
262
- <div class="bulk row">
263
- <label class="label-text row"><?php echo esc_html__( 'Bulk Actions', 'modula-gallery' ) ?></label>
264
- <div class="options">
265
- <a class="btn button-bg waves-effect waves-light" href="#" data-action="select"><?php echo esc_html__( 'Select all', 'modula-gallery' ) ?></a>
266
- <a class="btn button-bg waves-effect waves-light" href="#" data-action="deselect"><?php echo esc_html__( 'Deselect all', 'modula-gallery' ) ?></a>
267
- <a class="btn button-bg waves-effect waves-light" href="#" data-action="toggle"><?php echo esc_html__( 'Toggle selection', 'modula-gallery' ) ?></a>
268
- <a class="btn button-bg waves-effect waves-light" href="#" data-action="remove"><?php echo esc_html__( 'Remove', 'modula-gallery' ) ?></a>
269
- </div>
270
- <div class="panel">
271
- <strong></strong>
272
- <p class="text"></p>
273
- <p class="buttons">
274
- <a class="btn deep-orange darken-2 mrm cancel" href="#"><?php echo esc_html__( 'Cancel', 'modula-gallery' ) ?></a>
275
- <a class="btn green mrm proceed firm" href="#"><?php echo esc_html__( 'Proceed', 'modula-gallery' ) ?></a>
276
- </p>
277
- </div>
278
- </div>
279
-
280
- <div class="row">
281
- <span class="tip"><?php echo esc_html__( 'Drag images to change order.', 'modula-gallery' ) ?></span>
282
- </div>
283
-
284
- <div id="image-list"></div>
285
-
286
- <!-- image panel -->
287
- <div id="image-panel-model" style="display:none">
288
- <a href="#" class="close" title="Close">X</a>
289
- <h4> <?php _e( 'Edit Image', 'modula-gallery' ) ?> </h4>
290
- <div class="clearfix">
291
- <div class="left">
292
- <div class="figure"></div>
293
- </div>
294
- <div class="editimage-right">
295
- <div class="field">
296
- <label><?php echo esc_html__( 'Title', 'modula-gallery' ) ?></label>
297
- <div class="text">
298
- <textarea id="item-title" name="title"></textarea>
299
- </div>
300
- <label><?php echo esc_html__( 'Caption', 'modula-gallery' ) ?></label>
301
- <div class="text">
302
- <textarea id="item-description" name="description"></textarea>
303
- </div>
304
- </div>
305
-
306
- <div class="field">
307
- <label for="alignment"><?php echo esc_html__( 'Alignment', 'modula-gallery' ) ?></label>
308
- <select name="halign">
309
- <option><?php _e( 'left', 'modula-gallery' ) ?></option>
310
- <option selected><?php _e( 'center', 'modula-gallery' ) ?></option>
311
- <option><?php _e( 'right', 'modula-gallery' ) ?></option>
312
- </select> <select name="valign">
313
- <option><?php _e( 'top', 'modula-gallery' ) ?></option>
314
- <option selected><?php _e( 'middle', 'modula-gallery' ) ?></option>
315
- <option><?php _e( 'bottom', 'modula-gallery' ) ?></option>
316
- </select>
317
- </div>
318
- <div class="field">
319
- <label><?php _e( 'Link', 'modula-gallery' ) ?></label>
320
- <div class="text">
321
- <!-- <input type="text" name="link" value="" class="text-input row"> -->
322
- <textarea id="item-link" name="link"></textarea> <select name="target">
323
- <option value=""><?php echo esc_html__( 'Default target', 'modula-gallery' ) ?></option>
324
- <option value="_self"><?php echo esc_html__( 'Open in same page', 'modula-gallery' ) ?></option>
325
- <option value="_blank"><?php echo esc_html__( 'Open in new page', 'modula-gallery' ) ?></option>
326
- </select>
327
- </div>
328
- </div>
329
- <div class="field filters clearfix"></div>
330
- </div>
331
- </div>
332
- <div class="field buttons">
333
- <a href="#" data-action="cancel" class="action modal-action modal-close waves-effect waves-yellow btn-flat"><i class="mdi-content-reply"></i> <?php echo esc_html__( 'Cancel', 'modula-gallery' ) ?>
334
- </a>
335
- <a href="#" data-action="save" class="action modal-action modal-close waves-effect waves-green btn-flat"><i class="fa fa-save"></i> <?php echo esc_html__( 'Save', 'modula-gallery' ) ?>
336
- </a>
337
- </div>
338
- </div>
339
- </div>
340
- </div>
341
- </li>
342
- </ul>
343
- </div>
344
- </div>
345
-
346
- <a id="edit-gallery" data-tooltip="Update gallery" data-position="top" data-delay="10" class="tooltipped btn-floating btn-large waves-effect waves-light green update-gallery">
347
- <i class="icon icon-save-disk"> </i> </a>
348
-
349
- <div class="preloader-wrapper big active" id="spinner">
350
- <div class="spinner-layer spinner-blue-only">
351
- <div class="circle-clipper left">
352
- <div class="circle"></div>
353
- </div>
354
- <div class="gap-patch">
355
- <div class="circle"></div>
356
- </div>
357
- <div class="circle-clipper right">
358
- <div class="circle"></div>
359
- </div>
360
- </div>
361
- </div>
362
-
363
- <div id="import-modal" class="modal">
364
- <div class="modal-content">
365
- <h3><?php echo esc_html__( 'Import Configuration', 'modula-gallery' ); ?></h3>
366
- <p><?php echo esc_html__( 'Paste here the configuration code', 'modula-gallery' ); ?></p>
367
- <textarea> </textarea>
368
-
369
- </div>
370
- <div class="modal-footer">
371
- <a id="save" href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat"><?php _e( 'Import', 'modula-gallery' ) ?></a>
372
-
373
- <a href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat"><?php _e( 'Close', 'modula-gallery' ) ?></a>
374
- </div>
375
- </div>
376
-
377
- <div id="export-modal" class="modal">
378
- <div class="modal-content">
379
- <h3><?php echo esc_html__( 'Export Configuration', 'modula-gallery' ); ?></h3>
380
- <p><?php echo esc_html__( 'Copy the configuration code', 'modula-gallery' ); ?></p>
381
- <textarea readonly></textarea>
382
- </div>
383
- <div class="modal-footer">
384
- <a href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat"><?php _e( 'OK', 'modula-gallery' ) ?></a>
385
- </div>
386
- </div>
387
-
388
- <script>
389
- (function( $ ) {
390
- TG.load_images();
391
- TG.init_gallery();
392
- })( jQuery );
393
- </script>
1
+ <?php
2
+ if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
3
+ die( _e( 'You are not allowed to call this page directly.', 'modula-gallery' ) );
4
+ }
5
+
6
+ function modula_print_value( $gallery, $field, $default = null ) {
7
+ if ( $gallery == null || $gallery->$field === null ) {
8
+ if ( $default === null ) {
9
+ print "";
10
+ } else {
11
+ print stripslashes( $default );
12
+ }
13
+ } else {
14
+ print stripslashes( $gallery->$field );
15
+ }
16
+ }
17
+
18
+ $galleryResults = $this->ModulaDB->getGalleries();
19
+
20
+ $gallery = $this->loadedData;
21
+ $tg_subtitle = "Edit Gallery: " . $gallery->name;
22
+
23
+ include( "header.php" );
24
+
25
+ ?>
26
+
27
+ <script>
28
+ var modula_wp_caption_field = '<?php modula_print_value( $gallery, "wp_field_caption" ) ?>';
29
+ </script>
30
+ <div class="container">
31
+ <div class="row collapsible">
32
+ <div class="card-panel light-green lighten-4">
33
+ <span> <?php echo esc_html__( 'Shortcode', 'modula-gallery' ); ?>: </span>
34
+ <input type="text" readonly value="[Modula id='<?php print $gallery->id; ?>']"> </input>
35
+ </div>
36
+ </div>
37
+ </div>
38
+
39
+ <div class="container">
40
+ <div class="row">
41
+ <ul class="collapsible" data-collapsible="accordion">
42
+ <?php foreach ( $modula_fields as $section => $s ): ?>
43
+ <li id="<?php echo strtolower( str_replace( ' ', '-', $section ) ); ?>">
44
+ <div class="collapsible-header white-text darken-2">
45
+ <i class="<?php echo esc_attr( $s["icon"] ); ?>"></i>
46
+ <span><?php echo esc_html( $section ) ?> </span> <i class="fa fa-chevron-right"></i>
47
+ </div>
48
+
49
+ <div class="collapsible-body lighten-5 tab form-fields">
50
+
51
+ <input type="hidden" id="wp_caption" value="<?php echo esc_attr( $gallery->wp_field_caption ); ?>">
52
+ <input type="hidden" id="wp_title" value="<?php echo esc_attr( $gallery->wp_field_title ); ?>">
53
+
54
+ <form name="gallery_form" id="gallery_form" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>" method="post">
55
+ <?php wp_nonce_field( 'Modula', 'Modula' ); ?>
56
+ <input type="hidden" name="ftg_gallery_edit" id="gallery-id" value="<?php echo esc_attr( $gallery->id ); ?>"/>
57
+ <table class="widefat post fixed" cellspacing="0">
58
+ </tbody>
59
+ </table>
60
+ </form>
61
+
62
+ <table>
63
+ <tbody>
64
+ <?php foreach ( $s["fields"] as $f => $data ) : ?><?php if ( is_array( $data["excludeFrom"] ) && ! in_array( $modula_parent_page, $data["excludeFrom"] ) ) : ?>
65
+ <tr class="row-<?php echo esc_attr( $f ); ?> <?php echo esc_attr( $data["type"] ); ?>">
66
+ <th scope="row">
67
+ <label class="label-text"><?php echo esc_html( $data["name"] ); ?>
68
+ <?php if ( isset( $data["mu"] ) ) : ?>
69
+ (<?php echo esc_html( $data["mu"] ) ?>)
70
+ <?php endif ?>
71
+ </label>
72
+ </th>
73
+ <td>
74
+ <div class="field">
75
+ <?php if ( $data["type"] == "text" ) : ?>
76
+ <div class="text">
77
+ <input type="text" size="30" name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>"/>
78
+ </div>
79
+ <?php elseif ( $data["type"] == "select" ) : ?>
80
+
81
+ <div class="text">
82
+ <select class="browser-default dropdown-menu" name="tg_<?php echo esc_attr( $f ); ?>">
83
+ <?php foreach ( array_keys( $data["values"] ) as $optgroup ) : ?>
84
+ <optgroup label="<?php echo esc_attr( $optgroup ); ?>">
85
+ <?php foreach ( $data["values"][ $optgroup ] as $option ) : ?><?php $v = explode( "|", $option ); ?>
86
+ <option value="<?php echo esc_attr( $v[0] ); ?>" <?php echo $v[0] == $gallery->$f ? "selected" : "" ?> ><?php echo esc_html( $v[1] ); ?></option>
87
+ <?php endforeach ?>
88
+ </optgroup>
89
+ <?php endforeach ?>
90
+ <?php if ( isset( $data["disabled"] ) ) : ?><?php foreach ( array_keys( $data["disabled"] ) as $optgroup ) : ?>
91
+ <optgroup label="<?php echo esc_attr( $optgroup ); ?>">
92
+ <?php foreach ( $data["disabled"][ $optgroup ] as $option ) : ?>
93
+
94
+ <?php $v = explode( "|", $option ); ?>
95
+ <option disabled><?php echo esc_html( $v[1] ) ?></option>
96
+ <?php endforeach ?>
97
+ </optgroup>
98
+ <?php endforeach ?>
99
+
100
+ <?php endif ?>
101
+ </select>
102
+ </div>
103
+ <?php elseif ( $data["type"] == "toggle" ) : ?>
104
+ <div class="text">
105
+ <input type="checkbox" id="ftg_<?php echo esc_attr( $f ); ?>" name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>" <?php echo $gallery->$f == 'T' ? 'checked' : '' ?> />
106
+ <label for="ftg_<?php echo esc_attr( $f ); ?>"><?php echo esc_html( $data["description"] ); ?></label>
107
+ </div>
108
+
109
+ <?php elseif ( $data["type"] == "ui-slider" || $data['type'] == 'slider' ) : ?>
110
+ <div class="text">
111
+ <label class="effect-description"><?php echo esc_html( $data['description'] ); ?></label>
112
+ <p class="range-field">
113
+ <input name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>" type="range" min="<?php echo esc_attr( $data["min"] ); ?>" max="<?php echo esc_attr( $data["max"] ); ?>"/>
114
+ </p>
115
+ </div>
116
+
117
+ <?php elseif ( $data["type"] == "number" ) : ?>
118
+ <div class="text">
119
+ <input type="text" name="tg_<?php echo esc_attr( $f ); ?>" class="integer-only" value="<?php echo esc_attr( $gallery->$f ); ?>">
120
+ </div>
121
+
122
+ <?php elseif ( $data["type"] == "color" ) : ?>
123
+ <div class="text">
124
+ <label class="effect-description effect-color" style="display:none;"> <?php echo esc_html( $data['description'] ); ?></label>
125
+ <input type="text" size="6" data-default-color="<?php echo esc_attr( $data["default"] ); ?>" name="tg_<?php echo esc_attr( $f ); ?>" value="<?php echo esc_attr( $gallery->$f ); ?>" class='pickColor'/>
126
+ </div>
127
+ <?php elseif ( $data["type"] == "PRO_FEATURE" ) : ?>
128
+
129
+ <div class="pro-cell">
130
+ <h6><?php echo esc_html__( 'This feature is available only in the PRO version of Modula', 'modula-gallery' ); ?></h6>
131
+ <br/>
132
+ <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=modula-lite-gallery-upgrade&tab=comparison_table' ) ); ?>" target="_blank">
133
+ <?php echo esc_html__( 'See LITE vs PRO Differences', 'modula-gallery' ); ?></a>
134
+ <a class="button button-primary" href="https://wp-modula.com/?utm_source=modulalite_inst&utm_medium=banner&utm_campaign=Modula%20Lite#buy" target="_blank"><span class="dashicons dashicons-cart"></span>
135
+ <?php echo esc_html__( 'Get Modula Pro!', 'modula-gallery' ); ?>
136
+ </a>
137
+ </div>
138
+
139
+ <?php elseif ( $data["type"] == "textarea" ) : ?>
140
+ <div class="text">
141
+ <textarea name="tg_<?php echo esc_attr( $f ); ?>"><?php echo esc_html( $gallery->$f ); ?></textarea>
142
+ </div>
143
+ <?php elseif ( $data["type"] == "hover-effect" ): ?>
144
+
145
+ <div class="text">
146
+ <label class="effect-description"> <?php print $data['description']; ?> </label>
147
+ <select name="tg_hoverEffect" class="select-effect">
148
+ <?php $hoverEffectIdx = 0 ?>
149
+ <option value="none"><?php echo esc_html__( 'None', 'modula-gallery' ); ?></option>
150
+ <option <?php selected( 'pufrobo', $gallery->hoverEffect ) ?> value="pufrobo">Pufrobo</option>
151
+ <optgroup label="Buy a PRO license to unlock all hover effects">
152
+ <?php foreach ( $this->hoverEffects as $effect ) : if ( 'none' == $effect->code || 'pufrobo' == $effect->code ) { continue; } ?>
153
+ <option disabled value="<?php echo esc_attr( $effect->code ); ?>"><?php echo esc_attr( $effect->name ); ?></option>
154
+ <?php endforeach ?>
155
+ </optgroup>
156
+ </select>
157
+ <a class="all-effects" href="https://wp-modula.com/demo/effects/appear/?utm_source=modulalite_inst&utm_campaign=Modula%20Lite&utm_medium=banner&utm_term=all%20effects" target="_blank"><i class="mdi mdi-comment-alert-outline"></i>
158
+ <?php echo esc_html__( 'Click to see all available effects', 'modula-gallery' ); ?>
159
+ </a>
160
+
161
+ <!-- all effects preview -->
162
+ <div class="preview modula">
163
+ <div class="panel panel-pufrobo items clearfix">
164
+ <!-- show preview -->
165
+
166
+ <div class="item effect-pufrobo">
167
+ <img src="<?php print plugins_url() ?>/modula-best-grid-gallery/admin/images/effect.jpg" class="pic">
168
+ <div class="figc">
169
+ <div class="figc-inner">
170
+
171
+ <h2>Lorem ipsum</h2>
172
+ <p class="description">Quisque diam erat, mollis
173
+ vitae enim eget</p>
174
+ <div class="jtg-social">
175
+ <a class="fa fa-twitter" href="#"></a>
176
+ <a class="fa fa-facebook" href="#"></a>
177
+ <a class="fa fa-google-plus" href="#"></a>
178
+ <a class="fa fa-pinterest" href="#"></a>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <div class="effect-compatibility">
185
+
186
+ <label class="effect-description"> <?php echo esc_html( 'This effect is compatible with:', 'modula-gallery' ); ?>
187
+ <span><i class="fa fa-check"></i> <?php echo esc_html( 'Title', 'modula-gallery' ); ?></span>
188
+ <span><i class="fa fa-check"></i> <?php echo esc_html( 'Subtitle', 'modula-gallery' ); ?> </span>
189
+ <span><i class="fa fa-check"></i> <?php echo esc_html( 'Social Icons', 'modula-gallery' ); ?> </span>
190
+ </label>
191
+
192
+ </div>
193
+ </div>
194
+ </div>
195
+ <input type="hidden" name="ftg_hoverColor" value="#000">
196
+ <input type="hidden" name="ftg_hoverOpacity" value="#.8"> <br/>
197
+ <div class="pro-cell">
198
+ <h6><?php echo esc_html__( 'The PRO version of Modula bundles over 12 different hover effects.', 'modula-gallery' ); ?></h6>
199
+ <br/>
200
+ <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=modula-lite-gallery-upgrade&tab=comparison_table' ) ); ?>" target="_blank">
201
+ <?php echo esc_html__( 'See LITE vs PRO Differences', 'modula-gallery' ); ?>
202
+ </a>
203
+ <a class="button button-primary" href="https://wp-modula.com/?utm_source=modulalite_inst&utm_medium=banner&utm_campaign=Modula%20Lite#buy" target="_blank"><span class="dashicons dashicons-cart"></span>
204
+ <?php echo esc_html__( 'Get Modula Pro!', 'modula-gallery' ); ?>
205
+ </a>
206
+ </div>
207
+ </div>
208
+ <?php endif ?>
209
+ <div class="help">
210
+ <?php _e( $data["description"] ); ?>
211
+ </div>
212
+
213
+ </div>
214
+ </td>
215
+ </tr>
216
+ <?php endif ?><?php endforeach ?>
217
+
218
+ </tbody>
219
+ </table>
220
+ </div>
221
+ </li>
222
+ <?php endforeach; ?>
223
+
224
+ <li id="images">
225
+ <div class="collapsible-header white-text white darken-2">
226
+ <i class="mdi mdi-image-filter"></i>
227
+ <span><?php echo esc_html__( 'Images', 'Modula-gallery' ) ?> </span>
228
+ <i class="fa fa-chevron-right"></i>
229
+ </div>
230
+
231
+ <div class="collapsible-body white lighten-5">
232
+
233
+ <div class="image-size-section">
234
+ <div>
235
+ <div class="tips">
236
+
237
+ <span class="shortpixel">
238
+ <img src="<?php echo plugins_url( '', __file__ ) ?>/images/icon-shortpixel.png" alt="ShortPixel">
239
+ <a target="_blank" href="https://shortpixel.com/h/af/HUOYEBB31472"><?php echo esc_html__( 'We suggest using the ShortPixel image optimization plugin to optimize your images and get the best possible SEO results & load speed..', 'modula-gallery' ) ?></a>
240
+ </span>
241
+
242
+ </div>
243
+ </div>
244
+ </div>
245
+
246
+ <div>
247
+ <div class="pro-cell">
248
+ <h6><?php echo esc_html__( 'Add more than 20 images per gallery. Upgrade to PRO', 'modula-gallery' ); ?></h6>
249
+ <br/>
250
+ <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=modula-lite-gallery-upgrade&tab=comparison_table' ) ); ?>" target="_blank">See
251
+ <?php echo esc_html__( 'LITE vs PRO Differences', 'modula-gallery' ); ?></a>
252
+ <a class="button button-primary" href="https://wp-modula.com/?utm_source=modulalite_inst&utm_medium=banner&utm_campaign=Modula%20Lite#buy" target="_blank"><span class="dashicons dashicons-cart"></span>
253
+ <?php echo esc_html__( 'Get Modula Pro!', 'modula-gallery' ); ?></a>
254
+ </div>
255
+
256
+ <div class="actions row">
257
+ <label class="label-text row"><?php echo esc_html__( 'Add Images', 'modula-gallery' ) ?></label>
258
+ <a href="#" class="open-media-panel waves-effect button-bg waves-light btn action"><i class="mdi-image-photo"></i> <?php echo esc_html__( 'Add images', 'modula-gallery' ) ?>
259
+ </a>
260
+ </div>
261
+
262
+ <div class="bulk row">
263
+ <label class="label-text row"><?php echo esc_html__( 'Bulk Actions', 'modula-gallery' ) ?></label>
264
+ <div class="options">
265
+ <a class="btn button-bg waves-effect waves-light" href="#" data-action="select"><?php echo esc_html__( 'Select all', 'modula-gallery' ) ?></a>
266
+ <a class="btn button-bg waves-effect waves-light" href="#" data-action="deselect"><?php echo esc_html__( 'Deselect all', 'modula-gallery' ) ?></a>
267
+ <a class="btn button-bg waves-effect waves-light" href="#" data-action="toggle"><?php echo esc_html__( 'Toggle selection', 'modula-gallery' ) ?></a>
268
+ <a class="btn button-bg waves-effect waves-light" href="#" data-action="remove"><?php echo esc_html__( 'Remove', 'modula-gallery' ) ?></a>
269
+ </div>
270
+ <div class="panel">
271
+ <strong></strong>
272
+ <p class="text"></p>
273
+ <p class="buttons">
274
+ <a class="btn deep-orange darken-2 mrm cancel" href="#"><?php echo esc_html__( 'Cancel', 'modula-gallery' ) ?></a>
275
+ <a class="btn green mrm proceed firm" href="#"><?php echo esc_html__( 'Proceed', 'modula-gallery' ) ?></a>
276
+ </p>
277
+ </div>
278
+ </div>
279
+
280
+ <div class="row">
281
+ <span class="tip"><?php echo esc_html__( 'Drag images to change order.', 'modula-gallery' ) ?></span>
282
+ </div>
283
+
284
+ <div id="image-list"></div>
285
+
286
+ <!-- image panel -->
287
+ <div id="image-panel-model" style="display:none">
288
+ <a href="#" class="close" title="Close">X</a>
289
+ <h4> <?php _e( 'Edit Image', 'modula-gallery' ) ?> </h4>
290
+ <div class="clearfix">
291
+ <div class="left">
292
+ <div class="figure"></div>
293
+ </div>
294
+ <div class="editimage-right">
295
+ <div class="field">
296
+ <label><?php echo esc_html__( 'Title', 'modula-gallery' ) ?></label>
297
+ <div class="text">
298
+ <textarea id="item-title" name="title"></textarea>
299
+ </div>
300
+ <label><?php echo esc_html__( 'Caption', 'modula-gallery' ) ?></label>
301
+ <div class="text">
302
+ <textarea id="item-description" name="description"></textarea>
303
+ </div>
304
+ </div>
305
+
306
+ <div class="field">
307
+ <label for="alignment"><?php echo esc_html__( 'Alignment', 'modula-gallery' ) ?></label>
308
+ <select name="halign">
309
+ <option><?php _e( 'left', 'modula-gallery' ) ?></option>
310
+ <option selected><?php _e( 'center', 'modula-gallery' ) ?></option>
311
+ <option><?php _e( 'right', 'modula-gallery' ) ?></option>
312
+ </select> <select name="valign">
313
+ <option><?php _e( 'top', 'modula-gallery' ) ?></option>
314
+ <option selected><?php _e( 'middle', 'modula-gallery' ) ?></option>
315
+ <option><?php _e( 'bottom', 'modula-gallery' ) ?></option>
316
+ </select>
317
+ </div>
318
+ <div class="field">
319
+ <label><?php _e( 'Link', 'modula-gallery' ) ?></label>
320
+ <div class="text">
321
+ <!-- <input type="text" name="link" value="" class="text-input row"> -->
322
+ <textarea id="item-link" name="link"></textarea> <select name="target">
323
+ <option value=""><?php echo esc_html__( 'Default target', 'modula-gallery' ) ?></option>
324
+ <option value="_self"><?php echo esc_html__( 'Open in same page', 'modula-gallery' ) ?></option>
325
+ <option value="_blank"><?php echo esc_html__( 'Open in new page', 'modula-gallery' ) ?></option>
326
+ </select>
327
+ </div>
328
+ </div>
329
+ <div class="field filters clearfix"></div>
330
+ </div>
331
+ </div>
332
+ <div class="field buttons">
333
+ <a href="#" data-action="cancel" class="action modal-action modal-close waves-effect waves-yellow btn-flat"><i class="mdi-content-reply"></i> <?php echo esc_html__( 'Cancel', 'modula-gallery' ) ?>
334
+ </a>
335
+ <a href="#" data-action="save" class="action modal-action modal-close waves-effect waves-green btn-flat"><i class="fa fa-save"></i> <?php echo esc_html__( 'Save', 'modula-gallery' ) ?>
336
+ </a>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+ </li>
342
+ </ul>
343
+ </div>
344
+ </div>
345
+
346
+ <a id="edit-gallery" data-tooltip="Update gallery" data-position="top" data-delay="10" class="tooltipped btn-floating btn-large waves-effect waves-light green update-gallery">
347
+ <i class="icon icon-save-disk"> </i> </a>
348
+
349
+ <div class="preloader-wrapper big active" id="spinner">
350
+ <div class="spinner-layer spinner-blue-only">
351
+ <div class="circle-clipper left">
352
+ <div class="circle"></div>
353
+ </div>
354
+ <div class="gap-patch">
355
+ <div class="circle"></div>
356
+ </div>
357
+ <div class="circle-clipper right">
358
+ <div class="circle"></div>
359
+ </div>
360
+ </div>
361
+ </div>
362
+
363
+ <div id="import-modal" class="modal">
364
+ <div class="modal-content">
365
+ <h3><?php echo esc_html__( 'Import Configuration', 'modula-gallery' ); ?></h3>
366
+ <p><?php echo esc_html__( 'Paste here the configuration code', 'modula-gallery' ); ?></p>
367
+ <textarea> </textarea>
368
+
369
+ </div>
370
+ <div class="modal-footer">
371
+ <a id="save" href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat"><?php _e( 'Import', 'modula-gallery' ) ?></a>
372
+
373
+ <a href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat"><?php _e( 'Close', 'modula-gallery' ) ?></a>
374
+ </div>
375
+ </div>
376
+
377
+ <div id="export-modal" class="modal">
378
+ <div class="modal-content">
379
+ <h3><?php echo esc_html__( 'Export Configuration', 'modula-gallery' ); ?></h3>
380
+ <p><?php echo esc_html__( 'Copy the configuration code', 'modula-gallery' ); ?></p>
381
+ <textarea readonly></textarea>
382
+ </div>
383
+ <div class="modal-footer">
384
+ <a href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat"><?php _e( 'OK', 'modula-gallery' ) ?></a>
385
+ </div>
386
+ </div>
387
+
388
+ <script>
389
+ (function( $ ) {
390
+ TG.load_images();
391
+ TG.init_gallery();
392
+ })( jQuery );
393
+ </script>
admin/fix.php CHANGED
@@ -1,109 +1,109 @@
1
- <?php
2
- if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
3
- die( _e( 'You are not allowed to call this page directly.', 'modula-gallery' ) );
4
- }
5
-
6
- $nobanner = true;
7
- if ( empty( $tg_subtitle ) ) {
8
- $tg_subtitle = "Fix images";
9
- }
10
-
11
- $imageUrl = null;
12
- foreach ( $this->ModulaDB->getGalleries() as $gallery ) {
13
- $gid = $gallery->Id;
14
- $images = $this->ModulaDB->getImagesByGalleryId( $gid );
15
- if ( count( $images ) > 0 ) {
16
- $imageUrl = $images[0]->imagePath;
17
- break;
18
- }
19
- }
20
- $oldUrl = "&lt;OLD URL&gt;";
21
- if ( strpos( $imageUrl, '/wp-content' ) > 0 ) {
22
- $oldUrl = strtolower( substr( $imageUrl, 0, strpos( $imageUrl, '/wp-content' ) ) );
23
- }
24
-
25
- ?>
26
-
27
- <?php include( "header.php" ); ?>
28
- <style>
29
- #fix-panel h2 {
30
- font-size: 18px;
31
- font-weight: bold;
32
- margin-bottom: 4px;
33
- padding-bottom: 0;
34
- line-height: 1;
35
- }
36
-
37
- #fix-panel pre {
38
- background: #fff;
39
- padding: 10px;
40
- }
41
- </style>
42
- <?php if ( isset( $_GET['fix'] ) && $_GET['fix'] == '1' ) : ?>
43
-
44
- <?php
45
-
46
- $lines = array();
47
- foreach ( $this->ModulaDB->getGalleries() as $gallery ) {
48
- $gid = $gallery->Id;
49
- $images = $this->ModulaDB->getImagesByGalleryId( $gid );
50
- foreach ( $images as $image ) {
51
- if ( strpos( strtolower( $image->imagePath ), $oldUrl ) === 0 ) {
52
- $lines [] = $image->imagePath;
53
- }
54
- }
55
- }
56
-
57
- ?>
58
- <div class="row">
59
- <div class="col">
60
- <div class="card-panel lime lighten-4" id="fix-panel">
61
- <?php echo count( $lines ) ?> <?php echo esc_html__( 'image to be processed:', 'modula-gallery' ); ?>
62
- <pre><?php echo implode( "\n", $lines ) ?></pre>
63
-
64
- <?php
65
- $dir = wp_upload_dir();
66
- file_put_contents( $dir['basedir'] . "/old-images.txt", implode( "\n", $lines ) );
67
-
68
- $res = $wpdb->query( 'UPDATE ' . $wpdb->prefix . 'modula_images SET imagePath=REPLACE(imagePath, "' . $oldUrl . '", "' . site_url() . '")' );
69
- add_option( 'Modula_skip_fix', true );
70
- ?>
71
-
72
- <?php if ( $res > 0 ) : ?>
73
- <h2><?php echo esc_html__( 'Fix completed successfully!', 'modula-gallery' ); ?></h2>
74
- <?php else : ?>
75
- <h2><?php echo esc_html__( 'No images where updated', 'modula-gallery' ); ?></h2>
76
- <?php endif ?>
77
- <a class="btn" href="?page=modula-lite-admin"><?php echo esc_html__( 'Go to dashboard', 'modula-gallery' ); ?></a>
78
- </div>
79
- </div>
80
- </div>
81
- <?php else : ?>
82
-
83
- <div class="row">
84
- <div class="col">
85
- <div class="card-panel lime lighten-4" id="fix-panel">
86
- <strong>FIX</strong>: version 1.1.0 introduced a new way to resize images, now you can choose a custom
87
- image size for your galleries, regardless the sizes defined by your theme.<br> Although we thoroughly
88
- tested the new feature, <strong>some website may encounter an issue where images don't appear
89
- anymore</strong>.<br>
90
- <h2>For tech savvy:</h2>
91
- The cause is a wrong url inside the MySQL table <strong><?php echo $wpdb->prefix ?>
92
- modula_images</strong><br> If you know how to do it, you can easily fix the wrong urls inside the
93
- field <strong>imagePath</strong>. The query to use is:
94
- <pre>UPDATE <?php echo $wpdb->prefix ?>modula_images REPLACE(imagePath, '<?php echo $oldUrl ?>
95
- ', '<?php echo site_url() ?>');</pre>
96
-
97
- <?php if ( $oldUrl == "&lt;OLD URL&gt;" ) : ?>
98
- where &lt;old URL&gt; is the previous URL of this site.
99
- <?php endif ?>
100
- <h2>For everyone:</h2>
101
- If you have updated the plugin and you have run into this issue then you can use the <strong>Fix
102
- tool</strong> by clicking the following button: <br> <br>
103
- <a href="?page=modula-lite-gallery-fix&fix=1" class="btn">Fix image paths</a> <br> <strong>If you're
104
- unsure about what to do then please contact
105
- <a href="mailto:diego@greentreelabs.net?subject=Help with Modula fix tool">diego@greentreelabs.net</a></strong>.
106
- </div>
107
- </div>
108
- </div>
109
  <?php endif ?>
1
+ <?php
2
+ if ( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) ) {
3
+ die( _e( 'You are not allowed to call this page directly.', 'modula-gallery' ) );
4
+ }
5
+
6
+ $nobanner = true;
7
+ if ( empty( $tg_subtitle ) ) {
8
+ $tg_subtitle = "Fix images";
9
+ }
10
+
11
+ $imageUrl = null;
12
+ foreach ( $this->ModulaDB->getGalleries() as $gallery ) {
13
+ $gid = $gallery->Id;
14
+ $images = $this->ModulaDB->getImagesByGalleryId( $gid );
15
+ if ( count( $images ) > 0 ) {
16
+ $imageUrl = $images[0]->imagePath;
17
+ break;
18
+ }
19
+ }
20
+ $oldUrl = "&lt;OLD URL&gt;";
21
+ if ( strpos( $imageUrl, '/wp-content' ) > 0 ) {
22
+ $oldUrl = strtolower( substr( $imageUrl, 0, strpos( $imageUrl, '/wp-content' ) ) );
23
+ }
24
+
25
+ ?>
26
+
27
+ <?php include( "header.php" ); ?>
28
+ <style>
29
+ #fix-panel h2 {
30
+ font-size: 18px;
31
+ font-weight: bold;
32
+ margin-bottom: 4px;
33
+ padding-bottom: 0;
34
+ line-height: 1;
35
+ }
36
+
37
+ #fix-panel pre {
38
+ background: #fff;
39
+ padding: 10px;
40
+ }
41
+ </style>
42
+ <?php if ( isset( $_GET['fix'] ) && $_GET['fix'] == '1' ) : ?>
43
+
44
+ <?php
45
+
46
+ $lines = array();
47
+ foreach ( $this->ModulaDB->getGalleries() as $gallery ) {
48
+ $gid = $gallery->Id;
49
+ $images = $this->ModulaDB->getImagesByGalleryId( $gid );
50
+ foreach ( $images as $image ) {
51
+ if ( strpos( strtolower( $image->imagePath ), $oldUrl ) === 0 ) {
52
+ $lines [] = $image->imagePath;
53
+ }
54
+ }
55
+ }
56
+
57
+ ?>
58
+ <div class="row">
59
+ <div class="col">
60
+ <div class="card-panel lime lighten-4" id="fix-panel">
61
+ <?php echo count( $lines ) ?> <?php echo esc_html__( 'image to be processed:', 'modula-gallery' ); ?>
62
+ <pre><?php echo implode( "\n", $lines ) ?></pre>
63
+
64
+ <?php
65
+ $dir = wp_upload_dir();
66
+ file_put_contents( $dir['basedir'] . "/old-images.txt", implode( "\n", $lines ) );
67
+
68
+ $res = $wpdb->query( 'UPDATE ' . $wpdb->prefix . 'modula_images SET imagePath=REPLACE(imagePath, "' . $oldUrl . '", "' . site_url() . '")' );
69
+ add_option( 'Modula_skip_fix', true );
70
+ ?>
71
+
72
+ <?php if ( $res > 0 ) : ?>
73
+ <h2><?php echo esc_html__( 'Fix completed successfully!', 'modula-gallery' ); ?></h2>
74
+ <?php else : ?>
75
+ <h2><?php echo esc_html__( 'No images where updated', 'modula-gallery' ); ?></h2>
76
+ <?php endif ?>
77
+ <a class="btn" href="?page=modula-lite-admin"><?php echo esc_html__( 'Go to dashboard', 'modula-gallery' ); ?></a>
78
+ </div>
79
+ </div>
80
+ </div>
81
+ <?php else : ?>
82
+
83
+ <div class="row">
84
+ <div class="col">
85
+ <div class="card-panel lime lighten-4" id="fix-panel">
86
+ <strong>FIX</strong>: version 1.1.0 introduced a new way to resize images, now you can choose a custom
87
+ image size for your galleries, regardless the sizes defined by your theme.<br> Although we thoroughly
88
+ tested the new feature, <strong>some website may encounter an issue where images don't appear
89
+ anymore</strong>.<br>
90
+ <h2>For tech savvy:</h2>
91
+ The cause is a wrong url inside the MySQL table <strong><?php echo $wpdb->prefix ?>
92
+ modula_images</strong><br> If you know how to do it, you can easily fix the wrong urls inside the
93
+ field <strong>imagePath</strong>. The query to use is:
94
+ <pre>UPDATE <?php echo $wpdb->prefix ?>modula_images REPLACE(imagePath, '<?php echo $oldUrl ?>
95
+ ', '<?php echo site_url() ?>');</pre>
96
+
97
+ <?php if ( $oldUrl == "&lt;OLD URL&gt;" ) : ?>
98
+ where &lt;old URL&gt; is the previous URL of this site.
99
+ <?php endif ?>
100
+ <h2>For everyone:</h2>
101
+ If you have updated the plugin and you have run into this issue then you can use the <strong>Fix
102
+ tool</strong> by clicking the following button: <br> <br>
103
+ <a href="?page=modula-lite-gallery-fix&fix=1" class="btn">Fix image paths</a> <br> <strong>If you're
104
+ unsure about what to do then please contact
105
+ <a href="mailto:diego@greentreelabs.net?subject=Help with Modula fix tool">diego@greentreelabs.net</a></strong>.
106
+ </div>
107
+ </div>
108
+ </div>
109
  <?php endif ?>
admin/font/material-design-icons/license.txt CHANGED
@@ -1,96 +1,96 @@
1
- Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),
2
- with Reserved Font Name Material Design Icons.
3
- Copyright (c) 2014, Google (http://www.google.com/design/)
4
- uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE
5
-
6
- This Font Software is licensed under the SIL Open Font License, Version 1.1.
7
- This license is copied below, and is also available with a FAQ at:
8
- http://scripts.sil.org/OFL
9
-
10
-
11
- -----------------------------------------------------------
12
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
13
- -----------------------------------------------------------
14
-
15
- PREAMBLE
16
- The goals of the Open Font License (OFL) are to stimulate worldwide
17
- development of collaborative font projects, to support the font creation
18
- efforts of academic and linguistic communities, and to provide a free and
19
- open framework in which fonts may be shared and improved in partnership
20
- with others.
21
-
22
- The OFL allows the licensed fonts to be used, studied, modified and
23
- redistributed freely as long as they are not sold by themselves. The
24
- fonts, including any derivative works, can be bundled, embedded,
25
- redistributed and/or sold with any software provided that any reserved
26
- names are not used by derivative works. The fonts and derivatives,
27
- however, cannot be released under any other type of license. The
28
- requirement for fonts to remain under this license does not apply
29
- to any document created using the fonts or their derivatives.
30
-
31
- DEFINITIONS
32
- "Font Software" refers to the set of files released by the Copyright
33
- Holder(s) under this license and clearly marked as such. This may
34
- include source files, build scripts and documentation.
35
-
36
- "Reserved Font Name" refers to any names specified as such after the
37
- copyright statement(s).
38
-
39
- "Original Version" refers to the collection of Font Software components as
40
- distributed by the Copyright Holder(s).
41
-
42
- "Modified Version" refers to any derivative made by adding to, deleting,
43
- or substituting -- in part or in whole -- any of the components of the
44
- Original Version, by changing formats or by porting the Font Software to a
45
- new environment.
46
-
47
- "Author" refers to any designer, engineer, programmer, technical
48
- writer or other person who contributed to the Font Software.
49
-
50
- PERMISSION & CONDITIONS
51
- Permission is hereby granted, free of charge, to any person obtaining
52
- a copy of the Font Software, to use, study, copy, merge, embed, modify,
53
- redistribute, and sell modified and unmodified copies of the Font
54
- Software, subject to the following conditions:
55
-
56
- 1) Neither the Font Software nor any of its individual components,
57
- in Original or Modified Versions, may be sold by itself.
58
-
59
- 2) Original or Modified Versions of the Font Software may be bundled,
60
- redistributed and/or sold with any software, provided that each copy
61
- contains the above copyright notice and this license. These can be
62
- included either as stand-alone text files, human-readable headers or
63
- in the appropriate machine-readable metadata fields within text or
64
- binary files as long as those fields can be easily viewed by the user.
65
-
66
- 3) No Modified Version of the Font Software may use the Reserved Font
67
- Name(s) unless explicit written permission is granted by the corresponding
68
- Copyright Holder. This restriction only applies to the primary font name as
69
- presented to the users.
70
-
71
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
72
- Software shall not be used to promote, endorse or advertise any
73
- Modified Version, except to acknowledge the contribution(s) of the
74
- Copyright Holder(s) and the Author(s) or with their explicit written
75
- permission.
76
-
77
- 5) The Font Software, modified or unmodified, in part or in whole,
78
- must be distributed entirely under this license, and must not be
79
- distributed under any other license. The requirement for fonts to
80
- remain under this license does not apply to any document created
81
- using the Font Software.
82
-
83
- TERMINATION
84
- This license becomes null and void if any of the above conditions are
85
- not met.
86
-
87
- DISCLAIMER
88
- THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
89
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
90
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
91
- OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
92
- COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
93
- INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
94
- DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
95
- FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
96
  OTHER DEALINGS IN THE FONT SOFTWARE.
1
+ Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/),
2
+ with Reserved Font Name Material Design Icons.
3
+ Copyright (c) 2014, Google (http://www.google.com/design/)
4
+ uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE
5
+
6
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
7
+ This license is copied below, and is also available with a FAQ at:
8
+ http://scripts.sil.org/OFL
9
+
10
+
11
+ -----------------------------------------------------------
12
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
13
+ -----------------------------------------------------------
14
+
15
+ PREAMBLE
16
+ The goals of the Open Font License (OFL) are to stimulate worldwide
17
+ development of collaborative font projects, to support the font creation
18
+ efforts of academic and linguistic communities, and to provide a free and
19
+ open framework in which fonts may be shared and improved in partnership
20
+ with others.
21
+
22
+ The OFL allows the licensed fonts to be used, studied, modified and
23
+ redistributed freely as long as they are not sold by themselves. The
24
+ fonts, including any derivative works, can be bundled, embedded,
25
+ redistributed and/or sold with any software provided that any reserved
26
+ names are not used by derivative works. The fonts and derivatives,
27
+ however, cannot be released under any other type of license. The
28
+ requirement for fonts to remain under this license does not apply
29
+ to any document created using the fonts or their derivatives.
30
+
31
+ DEFINITIONS
32
+ "Font Software" refers to the set of files released by the Copyright
33
+ Holder(s) under this license and clearly marked as such. This may
34
+ include source files, build scripts and documentation.
35
+
36
+ "Reserved Font Name" refers to any names specified as such after the
37
+ copyright statement(s).
38
+
39
+ "Original Version" refers to the collection of Font Software components as
40
+ distributed by the Copyright Holder(s).
41
+
42
+ "Modified Version" refers to any derivative made by adding to, deleting,
43
+ or substituting -- in part or in whole -- any of the components of the
44
+ Original Version, by changing formats or by porting the Font Software to a
45
+ new environment.
46
+
47
+ "Author" refers to any designer, engineer, programmer, technical
48
+ writer or other person who contributed to the Font Software.
49
+
50
+ PERMISSION & CONDITIONS
51
+ Permission is hereby granted, free of charge, to any person obtaining
52
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
53
+ redistribute, and sell modified and unmodified copies of the Font
54
+ Software, subject to the following conditions:
55
+
56
+ 1) Neither the Font Software nor any of its individual components,
57
+ in Original or Modified Versions, may be sold by itself.
58
+
59
+ 2) Original or Modified Versions of the Font Software may be bundled,
60
+ redistributed and/or sold with any software, provided that each copy
61
+ contains the above copyright notice and this license. These can be
62
+ included either as stand-alone text files, human-readable headers or
63
+ in the appropriate machine-readable metadata fields within text or
64
+ binary files as long as those fields can be easily viewed by the user.
65
+
66
+ 3) No Modified Version of the Font Software may use the Reserved Font
67
+ Name(s) unless explicit written permission is granted by the corresponding
68
+ Copyright Holder. This restriction only applies to the primary font name as
69
+ presented to the users.
70
+
71
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
72
+ Software shall not be used to promote, endorse or advertise any
73
+ Modified Version, except to acknowledge the contribution(s) of the
74
+ Copyright Holder(s) and the Author(s) or with their explicit written
75
+ permission.
76
+
77
+ 5) The Font Software, modified or unmodified, in part or in whole,
78
+ must be distributed entirely under this license, and must not be
79
+ distributed under any other license. The requirement for fonts to
80
+ remain under this license does not apply to any document created
81
+ using the Font Software.
82
+
83
+ TERMINATION
84
+ This license becomes null and void if any of the above conditions are
85
+ not met.
86
+
87
+ DISCLAIMER
88
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
89
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
90
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
91
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
92
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
93
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
94
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
95
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
96
  OTHER DEALINGS IN THE FONT SOFTWARE.
admin/font/material-design-icons/materialdesignicons-webfont.eot CHANGED
File without changes
admin/font/material-design-icons/materialdesignicons-webfont.svg CHANGED
@@ -1,3804 +1,3804 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <defs>
5
- <font id="MaterialDesignIcons" horiz-adv-x="24">
6
- <font-face font-family="MaterialDesignIcons"
7
- units-per-em="512" ascent="448"
8
- descent="64" />
9
- <missing-glyph horiz-adv-x="0" />
10
- <glyph glyph-name="account"
11
- unicode="&#xF101;"
12
- horiz-adv-x="512" d=" M256 362.6666666666667C303.1466666666667 362.6666666666667 341.3333333333333 324.48 341.3333333333333 277.3333333333334S303.1466666666667 192 256 192S170.6666666666667 230.1866666666667 170.6666666666667 277.3333333333334S208.8533333333333 362.6666666666667 256 362.6666666666667M256 149.3333333333334C350.2933333333334 149.3333333333334 426.6666666666667 111.1466666666667 426.6666666666667 64V21.3333333333334H85.3333333333333V64C85.3333333333333 111.1466666666667 161.7066666666667 149.3333333333334 256 149.3333333333334z" />
13
- <glyph glyph-name="account-alert"
14
- unicode="&#xF102;"
15
- horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 149.3333333333334C307.6266666666667 149.3333333333334 384 111.1466666666667 384 64V21.3333333333334H42.6666666666667V64C42.6666666666667 111.1466666666667 119.04 149.3333333333334 213.3333333333333 149.3333333333334M426.6666666666667 192V298.6666666666667H469.3333333333333V192H426.6666666666667M426.6666666666667 106.6666666666667V149.3333333333334H469.3333333333333V106.6666666666667H426.6666666666667z" />
16
- <glyph glyph-name="account-box"
17
- unicode="&#xF103;"
18
- horiz-adv-x="512" d=" M128 85.3333333333334C128 128 213.3333333333333 151.4666666666667 256 151.4666666666667S384 128 384 85.3333333333334V64H128M320 256C320 220.5866666666667 291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320S320 291.4133333333334 320 256M64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334z" />
19
- <glyph glyph-name="account-box-outline"
20
- unicode="&#xF104;"
21
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M352 101.3333333333334C352 133.3333333333334 288 149.3333333333334 256 149.3333333333334S160 133.3333333333334 160 101.3333333333334V85.3333333333334H352M256 186.6666666666667C282.4533333333333 186.6666666666667 304 208.2133333333334 304 234.6666666666667S282.4533333333333 282.6666666666667 256 282.6666666666667S208 261.12 208 234.6666666666667S229.5466666666667 186.6666666666667 256 186.6666666666667z" />
22
- <glyph glyph-name="account-check"
23
- unicode="&#xF105;"
24
- horiz-adv-x="512" d=" M192 341.3333333333334C233.1733333333333 341.3333333333334 266.6666666666667 307.8400000000001 266.6666666666667 266.6666666666667S233.1733333333333 192 192 192S117.3333333333333 225.4933333333334 117.3333333333333 266.6666666666667S150.8266666666667 341.3333333333334 192 341.3333333333334M192 154.6666666666667C274.56 154.6666666666667 341.3333333333333 121.1733333333334 341.3333333333333 80V42.6666666666667H42.6666666666667V80C42.6666666666667 121.1733333333334 109.44 154.6666666666667 192 154.6666666666667M362.6666666666667 177.92L304 241.92L328.7466666666667 266.6666666666667L362.6666666666667 232.7466666666667L439.2533333333334 309.3333333333334L464 279.2533333333334L362.6666666666667 177.92z" />
25
- <glyph glyph-name="account-circle"
26
- unicode="&#xF106;"
27
- horiz-adv-x="512" d=" M256 38.4C202.6666666666667 38.4 155.52 65.7066666666667 128 106.6666666666667C128.64 149.3333333333334 213.3333333333333 172.8 256 172.8S383.36 149.3333333333334 384 106.6666666666667C356.48 65.7066666666667 309.3333333333333 38.4 256 38.4M256 341.3333333333334C291.4133333333333 341.3333333333334 320 312.7466666666667 320 277.3333333333334S291.4133333333333 213.3333333333334 256 213.3333333333334S192 241.92 192 277.3333333333334S220.5866666666667 341.3333333333334 256 341.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333z" />
28
- <glyph glyph-name="account-key"
29
- unicode="&#xF107;"
30
- horiz-adv-x="512" d=" M234.6666666666667 234.6666666666667V192H213.3333333333333V149.3333333333334H170.6666666666667V192H124.3733333333333C115.6266666666667 167.04 91.9466666666667 149.3333333333334 64 149.3333333333334C28.5866666666667 149.3333333333334 0 177.92 0 213.3333333333334S28.5866666666667 277.3333333333334 64 277.3333333333334C91.9466666666667 277.3333333333334 115.6266666666667 259.6266666666667 124.3733333333333 234.6666666666667H234.6666666666667M64 234.6666666666667C52.2666666666667 234.6666666666667 42.6666666666667 225.0666666666667 42.6666666666667 213.3333333333334S52.2666666666667 192 64 192S85.3333333333333 201.6 85.3333333333333 213.3333333333334S75.7333333333333 234.6666666666667 64 234.6666666666667M341.3333333333333 149.3333333333334C398.2933333333334 149.3333333333334 512 120.7466666666667 512 64V21.3333333333334H170.6666666666667V64C170.6666666666667 120.7466666666667 284.3733333333334 149.3333333333334 341.3333333333333 149.3333333333334M341.3333333333333 192C294.1866666666666 192 256 230.1866666666667 256 277.3333333333334S294.1866666666666 362.6666666666667 341.3333333333333 362.6666666666667S426.6666666666667 324.48 426.6666666666667 277.3333333333334S388.48 192 341.3333333333333 192z" />
31
- <glyph glyph-name="account-location"
32
- unicode="&#xF108;"
33
- horiz-adv-x="512" d=" M384 106.6666666666667H128V125.8666666666667C128 168.5333333333334 213.3333333333333 192 256 192S384 168.5333333333334 384 125.8666666666667M256 334.9333333333334C288 334.9333333333334 313.6 309.3333333333334 313.6 277.3333333333334C313.6 245.3333333333334 288 219.7333333333334 256 219.7333333333334C224 219.7333333333334 198.4 245.3333333333334 198.4 277.3333333333334C198.4 309.3333333333334 224 334.9333333333334 256 334.9333333333334M405.3333333333333 405.3333333333333H106.6666666666667C82.9866666666667 405.3333333333333 64 386.3466666666667 64 362.6666666666667V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H192L256 -42.6666666666666L320 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V362.6666666666667C448 386.3466666666667 428.8 405.3333333333333 405.3333333333333 405.3333333333333z" />
34
- <glyph glyph-name="account-minus"
35
- unicode="&#xF109;"
36
- horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M21.3333333333333 234.6666666666667V192H192V234.6666666666667M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192z" />
37
- <glyph glyph-name="account-multiple"
38
- unicode="&#xF10A;"
39
- horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667C335.1466666666667 170.6666666666667 328.1066666666667 170.6666666666667 320.64 169.6C345.3866666666667 151.68 362.6666666666667 128 362.6666666666667 96V42.6666666666667H490.6666666666666V96C490.6666666666666 145.7066666666667 391.04 170.6666666666667 341.3333333333333 170.6666666666667M170.6666666666667 170.6666666666667C120.96 170.6666666666667 21.3333333333333 145.7066666666667 21.3333333333333 96V42.6666666666667H320V96C320 145.7066666666667 220.3733333333333 170.6666666666667 170.6666666666667 170.6666666666667M170.6666666666667 213.3333333333334C206.08 213.3333333333334 234.6666666666667 241.92 234.6666666666667 277.3333333333334S206.08 341.3333333333334 170.6666666666667 341.3333333333334S106.6666666666667 312.7466666666667 106.6666666666667 277.3333333333334S135.2533333333333 213.3333333333334 170.6666666666667 213.3333333333334M341.3333333333333 213.3333333333334C376.7466666666667 213.3333333333334 405.3333333333333 241.92 405.3333333333333 277.3333333333334S376.7466666666667 341.3333333333334 341.3333333333333 341.3333333333334S277.3333333333333 312.7466666666667 277.3333333333333 277.3333333333334S305.92 213.3333333333334 341.3333333333333 213.3333333333334z" />
40
- <glyph glyph-name="account-multiple-outline"
41
- unicode="&#xF10B;"
42
- horiz-adv-x="512" d=" M352 309.3333333333334C375.4666666666667 309.3333333333334 394.6666666666667 290.1333333333334 394.6666666666667 266.6666666666667S375.4666666666667 224 352 224S309.3333333333333 243.2 309.3333333333333 266.6666666666667S328.5333333333333 309.3333333333334 352 309.3333333333334M352 192C393.1733333333333 192 426.6666666666667 225.4933333333334 426.6666666666667 266.6666666666667S393.1733333333333 341.3333333333334 352 341.3333333333334S277.3333333333333 307.8400000000001 277.3333333333333 266.6666666666667S310.8266666666667 192 352 192M160 309.3333333333334C183.4666666666667 309.3333333333334 202.6666666666667 290.1333333333334 202.6666666666667 266.6666666666667S183.4666666666667 224 160 224S117.3333333333333 243.2 117.3333333333333 266.6666666666667S136.5333333333333 309.3333333333334 160 309.3333333333334M160 192C201.1733333333333 192 234.6666666666667 225.4933333333334 234.6666666666667 266.6666666666667S201.1733333333333 341.3333333333334 160 341.3333333333334S85.3333333333333 307.8400000000001 85.3333333333333 266.6666666666667S118.8266666666667 192 160 192M458.6666666666666 74.6666666666667H298.6666666666667V101.3333333333334C298.6666666666667 111.1466666666667 294.4 119.68 288 127.36C306.3466666666667 133.7600000000001 329.3866666666667 138.6666666666667 352 138.6666666666667C404.0533333333334 138.6666666666667 458.6666666666666 112.8533333333334 458.6666666666666 101.3333333333334M266.6666666666667 74.6666666666667H53.3333333333333V101.3333333333334C53.3333333333333 112.8533333333334 107.9466666666667 138.6666666666667 160 138.6666666666667S266.6666666666667 112.8533333333334 266.6666666666667 101.3333333333334M352 170.6666666666667C326.4 170.6666666666667 286.5066666666667 163.4133333333334 256 149.3333333333334C225.4933333333334 163.6266666666667 185.6 170.6666666666667 160 170.6666666666667C113.7066666666667 170.6666666666667 21.3333333333333 147.6266666666667 21.3333333333333 101.3333333333334V42.6666666666667H490.6666666666666V101.3333333333334C490.6666666666666 147.6266666666667 398.2933333333334 170.6666666666667 352 170.6666666666667z" />
43
- <glyph glyph-name="account-multiple-plus"
44
- unicode="&#xF10C;"
45
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667C234.6666666666667 170.6666666666667 149.3333333333333 149.3333333333334 149.3333333333333 106.6666666666667V64H405.3333333333333V106.6666666666667C405.3333333333333 149.3333333333334 320 170.6666666666667 277.3333333333333 170.6666666666667M418.56 167.2533333333333C436.2666666666667 151.8933333333333 448 131.84 448 106.6666666666667V64H512V106.6666666666667C512 139.52 461.4399999999999 160 418.56 167.2533333333333M277.3333333333333 213.3333333333334C312.7466666666667 213.3333333333334 341.3333333333333 241.92 341.3333333333333 277.3333333333334S312.7466666666667 341.3333333333334 277.3333333333333 341.3333333333334S213.3333333333333 312.7466666666667 213.3333333333333 277.3333333333334S241.92 213.3333333333334 277.3333333333333 213.3333333333334M384 213.3333333333334C419.4133333333333 213.3333333333334 448 241.92 448 277.3333333333334S419.4133333333333 341.3333333333334 384 341.3333333333334C377.1733333333333 341.3333333333334 370.56 340.2666666666667 364.3733333333333 338.3466666666667C376.5333333333333 321.0666666666667 384 299.9466666666667 384 277.3333333333334C384 254.72 376.5333333333333 233.8133333333334 364.3733333333333 216.5333333333334C370.56 214.4 377.1733333333333 213.3333333333334 384 213.3333333333334M170.6666666666667 234.6666666666667H106.6666666666667V298.6666666666667H64V234.6666666666667H0V192H64V128H106.6666666666667V192H170.6666666666667V234.6666666666667z" />
46
- <glyph glyph-name="account-network"
47
- unicode="&#xF10D;"
48
- horiz-adv-x="512" d=" M277.3333333333333 106.6666666666667V64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H106.6666666666667V138.6666666666667C106.6666666666667 179.84 173.44 213.3333333333334 256 213.3333333333334S405.3333333333333 179.84 405.3333333333333 138.6666666666667V106.6666666666667H277.3333333333333M256 405.3333333333333C297.1733333333333 405.3333333333333 330.6666666666667 371.8400000000001 330.6666666666667 330.6666666666667S297.1733333333333 256 256 256S181.3333333333333 289.4933333333334 181.3333333333333 330.6666666666667S214.8266666666667 405.3333333333333 256 405.3333333333333z" />
49
- <glyph glyph-name="account-outline"
50
- unicode="&#xF10E;"
51
- horiz-adv-x="512" d=" M256 170.6666666666667C199.04 170.6666666666667 85.3333333333333 142.2933333333334 85.3333333333333 85.3333333333334V21.3333333333334H426.6666666666667V85.3333333333334C426.6666666666667 142.2933333333334 312.96 170.6666666666667 256 170.6666666666667M256 362.6666666666667C208.8533333333333 362.6666666666667 170.6666666666667 324.48 170.6666666666667 277.3333333333334S208.8533333333333 192 256 192S341.3333333333333 230.1866666666667 341.3333333333333 277.3333333333334S303.1466666666667 362.6666666666667 256 362.6666666666667M256 130.1333333333333C319.36 130.1333333333333 386.1333333333334 98.9866666666667 386.1333333333334 85.3333333333334V61.8666666666667H125.8666666666667V85.3333333333334C125.8666666666667 98.9866666666667 192 130.1333333333333 256 130.1333333333333M256 322.1333333333334C280.7466666666667 322.1333333333334 300.8 302.0800000000001 300.8 277.3333333333334C300.8 252.5866666666667 280.7466666666667 232.5333333333334 256 232.5333333333334C231.2533333333334 232.5333333333334 211.2 252.5866666666667 211.2 277.3333333333334C211.2 302.0800000000001 231.2533333333334 322.1333333333334 256 322.1333333333334z" />
52
- <glyph glyph-name="account-plus"
53
- unicode="&#xF10F;"
54
- horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M128 234.6666666666667V298.6666666666667H85.3333333333333V234.6666666666667H21.3333333333333V192H85.3333333333333V128H128V192H192V234.6666666666667M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192z" />
55
- <glyph glyph-name="account-remove"
56
- unicode="&#xF110;"
57
- horiz-adv-x="512" d=" M320 149.3333333333334C376.9600000000001 149.3333333333334 490.6666666666666 120.96 490.6666666666666 64V21.3333333333334H149.3333333333333V64C149.3333333333333 120.96 263.04 149.3333333333334 320 149.3333333333334M320 192C272.8533333333333 192 234.6666666666667 230.1866666666667 234.6666666666667 277.3333333333334S272.8533333333333 362.6666666666667 320 362.6666666666667S405.3333333333333 324.48 405.3333333333333 277.3333333333334S367.1466666666667 192 320 192M106.6666666666667 243.4133333333334L151.8933333333333 288.8533333333334L182.1866666666667 258.5600000000001L136.7466666666667 213.3333333333334L182.1866666666667 168.1066666666667L151.8933333333333 137.8133333333333L106.6666666666667 183.2533333333333L61.44 137.8133333333334L31.1466666666667 168.1066666666667L76.5866666666667 213.3333333333334L31.1466666666667 258.56L61.44 288.8533333333334L106.6666666666667 243.4133333333334z" />
58
- <glyph glyph-name="account-search"
59
- unicode="&#xF111;"
60
- horiz-adv-x="512" d=" M320 149.3333333333334C376.9600000000001 149.3333333333334 490.6666666666666 120.7466666666667 490.6666666666666 64V21.3333333333334H149.3333333333333V64C149.3333333333333 120.7466666666667 263.04 149.3333333333334 320 149.3333333333334M320 192C272.8533333333333 192 234.6666666666667 230.1866666666667 234.6666666666667 277.3333333333334S272.8533333333333 362.6666666666667 320 362.6666666666667S405.3333333333333 324.48 405.3333333333333 277.3333333333334S367.1466666666667 192 320 192M58.88 135.2533333333333C50.56 126.9333333333333 36.9066666666667 126.9333333333333 28.5866666666667 135.2533333333333C20.2666666666667 143.5733333333334 20.2666666666667 157.2266666666667 28.5866666666667 165.5466666666667L70.1866666666667 207.1466666666667C66.1333333333333 215.4666666666667 64 224.8533333333333 64 234.6666666666667C64 270.0800000000001 92.5866666666667 298.6666666666667 128 298.6666666666667S192 270.0800000000001 192 234.6666666666667S163.4133333333333 170.6666666666667 128 170.6666666666667C118.1866666666667 170.6666666666667 108.8 172.8 100.48 176.8533333333334L58.88 135.2533333333333M128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667S139.7333333333333 256 128 256z" />
61
- <glyph glyph-name="account-star"
62
- unicode="&#xF112;"
63
- horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192M106.6666666666667 164.6933333333334L158.9333333333333 132.9066666666667L145.0666666666667 192.8533333333334L192 232.96L130.3466666666666 238.2933333333334L106.6666666666667 294.6133333333334L82.56 238.2933333333334L21.3333333333333 232.96L67.84 192.8533333333333L53.3333333333333 132.9066666666667L106.6666666666667 164.6933333333334z" />
64
- <glyph glyph-name="account-star-variant"
65
- unicode="&#xF113;"
66
- horiz-adv-x="512" d=" M192 149.3333333333334C248.96 149.3333333333334 362.6666666666667 120.96 362.6666666666667 64V21.3333333333334H21.3333333333333V64C21.3333333333333 120.96 135.04 149.3333333333334 192 149.3333333333334M192 192C144.8533333333333 192 106.6666666666667 230.1866666666667 106.6666666666667 277.3333333333334S144.8533333333333 362.6666666666667 192 362.6666666666667S277.3333333333333 324.48 277.3333333333333 277.3333333333334S239.1466666666667 192 192 192M405.3333333333333 164.6933333333334L352.8533333333333 132.9066666666667L366.9333333333333 192.8533333333334L320 232.9600000000001L381.6533333333333 238.2933333333334L405.3333333333333 294.6133333333334L429.44 238.2933333333334L490.6666666666666 232.96L444.16 192.8533333333333L458.6666666666666 132.9066666666667L405.3333333333333 164.6933333333333z" />
67
- <glyph glyph-name="account-switch"
68
- unicode="&#xF114;"
69
- horiz-adv-x="512" d=" M341.3333333333333 256C391.04 256 490.6666666666666 231.04 490.6666666666666 181.3333333333334V128H362.6666666666667V181.3333333333334C362.6666666666667 213.3333333333334 345.3866666666667 237.0133333333333 320.8533333333333 254.9333333333334L341.3333333333333 256M170.6666666666667 256C220.3733333333333 256 320 231.04 320 181.3333333333334V128H21.3333333333333V181.3333333333334C21.3333333333333 231.04 120.96 256 170.6666666666667 256M170.6666666666667 298.6666666666667C135.2533333333333 298.6666666666667 106.6666666666667 327.2533333333334 106.6666666666667 362.6666666666667S135.2533333333333 426.6666666666667 170.6666666666667 426.6666666666667S234.6666666666667 398.08 234.6666666666667 362.6666666666667S206.08 298.6666666666667 170.6666666666667 298.6666666666667M341.3333333333333 298.6666666666667C305.92 298.6666666666667 277.3333333333333 327.2533333333334 277.3333333333333 362.6666666666667S305.92 426.6666666666667 341.3333333333333 426.6666666666667S405.3333333333333 398.08 405.3333333333333 362.6666666666667S376.7466666666667 298.6666666666667 341.3333333333333 298.6666666666667M192 90.6666666666667V42.6666666666667H320V90.6666666666667L389.3333333333333 21.3333333333334L320 -48V0H192V-48L122.6666666666667 21.3333333333334L192 90.6666666666667z" />
70
- <glyph glyph-name="airballoon"
71
- unicode="&#xF115;"
72
- horiz-adv-x="512" d=" M234.6666666666667 -42.6666666666666C211.2 -42.6666666666666 192 -23.4666666666667 192 0V42.6666666666667H320V0C320 -23.4666666666667 300.8 -42.6666666666666 277.3333333333333 -42.6666666666666H234.6666666666667M256 426.6666666666667C271.1466666666667 426.6666666666667 285.6533333333333 424.7466666666667 299.7333333333334 421.12C324.6933333333334 387.6266666666667 341.3333333333333 326.1866666666667 341.3333333333333 256C341.3333333333333 207.36 333.2266666666667 162.7733333333333 320 106.6666666666667C320 83.2 300.8 64 277.3333333333333 64H234.6666666666667C211.2 64 192 83.2 192 106.6666666666667C178.7733333333334 162.7733333333333 170.6666666666667 207.36 170.6666666666667 256C170.6666666666667 326.1866666666667 187.3066666666667 387.6266666666667 212.2666666666667 421.12C226.3466666666667 424.7466666666667 240.8533333333333 426.6666666666667 256 426.6666666666667M426.6666666666667 277.3333333333334C426.6666666666667 209.4933333333334 387.2 108.3733333333333 329.8133333333334 80.8533333333334C350.08 119.68 362.6666666666667 195.6266666666667 362.6666666666667 256C362.6666666666667 316.3733333333334 350.08 370.9866666666667 329.8133333333334 409.8133333333334C387.2 382.2933333333334 426.6666666666667 345.1733333333334 426.6666666666667 277.3333333333334M85.3333333333333 277.3333333333334C85.3333333333333 345.1733333333334 124.8 382.2933333333334 182.1866666666667 409.8133333333334C161.92 370.9866666666667 149.3333333333333 316.3733333333334 149.3333333333333 256S161.92 119.68 182.1866666666667 80.8533333333334C124.8 108.3733333333333 85.3333333333333 209.4933333333334 85.3333333333333 277.3333333333334z" />
73
- <glyph glyph-name="airplane"
74
- unicode="&#xF116;"
75
- horiz-adv-x="512" d=" M448 106.6666666666667V149.3333333333334L277.3333333333333 256V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V256L42.6666666666667 149.3333333333334V106.6666666666667L213.3333333333333 160V42.6666666666667L170.6666666666667 10.6666666666667V-21.3333333333333L245.3333333333333 0L320 -21.3333333333333V10.6666666666667L277.3333333333333 42.6666666666667V160L448 106.6666666666667z" />
76
- <glyph glyph-name="airplane-off"
77
- unicode="&#xF117;"
78
- horiz-adv-x="512" d=" M67.2 335.5733333333334L173.44 229.12L45.8666666666667 149.3333333333334V106.6666666666667L216.5333333333333 160V42.6666666666667L173.8666666666667 10.6666666666667V-21.3333333333333L248.5333333333334 0L323.2 -21.3333333333333V10.6666666666667L280.5333333333333 42.6666666666667V122.24L402.56 0L429.8666666666667 27.0933333333334L94.2933333333333 362.6666666666667M280.5333333333333 256V373.3333333333334C280.5333333333333 391.04 266.24 405.3333333333333 248.5333333333334 405.3333333333333S216.5333333333333 391.04 216.5333333333333 373.3333333333334V294.8266666666667L383.36 128L451.1999999999999 106.6666666666667V149.3333333333334L280.5333333333333 256z" />
79
- <glyph glyph-name="alarm"
80
- unicode="&#xF118;"
81
- horiz-adv-x="512" d=" M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M266.6666666666667 277.3333333333334H234.6666666666667V149.3333333333334L336 88.5333333333333L352 114.7733333333333L266.6666666666667 165.3333333333334V277.3333333333334M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334z" />
82
- <glyph glyph-name="alarm-check"
83
- unicode="&#xF119;"
84
- horiz-adv-x="512" d=" M224.8533333333333 138.0266666666667L179.4133333333333 183.4666666666667L156.8 160.8533333333334L224.64 93.0133333333333L352.64 221.0133333333333L330.0266666666667 243.6266666666667L224.8533333333334 138.0266666666667M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334z" />
85
- <glyph glyph-name="alarm-multiple"
86
- unicode="&#xF11A;"
87
- horiz-adv-x="512" d=" M198.1866666666667 378.6666666666667L110.08 304.64L85.3333333333333 334.0800000000001L173.6533333333333 408.1066666666667L198.1866666666667 378.6666666666667M469.3333333333333 333.8666666666667L444.5866666666667 304.4266666666667L356.2666666666667 378.6666666666667L381.0133333333333 408.1066666666667L469.3333333333333 333.8666666666667M277.3333333333333 362.6666666666667C371.6266666666667 362.6666666666667 448 286.2933333333334 448 192S371.6266666666667 21.3333333333334 277.3333333333333 21.3333333333334S106.6666666666667 97.7066666666667 106.6666666666667 192S183.04 362.6666666666667 277.3333333333333 362.6666666666667M277.3333333333333 320C206.72 320 149.3333333333333 262.6133333333334 149.3333333333333 192S206.72 64 277.3333333333333 64S405.3333333333333 121.3866666666667 405.3333333333333 192S347.9466666666666 320 277.3333333333333 320M256 288H288V191.36L356.6933333333333 160L343.4666666666666 130.9866666666667L256 170.6666666666667V288M21.3333333333333 149.3333333333334C21.3333333333333 202.6666666666667 45.44 249.6 83.4133333333333 280.9600000000001C71.04 253.8666666666667 64 224 64 192L65.28 167.8933333333334L64 149.3333333333334C64 100.6933333333333 91.0933333333333 58.4533333333334 130.9866666666667 36.6933333333333C158.72 10.6666666666667 193.4933333333334 -8.32 232.32 -16.64C219.3066666666667 -19.6266666666667 205.8666666666667 -21.3333333333333 192 -21.3333333333333C97.7066666666667 -21.3333333333333 21.3333333333333 55.04 21.3333333333333 149.3333333333334z" />
88
- <glyph glyph-name="alarm-off"
89
- unicode="&#xF11B;"
90
- horiz-adv-x="512" d=" M170.6666666666667 378.0266666666667L140.8 408.32L122.4533333333333 393.1733333333334L152.7466666666667 362.6666666666667M351.36 55.68C325.5466666666666 34.3466666666667 292.2666666666667 21.3333333333334 256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667C106.6666666666667 206.9333333333333 119.68 240.2133333333334 141.0133333333333 266.0266666666667M62.2933333333333 399.1466666666667L35.2 371.8400000000001L64 343.4666666666667L39.8933333333333 323.6266666666667L70.1866666666667 293.3333333333334L93.8666666666667 313.3866666666667L110.9333333333333 296.32C81.7066666666667 262.6133333333334 64 218.6666666666667 64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C304 -21.3333333333333 347.9466666666666 -3.6266666666667 381.6533333333333 25.6L428.5866666666667 -21.3333333333333L455.6799999999999 5.76L82.9866666666667 378.24L62.2933333333333 399.1466666666667M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334M256 320C338.56 320 405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667C405.3333333333333 152.7466666666667 401.92 135.4666666666667 396.16 119.4666666666667L428.5866666666667 87.04C440.9599999999999 112.4266666666666 448 140.5866666666667 448 170.6666666666666C448 276.6933333333334 362.0266666666667 362.6666666666667 256 362.6666666666667C225.92 362.6666666666667 197.76 355.6266666666667 172.3733333333333 343.2533333333334L204.8 310.8266666666667C220.8 316.5866666666667 238.08 320 256 320z" />
91
- <glyph glyph-name="alarm-plus"
92
- unicode="&#xF11C;"
93
- horiz-adv-x="512" d=" M277.3333333333333 256H234.6666666666667V192H170.6666666666667V149.3333333333334H234.6666666666667V85.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333V192H277.3333333333333M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68z" />
94
- <glyph glyph-name="album"
95
- unicode="&#xF11D;"
96
- horiz-adv-x="512" d=" M256 213.3333333333334C244.2666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S244.2666666666667 170.6666666666667 256 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S267.7333333333334 213.3333333333334 256 213.3333333333334M256 96C202.6666666666667 96 160 138.6666666666667 160 192S202.6666666666667 288 256 288S352 245.3333333333334 352 192S309.3333333333333 96 256 96M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
97
- <glyph glyph-name="alert"
98
- unicode="&#xF11E;"
99
- horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334H234.6666666666667V234.6666666666667H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M21.3333333333333 0H490.6666666666666L256 405.3333333333333L21.3333333333333 0z" />
100
- <glyph glyph-name="alert-box"
101
- unicode="&#xF11F;"
102
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M277.3333333333333 170.6666666666667V298.6666666666667H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334V128H234.6666666666667V85.3333333333334H277.3333333333333z" />
103
- <glyph glyph-name="alert-circle"
104
- unicode="&#xF120;"
105
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334H234.6666666666667V128H277.3333333333333M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
106
- <glyph glyph-name="alert-octagon"
107
- unicode="&#xF121;"
108
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333M256 78.9333333333333C240.64 78.9333333333333 228.2666666666667 91.3066666666666 228.2666666666667 106.6666666666667C228.2666666666667 122.0266666666667 240.64 134.4 256 134.4C271.36 134.4 283.7333333333334 122.0266666666667 283.7333333333334 106.6666666666667C283.7333333333334 91.3066666666667 271.36 78.9333333333333 256 78.9333333333333M335.5733333333333 384H176.4266666666667L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333L448 112.4266666666667V271.5733333333334L335.5733333333333 384z" />
109
- <glyph glyph-name="alpha"
110
- unicode="&#xF122;"
111
- horiz-adv-x="512" d=" M385.7066666666666 68.2666666666667C375.8933333333333 65.4933333333333 367.1466666666666 64 359.4666666666666 64C333.8666666666666 64 316.5866666666666 82.7733333333333 307.8399999999999 120.5333333333334H306.7733333333333C285.6533333333333 79.7866666666668 255.9999999999999 59.52 218.6666666666666 59.52C190.7199999999999 59.52 168.3199999999999 69.9733333333333 151.4666666666666 91.0933333333334S126.2933333333333 138.6666666666667 126.2933333333333 170.6666666666667C126.2933333333333 208 135.8933333333333 237.8666666666667 154.88 261.12C173.8666666666667 284.3733333333334 199.68 296.1066666666667 232.32 296.1066666666667C249.8133333333334 296.1066666666667 265.6 291.2 279.2533333333334 281.6C292.9066666666667 271.7866666666667 303.36 258.1333333333334 310.6133333333334 240.4266666666667H311.4666666666667L326.6133333333333 291.6266666666667H381.2266666666666L335.5733333333333 178.1333333333333C340.6933333333333 151.68 346.0266666666666 133.5466666666667 351.9999999999999 123.9466666666667C357.1199999999999 114.3466666666667 364.3733333333332 109.44 373.3333333333333 109.44C378.4533333333332 109.44 382.5066666666666 110.2933333333333 386.1333333333333 111.7866666666666L385.7066666666666 68.2666666666667M294.8266666666666 180.0533333333334C290.3466666666666 204.16 283.0933333333333 222.9333333333333 273.28 235.7333333333333C263.68 248.7466666666667 251.9466666666667 255.1466666666667 238.5066666666667 255.1466666666667C221.0133333333333 255.1466666666667 206.9333333333333 247.2533333333334 196.48 231.68C186.0266666666667 215.8933333333333 181.3333333333333 196.48 181.3333333333333 173.6533333333333C181.3333333333333 152.7466666666667 185.3866666666667 135.4666666666667 194.56 121.3866666666667C203.52 107.3066666666666 215.68 100.48 230.8266666666667 100.48C243.6266666666666 100.48 255.36 106.6666666666666 265.8133333333333 118.4C276.48 130.56 285.2266666666667 148.2666666666667 292.2666666666667 171.52L294.8266666666666 180.0533333333333z" />
112
- <glyph glyph-name="alphabetical"
113
- unicode="&#xF123;"
114
- horiz-adv-x="512" d=" M128 213.3333333333334C151.4666666666667 213.3333333333334 170.6666666666667 194.1333333333333 170.6666666666667 170.6666666666667V85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V170.6666666666667C42.6666666666667 194.1333333333333 61.8666666666667 213.3333333333334 85.3333333333333 213.3333333333334H128M85.3333333333333 170.6666666666667V128H128V170.6666666666667H85.3333333333333M426.6666666666667 170.6666666666667V128H469.3333333333333V85.3333333333334H426.6666666666667C403.2 85.3333333333334 384 104.5333333333333 384 128V170.6666666666667C384 194.1333333333333 403.2 213.3333333333334 426.6666666666667 213.3333333333334H469.3333333333333V170.6666666666667H426.6666666666667M256 298.6666666666667V213.3333333333334H298.6666666666667C322.1333333333334 213.3333333333334 341.3333333333333 194.1333333333333 341.3333333333333 170.6666666666667V128C341.3333333333333 104.5333333333333 322.1333333333334 85.3333333333334 298.6666666666667 85.3333333333334H256C232.5333333333334 85.3333333333334 213.3333333333333 104.5333333333333 213.3333333333333 128V298.6666666666667H256M256 128H298.6666666666667V170.6666666666667H256V128z" />
115
- <glyph glyph-name="amazon"
116
- unicode="&#xF124;"
117
- horiz-adv-x="512" d=" M339.84 83.4133333333334C336 80 330.6666666666667 79.7866666666666 326.4 82.1333333333334C307.4133333333333 97.92 304 105.1733333333334 293.5466666666666 120.3200000000001C262.1866666666666 88.3200000000001 240 78.72 199.2533333333333 78.72C151.2533333333333 78.72 113.7066666666666 108.3733333333334 113.7066666666666 167.6800000000001C113.7066666666666 214.1866666666667 138.6666666666666 245.3333333333334 174.72 261.1200000000001C205.8666666666666 274.7733333333335 249.1733333333333 277.3333333333334 282.2399999999999 280.9600000000001V288C282.2399999999999 302.0800000000001 283.3066666666666 318.0800000000001 275.2 329.8133333333334C268.3733333333332 340.2666666666667 254.9333333333333 344.7466666666667 243.2 344.7466666666667C221.44 344.7466666666667 202.0266666666666 333.44 197.3333333333333 310.4C196.2666666666666 305.28 191.9999999999999 300.1600000000001 187.3066666666666 299.9466666666667L131.8399999999999 305.92C127.1466666666666 306.9866666666667 122.0266666666666 310.6133333333334 123.3066666666666 317.8666666666667C136.1066666666666 385.0666666666667 196.9066666666666 405.3333333333333 251.3066666666666 405.3333333333333C279.0399999999999 405.3333333333333 315.3066666666666 397.8666666666667 337.2799999999999 376.9600000000001C365.0133333333333 350.9333333333334 362.6666666666667 316.1600000000001 362.6666666666667 278.4V189.44C362.6666666666667 162.7733333333333 373.3333333333333 150.8266666666667 384 136.5333333333333C387.6266666666667 131.2 388.48 125.0133333333333 384 121.3866666666667L340.0533333333333 83.4133333333333H339.84M282.24 222.72V234.6666666666667C240.8533333333334 234.6666666666667 197.12 226.3466666666667 197.12 177.7066666666667C197.12 152.96 210.1333333333333 136.1066666666667 231.8933333333334 136.1066666666667C248.1066666666667 136.1066666666667 262.4 146.1333333333334 271.5733333333333 162.1333333333334C282.6666666666667 181.9733333333334 282.24 200.5333333333334 282.24 222.72M430.08 31.1466666666667C384 -2.9866666666667 316.16 -21.3333333333333 258.1333333333334 -21.3333333333333C176.8533333333333 -21.3333333333333 103.4666666666667 8.7466666666667 48 58.88C43.7333333333333 62.72 47.5733333333333 68.0533333333333 53.3333333333333 65.0666666666666C112.64 30.2933333333333 186.6666666666667 9.3866666666667 263.04 9.3866666666667C314.4533333333333 9.3866666666667 371.2 20.0533333333333 423.2533333333334 42.0266666666666C431.1466666666667 45.44 437.3333333333333 36.9066666666667 430.08 31.1466666666667M449.4933333333334 53.3333333333333C443.52 61.0133333333333 410.0266666666667 56.96 394.6666666666667 55.0399999999999C390.6133333333333 54.6133333333332 389.9733333333334 58.4533333333333 394.0266666666667 61.4399999999999C420.4799999999999 80.2133333333333 464.2133333333333 74.6666666666666 469.3333333333333 68.4799999999999C474.4533333333333 62.0799999999999 467.84 18.3466666666665 442.88 -2.3466666666668C439.04 -5.7600000000001 435.4133333333333 -3.8400000000001 437.3333333333333 -1e-13C442.88 14.2933333333332 455.4666666666667 45.6533333333332 449.4933333333334 53.3333333333332z" />
118
- <glyph glyph-name="amazon-clouddrive"
119
- unicode="&#xF125;"
120
- horiz-adv-x="512" d=" M105.3866666666667 210.7733333333334C111.5733333333333 210.7733333333334 117.3333333333333 209.9200000000001 122.88 208.4266666666667C123.0933333333333 254.0800000000001 160 291.2000000000001 205.8666666666667 291.2000000000001C240.4266666666667 291.2000000000001 270.2933333333333 269.8666666666668 282.4533333333333 239.5733333333334C295.04 256 314.4533333333333 266.0266666666667 336.2133333333333 266.0266666666667C373.3333333333333 266.0266666666667 404.0533333333334 235.7333333333334 404.0533333333334 198.1866666666667C404.0533333333334 193.0666666666667 403.4133333333333 187.7333333333334 402.3466666666667 182.8266666666667C407.4666666666667 184.7466666666667 413.2266666666668 185.8133333333334 419.2000000000001 185.8133333333334C446.9333333333334 185.8133333333334 469.3333333333334 163.2000000000001 469.3333333333334 135.4666666666667C469.3333333333334 107.7333333333334 446.9333333333334 85.3333333333334 419.2000000000001 85.3333333333334H105.3866666666667C70.8266666666667 85.3333333333334 42.6666666666667 113.4933333333334 42.6666666666667 148.0533333333334C42.6666666666667 182.8266666666667 70.8266666666667 210.7733333333333 105.3866666666667 210.7733333333333z" />
121
- <glyph glyph-name="ambulance"
122
- unicode="&#xF126;"
123
- horiz-adv-x="512" d=" M384 53.3333333333334C401.7066666666666 53.3333333333334 416 67.6266666666667 416 85.3333333333334S401.7066666666666 117.3333333333334 384 117.3333333333334S352 103.04 352 85.3333333333334S366.2933333333334 53.3333333333334 384 53.3333333333334M416 245.3333333333334H362.6666666666667V192H457.8133333333333L416 245.3333333333334M128 53.3333333333334C145.7066666666667 53.3333333333334 160 67.6266666666667 160 85.3333333333334S145.7066666666667 117.3333333333334 128 117.3333333333334S96 103.04 96 85.3333333333334S110.2933333333333 53.3333333333334 128 53.3333333333334M426.6666666666667 277.3333333333334L490.6666666666666 192V85.3333333333334H448C448 49.92 419.4133333333333 21.3333333333334 384 21.3333333333334S320 49.92 320 85.3333333333334H192C192 49.92 163.4133333333333 21.3333333333334 128 21.3333333333334S64 49.92 64 85.3333333333334H21.3333333333333V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H362.6666666666667V277.3333333333334H426.6666666666667M170.6666666666667 320V256H106.6666666666667V213.3333333333334H170.6666666666667V149.3333333333334H213.3333333333333V213.3333333333334H277.3333333333333V256H213.3333333333333V320H170.6666666666667z" />
124
- <glyph glyph-name="android"
125
- unicode="&#xF127;"
126
- horiz-adv-x="512" d=" M320 341.3333333333334H298.6666666666667V362.6666666666667H320M213.3333333333333 341.3333333333334H192V362.6666666666667H213.3333333333333M331.3066666666667 401.92L359.2533333333334 429.8666666666667C363.3066666666667 433.92 363.3066666666667 440.7466666666667 359.2533333333334 445.0133333333333C354.9866666666667 449.0666666666667 348.16 449.0666666666667 344.1066666666667 445.0133333333333L312.5333333333333 413.44C295.4666666666667 421.76 276.2666666666667 426.6666666666667 256 426.6666666666667C235.52 426.6666666666667 216.32 421.76 199.2533333333333 413.2266666666667L167.4666666666667 445.0133333333333C163.4133333333333 449.0666666666667 156.5866666666667 449.0666666666667 152.5333333333333 445.0133333333333C148.2666666666667 440.7466666666667 148.2666666666667 433.92 152.5333333333333 429.8666666666667L180.48 401.92C148.6933333333333 378.4533333333334 128 341.3333333333334 128 298.6666666666667H384C384 341.3333333333334 362.6666666666667 378.6666666666667 331.3066666666666 401.92M437.3333333333333 277.3333333333334C419.6266666666667 277.3333333333334 405.3333333333333 263.04 405.3333333333333 245.3333333333334V96C405.3333333333333 78.2933333333334 419.6266666666667 64 437.3333333333333 64S469.3333333333333 78.2933333333334 469.3333333333333 96V245.3333333333334C469.3333333333333 263.04 455.04 277.3333333333334 437.3333333333333 277.3333333333334M74.6666666666667 277.3333333333334C56.96 277.3333333333334 42.6666666666667 263.04 42.6666666666667 245.3333333333334V96C42.6666666666667 78.2933333333334 56.96 64 74.6666666666667 64S106.6666666666667 78.2933333333334 106.6666666666667 96V245.3333333333334C106.6666666666667 263.04 92.3733333333333 277.3333333333334 74.6666666666667 277.3333333333334M128 64C128 52.2666666666667 137.6 42.6666666666667 149.3333333333333 42.6666666666667H170.6666666666667V-32C170.6666666666667 -49.7066666666666 184.96 -64 202.6666666666667 -64S234.6666666666667 -49.7066666666666 234.6666666666667 -32V42.6666666666667H277.3333333333333V-32C277.3333333333333 -49.7066666666666 291.6266666666667 -64 309.3333333333333 -64S341.3333333333333 -49.7066666666666 341.3333333333333 -32V42.6666666666667H362.6666666666667C374.4 42.6666666666667 384 52.2666666666667 384 64V277.3333333333334H128V64z" />
127
- <glyph glyph-name="android-debug-bridge"
128
- unicode="&#xF128;"
129
- horiz-adv-x="512" d=" M320 256C308.2666666666667 256 298.6666666666667 265.6 298.6666666666667 277.3333333333334S308.2666666666667 298.6666666666667 320 298.6666666666667S341.3333333333333 289.0666666666667 341.3333333333333 277.3333333333334S331.7333333333334 256 320 256M192 256C180.2666666666667 256 170.6666666666667 265.6 170.6666666666667 277.3333333333334S180.2666666666667 298.6666666666667 192 298.6666666666667S213.3333333333333 289.0666666666667 213.3333333333333 277.3333333333334S203.7333333333334 256 192 256M343.8933333333333 354.7733333333333L388.6933333333334 399.5733333333333L371.2000000000001 417.28L321.92 368C302.08 378.0266666666667 279.68 384 256 384C232.1066666666667 384 209.92 378.0266666666667 190.08 368L140.8 417.28L123.3066666666667 399.5733333333333L168.1066666666666 354.7733333333333C130.9866666666667 327.68 106.6666666666667 284.1600000000001 106.6666666666667 234.6666666666667V213.3333333333334H405.3333333333333V234.6666666666667C405.3333333333333 284.1600000000001 381.0133333333333 327.68 343.8933333333333 354.7733333333333M106.6666666666667 106.6666666666667C106.6666666666667 24.3200000000001 173.44 -42.6666666666666 256 -42.6666666666666S405.3333333333333 24.1066666666667 405.3333333333333 106.6666666666667V192H106.6666666666667V106.6666666666667z" />
130
- <glyph glyph-name="android-studio"
131
- unicode="&#xF129;"
132
- horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H277.3333333333333V362.6666666666667H288C305.7066666666667 362.6666666666667 320 348.3733333333334 320 330.6666666666667V256L310.6133333333334 246.6133333333334L345.6 186.0266666666667C369.28 209.28 384 241.4933333333334 384 277.3333333333334H426.6666666666667C426.6666666666667 225.7066666666667 403.84 179.4133333333334 367.5733333333333 148.0533333333334L434.56 32L437.3333333333333 -15.36L397.44 10.6666666666667L331.9466666666666 124.3733333333333C309.3333333333333 113.0666666666667 283.3066666666666 106.6666666666667 256 106.6666666666667C228.6933333333333 106.6666666666667 202.6666666666666 113.0666666666667 180.0533333333333 124.3733333333333L114.56 10.6666666666667L74.6666666666667 -15.36L77.44 32L201.3866666666667 246.6133333333334L192 256V330.6666666666667C192 348.3733333333334 206.2933333333333 362.6666666666667 224 362.6666666666667H234.6666666666667V405.3333333333333M201.3866666666667 161.4933333333334C218.0266666666667 153.6 236.5866666666667 149.3333333333334 256 149.3333333333334C275.4133333333333 149.3333333333334 293.9733333333333 153.6 310.6133333333334 161.4933333333334L279.4666666666667 215.4666666666667H279.2533333333334C266.0266666666667 202.6666666666667 245.9733333333333 202.6666666666667 232.7466666666667 215.4666666666667H232.5333333333334L201.3866666666667 161.4933333333334M256 320C244.2666666666667 320 234.6666666666667 310.4 234.6666666666667 298.6666666666667S244.2666666666667 277.3333333333334 256 277.3333333333334S277.3333333333333 286.9333333333334 277.3333333333333 298.6666666666667S267.7333333333334 320 256 320z" />
133
- <glyph glyph-name="apple"
134
- unicode="&#xF12A;"
135
- horiz-adv-x="512" d=" M399.1466666666667 32C381.4400000000001 5.5466666666667 362.6666666666667 -20.2666666666666 334.08 -20.6933333333333C305.4933333333334 -21.3333333333333 296.32 -3.84 263.8933333333333 -3.84C231.2533333333334 -3.84 221.2266666666667 -20.2666666666666 194.1333333333334 -21.3333333333333C166.1866666666667 -22.4 145.0666666666667 6.8266666666667 127.1466666666667 32.64C90.6666666666667 85.3333333333334 62.72 182.4 100.2666666666667 247.68C118.8266666666667 280.1066666666667 152.1066666666667 300.5866666666667 188.16 301.2266666666667C215.4666666666667 301.6533333333333 241.4933333333334 282.6666666666667 258.3466666666667 282.6666666666667C274.9866666666666 282.6666666666667 306.56 305.4933333333334 339.6266666666667 302.08C353.4933333333334 301.44 392.32 296.5333333333333 417.28 259.8400000000001C415.36 258.56 370.9866666666667 232.5333333333334 371.4133333333333 178.56C372.0533333333334 114.1333333333333 427.9466666666666 92.5866666666667 428.5866666666667 92.3733333333333C427.9466666666666 90.88 419.6266666666666 61.6533333333333 399.1466666666667 32M277.3333333333333 373.3333333333334C292.9066666666667 391.04 318.72 404.48 340.0533333333333 405.3333333333333C342.8266666666667 380.3733333333334 332.8 355.2000000000001 317.8666666666666 337.2800000000001C303.1466666666667 319.1466666666667 278.8266666666666 305.0666666666667 254.9333333333333 306.9866666666667C251.7333333333333 331.5200000000001 263.68 357.12 277.3333333333333 373.3333333333334z" />
136
- <glyph glyph-name="apple-finder"
137
- unicode="&#xF12B;"
138
- horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H253.6533333333334C265.8133333333334 385.92 280.1066666666667 407.8933333333333 297.1733333333333 426.6666666666667L320.8533333333333 402.9866666666667C311.68 390.4 303.5733333333333 376.7466666666667 296.32 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H318.5066666666667L325.5466666666666 -26.24L286.5066666666667 -41.6L275.84 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V42.6666666666667H267.52C266.6666666666667 49.7066666666667 265.3866666666667 56.7466666666667 264.5333333333333 64H256C197.3333333333333 64 144.64 74.6666666666667 109.44 90.4533333333333L128.8533333333333 125.44C149.3333333333333 114.3466666666667 195.6266666666667 106.6666666666667 256 106.6666666666667H261.12C260.48 120.96 260.6933333333334 135.2533333333333 261.76 149.3333333333334H192S200.5333333333333 235.3066666666667 234.6666666666667 320H85.3333333333333M426.6666666666667 42.6666666666667V320H277.3333333333333C258.1333333333334 272.64 247.04 224.8533333333333 241.0666666666667 192H302.2933333333334C298.6666666666667 164.6933333333334 298.0266666666667 136.1066666666667 299.9466666666667 108.16C338.5600000000001 110.9333333333334 368.0000000000001 117.3333333333334 383.1466666666667 125.4400000000001L402.56 90.4533333333334C377.3866666666667 78.9333333333334 343.4666666666667 70.4 304.8533333333334 66.3466666666668C306.1333333333334 58.2400000000001 307.4133333333333 50.3466666666668 309.3333333333334 42.6666666666667H426.6666666666667M128 277.3333333333334H170.6666666666667V213.3333333333334H128V277.3333333333334M341.3333333333333 277.3333333333334H384V213.3333333333334H341.3333333333333V277.3333333333334z" />
139
- <glyph glyph-name="apple-ios"
140
- unicode="&#xF12C;"
141
- horiz-adv-x="512" d=" M426.6666666666667 256V298.6666666666667H341.3333333333333C317.8666666666667 298.6666666666667 298.6666666666667 279.4666666666667 298.6666666666667 256V213.3333333333334C298.6666666666667 189.8666666666667 317.8666666666667 170.6666666666667 341.3333333333333 170.6666666666667H384V128H298.6666666666667V85.3333333333334H384C407.4666666666667 85.3333333333334 426.6666666666667 104.5333333333333 426.6666666666667 128V170.6666666666667C426.6666666666667 194.1333333333333 407.4666666666667 213.3333333333334 384 213.3333333333334H341.3333333333333V256M234.6666666666667 128H192V256H234.6666666666667M234.6666666666667 298.6666666666667H192C168.5333333333333 298.6666666666667 149.3333333333333 279.4666666666667 149.3333333333333 256V128C149.3333333333333 104.5333333333333 168.5333333333333 85.3333333333334 192 85.3333333333334H234.6666666666667C258.1333333333334 85.3333333333334 277.3333333333333 104.5333333333333 277.3333333333333 128V256C277.3333333333333 279.4666666666667 258.1333333333334 298.6666666666667 234.6666666666667 298.6666666666667M85.3333333333333 85.3333333333334H128V213.3333333333334H85.3333333333333M85.3333333333333 256H128V298.6666666666667H85.3333333333333V256z" />
142
- <glyph glyph-name="apple-mobileme"
143
- unicode="&#xF12D;"
144
- horiz-adv-x="512" d=" M469.3333333333333 127.1466666666667C469.3333333333333 80.4266666666667 431.7866666666667 42.6666666666667 385.4933333333334 42.6666666666667H126.5066666666667C80.2133333333333 42.6666666666667 42.6666666666667 80.4266666666667 42.6666666666667 127.1466666666667C42.6666666666667 169.1733333333334 73.1733333333333 203.9466666666667 113.28 210.3466666666667C112.64 213.3333333333334 112.4266666666667 216.32 112.4266666666667 219.5200000000001C112.4266666666667 248.9600000000001 136.1066666666667 273.0666666666667 165.5466666666667 273.0666666666667C178.56 273.0666666666667 190.72 268.1600000000001 199.8933333333334 260.2666666666667C216.32 297.6 237.44 331.9466666666667 296.7466666666667 331.9466666666667C368.64 331.9466666666667 402.56 276.0533333333334 402.56 216.96C402.56 214.6133333333334 402.56 212.0533333333334 402.3466666666667 209.7066666666667C440.5333333333333 201.8133333333334 469.3333333333333 167.8933333333334 469.3333333333333 127.1466666666667z" />
145
- <glyph glyph-name="apple-safari"
146
- unicode="&#xF12E;"
147
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 147.4133333333334 102.4 106.6666666666667 130.3466666666666 76.5866666666667L210.7733333333333 237.2266666666667L371.4133333333333 317.6533333333334C341.3333333333333 345.6 300.5866666666667 362.6666666666667 256 362.6666666666667M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 236.5866666666667 409.6 277.3333333333334 381.6533333333333 307.4133333333334L301.2266666666667 146.7733333333333L140.5866666666667 66.3466666666667C170.6666666666667 38.4 211.4133333333333 21.3333333333334 256 21.3333333333334M256 192L239.5733333333333 208.4266666666667L206.9333333333333 142.9333333333333L272.4266666666666 175.5733333333333L256 192M256 74.6666666666667H277.3333333333333V42.6666666666667H256V74.6666666666667M338.7733333333333 109.0133333333333L353.92 124.16L376.5333333333333 101.5466666666667L361.3866666666666 86.4L338.7733333333333 109.0133333333334M373.3333333333333 192V213.3333333333334H405.3333333333333V192H373.3333333333333M256 309.3333333333334H234.6666666666667V341.3333333333334H256V309.3333333333334M173.2266666666666 274.9866666666667L158.08 259.8400000000001L135.4666666666667 282.4533333333334L150.6133333333333 297.6L173.2266666666666 274.9866666666667M138.6666666666667 192V170.6666666666667H106.6666666666667V192H138.6666666666667z" />
148
- <glyph glyph-name="appnet"
149
- unicode="&#xF12F;"
150
- horiz-adv-x="512" d=" M308.6933333333334 253.0133333333333C321.4933333333334 283.9466666666667 345.1733333333333 356.6933333333334 348.8 369.4933333333334C352 382.08 361.6 384 366.9333333333334 384H410.6666666666668C417.9200000000001 384 421.9733333333334 378.4533333333333 420.2666666666667 369.4933333333334C374.4000000000001 207.5733333333334 343.2533333333334 160 343.2533333333334 149.3333333333334C343.2533333333334 122.0266666666667 372.4800000000001 71.04 399.7866666666667 71.04C416.0000000000001 71.04 412.5866666666667 94.72 430.7200000000001 94.72H465.28C470.8266666666667 94.72 476.1600000000001 89.1733333333333 476.1600000000001 79.9999999999999C476.1600000000001 71.0399999999999 466.1333333333334 -1e-13 397.0133333333334 -1e-13C327.6800000000001 -1e-13 301.8666666666667 83.6266666666666 301.8666666666667 83.6266666666666C292.9066666666667 65.4933333333332 239.5733333333334 -1e-13 174.0800000000001 -1e-13C57.6 -1e-13 35.84 123.7333333333332 35.84 196.4799999999999C35.84 269.4400000000001 70.4 384 168.7466666666667 384C266.6666666666667 384 308.6933333333333 253.0133333333333 308.6933333333333 253.0133333333333M96 202.0266666666667C96 160 94.08 72.7466666666667 170.6666666666667 71.0400000000001C214.1866666666667 69.1200000000001 254.08 123.7333333333334 273.28 167.4666666666667C246.8266666666667 258.3466666666667 228.6933333333334 312.9600000000001 170.6666666666667 312.9600000000001C92.16 311.2533333333334 96 202.0266666666667 96 202.0266666666667z" />
151
- <glyph glyph-name="apps"
152
- unicode="&#xF130;"
153
- horiz-adv-x="512" d=" M341.3333333333333 21.3333333333334H426.6666666666667V106.6666666666667H341.3333333333333M341.3333333333333 149.3333333333334H426.6666666666667V234.6666666666667H341.3333333333333M213.3333333333333 277.3333333333334H298.6666666666667V362.6666666666667H213.3333333333333M341.3333333333333 277.3333333333334H426.6666666666667V362.6666666666667H341.3333333333333M213.3333333333333 149.3333333333334H298.6666666666667V234.6666666666667H213.3333333333333M85.3333333333333 149.3333333333334H170.6666666666667V234.6666666666667H85.3333333333333M85.3333333333333 21.3333333333334H170.6666666666667V106.6666666666667H85.3333333333333M213.3333333333333 21.3333333333334H298.6666666666667V106.6666666666667H213.3333333333333M85.3333333333333 277.3333333333334H170.6666666666667V362.6666666666667H85.3333333333333V277.3333333333334z" />
154
- <glyph glyph-name="archive"
155
- unicode="&#xF131;"
156
- horiz-adv-x="512" d=" M64 384H448V298.6666666666667H64V384M85.3333333333333 277.3333333333334H426.6666666666667V0H85.3333333333333V277.3333333333334M202.6666666666667 213.3333333333334C196.6933333333333 213.3333333333334 192 208.64 192 202.6666666666667V170.6666666666667H320V202.6666666666667C320 208.64 315.3066666666666 213.3333333333334 309.3333333333333 213.3333333333334H202.6666666666667z" />
157
- <glyph glyph-name="arrange-bring-forward"
158
- unicode="&#xF132;"
159
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H341.3333333333333V106.6666666666667H42.6666666666667V405.3333333333333M469.3333333333333 277.3333333333334V-21.3333333333333H170.6666666666667V64H213.3333333333333V21.3333333333334H426.6666666666667V234.6666666666667H384V277.3333333333334H469.3333333333333z" />
160
- <glyph glyph-name="arrange-bring-to-front"
161
- unicode="&#xF133;"
162
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V320H192V362.6666666666667H85.3333333333333V256H128V213.3333333333334H42.6666666666667V405.3333333333333M469.3333333333333 170.6666666666667V-21.3333333333333H277.3333333333333V64H320V21.3333333333334H426.6666666666667V128H384V170.6666666666667H469.3333333333333M170.6666666666667 277.3333333333334H341.3333333333333V106.6666666666667H170.6666666666667V277.3333333333334z" />
163
- <glyph glyph-name="arrange-send-backward"
164
- unicode="&#xF134;"
165
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H341.3333333333333V106.6666666666667H42.6666666666667V405.3333333333333M469.3333333333333 277.3333333333334V-21.3333333333333H170.6666666666667V64H384V277.3333333333334H469.3333333333333M85.3333333333333 362.6666666666667V149.3333333333334H298.6666666666667V362.6666666666667H85.3333333333333z" />
166
- <glyph glyph-name="arrange-send-to-back"
167
- unicode="&#xF135;"
168
- horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V213.3333333333334H42.6666666666667V405.3333333333333M192 362.6666666666667H85.3333333333333V256H192V362.6666666666667M469.3333333333333 170.6666666666667V-21.3333333333333H277.3333333333333V170.6666666666667H469.3333333333333M320 21.3333333333334H426.6666666666667V128H320V21.3333333333334M341.3333333333333 277.3333333333334V213.3333333333334H277.3333333333333V277.3333333333334H341.3333333333333M234.6666666666667 106.6666666666667H170.6666666666667V170.6666666666667H234.6666666666667V106.6666666666667z" />
169
- <glyph glyph-name="arrow-all"
170
- unicode="&#xF136;"
171
- horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334H384L352 245.3333333333334L382.2933333333334 275.6266666666667L465.92 192L382.2933333333334 108.3733333333333L352 138.6666666666667L384 170.6666666666667H277.3333333333333V64L309.3333333333333 96L339.6266666666667 65.7066666666667L256 -17.92L172.3733333333333 65.7066666666667L202.6666666666667 96L234.6666666666667 64V170.6666666666667H128L160 138.6666666666667L129.7066666666667 108.3733333333333L46.08 192L129.7066666666667 275.6266666666667L160 245.3333333333334L128 213.3333333333334H234.6666666666667V320L202.6666666666667 288L172.3733333333333 318.2933333333334L256 401.92L339.6266666666667 318.2933333333334L309.3333333333333 288L277.3333333333333 320V213.3333333333334z" />
172
- <glyph glyph-name="arrow-bottom-left"
173
- unicode="&#xF137;"
174
- horiz-adv-x="512" d=" M405.3333333333333 311.2533333333334L375.2533333333334 341.3333333333334L149.3333333333333 115.4133333333334V256H106.6666666666667V42.6666666666667H320V85.3333333333334H179.4133333333333L405.3333333333333 311.2533333333334z" />
175
- <glyph glyph-name="arrow-bottom-right"
176
- unicode="&#xF138;"
177
- horiz-adv-x="512" d=" M106.6666666666667 311.2533333333334L136.7466666666667 341.3333333333334L362.6666666666667 115.4133333333334V256H405.3333333333333V42.6666666666667H192V85.3333333333334H332.5866666666667L106.6666666666667 311.2533333333334z" />
178
- <glyph glyph-name="arrow-collapse"
179
- unicode="&#xF139;"
180
- horiz-adv-x="512" d=" M416 382.0800000000001L446.08 352L350.08 256H426.6666666666667V213.3333333333334H277.3333333333333V362.6666666666667H320V286.0800000000001L416 382.0800000000001M446.08 32L416 1.92L320 97.92V21.3333333333334H277.3333333333333V170.6666666666667H426.6666666666667V128H350.08L446.08 32M96 382.0800000000001L192 286.0800000000001V362.6666666666667H234.6666666666667V213.3333333333334H85.3333333333333V256H161.92L65.92 352L96 382.0800000000001M65.92 32L161.92 128H85.3333333333333V170.6666666666667H234.6666666666667V21.3333333333334H192V97.92L96 1.92L65.92 32z" />
181
- <glyph glyph-name="arrow-down"
182
- unicode="&#xF13A;"
183
- horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667H277.3333333333333V106.6666666666667L394.6666666666667 224L424.9600000000001 193.7066666666667L256 24.7466666666667L87.04 193.7066666666667L117.3333333333333 224L234.6666666666667 106.6666666666667V362.6666666666667z" />
184
- <glyph glyph-name="arrow-down-bold"
185
- unicode="&#xF13B;"
186
- horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667H298.6666666666667V170.6666666666667L373.3333333333333 245.3333333333334L424.9600000000001 193.7066666666667L256 24.7466666666667L87.04 193.7066666666667L138.6666666666667 245.3333333333334L213.3333333333333 170.6666666666667V362.6666666666667z" />
187
- <glyph glyph-name="arrow-down-bold-circle"
188
- unicode="&#xF13C;"
189
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 85.3333333333334L362.6666666666667 192H298.6666666666667V277.3333333333334H213.3333333333333V192H149.3333333333333L256 85.3333333333334z" />
190
- <glyph glyph-name="arrow-down-bold-circle-outline"
191
- unicode="&#xF13D;"
192
- horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
193
- <glyph glyph-name="arrow-down-bold-hexagon-outline"
194
- unicode="&#xF13E;"
195
- horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
196
- <glyph glyph-name="arrow-expand"
197
- unicode="&#xF13F;"
198
- horiz-adv-x="512" d=" M202.6666666666667 168.7466666666667L232.7466666666667 138.6666666666667L136.7466666666667 42.6666666666667H213.3333333333333V0H64V149.3333333333334H106.6666666666667V72.7466666666667L202.6666666666667 168.7466666666667M232.7466666666667 245.3333333333334L202.6666666666667 215.2533333333333L106.6666666666667 311.2533333333334V234.6666666666667H64V384H213.3333333333333V341.3333333333334H136.7466666666667L232.7466666666667 245.3333333333334M309.3333333333333 168.7466666666667L405.3333333333333 72.7466666666667V149.3333333333334H448V0H298.6666666666667V42.6666666666667H375.2533333333334L279.2533333333334 138.6666666666667L309.3333333333333 168.7466666666667M279.2533333333334 245.3333333333334L375.2533333333334 341.3333333333334H298.6666666666667V384H448V234.6666666666667H405.3333333333333V311.2533333333334L309.3333333333333 215.2533333333333L279.2533333333334 245.3333333333334z" />
199
- <glyph glyph-name="arrow-left"
200
- unicode="&#xF140;"
201
- horiz-adv-x="512" d=" M426.6666666666667 213.3333333333334V170.6666666666667H170.6666666666667L288 53.3333333333334L257.7066666666667 23.04L88.7466666666667 192L257.7066666666667 360.9600000000001L288 330.6666666666667L170.6666666666667 213.3333333333334H426.6666666666667z" />
202
- <glyph glyph-name="arrow-left-bold"
203
- unicode="&#xF141;"
204
- horiz-adv-x="512" d=" M426.6666666666667 234.6666666666667V149.3333333333334H234.6666666666667L309.3333333333333 74.6666666666667L257.7066666666667 23.04L88.7466666666667 192L257.7066666666667 360.9600000000001L309.3333333333333 309.3333333333334L234.6666666666667 234.6666666666667H426.6666666666667z" />
205
- <glyph glyph-name="arrow-left-bold-circle"
206
- unicode="&#xF142;"
207
- horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M149.3333333333333 192L256 85.3333333333334V149.3333333333334H341.3333333333333V234.6666666666667H256V298.6666666666667L149.3333333333333 192z" />
208
- <glyph glyph-name="arrow-left-bold-circle-outline"
209
- unicode="&#xF143;"
210
- horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192z" />
211
- <glyph glyph-name="arrow-left-bold-hexagon-outline"
212
- unicode="&#xF144;"
213
- horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
214
- <glyph glyph-name="arrow-right"
215
- unicode="&#xF145;"
216
- horiz-adv-x="512" d=" M85.3333333333333 213.3333333333334V170.6666666666667H341.3333333333333L224 53.3333333333334L254.2933333333333 23.04L423.2533333333334 192L254.2933333333333 360.9600000000001L224 330.6666666666667L341.3333333333333 213.3333333333334H85.3333333333333z" />
217
- <glyph glyph-name="arrow-right-bold"
218
- unicode="&#xF146;"
219
- horiz-adv-x="512" d=" M85.3333333333333 234.6666666666667V149.3333333333334H277.3333333333333L202.6666666666667 74.6666666666667L254.2933333333333 23.04L423.2533333333334 192L254.2933333333333 360.9600000000001L202.6666666666667 309.3333333333334L277.3333333333333 234.6666666666667H85.3333333333333z" />
220
- <glyph glyph-name="arrow-right-bold-circle"
221
- unicode="&#xF147;"
222
- horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M362.6666666666667 192L256 298.6666666666667V234.6666666666667H170.6666666666667V149.3333333333334H256V85.3333333333334L362.6666666666667 192z" />
223
- <glyph glyph-name="arrow-right-bold-circle-outline"
224
- unicode="&#xF148;"
225
- horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192z" />
226
- <glyph glyph-name="arrow-right-bold-hexagon-outline"
227
- unicode="&#xF149;"
228
- horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
229
- <glyph glyph-name="arrow-top-left"
230
- unicode="&#xF14A;"
231
- horiz-adv-x="512" d=" M405.3333333333333 72.7466666666667L375.2533333333334 42.6666666666667L149.3333333333333 268.5866666666667V128H106.6666666666667V341.3333333333334H320V298.6666666666667H179.4133333333333L405.3333333333333 72.7466666666667z" />
232
- <glyph glyph-name="arrow-top-right"
233
- unicode="&#xF14B;"
234
- horiz-adv-x="512" d=" M106.6666666666667 72.7466666666667L332.5866666666667 298.6666666666667H192V341.3333333333334H405.3333333333333V128H362.6666666666667V268.5866666666667L136.7466666666667 42.6666666666667L106.6666666666667 72.7466666666667z" />
235
- <glyph glyph-name="arrow-up"
236
- unicode="&#xF14C;"
237
- horiz-adv-x="512" d=" M277.3333333333333 21.3333333333334H234.6666666666667V277.3333333333334L117.3333333333333 160L87.04 190.2933333333334L256 359.2533333333334L424.9600000000001 190.2933333333334L394.6666666666667 160L277.3333333333333 277.3333333333334V21.3333333333334z" />
238
- <glyph glyph-name="arrow-up-bold"
239
- unicode="&#xF14D;"
240
- horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334H213.3333333333333V213.3333333333334L138.6666666666667 138.6666666666667L87.04 190.2933333333334L256 359.2533333333334L424.9600000000001 190.2933333333334L373.3333333333333 138.6666666666667L298.6666666666667 213.3333333333334V21.3333333333334z" />
241
- <glyph glyph-name="arrow-up-bold-circle"
242
- unicode="&#xF14E;"
243
- horiz-adv-x="512" d=" M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 298.6666666666667L149.3333333333333 192H213.3333333333333V106.6666666666667H298.6666666666667V192H362.6666666666667L256 298.6666666666667z" />
244
- <glyph glyph-name="arrow-up-bold-circle-outline"
245
- unicode="&#xF14F;"
246
- horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334z" />
247
- <glyph glyph-name="arrow-up-bold-hexagon-outline"
248
- unicode="&#xF150;"
249
- horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
250
- <glyph glyph-name="at"
251
- unicode="&#xF151;"
252
- horiz-adv-x="512" d=" M371.6266666666667 128C379.5200000000001 147.4133333333334 384 169.1733333333334 384 192C384 274.5600000000001 326.6133333333334 341.3333333333334 256 341.3333333333334S128 274.5600000000001 128 192S185.3866666666667 42.6666666666667 256 42.6666666666667C288.8533333333333 42.6666666666667 320 42.6666666666667 341.3333333333333 59.3066666666667V9.6000000000001C320 1e-13 287.1466666666667 1e-13 256 1e-13C161.7066666666667 1e-13 85.3333333333333 85.9733333333335 85.3333333333333 192.0000000000001S161.7066666666667 384.0000000000001 256 384.0000000000001S426.6666666666667 298.0266666666668 426.6666666666667 192.0000000000001C426.6666666666667 152.5333333333334 416 115.8400000000001 397.8666666666666 85.3333333333334H298.6666666666667V117.3333333333334C285.0133333333333 97.4933333333335 266.6666666666667 85.3333333333334 245.3333333333333 85.3333333333334C204.16 85.3333333333334 170.6666666666667 133.12 170.6666666666667 192S204.16 298.6666666666667 245.3333333333333 298.6666666666667C266.6666666666667 298.6666666666667 285.0133333333333 286.5066666666667 298.6666666666667 266.6666666666667V277.3333333333334H341.3333333333333V128H371.6266666666667M256 256C232.5333333333334 256 213.3333333333333 227.4133333333334 213.3333333333333 192S232.5333333333334 128 256 128S298.6666666666667 156.5866666666667 298.6666666666667 192S279.4666666666667 256 256 256z" />
253
- <glyph glyph-name="attachment"
254
- unicode="&#xF152;"
255
- horiz-adv-x="512" d=" M160 64C95.1466666666667 64 42.6666666666667 116.48 42.6666666666667 181.3333333333334S95.1466666666667 298.6666666666667 160 298.6666666666667H384C431.1466666666667 298.6666666666667 469.3333333333333 260.48 469.3333333333333 213.3333333333334S431.1466666666667 128 384 128H202.6666666666667C173.2266666666666 128 149.3333333333333 151.8933333333333 149.3333333333333 181.3333333333334S173.2266666666666 234.6666666666667 202.6666666666667 234.6666666666667H362.6666666666667V202.6666666666667H202.6666666666667C190.9333333333333 202.6666666666667 181.3333333333333 193.0666666666667 181.3333333333333 181.3333333333334S190.9333333333333 160 202.6666666666667 160H384C413.44 160 437.3333333333333 183.8933333333334 437.3333333333333 213.3333333333334S413.44 266.6666666666667 384 266.6666666666667H160C112.8533333333333 266.6666666666667 74.6666666666667 228.48 74.6666666666667 181.3333333333334S112.8533333333333 96 160 96H362.6666666666667V64H160z" />
256
- <glyph glyph-name="audiobook"
257
- unicode="&#xF153;"
258
- horiz-adv-x="512" d=" M384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.5333333333333 405.3333333333333 128 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333M277.3333333333333 128C253.8666666666667 128 234.6666666666667 108.8 234.6666666666667 85.3333333333334S253.8666666666667 42.6666666666667 277.3333333333333 42.6666666666667S320 61.8666666666667 320 85.3333333333334V192H384V234.6666666666667H298.6666666666667V122.24C292.48 125.8666666666667 285.0133333333333 128 277.3333333333333 128z" />
259
- <glyph glyph-name="auto-fix"
260
- unicode="&#xF154;"
261
- horiz-adv-x="512" d=" M160 328.5333333333334L106.6666666666667 298.6666666666667L136.5333333333333 352L106.6666666666667 405.3333333333333L160 375.4666666666667L213.3333333333333 405.3333333333333L183.4666666666667 352L213.3333333333333 298.6666666666667L160 328.5333333333334M416 119.4666666666667L469.3333333333333 149.3333333333334L439.4666666666667 96L469.3333333333333 42.6666666666667L416 72.5333333333333L362.6666666666667 42.6666666666667L392.5333333333333 96L362.6666666666667 149.3333333333334L416 119.4666666666667M469.3333333333333 405.3333333333333L439.4666666666667 352L469.3333333333333 298.6666666666667L416 328.5333333333334L362.6666666666667 298.6666666666667L392.5333333333333 352L362.6666666666667 405.3333333333333L416 375.4666666666667L469.3333333333333 405.3333333333333M284.5866666666667 175.36L336.64 227.4133333333334L291.4133333333333 272.6400000000001L239.36 220.5866666666667L284.5866666666667 175.3600000000001M306.56 292.4800000000001L356.48 242.5600000000001C364.8 234.6666666666668 364.8 220.8000000000001 356.48 212.4800000000001L107.52 -36.48C99.2 -44.8 85.3333333333333 -44.8 77.44 -36.48L27.52 13.44C19.2 21.3333333333334 19.2 35.2 27.52 43.52L276.48 292.48C284.8 300.8 298.6666666666667 300.8 306.56 292.48z" />
262
- <glyph glyph-name="auto-upload"
263
- unicode="&#xF155;"
264
- horiz-adv-x="512" d=" M114.1333333333333 178.1333333333333L138.6666666666667 256L163.2 178.1333333333333M117.3333333333333 298.6666666666667L49.0666666666667 106.6666666666667H89.6L104.5333333333333 149.3333333333334H172.8L187.7333333333333 106.6666666666667H228.2666666666667L160 298.6666666666667M234.6666666666667 21.3333333333334H469.3333333333333V64H234.6666666666667M298.6666666666667 106.6666666666667H405.3333333333333V213.3333333333334H469.3333333333333L352 330.6666666666667L234.6666666666667 213.3333333333334H298.6666666666667V106.6666666666667z" />
265
- <glyph glyph-name="baby"
266
- unicode="&#xF156;"
267
- horiz-adv-x="512" d=" M394.6666666666667 362.6666666666667C424.1066666666667 362.6666666666667 448 338.7733333333333 448 309.3333333333334S424.1066666666667 256 394.6666666666667 256S341.3333333333333 279.8933333333333 341.3333333333333 309.3333333333334S365.2266666666667 362.6666666666667 394.6666666666667 362.6666666666667M96 21.3333333333334C78.2933333333333 21.3333333333334 64 35.6266666666667 64 53.3333333333334S78.2933333333333 85.3333333333334 96 85.3333333333334H245.3333333333333C263.04 85.3333333333334 277.3333333333333 71.04 277.3333333333333 53.3333333333334S263.04 21.3333333333334 245.3333333333333 21.3333333333334H96M343.2533333333334 42.6666666666667L313.3866666666667 128H234.6666666666667L144 218.6666666666667S192 272 266.6666666666667 272C330.6666666666667 272 338.1333333333334 250.6666666666667 342.6133333333333 237.44L403.6266666666667 64C409.6 47.36 400.64 29.0133333333333 384 23.04C367.36 17.28 349.0133333333333 26.0266666666666 343.2533333333334 42.6666666666667z" />
268
- <glyph glyph-name="backburger"
269
- unicode="&#xF157;"
270
- horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667L192 85.3333333333334L162.1333333333333 55.04L25.1733333333333 192L162.1333333333333 328.9600000000001L192 298.6666666666667L106.6666666666667 213.3333333333334H448V170.6666666666667H106.6666666666667M448 320V277.3333333333334H234.6666666666667V320H448M448 106.6666666666667V64H234.6666666666667V106.6666666666667H448z" />
271
- <glyph glyph-name="backup-restore"
272
- unicode="&#xF158;"
273
- horiz-adv-x="512" d=" M256 384C149.9733333333333 384 64 298.0266666666667 64 192H0L85.3333333333333 106.6666666666667L170.6666666666667 192H106.6666666666667C106.6666666666667 274.5600000000001 173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667C224 42.6666666666667 193.92 53.3333333333334 169.3866666666667 70.4L138.6666666666667 39.68C171.52 14.9333333333333 212.0533333333333 0 256 0C362.0266666666667 0 448 85.9733333333334 448 192S362.0266666666667 384 256 384M298.6666666666667 192C298.6666666666667 215.4666666666667 279.4666666666667 234.6666666666667 256 234.6666666666667S213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192z" />
274
- <glyph glyph-name="bank"
275
- unicode="&#xF159;"
276
- horiz-adv-x="512" d=" M245.3333333333333 426.6666666666667L42.6666666666667 320V277.3333333333334H448V320M341.3333333333333 234.6666666666667V85.3333333333334H405.3333333333333V234.6666666666667M42.6666666666667 -21.3333333333333H448V42.6666666666667H42.6666666666667M213.3333333333333 234.6666666666667V85.3333333333334H277.3333333333333V234.6666666666667M85.3333333333333 234.6666666666667V85.3333333333334H149.3333333333333V234.6666666666667H85.3333333333333z" />
277
- <glyph glyph-name="barcode"
278
- unicode="&#xF15A;"
279
- horiz-adv-x="512" d=" M42.6666666666667 320H85.3333333333333V64H42.6666666666667V320M106.6666666666667 320H128V64H106.6666666666667V320M149.3333333333333 320H213.3333333333333V64H149.3333333333333V320M234.6666666666667 320H256V64H234.6666666666667V320M298.6666666666667 320H341.3333333333333V64H298.6666666666667V320M362.6666666666667 320H426.6666666666667V64H362.6666666666667V320M448 320H469.3333333333333V64H448V320z" />
280
- <glyph glyph-name="barley"
281
- unicode="&#xF15B;"
282
- horiz-adv-x="512" d=" M156.3733333333333 56.96C138.6666666666667 81.7066666666667 138.6666666666667 110.2933333333334 138.6666666666667 138.6666666666668C174.2933333333333 117.3333333333334 209.7066666666667 96 227.6266666666667 71.0400000000001L234.6666666666667 59.0933333333334V107.7333333333334C202.6666666666667 126.9333333333334 172.3733333333333 146.5600000000001 156.3733333333333 168.96C138.6666666666667 193.7066666666667 138.6666666666667 222.2933333333334 138.6666666666667 250.6666666666667C174.2933333333333 229.3333333333334 209.7066666666667 208.0000000000001 227.6266666666667 183.0400000000001L234.6666666666667 170.6666666666667V219.7333333333334C202.6666666666667 238.9333333333334 172.3733333333333 258.5600000000001 156.3733333333333 280.9600000000001C138.6666666666667 305.7066666666667 138.6666666666667 334.2933333333334 138.6666666666667 362.6666666666667C174.2933333333333 341.3333333333334 209.7066666666667 320 227.6266666666667 295.04C229.76 292.0533333333334 231.68 288.8533333333334 233.3866666666667 285.44C229.76 298.6666666666667 227.4133333333334 311.04 227.2 323.8400000000001C226.9866666666667 356.0533333333334 241.0666666666667 389.12 255.1466666666667 422.1866666666667C269.8666666666667 390.6133333333334 284.5866666666667 358.8266666666667 284.8 326.6133333333334C285.0133333333333 313.1733333333334 282.6666666666667 299.52 278.8266666666667 286.0800000000001C280.5333333333334 289.0666666666667 282.24 292.0533333333334 284.3733333333334 295.04C302.2933333333333 320 337.7066666666667 341.3333333333334 373.3333333333333 362.6666666666667C373.3333333333333 334.2933333333334 373.3333333333333 305.7066666666667 355.6266666666667 280.9600000000001C339.6266666666667 258.56 309.3333333333333 238.9333333333334 277.3333333333333 219.7333333333334V170.6666666666667L284.3733333333334 183.04C302.2933333333333 208 337.7066666666667 229.3333333333334 373.3333333333333 250.6666666666667C373.3333333333333 222.2933333333334 373.3333333333333 193.7066666666667 355.6266666666667 168.96C339.6266666666667 146.56 309.3333333333334 126.9333333333333 277.3333333333334 107.7333333333334V59.0933333333334L284.3733333333334 71.04C302.2933333333334 96 337.7066666666667 117.3333333333333 373.3333333333333 138.6666666666666C373.3333333333333 110.2933333333333 373.3333333333333 81.7066666666667 355.6266666666667 56.96C339.6266666666667 34.5599999999999 309.3333333333334 14.9333333333333 277.3333333333334 -4.2666666666667V-42.6666666666666H234.6666666666667V-4.2666666666667C202.6666666666667 14.9333333333333 172.3733333333334 34.5600000000001 156.3733333333334 56.96z" />
283
- <glyph glyph-name="barrel"
284
- unicode="&#xF15C;"
285
- horiz-adv-x="512" d=" M384 42.6666666666667H405.3333333333333V0H106.6666666666667V42.6666666666667H128V170.6666666666667H106.6666666666667V213.3333333333334H128V341.3333333333334H106.6666666666667V384H405.3333333333333V341.3333333333334H384V213.3333333333334H405.3333333333333V170.6666666666667H384V42.6666666666667M192 170.6666666666667C192 135.2533333333333 220.5866666666667 106.6666666666667 256 106.6666666666667S320 135.2533333333333 320 170.6666666666667C320 213.3333333333334 256 285.2266666666667 256 285.2266666666667S192 213.3333333333334 192 170.6666666666667z" />
286
- <glyph glyph-name="basecamp"
287
- unicode="&#xF15D;"
288
- horiz-adv-x="512" d=" M72.32 114.3466666666667C72.5333333333333 116.2666666666667 72.96 118.4 73.6 120.32C74.6666666666667 124.16 75.52 128 76.8 131.4133333333333C81.4933333333333 145.28 88.7466666666667 158.2933333333333 96 170.6666666666666C100.2666666666667 177.0666666666667 104.32 183.2533333333333 108.16 189.44C112.2133333333333 195.6266666666666 116.2666666666667 201.8133333333333 120.96 207.7866666666666C128 217.3866666666666 137.6 227.6266666666667 149.3333333333333 231.4666666666667C166.1866666666667 236.8 178.56 219.52 188.16 208.64C193.7066666666667 202.6666666666666 199.68 196.2666666666666 207.1466666666667 192.64C210.7733333333334 191.1466666666667 214.6133333333334 190.2933333333333 218.4533333333333 190.5066666666667C224 190.9333333333333 228.9066666666667 194.7733333333333 233.1733333333333 198.1866666666666C244.48 207.5733333333333 253.8666666666667 219.7333333333333 262.6133333333333 231.4666666666667C272.4266666666666 244.2666666666666 281.8133333333333 257.4933333333334 292.9066666666667 269.2266666666667C297.6 274.1333333333334 302.5066666666666 280.5333333333333 309.3333333333333 282.6666666666667C311.8933333333333 283.52 315.0933333333333 283.3066666666666 318.08 282.0266666666667C320 281.1733333333333 321.0666666666666 280.1066666666667 322.1333333333333 279.04C323.6266666666666 277.3333333333333 325.3333333333333 276.48 326.8266666666666 275.4133333333333C338.7733333333333 266.6666666666667 349.8666666666666 256 360.32 245.3333333333333C369.28 236.16 378.0266666666666 226.3466666666666 386.1333333333333 216.3199999999999C394.6666666666666 206.5066666666666 401.9199999999999 196.48 408.5333333333333 185.6C416.64 172.16 423.4666666666666 158.2933333333333 431.1466666666666 144.8533333333333C437.9733333333333 132.48 445.0133333333332 118.1866666666666 437.9733333333333 104.1066666666667C437.3333333333333 103.4666666666666 437.3333333333333 102.6133333333334 437.3333333333333 101.9733333333333C424.7466666666666 81.28 402.7733333333332 68.48 381.0133333333332 60.16C354.7733333333332 50.1333333333333 326.8266666666666 45.2266666666666 298.6666666666666 43.3066666666666C270.08 41.1733333333333 241.0666666666666 41.3866666666667 212.2666666666666 43.9466666666667C186.2399999999999 46.5066666666667 159.9999999999999 51.2 135.6799999999999 60.5866666666667C115.1999999999999 68.48 95.9999999999999 80 81.9199999999999 97.4933333333333C78.7199999999999 101.76 75.9466666666666 106.0266666666666 73.5999999999999 110.72C73.1733333333332 111.1466666666667 72.9599999999999 111.7866666666667 72.7466666666666 112.2133333333334C72.3199999999999 113.0666666666667 72.1066666666666 113.4933333333334 72.3199999999999 114.3466666666667M44.3733333333332 96C47.3599999999999 91.0933333333334 50.7733333333332 86.8266666666667 54.1866666666666 82.7733333333333C61.0133333333332 74.6666666666667 68.9066666666666 67.2 77.2266666666666 60.5866666666667C95.1466666666666 46.72 115.8399999999999 36.6933333333333 137.3866666666666 29.6533333333334C162.1333333333333 21.3333333333334 188.1599999999999 17.2800000000001 214.1866666666666 15.1466666666667C244.2666666666666 12.5866666666667 274.9866666666666 12.5866666666667 305.0666666666666 15.7866666666667C332.7999999999999 18.7733333333334 360.7466666666666 24.5333333333334 386.7733333333332 34.7733333333334C409.8133333333332 43.9466666666667 431.1466666666666 57.1733333333334 449.7066666666666 73.8133333333334C454.6133333333332 78.08 459.3066666666665 82.5600000000001 462.9333333333332 87.8933333333334C466.3466666666666 92.3733333333334 469.3333333333333 97.2800000000001 469.3333333333333 102.8266666666667C469.3333333333333 109.2266666666667 469.3333333333333 115.84 467.6266666666666 122.24C466.1333333333333 129.28 464.2133333333333 136.1066666666667 462.5066666666667 142.9333333333334L460.5866666666666 150.6133333333334C453.76 180.6933333333334 443.3066666666667 209.92 429.2266666666667 237.4400000000001C417.2800000000001 260.48 402.56 282.4533333333334 385.2800000000001 302.0800000000001C369.2800000000001 320 350.5066666666667 336.64 329.1733333333334 348.1600000000001C317.8666666666668 354.56 305.7066666666667 359.4666666666667 293.3333333333334 362.6666666666667C286.7200000000001 365.2266666666667 279.8933333333334 366.7200000000001 273.0666666666667 368.2133333333334C271.1466666666668 368.4266666666667 269.4400000000001 368.8533333333334 267.7333333333334 368.8533333333334H247.6800000000001C245.3333333333335 368.8533333333334 243.8400000000001 369.0666666666667 241.7066666666668 368.8533333333334C240.0000000000001 368.64 238.0800000000001 368.2133333333334 236.3733333333335 368C232.7466666666668 367.36 229.3333333333335 366.7200000000001 225.9200000000001 365.8666666666667C219.0933333333334 364.3733333333334 212.4800000000001 362.6666666666667 205.8666666666668 359.68C192.8533333333335 354.56 180.6933333333335 347.7333333333334 169.1733333333335 339.6266666666667C146.5600000000001 324.2666666666667 126.9333333333335 304.4266666666667 110.5066666666668 282.6666666666667C93.2266666666668 259.6266666666667 79.1466666666668 233.8133333333334 68.4800000000001 206.9333333333333C56.9600000000001 178.3466666666667 49.0666666666668 148.48 44.1600000000001 117.9733333333334C43.5200000000001 114.1333333333333 42.6666666666668 110.08 42.6666666666668 106.6666666666667V99.84C42.6666666666668 98.7733333333333 42.6666666666668 98.1333333333334 43.3066666666668 97.28C43.5200000000001 96.8533333333334 43.9466666666668 96 44.3733333333335 96z" />
289
- <glyph glyph-name="basket"
290
- unicode="&#xF15E;"
291
- horiz-adv-x="512" d=" M117.3333333333333 0C100.6933333333333 0 86.1866666666667 9.6 79.1466666666667 23.4666666666667L23.4666666666667 225.2800000000001L21.3333333333333 234.6666666666667C21.3333333333333 246.4000000000001 30.9333333333333 256 42.6666666666667 256H140.3733333333333L238.5066666666667 396.1600000000001C242.3466666666667 401.7066666666667 248.7466666666667 405.3333333333334 256 405.3333333333334C263.2533333333334 405.3333333333334 269.8666666666667 401.7066666666667 273.7066666666667 395.9466666666667L371.6266666666667 256H469.3333333333333C481.0666666666667 256 490.6666666666666 246.4000000000001 490.6666666666666 234.6666666666667L489.8133333333333 228.48L432.8533333333333 23.4666666666667C425.8133333333334 9.6000000000001 411.3066666666666 0 394.6666666666667 0H117.3333333333333M256 346.88L192 256H320L256 346.88M256 170.6666666666667C232.5333333333334 170.6666666666667 213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334S298.6666666666667 104.5333333333333 298.6666666666667 128S279.4666666666667 170.6666666666667 256 170.6666666666667z" />
292
- <glyph glyph-name="basket-fill"
293
- unicode="&#xF15F;"
294
- horiz-adv-x="512" d=" M64 405.3333333333333H128V341.3333333333334H64V405.3333333333333M128 298.6666666666667H192V234.6666666666667H128V298.6666666666667M170.6666666666667 405.3333333333333H234.6666666666667V341.3333333333334H170.6666666666667V405.3333333333333M362.6666666666667 213.3333333333334L256 320H320V405.3333333333333H405.3333333333333V320H469.3333333333333L362.6666666666667 213.3333333333334M160 -21.3333333333333C143.36 -21.3333333333333 128.8533333333333 -11.7333333333333 121.8133333333333 2.1333333333334L66.1333333333333 161.28L64 170.6666666666667C64 182.4 73.6 192 85.3333333333333 192H426.6666666666667C438.4 192 448 182.4 448 170.6666666666667L447.1466666666667 164.48L390.1866666666666 2.1333333333334C383.1466666666667 -11.7333333333332 368.64 -21.3333333333333 352 -21.3333333333333H160M162.3466666666667 21.3333333333334H349.6533333333333L396.16 149.3333333333334H115.6266666666667L162.3466666666666 21.3333333333334z" />
295
- <glyph glyph-name="basket-unfill"
296
- unicode="&#xF160;"
297
- horiz-adv-x="512" d=" M64 234.6666666666667H128V298.6666666666667H64V234.6666666666667M106.6666666666667 341.3333333333334H170.6666666666667V405.3333333333333H106.6666666666667V341.3333333333334M170.6666666666667 234.6666666666667H234.6666666666667V298.6666666666667H170.6666666666667V234.6666666666667M362.6666666666667 426.6666666666667L256 320H320V234.6666666666667H405.3333333333333V320H469.3333333333333L362.6666666666667 426.6666666666667M160 -21.3333333333333C143.36 -21.3333333333333 128.8533333333333 -11.7333333333333 121.8133333333333 2.1333333333334L66.1333333333333 161.28L64 170.6666666666667C64 182.4 73.6 192 85.3333333333333 192H426.6666666666667C438.4 192 448 182.4 448 170.6666666666667L447.1466666666667 164.48L390.1866666666666 2.1333333333334C383.1466666666667 -11.7333333333332 368.64 -21.3333333333333 352 -21.3333333333333H160M162.3466666666667 21.3333333333334H349.6533333333333L396.16 149.3333333333334H115.6266666666667L162.3466666666666 21.3333333333334z" />
298
- <glyph glyph-name="battery"
299
- unicode="&#xF161;"
300
- horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
301
- <glyph glyph-name="battery-10"
302
- unicode="&#xF162;"
303
- horiz-adv-x="512" d=" M341.3333333333333 64H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
304
- <glyph glyph-name="battery-20"
305
- unicode="&#xF163;"
306
- horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
307
- <glyph glyph-name="battery-30"
308
- unicode="&#xF164;"
309
- horiz-adv-x="512" d=" M341.3333333333333 128H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
310
- <glyph glyph-name="battery-40"
311
- unicode="&#xF165;"
312
- horiz-adv-x="512" d=" M341.3333333333333 149.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
313
- <glyph glyph-name="battery-50"
314
- unicode="&#xF166;"
315
- horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
316
- <glyph glyph-name="battery-60"
317
- unicode="&#xF167;"
318
- horiz-adv-x="512" d=" M341.3333333333333 192H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
319
- <glyph glyph-name="battery-70"
320
- unicode="&#xF168;"
321
- horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
322
- <glyph glyph-name="battery-80"
323
- unicode="&#xF169;"
324
- horiz-adv-x="512" d=" M341.3333333333333 256H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
325
- <glyph glyph-name="battery-90"
326
- unicode="&#xF16A;"
327
- horiz-adv-x="512" d=" M341.3333333333333 277.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
328
- <glyph glyph-name="battery-alert"
329
- unicode="&#xF16B;"
330
- horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334H234.6666666666667V256H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
331
- <glyph glyph-name="battery-charging-100"
332
- unicode="&#xF16C;"
333
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
334
- <glyph glyph-name="battery-charging-20"
335
- unicode="&#xF16D;"
336
- horiz-adv-x="512" d=" M491.7333333333333 213.3333333333334H427.7333333333334V362.6666666666667L321.0666666666667 149.3333333333334H385.0666666666667V-21.3333333333333M257.0666666666667 85.3333333333334H86.4V320H257.0666666666667M271.36 362.6666666666667H235.7333333333334V405.3333333333333H107.7333333333334V362.6666666666667H72.1066666666667C56.5333333333333 362.6666666666667 43.7333333333333 349.8666666666667 43.7333333333333 334.2933333333334V7.04C43.7333333333333 -8.5333333333334 56.5333333333333 -21.3333333333333 72.1066666666667 -21.3333333333333H271.36C286.9333333333333 -21.3333333333333 299.7333333333333 -8.5333333333333 299.7333333333333 7.04V334.2933333333334C299.7333333333333 349.8666666666667 286.9333333333333 362.6666666666667 271.36 362.6666666666667z" />
337
- <glyph glyph-name="battery-charging-30"
338
- unicode="&#xF16E;"
339
- horiz-adv-x="512" d=" M256 128H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
340
- <glyph glyph-name="battery-charging-40"
341
- unicode="&#xF16F;"
342
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 170.6666666666667H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
343
- <glyph glyph-name="battery-charging-60"
344
- unicode="&#xF170;"
345
- horiz-adv-x="512" d=" M256 213.3333333333334H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
346
- <glyph glyph-name="battery-charging-80"
347
- unicode="&#xF171;"
348
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 256H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
349
- <glyph glyph-name="battery-charging-90"
350
- unicode="&#xF172;"
351
- horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 277.3333333333334H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
352
- <glyph glyph-name="battery-minus"
353
- unicode="&#xF173;"
354
- horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667C371.2 362.6666666666667 384 349.8666666666667 384 334.2933333333334V7.04C384 -8.5333333333334 371.2 -21.3333333333333 355.6266666666667 -21.3333333333333H156.3733333333333C140.8 -21.3333333333333 128 -8.5333333333333 128 7.04V334.2933333333334C128 349.8666666666667 140.8 362.6666666666667 156.3733333333333 362.6666666666667H192V405.3333333333333H320V362.6666666666667H355.6266666666667M170.6666666666667 192V149.3333333333334H341.3333333333333V192" />
355
- <glyph glyph-name="battery-negative"
356
- unicode="&#xF174;"
357
- horiz-adv-x="512" d=" M248.96 362.6666666666667C264.5333333333333 362.6666666666667 277.3333333333333 349.8666666666667 277.3333333333333 334.2933333333334V7.04C277.3333333333333 -8.5333333333334 264.5333333333333 -21.3333333333333 248.96 -21.3333333333333H49.7066666666667C34.1333333333333 -21.3333333333333 21.3333333333333 -8.5333333333333 21.3333333333333 7.04V334.2933333333334C21.3333333333333 349.8666666666667 34.1333333333333 362.6666666666667 49.7066666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667H248.96M320 192H490.6666666666666V149.3333333333334H320V192M64 170.6666666666667H234.6666666666667V320H64V170.6666666666667z" />
358
- <glyph glyph-name="battery-outline"
359
- unicode="&#xF175;"
360
- horiz-adv-x="512" d=" M341.3333333333333 21.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
361
- <glyph glyph-name="battery-plus"
362
- unicode="&#xF176;"
363
- horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667C371.2 362.6666666666667 384 349.8666666666667 384 334.2933333333334V7.04C384 -8.5333333333334 371.2 -21.3333333333333 355.6266666666667 -21.3333333333333H156.3733333333333C140.8 -21.3333333333333 128 -8.5333333333333 128 7.04V334.2933333333334C128 349.8666666666667 140.8 362.6666666666667 156.3733333333333 362.6666666666667H192V405.3333333333333H320V362.6666666666667H355.6266666666667M341.3333333333333 149.3333333333334V192H277.3333333333333V256H234.6666666666667V192H170.6666666666667V149.3333333333334H234.6666666666667V85.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333z" />
364
- <glyph glyph-name="battery-positive"
365
- unicode="&#xF177;"
366
- horiz-adv-x="512" d=" M248.96 362.6666666666667C264.5333333333333 362.6666666666667 277.3333333333333 349.8666666666667 277.3333333333333 334.2933333333334V7.04C277.3333333333333 -8.5333333333334 264.5333333333333 -21.3333333333333 248.96 -21.3333333333333H49.7066666666667C34.1333333333333 -21.3333333333333 21.3333333333333 -8.5333333333333 21.3333333333333 7.04V334.2933333333334C21.3333333333333 349.8666666666667 34.1333333333333 362.6666666666667 49.7066666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667H248.96M490.6666666666666 149.3333333333334H426.6666666666667V85.3333333333334H384V149.3333333333334H320V192H384V256H426.6666666666667V192H490.6666666666666V149.3333333333334M64 170.6666666666667H234.6666666666667V320H64V170.6666666666667z" />
367
- <glyph glyph-name="battery-unknown"
368
- unicode="&#xF178;"
369
- horiz-adv-x="512" d=" M321.4933333333334 186.6666666666667L302.2933333333333 167.04C290.7733333333333 155.52 282.6666666666667 145.4933333333334 279.2533333333334 128H235.7333333333334C238.08 147.2000000000001 246.6133333333334 164.6933333333334 259.6266666666667 177.7066666666667L286.0800000000001 204.5866666666667C293.9733333333334 212.2666666666667 298.6666666666667 222.9333333333333 298.6666666666667 234.6666666666667C298.6666666666667 258.3466666666667 279.4666666666667 277.3333333333334 256 277.3333333333334S213.3333333333334 258.1333333333334 213.3333333333334 234.6666666666667H170.6666666666667C170.6666666666667 281.8133333333334 208.8533333333333 320 256 320S341.3333333333333 281.8133333333334 341.3333333333333 234.6666666666667C341.3333333333333 215.8933333333333 333.6533333333333 198.8266666666667 321.4933333333334 186.6666666666667M277.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.2533333333333C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.2533333333333V334.2933333333334C384 350.0800000000001 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
370
- <glyph glyph-name="beach"
371
- unicode="&#xF179;"
372
- horiz-adv-x="512" d=" M320 52.48C365.44 59.52 416 64 469.3333333333333 64V-21.3333333333333H106.6666666666667C106.6666666666667 -7.4666666666667 174.9333333333333 24.3200000000001 277.3333333333333 44.8000000000001V183.4666666666667C259.4133333333333 178.1333333333334 244.2666666666667 166.1866666666667 234.6666666666667 150.4C221.6533333333333 172.16 197.76 186.6666666666667 170.6666666666667 186.6666666666667S119.68 172.16 106.6666666666667 150.4C107.3066666666667 226.7733333333334 181.3333333333333 289.4933333333334 277.3333333333333 297.8133333333334V298.6666666666667C277.3333333333333 310.4 286.9333333333333 320 298.6666666666667 320S320 310.4 320 298.6666666666667V297.8133333333334C416 289.4933333333334 489.8133333333333 226.7733333333333 490.6666666666666 150.4C477.6533333333333 172.16 453.76 186.6666666666667 426.6666666666667 186.6666666666667S375.68 172.16 362.6666666666667 150.4C353.0666666666667 166.1866666666667 337.92 178.1333333333334 320 183.6800000000001V52.48M149.3333333333333 405.3333333333333C149.3333333333333 346.4533333333334 101.5466666666667 298.6666666666667 42.6666666666667 298.6666666666667V405.3333333333333H149.3333333333333z" />
373
- <glyph glyph-name="beaker"
374
- unicode="&#xF17A;"
375
- horiz-adv-x="512" d=" M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L352.64 139.3066666666667L298.6666666666667 85.3333333333334L190.5066666666667 193.4933333333334L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M277.3333333333333 234.6666666666667C265.6 234.6666666666667 256 225.0666666666667 256 213.3333333333334S265.6 192 277.3333333333333 192S298.6666666666667 201.6 298.6666666666667 213.3333333333334S289.0666666666667 234.6666666666667 277.3333333333333 234.6666666666667z" />
376
- <glyph glyph-name="beaker-empty"
377
- unicode="&#xF17B;"
378
- horiz-adv-x="512" d=" M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128z" />
379
- <glyph glyph-name="beaker-empty-outline"
380
- unicode="&#xF17C;"
381
- horiz-adv-x="512" d=" M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L277.3333333333333 269.8666666666667V362.6666666666667H234.6666666666667V269.8666666666667L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128z" />
382
- <glyph glyph-name="beaker-outline"
383
- unicode="&#xF17D;"
384
- horiz-adv-x="512" d=" M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L277.3333333333333 269.8666666666667V362.6666666666667H234.6666666666667V269.8666666666667L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128M277.3333333333333 106.6666666666667L305.92 135.2533333333333L347.0933333333333 64H164.9066666666667L221.6533333333333 162.3466666666667L277.3333333333333 106.6666666666667M266.6666666666667 192C272.64 192 277.3333333333333 187.3066666666667 277.3333333333333 181.3333333333334S272.64 170.6666666666667 266.6666666666667 170.6666666666667S256 175.36 256 181.3333333333334S260.6933333333334 192 266.6666666666667 192z" />
385
- <glyph glyph-name="beats"
386
- unicode="&#xF17E;"
387
- horiz-adv-x="512" d=" M149.3333333333333 192C149.3333333333333 133.12 197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667C231.8933333333334 298.6666666666667 209.92 290.7733333333333 192 277.3333333333334V395.52C212.2666666666667 401.92 233.6 405.3333333333333 256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 270.9333333333334 85.3333333333333 339.8400000000001 149.3333333333333 376.7466666666667V192M309.3333333333333 192C309.3333333333333 184.1066666666667 305.0666666666667 177.4933333333334 298.6666666666667 173.6533333333334L258.3466666666667 143.1466666666667C254.72 140.3733333333333 250.24 138.6666666666667 245.3333333333333 138.6666666666667C233.6 138.6666666666667 224 148.2666666666667 224 160V224C224 235.7333333333334 233.6 245.3333333333334 245.3333333333333 245.3333333333334C250.24 245.3333333333334 254.72 243.6266666666667 258.3466666666667 240.8533333333333L298.6666666666667 210.3466666666667C305.0666666666667 206.5066666666667 309.3333333333333 199.8933333333333 309.3333333333333 192z" />
388
- <glyph glyph-name="beer"
389
- unicode="&#xF17F;"
390
- horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H405.3333333333333L362.6666666666667 -21.3333333333333H128L85.3333333333333 405.3333333333333M132.2666666666667 362.6666666666667L166.4 21.3333333333334H187.7333333333334L158.5066666666667 312.7466666666667C181.3333333333333 320 210.9866666666667 322.3466666666667 234.6666666666667 298.6666666666667C267.9466666666667 265.3866666666667 327.04 283.9466666666667 352 293.76L358.4 362.6666666666667H132.2666666666667z" />
391
- <glyph glyph-name="behance"
392
- unicode="&#xF180;"
393
- horiz-adv-x="512" d=" M417.7066666666666 186.24C416.8533333333333 199.4666666666667 412.3733333333333 209.4933333333334 404.4799999999999 216.32C396.5866666666666 223.1466666666667 386.7733333333333 226.5600000000001 375.04 226.5600000000001C362.6666666666667 226.5600000000001 352 222.9333333333334 345.3866666666666 215.68C338.3466666666666 208.4266666666667 333.8666666666666 198.6133333333334 332.16 186.24M467.6266666666666 191.1466666666667C469.3333333333333 182.4 469.3333333333333 169.8133333333334 469.3333333333333 153.3866666666667H330.6666666666666C331.7333333333333 134.1866666666667 338.1333333333332 120.96 350.7199999999999 113.2800000000001C358.1866666666666 108.3733333333334 367.36 106.0266666666668 378.2399999999999 106.0266666666668C389.5466666666666 106.0266666666668 398.7199999999999 109.0133333333334 405.3333333333333 114.7733333333334C409.5999999999999 117.9733333333334 413.0133333333332 122.2400000000001 415.9999999999999 128.0000000000001H466.7733333333332C465.4933333333332 116.48 459.3066666666665 105.1733333333334 447.9999999999999 93.4400000000001C431.3599999999999 74.6666666666667 407.4666666666666 65.7066666666667 376.7466666666666 65.7066666666667C351.3599999999999 65.7066666666667 329.1733333333333 73.6000000000001 309.3333333333333 89.1733333333334C290.5599999999999 104.7466666666668 280.7466666666666 130.1333333333335 280.7466666666666 165.3333333333334C280.7466666666666 198.4000000000001 289.4933333333333 224.0000000000001 306.9866666666666 241.0666666666668C324.4799999999999 258.7733333333335 347.0933333333333 267.5200000000001 375.04 267.5200000000001C391.4666666666666 267.5200000000001 406.3999999999999 264.5333333333334 419.6266666666666 258.5600000000001C432.8533333333333 252.5866666666668 443.9466666666666 243.4133333333334 452.4799999999999 230.4000000000001C460.3733333333333 219.0933333333335 465.28 206.0800000000001 467.6266666666666 191.1466666666668M204.3733333333333 147.84C204.3733333333333 161.7066666666667 198.6133333333334 171.3066666666667 187.52 176.4266666666667C181.3333333333333 179.2000000000001 172.3733333333333 180.6933333333333 160.8533333333333 181.3333333333334H103.8933333333333V110.08H160C171.52 110.08 180.48 111.5733333333334 186.88 114.7733333333334C198.6133333333334 120.5333333333334 204.3733333333333 131.6266666666667 204.3733333333333 147.84M103.8933333333333 224.8533333333334H160C171.52 224.8533333333334 181.3333333333333 226.9866666666667 188.16 231.4666666666667C195.4133333333333 235.7333333333334 198.8266666666667 243.6266666666667 198.8266666666667 254.7200000000001C198.8266666666667 266.6666666666668 194.1333333333333 275.2000000000001 184.7466666666667 279.2533333333334C176.4266666666667 282.0266666666667 165.9733333333333 283.3066666666668 153.3866666666667 283.3066666666668H103.8933333333333M250.0266666666667 183.0400000000001C256.8533333333333 172.3733333333334 260.2666666666667 159.3600000000001 260.2666666666667 144.2133333333334C260.2666666666667 128.0000000000001 256 114.3466666666667 248.5333333333333 101.7600000000001C243.4133333333333 93.4400000000001 237.2266666666667 86.6133333333334 229.76 80.8533333333334C221.2266666666666 74.6666666666667 211.2 69.9733333333334 199.68 67.6266666666667C188.1599999999999 65.2800000000001 175.7866666666666 64 162.3466666666666 64H42.6666666666667V329.6H170.6666666666667C203.3066666666667 328.9600000000001 226.1333333333334 320 239.5733333333333 301.2266666666667C247.68 289.92 251.7333333333334 276.48 251.7333333333334 260.6933333333334C251.7333333333334 244.48 247.68 231.4666666666667 239.5733333333333 221.6533333333334C234.6666666666667 216.1066666666667 228.2666666666667 210.9866666666667 219.3066666666667 206.5066666666667C232.7466666666667 201.6 242.9866666666667 193.7066666666667 250.0266666666667 183.04M427.9466666666667 291.8400000000001H321.0666666666667V318.5066666666667H427.9466666666667V291.8400000000001z" />
394
- <glyph glyph-name="bell"
395
- unicode="&#xF181;"
396
- horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334C298.6666666666667 -2.1333333333333 279.4666666666667 -21.3333333333333 256 -21.3333333333333S213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334H298.6666666666667M256 405.3333333333333C267.7333333333334 405.3333333333333 277.3333333333333 395.7333333333334 277.3333333333333 384V360.9600000000001C337.92 350.7200000000001 384 298.0266666666667 384 234.6666666666667V106.6666666666667L448 42.6666666666667H64L128 106.6666666666667V234.6666666666667C128 298.0266666666667 174.08 350.7200000000001 234.6666666666667 360.9600000000001V384C234.6666666666667 395.7333333333334 244.2666666666667 405.3333333333333 256 405.3333333333333z" />
397
- <glyph glyph-name="bell-off"
398
- unicode="&#xF182;"
399
- horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334C298.6666666666667 -2.1333333333333 279.4666666666667 -21.3333333333333 256 -21.3333333333333S213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334H298.6666666666667M421.12 -12.16L366.2933333333334 42.6666666666667H64L128 106.6666666666667V234.6666666666667C128 248.5333333333334 130.1333333333333 261.9733333333334 134.4 274.5600000000001L74.0266666666667 334.9333333333334L104.32 365.0133333333333L155.52 313.8133333333334L451.1999999999999 18.1333333333334L421.12 -12.16M234.6666666666667 360.9600000000001V384C234.6666666666667 395.7333333333334 244.2666666666667 405.3333333333333 256 405.3333333333333S277.3333333333333 395.7333333333334 277.3333333333333 384V360.9600000000001C337.92 350.7200000000001 384 298.0266666666667 384 234.6666666666667V145.7066666666667L187.0933333333333 342.6133333333334C201.3866666666667 352 217.3866666666667 357.9733333333334 234.6666666666667 360.9600000000001z" />
400
- <glyph glyph-name="bell-outline"
401
- unicode="&#xF183;"
402
- horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H149.3333333333333V224C149.3333333333333 277.3333333333334 192 320 245.3333333333333 320S341.3333333333333 277.3333333333334 341.3333333333333 224M384 106.6666666666667V224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64M245.3333333333333 -21.3333333333333C268.8 -21.3333333333333 288 -2.1333333333333 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333z" />
403
- <glyph glyph-name="bell-ring"
404
- unicode="&#xF184;"
405
- horiz-adv-x="512" d=" M245.3333333333333 -21.3333333333333C248.32 -21.3333333333333 251.0933333333333 -21.3333333333333 253.8666666666667 -20.48C267.7333333333334 -17.4933333333333 279.2533333333334 -8.1066666666667 284.5866666666667 4.6933333333333C286.72 9.8133333333333 288 15.5733333333334 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333M384 224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64L384 106.6666666666667M426.0266666666667 234.6666666666667H468.6933333333333C465.4933333333333 303.1466666666667 431.7866666666667 363.3066666666667 380.8 402.1333333333334L350.2933333333333 371.6266666666667C393.8133333333334 341.3333333333334 422.8266666666667 291.2000000000001 426.0266666666667 234.6666666666667M140.3733333333333 371.6266666666667L109.8666666666667 402.1333333333334C58.88 363.3066666666667 25.1733333333333 303.1466666666667 21.3333333333333 234.6666666666667H64C67.84 291.2000000000001 96.8533333333333 341.3333333333334 140.3733333333333 371.6266666666667z" />
406
- <glyph glyph-name="bell-ring-outline"
407
- unicode="&#xF185;"
408
- horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334V224C341.3333333333333 277.3333333333334 298.6666666666667 320 245.3333333333333 320S149.3333333333333 277.3333333333334 149.3333333333333 224V85.3333333333334H341.3333333333333M384 106.6666666666667L426.6666666666667 64V42.6666666666667H64V64L106.6666666666667 106.6666666666667V224C106.6666666666667 289.4933333333334 152.1066666666667 344.32 213.3333333333333 358.8266666666667V373.3333333333334C213.3333333333333 391.04 227.6266666666667 405.3333333333333 245.3333333333333 405.3333333333333S277.3333333333333 391.04 277.3333333333333 373.3333333333334V358.8266666666667C338.3466666666667 344.3200000000001 384 289.4933333333334 384 224V106.6666666666667M245.3333333333333 -21.3333333333333C221.8666666666667 -21.3333333333333 202.6666666666667 -2.1333333333333 202.6666666666667 21.3333333333334H288C288 -2.1333333333333 268.8 -21.3333333333333 245.3333333333333 -21.3333333333333M426.0266666666667 234.6666666666667C422.8266666666667 291.2000000000001 393.8133333333333 341.3333333333334 350.2933333333333 371.6266666666667L380.8 402.1333333333334C431.7866666666667 363.3066666666667 465.4933333333332 303.1466666666667 468.6933333333333 234.6666666666667H426.0266666666667M140.3733333333333 371.6266666666667C96.8533333333333 341.3333333333334 67.84 291.2000000000001 64 234.6666666666667H21.3333333333333C25.1733333333333 303.1466666666667 58.88 363.3066666666667 109.8666666666667 402.1333333333334L140.3733333333333 371.6266666666667z" />
409
- <glyph glyph-name="bell-sleep"
410
- unicode="&#xF186;"
411
- horiz-adv-x="512" d=" M298.6666666666667 238.9333333333334L238.9333333333333 166.4H298.6666666666667V128H192V166.4L251.7333333333334 238.9333333333334H192V277.3333333333334H298.6666666666667M384 106.6666666666667V224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64M245.3333333333333 -21.3333333333333C268.8 -21.3333333333333 288 -2.1333333333333 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333z" />
412
- <glyph glyph-name="beta"
413
- unicode="&#xF187;"
414
- horiz-adv-x="512" d=" M196.9066666666667 72.7466666666667V-45.2266666666667H146.7733333333333V304.64C146.7733333333333 335.5733333333334 155.9466666666667 359.8933333333333 174.08 378.0266666666667C192 396.16 216.96 405.3333333333333 247.68 405.3333333333333C277.3333333333333 405.3333333333333 300.16 398.08 317.2266666666667 384C334.08 369.4933333333334 342.4 349.44 342.4 324.0533333333334C342.4 306.56 336.8533333333334 290.1333333333334 325.76 274.9866666666667C314.6666666666667 259.8400000000001 300.3733333333334 249.3866666666667 282.6666666666667 243.6266666666667V242.7733333333334C309.3333333333334 238.5066666666667 330.0266666666667 228.9066666666667 344.1066666666667 213.3333333333334C358.1866666666667 198.1866666666667 365.2266666666667 178.7733333333333 365.2266666666667 154.88C365.2266666666667 126.72 355.4133333333333 103.68 336 85.9733333333334C316.3733333333334 68.2666666666668 290.7733333333333 59.5200000000001 258.7733333333333 59.5200000000001C236.16 59.5200000000001 215.4666666666667 64.0000000000001 196.9066666666667 72.7466666666668M228.6933333333333 218.6666666666668V259.6266666666667C247.2533333333333 261.9733333333334 262.4 268.8 274.56 280.32C286.5066666666667 292.0533333333334 292.48 305.0666666666667 292.48 320C292.48 349.44 277.3333333333333 364.3733333333334 247.4666666666667 364.3733333333334C231.2533333333334 364.3733333333334 218.6666666666667 359.2533333333334 209.92 348.8C201.1733333333333 338.3466666666667 196.9066666666667 323.8400000000001 196.9066666666667 304.8533333333334V117.3333333333334C216.32 106.0266666666666 235.3066666666667 100.48 253.6533333333334 100.48C271.5733333333333 100.48 285.6533333333333 105.1733333333334 295.68 114.3466666666667C305.7066666666667 123.7333333333334 310.6133333333334 136.96 310.6133333333334 153.8133333333334C310.6133333333334 192 283.3066666666667 213.3333333333334 228.6933333333334 218.6666666666667z" />
415
- <glyph glyph-name="bike"
416
- unicode="&#xF188;"
417
- horiz-adv-x="512" d=" M106.6666666666667 10.6666666666667C65.4933333333333 10.6666666666667 32 44.16 32 85.3333333333334S65.4933333333333 160 106.6666666666667 160S181.3333333333333 126.5066666666667 181.3333333333333 85.3333333333334S147.84 10.6666666666667 106.6666666666667 10.6666666666667M106.6666666666667 192C47.7866666666667 192 0 144.2133333333334 0 85.3333333333334S47.7866666666667 -21.3333333333333 106.6666666666667 -21.3333333333333S213.3333333333333 26.4533333333334 213.3333333333333 85.3333333333334S165.5466666666667 192 106.6666666666667 192M315.7333333333334 234.6666666666667H405.3333333333333V273.0666666666667H337.0666666666667L295.68 342.8266666666667C289.4933333333334 353.4933333333334 277.3333333333334 360.5333333333334 264.5333333333334 360.5333333333334C254.5066666666667 360.5333333333334 245.3333333333334 356.48 238.9333333333334 349.8666666666667L160 271.1466666666667C153.3866666666667 264.5333333333334 149.3333333333333 256 149.3333333333333 245.3333333333334C149.3333333333333 231.8933333333333 156.3733333333333 220.5866666666667 167.4666666666667 213.9733333333333L238.9333333333333 170.6666666666667V64H277.3333333333333V202.6666666666667L229.3333333333333 237.8666666666667L278.8266666666667 288M405.3333333333333 10.6666666666667C364.16 10.6666666666667 330.6666666666667 44.16 330.6666666666667 85.3333333333334S364.16 160 405.3333333333333 160S480 126.5066666666667 480 85.3333333333334S446.5066666666667 10.6666666666667 405.3333333333333 10.6666666666667M405.3333333333333 192C346.4533333333334 192 298.6666666666667 144.2133333333334 298.6666666666667 85.3333333333334S346.4533333333334 -21.3333333333333 405.3333333333333 -21.3333333333333S512 26.4533333333334 512 85.3333333333334S464.2133333333333 192 405.3333333333333 192M341.3333333333333 345.6C362.6666666666667 345.6 379.7333333333334 362.6666666666667 379.7333333333334 384S362.6666666666667 422.4 341.3333333333333 422.4S302.9333333333333 405.3333333333333 302.9333333333333 384S320 345.6 341.3333333333333 345.6z" />
418
- <glyph glyph-name="bing"
419
- unicode="&#xF189;"
420
- horiz-adv-x="512" d=" M106.6666666666667 62.5066666666667L313.1733333333333 174.5066666666667L256 202.0266666666667L221.2266666666666 281.6L405.3333333333333 221.8666666666667V132.2666666666667L191.36 2.7733333333333L106.6666666666667 62.5066666666667V381.2266666666667L192 352V138.6666666666667L106.6666666666667 62.5066666666667z" />
421
- <glyph glyph-name="binoculars"
422
- unicode="&#xF18A;"
423
- horiz-adv-x="512" d=" M234.6666666666667 320H277.3333333333333V170.6666666666667H234.6666666666667V320M192 21.3333333333334C192 9.6 182.4 0 170.6666666666667 0H106.6666666666667C94.9333333333333 0 85.3333333333333 9.6 85.3333333333333 21.3333333333334V128L128 320H213.3333333333333V170.6666666666667C213.3333333333333 158.9333333333333 203.7333333333334 149.3333333333334 192 149.3333333333334V21.3333333333334M213.3333333333333 341.3333333333334H149.3333333333333V384H213.3333333333333V341.3333333333334M320 21.3333333333334V149.3333333333334C308.2666666666667 149.3333333333334 298.6666666666667 158.9333333333333 298.6666666666667 170.6666666666667V320H384L426.6666666666667 128V21.3333333333334C426.6666666666667 9.6 417.0666666666667 0 405.3333333333333 0H341.3333333333333C329.6 0 320 9.6 320 21.3333333333334M298.6666666666667 341.3333333333334V384H362.6666666666667V341.3333333333334H298.6666666666667z" />
424
- <glyph glyph-name="bio"
425
- unicode="&#xF18B;"
426
- horiz-adv-x="512" d=" M362.6666666666667 192H426.6666666666667C450.1333333333334 192 469.3333333333333 172.8 469.3333333333333 149.3333333333334V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H362.6666666666667C339.2 42.6666666666667 320 61.8666666666667 320 85.3333333333334V149.3333333333334C320 172.8 339.2 192 362.6666666666667 192M362.6666666666667 149.3333333333334V85.3333333333334H426.6666666666667V149.3333333333334H362.6666666666667M42.6666666666667 298.6666666666667H149.3333333333333C172.8 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.8666666666667 172.8 170.6666666666667 149.3333333333333 170.6666666666667C172.8 170.6666666666667 192 151.4666666666667 192 128V85.3333333333334C192 61.8666666666667 172.8 42.6666666666667 149.3333333333333 42.6666666666667H42.6666666666667V298.6666666666667M85.3333333333333 256V192H149.3333333333333V256H85.3333333333333M85.3333333333333 85.3333333333334H149.3333333333333V149.3333333333334H85.3333333333333V85.3333333333334M234.6666666666667 170.6666666666667H277.3333333333333V42.6666666666667H234.6666666666667V170.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
427
- <glyph glyph-name="biohazard"
428
- unicode="&#xF18C;"
429
- horiz-adv-x="512" d=" M490.6666666666666 105.3866666666667C490.6666666666666 100.48 490.6666666666666 96 489.8133333333333 91.7333333333334C485.9733333333334 146.3466666666667 440.32 189.6533333333334 384 189.6533333333334C376.1066666666667 189.6533333333334 368.4266666666666 188.5866666666667 360.9600000000001 187.0933333333334C361.8133333333334 181.3333333333334 362.6666666666667 176.4266666666667 362.6666666666667 170.6666666666668C362.6666666666667 120.5333333333334 326.6133333333334 78.5066666666667 278.8266666666667 68.0533333333334C286.2933333333333 20.2666666666668 326.6133333333334 -16.8533333333333 376.5333333333333 -20.48C371.84 -21.3333333333333 367.36 -21.3333333333333 362.6666666666667 -21.3333333333333C318.2933333333333 -21.3333333333333 278.8266666666667 1.28 256 35.4133333333334C233.1733333333333 1.28 193.92 -21.3333333333333 149.3333333333333 -21.3333333333333C144.64 -21.3333333333333 140.16 -21.3333333333333 135.4666666666667 -20.48C185.3866666666667 -16.8533333333333 225.4933333333334 20.0533333333333 233.1733333333333 68.0533333333333C185.1733333333333 78.5066666666667 149.3333333333333 120.5333333333334 149.3333333333333 170.6666666666667C149.3333333333333 176.4266666666667 150.1866666666667 181.3333333333334 150.8266666666667 187.0933333333334C143.5733333333333 188.5866666666667 135.8933333333333 189.6533333333333 128 189.6533333333333C71.68 189.6533333333333 26.0266666666667 146.3466666666667 21.9733333333333 91.7333333333333C21.3333333333333 95.9999999999999 21.3333333333333 100.48 21.3333333333333 105.3866666666667C21.3333333333333 173.8666666666667 76.5866666666667 229.5466666666666 145.28 231.68C134.4 250.24 128 272 128 295.04C128 342.6133333333334 154.24 384 193.28 405.3333333333333C166.6133333333333 386.1333333333334 149.3333333333333 355.4133333333334 149.3333333333333 320C149.3333333333333 291.2000000000001 161.28 264.7466666666667 180.6933333333333 245.3333333333334C200.1066666666667 264.7466666666667 226.56 276.48 256 276.48C285.2266666666667 276.48 311.8933333333333 264.7466666666667 330.6666666666667 245.3333333333334C350.5066666666667 264.7466666666667 362.6666666666667 291.2000000000001 362.6666666666667 320C362.6666666666667 355.4133333333334 345.1733333333333 386.1333333333334 318.72 405.3333333333333C357.76 384 384 342.6133333333334 384 295.04C384 272 377.6 250.24 366.7200000000001 231.68C435.6266666666667 229.5466666666667 490.6666666666666 173.8666666666667 490.6666666666666 105.3866666666667M197.76 232.32C214.4 221.44 234.6666666666667 215.04 256 215.04S297.6 221.44 314.24 232.32C298.6666666666667 246.4000000000001 278.6133333333334 255.36 256 255.36S213.3333333333333 246.4000000000001 197.76 232.32M256 139.3066666666667C273.4933333333334 139.3066666666667 288 153.6 288 170.6666666666667C288 188.3733333333333 273.7066666666667 202.6666666666667 256 202.6666666666667S224 188.3733333333333 224 170.6666666666667C224 153.6 238.2933333333333 139.3066666666667 256 139.3066666666667M234.0266666666667 89.8133333333334C231.8933333333334 130.1333333333334 207.1466666666667 164.48 171.7333333333334 180.2666666666667C171.3066666666667 177.0666666666667 170.6666666666667 174.0800000000001 170.6666666666667 170.6666666666668C170.6666666666667 131.84 197.76 99.4133333333334 234.0266666666667 89.8133333333334M340.48 180.2666666666667C304.8533333333334 164.48 279.8933333333333 130.1333333333334 277.3333333333333 89.8133333333334C314.24 99.4133333333334 341.3333333333333 131.84 341.3333333333333 170.6666666666667C341.3333333333333 174.0800000000001 340.6933333333334 177.0666666666667 340.48 180.2666666666667z" />
430
- <glyph glyph-name="bitbucket"
431
- unicode="&#xF18D;"
432
- horiz-adv-x="512" d=" M256 325.12C321.28 324.9066666666667 374.4 336.2133333333334 374.4 350.0800000000001C374.4 363.9466666666667 321.4933333333334 375.2533333333334 256 375.4666666666667C190.72 375.4666666666667 137.6 364.3733333333334 137.6 350.5066666666667C137.6 336.4266666666667 190.5066666666667 325.12 256 325.12M256 140.8C288 140.8 314.6666666666667 167.2533333333333 314.6666666666667 199.68C314.6666666666667 232.1066666666667 288.4266666666666 258.3466666666667 256 258.3466666666667C224 258.3466666666667 197.3333333333333 232.1066666666667 197.3333333333333 199.68S224 140.8 256 140.8M256 405.3333333333333C357.76 405.3333333333333 440.7466666666667 378.0266666666667 440.7466666666667 344.1066666666667C440.7466666666667 335.1466666666667 418.56 206.72 409.8133333333334 155.9466666666667C405.9733333333334 133.12 346.88 99.6266666666667 256 99.6266666666667V100.0533333333333V99.6266666666667C165.12 99.6266666666667 106.0266666666667 133.12 102.1866666666667 155.9466666666667C93.44 206.72 71.2533333333333 335.1466666666667 71.2533333333333 344.1066666666667C71.2533333333333 378.0266666666667 154.24 405.3333333333333 256 405.3333333333333M388.9066666666667 104.96C392.1066666666667 104.96 395.3066666666667 102.6133333333334 395.3066666666667 97.7066666666667V96.0000000000001L382.08 27.5200000000001C375.8933333333333 0 321.4933333333334 -21.3333333333333 256 -21.3333333333333C190.5066666666667 -21.3333333333333 136.1066666666667 0 129.92 27.52L116.6933333333333 96V97.7066666666667C116.6933333333333 102.6133333333334 119.8933333333333 104.96 123.0933333333333 104.96C126.08 104.96 128 103.04 128 103.04S173.6533333333333 66.9866666666666 256 66.9866666666666S384 103.04 384 103.04S385.92 104.96 388.9066666666667 104.96M285.44 199.68C285.44 183.4666666666667 272.2133333333334 170.6666666666667 256 170.6666666666667C239.7866666666667 170.6666666666667 226.56 183.4666666666667 226.56 199.68C226.56 215.8933333333333 239.7866666666667 229.12 256 229.12C272.2133333333333 229.12 285.44 215.8933333333333 285.44 199.68z" />
433
- <glyph glyph-name="black-mesa"
434
- unicode="&#xF18E;"
435
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 141.0133333333333 107.7333333333333 95.36 143.1466666666667 64H192V192H362.6666666666667L408.5333333333333 115.4133333333334C420.0533333333333 138.6666666666667 426.6666666666667 164.48 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667z" />
436
- <glyph glyph-name="blackberry"
437
- unicode="&#xF18F;"
438
- horiz-adv-x="512" d=" M116.2666666666667 228.6933333333334C136.5333333333333 228.6933333333334 160 212.2666666666667 160 192S136.5333333333333 155.3066666666667 116.2666666666667 155.3066666666667H42.6666666666667L57.3866666666667 228.6933333333334H116.2666666666667M130.9866666666666 346.4533333333333C151.2533333333333 346.4533333333333 175.1466666666667 330.0266666666667 175.1466666666667 309.3333333333333C175.1466666666667 289.4933333333334 151.2533333333333 272.8533333333334 130.9866666666666 272.8533333333334H57.3866666666667L72.1066666666667 346.4533333333333H130.9866666666667M277.9733333333333 346.4533333333333C298.6666666666667 346.4533333333333 322.1333333333334 330.0266666666667 322.1333333333334 309.3333333333333C322.1333333333334 289.4933333333334 298.6666666666667 272.8533333333334 277.9733333333333 272.8533333333334H200.7466666666667L215.4666666666667 346.4533333333333H277.9733333333333M263.2533333333334 228.6933333333334C283.7333333333334 228.6933333333334 307.4133333333333 212.2666666666667 307.4133333333333 192S283.7333333333334 155.3066666666666 263.2533333333334 155.3066666666666H186.0266666666667L200.7466666666667 228.6933333333333H263.2533333333334M234.0266666666667 111.1466666666667C254.2933333333333 111.1466666666667 277.9733333333333 94.5066666666666 277.9733333333333 74.6666666666666C277.9733333333333 53.9733333333333 254.2933333333333 37.5466666666666 234.0266666666667 37.5466666666666H160L175.1466666666667 111.1466666666667H234.0266666666667M395.7333333333334 155.3066666666666C416 155.3066666666666 439.8933333333333 138.6666666666666 439.8933333333333 118.4S416 81.7066666666667 395.7333333333334 81.7066666666667H322.1333333333334L336.8533333333333 155.3066666666666H395.7333333333333M425.1733333333333 272.8533333333333C445.4399999999999 272.8533333333333 469.3333333333333 256 469.3333333333333 236.16C469.3333333333333 215.8933333333333 445.4399999999999 199.2533333333333 425.1733333333333 199.2533333333333H352L366.2933333333334 272.8533333333333H425.1733333333333z" />
439
- <glyph glyph-name="blinds"
440
- unicode="&#xF190;"
441
- horiz-adv-x="512" d=" M64 405.3333333333333H448C459.7333333333333 405.3333333333333 469.3333333333333 395.7333333333334 469.3333333333333 384V341.3333333333334C469.3333333333333 329.6 459.7333333333333 320 448 320H426.6666666666667V170.6666666666667C426.6666666666667 158.9333333333333 417.0666666666667 149.3333333333334 405.3333333333333 149.3333333333334H277.3333333333333V103.04C302.2933333333333 94.2933333333333 320 70.6133333333334 320 42.6666666666667C320 7.2533333333333 291.4133333333333 -21.3333333333333 256 -21.3333333333333S192 7.2533333333333 192 42.6666666666667C192 70.6133333333334 209.7066666666667 94.2933333333334 234.6666666666667 103.04V149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667V320H64C52.2666666666667 320 42.6666666666667 329.6 42.6666666666667 341.3333333333334V384C42.6666666666667 395.7333333333334 52.2666666666667 405.3333333333333 64 405.3333333333333M256 64C244.2666666666667 64 234.6666666666667 54.4 234.6666666666667 42.6666666666667S244.2666666666667 21.3333333333334 256 21.3333333333334S277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667S267.7333333333334 64 256 64z" />
442
- <glyph glyph-name="block-helper"
443
- unicode="&#xF191;"
444
- horiz-adv-x="512" d=" M256 448C397.44 448 512 333.44 512 192S397.44 -64 256 -64S0 50.5600000000001 0 192S114.56 448 256 448M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192C42.6666666666667 140.8 60.8 93.8666666666667 90.88 56.96L391.04 357.12C354.1333333333334 387.2 307.2 405.3333333333333 256 405.3333333333333M256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 243.2 451.1999999999999 290.1333333333334 421.12 327.04L120.96 26.8800000000001C157.8666666666667 -3.1999999999999 204.8 -21.3333333333333 256 -21.3333333333333z" />
445
- <glyph glyph-name="blogger"
446
- unicode="&#xF192;"
447
- horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667H212.2666666666667C200.5333333333333 170.6666666666667 190.9333333333333 161.0666666666667 190.9333333333333 149.3333333333334S200.5333333333333 128 212.2666666666667 128H298.6666666666667C310.4 128 320 137.6 320 149.3333333333334S310.4 170.6666666666667 298.6666666666667 170.6666666666667M212.2666666666667 234.6666666666667H267.7333333333333C279.4666666666667 234.6666666666667 289.0666666666666 244.2666666666667 289.0666666666666 256S279.4666666666667 277.3333333333334 267.7333333333333 277.3333333333334H212.2666666666667C200.5333333333333 277.3333333333334 190.9333333333333 267.7333333333334 190.9333333333333 256S200.5333333333333 234.6666666666667 212.2666666666667 234.6666666666667M341.3333333333333 256V234.6666666666667C341.3333333333333 222.9333333333333 350.9333333333333 213.3333333333334 362.6666666666667 213.3333333333334S384 203.7333333333334 384 192V128C384 92.5866666666667 355.4133333333333 64 320 64H192C156.5866666666667 64 128 92.5866666666667 128 128V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334H277.3333333333333C312.7466666666667 341.3333333333334 341.3333333333333 312.7466666666667 341.3333333333333 277.3333333333334M426.6666666666667 405.3333333333333H85.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
448
- <glyph glyph-name="bluetooth"
449
- unicode="&#xF193;"
450
- horiz-adv-x="512" d=" M317.44 100.48L277.3333333333333 60.3733333333333V140.5866666666667M277.3333333333333 323.6266666666667L317.44 283.52L277.3333333333333 243.6266666666667M377.8133333333334 283.52L256 405.3333333333333H234.6666666666667V243.6266666666667L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.96L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L377.8133333333334 100.48L286.08 192L377.8133333333334 283.52z" />
451
- <glyph glyph-name="bluetooth-audio"
452
- unicode="&#xF194;"
453
- horiz-adv-x="512" d=" M274.7733333333333 100.48L234.6666666666667 60.3733333333333V140.5866666666667M234.6666666666667 323.6266666666667L274.7733333333333 283.52L234.6666666666667 243.6266666666667M335.1466666666667 283.52L213.3333333333333 405.3333333333333H192V243.6266666666667L94.08 341.3333333333334L64 311.2533333333334L183.2533333333333 192L64 72.96L94.08 42.6666666666667L192 140.5866666666667V-21.3333333333333H213.3333333333333L335.1466666666667 100.48L243.4133333333334 192M416.64 304.8533333333334L389.5466666666667 277.3333333333334C402.9866666666667 252.1600000000001 410.6666666666667 222.9333333333333 410.6666666666667 192C410.6666666666667 161.0666666666667 402.9866666666667 131.84 389.5466666666667 106.6666666666667L415.1466666666667 80.64C435.84 113.4933333333334 448 152.1066666666667 448 193.92C448 234.6666666666667 436.48 272.4266666666667 416.64 304.8533333333334M303.7866666666667 192L353.28 142.2933333333334C359.2533333333334 157.8666666666667 362.6666666666667 174.5066666666667 362.6666666666667 192C362.6666666666667 209.4933333333334 359.2533333333334 226.1333333333334 353.4933333333334 241.4933333333334L303.7866666666667 192z" />
454
- <glyph glyph-name="bluetooth-connect"
455
- unicode="&#xF195;"
456
- horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667L362.6666666666667 192L405.3333333333333 149.3333333333334L448 192M317.44 100.48L277.3333333333333 60.3733333333333V140.5866666666667M277.3333333333333 323.6266666666667L317.44 283.52L277.3333333333333 243.6266666666667M377.8133333333334 283.52L256 405.3333333333333H234.6666666666667V243.6266666666667L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.96L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L377.8133333333334 100.48L286.08 192M149.3333333333333 192L106.6666666666667 234.6666666666667L64 192L106.6666666666667 149.3333333333334L149.3333333333333 192z" />
457
- <glyph glyph-name="bluetooth-settings"
458
- unicode="&#xF196;"
459
- horiz-adv-x="512" d=" M317.44 143.1466666666667L277.3333333333333 103.04V183.2533333333333L317.44 143.1466666666667M277.3333333333333 366.2933333333334L317.44 326.1866666666667L277.3333333333333 286.0800000000001M377.8133333333334 326.1866666666667L256 448H234.6666666666667V286.0800000000001L136.7466666666667 384L106.6666666666667 353.92L225.92 234.6666666666667L106.6666666666667 115.4133333333334L136.7466666666667 85.3333333333334L234.6666666666667 183.2533333333333V21.3333333333334H256L377.8133333333334 143.1466666666667L286.08 234.6666666666667L377.8133333333334 326.1866666666667M320 -64H362.6666666666667V-21.3333333333333H320M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667V-64z" />
460
- <glyph glyph-name="bluetooth-transfer"
461
- unicode="&#xF197;"
462
- horiz-adv-x="512" d=" M313.8133333333334 283.52L222.08 192L313.8133333333334 100.48L192 -21.3333333333333H170.6666666666667V140.5866666666667L72.7466666666667 42.6666666666667L42.6666666666667 72.7466666666667L161.92 192L42.6666666666667 311.2533333333334L72.7466666666667 341.3333333333334L170.6666666666667 243.4133333333334V405.3333333333333H192L313.8133333333334 283.52M213.3333333333333 323.6266666666667V243.4133333333334L253.44 283.52L213.3333333333333 323.6266666666667M253.44 100.48L213.3333333333333 140.5866666666667V60.3733333333333L253.44 100.48M469.3333333333333 277.3333333333334H426.6666666666667V213.3333333333334H384V277.3333333333334H341.3333333333333L405.3333333333333 362.6666666666667L469.3333333333333 277.3333333333334M469.3333333333333 106.6666666666667L405.3333333333333 21.3333333333334L341.3333333333333 106.6666666666667H384V170.6666666666667H426.6666666666667V106.6666666666667H469.3333333333333z" />
463
- <glyph glyph-name="blur"
464
- unicode="&#xF198;"
465
- horiz-adv-x="512" d=" M298.6666666666667 266.6666666666667C280.96 266.6666666666667 266.6666666666667 252.3733333333334 266.6666666666667 234.6666666666667S280.96 202.6666666666667 298.6666666666667 202.6666666666667S330.6666666666667 216.96 330.6666666666667 234.6666666666667S316.3733333333334 266.6666666666667 298.6666666666667 266.6666666666667M298.6666666666667 181.3333333333334C280.96 181.3333333333334 266.6666666666667 167.04 266.6666666666667 149.3333333333334S280.96 117.3333333333334 298.6666666666667 117.3333333333334S330.6666666666667 131.6266666666667 330.6666666666667 149.3333333333334S316.3733333333334 181.3333333333334 298.6666666666667 181.3333333333334M213.3333333333333 85.3333333333334C201.6 85.3333333333334 192 75.7333333333334 192 64S201.6 42.6666666666667 213.3333333333333 42.6666666666667S234.6666666666667 52.2666666666667 234.6666666666667 64S225.0666666666667 85.3333333333334 213.3333333333333 85.3333333333334M213.3333333333333 266.6666666666667C195.6266666666667 266.6666666666667 181.3333333333333 252.3733333333334 181.3333333333333 234.6666666666667S195.6266666666667 202.6666666666667 213.3333333333333 202.6666666666667S245.3333333333333 216.96 245.3333333333333 234.6666666666667S231.04 266.6666666666667 213.3333333333333 266.6666666666667M298.6666666666667 10.6666666666667C292.6933333333334 10.6666666666667 288 5.9733333333334 288 0S292.6933333333334 -10.6666666666666 298.6666666666667 -10.6666666666666S309.3333333333333 -5.9733333333334 309.3333333333333 0S304.64 10.6666666666667 298.6666666666667 10.6666666666667M298.6666666666667 85.3333333333334C286.9333333333333 85.3333333333334 277.3333333333333 75.7333333333334 277.3333333333333 64S286.9333333333333 42.6666666666667 298.6666666666667 42.6666666666667S320 52.2666666666667 320 64S310.4 85.3333333333334 298.6666666666667 85.3333333333334M448 160C442.0266666666667 160 437.3333333333333 155.3066666666667 437.3333333333333 149.3333333333334S442.0266666666667 138.6666666666667 448 138.6666666666667S458.6666666666666 143.36 458.6666666666666 149.3333333333334S453.9733333333334 160 448 160M384 341.3333333333334C372.2666666666667 341.3333333333334 362.6666666666667 331.7333333333334 362.6666666666667 320S372.2666666666667 298.6666666666667 384 298.6666666666667S405.3333333333333 308.2666666666667 405.3333333333333 320S395.7333333333334 341.3333333333334 384 341.3333333333334M384 256C372.2666666666667 256 362.6666666666667 246.4000000000001 362.6666666666667 234.6666666666667S372.2666666666667 213.3333333333334 384 213.3333333333334S405.3333333333333 222.9333333333333 405.3333333333333 234.6666666666667S395.7333333333334 256 384 256M384 85.3333333333334C372.2666666666667 85.3333333333334 362.6666666666667 75.7333333333334 362.6666666666667 64S372.2666666666667 42.6666666666667 384 42.6666666666667S405.3333333333333 52.2666666666667 405.3333333333333 64S395.7333333333334 85.3333333333334 384 85.3333333333334M384 170.6666666666667C372.2666666666667 170.6666666666667 362.6666666666667 161.0666666666667 362.6666666666667 149.3333333333334S372.2666666666667 128 384 128S405.3333333333333 137.6 405.3333333333333 149.3333333333334S395.7333333333334 170.6666666666667 384 170.6666666666667M213.3333333333333 181.3333333333334C195.6266666666667 181.3333333333334 181.3333333333333 167.04 181.3333333333333 149.3333333333334S195.6266666666667 117.3333333333334 213.3333333333333 117.3333333333334S245.3333333333333 131.6266666666667 245.3333333333333 149.3333333333334S231.04 181.3333333333334 213.3333333333333 181.3333333333334M213.3333333333333 298.6666666666667C225.0666666666667 298.6666666666667 234.6666666666667 308.2666666666667 234.6666666666667 320S225.0666666666667 341.3333333333334 213.3333333333333 341.3333333333334S192 331.7333333333334 192 320S201.6 298.6666666666667 213.3333333333333 298.6666666666667M213.3333333333333 373.3333333333334C219.3066666666667 373.3333333333334 224 378.0266666666667 224 384S219.3066666666667 394.6666666666667 213.3333333333333 394.6666666666667S202.6666666666667 389.9733333333334 202.6666666666667 384S207.36 373.3333333333334 213.3333333333333 373.3333333333334M213.3333333333333 10.6666666666667C207.36 10.6666666666667 202.6666666666667 5.9733333333334 202.6666666666667 0S207.36 -10.6666666666666 213.3333333333333 -10.6666666666666S224 -5.9733333333334 224 0S219.3066666666667 10.6666666666667 213.3333333333333 10.6666666666667M64 160C58.0266666666667 160 53.3333333333333 155.3066666666667 53.3333333333333 149.3333333333334S58.0266666666667 138.6666666666667 64 138.6666666666667S74.6666666666667 143.36 74.6666666666667 149.3333333333334S69.9733333333333 160 64 160M298.6666666666667 373.3333333333334C304.64 373.3333333333334 309.3333333333333 378.0266666666667 309.3333333333333 384S304.64 394.6666666666667 298.6666666666667 394.6666666666667S288 389.9733333333334 288 384S292.6933333333334 373.3333333333334 298.6666666666667 373.3333333333334M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 308.2666666666667 320 320S310.4 341.3333333333334 298.6666666666667 341.3333333333334S277.3333333333333 331.7333333333334 277.3333333333333 320S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667M448 224C453.9733333333334 224 458.6666666666666 228.6933333333334 458.6666666666666 234.6666666666667S453.9733333333334 245.3333333333334 448 245.3333333333334S437.3333333333333 240.64 437.3333333333333 234.6666666666667S442.0266666666667 224 448 224M128 341.3333333333334C116.2666666666667 341.3333333333334 106.6666666666667 331.7333333333334 106.6666666666667 320S116.2666666666667 298.6666666666667 128 298.6666666666667S149.3333333333333 308.2666666666667 149.3333333333333 320S139.7333333333333 341.3333333333334 128 341.3333333333334M64 245.3333333333334C58.0266666666667 245.3333333333334 53.3333333333333 240.64 53.3333333333333 234.6666666666667S58.0266666666667 224 64 224S74.6666666666667 228.6933333333334 74.6666666666667 234.6666666666667S69.9733333333333 245.3333333333334 64 245.3333333333334M128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667S139.7333333333333 256 128 256M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M128 170.6666666666667C116.2666666666667 170.6666666666667 106.6666666666667 161.0666666666667 106.6666666666667 149.3333333333334S116.2666666666667 128 128 128S149.3333333333333 137.6 149.3333333333333 149.3333333333334S139.7333333333333 170.6666666666667 128 170.6666666666667z" />
466
- <glyph glyph-name="blur-linear"
467
- unicode="&#xF199;"
468
- horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334C289.0666666666667 85.3333333333334 298.6666666666667 94.9333333333333 298.6666666666667 106.6666666666667S289.0666666666667 128 277.3333333333333 128S256 118.4 256 106.6666666666667S265.6 85.3333333333334 277.3333333333333 85.3333333333334M277.3333333333333 170.6666666666667C289.0666666666667 170.6666666666667 298.6666666666667 180.2666666666667 298.6666666666667 192S289.0666666666667 213.3333333333334 277.3333333333333 213.3333333333334S256 203.7333333333334 256 192S265.6 170.6666666666667 277.3333333333333 170.6666666666667M277.3333333333333 256C289.0666666666667 256 298.6666666666667 265.6 298.6666666666667 277.3333333333334S289.0666666666667 298.6666666666667 277.3333333333333 298.6666666666667S256 289.0666666666667 256 277.3333333333334S265.6 256 277.3333333333333 256M362.6666666666667 181.3333333333334C368.64 181.3333333333334 373.3333333333333 186.0266666666667 373.3333333333333 192S368.64 202.6666666666667 362.6666666666667 202.6666666666667S352 197.9733333333333 352 192S356.6933333333333 181.3333333333334 362.6666666666667 181.3333333333334M362.6666666666667 266.6666666666667C368.64 266.6666666666667 373.3333333333333 271.36 373.3333333333333 277.3333333333334S368.64 288 362.6666666666667 288S352 283.3066666666667 352 277.3333333333334S356.6933333333333 266.6666666666667 362.6666666666667 266.6666666666667M64 384V341.3333333333334H448V384M362.6666666666667 96C368.64 96 373.3333333333333 100.6933333333333 373.3333333333333 106.6666666666667S368.64 117.3333333333334 362.6666666666667 117.3333333333334S352 112.64 352 106.6666666666667S356.6933333333333 96 362.6666666666667 96M192 85.3333333333334C203.7333333333334 85.3333333333334 213.3333333333333 94.9333333333333 213.3333333333333 106.6666666666667S203.7333333333334 128 192 128S170.6666666666667 118.4 170.6666666666667 106.6666666666667S180.2666666666667 85.3333333333334 192 85.3333333333334M106.6666666666667 160C124.3733333333333 160 138.6666666666667 174.2933333333334 138.6666666666667 192S124.3733333333333 224 106.6666666666667 224S74.6666666666667 209.7066666666667 74.6666666666667 192S88.96 160 106.6666666666667 160M106.6666666666667 245.3333333333334C124.3733333333333 245.3333333333334 138.6666666666667 259.6266666666667 138.6666666666667 277.3333333333334S124.3733333333333 309.3333333333334 106.6666666666667 309.3333333333334S74.6666666666667 295.04 74.6666666666667 277.3333333333334S88.96 245.3333333333334 106.6666666666667 245.3333333333334M64 0H448V42.6666666666667H64M192 256C203.7333333333334 256 213.3333333333333 265.6 213.3333333333333 277.3333333333334S203.7333333333334 298.6666666666667 192 298.6666666666667S170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334S180.2666666666667 256 192 256M192 170.6666666666667C203.7333333333334 170.6666666666667 213.3333333333333 180.2666666666667 213.3333333333333 192S203.7333333333334 213.3333333333334 192 213.3333333333334S170.6666666666667 203.7333333333334 170.6666666666667 192S180.2666666666667 170.6666666666667 192 170.6666666666667M106.6666666666667 74.6666666666667C124.3733333333333 74.6666666666667 138.6666666666667 88.96 138.6666666666667 106.6666666666667S124.3733333333333 138.6666666666667 106.6666666666667 138.6666666666667S74.6666666666667 124.3733333333333 74.6666666666667 106.6666666666667S88.96 74.6666666666667 106.6666666666667 74.6666666666667z" />
469
- <glyph glyph-name="blur-off"
470
- unicode="&#xF19A;"
471
- horiz-adv-x="512" d=" M64 160C58.0266666666667 160 53.3333333333333 155.3066666666667 53.3333333333333 149.3333333333334S58.0266666666667 138.6666666666667 64 138.6666666666667S74.6666666666667 143.36 74.6666666666667 149.3333333333334S69.9733333333333 160 64 160M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M213.3333333333333 10.6666666666667C207.36 10.6666666666667 202.6666666666667 5.9733333333334 202.6666666666667 0S207.36 -10.6666666666666 213.3333333333333 -10.6666666666666S224 -5.9733333333334 224 0S219.3066666666667 10.6666666666667 213.3333333333333 10.6666666666667M64 245.3333333333334C58.0266666666667 245.3333333333334 53.3333333333333 240.64 53.3333333333333 234.6666666666667S58.0266666666667 224 64 224S74.6666666666667 228.6933333333334 74.6666666666667 234.6666666666667S69.9733333333333 245.3333333333334 64 245.3333333333334M128 170.6666666666667C116.2666666666667 170.6666666666667 106.6666666666667 161.0666666666667 106.6666666666667 149.3333333333334S116.2666666666667 128 128 128S149.3333333333333 137.6 149.3333333333333 149.3333333333334S139.7333333333333 170.6666666666667 128 170.6666666666667M448 160C442.0266666666667 160 437.3333333333333 155.3066666666667 437.3333333333333 149.3333333333334S442.0266666666667 138.6666666666667 448 138.6666666666667S458.6666666666666 143.36 458.6666666666666 149.3333333333334S453.9733333333334 160 448 160M213.3333333333333 85.3333333333334C201.6 85.3333333333334 192 75.7333333333334 192 64S201.6 42.6666666666667 213.3333333333333 42.6666666666667S234.6666666666667 52.2666666666667 234.6666666666667 64S225.0666666666667 85.3333333333334 213.3333333333333 85.3333333333334M53.3333333333333 335.5733333333334L133.9733333333333 254.9333333333334L128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667C149.3333333333333 236.8 148.6933333333333 238.72 148.0533333333334 240.64L208 180.6933333333333C192.8533333333333 178.3466666666667 181.3333333333333 165.12 181.3333333333333 149.3333333333333C181.3333333333333 131.6266666666667 195.6266666666667 117.3333333333333 213.3333333333333 117.3333333333333C229.12 117.3333333333333 242.3466666666667 128.8533333333334 244.6933333333334 144L304.64 84.0533333333333C302.7200000000001 84.6933333333333 300.8 85.3333333333333 298.6666666666667 85.3333333333333C286.9333333333334 85.3333333333333 277.3333333333334 75.7333333333333 277.3333333333334 63.9999999999999S286.9333333333334 42.6666666666666 298.6666666666667 42.6666666666666S320 52.2666666666666 320 63.9999999999999C320 66.1333333333333 319.36 68.0533333333333 318.7200000000001 69.9733333333333L399.36 -10.6666666666667L426.6666666666667 16.4266666666667L80.4266666666667 362.6666666666667L53.3333333333333 335.5733333333334M298.6666666666667 10.6666666666667C292.6933333333334 10.6666666666667 288 5.9733333333334 288 0S292.6933333333334 -10.6666666666666 298.6666666666667 -10.6666666666666S309.3333333333333 -5.9733333333334 309.3333333333333 0S304.64 10.6666666666667 298.6666666666667 10.6666666666667M384 298.6666666666667C395.7333333333334 298.6666666666667 405.3333333333333 308.2666666666667 405.3333333333333 320S395.7333333333334 341.3333333333334 384 341.3333333333334S362.6666666666667 331.7333333333334 362.6666666666667 320S372.2666666666667 298.6666666666667 384 298.6666666666667M384 213.3333333333334C395.7333333333334 213.3333333333334 405.3333333333333 222.9333333333333 405.3333333333333 234.6666666666667S395.7333333333334 256 384 256S362.6666666666667 246.4000000000001 362.6666666666667 234.6666666666667S372.2666666666667 213.3333333333334 384 213.3333333333334M384 128C395.7333333333334 128 405.3333333333333 137.6 405.3333333333333 149.3333333333334S395.7333333333334 170.6666666666667 384 170.6666666666667S362.6666666666667 161.0666666666667 362.6666666666667 149.3333333333334S372.2666666666667 128 384 128M213.3333333333333 298.6666666666667C225.0666666666667 298.6666666666667 234.6666666666667 308.2666666666667 234.6666666666667 320S225.0666666666667 341.3333333333334 213.3333333333333 341.3333333333334S192 331.7333333333334 192 320S201.6 298.6666666666667 213.3333333333333 298.6666666666667M448 224C453.9733333333334 224 458.6666666666666 228.6933333333334 458.6666666666666 234.6666666666667S453.9733333333334 245.3333333333334 448 245.3333333333334S437.3333333333333 240.64 437.3333333333333 234.6666666666667S442.0266666666667 224 448 224M213.3333333333333 373.3333333333334C219.3066666666667 373.3333333333334 224 378.0266666666667 224 384S219.3066666666667 394.6666666666667 213.3333333333333 394.6666666666667S202.6666666666667 389.9733333333334 202.6666666666667 384S207.36 373.3333333333334 213.3333333333333 373.3333333333334M298.6666666666667 373.3333333333334C304.64 373.3333333333334 309.3333333333333 378.0266666666667 309.3333333333333 384S304.64 394.6666666666667 298.6666666666667 394.6666666666667S288 389.9733333333334 288 384S292.6933333333334 373.3333333333334 298.6666666666667 373.3333333333334M294.4 202.6666666666667H298.6666666666667C316.3733333333334 202.6666666666667 330.6666666666667 216.96 330.6666666666667 234.6666666666667S316.3733333333334 266.6666666666667 298.6666666666667 266.6666666666667S266.6666666666667 252.3733333333334 266.6666666666667 234.6666666666667V230.4000000000001C269.0133333333333 216.1066666666667 280.1066666666667 205.0133333333334 294.4 202.6666666666667M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 308.2666666666667 320 320S310.4 341.3333333333334 298.6666666666667 341.3333333333334S277.3333333333333 331.7333333333334 277.3333333333333 320S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667z" />
472
- <glyph glyph-name="blur-radial"
473
- unicode="&#xF19B;"
474
- horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667C286.9333333333333 170.6666666666667 277.3333333333333 161.0666666666667 277.3333333333333 149.3333333333334S286.9333333333333 128 298.6666666666667 128S320 137.6 320 149.3333333333334S310.4 170.6666666666667 298.6666666666667 170.6666666666667M298.6666666666667 96C292.6933333333334 96 288 91.3066666666667 288 85.3333333333334S292.6933333333334 74.6666666666667 298.6666666666667 74.6666666666667S309.3333333333333 79.36 309.3333333333333 85.3333333333334S304.64 96 298.6666666666667 96M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M362.6666666666667 245.3333333333334C356.6933333333333 245.3333333333334 352 240.64 352 234.6666666666667S356.6933333333333 224 362.6666666666667 224S373.3333333333333 228.6933333333334 373.3333333333333 234.6666666666667S368.64 245.3333333333334 362.6666666666667 245.3333333333334M362.6666666666667 160C356.6933333333333 160 352 155.3066666666667 352 149.3333333333334S356.6933333333333 138.6666666666667 362.6666666666667 138.6666666666667S373.3333333333333 143.36 373.3333333333333 149.3333333333334S368.64 160 362.6666666666667 160M298.6666666666667 288C304.64 288 309.3333333333333 292.6933333333334 309.3333333333333 298.6666666666667S304.64 309.3333333333334 298.6666666666667 309.3333333333334S288 304.64 288 298.6666666666667S292.6933333333334 288 298.6666666666667 288M298.6666666666667 256C286.9333333333333 256 277.3333333333333 246.4000000000001 277.3333333333333 234.6666666666667S286.9333333333333 213.3333333333334 298.6666666666667 213.3333333333334S320 222.9333333333333 320 234.6666666666667S310.4 256 298.6666666666667 256M213.3333333333333 288C219.3066666666667 288 224 292.6933333333334 224 298.6666666666667S219.3066666666667 309.3333333333334 213.3333333333333 309.3333333333334S202.6666666666667 304.64 202.6666666666667 298.6666666666667S207.36 288 213.3333333333333 288M149.3333333333333 160C143.36 160 138.6666666666667 155.3066666666667 138.6666666666667 149.3333333333334S143.36 138.6666666666667 149.3333333333333 138.6666666666667S160 143.36 160 149.3333333333334S155.3066666666667 160 149.3333333333333 160M213.3333333333333 96C207.36 96 202.6666666666667 91.3066666666667 202.6666666666667 85.3333333333334S207.36 74.6666666666667 213.3333333333333 74.6666666666667S224 79.36 224 85.3333333333334S219.3066666666667 96 213.3333333333333 96M149.3333333333333 245.3333333333334C143.36 245.3333333333334 138.6666666666667 240.64 138.6666666666667 234.6666666666667S143.36 224 149.3333333333333 224S160 228.6933333333334 160 234.6666666666667S155.3066666666667 245.3333333333334 149.3333333333333 245.3333333333334M213.3333333333333 170.6666666666667C201.6 170.6666666666667 192 161.0666666666667 192 149.3333333333334S201.6 128 213.3333333333333 128S234.6666666666667 137.6 234.6666666666667 149.3333333333334S225.0666666666667 170.6666666666667 213.3333333333333 170.6666666666667M213.3333333333333 256C201.6 256 192 246.4000000000001 192 234.6666666666667S201.6 213.3333333333334 213.3333333333333 213.3333333333334S234.6666666666667 222.9333333333333 234.6666666666667 234.6666666666667S225.0666666666667 256 213.3333333333333 256z" />
475
- <glyph glyph-name="bone"
476
- unicode="&#xF19C;"
477
- horiz-adv-x="512" d=" M170.6666666666667 149.3333333333334C170.6666666666667 113.92 142.08 85.3333333333334 106.6666666666667 85.3333333333334S42.6666666666667 113.92 42.6666666666667 149.3333333333334C42.6666666666667 165.76 48.8533333333333 180.6933333333334 58.88 192C48.8533333333333 203.3066666666667 42.6666666666667 218.24 42.6666666666667 234.6666666666667C42.6666666666667 270.0800000000001 71.2533333333333 298.6666666666667 106.6666666666667 298.6666666666667S170.6666666666667 270.0800000000001 170.6666666666667 234.6666666666667C199.04 232.96 227.6266666666667 231.04 256 231.04S312.96 232.96 341.3333333333333 234.6666666666667C341.3333333333333 270.0800000000001 369.92 298.6666666666667 405.3333333333333 298.6666666666667S469.3333333333333 270.0800000000001 469.3333333333333 234.6666666666667C469.3333333333333 218.24 463.1466666666666 203.3066666666667 453.1199999999999 192C463.1466666666666 180.6933333333334 469.3333333333333 165.76 469.3333333333333 149.3333333333334C469.3333333333333 113.92 440.7466666666667 85.3333333333334 405.3333333333333 85.3333333333334S341.3333333333333 113.92 341.3333333333333 149.3333333333334C312.96 151.04 284.3733333333334 152.96 256 152.96S199.04 151.04 170.6666666666667 149.3333333333334z" />
478
- <glyph glyph-name="book"
479
- unicode="&#xF19D;"
480
- horiz-adv-x="512" d=" M384 -21.3333333333333C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.3466666666667 407.4666666666667 405.3333333333333 384 405.3333333333333H256V256L202.6666666666667 288L149.3333333333333 256V405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384z" />
481
- <glyph glyph-name="book-multiple"
482
- unicode="&#xF19E;"
483
- horiz-adv-x="512" d=" M405.3333333333333 64H192C168.5333333333333 64 149.3333333333333 83.2 149.3333333333333 106.6666666666667V362.6666666666667C149.3333333333333 386.1333333333334 168.5333333333333 405.3333333333333 192 405.3333333333333H213.3333333333333V298.6666666666667L256 330.6666666666667L298.6666666666667 298.6666666666667V405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64M362.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320H106.6666666666667V21.3333333333334H362.6666666666667z" />
484
- <glyph glyph-name="book-multiple-variant"
485
- unicode="&#xF19F;"
486
- horiz-adv-x="512" d=" M405.3333333333333 64H192C168.5333333333333 64 149.3333333333333 83.2 149.3333333333333 106.6666666666667V362.6666666666667C149.3333333333333 386.1333333333334 168.5333333333333 405.3333333333333 192 405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64M213.3333333333333 256L256 288L298.6666666666667 256V362.6666666666667H213.3333333333333V256M362.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320H106.6666666666667V21.3333333333334H362.6666666666667z" />
487
- <glyph glyph-name="book-open"
488
- unicode="&#xF1A0;"
489
- horiz-adv-x="512" d=" M234.6666666666667 42.6666666666667V256C234.6666666666667 279.4666666666667 215.4666666666667 298.6666666666667 192 298.6666666666667H106.6666666666667V85.3333333333334H192C215.4666666666667 85.3333333333334 234.6666666666667 66.1333333333334 234.6666666666667 42.6666666666667M277.3333333333333 256V42.6666666666667C277.3333333333333 66.1333333333334 296.5333333333333 85.3333333333334 320 85.3333333333334H405.3333333333333V298.6666666666667H320C296.5333333333333 298.6666666666667 277.3333333333333 279.4666666666667 277.3333333333333 256M448 42.6666666666667H320C296.5333333333333 42.6666666666667 277.3333333333333 23.4666666666667 277.3333333333333 0H234.6666666666667C234.6666666666667 23.4666666666667 215.4666666666667 42.6666666666667 192 42.6666666666667H64V341.3333333333334H192C215.4666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667H277.3333333333333C277.3333333333333 322.1333333333334 296.5333333333333 341.3333333333334 320 341.3333333333334H448V42.6666666666667z" />
490
- <glyph glyph-name="book-variant"
491
- unicode="&#xF1A1;"
492
- horiz-adv-x="512" d=" M128 362.6666666666667H234.6666666666667V192L181.3333333333333 224L128 192M384 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333z" />
493
- <glyph glyph-name="bookmark"
494
- unicode="&#xF1A2;"
495
- horiz-adv-x="512" d=" M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
496
- <glyph glyph-name="bookmark-check"
497
- unicode="&#xF1A3;"
498
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 149.3333333333334L368 282.4533333333334L337.92 312.7466666666667L234.6666666666667 209.4933333333334L179.4133333333333 264.7466666666667L149.3333333333333 234.6666666666667L234.6666666666667 149.3333333333334z" />
499
- <glyph glyph-name="bookmark-music"
500
- unicode="&#xF1A4;"
501
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 213.3333333333334C211.2 213.3333333333334 192 194.1333333333333 192 170.6666666666667S211.2 128 234.6666666666667 128S277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667V277.3333333333334H341.3333333333333V320H256V207.5733333333334C249.8133333333334 211.2 242.3466666666667 213.3333333333334 234.6666666666667 213.3333333333334z" />
502
- <glyph glyph-name="bookmark-outline"
503
- unicode="&#xF1A5;"
504
- horiz-adv-x="512" d=" M362.6666666666667 64L256 110.5066666666667L149.3333333333333 64V341.3333333333334H362.6666666666667M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
505
- <glyph glyph-name="bookmark-outline-plus"
506
- unicode="&#xF1A6;"
507
- horiz-adv-x="512" d=" M362.6666666666667 64V341.3333333333334H149.3333333333333V64L256 110.5066666666667L362.6666666666667 64M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 298.6666666666667H277.3333333333333V256H320V213.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667V213.3333333333334H192V256H234.6666666666667V298.6666666666667z" />
508
- <glyph glyph-name="bookmark-plus"
509
- unicode="&#xF1A7;"
510
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 298.6666666666667V256H192V213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V213.3333333333334H320V256H277.3333333333333V298.6666666666667H234.6666666666667z" />
511
- <glyph glyph-name="bookmark-remove"
512
- unicode="&#xF1A8;"
513
- horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M174.2933333333333 264.9600000000001L225.92 213.3333333333334L174.2933333333333 161.92L204.5866666666667 131.6266666666667L256 183.2533333333333L307.4133333333333 131.6266666666667L337.7066666666667 161.92L286.08 213.3333333333334L337.7066666666667 264.9600000000001L307.4133333333333 295.04L256 243.6266666666667L204.5866666666667 295.04L174.2933333333333 264.9600000000001z" />
514
- <glyph glyph-name="border-all"
515
- unicode="&#xF1A9;"
516
- horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334H277.3333333333333V341.3333333333334H405.3333333333333M405.3333333333333 42.6666666666667H277.3333333333333V170.6666666666667H405.3333333333333M234.6666666666667 213.3333333333334H106.6666666666667V341.3333333333334H234.6666666666667M234.6666666666667 42.6666666666667H106.6666666666667V170.6666666666667H234.6666666666667M64 0H448V384H64V0z" />
517
- <glyph glyph-name="border-bottom"
518
- unicode="&#xF1AA;"
519
- horiz-adv-x="512" d=" M106.6666666666667 128H64V85.3333333333334H106.6666666666667M64 0H448V42.6666666666667H64M106.6666666666667 213.3333333333334H64V170.6666666666667H106.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M106.6666666666667 298.6666666666667H64V256H106.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M362.6666666666667 213.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333M106.6666666666667 384H64V341.3333333333334H106.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333M192 384H149.3333333333333V341.3333333333334H192M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M192 213.3333333333334H149.3333333333333V170.6666666666667H192V213.3333333333334z" />
520
- <glyph glyph-name="border-color"
521
- unicode="&#xF1AB;"
522
- horiz-adv-x="512" d=" M441.8133333333334 361.8133333333334C450.1333333333334 370.1333333333334 450.1333333333334 384 441.8133333333334 391.8933333333333L391.8933333333333 441.8133333333334C384 450.1333333333334 370.1333333333334 450.1333333333334 361.8133333333334 441.8133333333334L320 400L400 320M378.6666666666667 298.6666666666667L298.6666666666667 378.6666666666667L85.3333333333333 165.3333333333334V85.3333333333334H165.3333333333333L378.6666666666667 298.6666666666667z" />
523
- <glyph glyph-name="border-horizontal"
524
- unicode="&#xF1AC;"
525
- horiz-adv-x="512" d=" M405.3333333333333 0H448V42.6666666666667H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M64 170.6666666666667H448V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M192 384H149.3333333333333V341.3333333333334H192M106.6666666666667 384H64V341.3333333333334H106.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 298.6666666666667H64V256H106.6666666666667M64 0H106.6666666666667V42.6666666666667H64V0z" />
526
- <glyph glyph-name="border-inside"
527
- unicode="&#xF1AD;"
528
- horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M277.3333333333333 384H234.6666666666667V213.3333333333334H64V170.6666666666667H234.6666666666667V0H277.3333333333333V170.6666666666667H448V213.3333333333334H277.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M106.6666666666667 384H64V341.3333333333334H106.6666666666667M192 384H149.3333333333333V341.3333333333334H192M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 298.6666666666667H64V256H106.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 0H106.6666666666667V42.6666666666667H64V0z" />
529
- <glyph glyph-name="border-left"
530
- unicode="&#xF1AE;"
531
- horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 170.6666666666667H362.6666666666667V213.3333333333334H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M64 0H106.6666666666667V384H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667V0z" />
532
- <glyph glyph-name="border-none"
533
- unicode="&#xF1AF;"
534
- horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 170.6666666666667H362.6666666666667V213.3333333333334H320M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M405.3333333333333 341.3333333333334H448V384H405.3333333333333M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333V341.3333333333334z" />
535
- <glyph glyph-name="border-outside"
536
- unicode="&#xF1B0;"
537
- horiz-adv-x="512" d=" M192 213.3333333333334H149.3333333333333V170.6666666666667H192M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M64 0H448V384H64M362.6666666666667 213.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333V298.6666666666667z" />
538
- <glyph glyph-name="border-right"
539
- unicode="&#xF1B1;"
540
- horiz-adv-x="512" d=" M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M320 341.3333333333334H362.6666666666667V384H320M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 0H448V384H405.3333333333333M320 170.6666666666667H362.6666666666667V213.3333333333334H320M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 256H106.6666666666667V298.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M64 0H106.6666666666667V42.6666666666667H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
541
- <glyph glyph-name="border-top"
542
- unicode="&#xF1B2;"
543
- horiz-adv-x="512" d=" M320 170.6666666666667H362.6666666666667V213.3333333333334H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 85.3333333333334H448V128H405.3333333333333M64 341.3333333333334H448V384H64M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 0H106.6666666666667V42.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
544
- <glyph glyph-name="border-vertical"
545
- unicode="&#xF1B3;"
546
- horiz-adv-x="512" d=" M320 170.6666666666667H362.6666666666667V213.3333333333334H320M320 0H362.6666666666667V42.6666666666667H320M320 341.3333333333334H362.6666666666667V384H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M234.6666666666667 0H277.3333333333333V384H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64V256z" />
547
- <glyph glyph-name="bowling"
548
- unicode="&#xF1B4;"
549
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M266.6666666666667 213.3333333333334C248.96 213.3333333333334 234.6666666666667 199.04 234.6666666666667 181.3333333333334S248.96 149.3333333333334 266.6666666666667 149.3333333333334S298.6666666666667 163.6266666666667 298.6666666666667 181.3333333333334S284.3733333333334 213.3333333333334 266.6666666666667 213.3333333333334M256 341.3333333333334C232.5333333333334 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S232.5333333333334 256 256 256S298.6666666666667 275.2000000000001 298.6666666666667 298.6666666666667S279.4666666666667 341.3333333333334 256 341.3333333333334M126.5066666666667 266.6666666666667C114.7733333333333 246.4000000000001 121.8133333333333 220.3733333333333 142.08 208.64C162.56 196.6933333333333 188.5866666666667 203.7333333333333 200.5333333333333 224C212.2666666666667 244.6933333333334 205.2266666666667 270.7200000000001 184.7466666666667 282.4533333333334C164.48 294.1866666666667 138.6666666666667 287.36 126.5066666666667 266.6666666666667z" />
550
- <glyph glyph-name="box"
551
- unicode="&#xF1B5;"
552
- horiz-adv-x="512" d=" M328.32 148.48C328.32 178.7733333333334 303.7866666666667 203.3066666666667 273.4933333333334 203.3066666666667C243.4133333333334 203.3066666666667 218.88 178.7733333333334 218.88 148.48C218.88 118.4 243.4133333333334 93.8666666666667 273.4933333333334 93.8666666666667C303.7866666666667 93.8666666666667 328.32 118.4000000000001 328.32 148.4800000000001M364.8 148.4800000000001C364.8 98.1333333333334 323.8400000000001 57.3866666666668 273.4933333333334 57.3866666666668C238.7200000000001 57.3866666666668 208.4266666666667 77.0133333333335 193.0666666666667 105.8133333333335C177.7066666666667 77.0133333333334 147.4133333333333 57.3866666666668 112.64 57.3866666666668C62.72 57.3866666666668 22.1866666666667 97.4933333333335 21.3333333333334 146.9866666666668V298.6666666666667C21.3333333333334 308.0533333333334 29.6533333333334 316.1600000000001 39.68 316.1600000000001S57.6 308.0533333333334 57.8133333333334 298.6666666666667V221.44C73.1733333333334 232.96 92.16 239.7866666666667 112.64 239.7866666666667C147.4133333333334 239.7866666666667 177.7066666666667 220.16 193.0666666666667 191.36C208.4266666666667 220.16 238.7200000000001 239.7866666666667 273.4933333333334 239.7866666666667C323.84 239.7866666666667 364.8 198.8266666666667 364.8 148.48M167.2533333333334 148.48C167.2533333333334 178.7733333333333 142.72 203.3066666666666 112.64 203.3066666666666C82.3466666666667 203.3066666666666 57.8133333333334 178.7733333333333 57.8133333333334 148.48C57.8133333333334 118.4 82.3466666666667 93.8666666666667 112.64 93.8666666666667C142.72 93.8666666666667 167.2533333333334 118.4 167.2533333333334 148.48M487.2533333333334 86.1866666666667C489.6 82.7733333333333 490.6666666666667 78.9333333333333 490.6666666666667 75.3066666666666C490.6666666666667 69.7599999999999 488.1066666666667 63.9999999999999 483.4133333333334 60.8C480.0000000000001 58.4533333333333 476.3733333333334 57.1733333333333 472.5333333333334 57.1733333333333C467.2 57.1733333333333 461.8666666666667 59.5199999999999 458.6666666666667 63.9999999999999L417.9200000000001 117.9733333333333L377.6 64C373.9733333333333 59.52 368.64 57.1733333333334 363.3066666666666 57.1733333333334C359.4666666666666 57.1733333333334 355.6266666666666 58.4533333333333 351.9999999999999 60.8000000000001C347.5199999999999 64 344.9599999999999 69.9733333333334 344.9599999999999 75.5200000000001C344.9599999999999 79.1466666666668 346.2399999999999 82.9866666666668 348.3733333333333 86.1866666666667L394.6666666666667 148.4800000000001L348.3733333333333 210.9866666666667C346.0266666666667 214.1866666666667 344.9599999999999 217.8133333333334 344.9599999999999 221.6533333333334C344.9599999999999 227.2000000000001 347.52 232.5333333333334 351.9999999999999 236.1600000000001C360.32 242.1333333333334 371.4133333333333 240.6400000000001 377.5999999999999 232.7466666666668L417.9199999999999 178.9866666666667L458.6666666666666 232.7466666666668C464.2133333333333 240.6400000000001 475.5199999999999 242.1333333333334 483.4133333333332 236.1600000000001C488.3199999999999 232.5333333333334 490.6666666666666 226.9866666666668 490.6666666666666 221.2266666666668C490.6666666666666 217.6000000000001 489.5999999999999 213.9733333333334 487.2533333333332 210.9866666666667L440.7466666666666 148.4800000000001L487.2533333333332 86.1866666666667z" />
553
- <glyph glyph-name="briefcase"
554
- unicode="&#xF1B6;"
555
- horiz-adv-x="512" d=" M298.6666666666667 320H213.3333333333333V362.6666666666667H298.6666666666667M426.6666666666667 320H341.3333333333333V362.6666666666667L298.6666666666667 405.3333333333333H213.3333333333333L170.6666666666667 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
556
- <glyph glyph-name="briefcase-check"
557
- unicode="&#xF1B7;"
558
- horiz-adv-x="512" d=" M224 74.6666666666667L149.3333333333333 149.3333333333334L179.4133333333333 179.4133333333334L224 135.04L334.5066666666667 245.3333333333334L364.5866666666667 215.2533333333333M213.3333333333333 362.6666666666667H298.6666666666667V320H213.3333333333333M426.6666666666667 320H341.3333333333333V362.6666666666667L298.6666666666667 405.3333333333333H213.3333333333333L170.6666666666667 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 18.9866666666667 61.6533333333333 0 85.3333333333333 0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.3466666666667 320 426.6666666666667 320z" />
559
- <glyph glyph-name="briefcase-download"
560
- unicode="&#xF1B8;"
561
- horiz-adv-x="512" d=" M256 42.6666666666667L149.3333333333333 149.3333333333334H213.3333333333333V234.6666666666667H298.6666666666667V149.3333333333334H362.6666666666667M213.3333333333333 362.6666666666667H298.6666666666667V320H213.3333333333333M426.6666666666667 320H341.3333333333333V362.6666666666667L298.6666666666667 405.3333333333333H213.3333333333333L170.6666666666667 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
562
- <glyph glyph-name="briefcase-upload"
563
- unicode="&#xF1B9;"
564
- horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667L213.3333333333333 405.3333333333333H298.6666666666667L341.3333333333333 362.6666666666667V320H426.6666666666667M213.3333333333333 362.6666666666667V320H298.6666666666667V362.6666666666667H213.3333333333333M256 256L149.3333333333333 149.3333333333334H213.3333333333333V64H298.6666666666667V149.3333333333334H362.6666666666667L256 256z" />
565
- <glyph glyph-name="brightness-1"
566
- unicode="&#xF1BA;"
567
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333z" />
568
- <glyph glyph-name="brightness-2"
569
- unicode="&#xF1BB;"
570
- horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333C174.5066666666667 405.3333333333333 138.0266666666667 394.6666666666667 106.6666666666667 376.5333333333333C170.6666666666667 339.6266666666667 213.3333333333333 270.9333333333334 213.3333333333333 192S170.6666666666667 44.3733333333333 106.6666666666667 7.4666666666667C138.0266666666667 -10.6666666666666 174.5066666666667 -21.3333333333333 213.3333333333333 -21.3333333333333C331.0933333333333 -21.3333333333333 426.6666666666667 74.24 426.6666666666667 192S331.0933333333333 405.3333333333333 213.3333333333333 405.3333333333333z" />
571
- <glyph glyph-name="brightness-3"
572
- unicode="&#xF1BC;"
573
- horiz-adv-x="512" d=" M192 405.3333333333333C169.6 405.3333333333333 148.2666666666667 401.92 128 395.52C214.6133333333333 368.4266666666667 277.3333333333333 288 277.3333333333333 192C277.3333333333333 96 214.6133333333334 15.5733333333334 128 -11.52C148.2666666666667 -17.92 169.6 -21.3333333333333 192 -21.3333333333333C309.76 -21.3333333333333 405.3333333333333 74.24 405.3333333333333 192S309.76 405.3333333333333 192 405.3333333333333z" />
574
- <glyph glyph-name="brightness-4"
575
- unicode="&#xF1BD;"
576
- horiz-adv-x="512" d=" M256 64C237.0133333333333 64 218.88 68.2666666666667 202.6666666666667 75.7333333333334C246.6133333333334 96 277.3333333333333 140.3733333333333 277.3333333333333 192C277.3333333333333 243.6266666666667 246.6133333333334 288 202.6666666666667 308.2666666666667C218.88 315.7333333333334 237.0133333333333 320 256 320C326.6133333333334 320 384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334z" />
577
- <glyph glyph-name="brightness-5"
578
- unicode="&#xF1BE;"
579
- horiz-adv-x="512" d=" M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 121.3866666666667L497.28 192L426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667z" />
580
- <glyph glyph-name="brightness-6"
581
- unicode="&#xF1BF;"
582
- horiz-adv-x="512" d=" M256 64V320C326.6133333333334 320 384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 121.3866666666667L497.28 192L426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667z" />
583
- <glyph glyph-name="brightness-7"
584
- unicode="&#xF1C0;"
585
- horiz-adv-x="512" d=" M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192S208.8533333333333 106.6666666666667 256 106.6666666666667S341.3333333333333 144.8533333333334 341.3333333333333 192S303.1466666666667 277.3333333333334 256 277.3333333333334M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334z" />
586
- <glyph glyph-name="brightness-auto"
587
- unicode="&#xF1C1;"
588
- horiz-adv-x="512" d=" M305.0666666666667 106.6666666666667L290.1333333333334 149.3333333333334H221.8666666666667L206.9333333333334 106.6666666666667H166.4L234.6666666666667 298.6666666666667H277.3333333333333L345.6 106.6666666666667H305.0666666666666M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334M231.4666666666667 178.1333333333334H280.5333333333333L256 256L231.4666666666667 178.1333333333333z" />
589
- <glyph glyph-name="broom"
590
- unicode="&#xF1C2;"
591
- horiz-adv-x="512" d=" M413.0133333333333 389.9733333333334L443.3066666666667 359.68L321.2800000000001 237.8666666666667C344.1066666666667 205.0133333333333 347.3066666666667 165.5466666666666 328.1066666666667 139.9466666666667L193.28 274.7733333333334C218.88 293.9733333333334 258.3466666666667 290.7733333333334 291.2 267.9466666666667L413.0133333333333 389.9733333333334M126.5066666666667 73.1733333333334C83.6266666666667 116.0533333333334 57.3866666666667 167.2533333333333 50.1333333333333 215.04L154.24 259.6266666666667L312.96 100.9066666666667L268.3733333333334 -3.1999999999999C220.5866666666667 4.0533333333334 169.3866666666667 30.2933333333334 126.5066666666667 73.1733333333334z" />
592
- <glyph glyph-name="brush"
593
- unicode="&#xF1C3;"
594
- horiz-adv-x="512" d=" M441.8133333333334 349.2266666666667L413.2266666666667 377.8133333333334C405.3333333333333 386.1333333333334 391.4666666666667 386.1333333333334 383.1466666666667 377.8133333333334L192 186.6666666666667L250.6666666666667 128L441.8133333333334 319.1466666666667C450.1333333333334 327.4666666666667 450.1333333333334 341.3333333333334 441.8133333333334 349.2266666666667M149.3333333333333 149.3333333333334C113.92 149.3333333333334 85.3333333333333 120.7466666666667 85.3333333333333 85.3333333333334C85.3333333333333 57.3866666666667 60.5866666666667 42.6666666666667 42.6666666666667 42.6666666666667C62.2933333333333 16.64 96 0 128 0C175.1466666666667 0 213.3333333333333 38.1866666666667 213.3333333333333 85.3333333333334C213.3333333333333 120.7466666666667 184.7466666666667 149.3333333333334 149.3333333333333 149.3333333333334z" />
595
- <glyph glyph-name="bug"
596
- unicode="&#xF1C4;"
597
- horiz-adv-x="512" d=" M298.6666666666667 192H213.3333333333333V234.6666666666667H298.6666666666667M298.6666666666667 106.6666666666667H213.3333333333333V149.3333333333334H298.6666666666667M426.6666666666667 277.3333333333334H366.7200000000001C357.12 293.9733333333334 343.8933333333333 308.2666666666667 327.8933333333333 319.1466666666667L362.6666666666667 353.92L332.5866666666667 384L286.2933333333333 337.7066666666667C276.48 340.0533333333334 266.6666666666667 341.3333333333334 256 341.3333333333334C245.3333333333333 341.3333333333334 235.52 340.0533333333334 225.92 337.7066666666667L179.4133333333333 384L149.3333333333333 353.92L183.8933333333334 319.1466666666667C168.1066666666667 308.2666666666667 154.88 293.9733333333334 145.28 277.3333333333334H85.3333333333333V234.6666666666667H129.92C128.8533333333333 227.6266666666667 128 220.5866666666667 128 213.3333333333334V192H85.3333333333333V149.3333333333334H128V128C128 120.7466666666667 128.8533333333333 113.7066666666667 129.92 106.6666666666667H85.3333333333333V64H145.28C167.4666666666667 25.8133333333334 208.64 0 256 0S344.5333333333333 25.8133333333334 366.7200000000001 64H426.6666666666667V106.6666666666667H382.08C383.1466666666667 113.7066666666667 384 120.7466666666667 384 128V149.3333333333334H426.6666666666667V192H384V213.3333333333334C384 220.5866666666667 383.1466666666667 227.6266666666667 382.08 234.6666666666667H426.6666666666667V277.3333333333334z" />
598
- <glyph glyph-name="bulletin-board"
599
- unicode="&#xF1C5;"
600
- horiz-adv-x="512" d=" M256.8533333333333 394.6666666666667L203.3066666666667 341.3333333333334H309.9733333333333L256.8533333333333 394.6666666666667M85.3333333333333 298.6666666666667V21.3333333333334H426.6666666666667V298.6666666666667H85.3333333333333M256 448L362.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334H149.3333333333333L256 448M149.3333333333333 64V149.3333333333334H256V64H149.3333333333333M298.6666666666667 85.3333333333334V234.6666666666667H384V85.3333333333334H298.6666666666667M128 192V256H234.6666666666667V192H128z" />
601
- <glyph glyph-name="bullhorn"
602
- unicode="&#xF1C6;"
603
- horiz-adv-x="512" d=" M341.3333333333333 192V106.6666666666667C341.3333333333333 94.9333333333333 331.7333333333334 85.3333333333334 320 85.3333333333334C316.3733333333334 85.3333333333334 312.96 85.3333333333334 299.9466666666667 96C286.7200000000001 106.6666666666667 264.32 128 241.28 138.6666666666667C219.9466666666667 148.48 197.9733333333334 149.3333333333334 176.2133333333334 149.3333333333334L202.0266666666667 78.5066666666667L202.6666666666667 74.6666666666667C202.6666666666667 68.6933333333333 197.9733333333334 64 192 64H149.3333333333333C144.64 64 140.5866666666667 66.9866666666667 139.3066666666667 71.2533333333333L110.72 149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667C61.8666666666667 170.6666666666667 42.6666666666667 189.8666666666667 42.6666666666667 213.3333333333334S61.8666666666667 256 85.3333333333333 256C85.3333333333333 267.7333333333334 94.9333333333333 277.3333333333334 106.6666666666667 277.3333333333334H170.6666666666667C194.3466666666666 277.3333333333334 218.0266666666667 277.3333333333334 241.28 288C264.32 298.6666666666667 286.7200000000001 320 299.9466666666667 330.6666666666667C312.96 341.3333333333334 316.3733333333334 341.3333333333334 320 341.3333333333334C331.7333333333334 341.3333333333334 341.3333333333333 331.7333333333334 341.3333333333333 320V234.6666666666667C353.0666666666667 234.6666666666667 362.6666666666667 225.0666666666667 362.6666666666667 213.3333333333334S353.0666666666667 192 341.3333333333333 192M448 213.3333333333334C448 183.8933333333334 436.0533333333334 157.2266666666667 416.8533333333333 137.8133333333334L386.56 168.1066666666667C398.08 179.6266666666667 405.3333333333333 195.6266666666667 405.3333333333333 213.3333333333334C405.3333333333333 231.04 398.08 247.04 386.56 258.5600000000001L416.8533333333333 288.8533333333334C436.0533333333334 269.4400000000001 448 242.7733333333334 448 213.3333333333334z" />
604
- <glyph glyph-name="bus"
605
- unicode="&#xF1C7;"
606
- horiz-adv-x="512" d=" M384 213.3333333333334H128V320H384M352 85.3333333333334C334.2933333333333 85.3333333333334 320 99.6266666666667 320 117.3333333333334S334.2933333333333 149.3333333333334 352 149.3333333333334S384 135.04 384 117.3333333333334S369.7066666666666 85.3333333333334 352 85.3333333333334M160 85.3333333333334C142.2933333333333 85.3333333333334 128 99.6266666666667 128 117.3333333333334S142.2933333333333 149.3333333333334 160 149.3333333333334S192 135.04 192 117.3333333333334S177.7066666666667 85.3333333333334 160 85.3333333333334M85.3333333333333 106.6666666666667C85.3333333333333 87.8933333333334 93.6533333333333 71.04 106.6666666666667 59.3066666666667V21.3333333333334C106.6666666666667 9.6 116.2666666666667 0 128 0H149.3333333333333C161.0666666666667 0 170.6666666666667 9.6 170.6666666666667 21.3333333333334V42.6666666666667H341.3333333333333V21.3333333333334C341.3333333333333 9.6 350.9333333333333 0 362.6666666666667 0H384C395.7333333333334 0 405.3333333333333 9.6 405.3333333333333 21.3333333333334V59.3066666666667C418.3466666666667 71.0400000000001 426.6666666666667 87.8933333333334 426.6666666666667 106.6666666666667V320C426.6666666666667 394.6666666666667 350.2933333333334 405.3333333333333 256 405.3333333333333S85.3333333333333 394.6666666666667 85.3333333333333 320V106.6666666666667z" />
607
- <glyph glyph-name="cake"
608
- unicode="&#xF1C8;"
609
- horiz-adv-x="512" d=" M245.3333333333333 437.3333333333333C256 432 277.3333333333333 396.8 277.3333333333333 373.3333333333334S263.04 341.3333333333334 245.3333333333333 341.3333333333334S213.3333333333333 344.5333333333334 213.3333333333333 368S234.6666666666667 405.3333333333333 245.3333333333333 437.3333333333333M394.6666666666667 256C448 256 490.6666666666666 213.3333333333334 490.6666666666666 160C490.6666666666666 126.72 473.8133333333333 97.4933333333333 448 80.2133333333333V-42.6666666666666H64V80.2133333333333C38.1866666666667 97.4933333333333 21.3333333333333 126.72 21.3333333333333 160C21.3333333333333 213.3333333333334 64 256 117.3333333333333 256H213.3333333333333V320H277.3333333333333V256H394.6666666666667M256 106.6666666666667C285.44 106.6666666666667 309.3333333333333 130.5600000000001 309.3333333333333 160H341.3333333333333C341.3333333333333 130.5600000000001 365.2266666666667 106.6666666666667 394.6666666666667 106.6666666666667S448 130.5600000000001 448 160S424.1066666666667 213.3333333333334 394.6666666666667 213.3333333333334H117.3333333333333C87.8933333333333 213.3333333333334 64 189.4400000000001 64 160S87.8933333333333 106.6666666666667 117.3333333333333 106.6666666666667S170.6666666666667 130.56 170.6666666666667 160H202.6666666666667C202.6666666666667 130.5600000000001 226.56 106.6666666666667 256 106.6666666666667z" />
610
- <glyph glyph-name="cake-variant"
611
- unicode="&#xF1C9;"
612
- horiz-adv-x="512" d=" M448 0V85.3333333333334C448 109.0133333333333 428.8 128 405.3333333333333 128H384V192C384 215.68 364.8 234.6666666666667 341.3333333333333 234.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667V234.6666666666667H170.6666666666667C146.9866666666667 234.6666666666667 128 215.68 128 192V128H106.6666666666667C82.9866666666667 128 64 109.0133333333333 64 85.3333333333334V0H21.3333333333333V-42.6666666666666H490.6666666666666V0M256 298.6666666666667C279.4666666666667 298.6666666666667 298.6666666666667 317.8666666666667 298.6666666666667 341.3333333333334C298.6666666666667 349.44 296.5333333333333 356.9066666666667 292.48 363.3066666666667L256 426.6666666666667L219.3066666666667 363.3066666666667C215.4666666666667 356.9066666666667 213.3333333333333 349.44 213.3333333333333 341.3333333333334C213.3333333333333 317.8666666666667 232.5333333333334 298.6666666666667 256 298.6666666666667z" />
613
- <glyph glyph-name="calculator"
614
- unicode="&#xF1CA;"
615
- horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V21.3333333333334C405.3333333333333 -2.1333333333333 386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333H149.3333333333333C125.8666666666667 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667V277.3333333333334H362.6666666666667V362.6666666666667H149.3333333333333M149.3333333333333 234.6666666666667V192H192V234.6666666666667H149.3333333333333M234.6666666666667 234.6666666666667V192H277.3333333333333V234.6666666666667H234.6666666666667M320 234.6666666666667V192H362.6666666666667V234.6666666666667H320M149.3333333333333 149.3333333333334V106.6666666666667H192V149.3333333333334H149.3333333333333M234.6666666666667 149.3333333333334V106.6666666666667H277.3333333333333V149.3333333333334H234.6666666666667M320 149.3333333333334V106.6666666666667H362.6666666666667V149.3333333333334H320M149.3333333333333 64V21.3333333333334H192V64H149.3333333333333M234.6666666666667 64V21.3333333333334H277.3333333333333V64H234.6666666666667M320 64V21.3333333333334H362.6666666666667V64H320z" />
616
- <glyph glyph-name="calendar"
617
- unicode="&#xF1CB;"
618
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M341.3333333333333 426.6666666666667V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H384V426.6666666666667M362.6666666666667 192H256V85.3333333333334H362.6666666666667V192z" />
619
- <glyph glyph-name="calendar-blank"
620
- unicode="&#xF1CC;"
621
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M341.3333333333333 426.6666666666667V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H384V426.6666666666667" />
622
- <glyph glyph-name="calendar-check"
623
- unicode="&#xF1CD;"
624
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M352.64 212.0533333333334L330.0266666666667 234.6666666666667L225.92 130.5600000000001L180.6933333333333 175.7866666666668L158.08 153.1733333333334L225.92 85.3333333333334L352.64 212.0533333333334z" />
625
- <glyph glyph-name="calendar-clock"
626
- unicode="&#xF1CE;"
627
- horiz-adv-x="512" d=" M320 170.6666666666667H352V110.5066666666667L404.0533333333334 80.4266666666667L388.0533333333334 52.6933333333333L320 91.9466666666667V170.6666666666667M405.3333333333333 277.3333333333334H106.6666666666667V42.6666666666667H206.2933333333333C197.12 62.08 192 83.84 192 106.6666666666667C192 189.2266666666667 258.7733333333333 256 341.3333333333333 256C364.16 256 385.92 250.88 405.3333333333333 241.7066666666667V277.3333333333334M106.6666666666667 0C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V211.2C474.4533333333333 184.3200000000001 490.6666666666666 147.4133333333334 490.6666666666666 106.6666666666667C490.6666666666666 24.1066666666667 423.8933333333333 -42.6666666666666 341.3333333333333 -42.6666666666666C300.5866666666667 -42.6666666666666 263.68 -26.4533333333333 236.8 0H106.6666666666667M341.3333333333333 210.1333333333333C284.16 210.1333333333333 237.8666666666667 163.84 237.8666666666667 106.6666666666667C237.8666666666667 49.4933333333333 284.16 3.2 341.3333333333333 3.2C398.5066666666667 3.2 444.8 49.4933333333333 444.8 106.6666666666667C444.8 163.84 398.5066666666667 210.1333333333333 341.3333333333333 210.1333333333333z" />
628
- <glyph glyph-name="calendar-multiple"
629
- unicode="&#xF1CF;"
630
- horiz-adv-x="512" d=" M448 85.3333333333334V277.3333333333334H149.3333333333333V85.3333333333334H448M448 384C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.6533333333333 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H170.6666666666667V426.6666666666667H213.3333333333333V384H384V426.6666666666667H426.6666666666667V384H448M64 0H362.6666666666667V-42.6666666666666H64C40.32 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V256H64V0M405.3333333333333 128H320V213.3333333333334H405.3333333333333V128z" />
631
- <glyph glyph-name="calendar-multiple-check"
632
- unicode="&#xF1D0;"
633
- horiz-adv-x="512" d=" M448 85.3333333333334V277.3333333333334H149.3333333333333V85.3333333333334H448M448 384C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.6533333333333 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H170.6666666666667V426.6666666666667H213.3333333333333V384H384V426.6666666666667H426.6666666666667V384H448M373.9733333333334 212.0533333333334L279.2533333333334 117.3333333333334L222.08 174.5066666666667L244.6933333333334 197.12L279.2533333333334 162.5600000000001L351.36 234.6666666666667L373.9733333333333 212.0533333333334M64 0H362.6666666666667V-42.6666666666666H64C40.32 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V256H64V0z" />
634
- <glyph glyph-name="calendar-plus"
635
- unicode="&#xF1D1;"
636
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V298.6666666666667H106.6666666666667V42.6666666666667H405.3333333333333M341.3333333333333 426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667M234.6666666666667 256H277.3333333333333V192H341.3333333333333V149.3333333333334H277.3333333333333V85.3333333333334H234.6666666666667V149.3333333333334H170.6666666666667V192H234.6666666666667V256z" />
637
- <glyph glyph-name="calendar-remove"
638
- unicode="&#xF1D2;"
639
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M198.6133333333334 85.3333333333334L250.6666666666667 137.3866666666667L302.72 85.3333333333334L325.3333333333333 107.9466666666667L273.28 160L325.3333333333333 212.0533333333334L302.72 234.6666666666667L250.6666666666667 182.6133333333334L198.6133333333334 234.6666666666667L176 212.0533333333334L228.0533333333333 160L176 107.9466666666667L198.6133333333334 85.3333333333334z" />
640
- <glyph glyph-name="calendar-text"
641
- unicode="&#xF1D3;"
642
- horiz-adv-x="512" d=" M298.6666666666667 149.3333333333334H149.3333333333333V106.6666666666667H298.6666666666667M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M362.6666666666667 234.6666666666667H149.3333333333333V192H362.6666666666667V234.6666666666667z" />
643
- <glyph glyph-name="calendar-today"
644
- unicode="&#xF1D4;"
645
- horiz-adv-x="512" d=" M149.3333333333333 234.6666666666667H256V128H149.3333333333333M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
646
- <glyph glyph-name="camcorder"
647
- unicode="&#xF1D5;"
648
- horiz-adv-x="512" d=" M362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C353.0666666666667 64 362.6666666666667 73.6 362.6666666666667 85.3333333333334V160L448 74.6666666666667V309.3333333333334L362.6666666666667 224z" />
649
- <glyph glyph-name="camcorder-box"
650
- unicode="&#xF1D6;"
651
- horiz-adv-x="512" d=" M384 106.6666666666667L298.6666666666667 174.9333333333333V106.6666666666667H128V277.3333333333334H298.6666666666667V209.0666666666667L384 277.3333333333334M426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
652
- <glyph glyph-name="camcorder-box-off"
653
- unicode="&#xF1D7;"
654
- horiz-adv-x="512" d=" M128 277.3333333333334H143.5733333333333L298.6666666666667 122.24V106.6666666666667H128M48.4266666666667 426.6666666666667L21.3333333333333 399.5733333333333L64 356.6933333333334C51.4133333333333 349.4400000000001 42.6666666666667 335.7866666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H399.5733333333333L442.24 -21.3333333333333L469.3333333333333 5.76M426.6666666666667 362.6666666666667H166.8266666666667L252.16 277.3333333333334H298.6666666666667V230.8266666666667L310.8266666666667 218.6666666666667L384 277.3333333333334V145.4933333333334L469.3333333333333 60.3733333333333V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
655
- <glyph glyph-name="camcorder-off"
656
- unicode="&#xF1D8;"
657
- horiz-adv-x="512" d=" M69.76 405.3333333333333L42.6666666666667 378.24L100.9066666666667 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C345.6 64 349.6533333333333 65.7066666666667 352.8533333333333 67.84L420.9066666666667 0L448 27.0933333333334M448 309.3333333333334L362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H209.4933333333334L448 81.4933333333333V309.3333333333334z" />
658
- <glyph glyph-name="camera"
659
- unicode="&#xF1D9;"
660
- horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H149.3333333333333L192 405.3333333333333H320L362.6666666666667 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M256 298.6666666666667C197.12 298.6666666666667 149.3333333333333 250.88 149.3333333333333 192S197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256z" />
661
- <glyph glyph-name="camera-front"
662
- unicode="&#xF1DA;"
663
- horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667V181.3333333333334C362.6666666666667 216.96 291.6266666666667 234.6666666666667 256 234.6666666666667S149.3333333333333 216.96 149.3333333333333 181.3333333333334M362.6666666666667 448H149.3333333333333C125.8666666666667 448 106.6666666666667 428.8 106.6666666666667 405.3333333333333V106.6666666666667C106.6666666666667 83.2 125.8666666666667 64 149.3333333333333 64H362.6666666666667C386.1333333333334 64 405.3333333333333 83.2 405.3333333333333 106.6666666666667V405.3333333333333C405.3333333333333 428.8 386.1333333333334 448 362.6666666666667 448M256 277.3333333333334C279.4666666666667 277.3333333333334 298.6666666666667 296.5333333333334 298.6666666666667 320S279.4666666666667 362.6666666666667 256 362.6666666666667S213.3333333333333 343.4666666666667 213.3333333333333 320S232.5333333333334 277.3333333333334 256 277.3333333333334M298.6666666666667 21.3333333333334V-21.3333333333333H405.3333333333333V21.3333333333334M213.3333333333333 21.3333333333334H106.6666666666667V-21.3333333333333H213.3333333333333V-64L277.3333333333333 0L213.3333333333333 64V21.3333333333334z" />
664
- <glyph glyph-name="camera-front-variant"
665
- unicode="&#xF1DB;"
666
- horiz-adv-x="512" d=" M128 448H384C407.4666666666667 448 426.6666666666667 428.8 426.6666666666667 405.3333333333333V-21.3333333333333C426.6666666666667 -44.8 407.4666666666667 -64 384 -64H128C104.5333333333333 -64 85.3333333333333 -44.8 85.3333333333333 -21.3333333333333V405.3333333333333C85.3333333333333 428.8 104.5333333333333 448 128 448M256 320C291.4133333333333 320 320 291.4133333333334 320 256S291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320M234.6666666666667 426.6666666666667V384H277.3333333333333V426.6666666666667H234.6666666666667M128 362.6666666666667V96C128 125.44 185.3866666666667 149.3333333333334 256 149.3333333333334S384 125.44 384 96V362.6666666666667H128M277.3333333333333 64H192V21.3333333333334H277.3333333333333V-21.3333333333333L341.3333333333333 42.6666666666667L277.3333333333333 106.6666666666667V64z" />
667
- <glyph glyph-name="camera-iris"
668
- unicode="&#xF1DC;"
669
- horiz-adv-x="512" d=" M292.9066666666667 128L209.7066666666667 -16.2133333333333C224.64 -19.4133333333332 240 -21.3333333333333 256 -21.3333333333333C307.2 -21.3333333333333 354.1333333333334 -3.1999999999999 390.8266666666667 26.6666666666667L312.7466666666667 162.1333333333335M52.48 128C72.1066666666667 65.7066666666667 119.68 15.7866666666667 180.2666666666667 -7.2533333333333L258.56 128M182.1866666666667 192L98.9866666666666 336C64 298.6666666666667 42.6666666666667 247.68 42.6666666666667 192C42.6666666666667 177.4933333333334 44.16 163.2000000000001 46.9333333333333 149.3333333333334H206.72M465.0666666666667 234.6666666666667H305.28L311.4666666666667 224L413.0133333333333 48C448 85.9733333333334 469.3333333333333 136.5333333333334 469.3333333333333 192C469.3333333333333 206.72 467.84 221.0133333333333 465.0666666666667 234.6666666666667M459.52 256C439.8933333333333 318.5066666666667 392.32 368.2133333333334 331.7333333333333 391.2533333333334L253.44 256M200.5333333333333 224L302.2933333333333 400.2133333333333C287.36 403.4133333333334 272 405.3333333333333 256 405.3333333333333C204.8 405.3333333333333 157.8666666666667 387.4133333333334 121.1733333333333 357.3333333333334L199.2533333333333 221.8666666666667L200.5333333333333 224z" />
670
- <glyph glyph-name="camera-party-mode"
671
- unicode="&#xF1DD;"
672
- horiz-adv-x="512" d=" M256 85.3333333333334C221.2266666666667 85.3333333333334 190.72 102.1866666666667 170.6666666666667 128H256C291.4133333333333 128 320 156.5866666666667 320 192C320 199.4666666666667 318.5066666666667 206.72 316.16 213.3333333333334H360.5333333333333C361.8133333333333 206.5066666666667 362.6666666666667 199.2533333333333 362.6666666666667 192C362.6666666666667 133.12 314.88 85.3333333333334 256 85.3333333333334M256 298.6666666666667C290.7733333333333 298.6666666666667 321.28 281.8133333333334 341.3333333333333 256H256C220.5866666666667 256 192 227.4133333333334 192 192C192 184.5333333333334 193.4933333333334 177.4933333333334 195.84 170.6666666666667H151.4666666666667C149.9733333333333 177.4933333333334 149.3333333333333 184.7466666666667 149.3333333333333 192C149.3333333333333 250.88 197.12 298.6666666666667 256 298.6666666666667M426.6666666666667 362.6666666666667H359.04L320 405.3333333333333H192L152.96 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
673
- <glyph glyph-name="camera-rear"
674
- unicode="&#xF1DE;"
675
- horiz-adv-x="512" d=" M256 320C232.32 320 213.3333333333333 339.2000000000001 213.3333333333333 362.6666666666667S232.5333333333334 405.3333333333333 256 405.3333333333333C279.2533333333334 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667S279.4666666666667 320 256 320M362.6666666666667 448H149.3333333333333C125.8666666666667 448 106.6666666666667 428.8 106.6666666666667 405.3333333333333V106.6666666666667C106.6666666666667 83.2 125.8666666666667 64 149.3333333333333 64H362.6666666666667C386.1333333333334 64 405.3333333333333 83.2 405.3333333333333 106.6666666666667V405.3333333333333C405.3333333333333 428.8 386.1333333333334 448 362.6666666666667 448M298.6666666666667 21.3333333333334V-21.3333333333333H405.3333333333333V21.3333333333334M213.3333333333333 21.3333333333334H106.6666666666667V-21.3333333333333H213.3333333333333V-64L277.3333333333333 0L213.3333333333333 64V21.3333333333334z" />
676
- <glyph glyph-name="camera-rear-variant"
677
- unicode="&#xF1DF;"
678
- horiz-adv-x="512" d=" M128 448H384C407.4666666666667 448 426.6666666666667 428.8 426.6666666666667 405.3333333333333V-21.3333333333333C426.6666666666667 -44.8 407.4666666666667 -64 384 -64H128C104.5333333333333 -64 85.3333333333333 -44.8 85.3333333333333 -21.3333333333333V405.3333333333333C85.3333333333333 428.8 104.5333333333333 448 128 448M256 405.3333333333333C232.5333333333334 405.3333333333333 213.3333333333333 386.1333333333334 213.3333333333333 362.6666666666667S232.5333333333334 320 256 320S298.6666666666667 339.2000000000001 298.6666666666667 362.6666666666667S279.4666666666667 405.3333333333333 256 405.3333333333333M277.3333333333333 64H192V21.3333333333334H277.3333333333333V-21.3333333333333L341.3333333333333 42.6666666666667L277.3333333333333 106.6666666666667V64z" />
679
- <glyph glyph-name="camera-switch"
680
- unicode="&#xF1E0;"
681
- horiz-adv-x="512" d=" M320 117.3333333333334V170.6666666666667H192V117.3333333333334L117.3333333333333 192L192 266.6666666666667V213.3333333333334H320V266.6666666666667L394.6666666666667 192M426.6666666666667 362.6666666666667H359.04L320 405.3333333333333H192L152.96 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
682
- <glyph glyph-name="camera-timer"
683
- unicode="&#xF1E1;"
684
- horiz-adv-x="512" d=" M105.3866666666667 312.5333333333334C97.0666666666667 320.8533333333334 97.0666666666667 334.5066666666667 105.3866666666667 342.8266666666667C113.7066666666667 351.1466666666667 127.1466666666667 351.1466666666667 135.4666666666667 342.8266666666667L278.8266666666667 228.0533333333334L286.2933333333333 222.0800000000001C302.9333333333333 205.4400000000001 302.9333333333333 178.3466666666668 286.2933333333333 161.7066666666667C269.6533333333333 145.0666666666667 242.56 145.0666666666667 225.92 161.7066666666667L219.9466666666667 169.1733333333334L105.3866666666667 312.5333333333334M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 239.1466666666667 407.4666666666667 281.8133333333334 376.7466666666667 312.7466666666667L406.8266666666667 342.8266666666667C445.44 304.2133333333334 469.3333333333333 250.88 469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192H85.3333333333333C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334M256 426.6666666666667C279.4666666666667 426.6666666666667 298.6666666666667 407.4666666666667 298.6666666666667 384S279.4666666666667 341.3333333333334 256 341.3333333333334S213.3333333333333 360.5333333333334 213.3333333333333 384S232.5333333333334 426.6666666666667 256 426.6666666666667z" />
685
- <glyph glyph-name="candycane"
686
- unicode="&#xF1E2;"
687
- horiz-adv-x="512" d=" M213.3333333333333 234.6666666666667C213.3333333333333 211.2 194.1333333333333 192 170.6666666666667 192S128 211.2 128 234.6666666666667V277.3333333333334C128 290.7733333333333 130.1333333333333 303.5733333333334 133.76 315.7333333333334L213.3333333333333 236.1600000000001V234.6666666666667M256 405.3333333333333C271.7866666666667 405.3333333333333 286.72 402.56 300.5866666666667 397.2266666666667L255.36 320C237.6533333333334 320 222.72 309.3333333333334 216.5333333333333 293.3333333333334L154.4533333333333 355.4133333333334C177.92 385.7066666666667 214.6133333333334 405.3333333333333 256 405.3333333333333M378.88 313.3866666666667L298.6666666666667 233.1733333333334V277.3333333333334C298.6666666666667 285.44 296.5333333333333 292.9066666666667 292.6933333333334 299.3066666666667L337.7066666666667 375.8933333333333C357.12 359.8933333333333 371.6266666666667 338.1333333333334 378.88 313.3866666666667M384 168.7466666666667L298.6666666666667 83.4133333333334V172.8L384 258.1333333333334V168.7466666666667M384 21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333S298.6666666666667 -2.1333333333333 298.6666666666667 21.3333333333334V23.2533333333333L384 108.5866666666667V21.3333333333334z" />
688
- <glyph glyph-name="car"
689
- unicode="&#xF1E3;"
690
- horiz-adv-x="512" d=" M106.6666666666667 213.3333333333334L138.6666666666667 309.3333333333334H373.3333333333333L405.3333333333333 213.3333333333334M373.3333333333333 106.6666666666667C355.6266666666667 106.6666666666667 341.3333333333333 120.96 341.3333333333333 138.6666666666667S355.6266666666667 170.6666666666667 373.3333333333333 170.6666666666667S405.3333333333333 156.3733333333333 405.3333333333333 138.6666666666667S391.04 106.6666666666667 373.3333333333333 106.6666666666667M138.6666666666667 106.6666666666667C120.96 106.6666666666667 106.6666666666667 120.96 106.6666666666667 138.6666666666667S120.96 170.6666666666667 138.6666666666667 170.6666666666667S170.6666666666667 156.3733333333333 170.6666666666667 138.6666666666667S156.3733333333333 106.6666666666667 138.6666666666667 106.6666666666667M403.6266666666667 320C399.36 332.3733333333334 387.4133333333333 341.3333333333334 373.3333333333333 341.3333333333334H138.6666666666667C124.5866666666667 341.3333333333334 112.64 332.3733333333334 108.3733333333333 320L64 192V21.3333333333334C64 9.6 73.6 0 85.3333333333333 0H106.6666666666667C118.4 0 128 9.6 128 21.3333333333334V42.6666666666667H384V21.3333333333334C384 9.6 393.6 0 405.3333333333333 0H426.6666666666667C438.4 0 448 9.6 448 21.3333333333334V192L403.6266666666667 320z" />
691
- <glyph glyph-name="car-wash"
692
- unicode="&#xF1E4;"
693
- horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667L138.6666666666667 266.6666666666667H373.3333333333333L405.3333333333333 170.6666666666667M373.3333333333333 64C355.6266666666667 64 341.3333333333333 78.2933333333334 341.3333333333333 96S355.6266666666667 128 373.3333333333333 128S405.3333333333333 113.7066666666667 405.3333333333333 96S391.04 64 373.3333333333333 64M138.6666666666667 64C120.96 64 106.6666666666667 78.2933333333334 106.6666666666667 96S120.96 128 138.6666666666667 128S170.6666666666667 113.7066666666667 170.6666666666667 96S156.3733333333333 64 138.6666666666667 64M403.6266666666667 277.3333333333334C399.36 289.7066666666667 387.4133333333333 298.6666666666667 373.3333333333333 298.6666666666667H138.6666666666667C124.5866666666667 298.6666666666667 112.64 289.7066666666667 108.3733333333333 277.3333333333334L64 149.3333333333334V-21.3333333333333C64 -33.0666666666667 73.6 -42.6666666666666 85.3333333333333 -42.6666666666666H106.6666666666667C118.4 -42.6666666666666 128 -33.0666666666667 128 -21.3333333333333V0H384V-21.3333333333333C384 -33.0666666666667 393.6 -42.6666666666666 405.3333333333333 -42.6666666666666H426.6666666666667C438.4 -42.6666666666666 448 -33.0666666666667 448 -21.3333333333333V149.3333333333334M149.3333333333333 341.3333333333334C167.04 341.3333333333334 181.3333333333333 355.6266666666667 181.3333333333333 373.3333333333334C181.3333333333333 394.6666666666667 149.3333333333333 430.9333333333334 149.3333333333333 430.9333333333334S117.3333333333333 394.6666666666667 117.3333333333333 373.3333333333334C117.3333333333333 355.6266666666667 131.6266666666667 341.3333333333334 149.3333333333333 341.3333333333334M256 341.3333333333334C273.7066666666667 341.3333333333334 288 355.6266666666667 288 373.3333333333334C288 394.6666666666667 256 430.9333333333334 256 430.9333333333334S224 394.6666666666667 224 373.3333333333334C224 355.6266666666667 238.2933333333333 341.3333333333334 256 341.3333333333334M362.6666666666667 341.3333333333334C380.3733333333333 341.3333333333334 394.6666666666667 355.6266666666667 394.6666666666667 373.3333333333334C394.6666666666667 394.6666666666667 362.6666666666667 430.9333333333334 362.6666666666667 430.9333333333334S330.6666666666667 394.6666666666667 330.6666666666667 373.3333333333334C330.6666666666667 355.6266666666667 344.9600000000001 341.3333333333334 362.6666666666667 341.3333333333334z" />
694
- <glyph glyph-name="carrot"
695
- unicode="&#xF1E5;"
696
- horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667L337.0666666666667 213.3333333333334H288C282.0266666666667 213.3333333333334 277.3333333333333 208.64 277.3333333333333 202.6666666666667S282.0266666666667 192 288 192H332.8L311.4666666666667 85.3333333333334H266.6666666666667C260.6933333333334 85.3333333333334 256 80.64 256 74.6666666666667S260.6933333333334 64 266.6666666666667 64H307.2L298.6666666666667 21.3333333333334C298.6666666666667 -2.1333333333333 279.4666666666667 -21.3333333333333 256 -21.3333333333333S213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334L192 128H224C229.9733333333333 128 234.6666666666667 132.6933333333334 234.6666666666667 138.6666666666667S229.9733333333333 149.3333333333334 224 149.3333333333334H187.7333333333334L170.6666666666667 234.6666666666667C170.6666666666667 260.2666666666667 190.5066666666667 282.24 219.52 292.48L189.8666666666667 335.36C183.2533333333333 345.1733333333334 185.6 358.4 195.4133333333333 365.0133333333333C205.0133333333333 371.84 218.24 369.28 225.0666666666667 359.68L234.6666666666667 345.6V384C234.6666666666667 395.7333333333334 244.2666666666667 405.3333333333333 256 405.3333333333333S277.3333333333333 395.7333333333334 277.3333333333333 384V335.36L309.3333333333333 372.48C316.3733333333334 381.4400000000001 330.0266666666667 382.5066666666667 338.9866666666667 374.8266666666667C347.9466666666667 367.36 349.0133333333333 353.92 341.3333333333333 344.7466666666667L295.8933333333333 291.2000000000001C322.9866666666667 280.5333333333334 341.3333333333333 259.2000000000001 341.3333333333333 234.6666666666667z" />
697
- <glyph glyph-name="cart"
698
- unicode="&#xF1E6;"
699
- horiz-adv-x="512" d=" M362.6666666666667 64C338.9866666666667 64 320 45.0133333333333 320 21.3333333333334C320 -2.1333333333333 339.2 -21.3333333333333 362.6666666666667 -21.3333333333333S405.3333333333333 -2.1333333333333 405.3333333333333 21.3333333333334C405.3333333333333 45.0133333333333 386.1333333333334 64 362.6666666666667 64M21.3333333333333 405.3333333333333V362.6666666666667H64L140.8 200.7466666666667L111.7866666666667 148.48C108.5866666666667 142.5066666666667 106.6666666666666 135.4666666666667 106.6666666666666 128C106.6666666666666 104.5333333333333 125.8666666666667 85.3333333333334 149.3333333333333 85.3333333333334H405.3333333333333V128H158.2933333333333C155.3066666666667 128 152.96 130.3466666666667 152.96 133.3333333333334C152.96 134.4 153.1733333333333 135.2533333333333 153.6 135.8933333333333L172.8 170.6666666666667H331.7333333333334C347.7333333333334 170.6666666666667 361.8133333333334 179.6266666666667 369.0666666666667 192.64L445.4400000000001 330.6666666666667C446.9333333333334 334.08 448.0000000000001 337.7066666666667 448.0000000000001 341.3333333333333C448.0000000000001 353.0666666666667 438.4000000000001 362.6666666666667 426.6666666666668 362.6666666666667H111.1466666666667L91.0933333333333 405.3333333333333M149.3333333333333 64C125.6533333333333 64 106.6666666666667 45.0133333333333 106.6666666666667 21.3333333333334C106.6666666666667 -2.1333333333333 125.8666666666667 -21.3333333333333 149.3333333333333 -21.3333333333333S192 -2.1333333333333 192 21.3333333333334C192 45.0133333333333 172.8 64 149.3333333333333 64z" />
700
- <glyph glyph-name="cart-outline"
701
- unicode="&#xF1E7;"
702
- horiz-adv-x="512" d=" M362.6666666666667 64C386.1333333333334 64 405.3333333333333 44.8000000000001 405.3333333333333 21.3333333333334S386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333C338.9866666666667 -21.3333333333333 320 -2.1333333333333 320 21.3333333333334C320 45.0133333333333 338.9866666666667 64 362.6666666666667 64M21.3333333333333 405.3333333333333H91.0933333333333L111.1466666666667 362.6666666666667H426.6666666666667C438.4 362.6666666666667 448 353.0666666666667 448 341.3333333333334C448 337.7066666666667 446.9333333333333 334.0800000000001 445.44 330.6666666666667L369.0666666666666 192.6400000000001C361.8133333333333 179.6266666666667 347.7333333333333 170.6666666666668 331.7333333333333 170.6666666666668H172.8L153.6 135.8933333333334L152.96 133.3333333333334C152.96 130.3466666666667 155.3066666666667 128.0000000000001 158.2933333333333 128.0000000000001H405.3333333333333V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128C106.6666666666667 135.4666666666667 108.5866666666667 142.5066666666667 111.7866666666667 148.48L140.8 200.7466666666667L64 362.6666666666667H21.3333333333333V405.3333333333333M149.3333333333333 64C172.8 64 192 44.8000000000001 192 21.3333333333334S172.8 -21.3333333333333 149.3333333333333 -21.3333333333333C125.6533333333333 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334C106.6666666666667 45.0133333333333 125.6533333333333 64 149.3333333333333 64M341.3333333333333 213.3333333333334L400.64 320H130.9866666666667L181.3333333333333 213.3333333333334H341.3333333333333z" />
703
- <glyph glyph-name="cash"
704
- unicode="&#xF1E8;"
705
- horiz-adv-x="512" d=" M64 320H448V64H64V320M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256M149.3333333333333 277.3333333333334C149.3333333333333 253.8666666666667 130.1333333333333 234.6666666666667 106.6666666666667 234.6666666666667V149.3333333333334C130.1333333333333 149.3333333333334 149.3333333333333 130.1333333333333 149.3333333333333 106.6666666666667H362.6666666666667C362.6666666666667 130.1333333333333 381.8666666666666 149.3333333333334 405.3333333333333 149.3333333333334V234.6666666666667C381.8666666666666 234.6666666666667 362.6666666666667 253.8666666666667 362.6666666666667 277.3333333333334H149.3333333333333z" />
706
- <glyph glyph-name="cash-100"
707
- unicode="&#xF1E9;"
708
- horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334H469.3333333333333V21.3333333333334H42.6666666666667V341.3333333333334M426.6666666666667 64V298.6666666666667H85.3333333333333V64H426.6666666666667M362.6666666666667 277.3333333333334C362.6666666666667 253.8666666666667 381.8666666666666 234.6666666666667 405.3333333333333 234.6666666666667V128C381.8666666666666 128 362.6666666666667 108.8 362.6666666666667 85.3333333333334H149.3333333333333C149.3333333333333 108.8 130.1333333333333 128 106.6666666666667 128V234.6666666666667C130.1333333333333 234.6666666666667 149.3333333333333 253.8666666666667 149.3333333333333 277.3333333333334H362.6666666666667M362.6666666666667 170.6666666666667V192C362.6666666666667 215.4666666666667 348.3733333333333 234.6666666666667 330.6666666666667 234.6666666666667S298.6666666666667 215.4666666666667 298.6666666666667 192V170.6666666666667C298.6666666666667 147.2000000000001 312.96 128 330.6666666666667 128S362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667M330.6666666666667 213.3333333333334C336.64 213.3333333333334 341.3333333333333 208.64 341.3333333333333 202.6666666666667V160C341.3333333333333 154.0266666666667 336.64 149.3333333333334 330.6666666666667 149.3333333333334S320 154.0266666666667 320 160V202.6666666666667C320 208.64 324.6933333333334 213.3333333333334 330.6666666666667 213.3333333333334M277.3333333333333 170.6666666666667V192C277.3333333333333 215.4666666666667 263.04 234.6666666666667 245.3333333333333 234.6666666666667S213.3333333333333 215.4666666666667 213.3333333333333 192V170.6666666666667C213.3333333333333 147.2000000000001 227.6266666666667 128 245.3333333333333 128S277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667M245.3333333333333 213.3333333333334C251.3066666666667 213.3333333333334 256 208.64 256 202.6666666666667V160C256 154.0266666666667 251.3066666666667 149.3333333333334 245.3333333333333 149.3333333333334S234.6666666666667 154.0266666666667 234.6666666666667 160V202.6666666666667C234.6666666666667 208.64 239.36 213.3333333333334 245.3333333333333 213.3333333333334M170.6666666666667 128H192V234.6666666666667H170.6666666666667L149.3333333333333 224V202.6666666666667L170.6666666666667 213.3333333333334V128z" />
709
- <glyph glyph-name="cash-multiple"
710
- unicode="&#xF1EA;"
711
- horiz-adv-x="512" d=" M106.6666666666667 320H490.6666666666666V64H106.6666666666667V320M298.6666666666667 256C334.08 256 362.6666666666667 227.4133333333334 362.6666666666667 192S334.08 128 298.6666666666667 128S234.6666666666667 156.5866666666667 234.6666666666667 192S263.2533333333334 256 298.6666666666667 256M192 277.3333333333334C192 253.8666666666667 172.8 234.6666666666667 149.3333333333333 234.6666666666667V149.3333333333334C172.8 149.3333333333334 192 130.1333333333333 192 106.6666666666667H405.3333333333333C405.3333333333333 130.1333333333333 424.5333333333333 149.3333333333334 448 149.3333333333334V234.6666666666667C424.5333333333333 234.6666666666667 405.3333333333333 253.8666666666667 405.3333333333333 277.3333333333334H192M21.3333333333333 234.6666666666667H64V21.3333333333334H405.3333333333333V-21.3333333333333H21.3333333333333V234.6666666666667z" />
712
- <glyph glyph-name="cash-usd"
713
- unicode="&#xF1EB;"
714
- horiz-adv-x="512" d=" M426.6666666666667 64H85.3333333333333V320H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V106.6666666666667H298.6666666666667C310.4 106.6666666666667 320 116.2666666666667 320 128V192C320 203.7333333333334 310.4 213.3333333333334 298.6666666666667 213.3333333333334H234.6666666666667V234.6666666666667H320V277.3333333333334H277.3333333333333V298.6666666666667H234.6666666666667V277.3333333333334H213.3333333333333C201.6 277.3333333333334 192 267.7333333333334 192 256V192C192 180.2666666666667 201.6 170.6666666666667 213.3333333333333 170.6666666666667H277.3333333333333V149.3333333333334H192V106.6666666666667H234.6666666666667V85.3333333333334z" />
715
- <glyph glyph-name="cast"
716
- unicode="&#xF1EC;"
717
- horiz-adv-x="512" d=" M21.3333333333333 234.6666666666667V192C127.36 192 213.3333333333333 106.0266666666666 213.3333333333333 0H256C256 129.7066666666667 150.8266666666667 234.6666666666667 21.3333333333333 234.6666666666667M21.3333333333333 149.3333333333334V106.6666666666667C80.2133333333333 106.6666666666667 128 58.88 128 0H170.6666666666667C170.6666666666667 82.5600000000001 103.8933333333333 149.3333333333334 21.3333333333333 149.3333333333334M21.3333333333333 64V0H85.3333333333333C85.3333333333333 35.4133333333334 56.7466666666667 64 21.3333333333333 64M448 384H64C40.32 384 21.3333333333333 365.0133333333333 21.3333333333333 341.3333333333334V277.3333333333334H64V341.3333333333334H448V42.6666666666667H298.6666666666667V0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 365.0133333333333 471.4666666666667 384 448 384z" />
718
- <glyph glyph-name="cast-connected"
719
- unicode="&#xF1ED;"
720
- horiz-adv-x="512" d=" M448 384H64C40.32 384 21.3333333333333 365.0133333333333 21.3333333333333 341.3333333333334V277.3333333333334H64V341.3333333333334H448V42.6666666666667H298.6666666666667V0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 365.0133333333333 471.4666666666667 384 448 384M21.3333333333333 234.6666666666667V192C127.36 192 213.3333333333333 106.0266666666666 213.3333333333333 0H256C256 129.7066666666667 150.8266666666667 234.6666666666667 21.3333333333333 234.6666666666667M405.3333333333333 298.6666666666667H106.6666666666667V263.8933333333334C191.1466666666667 236.5866666666667 257.92 169.8133333333334 285.2266666666667 85.3333333333334H405.3333333333333M21.3333333333333 149.3333333333334V106.6666666666667C80.2133333333333 106.6666666666667 128 58.88 128 0H170.6666666666667C170.6666666666667 82.5600000000001 103.8933333333333 149.3333333333334 21.3333333333333 149.3333333333334M21.3333333333333 64V0H85.3333333333333C85.3333333333333 35.4133333333334 56.7466666666667 64 21.3333333333333 64z" />
721
- <glyph glyph-name="castle"
722
- unicode="&#xF1EE;"
723
- horiz-adv-x="512" d=" M42.6666666666667 170.6666666666667H85.3333333333333V128H128V170.6666666666667H170.6666666666667V128H213.3333333333333V170.6666666666667H256V128H298.6666666666667V234.6666666666667L362.6666666666667 298.6666666666667V426.6666666666667H405.3333333333333L490.6666666666666 384L405.3333333333333 341.3333333333334V298.6666666666667L469.3333333333333 234.6666666666667V-21.3333333333333H234.6666666666667V42.6666666666667C234.6666666666667 66.1333333333334 215.4666666666667 85.3333333333334 192 85.3333333333334S149.3333333333333 66.1333333333334 149.3333333333333 42.6666666666667V-21.3333333333333H42.6666666666667V170.6666666666667M384 234.6666666666667C372.2666666666667 234.6666666666667 362.6666666666667 223.1466666666667 362.6666666666667 209.0666666666667V170.6666666666667H405.3333333333333V209.0666666666667C405.3333333333333 223.1466666666667 395.7333333333334 234.6666666666667 384 234.6666666666667z" />
724
- <glyph glyph-name="cat"
725
- unicode="&#xF1EF;"
726
- horiz-adv-x="512" d=" M256 277.3333333333334L227.6266666666667 275.4133333333334C209.28 297.1733333333334 157.8666666666667 352 106.6666666666667 352C106.6666666666667 352 64.64 288.8533333333334 105.8133333333333 204.5866666666667C94.08 186.88 86.8266666666667 177.7066666666667 85.3333333333333 156.5866666666667L44.16 150.4L48.64 129.4933333333334L86.1866666666667 135.04L89.1733333333333 119.8933333333334L55.68 99.84L65.7066666666667 80.8533333333334L96.64 99.84C121.1733333333333 47.7866666666666 183.2533333333333 21.3333333333334 256 21.3333333333334S390.8266666666667 47.7866666666666 415.36 99.84L446.2933333333333 80.8533333333334L456.3199999999999 99.84L422.8266666666666 119.8933333333333L425.8133333333333 135.04L463.36 129.4933333333334L467.84 150.4L426.6666666666667 156.5866666666667C425.1733333333333 177.7066666666667 417.92 186.88 406.1866666666666 204.5866666666667C447.36 288.8533333333334 405.3333333333333 352 405.3333333333333 352C354.1333333333334 352 302.7200000000001 297.1733333333334 284.3733333333334 275.4133333333334L256 277.3333333333334M192 213.3333333333334C203.7333333333334 213.3333333333334 213.3333333333333 203.7333333333334 213.3333333333333 192S203.7333333333334 170.6666666666667 192 170.6666666666667S170.6666666666667 180.2666666666667 170.6666666666667 192S180.2666666666667 213.3333333333334 192 213.3333333333334M320 213.3333333333334C331.7333333333334 213.3333333333334 341.3333333333333 203.7333333333334 341.3333333333333 192S331.7333333333334 170.6666666666667 320 170.6666666666667S298.6666666666667 180.2666666666667 298.6666666666667 192S308.2666666666667 213.3333333333334 320 213.3333333333334M234.6666666666667 149.3333333333334H277.3333333333333L262.4 119.68C266.6666666666667 106.0266666666666 278.6133333333334 96 293.3333333333333 96C311.04 96 325.3333333333333 110.2933333333334 325.3333333333333 128H336C336 104.5333333333333 316.8 85.3333333333334 293.3333333333333 85.3333333333334C277.3333333333333 85.3333333333334 263.4666666666667 94.08 256 106.6666666666667C248.5333333333334 94.08 234.6666666666667 85.3333333333334 218.6666666666667 85.3333333333334C195.2 85.3333333333334 176 104.5333333333333 176 128H186.6666666666667C186.6666666666667 110.2933333333334 200.96 96 218.6666666666667 96C233.3866666666667 96 245.3333333333333 106.0266666666666 249.6 119.68L234.6666666666667 149.3333333333334z" />
727
- <glyph glyph-name="cellphone"
728
- unicode="&#xF1F0;"
729
- horiz-adv-x="512" d=" M362.6666666666667 42.6666666666667H149.3333333333333V341.3333333333334H362.6666666666667M362.6666666666667 426.6666666666667H149.3333333333333C125.6533333333333 426.6666666666667 106.6666666666667 407.68 106.6666666666667 384V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.68 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667z" />
730
- <glyph glyph-name="cellphone-android"
731
- unicode="&#xF1F1;"
732
- horiz-adv-x="512" d=" M368 64H144V362.6666666666667H368M298.6666666666667 0H213.3333333333333V21.3333333333334H298.6666666666667M341.3333333333333 426.6666666666667H170.6666666666667C135.2533333333333 426.6666666666667 106.6666666666667 398.08 106.6666666666667 362.6666666666667V21.3333333333334C106.6666666666667 -14.08 135.2533333333333 -42.6666666666666 170.6666666666667 -42.6666666666666H341.3333333333333C376.7466666666667 -42.6666666666666 405.3333333333333 -14.08 405.3333333333333 21.3333333333334V362.6666666666667C405.3333333333333 398.08 376.7466666666667 426.6666666666667 341.3333333333333 426.6666666666667z" />
733
- <glyph glyph-name="cellphone-dock"
734
- unicode="&#xF1F2;"
735
- horiz-adv-x="512" d=" M341.3333333333333 128H170.6666666666667V341.3333333333334H341.3333333333333M341.3333333333333 426.6666666666667H170.6666666666667C146.9866666666667 426.6666666666667 128 407.68 128 384V85.3333333333334C128 61.8666666666667 147.2 42.6666666666667 170.6666666666667 42.6666666666667H341.3333333333333C364.8 42.6666666666667 384 61.8666666666667 384 85.3333333333334V384C384 407.68 364.8 426.6666666666667 341.3333333333333 426.6666666666667M170.6666666666667 -42.6666666666666H341.3333333333333V0H170.6666666666667V-42.6666666666666z" />
736
- <glyph glyph-name="cellphone-iphone"
737
- unicode="&#xF1F3;"
738
- horiz-adv-x="512" d=" M341.3333333333333 64H149.3333333333333V362.6666666666667H341.3333333333333M245.3333333333333 -21.3333333333333C227.6266666666667 -21.3333333333333 213.3333333333333 -7.04 213.3333333333333 10.6666666666667S227.6266666666667 42.6666666666667 245.3333333333333 42.6666666666667S277.3333333333333 28.3733333333333 277.3333333333333 10.6666666666667S263.04 -21.3333333333333 245.3333333333333 -21.3333333333333M330.6666666666667 426.6666666666667H160C130.56 426.6666666666667 106.6666666666667 402.7733333333333 106.6666666666667 373.3333333333334V10.6666666666667C106.6666666666667 -18.7733333333333 130.56 -42.6666666666666 160 -42.6666666666666H330.6666666666667C360.1066666666667 -42.6666666666666 384 -18.7733333333333 384 10.6666666666667V373.3333333333334C384 402.7733333333333 360.1066666666667 426.6666666666667 330.6666666666667 426.6666666666667z" />
739
- <glyph glyph-name="cellphone-link"
740
- unicode="&#xF1F4;"
741
- horiz-adv-x="512" d=" M469.3333333333333 85.3333333333334H384V234.6666666666667H469.3333333333333M490.6666666666666 277.3333333333334H362.6666666666667C350.9333333333333 277.3333333333334 341.3333333333333 267.7333333333334 341.3333333333333 256V42.6666666666667C341.3333333333333 30.9333333333333 350.9333333333333 21.3333333333334 362.6666666666667 21.3333333333334H490.6666666666666C502.4 21.3333333333334 512 30.9333333333333 512 42.6666666666667V256C512 267.7333333333334 502.4 277.3333333333334 490.6666666666666 277.3333333333334M85.3333333333333 320H469.3333333333333V362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V85.3333333333334H0V21.3333333333334H298.6666666666667V85.3333333333334H85.3333333333333V320z" />
742
- <glyph glyph-name="cellphone-link-off"
743
- unicode="&#xF1F5;"
744
- horiz-adv-x="512" d=" M490.6666666666666 277.3333333333334H362.6666666666667C350.9333333333333 277.3333333333334 341.3333333333333 267.7333333333334 341.3333333333333 256V166.8266666666667L384 124.16V234.6666666666667H469.3333333333333V85.3333333333334H422.8266666666667L486.8266666666667 21.3333333333334H490.6666666666666C502.4 21.3333333333334 512 30.9333333333333 512 42.6666666666667V256C512 267.7333333333334 502.4 277.3333333333334 490.6666666666666 277.3333333333334M85.3333333333333 314.24L314.24 85.3333333333334H85.3333333333333V314.24M40.96 412.8L13.8666666666667 385.7066666666667L52.6933333333333 346.88C46.5066666666667 339.6266666666667 42.6666666666667 330.6666666666667 42.6666666666667 320V85.3333333333334H0V21.3333333333334H378.24L428.3733333333334 -28.8L455.4666666666667 -1.7066666666667L82.9866666666667 370.7733333333333L40.96 412.8M469.3333333333333 320V362.6666666666667H145.4933333333334L188.16 320H469.3333333333333z" />
745
- <glyph glyph-name="cellphone-settings"
746
- unicode="&#xF1F6;"
747
- horiz-adv-x="512" d=" M341.3333333333333 106.6666666666667H170.6666666666667V362.6666666666667H341.3333333333333M341.3333333333333 448H170.6666666666667C147.2 448 128 428.8 128 405.3333333333333V64C128 40.5333333333333 147.2 21.3333333333334 170.6666666666667 21.3333333333334H341.3333333333333C364.8 21.3333333333334 384 40.5333333333333 384 64V405.3333333333333C384 428.8 364.8 448 341.3333333333333 448M320 -64H362.6666666666667V-21.3333333333333H320M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333V-64z" />
748
- <glyph glyph-name="chair-school"
749
- unicode="&#xF1F7;"
750
- horiz-adv-x="512" d=" M469.3333333333333 341.3333333333334V298.6666666666667H362.6666666666667L288.64 192H341.3333333333333V149.3333333333334H308.48L387.6266666666667 -21.3333333333333H340.6933333333334L320.8533333333334 21.3333333333334H136.1066666666667L114.1333333333333 -21.3333333333333H66.1333333333333L154.24 149.3333333333334H149.3333333333333C139.7333333333333 149.3333333333334 131.6266666666667 155.7333333333334 128.8533333333333 164.2666666666667L61.2266666666667 366.0800000000001L81.4933333333333 373.3333333333334C92.5866666666667 376.7466666666667 104.7466666666667 370.56 108.3733333333333 359.4666666666667L164.6933333333333 192H258.1333333333334L332.16 298.6666666666667H256V341.3333333333334H469.3333333333333M202.6666666666667 149.3333333333334L158.2933333333333 64H301.0133333333333L261.5466666666666 149.3333333333334H202.6666666666667z" />
751
- <glyph glyph-name="chart-arc"
752
- unicode="&#xF1F8;"
753
- horiz-adv-x="512" d=" M345.1733333333333 29.8666666666667L302.2933333333333 104.1066666666667C323.2 119.4666666666667 337.7066666666667 143.36 340.6933333333334 170.6666666666667H426.6666666666667C423.04 111.7866666666667 391.4666666666667 60.5866666666667 345.1733333333333 29.8666666666667M277.3333333333333 298.0266666666667V384C369.0666666666667 378.4533333333334 442.4533333333334 305.0666666666667 448 213.3333333333334H362.0266666666667C357.12 257.92 321.92 293.12 277.3333333333333 298.0266666666667M149.3333333333333 181.3333333333334C149.3333333333333 167.68 152.1066666666667 154.6666666666667 157.44 142.9333333333333L83.2 100.0533333333334C70.8266666666667 124.5866666666667 64 152.1066666666667 64 181.3333333333334C64 277.9733333333334 139.52 356.9066666666667 234.6666666666667 362.6666666666667V276.6933333333334C186.6666666666667 271.36 149.3333333333333 230.8266666666667 149.3333333333333 181.3333333333334M245.3333333333333 0C181.9733333333333 0 126.2933333333333 32 93.8666666666667 81.4933333333333L168.1066666666667 124.3733333333333C185.6 100.6933333333333 213.3333333333333 85.3333333333334 245.3333333333333 85.3333333333334C258.9866666666667 85.3333333333334 272 88.1066666666667 283.7333333333334 93.44L326.6133333333334 19.2C302.08 6.8266666666667 274.56 0 245.3333333333333 0z" />
754
- <glyph glyph-name="chart-areaspline"
755
- unicode="&#xF1F9;"
756
- horiz-adv-x="512" d=" M372.2666666666667 124.16L469.3333333333333 292.0533333333334V0H42.6666666666667V384H85.3333333333333V116.48L202.6666666666667 320L341.3333333333333 239.36L431.7866666666667 395.7333333333334L468.6933333333334 374.4000000000001L357.12 181.3333333333334L218.2400000000001 261.3333333333334L91.9466666666667 42.6666666666667H140.16L233.8133333333333 203.9466666666667L372.2666666666667 124.16z" />
757
- <glyph glyph-name="chart-bar"
758
- unicode="&#xF1FA;"
759
- horiz-adv-x="512" d=" M469.3333333333333 0H42.6666666666667V384H85.3333333333333V42.6666666666667H128V234.6666666666667H213.3333333333333V42.6666666666667H256V320H341.3333333333333V42.6666666666667H384V149.3333333333334H469.3333333333333V0z" />
760
- <glyph glyph-name="chart-histogram"
761
- unicode="&#xF1FB;"
762
- horiz-adv-x="512" d=" M64 384H106.6666666666667V170.6666666666667H192V298.6666666666667H277.3333333333333V213.3333333333334H362.6666666666667V128H448V0H64V384z" />
763
- <glyph glyph-name="chart-line"
764
- unicode="&#xF1FC;"
765
- horiz-adv-x="512" d=" M341.3333333333333 196.6933333333334L431.7866666666667 353.0666666666667L468.6933333333334 331.7333333333334L357.12 138.6666666666667L218.2400000000001 218.6666666666667L116.48 42.6666666666667H469.3333333333333V0H42.6666666666667V384H85.3333333333333V73.8133333333334L202.6666666666667 277.3333333333334L341.3333333333333 196.6933333333334z" />
766
- <glyph glyph-name="chart-pie"
767
- unicode="&#xF1FD;"
768
- horiz-adv-x="512" d=" M448 213.3333333333334H277.3333333333333V384C371.6266666666667 384 448 307.6266666666667 448 213.3333333333334M405.3333333333333 170.6666666666667C405.3333333333333 111.36 375.04 59.0933333333334 329.1733333333333 28.3733333333333L247.04 170.6666666666667H405.3333333333333M234.6666666666667 0C175.36 0 123.0933333333333 30.2933333333334 92.3733333333333 76.16L230.8266666666667 156.16L310.6133333333334 17.7066666666667C288 6.4 261.9733333333334 0 234.6666666666667 0M64 170.6666666666667C64 264.9600000000001 140.3733333333333 341.3333333333334 234.6666666666667 341.3333333333334V183.04L81.7066666666667 94.72C70.4 117.3333333333334 64 143.36 64 170.6666666666667z" />
769
- <glyph glyph-name="check"
770
- unicode="&#xF1FE;"
771
- horiz-adv-x="512" d=" M448 298.6666666666667L192 42.6666666666667L74.6666666666667 160L104.7466666666667 190.0800000000001L192 103.04L417.92 328.7466666666667L448 298.6666666666667z" />
772
- <glyph glyph-name="check-all"
773
- unicode="&#xF1FF;"
774
- horiz-adv-x="512" d=" M8.7466666666667 161.92L128 42.6666666666667L158.08 72.96L39.04 192M474.4533333333334 328.9600000000001L248.7466666666667 103.04L160 192L129.4933333333334 161.92L248.7466666666667 42.6666666666667L504.7466666666667 298.6666666666667M384 298.6666666666667L353.92 328.9600000000001L218.4533333333333 193.4933333333334L248.7466666666667 163.4133333333334L384 298.6666666666667z" />
775
- <glyph glyph-name="checkbox-blank"
776
- unicode="&#xF200;"
777
- horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
778
- <glyph glyph-name="checkbox-blank-circle"
779
- unicode="&#xF201;"
780
- horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
781
- <glyph glyph-name="checkbox-blank-circle-outline"
782
- unicode="&#xF202;"
783
- horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
784
- <glyph glyph-name="checkbox-blank-outline"
785
- unicode="&#xF203;"
786
- horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M405.3333333333333 341.3333333333334V42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333z" />
787
- <glyph glyph-name="checkbox-marked"
788
- unicode="&#xF204;"
789
- horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L106.6666666666667 192L136.7466666666667 222.2933333333334L213.3333333333333 145.7066666666667L375.2533333333334 307.6266666666667L405.3333333333333 277.3333333333334M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
790
- <glyph glyph-name="checkbox-marked-circle"
791
- unicode="&#xF205;"
792
- horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L106.6666666666667 192L136.7466666666667 222.2933333333334L213.3333333333333 145.7066666666667L375.2533333333334 307.6266666666667L405.3333333333333 277.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
793
- <glyph glyph-name="checkbox-marked-circle-outline"
794
- unicode="&#xF206;"
795
- horiz-adv-x="512" d=" M426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667C272.2133333333333 362.6666666666667 288 360.32 302.9333333333333 356.0533333333334L336.4266666666666 389.5466666666667C311.68 399.7866666666667 284.5866666666667 405.3333333333333 256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192M168.7466666666667 232.96L138.6666666666667 202.6666666666667L234.6666666666667 106.6666666666667L448 320L417.92 350.2933333333334L234.6666666666667 167.04L168.7466666666667 232.96z" />
796
- <glyph glyph-name="checkbox-marked-outline"
797
- unicode="&#xF207;"
798
- horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H320V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V213.3333333333334H405.3333333333333M168.7466666666667 232.96L138.6666666666667 202.6666666666667L234.6666666666667 106.6666666666667L448 320L417.92 350.2933333333334L234.6666666666667 167.04L168.7466666666667 232.96z" />
799
- <glyph glyph-name="checkbox-multiple-blank"
800
- unicode="&#xF208;"
801
- horiz-adv-x="512" d=" M469.3333333333333 106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333z" />
802
- <glyph glyph-name="checkbox-multiple-blank-outline"
803
- unicode="&#xF209;"
804
- horiz-adv-x="512" d=" M426.6666666666667 106.6666666666667V362.6666666666667H170.6666666666667V106.6666666666667H426.6666666666667M469.3333333333333 106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333z" />
805
- <glyph glyph-name="checkbox-multiple-marked"
806
- unicode="&#xF20A;"
807
- horiz-adv-x="512" d=" M469.3333333333333 106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333M277.3333333333333 149.3333333333334L426.6666666666667 298.6666666666667L396.5866666666667 328.7466666666667L277.3333333333333 209.7066666666667L211.4133333333333 275.4133333333334L181.3333333333333 245.3333333333334L277.3333333333333 149.3333333333334z" />
808
- <glyph glyph-name="checkbox-multiple-marked-outline"
809
- unicode="&#xF20B;"
810
- horiz-adv-x="512" d=" M426.6666666666667 106.6666666666667V234.6666666666667H469.3333333333333V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H341.3333333333333V362.6666666666667H170.6666666666667V106.6666666666667H426.6666666666667M232.7466666666667 296.9600000000001L298.6666666666667 231.04L439.2533333333334 371.6266666666667L469.3333333333333 341.3333333333334L298.6666666666667 170.6666666666667L202.6666666666667 266.6666666666667L232.7466666666667 296.9600000000001M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333z" />
811
- <glyph glyph-name="checkerboard"
812
- unicode="&#xF20C;"
813
- horiz-adv-x="512" d=" M64 384H448V0H64V384M106.6666666666667 341.3333333333334V192H256V42.6666666666667H405.3333333333333V192H256V341.3333333333334H106.6666666666667z" />
814
- <glyph glyph-name="chevron-double-down"
815
- unicode="&#xF20D;"
816
- horiz-adv-x="512" d=" M353.92 328.7466666666667L384 298.6666666666667L256 170.6666666666667L128 298.6666666666667L158.08 328.7466666666667L256 231.04L353.92 328.7466666666667M353.92 200.7466666666667L384 170.6666666666667L256 42.6666666666667L128 170.6666666666667L158.08 200.7466666666667L256 103.04L353.92 200.7466666666667z" />
817
- <glyph glyph-name="chevron-double-left"
818
- unicode="&#xF20E;"
819
- horiz-adv-x="512" d=" M392.7466666666667 289.92L362.6666666666667 320L234.6666666666667 192L362.6666666666667 64L392.7466666666667 94.08L295.04 192L392.7466666666667 289.92M264.7466666666667 289.92L234.6666666666667 320L106.6666666666667 192L234.6666666666667 64L264.7466666666667 94.08L167.04 192L264.7466666666667 289.92z" />
820
- <glyph glyph-name="chevron-double-right"
821
- unicode="&#xF20F;"
822
- horiz-adv-x="512" d=" M119.2533333333333 289.92L149.3333333333333 320L277.3333333333333 192L149.3333333333333 64L119.2533333333333 94.08L216.96 192L119.2533333333333 289.92M247.2533333333334 289.92L277.3333333333333 320L405.3333333333333 192L277.3333333333333 64L247.2533333333334 94.08L344.9600000000001 192L247.2533333333334 289.92z" />
823
- <glyph glyph-name="chevron-double-up"
824
- unicode="&#xF210;"
825
- horiz-adv-x="512" d=" M158.08 55.2533333333333L128 85.3333333333334L256 213.3333333333334L384 85.3333333333334L353.92 55.2533333333333L256 152.96L158.08 55.2533333333333M158.08 183.2533333333333L128 213.3333333333334L256 341.3333333333334L384 213.3333333333334L353.92 183.2533333333333L256 280.9600000000001L158.08 183.2533333333333z" />
826
- <glyph glyph-name="chevron-down"
827
- unicode="&#xF211;"
828
- horiz-adv-x="512" d=" M158.08 264.9600000000001L256 167.04L353.92 264.9600000000001L384 234.6666666666667L256 106.6666666666667L128 234.6666666666667L158.08 264.9600000000001z" />
829
- <glyph glyph-name="chevron-left"
830
- unicode="&#xF212;"
831
- horiz-adv-x="512" d=" M328.7466666666667 94.2933333333334L231.04 192L328.7466666666667 289.92L298.6666666666667 320L170.6666666666667 192L298.6666666666667 64L328.7466666666667 94.2933333333334z" />
832
- <glyph glyph-name="chevron-right"
833
- unicode="&#xF213;"
834
- horiz-adv-x="512" d=" M183.2533333333333 94.2933333333334L280.96 192L183.2533333333333 289.92L213.3333333333333 320L341.3333333333333 192L213.3333333333333 64L183.2533333333333 94.2933333333334z" />
835
- <glyph glyph-name="chevron-up"
836
- unicode="&#xF214;"
837
- horiz-adv-x="512" d=" M158.08 119.2533333333333L256 216.96L353.92 119.2533333333333L384 149.3333333333334L256 277.3333333333334L128 149.3333333333334L158.08 119.2533333333333z" />
838
- <glyph glyph-name="church"
839
- unicode="&#xF215;"
840
- horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H277.3333333333333V362.6666666666667H320V320H277.3333333333333V247.4666666666667L469.3333333333333 170.6666666666667V128L426.6666666666667 145.0666666666667V-21.3333333333333H298.6666666666667V85.3333333333334C298.6666666666667 108.8 279.4666666666667 128 256 128S213.3333333333333 108.8 213.3333333333333 85.3333333333334V-21.3333333333333H85.3333333333333V145.0666666666667L42.6666666666667 128V170.6666666666667L234.6666666666667 247.4666666666667V320H192V362.6666666666667H234.6666666666667V405.3333333333333M128 21.3333333333334H170.6666666666667V128L149.3333333333333 149.3333333333334L128 128V21.3333333333334M341.3333333333333 21.3333333333334H384V128L362.6666666666667 149.3333333333334L341.3333333333333 128V21.3333333333334z" />
841
- <glyph glyph-name="cisco-webex"
842
- unicode="&#xF216;"
843
- horiz-adv-x="512" d=" M256 384C362.0266666666667 384 448 298.0266666666667 448 192S362.0266666666667 0 256 0S64 85.9733333333334 64 192S149.9733333333333 384 256 384M126.72 266.6666666666667C85.3333333333333 195.2 109.8666666666667 103.8933333333334 181.3333333333333 62.72C252.8 21.3333333333334 402.1333333333334 280.1066666666667 330.6666666666667 321.2800000000001C259.2 362.6666666666667 167.8933333333333 338.1333333333334 126.72 266.6666666666667z" />
844
- <glyph glyph-name="city"
845
- unicode="&#xF217;"
846
- horiz-adv-x="512" d=" M405.3333333333333 128H362.6666666666667V170.6666666666667H405.3333333333333M405.3333333333333 42.6666666666667H362.6666666666667V85.3333333333334H405.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V341.3333333333334H277.3333333333333M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333M277.3333333333333 128H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M149.3333333333333 213.3333333333334H106.6666666666667V256H149.3333333333333M149.3333333333333 128H106.6666666666667V170.6666666666667H149.3333333333333M149.3333333333333 42.6666666666667H106.6666666666667V85.3333333333334H149.3333333333333M320 213.3333333333334V341.3333333333334L256 405.3333333333333L192 341.3333333333334V298.6666666666667H64V0H448V213.3333333333334H320z" />
847
- <glyph glyph-name="clipboard"
848
- unicode="&#xF218;"
849
- horiz-adv-x="512" d=" M192 362.6666666666667C192 398.08 220.5866666666667 426.6666666666667 256 426.6666666666667S320 398.08 320 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H192M256 384C244.2666666666667 384 234.6666666666667 374.4 234.6666666666667 362.6666666666667S244.2666666666667 341.3333333333334 256 341.3333333333334S277.3333333333333 350.9333333333334 277.3333333333333 362.6666666666667S267.7333333333334 384 256 384z" />
850
- <glyph glyph-name="clipboard-account"
851
- unicode="&#xF219;"
852
- horiz-adv-x="512" d=" M384 42.6666666666667H128V72.5333333333333C128 115.2 213.3333333333333 138.6666666666666 256 138.6666666666666S384 115.2 384 72.5333333333333M256 298.6666666666667C291.4133333333333 298.6666666666667 320 270.0800000000001 320 234.6666666666667S291.4133333333333 170.6666666666667 256 170.6666666666667S192 199.2533333333333 192 234.6666666666667S220.5866666666667 298.6666666666667 256 298.6666666666667M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
853
- <glyph glyph-name="clipboard-alert"
854
- unicode="&#xF21A;"
855
- horiz-adv-x="512" d=" M256 341.3333333333334C244.2666666666667 341.3333333333334 234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384S277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334M277.3333333333333 149.3333333333334H234.6666666666667V277.3333333333334H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
856
- <glyph glyph-name="clipboard-arrow-down"
857
- unicode="&#xF21B;"
858
- horiz-adv-x="512" d=" M256 64L149.3333333333333 170.6666666666667H213.3333333333333V256H298.6666666666667V170.6666666666667H362.6666666666667M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
859
- <glyph glyph-name="clipboard-arrow-left"
860
- unicode="&#xF21C;"
861
- horiz-adv-x="512" d=" M341.3333333333333 128H256V64L149.3333333333333 170.6666666666667L256 277.3333333333334V213.3333333333334H341.3333333333333M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
862
- <glyph glyph-name="clipboard-check"
863
- unicode="&#xF21D;"
864
- horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L128 170.6666666666667L158.08 200.7466666666667L213.3333333333333 145.7066666666667L353.92 286.2933333333334L384 256M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
865
- <glyph glyph-name="clipboard-outline"
866
- unicode="&#xF21E;"
867
- horiz-adv-x="512" d=" M149.3333333333333 277.3333333333334V320H106.6666666666667V42.6666666666667H405.3333333333333V320H362.6666666666667V277.3333333333334H149.3333333333333M192 362.6666666666667C192 398.08 220.5866666666667 426.6666666666667 256 426.6666666666667S320 398.08 320 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H192M256 384C244.2666666666667 384 234.6666666666667 374.4 234.6666666666667 362.6666666666667S244.2666666666667 341.3333333333334 256 341.3333333333334S277.3333333333333 350.9333333333334 277.3333333333333 362.6666666666667S267.7333333333334 384 256 384z" />
868
- <glyph glyph-name="clipboard-text"
869
- unicode="&#xF21F;"
870
- horiz-adv-x="512" d=" M362.6666666666667 256H149.3333333333333V298.6666666666667H362.6666666666667M362.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667M298.6666666666667 85.3333333333334H149.3333333333333V128H298.6666666666667M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
871
- <glyph glyph-name="clippy"
872
- unicode="&#xF220;"
873
- horiz-adv-x="512" d=" M320 117.3333333333334C320 87.8933333333334 296.1066666666667 64 266.6666666666667 64S213.3333333333333 87.8933333333334 213.3333333333333 117.3333333333334V154.6666666666667C213.3333333333333 163.4133333333334 220.5866666666667 170.6666666666667 229.3333333333333 170.6666666666667S245.3333333333333 163.4133333333334 245.3333333333333 154.6666666666667V117.3333333333334C245.3333333333333 105.6 254.9333333333333 96 266.6666666666667 96S288 105.6 288 117.3333333333334V194.3466666666667C269.44 200.32 256 216.1066666666667 256 234.6666666666667C256 258.1333333333334 277.3333333333333 277.3333333333334 304 277.3333333333334S352 258.1333333333334 352 234.6666666666667C352 216.1066666666667 338.56 200.32 320 194.3466666666667V117.3333333333334M176 277.3333333333334C202.6666666666667 277.3333333333334 224 258.1333333333334 224 234.6666666666667C224 216.1066666666667 210.56 200.32 192 194.3466666666667V80C192 41.8133333333334 223.1466666666667 10.6666666666667 261.3333333333333 10.6666666666667S330.6666666666667 41.8133333333334 330.6666666666667 80V154.6666666666667C330.6666666666667 163.4133333333334 337.92 170.6666666666667 346.6666666666667 170.6666666666667S362.6666666666667 163.4133333333334 362.6666666666667 154.6666666666667V80C362.6666666666667 24.1066666666667 317.2266666666667 -21.3333333333333 261.3333333333333 -21.3333333333333S160 24.1066666666667 160 80V194.3466666666667C141.44 200.32 128 216.1066666666667 128 234.6666666666667C128 258.1333333333334 149.3333333333333 277.3333333333334 176 277.3333333333334M214.6133333333334 317.2266666666667L205.44 286.0800000000001C196.6933333333333 290.7733333333333 186.6666666666667 293.3333333333334 176 293.3333333333334C156.5866666666667 293.3333333333334 139.3066666666667 284.8 128.64 271.5733333333334L103.04 290.7733333333334C116.48 307.8400000000001 136.7466666666667 320 160 324.0533333333334V325.3333333333334C160 369.4933333333334 195.84 405.3333333333333 240 405.3333333333333C284.16 405.3333333333333 320 369.4933333333334 320 325.3333333333334V324.0533333333334C343.2533333333334 320 363.52 307.8400000000001 376.9600000000001 290.7733333333334L351.36 271.5733333333334C340.6933333333334 284.8 323.4133333333334 293.3333333333334 304 293.3333333333334C293.3333333333334 293.3333333333334 283.3066666666667 290.7733333333333 274.56 286.0800000000001L265.3866666666667 317.2266666666667C272.4266666666667 320 280.1066666666667 322.7733333333333 288 324.0533333333334V325.3333333333334C288 352 266.6666666666667 373.3333333333334 240.0000000000001 373.3333333333334S192 352 192 325.3333333333334V324.0533333333334C199.8933333333333 322.7733333333334 207.5733333333333 320 214.6133333333334 317.2266666666667M304 250.6666666666667C292.2666666666667 250.6666666666667 282.6666666666667 243.4133333333334 282.6666666666667 234.6666666666667S292.2666666666667 218.6666666666667 304 218.6666666666667S325.3333333333333 225.92 325.3333333333333 234.6666666666667S315.7333333333334 250.6666666666667 304 250.6666666666667M176 250.6666666666667C164.2666666666667 250.6666666666667 154.6666666666667 243.4133333333334 154.6666666666667 234.6666666666667S164.2666666666667 218.6666666666667 176 218.6666666666667S197.3333333333333 225.92 197.3333333333333 234.6666666666667S187.7333333333334 250.6666666666667 176 250.6666666666667z" />
874
- <glyph glyph-name="clock"
875
- unicode="&#xF221;"
876
- horiz-adv-x="512" d=" M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333C138.0266666666667 -21.3333333333333 42.6666666666667 74.6666666666667 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M266.6666666666667 298.6666666666667V186.6666666666667L362.6666666666667 129.7066666666667L346.6666666666667 103.4666666666667L234.6666666666667 170.6666666666667V298.6666666666667H266.6666666666667z" />
877
- <glyph glyph-name="clock-fast"
878
- unicode="&#xF222;"
879
- horiz-adv-x="512" d=" M320 362.6666666666667C414.2933333333334 362.6666666666667 490.6666666666666 286.2933333333334 490.6666666666666 192S414.2933333333334 21.3333333333334 320 21.3333333333334S149.3333333333333 97.7066666666667 149.3333333333333 192S225.7066666666667 362.6666666666667 320 362.6666666666667M320 320C249.3866666666667 320 192 262.6133333333334 192 192S249.3866666666667 64 320 64S448 121.3866666666667 448 192S390.6133333333333 320 320 320M298.6666666666667 277.3333333333334H330.6666666666667V196.6933333333334L380.3733333333333 146.9866666666667L357.76 124.3733333333333L298.6666666666667 183.4666666666667V277.3333333333334M42.6666666666667 64C30.9333333333333 64 21.3333333333333 73.6 21.3333333333333 85.3333333333334S30.9333333333333 106.6666666666667 42.6666666666667 106.6666666666667H124.3733333333333C130.9866666666667 91.52 139.52 77.2266666666667 149.3333333333333 64H42.6666666666667M64 170.6666666666667C52.2666666666667 170.6666666666667 42.6666666666667 180.2666666666667 42.6666666666667 192S52.2666666666667 213.3333333333334 64 213.3333333333334H107.7333333333333L106.6666666666667 192L107.7333333333333 170.6666666666667H64M85.3333333333333 277.3333333333334C73.6 277.3333333333334 64 286.9333333333334 64 298.6666666666667S73.6 320 85.3333333333333 320H149.3333333333333C139.52 306.7733333333333 130.9866666666667 292.48 124.3733333333333 277.3333333333334H85.3333333333333z" />
880
- <glyph glyph-name="close"
881
- unicode="&#xF223;"
882
- horiz-adv-x="512" d=" M405.3333333333333 311.2533333333334L375.2533333333334 341.3333333333334L256 222.08L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.7466666666667L136.7466666666667 42.6666666666667L256 161.92L375.2533333333334 42.6666666666667L405.3333333333333 72.7466666666667L286.08 192L405.3333333333333 311.2533333333334z" />
883
- <glyph glyph-name="close-box"
884
- unicode="&#xF224;"
885
- horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M332.8 85.3333333333334L256 162.1333333333333L179.2 85.3333333333334L149.3333333333333 115.2000000000001L226.1333333333334 192L149.3333333333333 268.8L179.2 298.6666666666667L256 221.8666666666667L332.8 298.6666666666667L362.6666666666667 268.8L285.8666666666667 192L362.6666666666667 115.2000000000001L332.8 85.3333333333334z" />
886
- <glyph glyph-name="close-box-outline"
887
- unicode="&#xF225;"
888
- horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M362.6666666666667 268.8L285.8666666666667 192L362.6666666666667 115.2000000000001L332.8 85.3333333333334L256 162.1333333333333L179.2 85.3333333333334L149.3333333333333 115.2000000000001L226.1333333333334 192L149.3333333333333 268.8L179.2 298.6666666666667L256 221.8666666666667L332.8 298.6666666666667L362.6666666666667 268.8z" />
889
- <glyph glyph-name="close-circle"
890
- unicode="&#xF226;"
891
- horiz-adv-x="512" d=" M256 405.3333333333333C373.9733333333334 405.3333333333333 469.3333333333333 309.9733333333334 469.3333333333333 192S373.9733333333334 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.0266666666666 42.6666666666667 192S138.0266666666667 405.3333333333333 256 405.3333333333333M332.5866666666667 298.6666666666667L256 222.08L179.4133333333333 298.6666666666667L149.3333333333333 268.5866666666667L225.92 192L149.3333333333333 115.4133333333334L179.4133333333333 85.3333333333334L256 161.92L332.5866666666667 85.3333333333334L362.6666666666667 115.4133333333334L286.08 192L362.6666666666667 268.5866666666667L332.5866666666667 298.6666666666667z" />
892
- <glyph glyph-name="close-circle-outline"
893
- unicode="&#xF227;"
894
- horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.9733333333334 42.6666666666667 192S138.0266666666667 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.0266666666666 469.3333333333333 192S373.9733333333334 405.3333333333333 256 405.3333333333333M311.2533333333334 277.3333333333334L256 222.08L200.7466666666667 277.3333333333334L170.6666666666667 247.2533333333334L225.92 192L170.6666666666667 136.7466666666667L200.7466666666667 106.6666666666667L256 161.92L311.2533333333334 106.6666666666667L341.3333333333333 136.7466666666667L286.08 192L341.3333333333333 247.2533333333334L311.2533333333334 277.3333333333334z" />
895
- <glyph glyph-name="close-network"
896
- unicode="&#xF228;"
897
- horiz-adv-x="512" d=" M311.2533333333334 320L256 264.7466666666667L200.7466666666667 320L170.6666666666667 289.92L225.92 234.6666666666667L170.6666666666667 179.4133333333334L200.7466666666667 149.3333333333334L256 204.5866666666667L311.2533333333334 149.3333333333334L341.3333333333333 179.4133333333334L286.08 234.6666666666667L341.3333333333333 289.92L311.2533333333334 320M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667z" />
898
- <glyph glyph-name="closed-caption"
899
- unicode="&#xF229;"
900
- horiz-adv-x="512" d=" M384 213.3333333333334H352V224H309.3333333333333V160H352V170.6666666666667H384V149.3333333333334C384 137.6 374.4 128 362.6666666666667 128H298.6666666666667C286.9333333333333 128 277.3333333333333 137.6 277.3333333333333 149.3333333333334V234.6666666666667C277.3333333333333 246.4000000000001 286.9333333333333 256 298.6666666666667 256H362.6666666666667C374.4 256 384 246.4000000000001 384 234.6666666666667M234.6666666666667 213.3333333333334H202.6666666666667V224H160V160H202.6666666666667V170.6666666666667H234.6666666666667V149.3333333333334C234.6666666666667 137.6 225.0666666666667 128 213.3333333333333 128H149.3333333333333C137.6 128 128 137.6 128 149.3333333333334V234.6666666666667C128 246.4000000000001 137.6 256 149.3333333333333 256H213.3333333333333C225.0666666666667 256 234.6666666666667 246.4000000000001 234.6666666666667 234.6666666666667M405.3333333333333 362.6666666666667H106.6666666666667C82.9866666666667 362.6666666666667 64 343.68 64 320V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V320C448 343.68 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
901
- <glyph glyph-name="cloud"
902
- unicode="&#xF22A;"
903
- horiz-adv-x="512" d=" M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
904
- <glyph glyph-name="cloud-check"
905
- unicode="&#xF22B;"
906
- horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L138.6666666666667 160L168.7466666666667 190.2933333333334L213.3333333333333 145.7066666666667L323.84 256L353.92 225.92M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
907
- <glyph glyph-name="cloud-circle"
908
- unicode="&#xF22C;"
909
- horiz-adv-x="512" d=" M352 106.6666666666667H170.6666666666667C135.2533333333333 106.6666666666667 106.6666666666667 135.2533333333333 106.6666666666667 170.6666666666667S135.2533333333333 234.6666666666667 170.6666666666667 234.6666666666667H173.6533333333333C183.04 271.36 216.1066666666667 298.6666666666667 256 298.6666666666667C303.1466666666667 298.6666666666667 341.3333333333333 260.48 341.3333333333333 213.3333333333334H352C381.44 213.3333333333334 405.3333333333333 189.44 405.3333333333333 160S381.44 106.6666666666667 352 106.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
910
- <glyph glyph-name="cloud-download"
911
- unicode="&#xF22D;"
912
- horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667L256 64L149.3333333333333 170.6666666666667H213.3333333333333V256H298.6666666666667V170.6666666666667M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
913
- <glyph glyph-name="cloud-outline"
914
- unicode="&#xF22E;"
915
- horiz-adv-x="512" d=" M405.3333333333333 64H128C80.8533333333333 64 42.6666666666667 102.1866666666667 42.6666666666667 149.3333333333334S80.8533333333333 234.6666666666667 128 234.6666666666667H143.1466666666667C157.2266666666667 283.9466666666667 202.6666666666667 320 256 320C320.8533333333333 320 373.3333333333333 267.52 373.3333333333333 202.6666666666667V192H405.3333333333333C440.7466666666667 192 469.3333333333333 163.4133333333334 469.3333333333333 128S440.7466666666667 64 405.3333333333333 64M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
916
- <glyph glyph-name="cloud-outline-off"
917
- unicode="&#xF22F;"
918
- horiz-adv-x="512" d=" M164.9066666666667 234.6666666666667L335.5733333333333 64H128C80.8533333333333 64 42.6666666666667 102.1866666666667 42.6666666666667 149.3333333333334S80.8533333333333 234.6666666666667 128 234.6666666666667M64 335.5733333333334L122.6666666666667 277.3333333333334C54.6133333333333 274.1333333333334 0 218.24 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H378.24L420.9066666666667 -21.3333333333333L448 5.76L91.0933333333333 362.6666666666667M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C224 362.6666666666667 195.2 353.4933333333334 170.6666666666667 337.7066666666667L201.6 306.56C217.8133333333333 315.0933333333334 236.3733333333334 320 256 320C320.8533333333333 320 373.3333333333333 267.52 373.3333333333333 202.6666666666667V192H405.3333333333333C440.7466666666667 192 469.3333333333333 163.4133333333334 469.3333333333333 128C469.3333333333333 103.8933333333334 455.6799999999999 82.9866666666667 436.0533333333334 72.1066666666667L466.9866666666667 41.1733333333333C494.08 60.5866666666667 512 92.16 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
919
- <glyph glyph-name="cloud-upload"
920
- unicode="&#xF230;"
921
- horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667V85.3333333333334H213.3333333333333V170.6666666666667H149.3333333333333L256 277.3333333333334L362.6666666666667 170.6666666666667M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
922
- <glyph glyph-name="code-array"
923
- unicode="&#xF231;"
924
- horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M128 320V64H213.3333333333333V106.6666666666667H170.6666666666667V277.3333333333334H213.3333333333333V320H128M341.3333333333333 106.6666666666667H298.6666666666667V64H384V320H298.6666666666667V277.3333333333334H341.3333333333333V106.6666666666667z" />
925
- <glyph glyph-name="code-braces"
926
- unicode="&#xF232;"
927
- horiz-adv-x="512" d=" M170.6666666666667 384C147.2 384 128 364.8 128 341.3333333333334V256C128 232.5333333333334 108.8 213.3333333333334 85.3333333333333 213.3333333333334H64V170.6666666666667H85.3333333333333C108.8 170.6666666666667 128 151.4666666666667 128 128V42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H213.3333333333333V42.6666666666667H170.6666666666667V149.3333333333334C170.6666666666667 172.8 151.4666666666667 192 128 192C151.4666666666667 192 170.6666666666667 211.2 170.6666666666667 234.6666666666667V341.3333333333334H213.3333333333333V384M341.3333333333333 384C364.8 384 384 364.8 384 341.3333333333334V256C384 232.5333333333334 403.2 213.3333333333334 426.6666666666667 213.3333333333334H448V170.6666666666667H426.6666666666667C403.2 170.6666666666667 384 151.4666666666667 384 128V42.6666666666667C384 19.2 364.8 0 341.3333333333333 0H298.6666666666667V42.6666666666667H341.3333333333333V149.3333333333334C341.3333333333333 172.8 360.5333333333333 192 384 192C360.5333333333333 192 341.3333333333333 211.2 341.3333333333333 234.6666666666667V341.3333333333334H298.6666666666667V384H341.3333333333333z" />
928
- <glyph glyph-name="code-equal"
929
- unicode="&#xF233;"
930
- horiz-adv-x="512" d=" M128 170.6666666666667H234.6666666666667V128H128M277.3333333333333 170.6666666666667H384V128H277.3333333333333M277.3333333333333 256H384V213.3333333333334H277.3333333333333M128 256H234.6666666666667V213.3333333333334H128M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
931
- <glyph glyph-name="code-greater-than"
932
- unicode="&#xF234;"
933
- horiz-adv-x="512" d=" M222.08 289.92L320 192L222.08 93.8666666666667L192 124.16L259.84 192L192 259.8400000000001M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
934
- <glyph glyph-name="code-less-than"
935
- unicode="&#xF235;"
936
- horiz-adv-x="512" d=" M289.92 289.92L192 192L289.92 93.8666666666667L320 124.16L252.16 192L320 259.8400000000001M405.3333333333333 384C429.0133333333333 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333z" />
937
- <glyph glyph-name="code-less-than-or-equal"
938
- unicode="&#xF236;"
939
- horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H384V128H277.3333333333333M277.3333333333333 256H384V213.3333333333334H277.3333333333333M215.2533333333333 289.92L245.3333333333333 259.8400000000001L177.4933333333334 192L245.3333333333333 124.16L215.2533333333333 93.8666666666667L117.3333333333333 192M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
940
- <glyph glyph-name="code-not-equal"
941
- unicode="&#xF237;"
942
- horiz-adv-x="512" d=" M128 128H170.6666666666667V85.3333333333334H128M234.6666666666667 170.6666666666667H384V128H234.6666666666667M234.6666666666667 256H384V213.3333333333334H234.6666666666667M128 298.6666666666667H170.6666666666667V170.6666666666667H128M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
943
- <glyph glyph-name="code-not-equal-variant"
944
- unicode="&#xF238;"
945
- horiz-adv-x="512" d=" M234.6666666666667 309.3333333333334V248.96L177.7066666666667 192L234.6666666666667 135.04V74.6666666666667L117.3333333333333 192M277.3333333333333 310.8266666666667L396.16 192L277.3333333333333 73.1733333333334V133.5466666666667L335.7866666666667 192L277.3333333333333 250.4533333333334M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
946
- <glyph glyph-name="code-string"
947
- unicode="&#xF239;"
948
- horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M266.6666666666667 213.3333333333334H245.3333333333333C227.6266666666667 213.3333333333334 213.3333333333333 227.6266666666667 213.3333333333333 245.3333333333334S227.6266666666667 277.3333333333334 245.3333333333333 277.3333333333334H266.6666666666667C284.3733333333334 277.3333333333334 298.6666666666667 263.04 298.6666666666667 245.3333333333334H341.3333333333333C341.3333333333333 286.5066666666667 307.84 320 266.6666666666667 320H245.3333333333333C204.16 320 170.6666666666667 286.5066666666667 170.6666666666667 245.3333333333334S204.16 170.6666666666667 245.3333333333333 170.6666666666667H266.6666666666667C284.3733333333334 170.6666666666667 298.6666666666667 156.3733333333333 298.6666666666667 138.6666666666667S284.3733333333334 106.6666666666667 266.6666666666667 106.6666666666667H245.3333333333333C227.6266666666667 106.6666666666667 213.3333333333333 120.96 213.3333333333333 138.6666666666667H170.6666666666667C170.6666666666667 97.4933333333333 204.16 64 245.3333333333333 64H266.6666666666667C307.84 64 341.3333333333333 97.4933333333333 341.3333333333333 138.6666666666667S307.84 213.3333333333334 266.6666666666667 213.3333333333334z" />
949
- <glyph glyph-name="code-tags"
950
- unicode="&#xF23A;"
951
- horiz-adv-x="512" d=" M311.4666666666667 93.8666666666667L409.6 192L311.4666666666667 290.1333333333334L341.3333333333333 320L469.3333333333333 192L341.3333333333333 64L311.4666666666667 93.8666666666667M200.5333333333333 93.8666666666667L102.4 192L200.5333333333333 290.1333333333334L170.6666666666667 320L42.6666666666667 192L170.6666666666667 64L200.5333333333333 93.8666666666667z" />
952
- <glyph glyph-name="codepen"
953
- unicode="&#xF23B;"
954
- horiz-adv-x="512" d=" M414.9333333333333 164.48L373.3333333333333 192L414.9333333333333 219.52M272.4266666666666 47.36V124.3733333333333L344.1066666666667 172.16L401.7066666666666 133.5466666666666M256 152.96L197.5466666666667 192L256 231.04L314.4533333333333 192M239.5733333333333 47.36L110.2933333333334 133.5466666666666L167.8933333333334 172.16L239.5733333333333 124.3733333333333M97.0666666666667 219.52L138.6666666666667 192L97.0666666666667 164.48M239.5733333333333 336.6400000000001V259.6266666666667L167.8933333333334 211.84L110.2933333333334 250.4533333333334M272.4266666666666 336.6400000000001L401.7066666666666 250.4533333333334L344.1066666666667 211.84L272.4266666666666 259.6266666666667M448 252.5866666666667V253.4400000000001C448 253.8666666666667 448 254.2933333333334 447.36 254.7200000000001C447.36 254.9333333333334 447.36 255.36 447.1466666666666 256.0000000000001C447.1466666666666 256.0000000000001 446.9333333333332 256.0000000000001 446.7199999999999 256.8533333333334C446.7199999999999 257.0666666666667 446.5066666666666 257.2800000000001 446.2933333333333 257.4933333333334C446.2933333333333 257.92 446.08 258.3466666666667 445.8666666666666 258.5600000000001C445.6533333333333 258.9866666666667 445.44 259.2000000000001 445.44 259.4133333333334C445.2266666666666 259.8400000000001 444.8 260.0533333333334 444.5866666666667 260.48C444.3733333333333 260.6933333333334 444.3733333333333 260.9066666666667 444.16 261.12C444.16 261.5466666666667 443.7333333333334 261.9733333333334 443.3066666666667 261.9733333333334L442.6666666666667 262.6133333333334C442.24 263.04 442.0266666666667 263.2533333333334 441.6 263.4666666666667L440.9599999999999 264.1066666666667C440.7466666666666 264.1066666666667 440.7466666666666 264.1066666666667 440.7466666666666 264.32L265.1733333333333 381.2266666666667C259.6266666666666 384.8533333333333 252.3733333333333 384.8533333333333 246.8266666666666 381.2266666666667L71.2533333333333 264.3200000000001C71.2533333333333 264.1066666666667 71.2533333333333 264.1066666666667 71.04 264.1066666666667L70.4 263.4666666666667C69.9733333333333 263.2533333333334 69.76 263.0400000000001 69.3333333333333 262.6133333333334L68.6933333333333 261.9733333333334L67.84 261.1200000000001C67.6266666666667 260.9066666666668 67.6266666666667 260.6933333333335 67.4133333333333 260.4800000000002C67.2 260.0533333333335 66.7733333333333 259.8400000000002 66.56 259.4133333333334C66.56 259.2000000000001 66.3466666666667 258.9866666666668 66.1333333333333 258.5600000000001C65.92 258.3466666666668 65.7066666666667 257.9200000000002 65.7066666666667 257.4933333333335C65.4933333333333 257.2800000000001 65.28 257.0666666666668 65.28 256.8533333333335C65.0666666666667 256.0000000000001 65.0666666666667 256.0000000000001 64.8533333333333 256.0000000000001C64.64 255.3600000000002 64.64 254.9333333333335 64.64 254.7200000000001C64 254.2933333333334 64 253.8666666666667 64 253.4400000000001V130.5600000000001C64 130.1333333333334 64 129.7066666666667 64.64 129.28C64.64 129.0666666666667 64.64 128.6400000000001 64.8533333333333 128C65.0666666666667 128 65.0666666666667 128 65.28 127.1466666666667C65.28 126.9333333333334 65.4933333333333 126.72 65.7066666666667 126.5066666666667C65.7066666666667 126.0800000000001 65.92 125.6533333333334 66.1333333333333 125.4400000000001C66.3466666666667 125.0133333333334 66.56 124.8000000000001 66.56 124.5866666666667C66.7733333333333 124.1600000000001 67.2 123.9466666666667 67.4133333333333 123.5200000000001C67.6266666666667 123.3066666666667 67.6266666666667 123.0933333333334 67.84 122.8800000000001C68.2666666666667 122.6666666666668 68.48 122.2400000000001 68.6933333333333 122.0266666666668L69.3333333333333 121.3866666666668C69.76 120.9600000000001 69.9733333333333 120.7466666666668 70.4 120.5333333333334L71.04 119.8933333333334C71.2533333333333 119.8933333333334 71.2533333333333 119.8933333333334 71.2533333333333 119.6800000000001L246.8266666666667 2.7733333333334C249.6 0.8533333333334 252.8 1e-13 256 1e-13C259.2 1e-13 262.4 0.8533333333334 265.1733333333333 2.7733333333334L440.7466666666667 119.6800000000001C440.7466666666667 119.8933333333334 440.7466666666667 119.8933333333334 440.9600000000001 119.8933333333334L441.6 120.5333333333334C442.0266666666667 120.7466666666667 442.2400000000001 120.96 442.6666666666668 121.3866666666667L443.3066666666668 122.0266666666667C443.5200000000001 122.24 443.7333333333334 122.6666666666667 444.1600000000001 122.88C444.3733333333335 123.0933333333334 444.3733333333335 123.3066666666667 444.5866666666667 123.52C444.8000000000001 123.9466666666667 445.2266666666668 124.16 445.4400000000001 124.5866666666667C445.4400000000001 124.8 445.6533333333334 125.0133333333333 445.8666666666667 125.44C446.0800000000001 125.6533333333333 446.2933333333334 126.08 446.2933333333334 126.5066666666667C446.5066666666667 126.72 446.7200000000001 126.9333333333333 446.7200000000001 127.1466666666667C446.9333333333334 128 447.1466666666667 128 447.1466666666667 128C447.36 128.64 447.36 129.0666666666667 447.36 129.28C448.0000000000001 129.7066666666667 448.0000000000001 130.1333333333333 448.0000000000001 130.56V252.5866666666667z" />
955
- <glyph glyph-name="coffee"
956
- unicode="&#xF23C;"
957
- horiz-adv-x="512" d=" M42.6666666666667 0H426.6666666666667V42.6666666666667H42.6666666666667M426.6666666666667 277.3333333333334H384V341.3333333333334H426.6666666666667M426.6666666666667 384H85.3333333333333V170.6666666666667C85.3333333333333 123.52 123.52 85.3333333333334 170.6666666666667 85.3333333333334H298.6666666666667C345.8133333333334 85.3333333333334 384 123.52 384 170.6666666666667V234.6666666666667H426.6666666666667C450.1333333333334 234.6666666666667 469.3333333333333 253.8666666666667 469.3333333333333 277.3333333333334V341.3333333333334C469.3333333333333 365.0133333333333 450.1333333333334 384 426.6666666666667 384z" />
958
- <glyph glyph-name="coffee-to-go"
959
- unicode="&#xF23D;"
960
- horiz-adv-x="512" d=" M64 42.6666666666667V85.3333333333334H362.6666666666667L325.5466666666666 122.88L355.6266666666666 152.96L444.5866666666667 64L355.6266666666667 -24.96L325.5466666666667 5.12L362.6666666666667 42.6666666666667H64M362.6666666666667 277.3333333333334V341.3333333333334H320V277.3333333333334H362.6666666666667M362.6666666666667 384C386.3466666666667 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V277.3333333333334C405.3333333333333 253.6533333333334 386.3466666666667 234.6666666666667 362.6666666666667 234.6666666666667H320V213.3333333333334C320 166.1866666666667 281.8133333333334 128 234.6666666666667 128H149.3333333333333C102.1866666666667 128 64 166.1866666666667 64 213.3333333333334V384H362.6666666666667z" />
961
- <glyph glyph-name="coin"
962
- unicode="&#xF23E;"
963
- horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M234.6666666666667 85.3333333333334V106.6666666666667H192V149.3333333333334H277.3333333333333V170.6666666666667H213.3333333333333C201.6 170.6666666666667 192 180.2666666666667 192 192V256C192 267.7333333333334 201.6 277.3333333333334 213.3333333333333 277.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333V277.3333333333334H320V234.6666666666667H234.6666666666667V213.3333333333334H298.6666666666667C310.4 213.3333333333334 320 203.7333333333334 320 192V128C320 116.2666666666667 310.4 106.6666666666667 298.6666666666667 106.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667z" />
964
- <glyph glyph-name="color-helper"
965
- unicode="&#xF23F;"
966
- horiz-adv-x="512" d=" M0 -64H512V21.3333333333334H0V-64z" />
967
- <glyph glyph-name="comment"
968
- unicode="&#xF240;"
969
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192z" />
970
- <glyph glyph-name="comment-account"
971
- unicode="&#xF241;"
972
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M341.3333333333333 149.3333333333334V170.6666666666667C341.3333333333333 199.04 284.3733333333334 213.3333333333334 256 213.3333333333334S170.6666666666667 199.04 170.6666666666667 170.6666666666667V149.3333333333334H341.3333333333333M256 320C232.5333333333334 320 213.3333333333333 300.8 213.3333333333333 277.3333333333334S232.5333333333334 234.6666666666667 256 234.6666666666667S298.6666666666667 253.8666666666667 298.6666666666667 277.3333333333334S279.4666666666667 320 256 320z" />
973
- <glyph glyph-name="comment-account-outline"
974
- unicode="&#xF242;"
975
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M341.3333333333333 149.3333333333334H170.6666666666667V170.6666666666667C170.6666666666667 199.04 227.6266666666667 213.3333333333334 256 213.3333333333334S341.3333333333333 199.04 341.3333333333333 170.6666666666667V149.3333333333334M256 320C279.4666666666667 320 298.6666666666667 300.8 298.6666666666667 277.3333333333334S279.4666666666667 234.6666666666667 256 234.6666666666667S213.3333333333333 253.8666666666667 213.3333333333333 277.3333333333334S232.5333333333334 320 256 320z" />
976
- <glyph glyph-name="comment-alert"
977
- unicode="&#xF243;"
978
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M277.3333333333333 234.6666666666667V320H234.6666666666667V234.6666666666667H277.3333333333333M277.3333333333333 149.3333333333334V192H234.6666666666667V149.3333333333334H277.3333333333333z" />
979
- <glyph glyph-name="comment-alert-outline"
980
- unicode="&#xF244;"
981
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M277.3333333333333 234.6666666666667H234.6666666666667V320H277.3333333333333V234.6666666666667M277.3333333333333 149.3333333333334H234.6666666666667V192H277.3333333333333V149.3333333333334z" />
982
- <glyph glyph-name="comment-check"
983
- unicode="&#xF245;"
984
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 128L384 298.6666666666667L353.92 328.9600000000001L213.3333333333333 188.3733333333333L158.08 243.4133333333334L128 213.3333333333334L213.3333333333333 128z" />
985
- <glyph glyph-name="comment-check-outline"
986
- unicode="&#xF246;"
987
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M352 277.3333333333334L234.6666666666667 160L160 234.6666666666667L190.08 264.7466666666667L234.6666666666667 220.3733333333333L321.92 307.4133333333334L352 277.3333333333334z" />
988
- <glyph glyph-name="comment-multiple-outline"
989
- unicode="&#xF247;"
990
- horiz-adv-x="512" d=" M256 -42.6666666666666C244.2666666666667 -42.6666666666666 234.6666666666667 -33.0666666666667 234.6666666666667 -21.3333333333333V42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V298.6666666666667C106.6666666666667 322.3466666666667 125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334H448C471.4666666666667 341.3333333333334 490.6666666666666 322.1333333333334 490.6666666666666 298.6666666666667V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H360.5333333333333L281.6 -36.48C277.3333333333333 -40.5333333333334 272 -42.6666666666666 266.6666666666667 -42.6666666666666H256M277.3333333333333 85.3333333333334V19.6266666666667L343.04 85.3333333333334H448V298.6666666666667H149.3333333333333V85.3333333333334H277.3333333333333M64 128H21.3333333333333V384C21.3333333333333 407.4666666666667 40.5333333333333 426.6666666666667 64 426.6666666666667H405.3333333333333V384H64V128z" />
991
- <glyph glyph-name="comment-outline"
992
- unicode="&#xF248;"
993
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333z" />
994
- <glyph glyph-name="comment-plus-outline"
995
- unicode="&#xF249;"
996
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M234.6666666666667 320H277.3333333333333V256H341.3333333333333V213.3333333333334H277.3333333333333V149.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667V256H234.6666666666667V320z" />
997
- <glyph glyph-name="comment-processing"
998
- unicode="&#xF24A;"
999
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M362.6666666666667 213.3333333333334V256H320V213.3333333333334H362.6666666666667M277.3333333333333 213.3333333333334V256H234.6666666666667V213.3333333333334H277.3333333333333M192 213.3333333333334V256H149.3333333333333V213.3333333333334H192z" />
1000
- <glyph glyph-name="comment-processing-outline"
1001
- unicode="&#xF24B;"
1002
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M362.6666666666667 213.3333333333334H320V256H362.6666666666667V213.3333333333334M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334M192 213.3333333333334H149.3333333333333V256H192V213.3333333333334z" />
1003
- <glyph glyph-name="comment-remove-outline"
1004
- unicode="&#xF24C;"
1005
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M200.7466666666667 320L256 264.7466666666667L311.2533333333334 320L341.3333333333333 289.92L286.08 234.6666666666667L341.3333333333333 179.4133333333334L311.2533333333334 149.3333333333334L256 204.5866666666667L200.7466666666667 149.3333333333334L170.6666666666667 179.4133333333334L225.92 234.6666666666667L170.6666666666667 289.92L200.7466666666667 320z" />
1006
- <glyph glyph-name="comment-text"
1007
- unicode="&#xF24D;"
1008
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M106.6666666666667 341.3333333333334V298.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667M106.6666666666667 256V213.3333333333334H277.3333333333333V256H106.6666666666667M106.6666666666667 170.6666666666667V128H320V170.6666666666667H106.6666666666667z" />
1009
- <glyph glyph-name="comment-text-outline"
1010
- unicode="&#xF24E;"
1011
- horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M128 298.6666666666667H384V256H128V298.6666666666667M128 213.3333333333334H320V170.6666666666667H128V213.3333333333334z" />
1012
- <glyph glyph-name="compare"
1013
- unicode="&#xF24F;"
1014
- horiz-adv-x="512" d=" M405.3333333333333 384H298.6666666666667V341.3333333333334H405.3333333333333V64L298.6666666666667 192V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M213.3333333333333 64H106.6666666666667L213.3333333333333 192M213.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H213.3333333333333V-42.6666666666666H256V426.6666666666667H213.3333333333333V384z" />
1015
- <glyph glyph-name="compass"
1016
- unicode="&#xF250;"
1017
- horiz-adv-x="512" d=" M302.72 145.28L128 64L209.28 238.72L384 320M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 215.4666666666667C242.9866666666667 215.4666666666667 232.5333333333334 205.0133333333333 232.5333333333334 192C232.5333333333334 178.9866666666667 242.9866666666667 168.5333333333334 256 168.5333333333334C269.0133333333333 168.5333333333334 279.4666666666667 178.9866666666667 279.4666666666667 192C279.4666666666667 205.0133333333333 269.0133333333333 215.4666666666667 256 215.4666666666667z" />
1018
- <glyph glyph-name="compass-outline"
1019
- unicode="&#xF251;"
1020
- horiz-adv-x="512" d=" M149.3333333333333 85.3333333333334L217.6 230.4000000000001L362.6666666666667 298.6666666666667L294.4 153.6L149.3333333333333 85.3333333333334M256 211.2C245.3333333333333 211.2 236.8 202.6666666666667 236.8 192S245.3333333333333 172.8 256 172.8S275.2 181.3333333333334 275.2 192S266.6666666666667 211.2 256 211.2M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
1021
- <glyph glyph-name="console"
1022
- unicode="&#xF252;"
1023
- horiz-adv-x="512" d=" M426.6666666666667 42.6666666666667V298.6666666666667H85.3333333333333V42.6666666666667H426.6666666666667M426.6666666666667 384C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 365.0133333333333 61.8666666666667 384 85.3333333333333 384H426.6666666666667M277.3333333333333 85.3333333333334V128H384V85.3333333333334H277.3333333333333M204.3733333333333 170.6666666666667L118.8266666666667 256H179.2L249.6 185.6C257.92 177.28 257.92 163.6266666666667 249.6 155.3066666666667L179.6266666666667 85.3333333333334H119.2533333333333L204.3733333333333 170.6666666666667z" />
1024
- <glyph glyph-name="content-copy"
1025
- unicode="&#xF253;"
1026
- horiz-adv-x="512" d=" M405.3333333333333 0H170.6666666666667V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H170.6666666666667C147.2 341.3333333333334 128 322.1333333333334 128 298.6666666666667V0C128 -23.4666666666667 147.2 -42.6666666666666 170.6666666666667 -42.6666666666666H405.3333333333333C428.8 -42.6666666666666 448 -23.4666666666667 448 0V298.6666666666667C448 322.1333333333334 428.8 341.3333333333334 405.3333333333333 341.3333333333334M341.3333333333333 426.6666666666667H85.3333333333333C61.8666666666667 426.6666666666667 42.6666666666667 407.4666666666667 42.6666666666667 384V85.3333333333334H85.3333333333333V384H341.3333333333333V426.6666666666667z" />
1027
- <glyph glyph-name="content-cut"
1028
- unicode="&#xF254;"
1029
- horiz-adv-x="512" d=" M405.3333333333333 384L277.3333333333333 256L320 213.3333333333334L469.3333333333333 362.6666666666667V384M256 181.3333333333334C250.0266666666667 181.3333333333334 245.3333333333333 186.0266666666667 245.3333333333333 192S250.0266666666667 202.6666666666667 256 202.6666666666667S266.6666666666667 197.9733333333333 266.6666666666667 192S261.9733333333333 181.3333333333334 256 181.3333333333334M128 21.3333333333334C104.5333333333333 21.3333333333334 85.3333333333333 40.5333333333333 85.3333333333333 64C85.3333333333333 87.68 104.5333333333333 106.6666666666667 128 106.6666666666667S170.6666666666667 87.4666666666667 170.6666666666667 64C170.6666666666667 40.3200000000001 151.4666666666667 21.3333333333334 128 21.3333333333334M128 277.3333333333334C104.5333333333333 277.3333333333334 85.3333333333333 296.5333333333334 85.3333333333333 320C85.3333333333333 343.68 104.5333333333333 362.6666666666667 128 362.6666666666667S170.6666666666667 343.4666666666667 170.6666666666667 320C170.6666666666667 296.32 151.4666666666667 277.3333333333334 128 277.3333333333334M205.6533333333333 285.0133333333333C210.56 295.68 213.3333333333333 307.4133333333334 213.3333333333333 320C213.3333333333333 367.1466666666667 175.1466666666667 405.3333333333333 128 405.3333333333333S42.6666666666667 367.1466666666667 42.6666666666667 320S80.8533333333333 234.6666666666667 128 234.6666666666667C140.5866666666667 234.6666666666667 152.32 237.4400000000001 162.9866666666667 242.3466666666667L213.3333333333333 192L162.9866666666667 141.6533333333334C152.32 146.56 140.5866666666667 149.3333333333334 128 149.3333333333334C80.8533333333333 149.3333333333334 42.6666666666667 111.1466666666667 42.6666666666667 64S80.8533333333333 -21.3333333333333 128 -21.3333333333333S213.3333333333333 16.8533333333334 213.3333333333333 64C213.3333333333333 76.5866666666667 210.56 88.3200000000001 205.6533333333333 98.9866666666667L256 149.3333333333334L405.3333333333333 0H469.3333333333333V21.3333333333334L205.6533333333333 285.0133333333333z" />
1030
- <glyph glyph-name="content-duplicate"
1031
- unicode="&#xF255;"
1032
- horiz-adv-x="512" d=" M234.6666666666667 85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V384C42.6666666666667 407.4666666666667 61.8666666666667 426.6666666666667 85.3333333333333 426.6666666666667H341.3333333333333V384H85.3333333333333V128H234.6666666666667V170.6666666666667L320 106.6666666666667L234.6666666666667 42.6666666666667V85.3333333333334M405.3333333333333 0V298.6666666666667H170.6666666666667V170.6666666666667H128V298.6666666666667C128 322.1333333333334 147.2 341.3333333333334 170.6666666666667 341.3333333333334H405.3333333333333C428.8 341.3333333333334 448 322.1333333333334 448 298.6666666666667V0C448 -23.4666666666667 428.8 -42.6666666666666 405.3333333333333 -42.6666666666666H170.6666666666667C147.2 -42.6666666666666 128 -23.4666666666667 128 0V42.6666666666667H170.6666666666667V0H405.3333333333333z" />
1033
- <glyph glyph-name="content-paste"
1034
- unicode="&#xF256;"
1035
- horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H106.6666666666667V362.6666666666667H149.3333333333333V298.6666666666667H362.6666666666667V362.6666666666667H405.3333333333333M256 405.3333333333333C267.7333333333334 405.3333333333333 277.3333333333333 395.7333333333334 277.3333333333333 384S267.7333333333334 362.6666666666667 256 362.6666666666667S234.6666666666667 372.2666666666667 234.6666666666667 384S244.2666666666667 405.3333333333333 256 405.3333333333333M405.3333333333333 405.3333333333333H316.16C307.2 430.08 283.7333333333334 448 256 448C228.2666666666667 448 204.8 430.08 195.84 405.3333333333333H106.6666666666667C83.2 405.3333333333333 64 386.1333333333334 64 362.6666666666667V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333z" />
1036
- <glyph glyph-name="content-save"
1037
- unicode="&#xF257;"
1038
- horiz-adv-x="512" d=" M320 256H106.6666666666667V341.3333333333334H320M256 42.6666666666667C220.5866666666667 42.6666666666667 192 71.2533333333333 192 106.6666666666667S220.5866666666667 170.6666666666667 256 170.6666666666667S320 142.0800000000001 320 106.6666666666667S291.4133333333333 42.6666666666667 256 42.6666666666667M362.6666666666667 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V298.6666666666667L362.6666666666667 384z" />
1039
- <glyph glyph-name="content-save-all"
1040
- unicode="&#xF258;"
1041
- horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667V384H149.3333333333333V298.6666666666667H362.6666666666667M298.6666666666667 85.3333333333334C334.08 85.3333333333334 362.6666666666667 113.92 362.6666666666667 149.3333333333334S334.08 213.3333333333334 298.6666666666667 213.3333333333334S234.6666666666667 184.7466666666667 234.6666666666667 149.3333333333334S263.2533333333334 85.3333333333334 298.6666666666667 85.3333333333334M405.3333333333333 426.6666666666667L490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.6533333333333 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V384C106.6666666666667 407.4666666666667 125.8666666666667 426.6666666666667 149.3333333333333 426.6666666666667H405.3333333333333M21.3333333333333 298.6666666666667H64V0H362.6666666666667V-42.6666666666666H64C40.5333333333333 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V298.6666666666667z" />
1042
- <glyph glyph-name="contrast"
1043
- unicode="&#xF259;"
1044
- horiz-adv-x="512" d=" M93.44 2.1333333333334C80.64 6.1866666666667 70.4 16.4266666666667 66.1333333333333 29.2266666666667L418.7733333333333 381.8666666666667C431.5733333333333 377.6 441.8133333333334 367.36 445.8666666666666 354.56L93.44 2.1333333333334M426.6666666666667 106.6666666666667V64H277.3333333333333V106.6666666666667H426.6666666666667M64 320H128V384H170.6666666666667V320H234.6666666666667V277.3333333333334H170.6666666666667V213.3333333333334H128V277.3333333333334H64V320z" />
1045
- <glyph glyph-name="contrast-box"
1046
- unicode="&#xF25A;"
1047
- horiz-adv-x="512" d=" M362.6666666666667 117.3333333333334H256V85.3333333333334H362.6666666666667M405.3333333333333 42.6666666666667H106.6666666666667L405.3333333333333 341.3333333333334M117.3333333333333 288H160V330.6666666666667H192V288H234.6666666666667V256H192V213.3333333333334H160V256H117.3333333333333M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
1048
- <glyph glyph-name="contrast-circle"
1049
- unicode="&#xF25B;"
1050
- horiz-adv-x="512" d=" M256 21.3333333333334C208.8533333333333 21.3333333333334 166.1866666666667 40.5333333333333 135.2533333333333 71.2533333333333L376.7466666666667 312.7466666666667C407.4666666666667 281.8133333333334 426.6666666666667 239.1466666666667 426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334M128 277.3333333333334H170.6666666666667V320H202.6666666666667V277.3333333333334H245.3333333333333V245.3333333333334H202.6666666666667V202.6666666666667H170.6666666666667V245.3333333333334H128M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 106.6666666666667H362.6666666666667V138.6666666666667H256V106.6666666666667z" />
1051
- <glyph glyph-name="cow"
1052
- unicode="&#xF25C;"
1053
- horiz-adv-x="512" d=" M224 64C229.9733333333333 64 234.6666666666667 59.3066666666667 234.6666666666667 53.3333333333334S229.9733333333333 42.6666666666667 224 42.6666666666667S213.3333333333333 47.36 213.3333333333333 53.3333333333334S218.0266666666667 64 224 64M288 64C293.9733333333333 64 298.6666666666667 59.3066666666667 298.6666666666667 53.3333333333334S293.9733333333333 42.6666666666667 288 42.6666666666667S277.3333333333333 47.36 277.3333333333333 53.3333333333334S282.0266666666667 64 288 64M213.3333333333333 213.3333333333334C225.0666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S225.0666666666667 170.6666666666667 213.3333333333333 170.6666666666667S192 180.2666666666667 192 192S201.6 213.3333333333334 213.3333333333333 213.3333333333334M298.6666666666667 213.3333333333334C310.4 213.3333333333334 320 203.7333333333334 320 192S310.4 170.6666666666667 298.6666666666667 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S286.9333333333333 213.3333333333334 298.6666666666667 213.3333333333334M384 64C384 16.8533333333334 326.6133333333334 -21.3333333333333 256 -21.3333333333333S128 16.8533333333334 128 64C128 83.2 137.6 100.9066666666667 153.6 115.2000000000001C137.6 136.5333333333334 128 163.2000000000001 128 192L130.56 218.0266666666667C119.04 214.8266666666667 105.1733333333333 214.8266666666667 93.8666666666667 218.0266666666667C72.1066666666667 224 39.2533333333333 248.5333333333334 44.16 265.6C49.0666666666667 282.6666666666667 89.8133333333334 285.8666666666667 111.5733333333333 279.4666666666667C124.16 275.8400000000001 137.6 266.6666666666668 145.4933333333334 256.8533333333334L157.6533333333333 274.1333333333334C144.8533333333333 297.6 149.3333333333333 362.6666666666667 213.3333333333333 384L211.4133333333333 381.0133333333333C205.44 371.6266666666667 190.08 341.9733333333334 206.2933333333333 309.9733333333334C221.6533333333333 316.3733333333334 238.2933333333333 320 256 320C273.7066666666667 320 290.3466666666667 316.3733333333334 305.7066666666667 309.9733333333334C321.92 341.9733333333334 306.56 371.6266666666667 300.5866666666667 381.0133333333333L298.6666666666667 384C362.6666666666667 362.6666666666667 367.1466666666667 297.6 354.3466666666667 274.1333333333334L366.5066666666667 256.8533333333334C374.4 266.6666666666667 387.84 275.8400000000001 400.4266666666666 279.4666666666667C422.1866666666666 285.8666666666667 462.9333333333333 282.6666666666667 467.84 265.6C472.7466666666667 248.5333333333333 439.8933333333333 224 418.1333333333334 218.0266666666667C406.8266666666667 214.8266666666667 392.9600000000001 214.8266666666667 381.4400000000001 218.0266666666667L384 192C384 163.2000000000001 374.4 136.5333333333334 358.4 115.2000000000001C374.4 100.9066666666667 384 83.2 384 64M256 106.6666666666667C208.8533333333333 106.6666666666667 170.6666666666667 87.4666666666667 170.6666666666667 64S208.8533333333333 21.3333333333334 256 21.3333333333334S341.3333333333333 40.5333333333333 341.3333333333333 64S303.1466666666667 106.6666666666667 256 106.6666666666667M256 149.3333333333334C279.8933333333333 149.3333333333334 302.2933333333333 144.8533333333334 321.4933333333334 137.3866666666667C333.8666666666667 152.1066666666667 341.3333333333333 170.6666666666667 341.3333333333333 192C341.3333333333333 239.1466666666667 303.1466666666667 277.3333333333334 256 277.3333333333334S170.6666666666667 239.1466666666667 170.6666666666667 192C170.6666666666667 170.6666666666667 178.1333333333333 152.1066666666667 190.5066666666667 137.3866666666667C209.7066666666667 144.8533333333334 232.1066666666667 149.3333333333334 256 149.3333333333334M300.5866666666667 381.0133333333333z" />
1054
- <glyph glyph-name="credit-card"
1055
- unicode="&#xF25D;"
1056
- horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334H85.3333333333333V320H426.6666666666667M426.6666666666667 64H85.3333333333333V192H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
1057
- <glyph glyph-name="credit-card-multiple"
1058
- unicode="&#xF25E;"
1059
- horiz-adv-x="512" d=" M448 277.3333333333334V320H149.3333333333333V277.3333333333334H448M448 106.6666666666667V213.3333333333334H149.3333333333333V106.6666666666667H448M448 362.6666666666667C471.4666666666667 362.6666666666667 490.6666666666666 343.4666666666667 490.6666666666666 320V106.6666666666667C490.6666666666666 83.2 471.4666666666667 64 448 64H149.3333333333333C125.6533333333333 64 106.6666666666667 83.2 106.6666666666667 106.6666666666667V320C106.6666666666667 343.68 125.6533333333333 362.6666666666667 149.3333333333333 362.6666666666667H448M64 21.3333333333334H384V-21.3333333333333H64C40.5333333333333 -21.3333333333333 21.3333333333333 -2.1333333333333 21.3333333333333 21.3333333333334V256H64V21.3333333333334z" />
1060
- <glyph glyph-name="crop"
1061
- unicode="&#xF25F;"
1062
- horiz-adv-x="512" d=" M149.3333333333333 85.3333333333334V426.6666666666667H106.6666666666667V341.3333333333334H21.3333333333333V298.6666666666667H106.6666666666667V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H362.6666666666667V-42.6666666666666H405.3333333333333V42.6666666666667H490.6666666666666V85.3333333333334M362.6666666666667 128H405.3333333333333V298.6666666666667C405.3333333333333 322.3466666666667 386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334H192V298.6666666666667H362.6666666666667V128z" />
1063
- <glyph glyph-name="crop-free"
1064
- unicode="&#xF260;"
1065
- horiz-adv-x="512" d=" M405.3333333333333 384H320V341.3333333333334H405.3333333333333V256H448V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H320V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V128H405.3333333333333M106.6666666666667 128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H192V42.6666666666667H106.6666666666667M64 341.3333333333334V256H106.6666666666667V341.3333333333334H192V384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334z" />
1066
- <glyph glyph-name="crop-landscape"
1067
- unicode="&#xF261;"
1068
- horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H106.6666666666667V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H106.6666666666667C83.2 341.3333333333334 64 322.1333333333334 64 298.6666666666667V85.3333333333334C64 61.8666666666667 83.2 42.6666666666667 106.6666666666667 42.6666666666667H405.3333333333333C428.8 42.6666666666667 448 61.8666666666667 448 85.3333333333334V298.6666666666667C448 322.3466666666667 428.8 341.3333333333334 405.3333333333333 341.3333333333334z" />
1069
- <glyph glyph-name="crop-portrait"
1070
- unicode="&#xF262;"
1071
- horiz-adv-x="512" d=" M362.6666666666667 42.6666666666667H149.3333333333333V341.3333333333334H362.6666666666667M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V42.6666666666667C106.6666666666667 19.2 125.8666666666667 0 149.3333333333333 0H362.6666666666667C386.1333333333334 0 405.3333333333333 19.2 405.3333333333333 42.6666666666667V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
1072
- <glyph glyph-name="crop-square"
1073
- unicode="&#xF263;"
1074
- horiz-adv-x="512" d=" M384 64H128V320H384M384 362.6666666666667H128C104.5333333333333 362.6666666666667 85.3333333333333 343.4666666666667 85.3333333333333 320V64C85.3333333333333 40.5333333333333 104.5333333333333 21.3333333333334 128 21.3333333333334H384C407.4666666666667 21.3333333333334 426.6666666666667 40.5333333333333 426.6666666666667 64V320C426.6666666666667 343.68 407.4666666666667 362.6666666666667 384 362.6666666666667z" />
1075
- <glyph glyph-name="crosshairs"
1076
- unicode="&#xF264;"
1077
- horiz-adv-x="512" d=" M65.0666666666667 170.6666666666667H21.3333333333333V213.3333333333334H65.0666666666667C74.6666666666667 302.2933333333334 145.7066666666667 373.3333333333334 234.6666666666667 382.9333333333334V426.6666666666667H277.3333333333333V382.9333333333334C366.2933333333334 373.3333333333334 437.3333333333333 302.2933333333334 446.9333333333333 213.3333333333334H490.6666666666666V170.6666666666667H446.9333333333333C437.3333333333333 81.7066666666667 366.2933333333333 10.6666666666667 277.3333333333333 1.0666666666667V-42.6666666666666H234.6666666666667V1.0666666666667C145.7066666666667 10.6666666666667 74.6666666666667 81.7066666666667 65.0666666666667 170.6666666666667M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334z" />
1078
- <glyph glyph-name="crosshairs-gps"
1079
- unicode="&#xF265;"
1080
- horiz-adv-x="512" d=" M256 277.3333333333334C303.1466666666667 277.3333333333334 341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334M65.0666666666667 170.6666666666667H21.3333333333333V213.3333333333334H65.0666666666667C74.6666666666667 302.2933333333334 145.7066666666667 373.3333333333334 234.6666666666667 382.9333333333334V426.6666666666667H277.3333333333333V382.9333333333334C366.2933333333334 373.3333333333334 437.3333333333333 302.2933333333334 446.9333333333333 213.3333333333334H490.6666666666666V170.6666666666667H446.9333333333333C437.3333333333333 81.7066666666667 366.2933333333333 10.6666666666667 277.3333333333333 1.0666666666667V-42.6666666666666H234.6666666666667V1.0666666666667C145.7066666666667 10.6666666666667 74.6666666666667 81.7066666666667 65.0666666666667 170.6666666666667M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334z" />
1081
- <glyph glyph-name="crown"
1082
- unicode="&#xF266;"
1083
- horiz-adv-x="512" d=" M106.6666666666667 106.6666666666667L64 341.3333333333334L181.3333333333333 192L256 341.3333333333334L330.6666666666667 192L448 341.3333333333334L405.3333333333333 106.6666666666667H106.6666666666667M405.3333333333333 42.6666666666667C405.3333333333333 30.9333333333333 395.7333333333334 21.3333333333334 384 21.3333333333334H128C116.2666666666667 21.3333333333334 106.6666666666667 30.9333333333333 106.6666666666667 42.6666666666667V64H405.3333333333333V42.6666666666667z" />
1084
- <glyph glyph-name="cube"
1085
- unicode="&#xF267;"
1086
- horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L128.8533333333333 288L256 216.5333333333334L383.1466666666667 288L256 359.4666666666667z" />
1087
- <glyph glyph-name="cube-outline"
1088
- unicode="&#xF268;"
1089
- horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L128.8533333333333 288L256 216.5333333333334L383.1466666666667 288L256 359.4666666666667M106.6666666666667 108.5866666666667L234.6666666666667 36.48V179.6266666666667L106.6666666666667 251.52V108.5866666666667M405.3333333333333 108.5866666666667V251.52L277.3333333333333 179.6266666666667V36.48L405.3333333333333 108.5866666666666z" />
1090
- <glyph glyph-name="cube-unfolded"
1091
- unicode="&#xF269;"
1092
- horiz-adv-x="512" d=" M128 256V362.6666666666667H277.3333333333333V256H490.6666666666666V106.6666666666667H384V0H234.6666666666667V106.6666666666667H21.3333333333333V256H128M341.3333333333333 106.6666666666667H277.3333333333333V42.6666666666667H341.3333333333333V106.6666666666667M170.6666666666667 256H234.6666666666667V320H170.6666666666667V256M128 149.3333333333334V213.3333333333334H64V149.3333333333334H128M384 213.3333333333334V149.3333333333334H448V213.3333333333334H384M277.3333333333333 213.3333333333334V149.3333333333334H341.3333333333333V213.3333333333334H277.3333333333333M170.6666666666667 213.3333333333334V149.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667z" />
1093
- <glyph glyph-name="cup"
1094
- unicode="&#xF26A;"
1095
- horiz-adv-x="512" d=" M390.8266666666667 277.3333333333334H120.96L111.5733333333333 362.6666666666667H400.4266666666666M64 405.3333333333333L106.6666666666667 16.4266666666667C109.44 -4.9066666666666 127.36 -21.3333333333333 149.3333333333333 -21.3333333333333H362.6666666666667C384 -21.3333333333333 402.56 -4.9066666666666 405.3333333333333 16.4266666666667L448 405.3333333333333H64z" />
1096
- <glyph glyph-name="cup-water"
1097
- unicode="&#xF26B;"
1098
- horiz-adv-x="512" d=" M390.8266666666667 277.3333333333334H120.96L111.5733333333333 362.6666666666667H400.4266666666666M256 42.6666666666667C220.5866666666667 42.6666666666667 192 71.2533333333333 192 106.6666666666667C192 149.3333333333334 256 221.8666666666667 256 221.8666666666667S320 149.3333333333334 320 106.6666666666667C320 71.2533333333333 291.4133333333333 42.6666666666667 256 42.6666666666667M64 405.3333333333333L106.6666666666667 16.4266666666667C109.44 -4.9066666666666 127.36 -21.3333333333333 149.3333333333333 -21.3333333333333H362.6666666666667C384 -21.3333333333333 402.56 -4.9066666666666 405.3333333333333 16.4266666666667L448 405.3333333333333H64z" />
1099
- <glyph glyph-name="currency-btc"
1100
- unicode="&#xF26C;"
1101
- horiz-adv-x="512" d=" M96 341.3333333333334H170.6666666666667V405.3333333333333H213.3333333333333V341.3333333333334H245.3333333333333V405.3333333333333H288V341.3333333333334C405.3333333333333 341.3333333333334 405.3333333333333 213.3333333333334 341.3333333333333 208C426.6666666666667 213.3333333333334 448 42.6666666666667 288 42.6666666666667V-21.3333333333333H245.3333333333333V42.6666666666667H213.3333333333333V-21.3333333333333H170.6666666666667V42.6666666666667H96L106.6666666666667 85.3333333333334H128C139.7333333333333 85.3333333333334 149.3333333333333 94.9333333333333 149.3333333333333 106.6666666666667V277.3333333333334C149.3333333333333 289.0666666666667 139.7333333333333 298.6666666666667 128 298.6666666666667H96V341.3333333333334M213.3333333333333 298.6666666666667V213.3333333333334S309.3333333333333 208 309.3333333333333 256S213.3333333333333 298.6666666666667 213.3333333333333 298.6666666666667M213.3333333333333 181.3333333333334V85.3333333333334S330.6666666666667 85.3333333333334 330.6666666666667 133.3333333333334S213.3333333333333 181.3333333333334 213.3333333333333 181.3333333333334z" />
1102
- <glyph glyph-name="currency-eur"
1103
- unicode="&#xF26D;"
1104
- horiz-adv-x="512" d=" M150.8266666666667 213.3333333333334L149.3333333333333 192L150.8266666666667 170.6666666666667H370.1333333333334L352 128H163.6266666666667C187.7333333333334 77.6533333333334 239.1466666666667 42.6666666666667 298.6666666666667 42.6666666666667C346.24 42.6666666666667 388.6933333333333 64.8533333333334 416 99.6266666666667V40.1066666666667C384 14.9333333333333 342.8266666666667 0 298.6666666666667 0C215.04 0 144 53.3333333333334 117.3333333333333 128H42.6666666666667L64 170.6666666666667H107.7333333333333L106.6666666666667 192L107.7333333333333 213.3333333333334H42.6666666666667L64 256H117.3333333333333C144 330.6666666666667 215.04 384 298.6666666666667 384C352 384 401.0666666666667 361.8133333333334 435.84 326.1866666666667L417.4933333333334 282.6666666666667C390.1866666666666 318.2933333333334 347.0933333333333 341.3333333333334 298.6666666666667 341.3333333333334C239.1466666666667 341.3333333333334 187.7333333333334 306.3466666666667 163.6266666666667 256H406.1866666666666L388.0533333333333 213.3333333333334H150.8266666666667z" />
1105
- <glyph glyph-name="currency-gbp"
1106
- unicode="&#xF26E;"
1107
- horiz-adv-x="512" d=" M138.6666666666667 0V26.6666666666667C158.72 36.48 175.7866666666667 51.84 187.9466666666667 70.4C200.1066666666667 88.96 206.2933333333333 109.8666666666667 206.5066666666667 133.3333333333334L206.08 154.24L204.16 170.6666666666667H149.3333333333333V213.3333333333334H200.5333333333333C197.3333333333333 231.04 195.4133333333333 249.3866666666667 194.7733333333334 272C195.4133333333333 306.9866666666667 205.6533333333333 334.2933333333334 225.7066666666667 353.92C245.3333333333333 373.3333333333334 272.4266666666666 384 305.4933333333334 384C320.64 384 333.6533333333333 382.5066666666667 344.1066666666667 379.7333333333334C354.7733333333333 377.1733333333334 362.6666666666667 373.9733333333334 369.28 370.1333333333334L357.5466666666666 333.0133333333333C351.9999999999999 336 345.3866666666666 338.7733333333333 336.8533333333333 341.3333333333333C328.1066666666666 343.4666666666667 317.6533333333333 344.5333333333333 305.4933333333333 344.7466666666667C282.6666666666666 344.32 266.6666666666666 337.28 255.9999999999999 323.6266666666667C245.3333333333333 310.1866666666667 240.8533333333333 292.6933333333334 241.0666666666666 271.36L243.2 239.5733333333333L247.4666666666666 213.3333333333333H330.6666666666666V170.6666666666666H251.5199999999999C253.4399999999999 149.3333333333333 252.5866666666666 128 248.5333333333332 107.52C242.1333333333332 81.92 229.1199999999999 60.16 209.7066666666665 42.6666666666667H384V0H138.6666666666667z" />
1108
- <glyph glyph-name="currency-inr"
1109
- unicode="&#xF26F;"
1110
- horiz-adv-x="512" d=" M170.6666666666667 384H384L362.6666666666667 341.3333333333334H293.12C303.36 328.9600000000001 311.04 314.4533333333334 315.52 298.6666666666667H384L362.6666666666667 256H320C314.6666666666667 201.1733333333334 271.7866666666667 157.2266666666667 217.6 150.1866666666667V149.3333333333334H202.6666666666667L330.6666666666667 0H277.3333333333333L149.3333333333333 149.3333333333334V192H202.6666666666667C240.2133333333333 192 271.36 219.7333333333334 276.48 256H149.3333333333333L170.6666666666667 298.6666666666667H270.08C258.1333333333334 323.8400000000001 232.5333333333334 341.3333333333334 202.6666666666667 341.3333333333334H149.3333333333333L170.6666666666667 384z" />
1111
- <glyph glyph-name="currency-rub"
1112
- unicode="&#xF270;"
1113
- horiz-adv-x="512" d=" M128 234.6666666666667H149.3333333333333V384H309.3333333333333C362.6666666666667 384 405.3333333333333 341.3333333333334 405.3333333333333 288S362.6666666666667 192 309.3333333333333 192H192V149.3333333333334H320V106.6666666666667H192V0H149.3333333333333V106.6666666666667H128V149.3333333333334H149.3333333333333V192H128V234.6666666666667M309.3333333333333 341.3333333333334H192V234.6666666666667H309.3333333333333C338.7733333333333 234.6666666666667 362.6666666666667 258.5600000000001 362.6666666666667 288S338.7733333333333 341.3333333333334 309.3333333333333 341.3333333333334z" />
1114
- <glyph glyph-name="currency-try"
1115
- unicode="&#xF271;"
1116
- horiz-adv-x="512" d=" M405.3333333333333 192C405.3333333333333 85.9733333333334 319.36 0 213.3333333333333 0H170.6666666666667V175.5733333333334L106.6666666666667 152.1066666666667V197.5466666666667L170.6666666666667 221.0133333333334V258.7733333333334L106.6666666666667 235.52V280.7466666666667L170.6666666666667 304.2133333333334V384H213.3333333333333V320L320 358.4V313.1733333333334L213.3333333333333 274.3466666666667V236.3733333333334L320 275.2000000000001V229.76L213.3333333333333 190.9333333333333V42.6666666666667C295.8933333333333 42.6666666666667 362.6666666666667 109.44 362.6666666666667 192H405.3333333333333z" />
1117
- <glyph glyph-name="currency-usd"
1118
- unicode="&#xF272;"
1119
- horiz-adv-x="512" d=" M251.7333333333334 215.4666666666667C203.3066666666667 228.0533333333334 187.7333333333334 241.0666666666667 187.7333333333334 261.3333333333334C187.7333333333334 284.5866666666667 209.28 300.8 245.3333333333333 300.8C283.3066666666666 300.8 297.3866666666667 282.6666666666667 298.6666666666667 256H345.8133333333334C344.32 292.6933333333334 321.92 326.4 277.3333333333333 337.2800000000001V384H213.3333333333333V337.92C171.9466666666667 328.9600000000001 138.6666666666667 302.0800000000001 138.6666666666667 260.9066666666667C138.6666666666667 211.6266666666667 179.4133333333333 187.0933333333334 238.9333333333333 172.8000000000001C292.2666666666667 160.0000000000001 302.9333333333333 141.2266666666667 302.9333333333333 121.3866666666667C302.9333333333333 106.6666666666667 292.48 83.2000000000001 245.3333333333333 83.2000000000001C201.3866666666667 83.2000000000001 184.1066666666666 102.8266666666668 181.3333333333333 128.0000000000001H134.8266666666667C137.3866666666667 81.2800000000001 172.3733333333333 55.0400000000001 213.3333333333333 46.2933333333334V0H277.3333333333333V45.8666666666667C318.9333333333333 53.3333333333334 352 77.8666666666667 352 121.6C352 182.1866666666667 300.16 202.6666666666667 251.7333333333334 215.4666666666667z" />
1120
- <glyph glyph-name="cursor-default"
1121
- unicode="&#xF273;"
1122
- horiz-adv-x="512" d=" M290.9866666666667 -20.6933333333333C280.32 -25.8133333333333 267.52 -21.3333333333333 262.6133333333334 -10.6666666666666L216.1066666666667 90.4533333333334L162.56 47.3600000000001C158.9333333333333 44.3733333333334 154.4533333333334 42.6666666666667 149.3333333333334 42.6666666666667C137.6 42.6666666666667 128 52.2666666666668 128 64.0000000000001V384C128 395.7333333333334 137.6 405.3333333333333 149.3333333333334 405.3333333333333C154.4533333333334 405.3333333333333 159.36 403.4133333333334 162.9866666666667 400.4266666666667L163.2 400.64L408.32 194.9866666666667C417.4933333333334 187.3066666666667 418.56 173.8666666666667 411.0933333333333 164.9066666666667C407.8933333333333 161.0666666666667 403.4133333333333 158.5066666666667 398.9333333333333 157.6533333333333L331.52 144.4266666666667L378.4533333333333 43.52C384 32.8533333333334 378.88 20.2666666666667 368.2133333333333 15.36L290.9866666666666 -20.6933333333334z" />
1123
- <glyph glyph-name="cursor-default-outline"
1124
- unicode="&#xF274;"
1125
- horiz-adv-x="512" d=" M214.8266666666667 143.5733333333334C225.4933333333334 148.6933333333334 238.08 144 243.2 133.3333333333334L292.2666666666667 26.88L330.6666666666667 45.0133333333333L281.3866666666667 151.2533333333333C276.2666666666667 161.92 280.96 174.72 291.6266666666667 179.6266666666667L297.6 181.3333333333334L346.6666666666667 190.9333333333333L170.6666666666667 338.7733333333333V108.8L209.4933333333334 140.16L214.8266666666667 143.5733333333334M290.9866666666667 -20.6933333333333C280.32 -25.8133333333333 267.52 -21.3333333333333 262.6133333333334 -10.6666666666666L216.1066666666667 90.4533333333334L162.56 47.3600000000001C158.9333333333333 44.3733333333334 154.4533333333334 42.6666666666667 149.3333333333334 42.6666666666667C137.6 42.6666666666667 128 52.2666666666668 128 64.0000000000001V384C128 395.7333333333334 137.6 405.3333333333333 149.3333333333334 405.3333333333333C154.4533333333334 405.3333333333333 159.36 403.4133333333334 162.9866666666667 400.4266666666667L163.2 400.64L408.32 194.9866666666667C417.4933333333334 187.3066666666667 418.56 173.8666666666667 411.0933333333333 164.9066666666667C407.8933333333333 161.0666666666667 403.4133333333333 158.5066666666667 398.9333333333333 157.6533333333333L331.52 144.4266666666667L378.4533333333333 43.52C384 32.8533333333334 378.88 20.2666666666667 368.2133333333333 15.36L290.9866666666666 -20.6933333333334z" />
1126
- <glyph glyph-name="cursor-move"
1127
- unicode="&#xF275;"
1128
- horiz-adv-x="512" d=" M277.3333333333333 320V213.3333333333334H384V282.6666666666667L474.6666666666666 192L384 101.3333333333334V170.6666666666667H277.3333333333333V64H346.6666666666667L256 -26.6666666666666L165.3333333333333 64H234.6666666666667V170.6666666666667H128V101.3333333333334L37.3333333333333 192L128 282.6666666666667V213.3333333333334H234.6666666666667V320H165.3333333333333L256 410.6666666666667L346.6666666666667 320H277.3333333333333z" />
1129
- <glyph glyph-name="cursor-pointer"
1130
- unicode="&#xF276;"
1131
- horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333C236.8 405.3333333333333 256 386.1333333333334 256 362.6666666666667V266.6666666666667S298.6666666666667 272 298.6666666666667 250.6666666666667C298.6666666666667 250.6666666666667 341.3333333333333 256 341.3333333333333 234.6666666666667C341.3333333333333 234.6666666666667 384 240 384 218.6666666666667C384 218.6666666666667 426.6666666666667 224 426.6666666666667 202.6666666666667V128C426.6666666666667 106.6666666666667 362.6666666666667 0 362.6666666666667 -21.3333333333333H192S149.3333333333333 128 85.3333333333333 170.6666666666667C85.3333333333333 170.6666666666667 64 298.6666666666667 170.6666666666667 192V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333z" />
1132
- <glyph glyph-name="database"
1133
- unicode="&#xF277;"
1134
- horiz-adv-x="512" d=" M384 426.6666666666667H128C104.5333333333333 426.6666666666667 85.3333333333333 407.4666666666667 85.3333333333333 384V341.3333333333334C85.3333333333333 317.8666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667H384C407.4666666666667 298.6666666666667 426.6666666666667 317.8666666666667 426.6666666666667 341.3333333333334V384C426.6666666666667 407.4666666666667 407.4666666666667 426.6666666666667 384 426.6666666666667M170.6666666666667 341.3333333333334H128V384H170.6666666666667V341.3333333333334M384 256H128C104.5333333333333 256 85.3333333333333 236.8 85.3333333333333 213.3333333333334V170.6666666666667C85.3333333333333 147.2000000000001 104.5333333333333 128 128 128H384C407.4666666666667 128 426.6666666666667 147.2000000000001 426.6666666666667 170.6666666666667V213.3333333333334C426.6666666666667 236.8 407.4666666666667 256 384 256M170.6666666666667 170.6666666666667H128V213.3333333333334H170.6666666666667V170.6666666666667M384 85.3333333333334H128C104.5333333333333 85.3333333333334 85.3333333333333 66.1333333333334 85.3333333333333 42.6666666666667V0C85.3333333333333 -23.4666666666667 104.5333333333333 -42.6666666666666 128 -42.6666666666666H384C407.4666666666667 -42.6666666666666 426.6666666666667 -23.4666666666667 426.6666666666667 0V42.6666666666667C426.6666666666667 66.1333333333334 407.4666666666667 85.3333333333334 384 85.3333333333334M170.6666666666667 0H128V42.6666666666667H170.6666666666667V0z" />
1135
- <glyph glyph-name="database-minus"
1136
- unicode="&#xF278;"
1137
- horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H64C40.5333333333333 405.3333333333333 21.3333333333333 386.1333333333334 21.3333333333333 362.6666666666667V320C21.3333333333333 296.5333333333334 40.5333333333333 277.3333333333334 64 277.3333333333334H234.6666666666667C258.1333333333334 277.3333333333334 277.3333333333333 296.5333333333334 277.3333333333333 320V362.6666666666667C277.3333333333333 386.1333333333334 258.1333333333334 405.3333333333333 234.6666666666667 405.3333333333333M119.4666666666667 320H76.8V362.6666666666667H119.4666666666667V320M234.6666666666667 256H64C40.5333333333333 256 21.3333333333333 236.8 21.3333333333333 213.3333333333334V170.6666666666667C21.3333333333333 147.2000000000001 40.5333333333333 128 64 128H234.6666666666667C258.1333333333334 128 277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667V213.3333333333334C277.3333333333333 236.8 258.1333333333334 256 234.6666666666667 256M119.4666666666667 170.6666666666667H76.8V213.3333333333334H119.4666666666667V170.6666666666667M234.6666666666667 106.6666666666667H64C40.5333333333333 106.6666666666667 21.3333333333333 87.4666666666667 21.3333333333333 64V21.3333333333334C21.3333333333333 -2.1333333333333 40.5333333333333 -21.3333333333333 64 -21.3333333333333H234.6666666666667C258.1333333333334 -21.3333333333333 277.3333333333333 -2.1333333333333 277.3333333333333 21.3333333333334V64C277.3333333333333 87.4666666666667 258.1333333333334 106.6666666666667 234.6666666666667 106.6666666666667M119.4666666666667 21.3333333333334H76.8V64H119.4666666666667V21.3333333333334M490.6666666666666 170.6666666666667H320V213.3333333333334H490.6666666666666V170.6666666666667z" />
1138
- <glyph glyph-name="database-outline"
1139
- unicode="&#xF279;"
1140
- horiz-adv-x="512" d=" M384 384V341.3333333333334H213.3333333333333V384H384M384 426.6666666666667H128C104.5333333333333 426.6666666666667 85.3333333333333 407.4666666666667 85.3333333333333 384V341.3333333333334C85.3333333333333 317.8666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667H384C407.4666666666667 298.6666666666667 426.6666666666667 317.8666666666667 426.6666666666667 341.3333333333334V384C426.6666666666667 407.4666666666667 407.4666666666667 426.6666666666667 384 426.6666666666667M128 341.3333333333334V384H170.6666666666667V341.3333333333334H128M384 213.3333333333334V170.6666666666667H213.3333333333333V213.3333333333334H384M384 256H128C104.5333333333333 256 85.3333333333333 236.8 85.3333333333333 213.3333333333334V170.6666666666667C85.3333333333333 147.2000000000001 104.5333333333333 128 128 128H384C407.4666666666667 128 426.6666666666667 147.2000000000001 426.6666666666667 170.6666666666667V213.3333333333334C426.6666666666667 236.8 407.4666666666667 256 384 256M128 170.6666666666667V213.3333333333334H170.6666666666667V170.6666666666667H128M384 42.6666666666667V0H213.3333333333333V42.6666666666667H384M384 85.3333333333334H128C104.5333333333333 85.3333333333334 85.3333333333333 66.1333333333334 85.3333333333333 42.6666666666667V0C85.3333333333333 -23.4666666666667 104.5333333333333 -42.6666666666666 128 -42.6666666666666H384C407.4666666666667 -42.6666666666666 426.6666666666667 -23.4666666666667 426.6666666666667 0V42.6666666666667C426.6666666666667 66.1333333333334 407.4666666666667 85.3333333333334 384 85.3333333333334M128 0V42.6666666666667H170.6666666666667V0H128z" />
1141
- <glyph glyph-name="database-plus"
1142
- unicode="&#xF27A;"
1143
- horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H64C40.5333333333333 405.3333333333333 21.3333333333333 386.1333333333334 21.3333333333333 362.6666666666667V320C21.3333333333333 296.5333333333334 40.5333333333333 277.3333333333334 64 277.3333333333334H234.6666666666667C258.1333333333334 277.3333333333334 277.3333333333333 296.5333333333334 277.3333333333333 320V362.6666666666667C277.3333333333333 386.1333333333334 258.1333333333334 405.3333333333333 234.6666666666667 405.3333333333333M119.4666666666667 320H76.8V362.6666666666667H119.4666666666667V320M234.6666666666667 256H64C40.5333333333333 256 21.3333333333333 236.8 21.3333333333333 213.3333333333334V170.6666666666667C21.3333333333333 147.2000000000001 40.5333333333333 128 64 128H234.6666666666667C258.1333333333334 128 277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667V213.3333333333334C277.3333333333333 236.8 258.1333333333334 256 234.6666666666667 256M119.4666666666667 170.6666666666667H76.8V213.3333333333334H119.4666666666667V170.6666666666667M234.6666666666667 106.6666666666667H64C40.5333333333333 106.6666666666667 21.3333333333333 87.4666666666667 21.3333333333333 64V21.3333333333334C21.3333333333333 -2.1333333333333 40.5333333333333 -21.3333333333333 64 -21.3333333333333H234.6666666666667C258.1333333333334 -21.3333333333333 277.3333333333333 -2.1333333333333 277.3333333333333 21.3333333333334V64C277.3333333333333 87.4666666666667 258.1333333333334 106.6666666666667 234.6666666666667 106.6666666666667M119.4666666666667 21.3333333333334H76.8V64H119.4666666666667V21.3333333333334M490.6666666666666 170.6666666666667H426.6666666666667V106.6666666666667H384V170.6666666666667H320V213.3333333333334H384V277.3333333333334H426.6666666666667V213.3333333333334H490.6666666666666V170.6666666666667z" />
1144
- <glyph glyph-name="debug-step-into"
1145
- unicode="&#xF27B;"
1146
- horiz-adv-x="512" d=" M256 -21.3333333333333C232.5333333333334 -21.3333333333333 213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334S232.5333333333334 64 256 64S298.6666666666667 44.8000000000001 298.6666666666667 21.3333333333334S279.4666666666667 -21.3333333333333 256 -21.3333333333333M277.3333333333333 405.3333333333333V170.6666666666667L373.3333333333333 266.6666666666667L403.6266666666667 236.3733333333334L256 88.7466666666667L108.3733333333333 236.3733333333334L138.6666666666667 266.6666666666667L234.6666666666667 170.6666666666667V405.3333333333333H277.3333333333333z" />
1147
- <glyph glyph-name="debug-step-out"
1148
- unicode="&#xF27C;"
1149
- horiz-adv-x="512" d=" M256 -21.3333333333333C232.5333333333334 -21.3333333333333 213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334S232.5333333333334 64 256 64S298.6666666666667 44.8000000000001 298.6666666666667 21.3333333333334S279.4666666666667 -21.3333333333333 256 -21.3333333333333M277.3333333333333 106.6666666666667H234.6666666666667V320L138.6666666666667 224L108.3733333333333 254.2933333333334L256 401.92L403.6266666666667 254.2933333333334L373.3333333333333 224L277.3333333333333 320V106.6666666666667z" />
1150
- <glyph glyph-name="debug-step-over"
1151
- unicode="&#xF27D;"
1152
- horiz-adv-x="512" d=" M256 149.3333333333334C279.4666666666667 149.3333333333334 298.6666666666667 130.1333333333333 298.6666666666667 106.6666666666667S279.4666666666667 64 256 64S213.3333333333333 83.2 213.3333333333333 106.6666666666667S232.5333333333334 149.3333333333334 256 149.3333333333334M500.48 258.9866666666667L466.56 112L320 145.92L401.0666666666667 196.6933333333333C370.9866666666667 245.3333333333334 317.2266666666667 277.3333333333334 256 277.3333333333334C171.7333333333334 277.3333333333334 101.76 216.32 87.8933333333333 135.8933333333334L45.8666666666667 143.36C63.1466666666667 243.6266666666667 150.6133333333333 320 256 320C332.3733333333334 320 399.5733333333333 279.68 437.3333333333333 219.3066666666667L500.48 258.9866666666667z" />
1153
- <glyph glyph-name="decimal-decrease"
1154
- unicode="&#xF27E;"
1155
- horiz-adv-x="512" d=" M256 85.3333333333334L320 21.3333333333334V64H448V106.6666666666667H320V149.3333333333334L256 85.3333333333334M192 341.3333333333334C227.4133333333334 341.3333333333334 256 312.7466666666667 256 277.3333333333334V213.3333333333334C256 177.92 227.4133333333334 149.3333333333334 192 149.3333333333334S128 177.92 128 213.3333333333334V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334M192 298.6666666666667C180.2666666666667 298.6666666666667 170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334V213.3333333333334C170.6666666666667 201.6 180.2666666666667 192 192 192S213.3333333333333 201.6 213.3333333333333 213.3333333333334V277.3333333333334C213.3333333333333 289.0666666666667 203.7333333333334 298.6666666666667 192 298.6666666666667M85.3333333333333 192C97.0666666666667 192 106.6666666666667 182.4 106.6666666666667 170.6666666666667S97.0666666666667 149.3333333333334 85.3333333333333 149.3333333333334S64 158.9333333333333 64 170.6666666666667S73.6 192 85.3333333333333 192z" />
1156
- <glyph glyph-name="decimal-increase"
1157
- unicode="&#xF27F;"
1158
- horiz-adv-x="512" d=" M469.3333333333333 85.3333333333334L405.3333333333333 21.3333333333334V64H277.3333333333333V106.6666666666667H405.3333333333333V149.3333333333334L469.3333333333333 85.3333333333334M192 341.3333333333334C227.4133333333334 341.3333333333334 256 312.7466666666667 256 277.3333333333334V213.3333333333334C256 177.92 227.4133333333334 149.3333333333334 192 149.3333333333334S128 177.92 128 213.3333333333334V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334M192 298.6666666666667C180.2666666666667 298.6666666666667 170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334V213.3333333333334C170.6666666666667 201.6 180.2666666666667 192 192 192S213.3333333333333 201.6 213.3333333333333 213.3333333333334V277.3333333333334C213.3333333333333 289.0666666666667 203.7333333333334 298.6666666666667 192 298.6666666666667M341.3333333333333 341.3333333333334C376.7466666666667 341.3333333333334 405.3333333333333 312.7466666666667 405.3333333333333 277.3333333333334V213.3333333333334C405.3333333333333 177.92 376.7466666666667 149.3333333333334 341.3333333333333 149.3333333333334S277.3333333333333 177.92 277.3333333333333 213.3333333333334V277.3333333333334C277.3333333333333 312.7466666666667 305.92 341.3333333333334 341.3333333333333 341.3333333333334M341.3333333333333 298.6666666666667C329.6 298.6666666666667 320 289.0666666666667 320 277.3333333333334V213.3333333333334C320 201.6 329.6 192 341.3333333333333 192S362.6666666666667 201.6 362.6666666666667 213.3333333333334V277.3333333333334C362.6666666666667 289.0666666666667 353.0666666666667 298.6666666666667 341.3333333333333 298.6666666666667M85.3333333333333 192C97.0666666666667 192 106.6666666666667 182.4 106.6666666666667 170.6666666666667S97.0666666666667 149.3333333333334 85.3333333333333 149.3333333333334S64 158.9333333333333 64 170.6666666666667S73.6 192 85.3333333333333 192z" />
1159
- <glyph glyph-name="delete"
1160
- unicode="&#xF280;"
1161
- horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H330.6666666666667L309.3333333333333 384H202.6666666666667L181.3333333333333 362.6666666666667H106.6666666666667V320H405.3333333333333M128 42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H341.3333333333333C364.8 0 384 19.2 384 42.6666666666667V298.6666666666667H128V42.6666666666667z" />
1162
- <glyph glyph-name="delete-variant"
1163
- unicode="&#xF281;"
1164
- horiz-adv-x="512" d=" M448.64 384L384 14.72C380.3733333333333 -5.76 362.6666666666667 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C149.3333333333333 -21.3333333333333 131.6266666666667 -5.76 128 14.72L63.36 384H448.64M114.3466666666667 341.3333333333334L170.6666666666667 21.3333333333334H341.3333333333333L397.6533333333333 341.3333333333334H114.3466666666667M192 64V149.3333333333334H277.3333333333333V64H192M277.3333333333333 166.8266666666667L209.4933333333334 234.6666666666667L277.3333333333333 302.5066666666667L345.1733333333333 234.6666666666667L277.3333333333333 166.8266666666667z" />
1165
- <glyph glyph-name="deskphone"
1166
- unicode="&#xF282;"
1167
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M320 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H320M106.6666666666667 341.3333333333334V256H277.3333333333333V341.3333333333334H106.6666666666667M106.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667M170.6666666666667 213.3333333333334V170.6666666666667H213.3333333333333V213.3333333333334H170.6666666666667M234.6666666666667 213.3333333333334V170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M106.6666666666667 149.3333333333334V106.6666666666667H149.3333333333333V149.3333333333334H106.6666666666667M170.6666666666667 149.3333333333334V106.6666666666667H213.3333333333333V149.3333333333334H170.6666666666667M234.6666666666667 149.3333333333334V106.6666666666667H277.3333333333333V149.3333333333334H234.6666666666667M234.6666666666667 85.3333333333334V42.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667M170.6666666666667 85.3333333333334V42.6666666666667H213.3333333333333V85.3333333333334H170.6666666666667M106.6666666666667 85.3333333333334V42.6666666666667H149.3333333333333V85.3333333333334H106.6666666666667z" />
1168
- <glyph glyph-name="desktop-mac"
1169
- unicode="&#xF283;"
1170
- horiz-adv-x="512" d=" M448 149.3333333333334H64V362.6666666666667H448M448 405.3333333333333H64C40.32 405.3333333333333 21.3333333333333 386.3466666666667 21.3333333333333 362.6666666666667V106.6666666666667C21.3333333333333 83.2 40.5333333333333 64 64 64H213.3333333333333L170.6666666666667 0V-21.3333333333333H341.3333333333333V0L298.6666666666667 64H448C471.4666666666667 64 490.6666666666666 83.2 490.6666666666666 106.6666666666667V362.6666666666667C490.6666666666666 386.3466666666667 471.4666666666667 405.3333333333333 448 405.3333333333333z" />
1171
- <glyph glyph-name="desktop-tower"
1172
- unicode="&#xF284;"
1173
- horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333C364.8 405.3333333333333 384 386.1333333333334 384 362.6666666666667V21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C147.2 -21.3333333333333 128 -2.1333333333333 128 21.3333333333334V362.6666666666667C128 386.1333333333334 147.2 405.3333333333333 170.6666666666667 405.3333333333333M170.6666666666667 362.6666666666667V320H341.3333333333333V362.6666666666667H170.6666666666667M341.3333333333333 277.3333333333334H170.6666666666667V234.6666666666667H341.3333333333333V277.3333333333334M341.3333333333333 64H298.6666666666667V21.3333333333334H341.3333333333333V64z" />
1174
- <glyph glyph-name="details"
1175
- unicode="&#xF285;"
1176
- horiz-adv-x="512" d=" M136.1066666666667 320H376.1066666666667L256 106.6666666666667L136.1066666666667 320M64 362.6666666666667L256 21.3333333333334L448 362.6666666666667H64z" />
1177
- <glyph glyph-name="deviantart"
1178
- unicode="&#xF286;"
1179
- horiz-adv-x="512" d=" M128 320H256L298.6666666666667 405.3333333333333H384V320L309.3333333333333 170.6666666666667H384V64H256L213.3333333333333 -21.3333333333333H128V64L202.6666666666667 213.3333333333334H128V320z" />
1180
- <glyph glyph-name="diamond"
1181
- unicode="&#xF287;"
1182
- horiz-adv-x="512" d=" M341.3333333333333 256H405.3333333333333L298.6666666666667 106.6666666666667M213.3333333333333 256H298.6666666666667L256 85.3333333333334M106.6666666666667 256H170.6666666666667L213.3333333333333 106.6666666666667M320 362.6666666666667H362.6666666666667L405.3333333333333 298.6666666666667H341.3333333333333M234.6666666666667 362.6666666666667H277.3333333333333L298.6666666666667 298.6666666666667H213.3333333333333M149.3333333333333 362.6666666666667H192L170.6666666666667 298.6666666666667H106.6666666666667M128 405.3333333333333L42.6666666666667 277.3333333333334L256 -21.3333333333333L469.3333333333333 277.3333333333334L384 405.3333333333333H128z" />
1183
- <glyph glyph-name="dice"
1184
- unicode="&#xF288;"
1185
- horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M117.3333333333333 142.5066666666667C105.6 149.3333333333334 96 145.0666666666667 96 133.3333333333334S105.6 106.6666666666667 117.3333333333333 99.84C129.0666666666667 93.2266666666667 138.6666666666667 97.4933333333333 138.6666666666667 109.2266666666667S129.0666666666667 135.8933333333333 117.3333333333333 142.5066666666667M117.3333333333333 227.84C105.6 234.6666666666667 96 230.4 96 218.6666666666667S105.6 192 117.3333333333333 185.1733333333334C129.0666666666667 178.56 138.6666666666667 182.8266666666667 138.6666666666667 194.56S129.0666666666667 221.2266666666667 117.3333333333333 227.84M202.6666666666667 94.2933333333334C190.9333333333333 100.9066666666667 181.3333333333333 96.8533333333334 181.3333333333333 85.3333333333334C181.3333333333333 73.1733333333334 190.9333333333333 58.24 202.6666666666667 51.6266666666667C214.4 45.0133333333334 224 49.0666666666667 224 60.8000000000001C224 72.7466666666667 214.4 87.6800000000001 202.6666666666667 94.2933333333334M160 161.0666666666667C148.2666666666667 167.6800000000001 138.6666666666667 163.6266666666667 138.6666666666667 151.8933333333334S148.2666666666667 125.0133333333334 160 118.4C171.7333333333334 111.7866666666667 181.3333333333333 115.84 181.3333333333333 128C181.3333333333333 139.52 171.7333333333334 154.4533333333334 160 161.0666666666667M202.6666666666667 179.6266666666667C190.9333333333333 186.24 181.3333333333333 182.1866666666667 181.3333333333333 170.6666666666667C181.3333333333333 158.5066666666667 190.9333333333333 143.5733333333334 202.6666666666667 136.96C214.4 130.3466666666667 224 134.4 224 146.1333333333333C224 158.0800000000001 214.4 173.0133333333333 202.6666666666667 179.6266666666667M394.6666666666667 142.5066666666667C382.9333333333333 135.8933333333333 373.3333333333333 120.96 373.3333333333333 109.2266666666667S382.9333333333333 93.2266666666666 394.6666666666667 99.84C406.4 106.6666666666667 416 121.6 416 133.3333333333334S406.4 149.3333333333334 394.6666666666667 142.5066666666667M394.6666666666667 227.84C382.9333333333333 221.2266666666667 373.3333333333333 206.2933333333334 373.3333333333333 194.56S382.9333333333333 178.56 394.6666666666667 185.1733333333334C406.4 192 416 206.9333333333333 416 218.6666666666667S406.4 234.6666666666667 394.6666666666667 227.84M309.3333333333333 94.2933333333334C297.6 87.6800000000001 288 72.7466666666667 288 60.8000000000001C288 49.0666666666667 297.6 45.0133333333334 309.3333333333333 51.6266666666667S330.6666666666667 73.1733333333334 330.6666666666667 85.3333333333334C330.6666666666667 96.8533333333334 321.0666666666667 100.9066666666667 309.3333333333333 94.2933333333334M309.3333333333333 179.6266666666667C297.6 173.0133333333334 288 158.0800000000001 288 146.1333333333334C288 134.4 297.6 130.3466666666667 309.3333333333333 136.96S330.6666666666667 158.5066666666667 330.6666666666667 170.6666666666668C330.6666666666667 182.1866666666667 321.0666666666667 186.2400000000001 309.3333333333333 179.6266666666667M352 282.24C363.52 289.0666666666667 364.5866666666667 299.5200000000001 354.56 305.2800000000001C344.32 311.2533333333334 326.6133333333334 310.4000000000001 314.88 303.5733333333334S302.0800000000001 286.2933333333334 312.3200000000001 280.5333333333334C322.3466666666667 274.5600000000001 340.2666666666667 275.4133333333334 352.0000000000001 282.24M193.4933333333334 275.2000000000001C205.0133333333334 282.0266666666668 206.2933333333334 292.2666666666667 196.0533333333334 298.6666666666668C185.8133333333334 304.2133333333334 168.1066666666667 303.36 156.5866666666667 296.5333333333334C144.8533333333334 289.4933333333334 143.5733333333334 279.2533333333334 153.8133333333334 273.2800000000001C164.0533333333334 267.5200000000001 181.3333333333334 268.1600000000001 193.4933333333334 275.2000000000001M272.6400000000001 278.6133333333334C284.3733333333335 285.6533333333334 285.4400000000001 295.8933333333335 275.2000000000001 301.8666666666668C265.1733333333334 307.6266666666667 247.2533333333334 306.9866666666668 235.7333333333334 299.9466666666667C224.0000000000001 293.1200000000001 222.9333333333334 282.8800000000001 232.9600000000001 277.3333333333334C243.2000000000001 270.9333333333334 260.9066666666668 271.7866666666668 272.6400000000001 278.6133333333334z" />
1186
- <glyph glyph-name="dice-1"
1187
- unicode="&#xF289;"
1188
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
1189
- <glyph glyph-name="dice-2"
1190
- unicode="&#xF28A;"
1191
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128z" />
1192
- <glyph glyph-name="dice-3"
1193
- unicode="&#xF28B;"
1194
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128z" />
1195
- <glyph glyph-name="dice-4"
1196
- unicode="&#xF28C;"
1197
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128M362.6666666666667 341.3333333333334C339.2 341.3333333333334 320 322.1333333333334 320 298.6666666666667S339.2 256 362.6666666666667 256S405.3333333333333 275.2000000000001 405.3333333333333 298.6666666666667S386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334M149.3333333333333 128C125.8666666666667 128 106.6666666666667 108.8 106.6666666666667 85.3333333333334S125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667S192 61.8666666666667 192 85.3333333333334S172.8 128 149.3333333333333 128z" />
1198
- <glyph glyph-name="dice-5"
1199
- unicode="&#xF28D;"
1200
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128M362.6666666666667 341.3333333333334C339.2 341.3333333333334 320 322.1333333333334 320 298.6666666666667S339.2 256 362.6666666666667 256S405.3333333333333 275.2000000000001 405.3333333333333 298.6666666666667S386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M149.3333333333333 128C125.8666666666667 128 106.6666666666667 108.8 106.6666666666667 85.3333333333334S125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667S192 61.8666666666667 192 85.3333333333334S172.8 128 149.3333333333333 128z" />
1201
- <glyph glyph-name="dice-6"
1202
- unicode="&#xF28E;"
1203
- horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128M362.6666666666667 234.6666666666667C339.2 234.6666666666667 320 215.4666666666667 320 192S339.2 149.3333333333334 362.6666666666667 149.3333333333334S405.3333333333333 168.5333333333334 405.3333333333333 192S386.1333333333334 234.6666666666667 362.6666666666667 234.6666666666667M362.6666666666667 341.3333333333334C339.2 341.3333333333334 320 322.1333333333334 320 298.6666666666667S339.2 256 362.6666666666667 256S405.3333333333333 275.2000000000001 405.3333333333333 298.6666666666667S386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334M149.3333333333333 234.6666666666667C125.8666666666667 234.6666666666667 106.6666666666667 215.4666666666667 106.6666666666667 192S125.8666666666667 149.3333333333334 149.3333333333333 149.3333333333334S192 168.5333333333334 192 192S172.8 234.6666666666667 149.3333333333333 234.6666666666667M149.3333333333333 128C125.8666666666667 128 106.6666666666667 108.8 106.6666666666667 85.3333333333334S125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667S192 61.8666666666667 192 85.3333333333334S172.8 128 149.3333333333333 128z" />
1204
- <glyph glyph-name="directions"
1205
- unicode="&#xF28F;"
1206
- horiz-adv-x="512" d=" M298.6666666666667 138.6666666666667V192H213.3333333333333V128H170.6666666666667V213.3333333333334C170.6666666666667 225.0666666666667 180.2666666666667 234.6666666666667 192 234.6666666666667H298.6666666666667V288L373.3333333333333 213.3333333333334M463.1466666666666 207.1466666666667L271.1466666666667 399.1466666666667H270.9333333333334C262.6133333333334 407.4666666666667 249.1733333333334 407.4666666666667 240.8533333333334 399.1466666666667L48.8533333333334 207.1466666666667C40.5333333333333 198.8266666666667 40.5333333333333 185.1733333333334 48.8533333333334 176.8533333333334L240.8533333333334 -15.1466666666666C249.1733333333334 -23.2533333333333 262.6133333333334 -23.4666666666667 271.1466666666667 -15.1466666666666L463.1466666666666 176.8533333333334C471.4666666666667 185.1733333333334 471.4666666666667 198.8266666666667 463.1466666666666 207.1466666666667z" />
1207
- <glyph glyph-name="disk-alert"
1208
- unicode="&#xF290;"
1209
- horiz