material-sass 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/.gitignore +22 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +59 -0
  5. data/Rakefile +2 -0
  6. data/app/assets/fonts/FontAwesome.otf +0 -0
  7. data/app/assets/fonts/MaterialDesignIcon.eot +0 -0
  8. data/app/assets/fonts/MaterialDesignIcon.svg +767 -0
  9. data/app/assets/fonts/MaterialDesignIcon.ttf +0 -0
  10. data/app/assets/fonts/MaterialDesignIcon.woff +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  12. data/app/assets/fonts/fontawesome-webfont.svg +565 -0
  13. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  14. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  15. data/app/assets/fonts/fontawesome-webfont.woff2 +0 -0
  16. data/app/assets/javascripts/material-sprockets.js +1 -0
  17. data/app/assets/javascripts/material.js +403 -0
  18. data/app/assets/javascripts/material/_.js +11 -0
  19. data/app/assets/javascripts/material/btn.js +11 -0
  20. data/app/assets/javascripts/material/content.js +45 -0
  21. data/app/assets/javascripts/material/datepicker.js +21 -0
  22. data/app/assets/javascripts/material/dropdown.js +15 -0
  23. data/app/assets/javascripts/material/esc.js +10 -0
  24. data/app/assets/javascripts/material/footer.js +4 -0
  25. data/app/assets/javascripts/material/form-adv.js +65 -0
  26. data/app/assets/javascripts/material/header.js +17 -0
  27. data/app/assets/javascripts/material/menu.js +39 -0
  28. data/app/assets/javascripts/material/sortable.js +10 -0
  29. data/app/assets/javascripts/material/tab.js +31 -0
  30. data/app/assets/javascripts/material/tile.js +43 -0
  31. data/app/assets/javascripts/material/toast.js +68 -0
  32. data/app/assets/javascripts/material/winresize.js +13 -0
  33. data/app/assets/stylesheets/material.scss +3 -0
  34. data/app/assets/stylesheets/material/_addon.scss +2 -0
  35. data/app/assets/stylesheets/material/_code.scss +54 -0
  36. data/app/assets/stylesheets/material/_element.scss +15 -0
  37. data/app/assets/stylesheets/material/_grid.scss +83 -0
  38. data/app/assets/stylesheets/material/_mixin.scss +4 -0
  39. data/app/assets/stylesheets/material/_reset.scss +403 -0
  40. data/app/assets/stylesheets/material/_theme.scss +4 -0
  41. data/app/assets/stylesheets/material/_utilitise.scss +252 -0
  42. data/app/assets/stylesheets/material/_variable-color.scss +6 -0
  43. data/app/assets/stylesheets/material/_variable.scss +116 -0
  44. data/app/assets/stylesheets/material/addon/_font-awesome.scss +18 -0
  45. data/app/assets/stylesheets/material/addon/_material-design-icon.scss +3053 -0
  46. data/app/assets/stylesheets/material/addon/font-awesome/_animated.scss +33 -0
  47. data/app/assets/stylesheets/material/addon/font-awesome/_bordered-pulled.scss +11 -0
  48. data/app/assets/stylesheets/material/addon/font-awesome/_core.scss +10 -0
  49. data/app/assets/stylesheets/material/addon/font-awesome/_fixed-width.scss +5 -0
  50. data/app/assets/stylesheets/material/addon/font-awesome/_flipped-rotated.scss +29 -0
  51. data/app/assets/stylesheets/material/addon/font-awesome/_icon.scss +593 -0
  52. data/app/assets/stylesheets/material/addon/font-awesome/_icons.scss +593 -0
  53. data/app/assets/stylesheets/material/addon/font-awesome/_larger.scss +22 -0
  54. data/app/assets/stylesheets/material/addon/font-awesome/_list.scss +21 -0
  55. data/app/assets/stylesheets/material/addon/font-awesome/_mixins.scss +25 -0
  56. data/app/assets/stylesheets/material/addon/font-awesome/_path.scss +12 -0
  57. data/app/assets/stylesheets/material/addon/font-awesome/_stacked.scss +29 -0
  58. data/app/assets/stylesheets/material/addon/font-awesome/_variable.scss +601 -0
  59. data/app/assets/stylesheets/material/addon/font-awesome/_variables.scss +602 -0
  60. data/app/assets/stylesheets/material/base.scss +16 -0
  61. data/app/assets/stylesheets/material/element/_avatar.scss +63 -0
  62. data/app/assets/stylesheets/material/element/_button-float.scss +145 -0
  63. data/app/assets/stylesheets/material/element/_button.scss +131 -0
  64. data/app/assets/stylesheets/material/element/_card.scss +203 -0
  65. data/app/assets/stylesheets/material/element/_dropdown.scss +116 -0
  66. data/app/assets/stylesheets/material/element/_form-adv-datepicker.scss +265 -0
  67. data/app/assets/stylesheets/material/element/_form-adv.scss +277 -0
  68. data/app/assets/stylesheets/material/element/_form.scss +226 -0
  69. data/app/assets/stylesheets/material/element/_modal.scss +121 -0
  70. data/app/assets/stylesheets/material/element/_nav.scss +40 -0
  71. data/app/assets/stylesheets/material/element/_sortable.scss +8 -0
  72. data/app/assets/stylesheets/material/element/_tab.scss +71 -0
  73. data/app/assets/stylesheets/material/element/_table.scss +77 -0
  74. data/app/assets/stylesheets/material/element/_tile.scss +154 -0
  75. data/app/assets/stylesheets/material/element/_toast.scss +61 -0
  76. data/app/assets/stylesheets/material/mixin/_css3.scss +52 -0
  77. data/app/assets/stylesheets/material/mixin/_grid.scss +82 -0
  78. data/app/assets/stylesheets/material/mixin/_responsive.scss +32 -0
  79. data/app/assets/stylesheets/material/mixin/_utilitise.scss +35 -0
  80. data/app/assets/stylesheets/material/project.scss +2 -0
  81. data/app/assets/stylesheets/material/theme/_content.scss +79 -0
  82. data/app/assets/stylesheets/material/theme/_footer.scss +23 -0
  83. data/app/assets/stylesheets/material/theme/_header.scss +103 -0
  84. data/app/assets/stylesheets/material/theme/_menu.scss +221 -0
  85. data/lib/material-sass.rb +26 -0
  86. data/lib/material-sass/engine.rb +12 -0
  87. data/lib/material-sass/version.rb +5 -0
  88. data/material-sass.gemspec +23 -0
  89. metadata +166 -0
@@ -0,0 +1,6 @@
1
+ // brand colour
2
+ $brand-color: $palette-green;
3
+ $brand-color-dark: $palette-green-dark;
4
+ $brand-color-dark-m: $palette-green-dark-m;
5
+ $brand-color-light: $palette-green-light;
6
+ $brand-color-light-m: $palette-green-light-m;
@@ -0,0 +1,116 @@
1
+ // base
2
+ $base: 8px;
3
+
4
+ // colour
5
+ // basic colour
6
+ // black
7
+ $black: #000000;
8
+ $black-bg: #e0e0e0;
9
+ $black-hint: #9e9e9e;
10
+ $black-sec: #616161;
11
+ $black-text: #212121;
12
+
13
+ // palette
14
+ $palette-blue: #2196f3;
15
+ $palette-blue-dark: #0d47a1;
16
+ $palette-blue-dark-m: #1976d2;
17
+ $palette-blue-light: #bbdefb;
18
+ $palette-blue-light-m: #64b5f6;
19
+
20
+ $palette-green: #4caf50;
21
+ $palette-green-dark: #1b5e20;
22
+ $palette-green-dark-m: #388e3c;
23
+ $palette-green-light: #c8e6c9;
24
+ $palette-green-light-m: #81c784;
25
+
26
+ $palette-purple: #9c27b0;
27
+ $palette-purple-dark: #4a148c;
28
+ $palette-purple-dark-m: #7b1fa2;
29
+ $palette-purple-light: #e1bee7;
30
+ $palette-purple-light-m: #ba68c8;
31
+
32
+ $palette-red: #f44336;
33
+ $palette-red-dark: #b71c1c;
34
+ $palette-red-dark-m: #d32f2f;
35
+ $palette-red-light: #ffcdd2;
36
+ $palette-red-light-m: #e57373;
37
+
38
+ $palette-yellow: #ffc107;
39
+ $palette-yellow-dark: #ff6f00;
40
+ $palette-yellow-dark-m: #ffa000;
41
+ $palette-yellow-light: #ffecb3;
42
+ $palette-yellow-light-m: #ffd54f;
43
+
44
+ // white
45
+ $white: #ffffff;
46
+ $white-bg: #f5f5f5;
47
+ $white-bg-dark: #eeeeee;
48
+ $white-bg-light: #fafafa;
49
+
50
+ // brand colour
51
+ @import "variable-color";
52
+
53
+ // list
54
+ $palette-color: $brand-color, $palette-blue, $palette-green, $palette-purple, $palette-red, $palette-yellow;
55
+ $palette-color-dark: $brand-color-dark, $palette-blue-dark, $palette-green-dark, $palette-purple-dark, $palette-red-dark, $palette-yellow-dark;
56
+ $palette-color-dark-m: $brand-color-dark-m, $palette-blue-dark-m, $palette-green-dark-m, $palette-purple-dark-m, $palette-red-dark-m, $palette-yellow-dark-m;
57
+ $palette-color-light: $brand-color-light, $palette-blue-light, $palette-green-light, $palette-purple-light, $palette-red-light, $palette-yellow-light;
58
+ $palette-color-light-m: $brand-color-light-m, $palette-blue-light-m, $palette-green-light-m, $palette-purple-light-m, $palette-red-light-m, $palette-yellow-light-m;
59
+ $palette-list: "alt", "blue", "green", "purple", "red", "yellow";
60
+
61
+ // font
62
+ $font-fam: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
63
+ $font-fam-mono: Monaco, Menlo, Consolas, "Courier New", monospace;
64
+ $font-fam-serif: Georgia, serif;
65
+
66
+ // base
67
+ $base-font-size: ($base * 2); // 16px
68
+ $base-line-height: ($base * 3); // 24px
69
+
70
+ // font size
71
+ $font-size: $base-font-size; // 16px
72
+ $font-size-h1: ($base-font-size * 2.75); // 44px
73
+ $font-size-h2: ($base-font-size * 2.25); // 36px
74
+ $font-size-h3: ($base-font-size * 1.75); // 28px
75
+ $font-size-h4: ($base-font-size * 1.25); // 20px
76
+ $font-size-h5: ($base-font-size * 1); // 16px
77
+ $font-size-h6: ($base-font-size * 0.75); // 12px
78
+ $font-size-lg: ($base-font-size * 4); // 60px
79
+
80
+ // line height
81
+ $line-height: $base-line-height; // 24px
82
+ $line-height-h1: ($base-line-height * 2); // 48px
83
+ $line-height-h2: ($base-line-height * 2); // 48px
84
+ $line-height-h3: ($base-line-height * 2); // 48px
85
+ $line-height-h4: ($base-line-height * 1); // 24px
86
+ $line-height-h5: ($base-line-height * 1); // 24px
87
+ $line-height-h6: ($base-line-height * 1); // 24px
88
+ $line-height-lg: ($base-line-height * 3); // 72px
89
+
90
+ // other
91
+ $btn-height: ($base-line-height * 1.5);
92
+ $cell-height: ($base-line-height * 2);
93
+ $input-height: ($base-line-height * 1.5);
94
+
95
+ // grid
96
+ $grid-cols: 12;
97
+ $grid-gutter: ($base * 2);
98
+
99
+ // link
100
+ $link-color: $palette-blue;
101
+ $link-color-hover: $palette-blue-dark;
102
+
103
+ // responsive
104
+ $screen-lg: 1440px;
105
+ $screen-md: 992px;
106
+ $screen-sm: 768px;
107
+ $screen-xs: 480px;
108
+
109
+ // timing
110
+ $timing: cubic-bezier(0.4, 0, 0.2, 1);
111
+
112
+ // z-index
113
+ $bottom-base: 10;
114
+ $content-base: 20;
115
+ $header-base: 30;
116
+ $top-base: 40;
@@ -0,0 +1,18 @@
1
+ // font awesome v4.3.0
2
+ // http://fontawesome.io
3
+
4
+ @import "font-awesome/mixins";
5
+ @import "font-awesome/variables";
6
+
7
+ @import "font-awesome/path";
8
+ @import "font-awesome/core";
9
+
10
+ @import "font-awesome/animated";
11
+ @import "font-awesome/bordered-pulled";
12
+ @import "font-awesome/fixed-width";
13
+ @import "font-awesome/flipped-rotated";
14
+ @import "font-awesome/larger";
15
+ @import "font-awesome/list";
16
+ @import "font-awesome/stacked";
17
+
18
+ @import "font-awesome/icons";
@@ -0,0 +1,3053 @@
1
+ @font-face {
2
+ font-family: 'MaterialDesignIcon';
3
+ font-style: normal;
4
+ font-weight: normal;
5
+ src: font-url('MaterialDesignIcon.eot?-yk43tr');
6
+ src: font-url('MaterialDesignIcon.eot?#iefix-yk43tr') format('embedded-opentype'),
7
+ font-url('MaterialDesignIcon.woff?-yk43tr') format('woff'),
8
+ font-url('MaterialDesignIcon.ttf?-yk43tr') format('truetype'),
9
+ font-url('MaterialDesignIcon.svg?-yk43tr#MaterialDesignIcon') format('svg');
10
+ }
11
+
12
+ .icon {
13
+ display: inline-block;
14
+ font-family: 'MaterialDesignIcon';
15
+ font-size: inherit;
16
+ font-style: normal;
17
+ font-variant: normal;
18
+ font-weight: normal;
19
+ line-height: 1;
20
+ speak: none;
21
+ text-rendering: auto;
22
+ transform: translate(0, 0);
23
+ -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
+ }
26
+
27
+ .icon-3d-rotation:before {
28
+ content: "\e600";
29
+ }
30
+
31
+ .icon-accessibility:before {
32
+ content: "\e601";
33
+ }
34
+
35
+ .icon-account-balance:before {
36
+ content: "\e602";
37
+ }
38
+
39
+ .icon-account-balance-wallet:before {
40
+ content: "\e603";
41
+ }
42
+
43
+ .icon-account-box:before {
44
+ content: "\e604";
45
+ }
46
+
47
+ .icon-account-child:before {
48
+ content: "\e605";
49
+ }
50
+
51
+ .icon-account-circle:before {
52
+ content: "\e606";
53
+ }
54
+
55
+ .icon-add-shopping-cart:before {
56
+ content: "\e607";
57
+ }
58
+
59
+ .icon-alarm:before {
60
+ content: "\e608";
61
+ }
62
+
63
+ .icon-alarm-add:before {
64
+ content: "\e609";
65
+ }
66
+
67
+ .icon-alarm-off:before {
68
+ content: "\e60a";
69
+ }
70
+
71
+ .icon-alarm-on:before {
72
+ content: "\e60b";
73
+ }
74
+
75
+ .icon-android:before {
76
+ content: "\e60c";
77
+ }
78
+
79
+ .icon-announcement:before {
80
+ content: "\e60d";
81
+ }
82
+
83
+ .icon-aspect-ratio:before {
84
+ content: "\e60e";
85
+ }
86
+
87
+ .icon-assessment:before {
88
+ content: "\e60f";
89
+ }
90
+
91
+ .icon-assignment:before {
92
+ content: "\e610";
93
+ }
94
+
95
+ .icon-assignment-ind:before {
96
+ content: "\e611";
97
+ }
98
+
99
+ .icon-assignment-late:before {
100
+ content: "\e612";
101
+ }
102
+
103
+ .icon-assignment-return:before {
104
+ content: "\e613";
105
+ }
106
+
107
+ .icon-assignment-returned:before {
108
+ content: "\e614";
109
+ }
110
+
111
+ .icon-assignment-turned-in:before {
112
+ content: "\e615";
113
+ }
114
+
115
+ .icon-autorenew:before {
116
+ content: "\e616";
117
+ }
118
+
119
+ .icon-backup:before {
120
+ content: "\e617";
121
+ }
122
+
123
+ .icon-book:before {
124
+ content: "\e618";
125
+ }
126
+
127
+ .icon-bookmark:before {
128
+ content: "\e619";
129
+ }
130
+
131
+ .icon-bookmark-outline:before {
132
+ content: "\e61a";
133
+ }
134
+
135
+ .icon-bug-report:before {
136
+ content: "\e61b";
137
+ }
138
+
139
+ .icon-cached:before {
140
+ content: "\e61c";
141
+ }
142
+
143
+ .icon-class:before {
144
+ content: "\e61d";
145
+ }
146
+
147
+ .icon-credit-card:before {
148
+ content: "\e61e";
149
+ }
150
+
151
+ .icon-dashboard:before {
152
+ content: "\e61f";
153
+ }
154
+
155
+ .icon-delete:before {
156
+ content: "\e620";
157
+ }
158
+
159
+ .icon-description:before {
160
+ content: "\e621";
161
+ }
162
+
163
+ .icon-dns:before {
164
+ content: "\e622";
165
+ }
166
+
167
+ .icon-done:before {
168
+ content: "\e623";
169
+ }
170
+
171
+ .icon-done-all:before {
172
+ content: "\e624";
173
+ }
174
+
175
+ .icon-event:before {
176
+ content: "\e625";
177
+ }
178
+
179
+ .icon-exit-to-app:before {
180
+ content: "\e626";
181
+ }
182
+
183
+ .icon-explore:before {
184
+ content: "\e627";
185
+ }
186
+
187
+ .icon-extension:before {
188
+ content: "\e628";
189
+ }
190
+
191
+ .icon-face-unlock:before {
192
+ content: "\e629";
193
+ }
194
+
195
+ .icon-favorite:before {
196
+ content: "\e62a";
197
+ }
198
+
199
+ .icon-favorite-outline:before {
200
+ content: "\e62b";
201
+ }
202
+
203
+ .icon-find-in-page:before {
204
+ content: "\e62c";
205
+ }
206
+
207
+ .icon-find-replace:before {
208
+ content: "\e62d";
209
+ }
210
+
211
+ .icon-flip-to-back:before {
212
+ content: "\e62e";
213
+ }
214
+
215
+ .icon-flip-to-front:before {
216
+ content: "\e62f";
217
+ }
218
+
219
+ .icon-get-app:before {
220
+ content: "\e630";
221
+ }
222
+
223
+ .icon-grade:before {
224
+ content: "\e631";
225
+ }
226
+
227
+ .icon-group-work:before {
228
+ content: "\e632";
229
+ }
230
+
231
+ .icon-help:before {
232
+ content: "\e633";
233
+ }
234
+
235
+ .icon-highlight-remove:before {
236
+ content: "\e634";
237
+ }
238
+
239
+ .icon-history:before {
240
+ content: "\e635";
241
+ }
242
+
243
+ .icon-home:before {
244
+ content: "\e636";
245
+ }
246
+
247
+ .icon-https:before {
248
+ content: "\e637";
249
+ }
250
+
251
+ .icon-info:before {
252
+ content: "\e638";
253
+ }
254
+
255
+ .icon-info-outline:before {
256
+ content: "\e639";
257
+ }
258
+
259
+ .icon-input:before {
260
+ content: "\e63a";
261
+ }
262
+
263
+ .icon-invert-colors:before {
264
+ content: "\e63b";
265
+ }
266
+
267
+ .icon-label:before {
268
+ content: "\e63c";
269
+ }
270
+
271
+ .icon-label-outline:before {
272
+ content: "\e63d";
273
+ }
274
+
275
+ .icon-language:before {
276
+ content: "\e63e";
277
+ }
278
+
279
+ .icon-launch:before {
280
+ content: "\e63f";
281
+ }
282
+
283
+ .icon-list:before {
284
+ content: "\e640";
285
+ }
286
+
287
+ .icon-lock:before {
288
+ content: "\e641";
289
+ }
290
+
291
+ .icon-lock-open:before {
292
+ content: "\e642";
293
+ }
294
+
295
+ .icon-lock-outline:before {
296
+ content: "\e643";
297
+ }
298
+
299
+ .icon-loyalty:before {
300
+ content: "\e644";
301
+ }
302
+
303
+ .icon-markunread-mailbox:before {
304
+ content: "\e645";
305
+ }
306
+
307
+ .icon-note-add:before {
308
+ content: "\e646";
309
+ }
310
+
311
+ .icon-open-in-browser:before {
312
+ content: "\e647";
313
+ }
314
+
315
+ .icon-open-in-new:before {
316
+ content: "\e648";
317
+ }
318
+
319
+ .icon-open-with:before {
320
+ content: "\e649";
321
+ }
322
+
323
+ .icon-pageview:before {
324
+ content: "\e64a";
325
+ }
326
+
327
+ .icon-payment:before {
328
+ content: "\e64b";
329
+ }
330
+
331
+ .icon-perm-camera-mic:before {
332
+ content: "\e64c";
333
+ }
334
+
335
+ .icon-perm-contact-cal:before {
336
+ content: "\e64d";
337
+ }
338
+
339
+ .icon-perm-data-setting:before {
340
+ content: "\e64e";
341
+ }
342
+
343
+ .icon-perm-device-info:before {
344
+ content: "\e64f";
345
+ }
346
+
347
+ .icon-perm-identity:before {
348
+ content: "\e650";
349
+ }
350
+
351
+ .icon-perm-media:before {
352
+ content: "\e651";
353
+ }
354
+
355
+ .icon-perm-phone-msg:before {
356
+ content: "\e652";
357
+ }
358
+
359
+ .icon-perm-scan-wifi:before {
360
+ content: "\e653";
361
+ }
362
+
363
+ .icon-picture-in-picture:before {
364
+ content: "\e654";
365
+ }
366
+
367
+ .icon-polymer:before {
368
+ content: "\e655";
369
+ }
370
+
371
+ .icon-print:before {
372
+ content: "\e656";
373
+ }
374
+
375
+ .icon-query-builder:before {
376
+ content: "\e657";
377
+ }
378
+
379
+ .icon-question-answer:before {
380
+ content: "\e658";
381
+ }
382
+
383
+ .icon-receipt:before {
384
+ content: "\e659";
385
+ }
386
+
387
+ .icon-redeem:before {
388
+ content: "\e65a";
389
+ }
390
+
391
+ .icon-reorder:before {
392
+ content: "\e65b";
393
+ }
394
+
395
+ .icon-report-problem:before {
396
+ content: "\e65c";
397
+ }
398
+
399
+ .icon-restore:before {
400
+ content: "\e65d";
401
+ }
402
+
403
+ .icon-room:before {
404
+ content: "\e65e";
405
+ }
406
+
407
+ .icon-schedule:before {
408
+ content: "\e65f";
409
+ }
410
+
411
+ .icon-search:before {
412
+ content: "\e660";
413
+ }
414
+
415
+ .icon-settings:before {
416
+ content: "\e661";
417
+ }
418
+
419
+ .icon-settings-applications:before {
420
+ content: "\e662";
421
+ }
422
+
423
+ .icon-settings-backup-restore:before {
424
+ content: "\e663";
425
+ }
426
+
427
+ .icon-settings-bluetooth:before {
428
+ content: "\e664";
429
+ }
430
+
431
+ .icon-settings-cell:before {
432
+ content: "\e665";
433
+ }
434
+
435
+ .icon-settings-display:before {
436
+ content: "\e666";
437
+ }
438
+
439
+ .icon-settings-ethernet:before {
440
+ content: "\e667";
441
+ }
442
+
443
+ .icon-settings-input-antenna:before {
444
+ content: "\e668";
445
+ }
446
+
447
+ .icon-settings-input-component:before {
448
+ content: "\e669";
449
+ }
450
+
451
+ .icon-settings-input-composite:before {
452
+ content: "\e66a";
453
+ }
454
+
455
+ .icon-settings-input-hdmi:before {
456
+ content: "\e66b";
457
+ }
458
+
459
+ .icon-settings-input-svideo:before {
460
+ content: "\e66c";
461
+ }
462
+
463
+ .icon-settings-overscan:before {
464
+ content: "\e66d";
465
+ }
466
+
467
+ .icon-settings-phone:before {
468
+ content: "\e66e";
469
+ }
470
+
471
+ .icon-settings-power:before {
472
+ content: "\e66f";
473
+ }
474
+
475
+ .icon-settings-remote:before {
476
+ content: "\e670";
477
+ }
478
+
479
+ .icon-settings-voice:before {
480
+ content: "\e671";
481
+ }
482
+
483
+ .icon-shop:before {
484
+ content: "\e672";
485
+ }
486
+
487
+ .icon-shop-two:before {
488
+ content: "\e673";
489
+ }
490
+
491
+ .icon-shopping-basket:before {
492
+ content: "\e674";
493
+ }
494
+
495
+ .icon-shopping-cart:before {
496
+ content: "\e675";
497
+ }
498
+
499
+ .icon-speaker-notes:before {
500
+ content: "\e676";
501
+ }
502
+
503
+ .icon-spellcheck:before {
504
+ content: "\e677";
505
+ }
506
+
507
+ .icon-star-rate:before {
508
+ content: "\e678";
509
+ }
510
+
511
+ .icon-stars:before {
512
+ content: "\e679";
513
+ }
514
+
515
+ .icon-store:before {
516
+ content: "\e67a";
517
+ }
518
+
519
+ .icon-subject:before {
520
+ content: "\e67b";
521
+ }
522
+
523
+ .icon-supervisor-account:before {
524
+ content: "\e67c";
525
+ }
526
+
527
+ .icon-swap-horiz:before {
528
+ content: "\e67d";
529
+ }
530
+
531
+ .icon-swap-vert:before {
532
+ content: "\e67e";
533
+ }
534
+
535
+ .icon-swap-vert-circle:before {
536
+ content: "\e67f";
537
+ }
538
+
539
+ .icon-system-update-tv:before {
540
+ content: "\e680";
541
+ }
542
+
543
+ .icon-tab:before {
544
+ content: "\e681";
545
+ }
546
+
547
+ .icon-tab-unselected:before {
548
+ content: "\e682";
549
+ }
550
+
551
+ .icon-theaters:before {
552
+ content: "\e683";
553
+ }
554
+
555
+ .icon-thumb-down:before {
556
+ content: "\e684";
557
+ }
558
+
559
+ .icon-thumb-up:before {
560
+ content: "\e685";
561
+ }
562
+
563
+ .icon-thumbs-up-down:before {
564
+ content: "\e686";
565
+ }
566
+
567
+ .icon-toc:before {
568
+ content: "\e687";
569
+ }
570
+
571
+ .icon-today:before {
572
+ content: "\e688";
573
+ }
574
+
575
+ .icon-track-changes:before {
576
+ content: "\e689";
577
+ }
578
+
579
+ .icon-translate:before {
580
+ content: "\e68a";
581
+ }
582
+
583
+ .icon-trending-down:before {
584
+ content: "\e68b";
585
+ }
586
+
587
+ .icon-trending-neutral:before {
588
+ content: "\e68c";
589
+ }
590
+
591
+ .icon-trending-up:before {
592
+ content: "\e68d";
593
+ }
594
+
595
+ .icon-turned-in:before {
596
+ content: "\e68e";
597
+ }
598
+
599
+ .icon-turned-in-not:before {
600
+ content: "\e68f";
601
+ }
602
+
603
+ .icon-verified-user:before {
604
+ content: "\e690";
605
+ }
606
+
607
+ .icon-view-agenda:before {
608
+ content: "\e691";
609
+ }
610
+
611
+ .icon-view-array:before {
612
+ content: "\e692";
613
+ }
614
+
615
+ .icon-view-carousel:before {
616
+ content: "\e693";
617
+ }
618
+
619
+ .icon-view-column:before {
620
+ content: "\e694";
621
+ }
622
+
623
+ .icon-view-day:before {
624
+ content: "\e695";
625
+ }
626
+
627
+ .icon-view-headline:before {
628
+ content: "\e696";
629
+ }
630
+
631
+ .icon-view-list:before {
632
+ content: "\e697";
633
+ }
634
+
635
+ .icon-view-module:before {
636
+ content: "\e698";
637
+ }
638
+
639
+ .icon-view-quilt:before {
640
+ content: "\e699";
641
+ }
642
+
643
+ .icon-view-stream:before {
644
+ content: "\e69a";
645
+ }
646
+
647
+ .icon-view-week:before {
648
+ content: "\e69b";
649
+ }
650
+
651
+ .icon-visibility:before {
652
+ content: "\e69c";
653
+ }
654
+
655
+ .icon-visibility-off:before {
656
+ content: "\e69d";
657
+ }
658
+
659
+ .icon-wallet-giftcard:before {
660
+ content: "\e69e";
661
+ }
662
+
663
+ .icon-wallet-membership:before {
664
+ content: "\e69f";
665
+ }
666
+
667
+ .icon-wallet-travel:before {
668
+ content: "\e6a0";
669
+ }
670
+
671
+ .icon-work:before {
672
+ content: "\e6a1";
673
+ }
674
+
675
+ .icon-error:before {
676
+ content: "\e6a2";
677
+ }
678
+
679
+ .icon-warning:before {
680
+ content: "\e6a3";
681
+ }
682
+
683
+ .icon-album:before {
684
+ content: "\e6a4";
685
+ }
686
+
687
+ .icon-av-timer:before {
688
+ content: "\e6a5";
689
+ }
690
+
691
+ .icon-closed-caption:before {
692
+ content: "\e6a6";
693
+ }
694
+
695
+ .icon-equalizer:before {
696
+ content: "\e6a7";
697
+ }
698
+
699
+ .icon-explicit:before {
700
+ content: "\e6a8";
701
+ }
702
+
703
+ .icon-fast-forward:before {
704
+ content: "\e6a9";
705
+ }
706
+
707
+ .icon-fast-rewind:before {
708
+ content: "\e6aa";
709
+ }
710
+
711
+ .icon-games:before {
712
+ content: "\e6ab";
713
+ }
714
+
715
+ .icon-hearing:before {
716
+ content: "\e6ac";
717
+ }
718
+
719
+ .icon-high-quality:before {
720
+ content: "\e6ad";
721
+ }
722
+
723
+ .icon-loop:before {
724
+ content: "\e6ae";
725
+ }
726
+
727
+ .icon-mic:before {
728
+ content: "\e6af";
729
+ }
730
+
731
+ .icon-mic-none:before {
732
+ content: "\e6b0";
733
+ }
734
+
735
+ .icon-mic-off:before {
736
+ content: "\e6b1";
737
+ }
738
+
739
+ .icon-movie:before {
740
+ content: "\e6b2";
741
+ }
742
+
743
+ .icon-my-library-add:before {
744
+ content: "\e6b3";
745
+ }
746
+
747
+ .icon-my-library-books:before {
748
+ content: "\e6b4";
749
+ }
750
+
751
+ .icon-my-library-music:before {
752
+ content: "\e6b5";
753
+ }
754
+
755
+ .icon-new-releases:before {
756
+ content: "\e6b6";
757
+ }
758
+
759
+ .icon-not-interested:before {
760
+ content: "\e6b7";
761
+ }
762
+
763
+ .icon-pause:before {
764
+ content: "\e6b8";
765
+ }
766
+
767
+ .icon-pause-circle-fill:before {
768
+ content: "\e6b9";
769
+ }
770
+
771
+ .icon-pause-circle-outline:before {
772
+ content: "\e6ba";
773
+ }
774
+
775
+ .icon-play-arrow:before {
776
+ content: "\e6bb";
777
+ }
778
+
779
+ .icon-play-circle-fill:before {
780
+ content: "\e6bc";
781
+ }
782
+
783
+ .icon-play-circle-outline:before {
784
+ content: "\e6bd";
785
+ }
786
+
787
+ .icon-play-shopping-bag:before {
788
+ content: "\e6be";
789
+ }
790
+
791
+ .icon-playlist-add:before {
792
+ content: "\e6bf";
793
+ }
794
+
795
+ .icon-queue:before {
796
+ content: "\e6c0";
797
+ }
798
+
799
+ .icon-queue-music:before {
800
+ content: "\e6c1";
801
+ }
802
+
803
+ .icon-radio:before {
804
+ content: "\e6c2";
805
+ }
806
+
807
+ .icon-recent-actors:before {
808
+ content: "\e6c3";
809
+ }
810
+
811
+ .icon-repeat:before {
812
+ content: "\e6c4";
813
+ }
814
+
815
+ .icon-repeat-one:before {
816
+ content: "\e6c5";
817
+ }
818
+
819
+ .icon-replay:before {
820
+ content: "\e6c6";
821
+ }
822
+
823
+ .icon-shuffle:before {
824
+ content: "\e6c7";
825
+ }
826
+
827
+ .icon-skip-next:before {
828
+ content: "\e6c8";
829
+ }
830
+
831
+ .icon-skip-previous:before {
832
+ content: "\e6c9";
833
+ }
834
+
835
+ .icon-snooze:before {
836
+ content: "\e6ca";
837
+ }
838
+
839
+ .icon-stop:before {
840
+ content: "\e6cb";
841
+ }
842
+
843
+ .icon-subtitles:before {
844
+ content: "\e6cc";
845
+ }
846
+
847
+ .icon-surround-sound:before {
848
+ content: "\e6cd";
849
+ }
850
+
851
+ .icon-video-collection:before {
852
+ content: "\e6ce";
853
+ }
854
+
855
+ .icon-videocam:before {
856
+ content: "\e6cf";
857
+ }
858
+
859
+ .icon-videocam-off:before {
860
+ content: "\e6d0";
861
+ }
862
+
863
+ .icon-volume-down:before {
864
+ content: "\e6d1";
865
+ }
866
+
867
+ .icon-volume-mute:before {
868
+ content: "\e6d2";
869
+ }
870
+
871
+ .icon-volume-off:before {
872
+ content: "\e6d3";
873
+ }
874
+
875
+ .icon-volume-up:before {
876
+ content: "\e6d4";
877
+ }
878
+
879
+ .icon-web:before {
880
+ content: "\e6d5";
881
+ }
882
+
883
+ .icon-business:before {
884
+ content: "\e6d6";
885
+ }
886
+
887
+ .icon-call:before {
888
+ content: "\e6d7";
889
+ }
890
+
891
+ .icon-call-end:before {
892
+ content: "\e6d8";
893
+ }
894
+
895
+ .icon-call-made:before {
896
+ content: "\e6d9";
897
+ }
898
+
899
+ .icon-call-merge:before {
900
+ content: "\e6da";
901
+ }
902
+
903
+ .icon-call-missed:before {
904
+ content: "\e6db";
905
+ }
906
+
907
+ .icon-call-received:before {
908
+ content: "\e6dc";
909
+ }
910
+
911
+ .icon-call-split:before {
912
+ content: "\e6dd";
913
+ }
914
+
915
+ .icon-chat:before {
916
+ content: "\e6de";
917
+ }
918
+
919
+ .icon-clear-all:before {
920
+ content: "\e6df";
921
+ }
922
+
923
+ .icon-comment:before {
924
+ content: "\e6e0";
925
+ }
926
+
927
+ .icon-contacts:before {
928
+ content: "\e6e1";
929
+ }
930
+
931
+ .icon-dialer-sip:before {
932
+ content: "\e6e2";
933
+ }
934
+
935
+ .icon-dialpad:before {
936
+ content: "\e6e3";
937
+ }
938
+
939
+ .icon-dnd-on:before {
940
+ content: "\e6e4";
941
+ }
942
+
943
+ .icon-email:before {
944
+ content: "\e6e5";
945
+ }
946
+
947
+ .icon-forum:before {
948
+ content: "\e6e6";
949
+ }
950
+
951
+ .icon-import-export:before {
952
+ content: "\e6e7";
953
+ }
954
+
955
+ .icon-invert-colors-off:before {
956
+ content: "\e6e8";
957
+ }
958
+
959
+ .icon-invert-colors-on:before {
960
+ content: "\e6e9";
961
+ }
962
+
963
+ .icon-live-help:before {
964
+ content: "\e6ea";
965
+ }
966
+
967
+ .icon-location-off:before {
968
+ content: "\e6eb";
969
+ }
970
+
971
+ .icon-location-on:before {
972
+ content: "\e6ec";
973
+ }
974
+
975
+ .icon-message:before {
976
+ content: "\e6ed";
977
+ }
978
+
979
+ .icon-messenger:before {
980
+ content: "\e6ee";
981
+ }
982
+
983
+ .icon-no-sim:before {
984
+ content: "\e6ef";
985
+ }
986
+
987
+ .icon-phone:before {
988
+ content: "\e6f0";
989
+ }
990
+
991
+ .icon-portable-wifi-off:before {
992
+ content: "\e6f1";
993
+ }
994
+
995
+ .icon-quick-contacts-dialer:before {
996
+ content: "\e6f2";
997
+ }
998
+
999
+ .icon-quick-contacts-mail:before {
1000
+ content: "\e6f3";
1001
+ }
1002
+
1003
+ .icon-ring-volume:before {
1004
+ content: "\e6f4";
1005
+ }
1006
+
1007
+ .icon-stay-current-landscape:before {
1008
+ content: "\e6f5";
1009
+ }
1010
+
1011
+ .icon-stay-current-portrait:before {
1012
+ content: "\e6f6";
1013
+ }
1014
+
1015
+ .icon-stay-primary-landscape:before {
1016
+ content: "\e6f7";
1017
+ }
1018
+
1019
+ .icon-stay-primary-portrait:before {
1020
+ content: "\e6f8";
1021
+ }
1022
+
1023
+ .icon-swap-calls:before {
1024
+ content: "\e6f9";
1025
+ }
1026
+
1027
+ .icon-textsms:before {
1028
+ content: "\e6fa";
1029
+ }
1030
+
1031
+ .icon-voicemail:before {
1032
+ content: "\e6fb";
1033
+ }
1034
+
1035
+ .icon-vpn-key:before {
1036
+ content: "\e6fc";
1037
+ }
1038
+
1039
+ .icon-add:before {
1040
+ content: "\e6fd";
1041
+ }
1042
+
1043
+ .icon-add-box:before {
1044
+ content: "\e6fe";
1045
+ }
1046
+
1047
+ .icon-add-circle:before {
1048
+ content: "\e6ff";
1049
+ }
1050
+
1051
+ .icon-add-circle-outline:before {
1052
+ content: "\e700";
1053
+ }
1054
+
1055
+ .icon-archive:before {
1056
+ content: "\e701";
1057
+ }
1058
+
1059
+ .icon-backspace:before {
1060
+ content: "\e702";
1061
+ }
1062
+
1063
+ .icon-block:before {
1064
+ content: "\e703";
1065
+ }
1066
+
1067
+ .icon-clear:before {
1068
+ content: "\e704";
1069
+ }
1070
+
1071
+ .icon-content-copy:before {
1072
+ content: "\e705";
1073
+ }
1074
+
1075
+ .icon-content-cut:before {
1076
+ content: "\e706";
1077
+ }
1078
+
1079
+ .icon-content-paste:before {
1080
+ content: "\e707";
1081
+ }
1082
+
1083
+ .icon-create:before {
1084
+ content: "\e708";
1085
+ }
1086
+
1087
+ .icon-drafts:before {
1088
+ content: "\e709";
1089
+ }
1090
+
1091
+ .icon-filter-list:before {
1092
+ content: "\e70a";
1093
+ }
1094
+
1095
+ .icon-flag:before {
1096
+ content: "\e70b";
1097
+ }
1098
+
1099
+ .icon-forward:before {
1100
+ content: "\e70c";
1101
+ }
1102
+
1103
+ .icon-gesture:before {
1104
+ content: "\e70d";
1105
+ }
1106
+
1107
+ .icon-inbox:before {
1108
+ content: "\e70e";
1109
+ }
1110
+
1111
+ .icon-link:before {
1112
+ content: "\e70f";
1113
+ }
1114
+
1115
+ .icon-mail:before {
1116
+ content: "\e710";
1117
+ }
1118
+
1119
+ .icon-markunread:before {
1120
+ content: "\e711";
1121
+ }
1122
+
1123
+ .icon-redo:before {
1124
+ content: "\e712";
1125
+ }
1126
+
1127
+ .icon-remove:before {
1128
+ content: "\e713";
1129
+ }
1130
+
1131
+ .icon-remove-circle:before {
1132
+ content: "\e714";
1133
+ }
1134
+
1135
+ .icon-remove-circle-outline:before {
1136
+ content: "\e715";
1137
+ }
1138
+
1139
+ .icon-reply:before {
1140
+ content: "\e716";
1141
+ }
1142
+
1143
+ .icon-reply-all:before {
1144
+ content: "\e717";
1145
+ }
1146
+
1147
+ .icon-report:before {
1148
+ content: "\e718";
1149
+ }
1150
+
1151
+ .icon-save:before {
1152
+ content: "\e719";
1153
+ }
1154
+
1155
+ .icon-select-all:before {
1156
+ content: "\e71a";
1157
+ }
1158
+
1159
+ .icon-send:before {
1160
+ content: "\e71b";
1161
+ }
1162
+
1163
+ .icon-sort:before {
1164
+ content: "\e71c";
1165
+ }
1166
+
1167
+ .icon-text-format:before {
1168
+ content: "\e71d";
1169
+ }
1170
+
1171
+ .icon-undo:before {
1172
+ content: "\e71e";
1173
+ }
1174
+
1175
+ .icon-access-alarm:before {
1176
+ content: "\e71f";
1177
+ }
1178
+
1179
+ .icon-access-alarms:before {
1180
+ content: "\e720";
1181
+ }
1182
+
1183
+ .icon-access-time:before {
1184
+ content: "\e721";
1185
+ }
1186
+
1187
+ .icon-add-alarm:before {
1188
+ content: "\e722";
1189
+ }
1190
+
1191
+ .icon-airplanemode-off:before {
1192
+ content: "\e723";
1193
+ }
1194
+
1195
+ .icon-airplanemode-on:before {
1196
+ content: "\e724";
1197
+ }
1198
+
1199
+ .icon-battery-20:before {
1200
+ content: "\e725";
1201
+ }
1202
+
1203
+ .icon-battery-30:before {
1204
+ content: "\e726";
1205
+ }
1206
+
1207
+ .icon-battery-50:before {
1208
+ content: "\e727";
1209
+ }
1210
+
1211
+ .icon-battery-60:before {
1212
+ content: "\e728";
1213
+ }
1214
+
1215
+ .icon-battery-80:before {
1216
+ content: "\e729";
1217
+ }
1218
+
1219
+ .icon-battery-90:before {
1220
+ content: "\e72a";
1221
+ }
1222
+
1223
+ .icon-battery-alert:before {
1224
+ content: "\e72b";
1225
+ }
1226
+
1227
+ .icon-battery-charging-20:before {
1228
+ content: "\e72c";
1229
+ }
1230
+
1231
+ .icon-battery-charging-30:before {
1232
+ content: "\e72d";
1233
+ }
1234
+
1235
+ .icon-battery-charging-50:before {
1236
+ content: "\e72e";
1237
+ }
1238
+
1239
+ .icon-battery-charging-60:before {
1240
+ content: "\e72f";
1241
+ }
1242
+
1243
+ .icon-battery-charging-80:before {
1244
+ content: "\e730";
1245
+ }
1246
+
1247
+ .icon-battery-charging-90:before {
1248
+ content: "\e731";
1249
+ }
1250
+
1251
+ .icon-battery-charging-full:before {
1252
+ content: "\e732";
1253
+ }
1254
+
1255
+ .icon-battery-full:before {
1256
+ content: "\e733";
1257
+ }
1258
+
1259
+ .icon-battery-std:before {
1260
+ content: "\e734";
1261
+ }
1262
+
1263
+ .icon-battery-unknown:before {
1264
+ content: "\e735";
1265
+ }
1266
+
1267
+ .icon-bluetooth:before {
1268
+ content: "\e736";
1269
+ }
1270
+
1271
+ .icon-bluetooth-connected:before {
1272
+ content: "\e737";
1273
+ }
1274
+
1275
+ .icon-bluetooth-disabled:before {
1276
+ content: "\e738";
1277
+ }
1278
+
1279
+ .icon-bluetooth-searching:before {
1280
+ content: "\e739";
1281
+ }
1282
+
1283
+ .icon-brightness-auto:before {
1284
+ content: "\e73a";
1285
+ }
1286
+
1287
+ .icon-brightness-high:before {
1288
+ content: "\e73b";
1289
+ }
1290
+
1291
+ .icon-brightness-low:before {
1292
+ content: "\e73c";
1293
+ }
1294
+
1295
+ .icon-brightness-medium:before {
1296
+ content: "\e73d";
1297
+ }
1298
+
1299
+ .icon-data-usage:before {
1300
+ content: "\e73e";
1301
+ }
1302
+
1303
+ .icon-developer-mode:before {
1304
+ content: "\e73f";
1305
+ }
1306
+
1307
+ .icon-devices:before {
1308
+ content: "\e740";
1309
+ }
1310
+
1311
+ .icon-dvr:before {
1312
+ content: "\e741";
1313
+ }
1314
+
1315
+ .icon-gps-fixed:before {
1316
+ content: "\e742";
1317
+ }
1318
+
1319
+ .icon-gps-not-fixed:before {
1320
+ content: "\e743";
1321
+ }
1322
+
1323
+ .icon-gps-off:before {
1324
+ content: "\e744";
1325
+ }
1326
+
1327
+ .icon-location-disabled:before {
1328
+ content: "\e745";
1329
+ }
1330
+
1331
+ .icon-location-searching:before {
1332
+ content: "\e746";
1333
+ }
1334
+
1335
+ .icon-multitrack-audio:before {
1336
+ content: "\e747";
1337
+ }
1338
+
1339
+ .icon-network-cell:before {
1340
+ content: "\e748";
1341
+ }
1342
+
1343
+ .icon-network-wifi:before {
1344
+ content: "\e749";
1345
+ }
1346
+
1347
+ .icon-nfc:before {
1348
+ content: "\e74a";
1349
+ }
1350
+
1351
+ .icon-now-wallpaper:before {
1352
+ content: "\e74b";
1353
+ }
1354
+
1355
+ .icon-now-widgets:before {
1356
+ content: "\e74c";
1357
+ }
1358
+
1359
+ .icon-screen-lock-landscape:before {
1360
+ content: "\e74d";
1361
+ }
1362
+
1363
+ .icon-screen-lock-portrait:before {
1364
+ content: "\e74e";
1365
+ }
1366
+
1367
+ .icon-screen-lock-rotation:before {
1368
+ content: "\e74f";
1369
+ }
1370
+
1371
+ .icon-screen-rotation:before {
1372
+ content: "\e750";
1373
+ }
1374
+
1375
+ .icon-sd-storage:before {
1376
+ content: "\e751";
1377
+ }
1378
+
1379
+ .icon-settings-system-daydream:before {
1380
+ content: "\e752";
1381
+ }
1382
+
1383
+ .icon-signal-cellular-0-bar:before {
1384
+ content: "\e753";
1385
+ }
1386
+
1387
+ .icon-signal-cellular-1-bar:before {
1388
+ content: "\e754";
1389
+ }
1390
+
1391
+ .icon-signal-cellular-2-bar:before {
1392
+ content: "\e755";
1393
+ }
1394
+
1395
+ .icon-signal-cellular-3-bar:before {
1396
+ content: "\e756";
1397
+ }
1398
+
1399
+ .icon-signal-cellular-4-bar:before {
1400
+ content: "\e757";
1401
+ }
1402
+
1403
+ .icon-signal-cellular-connected-no-internet-0-bar:before {
1404
+ content: "\e758";
1405
+ }
1406
+
1407
+ .icon-signal-cellular-connected-no-internet-1-bar:before {
1408
+ content: "\e759";
1409
+ }
1410
+
1411
+ .icon-signal-cellular-connected-no-internet-2-bar:before {
1412
+ content: "\e75a";
1413
+ }
1414
+
1415
+ .icon-signal-cellular-connected-no-internet-3-bar:before {
1416
+ content: "\e75b";
1417
+ }
1418
+
1419
+ .icon-signal-cellular-connected-no-internet-4-bar:before {
1420
+ content: "\e75c";
1421
+ }
1422
+
1423
+ .icon-signal-cellular-no-sim:before {
1424
+ content: "\e75d";
1425
+ }
1426
+
1427
+ .icon-signal-cellular-null:before {
1428
+ content: "\e75e";
1429
+ }
1430
+
1431
+ .icon-signal-cellular-off:before {
1432
+ content: "\e75f";
1433
+ }
1434
+
1435
+ .icon-signal-wifi-0-bar:before {
1436
+ content: "\e760";
1437
+ }
1438
+
1439
+ .icon-signal-wifi-1-bar:before {
1440
+ content: "\e761";
1441
+ }
1442
+
1443
+ .icon-signal-wifi-2-bar:before {
1444
+ content: "\e762";
1445
+ }
1446
+
1447
+ .icon-signal-wifi-3-bar:before {
1448
+ content: "\e763";
1449
+ }
1450
+
1451
+ .icon-signal-wifi-4-bar:before {
1452
+ content: "\e764";
1453
+ }
1454
+
1455
+ .icon-signal-wifi-off:before {
1456
+ content: "\e765";
1457
+ }
1458
+
1459
+ .icon-signal-wifi-statusbar-1-bar:before {
1460
+ content: "\e766";
1461
+ }
1462
+
1463
+ .icon-signal-wifi-statusbar-2-bar:before {
1464
+ content: "\e767";
1465
+ }
1466
+
1467
+ .icon-signal-wifi-statusbar-3-bar:before {
1468
+ content: "\e768";
1469
+ }
1470
+
1471
+ .icon-signal-wifi-statusbar-4-bar:before {
1472
+ content: "\e769";
1473
+ }
1474
+
1475
+ .icon-signal-wifi-statusbar-connected-no-internet-1:before {
1476
+ content: "\e76a";
1477
+ }
1478
+
1479
+ .icon-signal-wifi-statusbar-connected-no-internet-2:before {
1480
+ content: "\e76b";
1481
+ }
1482
+
1483
+ .icon-signal-wifi-statusbar-connected-no-internet-3:before {
1484
+ content: "\e76c";
1485
+ }
1486
+
1487
+ .icon-signal-wifi-statusbar-connected-no-internet-4:before {
1488
+ content: "\e76d";
1489
+ }
1490
+
1491
+ .icon-signal-wifi-statusbar-connected-no-internet:before {
1492
+ content: "\e76e";
1493
+ }
1494
+
1495
+ .icon-signal-wifi-statusbar-not-connected:before {
1496
+ content: "\e76f";
1497
+ }
1498
+
1499
+ .icon-signal-wifi-statusbar-null:before {
1500
+ content: "\e770";
1501
+ }
1502
+
1503
+ .icon-storage:before {
1504
+ content: "\e771";
1505
+ }
1506
+
1507
+ .icon-usb:before {
1508
+ content: "\e772";
1509
+ }
1510
+
1511
+ .icon-wifi-lock:before {
1512
+ content: "\e773";
1513
+ }
1514
+
1515
+ .icon-wifi-tethering:before {
1516
+ content: "\e774";
1517
+ }
1518
+
1519
+ .icon-attach-file:before {
1520
+ content: "\e775";
1521
+ }
1522
+
1523
+ .icon-attach-money:before {
1524
+ content: "\e776";
1525
+ }
1526
+
1527
+ .icon-border-all:before {
1528
+ content: "\e777";
1529
+ }
1530
+
1531
+ .icon-border-bottom:before {
1532
+ content: "\e778";
1533
+ }
1534
+
1535
+ .icon-border-clear:before {
1536
+ content: "\e779";
1537
+ }
1538
+
1539
+ .icon-border-color:before {
1540
+ content: "\e77a";
1541
+ }
1542
+
1543
+ .icon-border-horizontal:before {
1544
+ content: "\e77b";
1545
+ }
1546
+
1547
+ .icon-border-inner:before {
1548
+ content: "\e77c";
1549
+ }
1550
+
1551
+ .icon-border-left:before {
1552
+ content: "\e77d";
1553
+ }
1554
+
1555
+ .icon-border-outer:before {
1556
+ content: "\e77e";
1557
+ }
1558
+
1559
+ .icon-border-right:before {
1560
+ content: "\e77f";
1561
+ }
1562
+
1563
+ .icon-border-style:before {
1564
+ content: "\e780";
1565
+ }
1566
+
1567
+ .icon-border-top:before {
1568
+ content: "\e781";
1569
+ }
1570
+
1571
+ .icon-border-vertical:before {
1572
+ content: "\e782";
1573
+ }
1574
+
1575
+ .icon-format-align-center:before {
1576
+ content: "\e783";
1577
+ }
1578
+
1579
+ .icon-format-align-justify:before {
1580
+ content: "\e784";
1581
+ }
1582
+
1583
+ .icon-format-align-left:before {
1584
+ content: "\e785";
1585
+ }
1586
+
1587
+ .icon-format-align-right:before {
1588
+ content: "\e786";
1589
+ }
1590
+
1591
+ .icon-format-bold:before {
1592
+ content: "\e787";
1593
+ }
1594
+
1595
+ .icon-format-clear:before {
1596
+ content: "\e788";
1597
+ }
1598
+
1599
+ .icon-format-color-fill:before {
1600
+ content: "\e789";
1601
+ }
1602
+
1603
+ .icon-format-color-reset:before {
1604
+ content: "\e78a";
1605
+ }
1606
+
1607
+ .icon-format-color-text:before {
1608
+ content: "\e78b";
1609
+ }
1610
+
1611
+ .icon-format-indent-decrease:before {
1612
+ content: "\e78c";
1613
+ }
1614
+
1615
+ .icon-format-indent-increase:before {
1616
+ content: "\e78d";
1617
+ }
1618
+
1619
+ .icon-format-italic:before {
1620
+ content: "\e78e";
1621
+ }
1622
+
1623
+ .icon-format-line-spacing:before {
1624
+ content: "\e78f";
1625
+ }
1626
+
1627
+ .icon-format-list-bulleted:before {
1628
+ content: "\e790";
1629
+ }
1630
+
1631
+ .icon-format-list-numbered:before {
1632
+ content: "\e791";
1633
+ }
1634
+
1635
+ .icon-format-paint:before {
1636
+ content: "\e792";
1637
+ }
1638
+
1639
+ .icon-format-quote:before {
1640
+ content: "\e793";
1641
+ }
1642
+
1643
+ .icon-format-size:before {
1644
+ content: "\e794";
1645
+ }
1646
+
1647
+ .icon-format-strikethrough:before {
1648
+ content: "\e795";
1649
+ }
1650
+
1651
+ .icon-format-textdirection-l-to-r:before {
1652
+ content: "\e796";
1653
+ }
1654
+
1655
+ .icon-format-textdirection-r-to-l:before {
1656
+ content: "\e797";
1657
+ }
1658
+
1659
+ .icon-format-underline:before {
1660
+ content: "\e798";
1661
+ }
1662
+
1663
+ .icon-functions:before {
1664
+ content: "\e799";
1665
+ }
1666
+
1667
+ .icon-insert-chart:before {
1668
+ content: "\e79a";
1669
+ }
1670
+
1671
+ .icon-insert-comment:before {
1672
+ content: "\e79b";
1673
+ }
1674
+
1675
+ .icon-insert-drive-file:before {
1676
+ content: "\e79c";
1677
+ }
1678
+
1679
+ .icon-insert-emoticon:before {
1680
+ content: "\e79d";
1681
+ }
1682
+
1683
+ .icon-insert-invitation:before {
1684
+ content: "\e79e";
1685
+ }
1686
+
1687
+ .icon-insert-link:before {
1688
+ content: "\e79f";
1689
+ }
1690
+
1691
+ .icon-insert-photo:before {
1692
+ content: "\e7a0";
1693
+ }
1694
+
1695
+ .icon-merge-type:before {
1696
+ content: "\e7a1";
1697
+ }
1698
+
1699
+ .icon-mode-comment:before {
1700
+ content: "\e7a2";
1701
+ }
1702
+
1703
+ .icon-mode-edit:before {
1704
+ content: "\e7a3";
1705
+ }
1706
+
1707
+ .icon-publish:before {
1708
+ content: "\e7a4";
1709
+ }
1710
+
1711
+ .icon-vertical-align-bottom:before {
1712
+ content: "\e7a5";
1713
+ }
1714
+
1715
+ .icon-vertical-align-center:before {
1716
+ content: "\e7a6";
1717
+ }
1718
+
1719
+ .icon-vertical-align-top:before {
1720
+ content: "\e7a7";
1721
+ }
1722
+
1723
+ .icon-wrap-text:before {
1724
+ content: "\e7a8";
1725
+ }
1726
+
1727
+ .icon-attachment:before {
1728
+ content: "\e7a9";
1729
+ }
1730
+
1731
+ .icon-cloud:before {
1732
+ content: "\e7aa";
1733
+ }
1734
+
1735
+ .icon-cloud-circle:before {
1736
+ content: "\e7ab";
1737
+ }
1738
+
1739
+ .icon-cloud-done:before {
1740
+ content: "\e7ac";
1741
+ }
1742
+
1743
+ .icon-cloud-download:before {
1744
+ content: "\e7ad";
1745
+ }
1746
+
1747
+ .icon-cloud-off:before {
1748
+ content: "\e7ae";
1749
+ }
1750
+
1751
+ .icon-cloud-queue:before {
1752
+ content: "\e7af";
1753
+ }
1754
+
1755
+ .icon-cloud-upload:before {
1756
+ content: "\e7b0";
1757
+ }
1758
+
1759
+ .icon-file-download:before {
1760
+ content: "\e7b1";
1761
+ }
1762
+
1763
+ .icon-file-upload:before {
1764
+ content: "\e7b2";
1765
+ }
1766
+
1767
+ .icon-folder:before {
1768
+ content: "\e7b3";
1769
+ }
1770
+
1771
+ .icon-folder-open:before {
1772
+ content: "\e7b4";
1773
+ }
1774
+
1775
+ .icon-folder-shared:before {
1776
+ content: "\e7b5";
1777
+ }
1778
+
1779
+ .icon-cast:before {
1780
+ content: "\e7b6";
1781
+ }
1782
+
1783
+ .icon-cast-connected:before {
1784
+ content: "\e7b7";
1785
+ }
1786
+
1787
+ .icon-computer:before {
1788
+ content: "\e7b8";
1789
+ }
1790
+
1791
+ .icon-desktop-mac:before {
1792
+ content: "\e7b9";
1793
+ }
1794
+
1795
+ .icon-desktop-windows:before {
1796
+ content: "\e7ba";
1797
+ }
1798
+
1799
+ .icon-dock:before {
1800
+ content: "\e7bb";
1801
+ }
1802
+
1803
+ .icon-gamepad:before {
1804
+ content: "\e7bc";
1805
+ }
1806
+
1807
+ .icon-headset:before {
1808
+ content: "\e7bd";
1809
+ }
1810
+
1811
+ .icon-headset-mic:before {
1812
+ content: "\e7be";
1813
+ }
1814
+
1815
+ .icon-keyboard:before {
1816
+ content: "\e7bf";
1817
+ }
1818
+
1819
+ .icon-keyboard-alt:before {
1820
+ content: "\e7c0";
1821
+ }
1822
+
1823
+ .icon-keyboard-arrow-down:before {
1824
+ content: "\e7c1";
1825
+ }
1826
+
1827
+ .icon-keyboard-arrow-left:before {
1828
+ content: "\e7c2";
1829
+ }
1830
+
1831
+ .icon-keyboard-arrow-right:before {
1832
+ content: "\e7c3";
1833
+ }
1834
+
1835
+ .icon-keyboard-arrow-up:before {
1836
+ content: "\e7c4";
1837
+ }
1838
+
1839
+ .icon-keyboard-backspace:before {
1840
+ content: "\e7c5";
1841
+ }
1842
+
1843
+ .icon-keyboard-capslock:before {
1844
+ content: "\e7c6";
1845
+ }
1846
+
1847
+ .icon-keyboard-control:before {
1848
+ content: "\e7c7";
1849
+ }
1850
+
1851
+ .icon-keyboard-hide:before {
1852
+ content: "\e7c8";
1853
+ }
1854
+
1855
+ .icon-keyboard-return:before {
1856
+ content: "\e7c9";
1857
+ }
1858
+
1859
+ .icon-keyboard-tab:before {
1860
+ content: "\e7ca";
1861
+ }
1862
+
1863
+ .icon-keyboard-voice:before {
1864
+ content: "\e7cb";
1865
+ }
1866
+
1867
+ .icon-laptop:before {
1868
+ content: "\e7cc";
1869
+ }
1870
+
1871
+ .icon-laptop-chromebook:before {
1872
+ content: "\e7cd";
1873
+ }
1874
+
1875
+ .icon-laptop-mac:before {
1876
+ content: "\e7ce";
1877
+ }
1878
+
1879
+ .icon-laptop-windows:before {
1880
+ content: "\e7cf";
1881
+ }
1882
+
1883
+ .icon-memory:before {
1884
+ content: "\e7d0";
1885
+ }
1886
+
1887
+ .icon-mouse:before {
1888
+ content: "\e7d1";
1889
+ }
1890
+
1891
+ .icon-phone-android:before {
1892
+ content: "\e7d2";
1893
+ }
1894
+
1895
+ .icon-phone-iphone:before {
1896
+ content: "\e7d3";
1897
+ }
1898
+
1899
+ .icon-phonelink:before {
1900
+ content: "\e7d4";
1901
+ }
1902
+
1903
+ .icon-phonelink-off:before {
1904
+ content: "\e7d5";
1905
+ }
1906
+
1907
+ .icon-security:before {
1908
+ content: "\e7d6";
1909
+ }
1910
+
1911
+ .icon-sim-card:before {
1912
+ content: "\e7d7";
1913
+ }
1914
+
1915
+ .icon-smartphone:before {
1916
+ content: "\e7d8";
1917
+ }
1918
+
1919
+ .icon-speaker:before {
1920
+ content: "\e7d9";
1921
+ }
1922
+
1923
+ .icon-tablet:before {
1924
+ content: "\e7da";
1925
+ }
1926
+
1927
+ .icon-tablet-android:before {
1928
+ content: "\e7db";
1929
+ }
1930
+
1931
+ .icon-tablet-mac:before {
1932
+ content: "\e7dc";
1933
+ }
1934
+
1935
+ .icon-tv:before {
1936
+ content: "\e7dd";
1937
+ }
1938
+
1939
+ .icon-watch:before {
1940
+ content: "\e7de";
1941
+ }
1942
+
1943
+ .icon-add-to-photos:before {
1944
+ content: "\e7df";
1945
+ }
1946
+
1947
+ .icon-adjust:before {
1948
+ content: "\e7e0";
1949
+ }
1950
+
1951
+ .icon-assistant-photo:before {
1952
+ content: "\e7e1";
1953
+ }
1954
+
1955
+ .icon-audiotrack:before {
1956
+ content: "\e7e2";
1957
+ }
1958
+
1959
+ .icon-blur-circular:before {
1960
+ content: "\e7e3";
1961
+ }
1962
+
1963
+ .icon-blur-linear:before {
1964
+ content: "\e7e4";
1965
+ }
1966
+
1967
+ .icon-blur-off:before {
1968
+ content: "\e7e5";
1969
+ }
1970
+
1971
+ .icon-blur-on:before {
1972
+ content: "\e7e6";
1973
+ }
1974
+
1975
+ .icon-brightness-1:before {
1976
+ content: "\e7e7";
1977
+ }
1978
+
1979
+ .icon-brightness-2:before {
1980
+ content: "\e7e8";
1981
+ }
1982
+
1983
+ .icon-brightness-3:before {
1984
+ content: "\e7e9";
1985
+ }
1986
+
1987
+ .icon-brightness-4:before {
1988
+ content: "\e7ea";
1989
+ }
1990
+
1991
+ .icon-brightness-5:before {
1992
+ content: "\e7eb";
1993
+ }
1994
+
1995
+ .icon-brightness-6:before {
1996
+ content: "\e7ec";
1997
+ }
1998
+
1999
+ .icon-brightness-7:before {
2000
+ content: "\e7ed";
2001
+ }
2002
+
2003
+ .icon-brush:before {
2004
+ content: "\e7ee";
2005
+ }
2006
+
2007
+ .icon-camera:before {
2008
+ content: "\e7ef";
2009
+ }
2010
+
2011
+ .icon-camera-alt:before {
2012
+ content: "\e7f0";
2013
+ }
2014
+
2015
+ .icon-camera-front:before {
2016
+ content: "\e7f1";
2017
+ }
2018
+
2019
+ .icon-camera-rear:before {
2020
+ content: "\e7f2";
2021
+ }
2022
+
2023
+ .icon-camera-roll:before {
2024
+ content: "\e7f3";
2025
+ }
2026
+
2027
+ .icon-center-focus-strong:before {
2028
+ content: "\e7f4";
2029
+ }
2030
+
2031
+ .icon-center-focus-weak:before {
2032
+ content: "\e7f5";
2033
+ }
2034
+
2035
+ .icon-collections:before {
2036
+ content: "\e7f6";
2037
+ }
2038
+
2039
+ .icon-color-lens:before {
2040
+ content: "\e7f7";
2041
+ }
2042
+
2043
+ .icon-colorize:before {
2044
+ content: "\e7f8";
2045
+ }
2046
+
2047
+ .icon-compare:before {
2048
+ content: "\e7f9";
2049
+ }
2050
+
2051
+ .icon-control-point:before {
2052
+ content: "\e7fa";
2053
+ }
2054
+
2055
+ .icon-control-point-duplicate:before {
2056
+ content: "\e7fb";
2057
+ }
2058
+
2059
+ .icon-crop-3-2:before {
2060
+ content: "\e7fc";
2061
+ }
2062
+
2063
+ .icon-crop-5-4:before {
2064
+ content: "\e7fd";
2065
+ }
2066
+
2067
+ .icon-crop-7-5:before {
2068
+ content: "\e7fe";
2069
+ }
2070
+
2071
+ .icon-crop-16-9:before {
2072
+ content: "\e7ff";
2073
+ }
2074
+
2075
+ .icon-crop:before {
2076
+ content: "\e800";
2077
+ }
2078
+
2079
+ .icon-crop-din:before {
2080
+ content: "\e801";
2081
+ }
2082
+
2083
+ .icon-crop-free:before {
2084
+ content: "\e802";
2085
+ }
2086
+
2087
+ .icon-crop-landscape:before {
2088
+ content: "\e803";
2089
+ }
2090
+
2091
+ .icon-crop-original:before {
2092
+ content: "\e804";
2093
+ }
2094
+
2095
+ .icon-crop-portrait:before {
2096
+ content: "\e805";
2097
+ }
2098
+
2099
+ .icon-crop-square:before {
2100
+ content: "\e806";
2101
+ }
2102
+
2103
+ .icon-dehaze:before {
2104
+ content: "\e807";
2105
+ }
2106
+
2107
+ .icon-details:before {
2108
+ content: "\e808";
2109
+ }
2110
+
2111
+ .icon-edit:before {
2112
+ content: "\e809";
2113
+ }
2114
+
2115
+ .icon-exposure:before {
2116
+ content: "\e80a";
2117
+ }
2118
+
2119
+ .icon-exposure-minus-1:before {
2120
+ content: "\e80b";
2121
+ }
2122
+
2123
+ .icon-exposure-minus-2:before {
2124
+ content: "\e80c";
2125
+ }
2126
+
2127
+ .icon-exposure-plus-1:before {
2128
+ content: "\e80d";
2129
+ }
2130
+
2131
+ .icon-exposure-plus-2:before {
2132
+ content: "\e80e";
2133
+ }
2134
+
2135
+ .icon-exposure-zero:before {
2136
+ content: "\e80f";
2137
+ }
2138
+
2139
+ .icon-filter-1:before {
2140
+ content: "\e810";
2141
+ }
2142
+
2143
+ .icon-filter-2:before {
2144
+ content: "\e811";
2145
+ }
2146
+
2147
+ .icon-filter-3:before {
2148
+ content: "\e812";
2149
+ }
2150
+
2151
+ .icon-filter-4:before {
2152
+ content: "\e813";
2153
+ }
2154
+
2155
+ .icon-filter-5:before {
2156
+ content: "\e814";
2157
+ }
2158
+
2159
+ .icon-filter-6:before {
2160
+ content: "\e815";
2161
+ }
2162
+
2163
+ .icon-filter-7:before {
2164
+ content: "\e816";
2165
+ }
2166
+
2167
+ .icon-filter-8:before {
2168
+ content: "\e817";
2169
+ }
2170
+
2171
+ .icon-filter-9:before {
2172
+ content: "\e818";
2173
+ }
2174
+
2175
+ .icon-filter-9-plus:before {
2176
+ content: "\e819";
2177
+ }
2178
+
2179
+ .icon-filter:before {
2180
+ content: "\e81a";
2181
+ }
2182
+
2183
+ .icon-filter-b-and-w:before {
2184
+ content: "\e81b";
2185
+ }
2186
+
2187
+ .icon-filter-center-focus:before {
2188
+ content: "\e81c";
2189
+ }
2190
+
2191
+ .icon-filter-drama:before {
2192
+ content: "\e81d";
2193
+ }
2194
+
2195
+ .icon-filter-frames:before {
2196
+ content: "\e81e";
2197
+ }
2198
+
2199
+ .icon-filter-hdr:before {
2200
+ content: "\e81f";
2201
+ }
2202
+
2203
+ .icon-filter-none:before {
2204
+ content: "\e820";
2205
+ }
2206
+
2207
+ .icon-filter-tilt-shift:before {
2208
+ content: "\e821";
2209
+ }
2210
+
2211
+ .icon-filter-vintage:before {
2212
+ content: "\e822";
2213
+ }
2214
+
2215
+ .icon-flare:before {
2216
+ content: "\e823";
2217
+ }
2218
+
2219
+ .icon-flash-auto:before {
2220
+ content: "\e824";
2221
+ }
2222
+
2223
+ .icon-flash-off:before {
2224
+ content: "\e825";
2225
+ }
2226
+
2227
+ .icon-flash-on:before {
2228
+ content: "\e826";
2229
+ }
2230
+
2231
+ .icon-flip:before {
2232
+ content: "\e827";
2233
+ }
2234
+
2235
+ .icon-gradient:before {
2236
+ content: "\e828";
2237
+ }
2238
+
2239
+ .icon-grain:before {
2240
+ content: "\e829";
2241
+ }
2242
+
2243
+ .icon-grid-off:before {
2244
+ content: "\e82a";
2245
+ }
2246
+
2247
+ .icon-grid-on:before {
2248
+ content: "\e82b";
2249
+ }
2250
+
2251
+ .icon-hdr-off:before {
2252
+ content: "\e82c";
2253
+ }
2254
+
2255
+ .icon-hdr-on:before {
2256
+ content: "\e82d";
2257
+ }
2258
+
2259
+ .icon-hdr-strong:before {
2260
+ content: "\e82e";
2261
+ }
2262
+
2263
+ .icon-hdr-weak:before {
2264
+ content: "\e82f";
2265
+ }
2266
+
2267
+ .icon-healing:before {
2268
+ content: "\e830";
2269
+ }
2270
+
2271
+ .icon-image:before {
2272
+ content: "\e831";
2273
+ }
2274
+
2275
+ .icon-image-aspect-ratio:before {
2276
+ content: "\e832";
2277
+ }
2278
+
2279
+ .icon-iso:before {
2280
+ content: "\e833";
2281
+ }
2282
+
2283
+ .icon-landscape:before {
2284
+ content: "\e834";
2285
+ }
2286
+
2287
+ .icon-leak-add:before {
2288
+ content: "\e835";
2289
+ }
2290
+
2291
+ .icon-leak-remove:before {
2292
+ content: "\e836";
2293
+ }
2294
+
2295
+ .icon-lens:before {
2296
+ content: "\e837";
2297
+ }
2298
+
2299
+ .icon-looks-1:before {
2300
+ content: "\e83d";
2301
+ }
2302
+
2303
+ .icon-looks-2:before {
2304
+ content: "\e83e";
2305
+ }
2306
+
2307
+ .icon-looks-3:before {
2308
+ content: "\e838";
2309
+ }
2310
+
2311
+ .icon-looks-4:before {
2312
+ content: "\e839";
2313
+ }
2314
+
2315
+ .icon-looks-5:before {
2316
+ content: "\e83a";
2317
+ }
2318
+
2319
+ .icon-looks-6:before {
2320
+ content: "\e83b";
2321
+ }
2322
+
2323
+ .icon-looks:before {
2324
+ content: "\e83c";
2325
+ }
2326
+
2327
+ .icon-loupe:before {
2328
+ content: "\e83f";
2329
+ }
2330
+
2331
+ .icon-movie-creation:before {
2332
+ content: "\e840";
2333
+ }
2334
+
2335
+ .icon-nature:before {
2336
+ content: "\e841";
2337
+ }
2338
+
2339
+ .icon-nature-people:before {
2340
+ content: "\e842";
2341
+ }
2342
+
2343
+ .icon-navigate-before:before {
2344
+ content: "\e843";
2345
+ }
2346
+
2347
+ .icon-navigate-next:before {
2348
+ content: "\e844";
2349
+ }
2350
+
2351
+ .icon-palette:before {
2352
+ content: "\e845";
2353
+ }
2354
+
2355
+ .icon-panorama:before {
2356
+ content: "\e846";
2357
+ }
2358
+
2359
+ .icon-panorama-fisheye:before {
2360
+ content: "\e847";
2361
+ }
2362
+
2363
+ .icon-panorama-horizontal:before {
2364
+ content: "\e848";
2365
+ }
2366
+
2367
+ .icon-panorama-vertical:before {
2368
+ content: "\e849";
2369
+ }
2370
+
2371
+ .icon-panorama-wide-angle:before {
2372
+ content: "\e84a";
2373
+ }
2374
+
2375
+ .icon-photo:before {
2376
+ content: "\e84b";
2377
+ }
2378
+
2379
+ .icon-photo-album:before {
2380
+ content: "\e84c";
2381
+ }
2382
+
2383
+ .icon-photo-camera:before {
2384
+ content: "\e84d";
2385
+ }
2386
+
2387
+ .icon-photo-library:before {
2388
+ content: "\e84e";
2389
+ }
2390
+
2391
+ .icon-portrait:before {
2392
+ content: "\e84f";
2393
+ }
2394
+
2395
+ .icon-remove-red-eye:before {
2396
+ content: "\e850";
2397
+ }
2398
+
2399
+ .icon-rotate-left:before {
2400
+ content: "\e851";
2401
+ }
2402
+
2403
+ .icon-rotate-right:before {
2404
+ content: "\e852";
2405
+ }
2406
+
2407
+ .icon-slideshow:before {
2408
+ content: "\e853";
2409
+ }
2410
+
2411
+ .icon-straighten:before {
2412
+ content: "\e854";
2413
+ }
2414
+
2415
+ .icon-style:before {
2416
+ content: "\e855";
2417
+ }
2418
+
2419
+ .icon-switch-camera:before {
2420
+ content: "\e856";
2421
+ }
2422
+
2423
+ .icon-switch-video:before {
2424
+ content: "\e857";
2425
+ }
2426
+
2427
+ .icon-tag-faces:before {
2428
+ content: "\e858";
2429
+ }
2430
+
2431
+ .icon-texture:before {
2432
+ content: "\e859";
2433
+ }
2434
+
2435
+ .icon-timelapse:before {
2436
+ content: "\e85a";
2437
+ }
2438
+
2439
+ .icon-timer-3:before {
2440
+ content: "\e85b";
2441
+ }
2442
+
2443
+ .icon-timer-10:before {
2444
+ content: "\e85c";
2445
+ }
2446
+
2447
+ .icon-timer:before {
2448
+ content: "\e85d";
2449
+ }
2450
+
2451
+ .icon-timer-auto:before {
2452
+ content: "\e85e";
2453
+ }
2454
+
2455
+ .icon-timer-off:before {
2456
+ content: "\e85f";
2457
+ }
2458
+
2459
+ .icon-tonality:before {
2460
+ content: "\e860";
2461
+ }
2462
+
2463
+ .icon-transform:before {
2464
+ content: "\e861";
2465
+ }
2466
+
2467
+ .icon-tune:before {
2468
+ content: "\e862";
2469
+ }
2470
+
2471
+ .icon-wb-auto:before {
2472
+ content: "\e863";
2473
+ }
2474
+
2475
+ .icon-wb-cloudy:before {
2476
+ content: "\e864";
2477
+ }
2478
+
2479
+ .icon-wb-incandescent:before {
2480
+ content: "\e865";
2481
+ }
2482
+
2483
+ .icon-wb-irradescent:before {
2484
+ content: "\e866";
2485
+ }
2486
+
2487
+ .icon-wb-sunny:before {
2488
+ content: "\e867";
2489
+ }
2490
+
2491
+ .icon-beenhere:before {
2492
+ content: "\e868";
2493
+ }
2494
+
2495
+ .icon-directions:before {
2496
+ content: "\e869";
2497
+ }
2498
+
2499
+ .icon-directions-bike:before {
2500
+ content: "\e86a";
2501
+ }
2502
+
2503
+ .icon-directions-bus:before {
2504
+ content: "\e86b";
2505
+ }
2506
+
2507
+ .icon-directions-car:before {
2508
+ content: "\e86c";
2509
+ }
2510
+
2511
+ .icon-directions-ferry:before {
2512
+ content: "\e86d";
2513
+ }
2514
+
2515
+ .icon-directions-subway:before {
2516
+ content: "\e86e";
2517
+ }
2518
+
2519
+ .icon-directions-train:before {
2520
+ content: "\e86f";
2521
+ }
2522
+
2523
+ .icon-directions-transit:before {
2524
+ content: "\e870";
2525
+ }
2526
+
2527
+ .icon-directions-walk:before {
2528
+ content: "\e871";
2529
+ }
2530
+
2531
+ .icon-flight:before {
2532
+ content: "\e872";
2533
+ }
2534
+
2535
+ .icon-hotel:before {
2536
+ content: "\e873";
2537
+ }
2538
+
2539
+ .icon-layers:before {
2540
+ content: "\e874";
2541
+ }
2542
+
2543
+ .icon-layers-clear:before {
2544
+ content: "\e875";
2545
+ }
2546
+
2547
+ .icon-local-airport:before {
2548
+ content: "\e876";
2549
+ }
2550
+
2551
+ .icon-local-atm:before {
2552
+ content: "\e877";
2553
+ }
2554
+
2555
+ .icon-local-attraction:before {
2556
+ content: "\e878";
2557
+ }
2558
+
2559
+ .icon-local-bar:before {
2560
+ content: "\e879";
2561
+ }
2562
+
2563
+ .icon-local-cafe:before {
2564
+ content: "\e87a";
2565
+ }
2566
+
2567
+ .icon-local-car-wash:before {
2568
+ content: "\e87b";
2569
+ }
2570
+
2571
+ .icon-local-convenience-store:before {
2572
+ content: "\e87c";
2573
+ }
2574
+
2575
+ .icon-local-drink:before {
2576
+ content: "\e87d";
2577
+ }
2578
+
2579
+ .icon-local-florist:before {
2580
+ content: "\e87e";
2581
+ }
2582
+
2583
+ .icon-local-gas-station:before {
2584
+ content: "\e87f";
2585
+ }
2586
+
2587
+ .icon-local-grocery-store:before {
2588
+ content: "\e880";
2589
+ }
2590
+
2591
+ .icon-local-hospital:before {
2592
+ content: "\e881";
2593
+ }
2594
+
2595
+ .icon-local-hotel:before {
2596
+ content: "\e882";
2597
+ }
2598
+
2599
+ .icon-local-laundry-service:before {
2600
+ content: "\e883";
2601
+ }
2602
+
2603
+ .icon-local-library:before {
2604
+ content: "\e884";
2605
+ }
2606
+
2607
+ .icon-local-mall:before {
2608
+ content: "\e885";
2609
+ }
2610
+
2611
+ .icon-local-movies:before {
2612
+ content: "\e886";
2613
+ }
2614
+
2615
+ .icon-local-offer:before {
2616
+ content: "\e887";
2617
+ }
2618
+
2619
+ .icon-local-parking:before {
2620
+ content: "\e888";
2621
+ }
2622
+
2623
+ .icon-local-pharmacy:before {
2624
+ content: "\e889";
2625
+ }
2626
+
2627
+ .icon-local-phone:before {
2628
+ content: "\e88a";
2629
+ }
2630
+
2631
+ .icon-local-pizza:before {
2632
+ content: "\e88b";
2633
+ }
2634
+
2635
+ .icon-local-play:before {
2636
+ content: "\e88c";
2637
+ }
2638
+
2639
+ .icon-local-post-office:before {
2640
+ content: "\e88d";
2641
+ }
2642
+
2643
+ .icon-local-print-shop:before {
2644
+ content: "\e88e";
2645
+ }
2646
+
2647
+ .icon-local-restaurant:before {
2648
+ content: "\e88f";
2649
+ }
2650
+
2651
+ .icon-local-see:before {
2652
+ content: "\e890";
2653
+ }
2654
+
2655
+ .icon-local-shipping:before {
2656
+ content: "\e891";
2657
+ }
2658
+
2659
+ .icon-local-taxi:before {
2660
+ content: "\e892";
2661
+ }
2662
+
2663
+ .icon-location-history:before {
2664
+ content: "\e893";
2665
+ }
2666
+
2667
+ .icon-map:before {
2668
+ content: "\e894";
2669
+ }
2670
+
2671
+ .icon-my-location:before {
2672
+ content: "\e895";
2673
+ }
2674
+
2675
+ .icon-navigation:before {
2676
+ content: "\e896";
2677
+ }
2678
+
2679
+ .icon-pin-drop:before {
2680
+ content: "\e897";
2681
+ }
2682
+
2683
+ .icon-place:before {
2684
+ content: "\e898";
2685
+ }
2686
+
2687
+ .icon-rate-review:before {
2688
+ content: "\e899";
2689
+ }
2690
+
2691
+ .icon-restaurant-menu:before {
2692
+ content: "\e89a";
2693
+ }
2694
+
2695
+ .icon-satellite:before {
2696
+ content: "\e89b";
2697
+ }
2698
+
2699
+ .icon-store-mall-directory:before {
2700
+ content: "\e89c";
2701
+ }
2702
+
2703
+ .icon-terrain:before {
2704
+ content: "\e89d";
2705
+ }
2706
+
2707
+ .icon-traffic:before {
2708
+ content: "\e89e";
2709
+ }
2710
+
2711
+ .icon-apps:before {
2712
+ content: "\e89f";
2713
+ }
2714
+
2715
+ .icon-arrow-back:before {
2716
+ content: "\e8a0";
2717
+ }
2718
+
2719
+ .icon-arrow-drop-down:before {
2720
+ content: "\e8a1";
2721
+ }
2722
+
2723
+ .icon-arrow-drop-down-circle:before {
2724
+ content: "\e8a2";
2725
+ }
2726
+
2727
+ .icon-arrow-drop-up:before {
2728
+ content: "\e8a3";
2729
+ }
2730
+
2731
+ .icon-arrow-forward:before {
2732
+ content: "\e8a4";
2733
+ }
2734
+
2735
+ .icon-cancel:before {
2736
+ content: "\e8a5";
2737
+ }
2738
+
2739
+ .icon-check:before {
2740
+ content: "\e8a6";
2741
+ }
2742
+
2743
+ .icon-chevron-left:before {
2744
+ content: "\e8a7";
2745
+ }
2746
+
2747
+ .icon-chevron-right:before {
2748
+ content: "\e8a8";
2749
+ }
2750
+
2751
+ .icon-close:before {
2752
+ content: "\e8a9";
2753
+ }
2754
+
2755
+ .icon-expand-less:before {
2756
+ content: "\e8aa";
2757
+ }
2758
+
2759
+ .icon-expand-more:before {
2760
+ content: "\e8ab";
2761
+ }
2762
+
2763
+ .icon-fullscreen:before {
2764
+ content: "\e8ac";
2765
+ }
2766
+
2767
+ .icon-fullscreen-exit:before {
2768
+ content: "\e8ad";
2769
+ }
2770
+
2771
+ .icon-menu:before {
2772
+ content: "\e8ae";
2773
+ }
2774
+
2775
+ .icon-more-horiz:before {
2776
+ content: "\e8af";
2777
+ }
2778
+
2779
+ .icon-more-vert:before {
2780
+ content: "\e8b0";
2781
+ }
2782
+
2783
+ .icon-refresh:before {
2784
+ content: "\e8b1";
2785
+ }
2786
+
2787
+ .icon-unfold-less:before {
2788
+ content: "\e8b2";
2789
+ }
2790
+
2791
+ .icon-unfold-more:before {
2792
+ content: "\e8b3";
2793
+ }
2794
+
2795
+ .icon-adb:before {
2796
+ content: "\e8b4";
2797
+ }
2798
+
2799
+ .icon-bluetooth-audio:before {
2800
+ content: "\e8b5";
2801
+ }
2802
+
2803
+ .icon-disc-full:before {
2804
+ content: "\e8b6";
2805
+ }
2806
+
2807
+ .icon-dnd-forwardslash:before {
2808
+ content: "\e8b7";
2809
+ }
2810
+
2811
+ .icon-do-not-disturb:before {
2812
+ content: "\e8b8";
2813
+ }
2814
+
2815
+ .icon-drive-eta:before {
2816
+ content: "\e8b9";
2817
+ }
2818
+
2819
+ .icon-event-available:before {
2820
+ content: "\e8ba";
2821
+ }
2822
+
2823
+ .icon-event-busy:before {
2824
+ content: "\e8bb";
2825
+ }
2826
+
2827
+ .icon-event-note:before {
2828
+ content: "\e8bc";
2829
+ }
2830
+
2831
+ .icon-folder-special:before {
2832
+ content: "\e8bd";
2833
+ }
2834
+
2835
+ .icon-mms:before {
2836
+ content: "\e8be";
2837
+ }
2838
+
2839
+ .icon-more:before {
2840
+ content: "\e8bf";
2841
+ }
2842
+
2843
+ .icon-network-locked:before {
2844
+ content: "\e8c0";
2845
+ }
2846
+
2847
+ .icon-phone-bluetooth-speaker:before {
2848
+ content: "\e8c1";
2849
+ }
2850
+
2851
+ .icon-phone-forwarded:before {
2852
+ content: "\e8c2";
2853
+ }
2854
+
2855
+ .icon-phone-in-talk:before {
2856
+ content: "\e8c3";
2857
+ }
2858
+
2859
+ .icon-phone-locked:before {
2860
+ content: "\e8c4";
2861
+ }
2862
+
2863
+ .icon-phone-missed:before {
2864
+ content: "\e8c5";
2865
+ }
2866
+
2867
+ .icon-phone-paused:before {
2868
+ content: "\e8c6";
2869
+ }
2870
+
2871
+ .icon-play-download:before {
2872
+ content: "\e8c7";
2873
+ }
2874
+
2875
+ .icon-play-install:before {
2876
+ content: "\e8c8";
2877
+ }
2878
+
2879
+ .icon-sd-card:before {
2880
+ content: "\e8c9";
2881
+ }
2882
+
2883
+ .icon-sim-card-alert:before {
2884
+ content: "\e8ca";
2885
+ }
2886
+
2887
+ .icon-sms:before {
2888
+ content: "\e8cb";
2889
+ }
2890
+
2891
+ .icon-sms-failed:before {
2892
+ content: "\e8cc";
2893
+ }
2894
+
2895
+ .icon-sync:before {
2896
+ content: "\e8cd";
2897
+ }
2898
+
2899
+ .icon-sync-disabled:before {
2900
+ content: "\e8ce";
2901
+ }
2902
+
2903
+ .icon-sync-problem:before {
2904
+ content: "\e8cf";
2905
+ }
2906
+
2907
+ .icon-system-update:before {
2908
+ content: "\e8d0";
2909
+ }
2910
+
2911
+ .icon-tap-and-play:before {
2912
+ content: "\e8d1";
2913
+ }
2914
+
2915
+ .icon-time-to-leave:before {
2916
+ content: "\e8d2";
2917
+ }
2918
+
2919
+ .icon-vibration:before {
2920
+ content: "\e8d3";
2921
+ }
2922
+
2923
+ .icon-voice-chat:before {
2924
+ content: "\e8d4";
2925
+ }
2926
+
2927
+ .icon-vpn-lock:before {
2928
+ content: "\e8d5";
2929
+ }
2930
+
2931
+ .icon-cake:before {
2932
+ content: "\e8d6";
2933
+ }
2934
+
2935
+ .icon-domain:before {
2936
+ content: "\e8d7";
2937
+ }
2938
+
2939
+ .icon-group:before {
2940
+ content: "\e8d8";
2941
+ }
2942
+
2943
+ .icon-group-add:before {
2944
+ content: "\e8d9";
2945
+ }
2946
+
2947
+ .icon-location-city:before {
2948
+ content: "\e8da";
2949
+ }
2950
+
2951
+ .icon-mood:before {
2952
+ content: "\e8db";
2953
+ }
2954
+
2955
+ .icon-notifications:before {
2956
+ content: "\e8dc";
2957
+ }
2958
+
2959
+ .icon-notifications-none:before {
2960
+ content: "\e8dd";
2961
+ }
2962
+
2963
+ .icon-notifications-off:before {
2964
+ content: "\e8de";
2965
+ }
2966
+
2967
+ .icon-notifications-on:before {
2968
+ content: "\e8df";
2969
+ }
2970
+
2971
+ .icon-notifications-paused:before {
2972
+ content: "\e8e0";
2973
+ }
2974
+
2975
+ .icon-pages:before {
2976
+ content: "\e8e1";
2977
+ }
2978
+
2979
+ .icon-party-mode:before {
2980
+ content: "\e8e2";
2981
+ }
2982
+
2983
+ .icon-people:before {
2984
+ content: "\e8e3";
2985
+ }
2986
+
2987
+ .icon-people-outline:before {
2988
+ content: "\e8e4";
2989
+ }
2990
+
2991
+ .icon-person:before {
2992
+ content: "\e8e5";
2993
+ }
2994
+
2995
+ .icon-person-add:before {
2996
+ content: "\e8e6";
2997
+ }
2998
+
2999
+ .icon-person-outline:before {
3000
+ content: "\e8e7";
3001
+ }
3002
+
3003
+ .icon-plus-one:before {
3004
+ content: "\e8e8";
3005
+ }
3006
+
3007
+ .icon-poll:before {
3008
+ content: "\e8e9";
3009
+ }
3010
+
3011
+ .icon-public:before {
3012
+ content: "\e8ea";
3013
+ }
3014
+
3015
+ .icon-school:before {
3016
+ content: "\e8eb";
3017
+ }
3018
+
3019
+ .icon-share:before {
3020
+ content: "\e8ec";
3021
+ }
3022
+
3023
+ .icon-whatshot:before {
3024
+ content: "\e8ed";
3025
+ }
3026
+
3027
+ .icon-check-box:before {
3028
+ content: "\e8ee";
3029
+ }
3030
+
3031
+ .icon-check-box-outline-blank:before {
3032
+ content: "\e8ef";
3033
+ }
3034
+
3035
+ .icon-radio-button-off:before {
3036
+ content: "\e8f0";
3037
+ }
3038
+
3039
+ .icon-radio-button-on:before {
3040
+ content: "\e8f1";
3041
+ }
3042
+
3043
+ .icon-star:before {
3044
+ content: "\e8f2";
3045
+ }
3046
+
3047
+ .icon-star-half:before {
3048
+ content: "\e8f3";
3049
+ }
3050
+
3051
+ .icon-star-outline:before {
3052
+ content: "\e8f4";
3053
+ }