material_icons 0.0.6 → 1.0.0rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5acec177933e944cb83e9527f0a9ebe080111cf6
4
- data.tar.gz: 80ca1d3377bdbcc45dc5e97ac05509b34e17b401
3
+ metadata.gz: 17484f6ed3e05dce0bc5b5cd275e9e5113d56273
4
+ data.tar.gz: ae8dee91cc91eb2dd7e13f64b9bfa4901238e0c1
5
5
  SHA512:
6
- metadata.gz: ec4549964c0319cc92728a7335388e5c0ca15d22e05a6fb965c8e0c0e472a2128d23613afce17104b37b6ff03ef342e5481e99b7debc68dd65bfda391696d8ae
7
- data.tar.gz: 8fc508b224de194634466aae6eb1534138d503436142eb2e73fa034732835c631238e8fba6a42737c7ebb5030b4ce7478128535bed58f5ec4e10d35c86091584
6
+ metadata.gz: d8a852033b39ff60212eb405d3baa7dda5e9fbd4259761b295a0a1bc0dde84c010458a3502945144e0019977feba717f0c581ca6c358179eb1999cc4063d3abe
7
+ data.tar.gz: f5f3a328d0e9e1b9b5ab575a3611b8711a444343f4596f83994ea159179cc0f999354c2c2bc44d9e878f6f6971b6c52c7c72285a7403667fdffa3b8551429629
data/README.md CHANGED
@@ -16,21 +16,17 @@ Then, execute `bundle install`.
16
16
 
17
17
  # CSS
18
18
 
19
- In your `application.css.erb` file you need to reference material icons CSS. There are two versions: ligature or unicode (See [Compatibility] section for more info).
19
+ In your `application.css.erb` file you need to reference material icons CSS. There are two versions: ligature or unicode (See [Compatibility](#compatibility) section for more info).
20
20
 
21
21
  Add this line at top of `application.css.erb` to use ligature:
22
22
 
23
23
  //= require material_icons
24
24
 
25
- Same with this line to use unicode:
26
-
27
- //= require material_icons_unicode
28
-
29
25
  These files provide multiple CSS classes to use in your views. Main classes are:
30
26
 
31
27
  .material-icons, .mi
32
28
 
33
- Some helpers are provided too:
29
+ Some CSS classes are provided too:
34
30
 
35
31
  /* Size */
36
32
  .md-18
@@ -58,7 +54,47 @@ Google Material Icons uses a feature called ligatures. We can define the icon in
58
54
  An example of icon is:
59
55
 
60
56
  <i class="material-icons">face</i>
61
- <i class="mi md-36">face</i>
57
+ <i class="material-icons md-36">face</i>
58
+
59
+ ## Helpers
60
+
61
+ MaterialIcons provide a two helpers to build the HTML code of icons. The methods are `material_icon` and `mi`. These helpers use cascade style to set the icon and options. Using same example:
62
+
63
+ <%= material_icon.face %>
64
+ # <i class="material-icons">face</i>
65
+
66
+ <%= material_icon.face.md_36 %>
67
+ # <i class="material-icons md-36">face</i>
68
+
69
+ # Rotation and custom css class
70
+ <%= mi.face.r90.css_class('my_class') %>
71
+ # <i class="material-icons r90 my_class">face</i>
72
+
73
+ Predefined methods are:
74
+
75
+ # Rotation methods
76
+ r90
77
+ r180
78
+ r270
79
+ flip_horizontal
80
+ flip_vertical
81
+
82
+ # Size methods
83
+ md_18
84
+ md_24
85
+ md_36
86
+ md_48
87
+
88
+ # Add some classes to the icon
89
+ css_class('classes')
90
+
91
+ # Add style to the icon
92
+ style('margin-top: 5px;')
93
+
94
+ # Add some HTML attributes to an icon. This method receive a Hash
95
+ html({ data: { id: 1 } })
96
+
97
+ Remember this is a helper, you always can use HTML syntax ;).
62
98
 
63
99
  # Compatibility
64
100
 
@@ -72,10 +108,23 @@ Ligature feature requires a supported browser:
72
108
  Apple MobileSafari >= iOS 4.2
73
109
  Android Browser >= 3.0
74
110
 
75
- To increase compatibility you can use Unicode version of the library. Now, the text inside of HTML tag is the CSS class!
111
+ To increase compatibility you can use Unicode version of the library. To set Unicode icons, you need to change the line to load ligature CSS file on `application.css.erb` ~> `//= require material_icons` to this line:
112
+
113
+ //= require material_icons_unicode
114
+
115
+ Next, you need to specify the helper to use unicode because it uses ligatures by default. Create an initializer file on `config/initializers/material_icon.rb` and set this content:
116
+
117
+ # Initialize material icons setup
118
+ MaterialIcons.setup do |config|
119
+ config.unicode = true
120
+ end
121
+
122
+ Now, the text inside of HTML tag is the CSS class!
123
+
124
+ <i class="material-icons face"></i>
125
+ <i class="material-icons md-36 face"></i>
76
126
 
77
- <i class="material-icons material-icons-face"></i>
78
- <i class="mi md-36 mi-face"></i>
127
+ The [Helpers](#helpers) has the same syntax.
79
128
 
80
129
  This version increase the size of the CSS file too. To see the difference, these are the size for uncompressed CSS files:
81
130
 
data/Rakefile CHANGED
@@ -23,8 +23,8 @@ namespace :material_icons do
23
23
  # Need this strange indentation for CSS...
24
24
  css =
25
25
  <<-FOO
26
- .material-icons.mi-#{css_class}:before,
27
- .mi.mi-#{css_class}:before {
26
+ .material-icons.#{css_class}:before,
27
+ .mi.#{css_class}:before {
28
28
  content: '\\#{unicode}';
29
29
  }
30
30
  FOO
@@ -53,7 +53,7 @@
53
53
 
54
54
  /* Rules for using icons as black on a light background. */
55
55
  .material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
56
- .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
56
+ .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive. { color: rgba(0, 0, 0, 0.26); }
57
57
 
58
58
  /* Rules for using icons as white on a dark background. */
59
59
  .material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
@@ -44,7 +44,7 @@
44
44
 
45
45
  /* Rules for using icons as black on a light background. */
46
46
  .material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
47
- .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
47
+ .material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive. { color: rgba(0, 0, 0, 0.26); }
48
48
 
49
49
  /* Rules for using icons as white on a dark background. */
50
50
  .material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
@@ -83,3183 +83,3183 @@
83
83
  }
84
84
 
85
85
  /* Unicode */
86
- .material-icons.mi-3d-rotation:before,
87
- .mi.mi-3d-rotation:before {
86
+ .material-icons.3d-rotation:before,
87
+ .mi.3d-rotation:before {
88
88
  content: '\e84d';
89
89
  }
90
- .material-icons.mi-access-alarm:before,
91
- .mi.mi-access-alarm:before {
90
+ .material-icons.access-alarm:before,
91
+ .mi.access-alarm:before {
92
92
  content: '\e190';
93
93
  }
94
- .material-icons.mi-access-alarms:before,
95
- .mi.mi-access-alarms:before {
94
+ .material-icons.access-alarms:before,
95
+ .mi.access-alarms:before {
96
96
  content: '\e191';
97
97
  }
98
- .material-icons.mi-access-time:before,
99
- .mi.mi-access-time:before {
98
+ .material-icons.access-time:before,
99
+ .mi.access-time:before {
100
100
  content: '\e192';
101
101
  }
102
- .material-icons.mi-accessibility:before,
103
- .mi.mi-accessibility:before {
102
+ .material-icons.accessibility:before,
103
+ .mi.accessibility:before {
104
104
  content: '\e84e';
105
105
  }
106
- .material-icons.mi-account-balance:before,
107
- .mi.mi-account-balance:before {
106
+ .material-icons.account-balance:before,
107
+ .mi.account-balance:before {
108
108
  content: '\e84f';
109
109
  }
110
- .material-icons.mi-account-balance-wallet:before,
111
- .mi.mi-account-balance-wallet:before {
110
+ .material-icons.account-balance-wallet:before,
111
+ .mi.account-balance-wallet:before {
112
112
  content: '\e850';
113
113
  }
114
- .material-icons.mi-account-box:before,
115
- .mi.mi-account-box:before {
114
+ .material-icons.account-box:before,
115
+ .mi.account-box:before {
116
116
  content: '\e851';
117
117
  }
118
- .material-icons.mi-account-circle:before,
119
- .mi.mi-account-circle:before {
118
+ .material-icons.account-circle:before,
119
+ .mi.account-circle:before {
120
120
  content: '\e853';
121
121
  }
122
- .material-icons.mi-adb:before,
123
- .mi.mi-adb:before {
122
+ .material-icons.adb:before,
123
+ .mi.adb:before {
124
124
  content: '\e60e';
125
125
  }
126
- .material-icons.mi-add:before,
127
- .mi.mi-add:before {
126
+ .material-icons.add:before,
127
+ .mi.add:before {
128
128
  content: '\e145';
129
129
  }
130
- .material-icons.mi-add-alarm:before,
131
- .mi.mi-add-alarm:before {
130
+ .material-icons.add-alarm:before,
131
+ .mi.add-alarm:before {
132
132
  content: '\e193';
133
133
  }
134
- .material-icons.mi-add-alert:before,
135
- .mi.mi-add-alert:before {
134
+ .material-icons.add-alert:before,
135
+ .mi.add-alert:before {
136
136
  content: '\e003';
137
137
  }
138
- .material-icons.mi-add-box:before,
139
- .mi.mi-add-box:before {
138
+ .material-icons.add-box:before,
139
+ .mi.add-box:before {
140
140
  content: '\e146';
141
141
  }
142
- .material-icons.mi-add-circle:before,
143
- .mi.mi-add-circle:before {
142
+ .material-icons.add-circle:before,
143
+ .mi.add-circle:before {
144
144
  content: '\e147';
145
145
  }
146
- .material-icons.mi-add-circle-outline:before,
147
- .mi.mi-add-circle-outline:before {
146
+ .material-icons.add-circle-outline:before,
147
+ .mi.add-circle-outline:before {
148
148
  content: '\e148';
149
149
  }
150
- .material-icons.mi-add-shopping-cart:before,
151
- .mi.mi-add-shopping-cart:before {
150
+ .material-icons.add-shopping-cart:before,
151
+ .mi.add-shopping-cart:before {
152
152
  content: '\e854';
153
153
  }
154
- .material-icons.mi-add-to-photos:before,
155
- .mi.mi-add-to-photos:before {
154
+ .material-icons.add-to-photos:before,
155
+ .mi.add-to-photos:before {
156
156
  content: '\e39d';
157
157
  }
158
- .material-icons.mi-adjust:before,
159
- .mi.mi-adjust:before {
158
+ .material-icons.adjust:before,
159
+ .mi.adjust:before {
160
160
  content: '\e39e';
161
161
  }
162
- .material-icons.mi-airline-seat-flat:before,
163
- .mi.mi-airline-seat-flat:before {
162
+ .material-icons.airline-seat-flat:before,
163
+ .mi.airline-seat-flat:before {
164
164
  content: '\e630';
165
165
  }
166
- .material-icons.mi-airline-seat-flat-angled:before,
167
- .mi.mi-airline-seat-flat-angled:before {
166
+ .material-icons.airline-seat-flat-angled:before,
167
+ .mi.airline-seat-flat-angled:before {
168
168
  content: '\e631';
169
169
  }
170
- .material-icons.mi-airline-seat-individual-suite:before,
171
- .mi.mi-airline-seat-individual-suite:before {
170
+ .material-icons.airline-seat-individual-suite:before,
171
+ .mi.airline-seat-individual-suite:before {
172
172
  content: '\e632';
173
173
  }
174
- .material-icons.mi-airline-seat-legroom-extra:before,
175
- .mi.mi-airline-seat-legroom-extra:before {
174
+ .material-icons.airline-seat-legroom-extra:before,
175
+ .mi.airline-seat-legroom-extra:before {
176
176
  content: '\e633';
177
177
  }
178
- .material-icons.mi-airline-seat-legroom-normal:before,
179
- .mi.mi-airline-seat-legroom-normal:before {
178
+ .material-icons.airline-seat-legroom-normal:before,
179
+ .mi.airline-seat-legroom-normal:before {
180
180
  content: '\e634';
181
181
  }
182
- .material-icons.mi-airline-seat-legroom-reduced:before,
183
- .mi.mi-airline-seat-legroom-reduced:before {
182
+ .material-icons.airline-seat-legroom-reduced:before,
183
+ .mi.airline-seat-legroom-reduced:before {
184
184
  content: '\e635';
185
185
  }
186
- .material-icons.mi-airline-seat-recline-extra:before,
187
- .mi.mi-airline-seat-recline-extra:before {
186
+ .material-icons.airline-seat-recline-extra:before,
187
+ .mi.airline-seat-recline-extra:before {
188
188
  content: '\e636';
189
189
  }
190
- .material-icons.mi-airline-seat-recline-normal:before,
191
- .mi.mi-airline-seat-recline-normal:before {
190
+ .material-icons.airline-seat-recline-normal:before,
191
+ .mi.airline-seat-recline-normal:before {
192
192
  content: '\e637';
193
193
  }
194
- .material-icons.mi-airplanemode-active:before,
195
- .mi.mi-airplanemode-active:before {
194
+ .material-icons.airplanemode-active:before,
195
+ .mi.airplanemode-active:before {
196
196
  content: '\e195';
197
197
  }
198
- .material-icons.mi-airplanemode-inactive:before,
199
- .mi.mi-airplanemode-inactive:before {
198
+ .material-icons.airplanemode-inactive:before,
199
+ .mi.airplanemode-inactive:before {
200
200
  content: '\e194';
201
201
  }
202
- .material-icons.mi-airplay:before,
203
- .mi.mi-airplay:before {
202
+ .material-icons.airplay:before,
203
+ .mi.airplay:before {
204
204
  content: '\e055';
205
205
  }
206
- .material-icons.mi-alarm:before,
207
- .mi.mi-alarm:before {
206
+ .material-icons.alarm:before,
207
+ .mi.alarm:before {
208
208
  content: '\e855';
209
209
  }
210
- .material-icons.mi-alarm-add:before,
211
- .mi.mi-alarm-add:before {
210
+ .material-icons.alarm-add:before,
211
+ .mi.alarm-add:before {
212
212
  content: '\e856';
213
213
  }
214
- .material-icons.mi-alarm-off:before,
215
- .mi.mi-alarm-off:before {
214
+ .material-icons.alarm-off:before,
215
+ .mi.alarm-off:before {
216
216
  content: '\e857';
217
217
  }
218
- .material-icons.mi-alarm-on:before,
219
- .mi.mi-alarm-on:before {
218
+ .material-icons.alarm-on:before,
219
+ .mi.alarm-on:before {
220
220
  content: '\e858';
221
221
  }
222
- .material-icons.mi-album:before,
223
- .mi.mi-album:before {
222
+ .material-icons.album:before,
223
+ .mi.album:before {
224
224
  content: '\e019';
225
225
  }
226
- .material-icons.mi-android:before,
227
- .mi.mi-android:before {
226
+ .material-icons.android:before,
227
+ .mi.android:before {
228
228
  content: '\e859';
229
229
  }
230
- .material-icons.mi-announcement:before,
231
- .mi.mi-announcement:before {
230
+ .material-icons.announcement:before,
231
+ .mi.announcement:before {
232
232
  content: '\e85a';
233
233
  }
234
- .material-icons.mi-apps:before,
235
- .mi.mi-apps:before {
234
+ .material-icons.apps:before,
235
+ .mi.apps:before {
236
236
  content: '\e5c3';
237
237
  }
238
- .material-icons.mi-archive:before,
239
- .mi.mi-archive:before {
238
+ .material-icons.archive:before,
239
+ .mi.archive:before {
240
240
  content: '\e149';
241
241
  }
242
- .material-icons.mi-arrow-back:before,
243
- .mi.mi-arrow-back:before {
242
+ .material-icons.arrow-back:before,
243
+ .mi.arrow-back:before {
244
244
  content: '\e5c4';
245
245
  }
246
- .material-icons.mi-arrow-drop-down:before,
247
- .mi.mi-arrow-drop-down:before {
246
+ .material-icons.arrow-drop-down:before,
247
+ .mi.arrow-drop-down:before {
248
248
  content: '\e5c5';
249
249
  }
250
- .material-icons.mi-arrow-drop-down-circle:before,
251
- .mi.mi-arrow-drop-down-circle:before {
250
+ .material-icons.arrow-drop-down-circle:before,
251
+ .mi.arrow-drop-down-circle:before {
252
252
  content: '\e5c6';
253
253
  }
254
- .material-icons.mi-arrow-drop-up:before,
255
- .mi.mi-arrow-drop-up:before {
254
+ .material-icons.arrow-drop-up:before,
255
+ .mi.arrow-drop-up:before {
256
256
  content: '\e5c7';
257
257
  }
258
- .material-icons.mi-arrow-forward:before,
259
- .mi.mi-arrow-forward:before {
258
+ .material-icons.arrow-forward:before,
259
+ .mi.arrow-forward:before {
260
260
  content: '\e5c8';
261
261
  }
262
- .material-icons.mi-aspect-ratio:before,
263
- .mi.mi-aspect-ratio:before {
262
+ .material-icons.aspect-ratio:before,
263
+ .mi.aspect-ratio:before {
264
264
  content: '\e85b';
265
265
  }
266
- .material-icons.mi-assessment:before,
267
- .mi.mi-assessment:before {
266
+ .material-icons.assessment:before,
267
+ .mi.assessment:before {
268
268
  content: '\e85c';
269
269
  }
270
- .material-icons.mi-assignment:before,
271
- .mi.mi-assignment:before {
270
+ .material-icons.assignment:before,
271
+ .mi.assignment:before {
272
272
  content: '\e85d';
273
273
  }
274
- .material-icons.mi-assignment-ind:before,
275
- .mi.mi-assignment-ind:before {
274
+ .material-icons.assignment-ind:before,
275
+ .mi.assignment-ind:before {
276
276
  content: '\e85e';
277
277
  }
278
- .material-icons.mi-assignment-late:before,
279
- .mi.mi-assignment-late:before {
278
+ .material-icons.assignment-late:before,
279
+ .mi.assignment-late:before {
280
280
  content: '\e85f';
281
281
  }
282
- .material-icons.mi-assignment-return:before,
283
- .mi.mi-assignment-return:before {
282
+ .material-icons.assignment-return:before,
283
+ .mi.assignment-return:before {
284
284
  content: '\e860';
285
285
  }
286
- .material-icons.mi-assignment-returned:before,
287
- .mi.mi-assignment-returned:before {
286
+ .material-icons.assignment-returned:before,
287
+ .mi.assignment-returned:before {
288
288
  content: '\e861';
289
289
  }
290
- .material-icons.mi-assignment-turned-in:before,
291
- .mi.mi-assignment-turned-in:before {
290
+ .material-icons.assignment-turned-in:before,
291
+ .mi.assignment-turned-in:before {
292
292
  content: '\e862';
293
293
  }
294
- .material-icons.mi-assistant:before,
295
- .mi.mi-assistant:before {
294
+ .material-icons.assistant:before,
295
+ .mi.assistant:before {
296
296
  content: '\e39f';
297
297
  }
298
- .material-icons.mi-assistant-photo:before,
299
- .mi.mi-assistant-photo:before {
298
+ .material-icons.assistant-photo:before,
299
+ .mi.assistant-photo:before {
300
300
  content: '\e3a0';
301
301
  }
302
- .material-icons.mi-attach-file:before,
303
- .mi.mi-attach-file:before {
302
+ .material-icons.attach-file:before,
303
+ .mi.attach-file:before {
304
304
  content: '\e226';
305
305
  }
306
- .material-icons.mi-attach-money:before,
307
- .mi.mi-attach-money:before {
306
+ .material-icons.attach-money:before,
307
+ .mi.attach-money:before {
308
308
  content: '\e227';
309
309
  }
310
- .material-icons.mi-attachment:before,
311
- .mi.mi-attachment:before {
310
+ .material-icons.attachment:before,
311
+ .mi.attachment:before {
312
312
  content: '\e2bc';
313
313
  }
314
- .material-icons.mi-audiotrack:before,
315
- .mi.mi-audiotrack:before {
314
+ .material-icons.audiotrack:before,
315
+ .mi.audiotrack:before {
316
316
  content: '\e3a1';
317
317
  }
318
- .material-icons.mi-autorenew:before,
319
- .mi.mi-autorenew:before {
318
+ .material-icons.autorenew:before,
319
+ .mi.autorenew:before {
320
320
  content: '\e863';
321
321
  }
322
- .material-icons.mi-av-timer:before,
323
- .mi.mi-av-timer:before {
322
+ .material-icons.av-timer:before,
323
+ .mi.av-timer:before {
324
324
  content: '\e01b';
325
325
  }
326
- .material-icons.mi-backspace:before,
327
- .mi.mi-backspace:before {
326
+ .material-icons.backspace:before,
327
+ .mi.backspace:before {
328
328
  content: '\e14a';
329
329
  }
330
- .material-icons.mi-backup:before,
331
- .mi.mi-backup:before {
330
+ .material-icons.backup:before,
331
+ .mi.backup:before {
332
332
  content: '\e864';
333
333
  }
334
- .material-icons.mi-battery-alert:before,
335
- .mi.mi-battery-alert:before {
334
+ .material-icons.battery-alert:before,
335
+ .mi.battery-alert:before {
336
336
  content: '\e19c';
337
337
  }
338
- .material-icons.mi-battery-charging-full:before,
339
- .mi.mi-battery-charging-full:before {
338
+ .material-icons.battery-charging-full:before,
339
+ .mi.battery-charging-full:before {
340
340
  content: '\e1a3';
341
341
  }
342
- .material-icons.mi-battery-full:before,
343
- .mi.mi-battery-full:before {
342
+ .material-icons.battery-full:before,
343
+ .mi.battery-full:before {
344
344
  content: '\e1a4';
345
345
  }
346
- .material-icons.mi-battery-std:before,
347
- .mi.mi-battery-std:before {
346
+ .material-icons.battery-std:before,
347
+ .mi.battery-std:before {
348
348
  content: '\e1a5';
349
349
  }
350
- .material-icons.mi-battery-unknown:before,
351
- .mi.mi-battery-unknown:before {
350
+ .material-icons.battery-unknown:before,
351
+ .mi.battery-unknown:before {
352
352
  content: '\e1a6';
353
353
  }
354
- .material-icons.mi-beenhere:before,
355
- .mi.mi-beenhere:before {
354
+ .material-icons.beenhere:before,
355
+ .mi.beenhere:before {
356
356
  content: '\e52d';
357
357
  }
358
- .material-icons.mi-block:before,
359
- .mi.mi-block:before {
358
+ .material-icons.block:before,
359
+ .mi.block:before {
360
360
  content: '\e14b';
361
361
  }
362
- .material-icons.mi-bluetooth:before,
363
- .mi.mi-bluetooth:before {
362
+ .material-icons.bluetooth:before,
363
+ .mi.bluetooth:before {
364
364
  content: '\e1a7';
365
365
  }
366
- .material-icons.mi-bluetooth-audio:before,
367
- .mi.mi-bluetooth-audio:before {
366
+ .material-icons.bluetooth-audio:before,
367
+ .mi.bluetooth-audio:before {
368
368
  content: '\e60f';
369
369
  }
370
- .material-icons.mi-bluetooth-connected:before,
371
- .mi.mi-bluetooth-connected:before {
370
+ .material-icons.bluetooth-connected:before,
371
+ .mi.bluetooth-connected:before {
372
372
  content: '\e1a8';
373
373
  }
374
- .material-icons.mi-bluetooth-disabled:before,
375
- .mi.mi-bluetooth-disabled:before {
374
+ .material-icons.bluetooth-disabled:before,
375
+ .mi.bluetooth-disabled:before {
376
376
  content: '\e1a9';
377
377
  }
378
- .material-icons.mi-bluetooth-searching:before,
379
- .mi.mi-bluetooth-searching:before {
378
+ .material-icons.bluetooth-searching:before,
379
+ .mi.bluetooth-searching:before {
380
380
  content: '\e1aa';
381
381
  }
382
- .material-icons.mi-blur-circular:before,
383
- .mi.mi-blur-circular:before {
382
+ .material-icons.blur-circular:before,
383
+ .mi.blur-circular:before {
384
384
  content: '\e3a2';
385
385
  }
386
- .material-icons.mi-blur-linear:before,
387
- .mi.mi-blur-linear:before {
386
+ .material-icons.blur-linear:before,
387
+ .mi.blur-linear:before {
388
388
  content: '\e3a3';
389
389
  }
390
- .material-icons.mi-blur-off:before,
391
- .mi.mi-blur-off:before {
390
+ .material-icons.blur-off:before,
391
+ .mi.blur-off:before {
392
392
  content: '\e3a4';
393
393
  }
394
- .material-icons.mi-blur-on:before,
395
- .mi.mi-blur-on:before {
394
+ .material-icons.blur-on:before,
395
+ .mi.blur-on:before {
396
396
  content: '\e3a5';
397
397
  }
398
- .material-icons.mi-book:before,
399
- .mi.mi-book:before {
398
+ .material-icons.book:before,
399
+ .mi.book:before {
400
400
  content: '\e865';
401
401
  }
402
- .material-icons.mi-bookmark:before,
403
- .mi.mi-bookmark:before {
402
+ .material-icons.bookmark:before,
403
+ .mi.bookmark:before {
404
404
  content: '\e866';
405
405
  }
406
- .material-icons.mi-bookmark-border:before,
407
- .mi.mi-bookmark-border:before {
406
+ .material-icons.bookmark-border:before,
407
+ .mi.bookmark-border:before {
408
408
  content: '\e867';
409
409
  }
410
- .material-icons.mi-border-all:before,
411
- .mi.mi-border-all:before {
410
+ .material-icons.border-all:before,
411
+ .mi.border-all:before {
412
412
  content: '\e228';
413
413
  }
414
- .material-icons.mi-border-bottom:before,
415
- .mi.mi-border-bottom:before {
414
+ .material-icons.border-bottom:before,
415
+ .mi.border-bottom:before {
416
416
  content: '\e229';
417
417
  }
418
- .material-icons.mi-border-clear:before,
419
- .mi.mi-border-clear:before {
418
+ .material-icons.border-clear:before,
419
+ .mi.border-clear:before {
420
420
  content: '\e22a';
421
421
  }
422
- .material-icons.mi-border-color:before,
423
- .mi.mi-border-color:before {
422
+ .material-icons.border-color:before,
423
+ .mi.border-color:before {
424
424
  content: '\e22b';
425
425
  }
426
- .material-icons.mi-border-horizontal:before,
427
- .mi.mi-border-horizontal:before {
426
+ .material-icons.border-horizontal:before,
427
+ .mi.border-horizontal:before {
428
428
  content: '\e22c';
429
429
  }
430
- .material-icons.mi-border-inner:before,
431
- .mi.mi-border-inner:before {
430
+ .material-icons.border-inner:before,
431
+ .mi.border-inner:before {
432
432
  content: '\e22d';
433
433
  }
434
- .material-icons.mi-border-left:before,
435
- .mi.mi-border-left:before {
434
+ .material-icons.border-left:before,
435
+ .mi.border-left:before {
436
436
  content: '\e22e';
437
437
  }
438
- .material-icons.mi-border-outer:before,
439
- .mi.mi-border-outer:before {
438
+ .material-icons.border-outer:before,
439
+ .mi.border-outer:before {
440
440
  content: '\e22f';
441
441
  }
442
- .material-icons.mi-border-right:before,
443
- .mi.mi-border-right:before {
442
+ .material-icons.border-right:before,
443
+ .mi.border-right:before {
444
444
  content: '\e230';
445
445
  }
446
- .material-icons.mi-border-style:before,
447
- .mi.mi-border-style:before {
446
+ .material-icons.border-style:before,
447
+ .mi.border-style:before {
448
448
  content: '\e231';
449
449
  }
450
- .material-icons.mi-border-top:before,
451
- .mi.mi-border-top:before {
450
+ .material-icons.border-top:before,
451
+ .mi.border-top:before {
452
452
  content: '\e232';
453
453
  }
454
- .material-icons.mi-border-vertical:before,
455
- .mi.mi-border-vertical:before {
454
+ .material-icons.border-vertical:before,
455
+ .mi.border-vertical:before {
456
456
  content: '\e233';
457
457
  }
458
- .material-icons.mi-brightness-1:before,
459
- .mi.mi-brightness-1:before {
458
+ .material-icons.brightness-1:before,
459
+ .mi.brightness-1:before {
460
460
  content: '\e3a6';
461
461
  }
462
- .material-icons.mi-brightness-2:before,
463
- .mi.mi-brightness-2:before {
462
+ .material-icons.brightness-2:before,
463
+ .mi.brightness-2:before {
464
464
  content: '\e3a7';
465
465
  }
466
- .material-icons.mi-brightness-3:before,
467
- .mi.mi-brightness-3:before {
466
+ .material-icons.brightness-3:before,
467
+ .mi.brightness-3:before {
468
468
  content: '\e3a8';
469
469
  }
470
- .material-icons.mi-brightness-4:before,
471
- .mi.mi-brightness-4:before {
470
+ .material-icons.brightness-4:before,
471
+ .mi.brightness-4:before {
472
472
  content: '\e3a9';
473
473
  }
474
- .material-icons.mi-brightness-5:before,
475
- .mi.mi-brightness-5:before {
474
+ .material-icons.brightness-5:before,
475
+ .mi.brightness-5:before {
476
476
  content: '\e3aa';
477
477
  }
478
- .material-icons.mi-brightness-6:before,
479
- .mi.mi-brightness-6:before {
478
+ .material-icons.brightness-6:before,
479
+ .mi.brightness-6:before {
480
480
  content: '\e3ab';
481
481
  }
482
- .material-icons.mi-brightness-7:before,
483
- .mi.mi-brightness-7:before {
482
+ .material-icons.brightness-7:before,
483
+ .mi.brightness-7:before {
484
484
  content: '\e3ac';
485
485
  }
486
- .material-icons.mi-brightness-auto:before,
487
- .mi.mi-brightness-auto:before {
486
+ .material-icons.brightness-auto:before,
487
+ .mi.brightness-auto:before {
488
488
  content: '\e1ab';
489
489
  }
490
- .material-icons.mi-brightness-high:before,
491
- .mi.mi-brightness-high:before {
490
+ .material-icons.brightness-high:before,
491
+ .mi.brightness-high:before {
492
492
  content: '\e1ac';
493
493
  }
494
- .material-icons.mi-brightness-low:before,
495
- .mi.mi-brightness-low:before {
494
+ .material-icons.brightness-low:before,
495
+ .mi.brightness-low:before {
496
496
  content: '\e1ad';
497
497
  }
498
- .material-icons.mi-brightness-medium:before,
499
- .mi.mi-brightness-medium:before {
498
+ .material-icons.brightness-medium:before,
499
+ .mi.brightness-medium:before {
500
500
  content: '\e1ae';
501
501
  }
502
- .material-icons.mi-broken-image:before,
503
- .mi.mi-broken-image:before {
502
+ .material-icons.broken-image:before,
503
+ .mi.broken-image:before {
504
504
  content: '\e3ad';
505
505
  }
506
- .material-icons.mi-brush:before,
507
- .mi.mi-brush:before {
506
+ .material-icons.brush:before,
507
+ .mi.brush:before {
508
508
  content: '\e3ae';
509
509
  }
510
- .material-icons.mi-bug-report:before,
511
- .mi.mi-bug-report:before {
510
+ .material-icons.bug-report:before,
511
+ .mi.bug-report:before {
512
512
  content: '\e868';
513
513
  }
514
- .material-icons.mi-build:before,
515
- .mi.mi-build:before {
514
+ .material-icons.build:before,
515
+ .mi.build:before {
516
516
  content: '\e869';
517
517
  }
518
- .material-icons.mi-business:before,
519
- .mi.mi-business:before {
518
+ .material-icons.business:before,
519
+ .mi.business:before {
520
520
  content: '\e0af';
521
521
  }
522
- .material-icons.mi-cached:before,
523
- .mi.mi-cached:before {
522
+ .material-icons.cached:before,
523
+ .mi.cached:before {
524
524
  content: '\e86a';
525
525
  }
526
- .material-icons.mi-cake:before,
527
- .mi.mi-cake:before {
526
+ .material-icons.cake:before,
527
+ .mi.cake:before {
528
528
  content: '\e7e9';
529
529
  }
530
- .material-icons.mi-call:before,
531
- .mi.mi-call:before {
530
+ .material-icons.call:before,
531
+ .mi.call:before {
532
532
  content: '\e0b0';
533
533
  }
534
- .material-icons.mi-call-end:before,
535
- .mi.mi-call-end:before {
534
+ .material-icons.call-end:before,
535
+ .mi.call-end:before {
536
536
  content: '\e0b1';
537
537
  }
538
- .material-icons.mi-call-made:before,
539
- .mi.mi-call-made:before {
538
+ .material-icons.call-made:before,
539
+ .mi.call-made:before {
540
540
  content: '\e0b2';
541
541
  }
542
- .material-icons.mi-call-merge:before,
543
- .mi.mi-call-merge:before {
542
+ .material-icons.call-merge:before,
543
+ .mi.call-merge:before {
544
544
  content: '\e0b3';
545
545
  }
546
- .material-icons.mi-call-missed:before,
547
- .mi.mi-call-missed:before {
546
+ .material-icons.call-missed:before,
547
+ .mi.call-missed:before {
548
548
  content: '\e0b4';
549
549
  }
550
- .material-icons.mi-call-received:before,
551
- .mi.mi-call-received:before {
550
+ .material-icons.call-received:before,
551
+ .mi.call-received:before {
552
552
  content: '\e0b5';
553
553
  }
554
- .material-icons.mi-call-split:before,
555
- .mi.mi-call-split:before {
554
+ .material-icons.call-split:before,
555
+ .mi.call-split:before {
556
556
  content: '\e0b6';
557
557
  }
558
- .material-icons.mi-camera:before,
559
- .mi.mi-camera:before {
558
+ .material-icons.camera:before,
559
+ .mi.camera:before {
560
560
  content: '\e3af';
561
561
  }
562
- .material-icons.mi-camera-alt:before,
563
- .mi.mi-camera-alt:before {
562
+ .material-icons.camera-alt:before,
563
+ .mi.camera-alt:before {
564
564
  content: '\e3b0';
565
565
  }
566
- .material-icons.mi-camera-enhance:before,
567
- .mi.mi-camera-enhance:before {
566
+ .material-icons.camera-enhance:before,
567
+ .mi.camera-enhance:before {
568
568
  content: '\e8fc';
569
569
  }
570
- .material-icons.mi-camera-front:before,
571
- .mi.mi-camera-front:before {
570
+ .material-icons.camera-front:before,
571
+ .mi.camera-front:before {
572
572
  content: '\e3b1';
573
573
  }
574
- .material-icons.mi-camera-rear:before,
575
- .mi.mi-camera-rear:before {
574
+ .material-icons.camera-rear:before,
575
+ .mi.camera-rear:before {
576
576
  content: '\e3b2';
577
577
  }
578
- .material-icons.mi-camera-roll:before,
579
- .mi.mi-camera-roll:before {
578
+ .material-icons.camera-roll:before,
579
+ .mi.camera-roll:before {
580
580
  content: '\e3b3';
581
581
  }
582
- .material-icons.mi-cancel:before,
583
- .mi.mi-cancel:before {
582
+ .material-icons.cancel:before,
583
+ .mi.cancel:before {
584
584
  content: '\e5c9';
585
585
  }
586
- .material-icons.mi-card-giftcard:before,
587
- .mi.mi-card-giftcard:before {
586
+ .material-icons.card-giftcard:before,
587
+ .mi.card-giftcard:before {
588
588
  content: '\e8f6';
589
589
  }
590
- .material-icons.mi-card-membership:before,
591
- .mi.mi-card-membership:before {
590
+ .material-icons.card-membership:before,
591
+ .mi.card-membership:before {
592
592
  content: '\e8f7';
593
593
  }
594
- .material-icons.mi-card-travel:before,
595
- .mi.mi-card-travel:before {
594
+ .material-icons.card-travel:before,
595
+ .mi.card-travel:before {
596
596
  content: '\e8f8';
597
597
  }
598
- .material-icons.mi-cast:before,
599
- .mi.mi-cast:before {
598
+ .material-icons.cast:before,
599
+ .mi.cast:before {
600
600
  content: '\e307';
601
601
  }
602
- .material-icons.mi-cast-connected:before,
603
- .mi.mi-cast-connected:before {
602
+ .material-icons.cast-connected:before,
603
+ .mi.cast-connected:before {
604
604
  content: '\e308';
605
605
  }
606
- .material-icons.mi-center-focus-strong:before,
607
- .mi.mi-center-focus-strong:before {
606
+ .material-icons.center-focus-strong:before,
607
+ .mi.center-focus-strong:before {
608
608
  content: '\e3b4';
609
609
  }
610
- .material-icons.mi-center-focus-weak:before,
611
- .mi.mi-center-focus-weak:before {
610
+ .material-icons.center-focus-weak:before,
611
+ .mi.center-focus-weak:before {
612
612
  content: '\e3b5';
613
613
  }
614
- .material-icons.mi-change-history:before,
615
- .mi.mi-change-history:before {
614
+ .material-icons.change-history:before,
615
+ .mi.change-history:before {
616
616
  content: '\e86b';
617
617
  }
618
- .material-icons.mi-chat:before,
619
- .mi.mi-chat:before {
618
+ .material-icons.chat:before,
619
+ .mi.chat:before {
620
620
  content: '\e0b7';
621
621
  }
622
- .material-icons.mi-chat-bubble:before,
623
- .mi.mi-chat-bubble:before {
622
+ .material-icons.chat-bubble:before,
623
+ .mi.chat-bubble:before {
624
624
  content: '\e0ca';
625
625
  }
626
- .material-icons.mi-chat-bubble-outline:before,
627
- .mi.mi-chat-bubble-outline:before {
626
+ .material-icons.chat-bubble-outline:before,
627
+ .mi.chat-bubble-outline:before {
628
628
  content: '\e0cb';
629
629
  }
630
- .material-icons.mi-check:before,
631
- .mi.mi-check:before {
630
+ .material-icons.check:before,
631
+ .mi.check:before {
632
632
  content: '\e5ca';
633
633
  }
634
- .material-icons.mi-check-box:before,
635
- .mi.mi-check-box:before {
634
+ .material-icons.check-box:before,
635
+ .mi.check-box:before {
636
636
  content: '\e834';
637
637
  }
638
- .material-icons.mi-check-box-outline-blank:before,
639
- .mi.mi-check-box-outline-blank:before {
638
+ .material-icons.check-box-outline-blank:before,
639
+ .mi.check-box-outline-blank:before {
640
640
  content: '\e835';
641
641
  }
642
- .material-icons.mi-check-circle:before,
643
- .mi.mi-check-circle:before {
642
+ .material-icons.check-circle:before,
643
+ .mi.check-circle:before {
644
644
  content: '\e86c';
645
645
  }
646
- .material-icons.mi-chevron-left:before,
647
- .mi.mi-chevron-left:before {
646
+ .material-icons.chevron-left:before,
647
+ .mi.chevron-left:before {
648
648
  content: '\e5cb';
649
649
  }
650
- .material-icons.mi-chevron-right:before,
651
- .mi.mi-chevron-right:before {
650
+ .material-icons.chevron-right:before,
651
+ .mi.chevron-right:before {
652
652
  content: '\e5cc';
653
653
  }
654
- .material-icons.mi-chrome-reader-mode:before,
655
- .mi.mi-chrome-reader-mode:before {
654
+ .material-icons.chrome-reader-mode:before,
655
+ .mi.chrome-reader-mode:before {
656
656
  content: '\e86d';
657
657
  }
658
- .material-icons.mi-class:before,
659
- .mi.mi-class:before {
658
+ .material-icons.class:before,
659
+ .mi.class:before {
660
660
  content: '\e86e';
661
661
  }
662
- .material-icons.mi-clear:before,
663
- .mi.mi-clear:before {
662
+ .material-icons.clear:before,
663
+ .mi.clear:before {
664
664
  content: '\e14c';
665
665
  }
666
- .material-icons.mi-clear-all:before,
667
- .mi.mi-clear-all:before {
666
+ .material-icons.clear-all:before,
667
+ .mi.clear-all:before {
668
668
  content: '\e0b8';
669
669
  }
670
- .material-icons.mi-close:before,
671
- .mi.mi-close:before {
670
+ .material-icons.close:before,
671
+ .mi.close:before {
672
672
  content: '\e5cd';
673
673
  }
674
- .material-icons.mi-closed-caption:before,
675
- .mi.mi-closed-caption:before {
674
+ .material-icons.closed-caption:before,
675
+ .mi.closed-caption:before {
676
676
  content: '\e01c';
677
677
  }
678
- .material-icons.mi-cloud:before,
679
- .mi.mi-cloud:before {
678
+ .material-icons.cloud:before,
679
+ .mi.cloud:before {
680
680
  content: '\e2bd';
681
681
  }
682
- .material-icons.mi-cloud-circle:before,
683
- .mi.mi-cloud-circle:before {
682
+ .material-icons.cloud-circle:before,
683
+ .mi.cloud-circle:before {
684
684
  content: '\e2be';
685
685
  }
686
- .material-icons.mi-cloud-done:before,
687
- .mi.mi-cloud-done:before {
686
+ .material-icons.cloud-done:before,
687
+ .mi.cloud-done:before {
688
688
  content: '\e2bf';
689
689
  }
690
- .material-icons.mi-cloud-download:before,
691
- .mi.mi-cloud-download:before {
690
+ .material-icons.cloud-download:before,
691
+ .mi.cloud-download:before {
692
692
  content: '\e2c0';
693
693
  }
694
- .material-icons.mi-cloud-off:before,
695
- .mi.mi-cloud-off:before {
694
+ .material-icons.cloud-off:before,
695
+ .mi.cloud-off:before {
696
696
  content: '\e2c1';
697
697
  }
698
- .material-icons.mi-cloud-queue:before,
699
- .mi.mi-cloud-queue:before {
698
+ .material-icons.cloud-queue:before,
699
+ .mi.cloud-queue:before {
700
700
  content: '\e2c2';
701
701
  }
702
- .material-icons.mi-cloud-upload:before,
703
- .mi.mi-cloud-upload:before {
702
+ .material-icons.cloud-upload:before,
703
+ .mi.cloud-upload:before {
704
704
  content: '\e2c3';
705
705
  }
706
- .material-icons.mi-code:before,
707
- .mi.mi-code:before {
706
+ .material-icons.code:before,
707
+ .mi.code:before {
708
708
  content: '\e86f';
709
709
  }
710
- .material-icons.mi-collections:before,
711
- .mi.mi-collections:before {
710
+ .material-icons.collections:before,
711
+ .mi.collections:before {
712
712
  content: '\e3b6';
713
713
  }
714
- .material-icons.mi-collections-bookmark:before,
715
- .mi.mi-collections-bookmark:before {
714
+ .material-icons.collections-bookmark:before,
715
+ .mi.collections-bookmark:before {
716
716
  content: '\e431';
717
717
  }
718
- .material-icons.mi-color-lens:before,
719
- .mi.mi-color-lens:before {
718
+ .material-icons.color-lens:before,
719
+ .mi.color-lens:before {
720
720
  content: '\e3b7';
721
721
  }
722
- .material-icons.mi-colorize:before,
723
- .mi.mi-colorize:before {
722
+ .material-icons.colorize:before,
723
+ .mi.colorize:before {
724
724
  content: '\e3b8';
725
725
  }
726
- .material-icons.mi-comment:before,
727
- .mi.mi-comment:before {
726
+ .material-icons.comment:before,
727
+ .mi.comment:before {
728
728
  content: '\e0b9';
729
729
  }
730
- .material-icons.mi-compare:before,
731
- .mi.mi-compare:before {
730
+ .material-icons.compare:before,
731
+ .mi.compare:before {
732
732
  content: '\e3b9';
733
733
  }
734
- .material-icons.mi-computer:before,
735
- .mi.mi-computer:before {
734
+ .material-icons.computer:before,
735
+ .mi.computer:before {
736
736
  content: '\e30a';
737
737
  }
738
- .material-icons.mi-confirmation-number:before,
739
- .mi.mi-confirmation-number:before {
738
+ .material-icons.confirmation-number:before,
739
+ .mi.confirmation-number:before {
740
740
  content: '\e638';
741
741
  }
742
- .material-icons.mi-contact-phone:before,
743
- .mi.mi-contact-phone:before {
742
+ .material-icons.contact-phone:before,
743
+ .mi.contact-phone:before {
744
744
  content: '\e0cf';
745
745
  }
746
- .material-icons.mi-contacts:before,
747
- .mi.mi-contacts:before {
746
+ .material-icons.contacts:before,
747
+ .mi.contacts:before {
748
748
  content: '\e0ba';
749
749
  }
750
- .material-icons.mi-content-copy:before,
751
- .mi.mi-content-copy:before {
750
+ .material-icons.content-copy:before,
751
+ .mi.content-copy:before {
752
752
  content: '\e14d';
753
753
  }
754
- .material-icons.mi-content-cut:before,
755
- .mi.mi-content-cut:before {
754
+ .material-icons.content-cut:before,
755
+ .mi.content-cut:before {
756
756
  content: '\e14e';
757
757
  }
758
- .material-icons.mi-content-paste:before,
759
- .mi.mi-content-paste:before {
758
+ .material-icons.content-paste:before,
759
+ .mi.content-paste:before {
760
760
  content: '\e14f';
761
761
  }
762
- .material-icons.mi-control-point:before,
763
- .mi.mi-control-point:before {
762
+ .material-icons.control-point:before,
763
+ .mi.control-point:before {
764
764
  content: '\e3ba';
765
765
  }
766
- .material-icons.mi-control-point-duplicate:before,
767
- .mi.mi-control-point-duplicate:before {
766
+ .material-icons.control-point-duplicate:before,
767
+ .mi.control-point-duplicate:before {
768
768
  content: '\e3bb';
769
769
  }
770
- .material-icons.mi-create:before,
771
- .mi.mi-create:before {
770
+ .material-icons.create:before,
771
+ .mi.create:before {
772
772
  content: '\e150';
773
773
  }
774
- .material-icons.mi-credit-card:before,
775
- .mi.mi-credit-card:before {
774
+ .material-icons.credit-card:before,
775
+ .mi.credit-card:before {
776
776
  content: '\e870';
777
777
  }
778
- .material-icons.mi-crop:before,
779
- .mi.mi-crop:before {
778
+ .material-icons.crop:before,
779
+ .mi.crop:before {
780
780
  content: '\e3be';
781
781
  }
782
- .material-icons.mi-crop-16-9:before,
783
- .mi.mi-crop-16-9:before {
782
+ .material-icons.crop-16-9:before,
783
+ .mi.crop-16-9:before {
784
784
  content: '\e3bc';
785
785
  }
786
- .material-icons.mi-crop-3-2:before,
787
- .mi.mi-crop-3-2:before {
786
+ .material-icons.crop-3-2:before,
787
+ .mi.crop-3-2:before {
788
788
  content: '\e3bd';
789
789
  }
790
- .material-icons.mi-crop-5-4:before,
791
- .mi.mi-crop-5-4:before {
790
+ .material-icons.crop-5-4:before,
791
+ .mi.crop-5-4:before {
792
792
  content: '\e3bf';
793
793
  }
794
- .material-icons.mi-crop-7-5:before,
795
- .mi.mi-crop-7-5:before {
794
+ .material-icons.crop-7-5:before,
795
+ .mi.crop-7-5:before {
796
796
  content: '\e3c0';
797
797
  }
798
- .material-icons.mi-crop-din:before,
799
- .mi.mi-crop-din:before {
798
+ .material-icons.crop-din:before,
799
+ .mi.crop-din:before {
800
800
  content: '\e3c1';
801
801
  }
802
- .material-icons.mi-crop-free:before,
803
- .mi.mi-crop-free:before {
802
+ .material-icons.crop-free:before,
803
+ .mi.crop-free:before {
804
804
  content: '\e3c2';
805
805
  }
806
- .material-icons.mi-crop-landscape:before,
807
- .mi.mi-crop-landscape:before {
806
+ .material-icons.crop-landscape:before,
807
+ .mi.crop-landscape:before {
808
808
  content: '\e3c3';
809
809
  }
810
- .material-icons.mi-crop-original:before,
811
- .mi.mi-crop-original:before {
810
+ .material-icons.crop-original:before,
811
+ .mi.crop-original:before {
812
812
  content: '\e3c4';
813
813
  }
814
- .material-icons.mi-crop-portrait:before,
815
- .mi.mi-crop-portrait:before {
814
+ .material-icons.crop-portrait:before,
815
+ .mi.crop-portrait:before {
816
816
  content: '\e3c5';
817
817
  }
818
- .material-icons.mi-crop-square:before,
819
- .mi.mi-crop-square:before {
818
+ .material-icons.crop-square:before,
819
+ .mi.crop-square:before {
820
820
  content: '\e3c6';
821
821
  }
822
- .material-icons.mi-dashboard:before,
823
- .mi.mi-dashboard:before {
822
+ .material-icons.dashboard:before,
823
+ .mi.dashboard:before {
824
824
  content: '\e871';
825
825
  }
826
- .material-icons.mi-data-usage:before,
827
- .mi.mi-data-usage:before {
826
+ .material-icons.data-usage:before,
827
+ .mi.data-usage:before {
828
828
  content: '\e1af';
829
829
  }
830
- .material-icons.mi-dehaze:before,
831
- .mi.mi-dehaze:before {
830
+ .material-icons.dehaze:before,
831
+ .mi.dehaze:before {
832
832
  content: '\e3c7';
833
833
  }
834
- .material-icons.mi-delete:before,
835
- .mi.mi-delete:before {
834
+ .material-icons.delete:before,
835
+ .mi.delete:before {
836
836
  content: '\e872';
837
837
  }
838
- .material-icons.mi-description:before,
839
- .mi.mi-description:before {
838
+ .material-icons.description:before,
839
+ .mi.description:before {
840
840
  content: '\e873';
841
841
  }
842
- .material-icons.mi-desktop-mac:before,
843
- .mi.mi-desktop-mac:before {
842
+ .material-icons.desktop-mac:before,
843
+ .mi.desktop-mac:before {
844
844
  content: '\e30b';
845
845
  }
846
- .material-icons.mi-desktop-windows:before,
847
- .mi.mi-desktop-windows:before {
846
+ .material-icons.desktop-windows:before,
847
+ .mi.desktop-windows:before {
848
848
  content: '\e30c';
849
849
  }
850
- .material-icons.mi-details:before,
851
- .mi.mi-details:before {
850
+ .material-icons.details:before,
851
+ .mi.details:before {
852
852
  content: '\e3c8';
853
853
  }
854
- .material-icons.mi-developer-board:before,
855
- .mi.mi-developer-board:before {
854
+ .material-icons.developer-board:before,
855
+ .mi.developer-board:before {
856
856
  content: '\e30d';
857
857
  }
858
- .material-icons.mi-developer-mode:before,
859
- .mi.mi-developer-mode:before {
858
+ .material-icons.developer-mode:before,
859
+ .mi.developer-mode:before {
860
860
  content: '\e1b0';
861
861
  }
862
- .material-icons.mi-device-hub:before,
863
- .mi.mi-device-hub:before {
862
+ .material-icons.device-hub:before,
863
+ .mi.device-hub:before {
864
864
  content: '\e335';
865
865
  }
866
- .material-icons.mi-devices:before,
867
- .mi.mi-devices:before {
866
+ .material-icons.devices:before,
867
+ .mi.devices:before {
868
868
  content: '\e1b1';
869
869
  }
870
- .material-icons.mi-dialer-sip:before,
871
- .mi.mi-dialer-sip:before {
870
+ .material-icons.dialer-sip:before,
871
+ .mi.dialer-sip:before {
872
872
  content: '\e0bb';
873
873
  }
874
- .material-icons.mi-dialpad:before,
875
- .mi.mi-dialpad:before {
874
+ .material-icons.dialpad:before,
875
+ .mi.dialpad:before {
876
876
  content: '\e0bc';
877
877
  }
878
- .material-icons.mi-directions:before,
879
- .mi.mi-directions:before {
878
+ .material-icons.directions:before,
879
+ .mi.directions:before {
880
880
  content: '\e52e';
881
881
  }
882
- .material-icons.mi-directions-bike:before,
883
- .mi.mi-directions-bike:before {
882
+ .material-icons.directions-bike:before,
883
+ .mi.directions-bike:before {
884
884
  content: '\e52f';
885
885
  }
886
- .material-icons.mi-directions-boat:before,
887
- .mi.mi-directions-boat:before {
886
+ .material-icons.directions-boat:before,
887
+ .mi.directions-boat:before {
888
888
  content: '\e532';
889
889
  }
890
- .material-icons.mi-directions-bus:before,
891
- .mi.mi-directions-bus:before {
890
+ .material-icons.directions-bus:before,
891
+ .mi.directions-bus:before {
892
892
  content: '\e530';
893
893
  }
894
- .material-icons.mi-directions-car:before,
895
- .mi.mi-directions-car:before {
894
+ .material-icons.directions-car:before,
895
+ .mi.directions-car:before {
896
896
  content: '\e531';
897
897
  }
898
- .material-icons.mi-directions-railway:before,
899
- .mi.mi-directions-railway:before {
898
+ .material-icons.directions-railway:before,
899
+ .mi.directions-railway:before {
900
900
  content: '\e534';
901
901
  }
902
- .material-icons.mi-directions-run:before,
903
- .mi.mi-directions-run:before {
902
+ .material-icons.directions-run:before,
903
+ .mi.directions-run:before {
904
904
  content: '\e566';
905
905
  }
906
- .material-icons.mi-directions-subway:before,
907
- .mi.mi-directions-subway:before {
906
+ .material-icons.directions-subway:before,
907
+ .mi.directions-subway:before {
908
908
  content: '\e533';
909
909
  }
910
- .material-icons.mi-directions-transit:before,
911
- .mi.mi-directions-transit:before {
910
+ .material-icons.directions-transit:before,
911
+ .mi.directions-transit:before {
912
912
  content: '\e535';
913
913
  }
914
- .material-icons.mi-directions-walk:before,
915
- .mi.mi-directions-walk:before {
914
+ .material-icons.directions-walk:before,
915
+ .mi.directions-walk:before {
916
916
  content: '\e536';
917
917
  }
918
- .material-icons.mi-disc-full:before,
919
- .mi.mi-disc-full:before {
918
+ .material-icons.disc-full:before,
919
+ .mi.disc-full:before {
920
920
  content: '\e610';
921
921
  }
922
- .material-icons.mi-dns:before,
923
- .mi.mi-dns:before {
922
+ .material-icons.dns:before,
923
+ .mi.dns:before {
924
924
  content: '\e875';
925
925
  }
926
- .material-icons.mi-do-not-disturb:before,
927
- .mi.mi-do-not-disturb:before {
926
+ .material-icons.do-not-disturb:before,
927
+ .mi.do-not-disturb:before {
928
928
  content: '\e612';
929
929
  }
930
- .material-icons.mi-do-not-disturb-alt:before,
931
- .mi.mi-do-not-disturb-alt:before {
930
+ .material-icons.do-not-disturb-alt:before,
931
+ .mi.do-not-disturb-alt:before {
932
932
  content: '\e611';
933
933
  }
934
- .material-icons.mi-dock:before,
935
- .mi.mi-dock:before {
934
+ .material-icons.dock:before,
935
+ .mi.dock:before {
936
936
  content: '\e30e';
937
937
  }
938
- .material-icons.mi-domain:before,
939
- .mi.mi-domain:before {
938
+ .material-icons.domain:before,
939
+ .mi.domain:before {
940
940
  content: '\e7ee';
941
941
  }
942
- .material-icons.mi-done:before,
943
- .mi.mi-done:before {
942
+ .material-icons.done:before,
943
+ .mi.done:before {
944
944
  content: '\e876';
945
945
  }
946
- .material-icons.mi-done-all:before,
947
- .mi.mi-done-all:before {
946
+ .material-icons.done-all:before,
947
+ .mi.done-all:before {
948
948
  content: '\e877';
949
949
  }
950
- .material-icons.mi-drafts:before,
951
- .mi.mi-drafts:before {
950
+ .material-icons.drafts:before,
951
+ .mi.drafts:before {
952
952
  content: '\e151';
953
953
  }
954
- .material-icons.mi-drive-eta:before,
955
- .mi.mi-drive-eta:before {
954
+ .material-icons.drive-eta:before,
955
+ .mi.drive-eta:before {
956
956
  content: '\e613';
957
957
  }
958
- .material-icons.mi-dvr:before,
959
- .mi.mi-dvr:before {
958
+ .material-icons.dvr:before,
959
+ .mi.dvr:before {
960
960
  content: '\e1b2';
961
961
  }
962
- .material-icons.mi-edit:before,
963
- .mi.mi-edit:before {
962
+ .material-icons.edit:before,
963
+ .mi.edit:before {
964
964
  content: '\e3c9';
965
965
  }
966
- .material-icons.mi-eject:before,
967
- .mi.mi-eject:before {
966
+ .material-icons.eject:before,
967
+ .mi.eject:before {
968
968
  content: '\e8fb';
969
969
  }
970
- .material-icons.mi-email:before,
971
- .mi.mi-email:before {
970
+ .material-icons.email:before,
971
+ .mi.email:before {
972
972
  content: '\e0be';
973
973
  }
974
- .material-icons.mi-equalizer:before,
975
- .mi.mi-equalizer:before {
974
+ .material-icons.equalizer:before,
975
+ .mi.equalizer:before {
976
976
  content: '\e01d';
977
977
  }
978
- .material-icons.mi-error:before,
979
- .mi.mi-error:before {
978
+ .material-icons.error:before,
979
+ .mi.error:before {
980
980
  content: '\e000';
981
981
  }
982
- .material-icons.mi-error-outline:before,
983
- .mi.mi-error-outline:before {
982
+ .material-icons.error-outline:before,
983
+ .mi.error-outline:before {
984
984
  content: '\e001';
985
985
  }
986
- .material-icons.mi-event:before,
987
- .mi.mi-event:before {
986
+ .material-icons.event:before,
987
+ .mi.event:before {
988
988
  content: '\e878';
989
989
  }
990
- .material-icons.mi-event-available:before,
991
- .mi.mi-event-available:before {
990
+ .material-icons.event-available:before,
991
+ .mi.event-available:before {
992
992
  content: '\e614';
993
993
  }
994
- .material-icons.mi-event-busy:before,
995
- .mi.mi-event-busy:before {
994
+ .material-icons.event-busy:before,
995
+ .mi.event-busy:before {
996
996
  content: '\e615';
997
997
  }
998
- .material-icons.mi-event-note:before,
999
- .mi.mi-event-note:before {
998
+ .material-icons.event-note:before,
999
+ .mi.event-note:before {
1000
1000
  content: '\e616';
1001
1001
  }
1002
- .material-icons.mi-event-seat:before,
1003
- .mi.mi-event-seat:before {
1002
+ .material-icons.event-seat:before,
1003
+ .mi.event-seat:before {
1004
1004
  content: '\e903';
1005
1005
  }
1006
- .material-icons.mi-exit-to-app:before,
1007
- .mi.mi-exit-to-app:before {
1006
+ .material-icons.exit-to-app:before,
1007
+ .mi.exit-to-app:before {
1008
1008
  content: '\e879';
1009
1009
  }
1010
- .material-icons.mi-expand-less:before,
1011
- .mi.mi-expand-less:before {
1010
+ .material-icons.expand-less:before,
1011
+ .mi.expand-less:before {
1012
1012
  content: '\e5ce';
1013
1013
  }
1014
- .material-icons.mi-expand-more:before,
1015
- .mi.mi-expand-more:before {
1014
+ .material-icons.expand-more:before,
1015
+ .mi.expand-more:before {
1016
1016
  content: '\e5cf';
1017
1017
  }
1018
- .material-icons.mi-explicit:before,
1019
- .mi.mi-explicit:before {
1018
+ .material-icons.explicit:before,
1019
+ .mi.explicit:before {
1020
1020
  content: '\e01e';
1021
1021
  }
1022
- .material-icons.mi-explore:before,
1023
- .mi.mi-explore:before {
1022
+ .material-icons.explore:before,
1023
+ .mi.explore:before {
1024
1024
  content: '\e87a';
1025
1025
  }
1026
- .material-icons.mi-exposure:before,
1027
- .mi.mi-exposure:before {
1026
+ .material-icons.exposure:before,
1027
+ .mi.exposure:before {
1028
1028
  content: '\e3ca';
1029
1029
  }
1030
- .material-icons.mi-exposure-neg-1:before,
1031
- .mi.mi-exposure-neg-1:before {
1030
+ .material-icons.exposure-neg-1:before,
1031
+ .mi.exposure-neg-1:before {
1032
1032
  content: '\e3cb';
1033
1033
  }
1034
- .material-icons.mi-exposure-neg-2:before,
1035
- .mi.mi-exposure-neg-2:before {
1034
+ .material-icons.exposure-neg-2:before,
1035
+ .mi.exposure-neg-2:before {
1036
1036
  content: '\e3cc';
1037
1037
  }
1038
- .material-icons.mi-exposure-plus-1:before,
1039
- .mi.mi-exposure-plus-1:before {
1038
+ .material-icons.exposure-plus-1:before,
1039
+ .mi.exposure-plus-1:before {
1040
1040
  content: '\e3cd';
1041
1041
  }
1042
- .material-icons.mi-exposure-plus-2:before,
1043
- .mi.mi-exposure-plus-2:before {
1042
+ .material-icons.exposure-plus-2:before,
1043
+ .mi.exposure-plus-2:before {
1044
1044
  content: '\e3ce';
1045
1045
  }
1046
- .material-icons.mi-exposure-zero:before,
1047
- .mi.mi-exposure-zero:before {
1046
+ .material-icons.exposure-zero:before,
1047
+ .mi.exposure-zero:before {
1048
1048
  content: '\e3cf';
1049
1049
  }
1050
- .material-icons.mi-extension:before,
1051
- .mi.mi-extension:before {
1050
+ .material-icons.extension:before,
1051
+ .mi.extension:before {
1052
1052
  content: '\e87b';
1053
1053
  }
1054
- .material-icons.mi-face:before,
1055
- .mi.mi-face:before {
1054
+ .material-icons.face:before,
1055
+ .mi.face:before {
1056
1056
  content: '\e87c';
1057
1057
  }
1058
- .material-icons.mi-fast-forward:before,
1059
- .mi.mi-fast-forward:before {
1058
+ .material-icons.fast-forward:before,
1059
+ .mi.fast-forward:before {
1060
1060
  content: '\e01f';
1061
1061
  }
1062
- .material-icons.mi-fast-rewind:before,
1063
- .mi.mi-fast-rewind:before {
1062
+ .material-icons.fast-rewind:before,
1063
+ .mi.fast-rewind:before {
1064
1064
  content: '\e020';
1065
1065
  }
1066
- .material-icons.mi-favorite:before,
1067
- .mi.mi-favorite:before {
1066
+ .material-icons.favorite:before,
1067
+ .mi.favorite:before {
1068
1068
  content: '\e87d';
1069
1069
  }
1070
- .material-icons.mi-favorite-border:before,
1071
- .mi.mi-favorite-border:before {
1070
+ .material-icons.favorite-border:before,
1071
+ .mi.favorite-border:before {
1072
1072
  content: '\e87e';
1073
1073
  }
1074
- .material-icons.mi-feedback:before,
1075
- .mi.mi-feedback:before {
1074
+ .material-icons.feedback:before,
1075
+ .mi.feedback:before {
1076
1076
  content: '\e87f';
1077
1077
  }
1078
- .material-icons.mi-file-download:before,
1079
- .mi.mi-file-download:before {
1078
+ .material-icons.file-download:before,
1079
+ .mi.file-download:before {
1080
1080
  content: '\e2c4';
1081
1081
  }
1082
- .material-icons.mi-file-upload:before,
1083
- .mi.mi-file-upload:before {
1082
+ .material-icons.file-upload:before,
1083
+ .mi.file-upload:before {
1084
1084
  content: '\e2c6';
1085
1085
  }
1086
- .material-icons.mi-filter:before,
1087
- .mi.mi-filter:before {
1086
+ .material-icons.filter:before,
1087
+ .mi.filter:before {
1088
1088
  content: '\e3d3';
1089
1089
  }
1090
- .material-icons.mi-filter-1:before,
1091
- .mi.mi-filter-1:before {
1090
+ .material-icons.filter-1:before,
1091
+ .mi.filter-1:before {
1092
1092
  content: '\e3d0';
1093
1093
  }
1094
- .material-icons.mi-filter-2:before,
1095
- .mi.mi-filter-2:before {
1094
+ .material-icons.filter-2:before,
1095
+ .mi.filter-2:before {
1096
1096
  content: '\e3d1';
1097
1097
  }
1098
- .material-icons.mi-filter-3:before,
1099
- .mi.mi-filter-3:before {
1098
+ .material-icons.filter-3:before,
1099
+ .mi.filter-3:before {
1100
1100
  content: '\e3d2';
1101
1101
  }
1102
- .material-icons.mi-filter-4:before,
1103
- .mi.mi-filter-4:before {
1102
+ .material-icons.filter-4:before,
1103
+ .mi.filter-4:before {
1104
1104
  content: '\e3d4';
1105
1105
  }
1106
- .material-icons.mi-filter-5:before,
1107
- .mi.mi-filter-5:before {
1106
+ .material-icons.filter-5:before,
1107
+ .mi.filter-5:before {
1108
1108
  content: '\e3d5';
1109
1109
  }
1110
- .material-icons.mi-filter-6:before,
1111
- .mi.mi-filter-6:before {
1110
+ .material-icons.filter-6:before,
1111
+ .mi.filter-6:before {
1112
1112
  content: '\e3d6';
1113
1113
  }
1114
- .material-icons.mi-filter-7:before,
1115
- .mi.mi-filter-7:before {
1114
+ .material-icons.filter-7:before,
1115
+ .mi.filter-7:before {
1116
1116
  content: '\e3d7';
1117
1117
  }
1118
- .material-icons.mi-filter-8:before,
1119
- .mi.mi-filter-8:before {
1118
+ .material-icons.filter-8:before,
1119
+ .mi.filter-8:before {
1120
1120
  content: '\e3d8';
1121
1121
  }
1122
- .material-icons.mi-filter-9:before,
1123
- .mi.mi-filter-9:before {
1122
+ .material-icons.filter-9:before,
1123
+ .mi.filter-9:before {
1124
1124
  content: '\e3d9';
1125
1125
  }
1126
- .material-icons.mi-filter-9-plus:before,
1127
- .mi.mi-filter-9-plus:before {
1126
+ .material-icons.filter-9-plus:before,
1127
+ .mi.filter-9-plus:before {
1128
1128
  content: '\e3da';
1129
1129
  }
1130
- .material-icons.mi-filter-b-and-w:before,
1131
- .mi.mi-filter-b-and-w:before {
1130
+ .material-icons.filter-b-and-w:before,
1131
+ .mi.filter-b-and-w:before {
1132
1132
  content: '\e3db';
1133
1133
  }
1134
- .material-icons.mi-filter-center-focus:before,
1135
- .mi.mi-filter-center-focus:before {
1134
+ .material-icons.filter-center-focus:before,
1135
+ .mi.filter-center-focus:before {
1136
1136
  content: '\e3dc';
1137
1137
  }
1138
- .material-icons.mi-filter-drama:before,
1139
- .mi.mi-filter-drama:before {
1138
+ .material-icons.filter-drama:before,
1139
+ .mi.filter-drama:before {
1140
1140
  content: '\e3dd';
1141
1141
  }
1142
- .material-icons.mi-filter-frames:before,
1143
- .mi.mi-filter-frames:before {
1142
+ .material-icons.filter-frames:before,
1143
+ .mi.filter-frames:before {
1144
1144
  content: '\e3de';
1145
1145
  }
1146
- .material-icons.mi-filter-hdr:before,
1147
- .mi.mi-filter-hdr:before {
1146
+ .material-icons.filter-hdr:before,
1147
+ .mi.filter-hdr:before {
1148
1148
  content: '\e3df';
1149
1149
  }
1150
- .material-icons.mi-filter-list:before,
1151
- .mi.mi-filter-list:before {
1150
+ .material-icons.filter-list:before,
1151
+ .mi.filter-list:before {
1152
1152
  content: '\e152';
1153
1153
  }
1154
- .material-icons.mi-filter-none:before,
1155
- .mi.mi-filter-none:before {
1154
+ .material-icons.filter-none:before,
1155
+ .mi.filter-none:before {
1156
1156
  content: '\e3e0';
1157
1157
  }
1158
- .material-icons.mi-filter-tilt-shift:before,
1159
- .mi.mi-filter-tilt-shift:before {
1158
+ .material-icons.filter-tilt-shift:before,
1159
+ .mi.filter-tilt-shift:before {
1160
1160
  content: '\e3e2';
1161
1161
  }
1162
- .material-icons.mi-filter-vintage:before,
1163
- .mi.mi-filter-vintage:before {
1162
+ .material-icons.filter-vintage:before,
1163
+ .mi.filter-vintage:before {
1164
1164
  content: '\e3e3';
1165
1165
  }
1166
- .material-icons.mi-find-in-page:before,
1167
- .mi.mi-find-in-page:before {
1166
+ .material-icons.find-in-page:before,
1167
+ .mi.find-in-page:before {
1168
1168
  content: '\e880';
1169
1169
  }
1170
- .material-icons.mi-find-replace:before,
1171
- .mi.mi-find-replace:before {
1170
+ .material-icons.find-replace:before,
1171
+ .mi.find-replace:before {
1172
1172
  content: '\e881';
1173
1173
  }
1174
- .material-icons.mi-flag:before,
1175
- .mi.mi-flag:before {
1174
+ .material-icons.flag:before,
1175
+ .mi.flag:before {
1176
1176
  content: '\e153';
1177
1177
  }
1178
- .material-icons.mi-flare:before,
1179
- .mi.mi-flare:before {
1178
+ .material-icons.flare:before,
1179
+ .mi.flare:before {
1180
1180
  content: '\e3e4';
1181
1181
  }
1182
- .material-icons.mi-flash-auto:before,
1183
- .mi.mi-flash-auto:before {
1182
+ .material-icons.flash-auto:before,
1183
+ .mi.flash-auto:before {
1184
1184
  content: '\e3e5';
1185
1185
  }
1186
- .material-icons.mi-flash-off:before,
1187
- .mi.mi-flash-off:before {
1186
+ .material-icons.flash-off:before,
1187
+ .mi.flash-off:before {
1188
1188
  content: '\e3e6';
1189
1189
  }
1190
- .material-icons.mi-flash-on:before,
1191
- .mi.mi-flash-on:before {
1190
+ .material-icons.flash-on:before,
1191
+ .mi.flash-on:before {
1192
1192
  content: '\e3e7';
1193
1193
  }
1194
- .material-icons.mi-flight:before,
1195
- .mi.mi-flight:before {
1194
+ .material-icons.flight:before,
1195
+ .mi.flight:before {
1196
1196
  content: '\e539';
1197
1197
  }
1198
- .material-icons.mi-flight-land:before,
1199
- .mi.mi-flight-land:before {
1198
+ .material-icons.flight-land:before,
1199
+ .mi.flight-land:before {
1200
1200
  content: '\e904';
1201
1201
  }
1202
- .material-icons.mi-flight-takeoff:before,
1203
- .mi.mi-flight-takeoff:before {
1202
+ .material-icons.flight-takeoff:before,
1203
+ .mi.flight-takeoff:before {
1204
1204
  content: '\e905';
1205
1205
  }
1206
- .material-icons.mi-flip:before,
1207
- .mi.mi-flip:before {
1206
+ .material-icons.flip:before,
1207
+ .mi.flip:before {
1208
1208
  content: '\e3e8';
1209
1209
  }
1210
- .material-icons.mi-flip-to-back:before,
1211
- .mi.mi-flip-to-back:before {
1210
+ .material-icons.flip-to-back:before,
1211
+ .mi.flip-to-back:before {
1212
1212
  content: '\e882';
1213
1213
  }
1214
- .material-icons.mi-flip-to-front:before,
1215
- .mi.mi-flip-to-front:before {
1214
+ .material-icons.flip-to-front:before,
1215
+ .mi.flip-to-front:before {
1216
1216
  content: '\e883';
1217
1217
  }
1218
- .material-icons.mi-folder:before,
1219
- .mi.mi-folder:before {
1218
+ .material-icons.folder:before,
1219
+ .mi.folder:before {
1220
1220
  content: '\e2c7';
1221
1221
  }
1222
- .material-icons.mi-folder-open:before,
1223
- .mi.mi-folder-open:before {
1222
+ .material-icons.folder-open:before,
1223
+ .mi.folder-open:before {
1224
1224
  content: '\e2c8';
1225
1225
  }
1226
- .material-icons.mi-folder-shared:before,
1227
- .mi.mi-folder-shared:before {
1226
+ .material-icons.folder-shared:before,
1227
+ .mi.folder-shared:before {
1228
1228
  content: '\e2c9';
1229
1229
  }
1230
- .material-icons.mi-folder-special:before,
1231
- .mi.mi-folder-special:before {
1230
+ .material-icons.folder-special:before,
1231
+ .mi.folder-special:before {
1232
1232
  content: '\e617';
1233
1233
  }
1234
- .material-icons.mi-font-download:before,
1235
- .mi.mi-font-download:before {
1234
+ .material-icons.font-download:before,
1235
+ .mi.font-download:before {
1236
1236
  content: '\e167';
1237
1237
  }
1238
- .material-icons.mi-format-align-center:before,
1239
- .mi.mi-format-align-center:before {
1238
+ .material-icons.format-align-center:before,
1239
+ .mi.format-align-center:before {
1240
1240
  content: '\e234';
1241
1241
  }
1242
- .material-icons.mi-format-align-justify:before,
1243
- .mi.mi-format-align-justify:before {
1242
+ .material-icons.format-align-justify:before,
1243
+ .mi.format-align-justify:before {
1244
1244
  content: '\e235';
1245
1245
  }
1246
- .material-icons.mi-format-align-left:before,
1247
- .mi.mi-format-align-left:before {
1246
+ .material-icons.format-align-left:before,
1247
+ .mi.format-align-left:before {
1248
1248
  content: '\e236';
1249
1249
  }
1250
- .material-icons.mi-format-align-right:before,
1251
- .mi.mi-format-align-right:before {
1250
+ .material-icons.format-align-right:before,
1251
+ .mi.format-align-right:before {
1252
1252
  content: '\e237';
1253
1253
  }
1254
- .material-icons.mi-format-bold:before,
1255
- .mi.mi-format-bold:before {
1254
+ .material-icons.format-bold:before,
1255
+ .mi.format-bold:before {
1256
1256
  content: '\e238';
1257
1257
  }
1258
- .material-icons.mi-format-clear:before,
1259
- .mi.mi-format-clear:before {
1258
+ .material-icons.format-clear:before,
1259
+ .mi.format-clear:before {
1260
1260
  content: '\e239';
1261
1261
  }
1262
- .material-icons.mi-format-color-fill:before,
1263
- .mi.mi-format-color-fill:before {
1262
+ .material-icons.format-color-fill:before,
1263
+ .mi.format-color-fill:before {
1264
1264
  content: '\e23a';
1265
1265
  }
1266
- .material-icons.mi-format-color-reset:before,
1267
- .mi.mi-format-color-reset:before {
1266
+ .material-icons.format-color-reset:before,
1267
+ .mi.format-color-reset:before {
1268
1268
  content: '\e23b';
1269
1269
  }
1270
- .material-icons.mi-format-color-text:before,
1271
- .mi.mi-format-color-text:before {
1270
+ .material-icons.format-color-text:before,
1271
+ .mi.format-color-text:before {
1272
1272
  content: '\e23c';
1273
1273
  }
1274
- .material-icons.mi-format-indent-decrease:before,
1275
- .mi.mi-format-indent-decrease:before {
1274
+ .material-icons.format-indent-decrease:before,
1275
+ .mi.format-indent-decrease:before {
1276
1276
  content: '\e23d';
1277
1277
  }
1278
- .material-icons.mi-format-indent-increase:before,
1279
- .mi.mi-format-indent-increase:before {
1278
+ .material-icons.format-indent-increase:before,
1279
+ .mi.format-indent-increase:before {
1280
1280
  content: '\e23e';
1281
1281
  }
1282
- .material-icons.mi-format-italic:before,
1283
- .mi.mi-format-italic:before {
1282
+ .material-icons.format-italic:before,
1283
+ .mi.format-italic:before {
1284
1284
  content: '\e23f';
1285
1285
  }
1286
- .material-icons.mi-format-line-spacing:before,
1287
- .mi.mi-format-line-spacing:before {
1286
+ .material-icons.format-line-spacing:before,
1287
+ .mi.format-line-spacing:before {
1288
1288
  content: '\e240';
1289
1289
  }
1290
- .material-icons.mi-format-list-bulleted:before,
1291
- .mi.mi-format-list-bulleted:before {
1290
+ .material-icons.format-list-bulleted:before,
1291
+ .mi.format-list-bulleted:before {
1292
1292
  content: '\e241';
1293
1293
  }
1294
- .material-icons.mi-format-list-numbered:before,
1295
- .mi.mi-format-list-numbered:before {
1294
+ .material-icons.format-list-numbered:before,
1295
+ .mi.format-list-numbered:before {
1296
1296
  content: '\e242';
1297
1297
  }
1298
- .material-icons.mi-format-paint:before,
1299
- .mi.mi-format-paint:before {
1298
+ .material-icons.format-paint:before,
1299
+ .mi.format-paint:before {
1300
1300
  content: '\e243';
1301
1301
  }
1302
- .material-icons.mi-format-quote:before,
1303
- .mi.mi-format-quote:before {
1302
+ .material-icons.format-quote:before,
1303
+ .mi.format-quote:before {
1304
1304
  content: '\e244';
1305
1305
  }
1306
- .material-icons.mi-format-size:before,
1307
- .mi.mi-format-size:before {
1306
+ .material-icons.format-size:before,
1307
+ .mi.format-size:before {
1308
1308
  content: '\e245';
1309
1309
  }
1310
- .material-icons.mi-format-strikethrough:before,
1311
- .mi.mi-format-strikethrough:before {
1310
+ .material-icons.format-strikethrough:before,
1311
+ .mi.format-strikethrough:before {
1312
1312
  content: '\e246';
1313
1313
  }
1314
- .material-icons.mi-format-textdirection-l-to-r:before,
1315
- .mi.mi-format-textdirection-l-to-r:before {
1314
+ .material-icons.format-textdirection-l-to-r:before,
1315
+ .mi.format-textdirection-l-to-r:before {
1316
1316
  content: '\e247';
1317
1317
  }
1318
- .material-icons.mi-format-textdirection-r-to-l:before,
1319
- .mi.mi-format-textdirection-r-to-l:before {
1318
+ .material-icons.format-textdirection-r-to-l:before,
1319
+ .mi.format-textdirection-r-to-l:before {
1320
1320
  content: '\e248';
1321
1321
  }
1322
- .material-icons.mi-format-underlined:before,
1323
- .mi.mi-format-underlined:before {
1322
+ .material-icons.format-underlined:before,
1323
+ .mi.format-underlined:before {
1324
1324
  content: '\e249';
1325
1325
  }
1326
- .material-icons.mi-forum:before,
1327
- .mi.mi-forum:before {
1326
+ .material-icons.forum:before,
1327
+ .mi.forum:before {
1328
1328
  content: '\e0bf';
1329
1329
  }
1330
- .material-icons.mi-forward:before,
1331
- .mi.mi-forward:before {
1330
+ .material-icons.forward:before,
1331
+ .mi.forward:before {
1332
1332
  content: '\e154';
1333
1333
  }
1334
- .material-icons.mi-forward-10:before,
1335
- .mi.mi-forward-10:before {
1334
+ .material-icons.forward-10:before,
1335
+ .mi.forward-10:before {
1336
1336
  content: '\e056';
1337
1337
  }
1338
- .material-icons.mi-forward-30:before,
1339
- .mi.mi-forward-30:before {
1338
+ .material-icons.forward-30:before,
1339
+ .mi.forward-30:before {
1340
1340
  content: '\e057';
1341
1341
  }
1342
- .material-icons.mi-forward-5:before,
1343
- .mi.mi-forward-5:before {
1342
+ .material-icons.forward-5:before,
1343
+ .mi.forward-5:before {
1344
1344
  content: '\e058';
1345
1345
  }
1346
- .material-icons.mi-fullscreen:before,
1347
- .mi.mi-fullscreen:before {
1346
+ .material-icons.fullscreen:before,
1347
+ .mi.fullscreen:before {
1348
1348
  content: '\e5d0';
1349
1349
  }
1350
- .material-icons.mi-fullscreen-exit:before,
1351
- .mi.mi-fullscreen-exit:before {
1350
+ .material-icons.fullscreen-exit:before,
1351
+ .mi.fullscreen-exit:before {
1352
1352
  content: '\e5d1';
1353
1353
  }
1354
- .material-icons.mi-functions:before,
1355
- .mi.mi-functions:before {
1354
+ .material-icons.functions:before,
1355
+ .mi.functions:before {
1356
1356
  content: '\e24a';
1357
1357
  }
1358
- .material-icons.mi-gamepad:before,
1359
- .mi.mi-gamepad:before {
1358
+ .material-icons.gamepad:before,
1359
+ .mi.gamepad:before {
1360
1360
  content: '\e30f';
1361
1361
  }
1362
- .material-icons.mi-games:before,
1363
- .mi.mi-games:before {
1362
+ .material-icons.games:before,
1363
+ .mi.games:before {
1364
1364
  content: '\e021';
1365
1365
  }
1366
- .material-icons.mi-gesture:before,
1367
- .mi.mi-gesture:before {
1366
+ .material-icons.gesture:before,
1367
+ .mi.gesture:before {
1368
1368
  content: '\e155';
1369
1369
  }
1370
- .material-icons.mi-get-app:before,
1371
- .mi.mi-get-app:before {
1370
+ .material-icons.get-app:before,
1371
+ .mi.get-app:before {
1372
1372
  content: '\e884';
1373
1373
  }
1374
- .material-icons.mi-gif:before,
1375
- .mi.mi-gif:before {
1374
+ .material-icons.gif:before,
1375
+ .mi.gif:before {
1376
1376
  content: '\e908';
1377
1377
  }
1378
- .material-icons.mi-gps-fixed:before,
1379
- .mi.mi-gps-fixed:before {
1378
+ .material-icons.gps-fixed:before,
1379
+ .mi.gps-fixed:before {
1380
1380
  content: '\e1b3';
1381
1381
  }
1382
- .material-icons.mi-gps-not-fixed:before,
1383
- .mi.mi-gps-not-fixed:before {
1382
+ .material-icons.gps-not-fixed:before,
1383
+ .mi.gps-not-fixed:before {
1384
1384
  content: '\e1b4';
1385
1385
  }
1386
- .material-icons.mi-gps-off:before,
1387
- .mi.mi-gps-off:before {
1386
+ .material-icons.gps-off:before,
1387
+ .mi.gps-off:before {
1388
1388
  content: '\e1b5';
1389
1389
  }
1390
- .material-icons.mi-grade:before,
1391
- .mi.mi-grade:before {
1390
+ .material-icons.grade:before,
1391
+ .mi.grade:before {
1392
1392
  content: '\e885';
1393
1393
  }
1394
- .material-icons.mi-gradient:before,
1395
- .mi.mi-gradient:before {
1394
+ .material-icons.gradient:before,
1395
+ .mi.gradient:before {
1396
1396
  content: '\e3e9';
1397
1397
  }
1398
- .material-icons.mi-grain:before,
1399
- .mi.mi-grain:before {
1398
+ .material-icons.grain:before,
1399
+ .mi.grain:before {
1400
1400
  content: '\e3ea';
1401
1401
  }
1402
- .material-icons.mi-graphic-eq:before,
1403
- .mi.mi-graphic-eq:before {
1402
+ .material-icons.graphic-eq:before,
1403
+ .mi.graphic-eq:before {
1404
1404
  content: '\e1b8';
1405
1405
  }
1406
- .material-icons.mi-grid-off:before,
1407
- .mi.mi-grid-off:before {
1406
+ .material-icons.grid-off:before,
1407
+ .mi.grid-off:before {
1408
1408
  content: '\e3eb';
1409
1409
  }
1410
- .material-icons.mi-grid-on:before,
1411
- .mi.mi-grid-on:before {
1410
+ .material-icons.grid-on:before,
1411
+ .mi.grid-on:before {
1412
1412
  content: '\e3ec';
1413
1413
  }
1414
- .material-icons.mi-group:before,
1415
- .mi.mi-group:before {
1414
+ .material-icons.group:before,
1415
+ .mi.group:before {
1416
1416
  content: '\e7ef';
1417
1417
  }
1418
- .material-icons.mi-group-add:before,
1419
- .mi.mi-group-add:before {
1418
+ .material-icons.group-add:before,
1419
+ .mi.group-add:before {
1420
1420
  content: '\e7f0';
1421
1421
  }
1422
- .material-icons.mi-group-work:before,
1423
- .mi.mi-group-work:before {
1422
+ .material-icons.group-work:before,
1423
+ .mi.group-work:before {
1424
1424
  content: '\e886';
1425
1425
  }
1426
- .material-icons.mi-hd:before,
1427
- .mi.mi-hd:before {
1426
+ .material-icons.hd:before,
1427
+ .mi.hd:before {
1428
1428
  content: '\e052';
1429
1429
  }
1430
- .material-icons.mi-hdr-off:before,
1431
- .mi.mi-hdr-off:before {
1430
+ .material-icons.hdr-off:before,
1431
+ .mi.hdr-off:before {
1432
1432
  content: '\e3ed';
1433
1433
  }
1434
- .material-icons.mi-hdr-on:before,
1435
- .mi.mi-hdr-on:before {
1434
+ .material-icons.hdr-on:before,
1435
+ .mi.hdr-on:before {
1436
1436
  content: '\e3ee';
1437
1437
  }
1438
- .material-icons.mi-hdr-strong:before,
1439
- .mi.mi-hdr-strong:before {
1438
+ .material-icons.hdr-strong:before,
1439
+ .mi.hdr-strong:before {
1440
1440
  content: '\e3f1';
1441
1441
  }
1442
- .material-icons.mi-hdr-weak:before,
1443
- .mi.mi-hdr-weak:before {
1442
+ .material-icons.hdr-weak:before,
1443
+ .mi.hdr-weak:before {
1444
1444
  content: '\e3f2';
1445
1445
  }
1446
- .material-icons.mi-headset:before,
1447
- .mi.mi-headset:before {
1446
+ .material-icons.headset:before,
1447
+ .mi.headset:before {
1448
1448
  content: '\e310';
1449
1449
  }
1450
- .material-icons.mi-headset-mic:before,
1451
- .mi.mi-headset-mic:before {
1450
+ .material-icons.headset-mic:before,
1451
+ .mi.headset-mic:before {
1452
1452
  content: '\e311';
1453
1453
  }
1454
- .material-icons.mi-healing:before,
1455
- .mi.mi-healing:before {
1454
+ .material-icons.healing:before,
1455
+ .mi.healing:before {
1456
1456
  content: '\e3f3';
1457
1457
  }
1458
- .material-icons.mi-hearing:before,
1459
- .mi.mi-hearing:before {
1458
+ .material-icons.hearing:before,
1459
+ .mi.hearing:before {
1460
1460
  content: '\e023';
1461
1461
  }
1462
- .material-icons.mi-help:before,
1463
- .mi.mi-help:before {
1462
+ .material-icons.help:before,
1463
+ .mi.help:before {
1464
1464
  content: '\e887';
1465
1465
  }
1466
- .material-icons.mi-help-outline:before,
1467
- .mi.mi-help-outline:before {
1466
+ .material-icons.help-outline:before,
1467
+ .mi.help-outline:before {
1468
1468
  content: '\e8fd';
1469
1469
  }
1470
- .material-icons.mi-high-quality:before,
1471
- .mi.mi-high-quality:before {
1470
+ .material-icons.high-quality:before,
1471
+ .mi.high-quality:before {
1472
1472
  content: '\e024';
1473
1473
  }
1474
- .material-icons.mi-highlight-off:before,
1475
- .mi.mi-highlight-off:before {
1474
+ .material-icons.highlight-off:before,
1475
+ .mi.highlight-off:before {
1476
1476
  content: '\e888';
1477
1477
  }
1478
- .material-icons.mi-history:before,
1479
- .mi.mi-history:before {
1478
+ .material-icons.history:before,
1479
+ .mi.history:before {
1480
1480
  content: '\e889';
1481
1481
  }
1482
- .material-icons.mi-home:before,
1483
- .mi.mi-home:before {
1482
+ .material-icons.home:before,
1483
+ .mi.home:before {
1484
1484
  content: '\e88a';
1485
1485
  }
1486
- .material-icons.mi-hotel:before,
1487
- .mi.mi-hotel:before {
1486
+ .material-icons.hotel:before,
1487
+ .mi.hotel:before {
1488
1488
  content: '\e53a';
1489
1489
  }
1490
- .material-icons.mi-hourglass-empty:before,
1491
- .mi.mi-hourglass-empty:before {
1490
+ .material-icons.hourglass-empty:before,
1491
+ .mi.hourglass-empty:before {
1492
1492
  content: '\e88b';
1493
1493
  }
1494
- .material-icons.mi-hourglass-full:before,
1495
- .mi.mi-hourglass-full:before {
1494
+ .material-icons.hourglass-full:before,
1495
+ .mi.hourglass-full:before {
1496
1496
  content: '\e88c';
1497
1497
  }
1498
- .material-icons.mi-http:before,
1499
- .mi.mi-http:before {
1498
+ .material-icons.http:before,
1499
+ .mi.http:before {
1500
1500
  content: '\e902';
1501
1501
  }
1502
- .material-icons.mi-https:before,
1503
- .mi.mi-https:before {
1502
+ .material-icons.https:before,
1503
+ .mi.https:before {
1504
1504
  content: '\e88d';
1505
1505
  }
1506
- .material-icons.mi-image:before,
1507
- .mi.mi-image:before {
1506
+ .material-icons.image:before,
1507
+ .mi.image:before {
1508
1508
  content: '\e3f4';
1509
1509
  }
1510
- .material-icons.mi-image-aspect-ratio:before,
1511
- .mi.mi-image-aspect-ratio:before {
1510
+ .material-icons.image-aspect-ratio:before,
1511
+ .mi.image-aspect-ratio:before {
1512
1512
  content: '\e3f5';
1513
1513
  }
1514
- .material-icons.mi-import-export:before,
1515
- .mi.mi-import-export:before {
1514
+ .material-icons.import-export:before,
1515
+ .mi.import-export:before {
1516
1516
  content: '\e0c3';
1517
1517
  }
1518
- .material-icons.mi-inbox:before,
1519
- .mi.mi-inbox:before {
1518
+ .material-icons.inbox:before,
1519
+ .mi.inbox:before {
1520
1520
  content: '\e156';
1521
1521
  }
1522
- .material-icons.mi-indeterminate-check-box:before,
1523
- .mi.mi-indeterminate-check-box:before {
1522
+ .material-icons.indeterminate-check-box:before,
1523
+ .mi.indeterminate-check-box:before {
1524
1524
  content: '\e909';
1525
1525
  }
1526
- .material-icons.mi-info:before,
1527
- .mi.mi-info:before {
1526
+ .material-icons.info:before,
1527
+ .mi.info:before {
1528
1528
  content: '\e88e';
1529
1529
  }
1530
- .material-icons.mi-info-outline:before,
1531
- .mi.mi-info-outline:before {
1530
+ .material-icons.info-outline:before,
1531
+ .mi.info-outline:before {
1532
1532
  content: '\e88f';
1533
1533
  }
1534
- .material-icons.mi-input:before,
1535
- .mi.mi-input:before {
1534
+ .material-icons.input:before,
1535
+ .mi.input:before {
1536
1536
  content: '\e890';
1537
1537
  }
1538
- .material-icons.mi-insert-chart:before,
1539
- .mi.mi-insert-chart:before {
1538
+ .material-icons.insert-chart:before,
1539
+ .mi.insert-chart:before {
1540
1540
  content: '\e24b';
1541
1541
  }
1542
- .material-icons.mi-insert-comment:before,
1543
- .mi.mi-insert-comment:before {
1542
+ .material-icons.insert-comment:before,
1543
+ .mi.insert-comment:before {
1544
1544
  content: '\e24c';
1545
1545
  }
1546
- .material-icons.mi-insert-drive-file:before,
1547
- .mi.mi-insert-drive-file:before {
1546
+ .material-icons.insert-drive-file:before,
1547
+ .mi.insert-drive-file:before {
1548
1548
  content: '\e24d';
1549
1549
  }
1550
- .material-icons.mi-insert-emoticon:before,
1551
- .mi.mi-insert-emoticon:before {
1550
+ .material-icons.insert-emoticon:before,
1551
+ .mi.insert-emoticon:before {
1552
1552
  content: '\e24e';
1553
1553
  }
1554
- .material-icons.mi-insert-invitation:before,
1555
- .mi.mi-insert-invitation:before {
1554
+ .material-icons.insert-invitation:before,
1555
+ .mi.insert-invitation:before {
1556
1556
  content: '\e24f';
1557
1557
  }
1558
- .material-icons.mi-insert-link:before,
1559
- .mi.mi-insert-link:before {
1558
+ .material-icons.insert-link:before,
1559
+ .mi.insert-link:before {
1560
1560
  content: '\e250';
1561
1561
  }
1562
- .material-icons.mi-insert-photo:before,
1563
- .mi.mi-insert-photo:before {
1562
+ .material-icons.insert-photo:before,
1563
+ .mi.insert-photo:before {
1564
1564
  content: '\e251';
1565
1565
  }
1566
- .material-icons.mi-invert-colors:before,
1567
- .mi.mi-invert-colors:before {
1566
+ .material-icons.invert-colors:before,
1567
+ .mi.invert-colors:before {
1568
1568
  content: '\e891';
1569
1569
  }
1570
- .material-icons.mi-invert-colors-off:before,
1571
- .mi.mi-invert-colors-off:before {
1570
+ .material-icons.invert-colors-off:before,
1571
+ .mi.invert-colors-off:before {
1572
1572
  content: '\e0c4';
1573
1573
  }
1574
- .material-icons.mi-iso:before,
1575
- .mi.mi-iso:before {
1574
+ .material-icons.iso:before,
1575
+ .mi.iso:before {
1576
1576
  content: '\e3f6';
1577
1577
  }
1578
- .material-icons.mi-keyboard:before,
1579
- .mi.mi-keyboard:before {
1578
+ .material-icons.keyboard:before,
1579
+ .mi.keyboard:before {
1580
1580
  content: '\e312';
1581
1581
  }
1582
- .material-icons.mi-keyboard-arrow-down:before,
1583
- .mi.mi-keyboard-arrow-down:before {
1582
+ .material-icons.keyboard-arrow-down:before,
1583
+ .mi.keyboard-arrow-down:before {
1584
1584
  content: '\e313';
1585
1585
  }
1586
- .material-icons.mi-keyboard-arrow-left:before,
1587
- .mi.mi-keyboard-arrow-left:before {
1586
+ .material-icons.keyboard-arrow-left:before,
1587
+ .mi.keyboard-arrow-left:before {
1588
1588
  content: '\e314';
1589
1589
  }
1590
- .material-icons.mi-keyboard-arrow-right:before,
1591
- .mi.mi-keyboard-arrow-right:before {
1590
+ .material-icons.keyboard-arrow-right:before,
1591
+ .mi.keyboard-arrow-right:before {
1592
1592
  content: '\e315';
1593
1593
  }
1594
- .material-icons.mi-keyboard-arrow-up:before,
1595
- .mi.mi-keyboard-arrow-up:before {
1594
+ .material-icons.keyboard-arrow-up:before,
1595
+ .mi.keyboard-arrow-up:before {
1596
1596
  content: '\e316';
1597
1597
  }
1598
- .material-icons.mi-keyboard-backspace:before,
1599
- .mi.mi-keyboard-backspace:before {
1598
+ .material-icons.keyboard-backspace:before,
1599
+ .mi.keyboard-backspace:before {
1600
1600
  content: '\e317';
1601
1601
  }
1602
- .material-icons.mi-keyboard-capslock:before,
1603
- .mi.mi-keyboard-capslock:before {
1602
+ .material-icons.keyboard-capslock:before,
1603
+ .mi.keyboard-capslock:before {
1604
1604
  content: '\e318';
1605
1605
  }
1606
- .material-icons.mi-keyboard-hide:before,
1607
- .mi.mi-keyboard-hide:before {
1606
+ .material-icons.keyboard-hide:before,
1607
+ .mi.keyboard-hide:before {
1608
1608
  content: '\e31a';
1609
1609
  }
1610
- .material-icons.mi-keyboard-return:before,
1611
- .mi.mi-keyboard-return:before {
1610
+ .material-icons.keyboard-return:before,
1611
+ .mi.keyboard-return:before {
1612
1612
  content: '\e31b';
1613
1613
  }
1614
- .material-icons.mi-keyboard-tab:before,
1615
- .mi.mi-keyboard-tab:before {
1614
+ .material-icons.keyboard-tab:before,
1615
+ .mi.keyboard-tab:before {
1616
1616
  content: '\e31c';
1617
1617
  }
1618
- .material-icons.mi-keyboard-voice:before,
1619
- .mi.mi-keyboard-voice:before {
1618
+ .material-icons.keyboard-voice:before,
1619
+ .mi.keyboard-voice:before {
1620
1620
  content: '\e31d';
1621
1621
  }
1622
- .material-icons.mi-label:before,
1623
- .mi.mi-label:before {
1622
+ .material-icons.label:before,
1623
+ .mi.label:before {
1624
1624
  content: '\e892';
1625
1625
  }
1626
- .material-icons.mi-label-outline:before,
1627
- .mi.mi-label-outline:before {
1626
+ .material-icons.label-outline:before,
1627
+ .mi.label-outline:before {
1628
1628
  content: '\e893';
1629
1629
  }
1630
- .material-icons.mi-landscape:before,
1631
- .mi.mi-landscape:before {
1630
+ .material-icons.landscape:before,
1631
+ .mi.landscape:before {
1632
1632
  content: '\e3f7';
1633
1633
  }
1634
- .material-icons.mi-language:before,
1635
- .mi.mi-language:before {
1634
+ .material-icons.language:before,
1635
+ .mi.language:before {
1636
1636
  content: '\e894';
1637
1637
  }
1638
- .material-icons.mi-laptop:before,
1639
- .mi.mi-laptop:before {
1638
+ .material-icons.laptop:before,
1639
+ .mi.laptop:before {
1640
1640
  content: '\e31e';
1641
1641
  }
1642
- .material-icons.mi-laptop-chromebook:before,
1643
- .mi.mi-laptop-chromebook:before {
1642
+ .material-icons.laptop-chromebook:before,
1643
+ .mi.laptop-chromebook:before {
1644
1644
  content: '\e31f';
1645
1645
  }
1646
- .material-icons.mi-laptop-mac:before,
1647
- .mi.mi-laptop-mac:before {
1646
+ .material-icons.laptop-mac:before,
1647
+ .mi.laptop-mac:before {
1648
1648
  content: '\e320';
1649
1649
  }
1650
- .material-icons.mi-laptop-windows:before,
1651
- .mi.mi-laptop-windows:before {
1650
+ .material-icons.laptop-windows:before,
1651
+ .mi.laptop-windows:before {
1652
1652
  content: '\e321';
1653
1653
  }
1654
- .material-icons.mi-launch:before,
1655
- .mi.mi-launch:before {
1654
+ .material-icons.launch:before,
1655
+ .mi.launch:before {
1656
1656
  content: '\e895';
1657
1657
  }
1658
- .material-icons.mi-layers:before,
1659
- .mi.mi-layers:before {
1658
+ .material-icons.layers:before,
1659
+ .mi.layers:before {
1660
1660
  content: '\e53b';
1661
1661
  }
1662
- .material-icons.mi-layers-clear:before,
1663
- .mi.mi-layers-clear:before {
1662
+ .material-icons.layers-clear:before,
1663
+ .mi.layers-clear:before {
1664
1664
  content: '\e53c';
1665
1665
  }
1666
- .material-icons.mi-leak-add:before,
1667
- .mi.mi-leak-add:before {
1666
+ .material-icons.leak-add:before,
1667
+ .mi.leak-add:before {
1668
1668
  content: '\e3f8';
1669
1669
  }
1670
- .material-icons.mi-leak-remove:before,
1671
- .mi.mi-leak-remove:before {
1670
+ .material-icons.leak-remove:before,
1671
+ .mi.leak-remove:before {
1672
1672
  content: '\e3f9';
1673
1673
  }
1674
- .material-icons.mi-lens:before,
1675
- .mi.mi-lens:before {
1674
+ .material-icons.lens:before,
1675
+ .mi.lens:before {
1676
1676
  content: '\e3fa';
1677
1677
  }
1678
- .material-icons.mi-library-add:before,
1679
- .mi.mi-library-add:before {
1678
+ .material-icons.library-add:before,
1679
+ .mi.library-add:before {
1680
1680
  content: '\e02e';
1681
1681
  }
1682
- .material-icons.mi-library-books:before,
1683
- .mi.mi-library-books:before {
1682
+ .material-icons.library-books:before,
1683
+ .mi.library-books:before {
1684
1684
  content: '\e02f';
1685
1685
  }
1686
- .material-icons.mi-library-music:before,
1687
- .mi.mi-library-music:before {
1686
+ .material-icons.library-music:before,
1687
+ .mi.library-music:before {
1688
1688
  content: '\e030';
1689
1689
  }
1690
- .material-icons.mi-link:before,
1691
- .mi.mi-link:before {
1690
+ .material-icons.link:before,
1691
+ .mi.link:before {
1692
1692
  content: '\e157';
1693
1693
  }
1694
- .material-icons.mi-list:before,
1695
- .mi.mi-list:before {
1694
+ .material-icons.list:before,
1695
+ .mi.list:before {
1696
1696
  content: '\e896';
1697
1697
  }
1698
- .material-icons.mi-live-help:before,
1699
- .mi.mi-live-help:before {
1698
+ .material-icons.live-help:before,
1699
+ .mi.live-help:before {
1700
1700
  content: '\e0c6';
1701
1701
  }
1702
- .material-icons.mi-live-tv:before,
1703
- .mi.mi-live-tv:before {
1702
+ .material-icons.live-tv:before,
1703
+ .mi.live-tv:before {
1704
1704
  content: '\e639';
1705
1705
  }
1706
- .material-icons.mi-local-activity:before,
1707
- .mi.mi-local-activity:before {
1706
+ .material-icons.local-activity:before,
1707
+ .mi.local-activity:before {
1708
1708
  content: '\e53f';
1709
1709
  }
1710
- .material-icons.mi-local-airport:before,
1711
- .mi.mi-local-airport:before {
1710
+ .material-icons.local-airport:before,
1711
+ .mi.local-airport:before {
1712
1712
  content: '\e53d';
1713
1713
  }
1714
- .material-icons.mi-local-atm:before,
1715
- .mi.mi-local-atm:before {
1714
+ .material-icons.local-atm:before,
1715
+ .mi.local-atm:before {
1716
1716
  content: '\e53e';
1717
1717
  }
1718
- .material-icons.mi-local-bar:before,
1719
- .mi.mi-local-bar:before {
1718
+ .material-icons.local-bar:before,
1719
+ .mi.local-bar:before {
1720
1720
  content: '\e540';
1721
1721
  }
1722
- .material-icons.mi-local-cafe:before,
1723
- .mi.mi-local-cafe:before {
1722
+ .material-icons.local-cafe:before,
1723
+ .mi.local-cafe:before {
1724
1724
  content: '\e541';
1725
1725
  }
1726
- .material-icons.mi-local-car-wash:before,
1727
- .mi.mi-local-car-wash:before {
1726
+ .material-icons.local-car-wash:before,
1727
+ .mi.local-car-wash:before {
1728
1728
  content: '\e542';
1729
1729
  }
1730
- .material-icons.mi-local-convenience-store:before,
1731
- .mi.mi-local-convenience-store:before {
1730
+ .material-icons.local-convenience-store:before,
1731
+ .mi.local-convenience-store:before {
1732
1732
  content: '\e543';
1733
1733
  }
1734
- .material-icons.mi-local-dining:before,
1735
- .mi.mi-local-dining:before {
1734
+ .material-icons.local-dining:before,
1735
+ .mi.local-dining:before {
1736
1736
  content: '\e556';
1737
1737
  }
1738
- .material-icons.mi-local-drink:before,
1739
- .mi.mi-local-drink:before {
1738
+ .material-icons.local-drink:before,
1739
+ .mi.local-drink:before {
1740
1740
  content: '\e544';
1741
1741
  }
1742
- .material-icons.mi-local-florist:before,
1743
- .mi.mi-local-florist:before {
1742
+ .material-icons.local-florist:before,
1743
+ .mi.local-florist:before {
1744
1744
  content: '\e545';
1745
1745
  }
1746
- .material-icons.mi-local-gas-station:before,
1747
- .mi.mi-local-gas-station:before {
1746
+ .material-icons.local-gas-station:before,
1747
+ .mi.local-gas-station:before {
1748
1748
  content: '\e546';
1749
1749
  }
1750
- .material-icons.mi-local-grocery-store:before,
1751
- .mi.mi-local-grocery-store:before {
1750
+ .material-icons.local-grocery-store:before,
1751
+ .mi.local-grocery-store:before {
1752
1752
  content: '\e547';
1753
1753
  }
1754
- .material-icons.mi-local-hospital:before,
1755
- .mi.mi-local-hospital:before {
1754
+ .material-icons.local-hospital:before,
1755
+ .mi.local-hospital:before {
1756
1756
  content: '\e548';
1757
1757
  }
1758
- .material-icons.mi-local-hotel:before,
1759
- .mi.mi-local-hotel:before {
1758
+ .material-icons.local-hotel:before,
1759
+ .mi.local-hotel:before {
1760
1760
  content: '\e549';
1761
1761
  }
1762
- .material-icons.mi-local-laundry-service:before,
1763
- .mi.mi-local-laundry-service:before {
1762
+ .material-icons.local-laundry-service:before,
1763
+ .mi.local-laundry-service:before {
1764
1764
  content: '\e54a';
1765
1765
  }
1766
- .material-icons.mi-local-library:before,
1767
- .mi.mi-local-library:before {
1766
+ .material-icons.local-library:before,
1767
+ .mi.local-library:before {
1768
1768
  content: '\e54b';
1769
1769
  }
1770
- .material-icons.mi-local-mall:before,
1771
- .mi.mi-local-mall:before {
1770
+ .material-icons.local-mall:before,
1771
+ .mi.local-mall:before {
1772
1772
  content: '\e54c';
1773
1773
  }
1774
- .material-icons.mi-local-movies:before,
1775
- .mi.mi-local-movies:before {
1774
+ .material-icons.local-movies:before,
1775
+ .mi.local-movies:before {
1776
1776
  content: '\e54d';
1777
1777
  }
1778
- .material-icons.mi-local-offer:before,
1779
- .mi.mi-local-offer:before {
1778
+ .material-icons.local-offer:before,
1779
+ .mi.local-offer:before {
1780
1780
  content: '\e54e';
1781
1781
  }
1782
- .material-icons.mi-local-parking:before,
1783
- .mi.mi-local-parking:before {
1782
+ .material-icons.local-parking:before,
1783
+ .mi.local-parking:before {
1784
1784
  content: '\e54f';
1785
1785
  }
1786
- .material-icons.mi-local-pharmacy:before,
1787
- .mi.mi-local-pharmacy:before {
1786
+ .material-icons.local-pharmacy:before,
1787
+ .mi.local-pharmacy:before {
1788
1788
  content: '\e550';
1789
1789
  }
1790
- .material-icons.mi-local-phone:before,
1791
- .mi.mi-local-phone:before {
1790
+ .material-icons.local-phone:before,
1791
+ .mi.local-phone:before {
1792
1792
  content: '\e551';
1793
1793
  }
1794
- .material-icons.mi-local-pizza:before,
1795
- .mi.mi-local-pizza:before {
1794
+ .material-icons.local-pizza:before,
1795
+ .mi.local-pizza:before {
1796
1796
  content: '\e552';
1797
1797
  }
1798
- .material-icons.mi-local-play:before,
1799
- .mi.mi-local-play:before {
1798
+ .material-icons.local-play:before,
1799
+ .mi.local-play:before {
1800
1800
  content: '\e553';
1801
1801
  }
1802
- .material-icons.mi-local-post-office:before,
1803
- .mi.mi-local-post-office:before {
1802
+ .material-icons.local-post-office:before,
1803
+ .mi.local-post-office:before {
1804
1804
  content: '\e554';
1805
1805
  }
1806
- .material-icons.mi-local-printshop:before,
1807
- .mi.mi-local-printshop:before {
1806
+ .material-icons.local-printshop:before,
1807
+ .mi.local-printshop:before {
1808
1808
  content: '\e555';
1809
1809
  }
1810
- .material-icons.mi-local-see:before,
1811
- .mi.mi-local-see:before {
1810
+ .material-icons.local-see:before,
1811
+ .mi.local-see:before {
1812
1812
  content: '\e557';
1813
1813
  }
1814
- .material-icons.mi-local-shipping:before,
1815
- .mi.mi-local-shipping:before {
1814
+ .material-icons.local-shipping:before,
1815
+ .mi.local-shipping:before {
1816
1816
  content: '\e558';
1817
1817
  }
1818
- .material-icons.mi-local-taxi:before,
1819
- .mi.mi-local-taxi:before {
1818
+ .material-icons.local-taxi:before,
1819
+ .mi.local-taxi:before {
1820
1820
  content: '\e559';
1821
1821
  }
1822
- .material-icons.mi-location-city:before,
1823
- .mi.mi-location-city:before {
1822
+ .material-icons.location-city:before,
1823
+ .mi.location-city:before {
1824
1824
  content: '\e7f1';
1825
1825
  }
1826
- .material-icons.mi-location-disabled:before,
1827
- .mi.mi-location-disabled:before {
1826
+ .material-icons.location-disabled:before,
1827
+ .mi.location-disabled:before {
1828
1828
  content: '\e1b6';
1829
1829
  }
1830
- .material-icons.mi-location-off:before,
1831
- .mi.mi-location-off:before {
1830
+ .material-icons.location-off:before,
1831
+ .mi.location-off:before {
1832
1832
  content: '\e0c7';
1833
1833
  }
1834
- .material-icons.mi-location-on:before,
1835
- .mi.mi-location-on:before {
1834
+ .material-icons.location-on:before,
1835
+ .mi.location-on:before {
1836
1836
  content: '\e0c8';
1837
1837
  }
1838
- .material-icons.mi-location-searching:before,
1839
- .mi.mi-location-searching:before {
1838
+ .material-icons.location-searching:before,
1839
+ .mi.location-searching:before {
1840
1840
  content: '\e1b7';
1841
1841
  }
1842
- .material-icons.mi-lock:before,
1843
- .mi.mi-lock:before {
1842
+ .material-icons.lock:before,
1843
+ .mi.lock:before {
1844
1844
  content: '\e897';
1845
1845
  }
1846
- .material-icons.mi-lock-open:before,
1847
- .mi.mi-lock-open:before {
1846
+ .material-icons.lock-open:before,
1847
+ .mi.lock-open:before {
1848
1848
  content: '\e898';
1849
1849
  }
1850
- .material-icons.mi-lock-outline:before,
1851
- .mi.mi-lock-outline:before {
1850
+ .material-icons.lock-outline:before,
1851
+ .mi.lock-outline:before {
1852
1852
  content: '\e899';
1853
1853
  }
1854
- .material-icons.mi-looks:before,
1855
- .mi.mi-looks:before {
1854
+ .material-icons.looks:before,
1855
+ .mi.looks:before {
1856
1856
  content: '\e3fc';
1857
1857
  }
1858
- .material-icons.mi-looks-3:before,
1859
- .mi.mi-looks-3:before {
1858
+ .material-icons.looks-3:before,
1859
+ .mi.looks-3:before {
1860
1860
  content: '\e3fb';
1861
1861
  }
1862
- .material-icons.mi-looks-4:before,
1863
- .mi.mi-looks-4:before {
1862
+ .material-icons.looks-4:before,
1863
+ .mi.looks-4:before {
1864
1864
  content: '\e3fd';
1865
1865
  }
1866
- .material-icons.mi-looks-5:before,
1867
- .mi.mi-looks-5:before {
1866
+ .material-icons.looks-5:before,
1867
+ .mi.looks-5:before {
1868
1868
  content: '\e3fe';
1869
1869
  }
1870
- .material-icons.mi-looks-6:before,
1871
- .mi.mi-looks-6:before {
1870
+ .material-icons.looks-6:before,
1871
+ .mi.looks-6:before {
1872
1872
  content: '\e3ff';
1873
1873
  }
1874
- .material-icons.mi-looks-one:before,
1875
- .mi.mi-looks-one:before {
1874
+ .material-icons.looks-one:before,
1875
+ .mi.looks-one:before {
1876
1876
  content: '\e400';
1877
1877
  }
1878
- .material-icons.mi-looks-two:before,
1879
- .mi.mi-looks-two:before {
1878
+ .material-icons.looks-two:before,
1879
+ .mi.looks-two:before {
1880
1880
  content: '\e401';
1881
1881
  }
1882
- .material-icons.mi-loop:before,
1883
- .mi.mi-loop:before {
1882
+ .material-icons.loop:before,
1883
+ .mi.loop:before {
1884
1884
  content: '\e028';
1885
1885
  }
1886
- .material-icons.mi-loupe:before,
1887
- .mi.mi-loupe:before {
1886
+ .material-icons.loupe:before,
1887
+ .mi.loupe:before {
1888
1888
  content: '\e402';
1889
1889
  }
1890
- .material-icons.mi-loyalty:before,
1891
- .mi.mi-loyalty:before {
1890
+ .material-icons.loyalty:before,
1891
+ .mi.loyalty:before {
1892
1892
  content: '\e89a';
1893
1893
  }
1894
- .material-icons.mi-mail:before,
1895
- .mi.mi-mail:before {
1894
+ .material-icons.mail:before,
1895
+ .mi.mail:before {
1896
1896
  content: '\e158';
1897
1897
  }
1898
- .material-icons.mi-map:before,
1899
- .mi.mi-map:before {
1898
+ .material-icons.map:before,
1899
+ .mi.map:before {
1900
1900
  content: '\e55b';
1901
1901
  }
1902
- .material-icons.mi-markunread:before,
1903
- .mi.mi-markunread:before {
1902
+ .material-icons.markunread:before,
1903
+ .mi.markunread:before {
1904
1904
  content: '\e159';
1905
1905
  }
1906
- .material-icons.mi-markunread-mailbox:before,
1907
- .mi.mi-markunread-mailbox:before {
1906
+ .material-icons.markunread-mailbox:before,
1907
+ .mi.markunread-mailbox:before {
1908
1908
  content: '\e89b';
1909
1909
  }
1910
- .material-icons.mi-memory:before,
1911
- .mi.mi-memory:before {
1910
+ .material-icons.memory:before,
1911
+ .mi.memory:before {
1912
1912
  content: '\e322';
1913
1913
  }
1914
- .material-icons.mi-menu:before,
1915
- .mi.mi-menu:before {
1914
+ .material-icons.menu:before,
1915
+ .mi.menu:before {
1916
1916
  content: '\e5d2';
1917
1917
  }
1918
- .material-icons.mi-merge-type:before,
1919
- .mi.mi-merge-type:before {
1918
+ .material-icons.merge-type:before,
1919
+ .mi.merge-type:before {
1920
1920
  content: '\e252';
1921
1921
  }
1922
- .material-icons.mi-message:before,
1923
- .mi.mi-message:before {
1922
+ .material-icons.message:before,
1923
+ .mi.message:before {
1924
1924
  content: '\e0c9';
1925
1925
  }
1926
- .material-icons.mi-mic:before,
1927
- .mi.mi-mic:before {
1926
+ .material-icons.mic:before,
1927
+ .mi.mic:before {
1928
1928
  content: '\e029';
1929
1929
  }
1930
- .material-icons.mi-mic-none:before,
1931
- .mi.mi-mic-none:before {
1930
+ .material-icons.mic-none:before,
1931
+ .mi.mic-none:before {
1932
1932
  content: '\e02a';
1933
1933
  }
1934
- .material-icons.mi-mic-off:before,
1935
- .mi.mi-mic-off:before {
1934
+ .material-icons.mic-off:before,
1935
+ .mi.mic-off:before {
1936
1936
  content: '\e02b';
1937
1937
  }
1938
- .material-icons.mi-mms:before,
1939
- .mi.mi-mms:before {
1938
+ .material-icons.mms:before,
1939
+ .mi.mms:before {
1940
1940
  content: '\e618';
1941
1941
  }
1942
- .material-icons.mi-mode-comment:before,
1943
- .mi.mi-mode-comment:before {
1942
+ .material-icons.mode-comment:before,
1943
+ .mi.mode-comment:before {
1944
1944
  content: '\e253';
1945
1945
  }
1946
- .material-icons.mi-mode-edit:before,
1947
- .mi.mi-mode-edit:before {
1946
+ .material-icons.mode-edit:before,
1947
+ .mi.mode-edit:before {
1948
1948
  content: '\e254';
1949
1949
  }
1950
- .material-icons.mi-money-off:before,
1951
- .mi.mi-money-off:before {
1950
+ .material-icons.money-off:before,
1951
+ .mi.money-off:before {
1952
1952
  content: '\e25c';
1953
1953
  }
1954
- .material-icons.mi-monochrome-photos:before,
1955
- .mi.mi-monochrome-photos:before {
1954
+ .material-icons.monochrome-photos:before,
1955
+ .mi.monochrome-photos:before {
1956
1956
  content: '\e403';
1957
1957
  }
1958
- .material-icons.mi-mood:before,
1959
- .mi.mi-mood:before {
1958
+ .material-icons.mood:before,
1959
+ .mi.mood:before {
1960
1960
  content: '\e7f2';
1961
1961
  }
1962
- .material-icons.mi-mood-bad:before,
1963
- .mi.mi-mood-bad:before {
1962
+ .material-icons.mood-bad:before,
1963
+ .mi.mood-bad:before {
1964
1964
  content: '\e7f3';
1965
1965
  }
1966
- .material-icons.mi-more:before,
1967
- .mi.mi-more:before {
1966
+ .material-icons.more:before,
1967
+ .mi.more:before {
1968
1968
  content: '\e619';
1969
1969
  }
1970
- .material-icons.mi-more-horiz:before,
1971
- .mi.mi-more-horiz:before {
1970
+ .material-icons.more-horiz:before,
1971
+ .mi.more-horiz:before {
1972
1972
  content: '\e5d3';
1973
1973
  }
1974
- .material-icons.mi-more-vert:before,
1975
- .mi.mi-more-vert:before {
1974
+ .material-icons.more-vert:before,
1975
+ .mi.more-vert:before {
1976
1976
  content: '\e5d4';
1977
1977
  }
1978
- .material-icons.mi-mouse:before,
1979
- .mi.mi-mouse:before {
1978
+ .material-icons.mouse:before,
1979
+ .mi.mouse:before {
1980
1980
  content: '\e323';
1981
1981
  }
1982
- .material-icons.mi-movie:before,
1983
- .mi.mi-movie:before {
1982
+ .material-icons.movie:before,
1983
+ .mi.movie:before {
1984
1984
  content: '\e02c';
1985
1985
  }
1986
- .material-icons.mi-movie-creation:before,
1987
- .mi.mi-movie-creation:before {
1986
+ .material-icons.movie-creation:before,
1987
+ .mi.movie-creation:before {
1988
1988
  content: '\e404';
1989
1989
  }
1990
- .material-icons.mi-music-note:before,
1991
- .mi.mi-music-note:before {
1990
+ .material-icons.music-note:before,
1991
+ .mi.music-note:before {
1992
1992
  content: '\e405';
1993
1993
  }
1994
- .material-icons.mi-my-location:before,
1995
- .mi.mi-my-location:before {
1994
+ .material-icons.my-location:before,
1995
+ .mi.my-location:before {
1996
1996
  content: '\e55c';
1997
1997
  }
1998
- .material-icons.mi-nature:before,
1999
- .mi.mi-nature:before {
1998
+ .material-icons.nature:before,
1999
+ .mi.nature:before {
2000
2000
  content: '\e406';
2001
2001
  }
2002
- .material-icons.mi-nature-people:before,
2003
- .mi.mi-nature-people:before {
2002
+ .material-icons.nature-people:before,
2003
+ .mi.nature-people:before {
2004
2004
  content: '\e407';
2005
2005
  }
2006
- .material-icons.mi-navigate-before:before,
2007
- .mi.mi-navigate-before:before {
2006
+ .material-icons.navigate-before:before,
2007
+ .mi.navigate-before:before {
2008
2008
  content: '\e408';
2009
2009
  }
2010
- .material-icons.mi-navigate-next:before,
2011
- .mi.mi-navigate-next:before {
2010
+ .material-icons.navigate-next:before,
2011
+ .mi.navigate-next:before {
2012
2012
  content: '\e409';
2013
2013
  }
2014
- .material-icons.mi-navigation:before,
2015
- .mi.mi-navigation:before {
2014
+ .material-icons.navigation:before,
2015
+ .mi.navigation:before {
2016
2016
  content: '\e55d';
2017
2017
  }
2018
- .material-icons.mi-network-cell:before,
2019
- .mi.mi-network-cell:before {
2018
+ .material-icons.network-cell:before,
2019
+ .mi.network-cell:before {
2020
2020
  content: '\e1b9';
2021
2021
  }
2022
- .material-icons.mi-network-locked:before,
2023
- .mi.mi-network-locked:before {
2022
+ .material-icons.network-locked:before,
2023
+ .mi.network-locked:before {
2024
2024
  content: '\e61a';
2025
2025
  }
2026
- .material-icons.mi-network-wifi:before,
2027
- .mi.mi-network-wifi:before {
2026
+ .material-icons.network-wifi:before,
2027
+ .mi.network-wifi:before {
2028
2028
  content: '\e1ba';
2029
2029
  }
2030
- .material-icons.mi-new-releases:before,
2031
- .mi.mi-new-releases:before {
2030
+ .material-icons.new-releases:before,
2031
+ .mi.new-releases:before {
2032
2032
  content: '\e031';
2033
2033
  }
2034
- .material-icons.mi-nfc:before,
2035
- .mi.mi-nfc:before {
2034
+ .material-icons.nfc:before,
2035
+ .mi.nfc:before {
2036
2036
  content: '\e1bb';
2037
2037
  }
2038
- .material-icons.mi-no-sim:before,
2039
- .mi.mi-no-sim:before {
2038
+ .material-icons.no-sim:before,
2039
+ .mi.no-sim:before {
2040
2040
  content: '\e0cc';
2041
2041
  }
2042
- .material-icons.mi-not-interested:before,
2043
- .mi.mi-not-interested:before {
2042
+ .material-icons.not-interested:before,
2043
+ .mi.not-interested:before {
2044
2044
  content: '\e033';
2045
2045
  }
2046
- .material-icons.mi-note-add:before,
2047
- .mi.mi-note-add:before {
2046
+ .material-icons.note-add:before,
2047
+ .mi.note-add:before {
2048
2048
  content: '\e89c';
2049
2049
  }
2050
- .material-icons.mi-notifications:before,
2051
- .mi.mi-notifications:before {
2050
+ .material-icons.notifications:before,
2051
+ .mi.notifications:before {
2052
2052
  content: '\e7f4';
2053
2053
  }
2054
- .material-icons.mi-notifications-active:before,
2055
- .mi.mi-notifications-active:before {
2054
+ .material-icons.notifications-active:before,
2055
+ .mi.notifications-active:before {
2056
2056
  content: '\e7f7';
2057
2057
  }
2058
- .material-icons.mi-notifications-none:before,
2059
- .mi.mi-notifications-none:before {
2058
+ .material-icons.notifications-none:before,
2059
+ .mi.notifications-none:before {
2060
2060
  content: '\e7f5';
2061
2061
  }
2062
- .material-icons.mi-notifications-off:before,
2063
- .mi.mi-notifications-off:before {
2062
+ .material-icons.notifications-off:before,
2063
+ .mi.notifications-off:before {
2064
2064
  content: '\e7f6';
2065
2065
  }
2066
- .material-icons.mi-notifications-paused:before,
2067
- .mi.mi-notifications-paused:before {
2066
+ .material-icons.notifications-paused:before,
2067
+ .mi.notifications-paused:before {
2068
2068
  content: '\e7f8';
2069
2069
  }
2070
- .material-icons.mi-offline-pin:before,
2071
- .mi.mi-offline-pin:before {
2070
+ .material-icons.offline-pin:before,
2071
+ .mi.offline-pin:before {
2072
2072
  content: '\e90a';
2073
2073
  }
2074
- .material-icons.mi-ondemand-video:before,
2075
- .mi.mi-ondemand-video:before {
2074
+ .material-icons.ondemand-video:before,
2075
+ .mi.ondemand-video:before {
2076
2076
  content: '\e63a';
2077
2077
  }
2078
- .material-icons.mi-open-in-browser:before,
2079
- .mi.mi-open-in-browser:before {
2078
+ .material-icons.open-in-browser:before,
2079
+ .mi.open-in-browser:before {
2080
2080
  content: '\e89d';
2081
2081
  }
2082
- .material-icons.mi-open-in-new:before,
2083
- .mi.mi-open-in-new:before {
2082
+ .material-icons.open-in-new:before,
2083
+ .mi.open-in-new:before {
2084
2084
  content: '\e89e';
2085
2085
  }
2086
- .material-icons.mi-open-with:before,
2087
- .mi.mi-open-with:before {
2086
+ .material-icons.open-with:before,
2087
+ .mi.open-with:before {
2088
2088
  content: '\e89f';
2089
2089
  }
2090
- .material-icons.mi-pages:before,
2091
- .mi.mi-pages:before {
2090
+ .material-icons.pages:before,
2091
+ .mi.pages:before {
2092
2092
  content: '\e7f9';
2093
2093
  }
2094
- .material-icons.mi-pageview:before,
2095
- .mi.mi-pageview:before {
2094
+ .material-icons.pageview:before,
2095
+ .mi.pageview:before {
2096
2096
  content: '\e8a0';
2097
2097
  }
2098
- .material-icons.mi-palette:before,
2099
- .mi.mi-palette:before {
2098
+ .material-icons.palette:before,
2099
+ .mi.palette:before {
2100
2100
  content: '\e40a';
2101
2101
  }
2102
- .material-icons.mi-panorama:before,
2103
- .mi.mi-panorama:before {
2102
+ .material-icons.panorama:before,
2103
+ .mi.panorama:before {
2104
2104
  content: '\e40b';
2105
2105
  }
2106
- .material-icons.mi-panorama-fish-eye:before,
2107
- .mi.mi-panorama-fish-eye:before {
2106
+ .material-icons.panorama-fish-eye:before,
2107
+ .mi.panorama-fish-eye:before {
2108
2108
  content: '\e40c';
2109
2109
  }
2110
- .material-icons.mi-panorama-horizontal:before,
2111
- .mi.mi-panorama-horizontal:before {
2110
+ .material-icons.panorama-horizontal:before,
2111
+ .mi.panorama-horizontal:before {
2112
2112
  content: '\e40d';
2113
2113
  }
2114
- .material-icons.mi-panorama-vertical:before,
2115
- .mi.mi-panorama-vertical:before {
2114
+ .material-icons.panorama-vertical:before,
2115
+ .mi.panorama-vertical:before {
2116
2116
  content: '\e40e';
2117
2117
  }
2118
- .material-icons.mi-panorama-wide-angle:before,
2119
- .mi.mi-panorama-wide-angle:before {
2118
+ .material-icons.panorama-wide-angle:before,
2119
+ .mi.panorama-wide-angle:before {
2120
2120
  content: '\e40f';
2121
2121
  }
2122
- .material-icons.mi-party-mode:before,
2123
- .mi.mi-party-mode:before {
2122
+ .material-icons.party-mode:before,
2123
+ .mi.party-mode:before {
2124
2124
  content: '\e7fa';
2125
2125
  }
2126
- .material-icons.mi-pause:before,
2127
- .mi.mi-pause:before {
2126
+ .material-icons.pause:before,
2127
+ .mi.pause:before {
2128
2128
  content: '\e034';
2129
2129
  }
2130
- .material-icons.mi-pause-circle-filled:before,
2131
- .mi.mi-pause-circle-filled:before {
2130
+ .material-icons.pause-circle-filled:before,
2131
+ .mi.pause-circle-filled:before {
2132
2132
  content: '\e035';
2133
2133
  }
2134
- .material-icons.mi-pause-circle-outline:before,
2135
- .mi.mi-pause-circle-outline:before {
2134
+ .material-icons.pause-circle-outline:before,
2135
+ .mi.pause-circle-outline:before {
2136
2136
  content: '\e036';
2137
2137
  }
2138
- .material-icons.mi-payment:before,
2139
- .mi.mi-payment:before {
2138
+ .material-icons.payment:before,
2139
+ .mi.payment:before {
2140
2140
  content: '\e8a1';
2141
2141
  }
2142
- .material-icons.mi-people:before,
2143
- .mi.mi-people:before {
2142
+ .material-icons.people:before,
2143
+ .mi.people:before {
2144
2144
  content: '\e7fb';
2145
2145
  }
2146
- .material-icons.mi-people-outline:before,
2147
- .mi.mi-people-outline:before {
2146
+ .material-icons.people-outline:before,
2147
+ .mi.people-outline:before {
2148
2148
  content: '\e7fc';
2149
2149
  }
2150
- .material-icons.mi-perm-camera-mic:before,
2151
- .mi.mi-perm-camera-mic:before {
2150
+ .material-icons.perm-camera-mic:before,
2151
+ .mi.perm-camera-mic:before {
2152
2152
  content: '\e8a2';
2153
2153
  }
2154
- .material-icons.mi-perm-contact-calendar:before,
2155
- .mi.mi-perm-contact-calendar:before {
2154
+ .material-icons.perm-contact-calendar:before,
2155
+ .mi.perm-contact-calendar:before {
2156
2156
  content: '\e8a3';
2157
2157
  }
2158
- .material-icons.mi-perm-data-setting:before,
2159
- .mi.mi-perm-data-setting:before {
2158
+ .material-icons.perm-data-setting:before,
2159
+ .mi.perm-data-setting:before {
2160
2160
  content: '\e8a4';
2161
2161
  }
2162
- .material-icons.mi-perm-device-information:before,
2163
- .mi.mi-perm-device-information:before {
2162
+ .material-icons.perm-device-information:before,
2163
+ .mi.perm-device-information:before {
2164
2164
  content: '\e8a5';
2165
2165
  }
2166
- .material-icons.mi-perm-identity:before,
2167
- .mi.mi-perm-identity:before {
2166
+ .material-icons.perm-identity:before,
2167
+ .mi.perm-identity:before {
2168
2168
  content: '\e8a6';
2169
2169
  }
2170
- .material-icons.mi-perm-media:before,
2171
- .mi.mi-perm-media:before {
2170
+ .material-icons.perm-media:before,
2171
+ .mi.perm-media:before {
2172
2172
  content: '\e8a7';
2173
2173
  }
2174
- .material-icons.mi-perm-phone-msg:before,
2175
- .mi.mi-perm-phone-msg:before {
2174
+ .material-icons.perm-phone-msg:before,
2175
+ .mi.perm-phone-msg:before {
2176
2176
  content: '\e8a8';
2177
2177
  }
2178
- .material-icons.mi-perm-scan-wifi:before,
2179
- .mi.mi-perm-scan-wifi:before {
2178
+ .material-icons.perm-scan-wifi:before,
2179
+ .mi.perm-scan-wifi:before {
2180
2180
  content: '\e8a9';
2181
2181
  }
2182
- .material-icons.mi-person:before,
2183
- .mi.mi-person:before {
2182
+ .material-icons.person:before,
2183
+ .mi.person:before {
2184
2184
  content: '\e7fd';
2185
2185
  }
2186
- .material-icons.mi-person-add:before,
2187
- .mi.mi-person-add:before {
2186
+ .material-icons.person-add:before,
2187
+ .mi.person-add:before {
2188
2188
  content: '\e7fe';
2189
2189
  }
2190
- .material-icons.mi-person-outline:before,
2191
- .mi.mi-person-outline:before {
2190
+ .material-icons.person-outline:before,
2191
+ .mi.person-outline:before {
2192
2192
  content: '\e7ff';
2193
2193
  }
2194
- .material-icons.mi-person-pin:before,
2195
- .mi.mi-person-pin:before {
2194
+ .material-icons.person-pin:before,
2195
+ .mi.person-pin:before {
2196
2196
  content: '\e55a';
2197
2197
  }
2198
- .material-icons.mi-personal-video:before,
2199
- .mi.mi-personal-video:before {
2198
+ .material-icons.personal-video:before,
2199
+ .mi.personal-video:before {
2200
2200
  content: '\e63b';
2201
2201
  }
2202
- .material-icons.mi-phone:before,
2203
- .mi.mi-phone:before {
2202
+ .material-icons.phone:before,
2203
+ .mi.phone:before {
2204
2204
  content: '\e0cd';
2205
2205
  }
2206
- .material-icons.mi-phone-android:before,
2207
- .mi.mi-phone-android:before {
2206
+ .material-icons.phone-android:before,
2207
+ .mi.phone-android:before {
2208
2208
  content: '\e324';
2209
2209
  }
2210
- .material-icons.mi-phone-bluetooth-speaker:before,
2211
- .mi.mi-phone-bluetooth-speaker:before {
2210
+ .material-icons.phone-bluetooth-speaker:before,
2211
+ .mi.phone-bluetooth-speaker:before {
2212
2212
  content: '\e61b';
2213
2213
  }
2214
- .material-icons.mi-phone-forwarded:before,
2215
- .mi.mi-phone-forwarded:before {
2214
+ .material-icons.phone-forwarded:before,
2215
+ .mi.phone-forwarded:before {
2216
2216
  content: '\e61c';
2217
2217
  }
2218
- .material-icons.mi-phone-in-talk:before,
2219
- .mi.mi-phone-in-talk:before {
2218
+ .material-icons.phone-in-talk:before,
2219
+ .mi.phone-in-talk:before {
2220
2220
  content: '\e61d';
2221
2221
  }
2222
- .material-icons.mi-phone-iphone:before,
2223
- .mi.mi-phone-iphone:before {
2222
+ .material-icons.phone-iphone:before,
2223
+ .mi.phone-iphone:before {
2224
2224
  content: '\e325';
2225
2225
  }
2226
- .material-icons.mi-phone-locked:before,
2227
- .mi.mi-phone-locked:before {
2226
+ .material-icons.phone-locked:before,
2227
+ .mi.phone-locked:before {
2228
2228
  content: '\e61e';
2229
2229
  }
2230
- .material-icons.mi-phone-missed:before,
2231
- .mi.mi-phone-missed:before {
2230
+ .material-icons.phone-missed:before,
2231
+ .mi.phone-missed:before {
2232
2232
  content: '\e61f';
2233
2233
  }
2234
- .material-icons.mi-phone-paused:before,
2235
- .mi.mi-phone-paused:before {
2234
+ .material-icons.phone-paused:before,
2235
+ .mi.phone-paused:before {
2236
2236
  content: '\e620';
2237
2237
  }
2238
- .material-icons.mi-phonelink:before,
2239
- .mi.mi-phonelink:before {
2238
+ .material-icons.phonelink:before,
2239
+ .mi.phonelink:before {
2240
2240
  content: '\e326';
2241
2241
  }
2242
- .material-icons.mi-phonelink-erase:before,
2243
- .mi.mi-phonelink-erase:before {
2242
+ .material-icons.phonelink-erase:before,
2243
+ .mi.phonelink-erase:before {
2244
2244
  content: '\e0db';
2245
2245
  }
2246
- .material-icons.mi-phonelink-lock:before,
2247
- .mi.mi-phonelink-lock:before {
2246
+ .material-icons.phonelink-lock:before,
2247
+ .mi.phonelink-lock:before {
2248
2248
  content: '\e0dc';
2249
2249
  }
2250
- .material-icons.mi-phonelink-off:before,
2251
- .mi.mi-phonelink-off:before {
2250
+ .material-icons.phonelink-off:before,
2251
+ .mi.phonelink-off:before {
2252
2252
  content: '\e327';
2253
2253
  }
2254
- .material-icons.mi-phonelink-ring:before,
2255
- .mi.mi-phonelink-ring:before {
2254
+ .material-icons.phonelink-ring:before,
2255
+ .mi.phonelink-ring:before {
2256
2256
  content: '\e0dd';
2257
2257
  }
2258
- .material-icons.mi-phonelink-setup:before,
2259
- .mi.mi-phonelink-setup:before {
2258
+ .material-icons.phonelink-setup:before,
2259
+ .mi.phonelink-setup:before {
2260
2260
  content: '\e0de';
2261
2261
  }
2262
- .material-icons.mi-photo:before,
2263
- .mi.mi-photo:before {
2262
+ .material-icons.photo:before,
2263
+ .mi.photo:before {
2264
2264
  content: '\e410';
2265
2265
  }
2266
- .material-icons.mi-photo-album:before,
2267
- .mi.mi-photo-album:before {
2266
+ .material-icons.photo-album:before,
2267
+ .mi.photo-album:before {
2268
2268
  content: '\e411';
2269
2269
  }
2270
- .material-icons.mi-photo-camera:before,
2271
- .mi.mi-photo-camera:before {
2270
+ .material-icons.photo-camera:before,
2271
+ .mi.photo-camera:before {
2272
2272
  content: '\e412';
2273
2273
  }
2274
- .material-icons.mi-photo-library:before,
2275
- .mi.mi-photo-library:before {
2274
+ .material-icons.photo-library:before,
2275
+ .mi.photo-library:before {
2276
2276
  content: '\e413';
2277
2277
  }
2278
- .material-icons.mi-photo-size-select-actual:before,
2279
- .mi.mi-photo-size-select-actual:before {
2278
+ .material-icons.photo-size-select-actual:before,
2279
+ .mi.photo-size-select-actual:before {
2280
2280
  content: '\e432';
2281
2281
  }
2282
- .material-icons.mi-photo-size-select-large:before,
2283
- .mi.mi-photo-size-select-large:before {
2282
+ .material-icons.photo-size-select-large:before,
2283
+ .mi.photo-size-select-large:before {
2284
2284
  content: '\e433';
2285
2285
  }
2286
- .material-icons.mi-photo-size-select-small:before,
2287
- .mi.mi-photo-size-select-small:before {
2286
+ .material-icons.photo-size-select-small:before,
2287
+ .mi.photo-size-select-small:before {
2288
2288
  content: '\e434';
2289
2289
  }
2290
- .material-icons.mi-picture-as-pdf:before,
2291
- .mi.mi-picture-as-pdf:before {
2290
+ .material-icons.picture-as-pdf:before,
2291
+ .mi.picture-as-pdf:before {
2292
2292
  content: '\e415';
2293
2293
  }
2294
- .material-icons.mi-picture-in-picture:before,
2295
- .mi.mi-picture-in-picture:before {
2294
+ .material-icons.picture-in-picture:before,
2295
+ .mi.picture-in-picture:before {
2296
2296
  content: '\e8aa';
2297
2297
  }
2298
- .material-icons.mi-pin-drop:before,
2299
- .mi.mi-pin-drop:before {
2298
+ .material-icons.pin-drop:before,
2299
+ .mi.pin-drop:before {
2300
2300
  content: '\e55e';
2301
2301
  }
2302
- .material-icons.mi-place:before,
2303
- .mi.mi-place:before {
2302
+ .material-icons.place:before,
2303
+ .mi.place:before {
2304
2304
  content: '\e55f';
2305
2305
  }
2306
- .material-icons.mi-play-arrow:before,
2307
- .mi.mi-play-arrow:before {
2306
+ .material-icons.play-arrow:before,
2307
+ .mi.play-arrow:before {
2308
2308
  content: '\e037';
2309
2309
  }
2310
- .material-icons.mi-play-circle-filled:before,
2311
- .mi.mi-play-circle-filled:before {
2310
+ .material-icons.play-circle-filled:before,
2311
+ .mi.play-circle-filled:before {
2312
2312
  content: '\e038';
2313
2313
  }
2314
- .material-icons.mi-play-circle-outline:before,
2315
- .mi.mi-play-circle-outline:before {
2314
+ .material-icons.play-circle-outline:before,
2315
+ .mi.play-circle-outline:before {
2316
2316
  content: '\e039';
2317
2317
  }
2318
- .material-icons.mi-play-for-work:before,
2319
- .mi.mi-play-for-work:before {
2318
+ .material-icons.play-for-work:before,
2319
+ .mi.play-for-work:before {
2320
2320
  content: '\e906';
2321
2321
  }
2322
- .material-icons.mi-playlist-add:before,
2323
- .mi.mi-playlist-add:before {
2322
+ .material-icons.playlist-add:before,
2323
+ .mi.playlist-add:before {
2324
2324
  content: '\e03b';
2325
2325
  }
2326
- .material-icons.mi-plus-one:before,
2327
- .mi.mi-plus-one:before {
2326
+ .material-icons.plus-one:before,
2327
+ .mi.plus-one:before {
2328
2328
  content: '\e800';
2329
2329
  }
2330
- .material-icons.mi-poll:before,
2331
- .mi.mi-poll:before {
2330
+ .material-icons.poll:before,
2331
+ .mi.poll:before {
2332
2332
  content: '\e801';
2333
2333
  }
2334
- .material-icons.mi-polymer:before,
2335
- .mi.mi-polymer:before {
2334
+ .material-icons.polymer:before,
2335
+ .mi.polymer:before {
2336
2336
  content: '\e8ab';
2337
2337
  }
2338
- .material-icons.mi-portable-wifi-off:before,
2339
- .mi.mi-portable-wifi-off:before {
2338
+ .material-icons.portable-wifi-off:before,
2339
+ .mi.portable-wifi-off:before {
2340
2340
  content: '\e0ce';
2341
2341
  }
2342
- .material-icons.mi-portrait:before,
2343
- .mi.mi-portrait:before {
2342
+ .material-icons.portrait:before,
2343
+ .mi.portrait:before {
2344
2344
  content: '\e416';
2345
2345
  }
2346
- .material-icons.mi-power:before,
2347
- .mi.mi-power:before {
2346
+ .material-icons.power:before,
2347
+ .mi.power:before {
2348
2348
  content: '\e63c';
2349
2349
  }
2350
- .material-icons.mi-power-input:before,
2351
- .mi.mi-power-input:before {
2350
+ .material-icons.power-input:before,
2351
+ .mi.power-input:before {
2352
2352
  content: '\e336';
2353
2353
  }
2354
- .material-icons.mi-power-settings-new:before,
2355
- .mi.mi-power-settings-new:before {
2354
+ .material-icons.power-settings-new:before,
2355
+ .mi.power-settings-new:before {
2356
2356
  content: '\e8ac';
2357
2357
  }
2358
- .material-icons.mi-present-to-all:before,
2359
- .mi.mi-present-to-all:before {
2358
+ .material-icons.present-to-all:before,
2359
+ .mi.present-to-all:before {
2360
2360
  content: '\e0df';
2361
2361
  }
2362
- .material-icons.mi-print:before,
2363
- .mi.mi-print:before {
2362
+ .material-icons.print:before,
2363
+ .mi.print:before {
2364
2364
  content: '\e8ad';
2365
2365
  }
2366
- .material-icons.mi-public:before,
2367
- .mi.mi-public:before {
2366
+ .material-icons.public:before,
2367
+ .mi.public:before {
2368
2368
  content: '\e80b';
2369
2369
  }
2370
- .material-icons.mi-publish:before,
2371
- .mi.mi-publish:before {
2370
+ .material-icons.publish:before,
2371
+ .mi.publish:before {
2372
2372
  content: '\e255';
2373
2373
  }
2374
- .material-icons.mi-query-builder:before,
2375
- .mi.mi-query-builder:before {
2374
+ .material-icons.query-builder:before,
2375
+ .mi.query-builder:before {
2376
2376
  content: '\e8ae';
2377
2377
  }
2378
- .material-icons.mi-question-answer:before,
2379
- .mi.mi-question-answer:before {
2378
+ .material-icons.question-answer:before,
2379
+ .mi.question-answer:before {
2380
2380
  content: '\e8af';
2381
2381
  }
2382
- .material-icons.mi-queue:before,
2383
- .mi.mi-queue:before {
2382
+ .material-icons.queue:before,
2383
+ .mi.queue:before {
2384
2384
  content: '\e03c';
2385
2385
  }
2386
- .material-icons.mi-queue-music:before,
2387
- .mi.mi-queue-music:before {
2386
+ .material-icons.queue-music:before,
2387
+ .mi.queue-music:before {
2388
2388
  content: '\e03d';
2389
2389
  }
2390
- .material-icons.mi-radio:before,
2391
- .mi.mi-radio:before {
2390
+ .material-icons.radio:before,
2391
+ .mi.radio:before {
2392
2392
  content: '\e03e';
2393
2393
  }
2394
- .material-icons.mi-radio-button-checked:before,
2395
- .mi.mi-radio-button-checked:before {
2394
+ .material-icons.radio-button-checked:before,
2395
+ .mi.radio-button-checked:before {
2396
2396
  content: '\e837';
2397
2397
  }
2398
- .material-icons.mi-radio-button-unchecked:before,
2399
- .mi.mi-radio-button-unchecked:before {
2398
+ .material-icons.radio-button-unchecked:before,
2399
+ .mi.radio-button-unchecked:before {
2400
2400
  content: '\e836';
2401
2401
  }
2402
- .material-icons.mi-rate-review:before,
2403
- .mi.mi-rate-review:before {
2402
+ .material-icons.rate-review:before,
2403
+ .mi.rate-review:before {
2404
2404
  content: '\e560';
2405
2405
  }
2406
- .material-icons.mi-receipt:before,
2407
- .mi.mi-receipt:before {
2406
+ .material-icons.receipt:before,
2407
+ .mi.receipt:before {
2408
2408
  content: '\e8b0';
2409
2409
  }
2410
- .material-icons.mi-recent-actors:before,
2411
- .mi.mi-recent-actors:before {
2410
+ .material-icons.recent-actors:before,
2411
+ .mi.recent-actors:before {
2412
2412
  content: '\e03f';
2413
2413
  }
2414
- .material-icons.mi-redeem:before,
2415
- .mi.mi-redeem:before {
2414
+ .material-icons.redeem:before,
2415
+ .mi.redeem:before {
2416
2416
  content: '\e8b1';
2417
2417
  }
2418
- .material-icons.mi-redo:before,
2419
- .mi.mi-redo:before {
2418
+ .material-icons.redo:before,
2419
+ .mi.redo:before {
2420
2420
  content: '\e15a';
2421
2421
  }
2422
- .material-icons.mi-refresh:before,
2423
- .mi.mi-refresh:before {
2422
+ .material-icons.refresh:before,
2423
+ .mi.refresh:before {
2424
2424
  content: '\e5d5';
2425
2425
  }
2426
- .material-icons.mi-remove:before,
2427
- .mi.mi-remove:before {
2426
+ .material-icons.remove:before,
2427
+ .mi.remove:before {
2428
2428
  content: '\e15b';
2429
2429
  }
2430
- .material-icons.mi-remove-circle:before,
2431
- .mi.mi-remove-circle:before {
2430
+ .material-icons.remove-circle:before,
2431
+ .mi.remove-circle:before {
2432
2432
  content: '\e15c';
2433
2433
  }
2434
- .material-icons.mi-remove-circle-outline:before,
2435
- .mi.mi-remove-circle-outline:before {
2434
+ .material-icons.remove-circle-outline:before,
2435
+ .mi.remove-circle-outline:before {
2436
2436
  content: '\e15d';
2437
2437
  }
2438
- .material-icons.mi-remove-red-eye:before,
2439
- .mi.mi-remove-red-eye:before {
2438
+ .material-icons.remove-red-eye:before,
2439
+ .mi.remove-red-eye:before {
2440
2440
  content: '\e417';
2441
2441
  }
2442
- .material-icons.mi-reorder:before,
2443
- .mi.mi-reorder:before {
2442
+ .material-icons.reorder:before,
2443
+ .mi.reorder:before {
2444
2444
  content: '\e8fe';
2445
2445
  }
2446
- .material-icons.mi-repeat:before,
2447
- .mi.mi-repeat:before {
2446
+ .material-icons.repeat:before,
2447
+ .mi.repeat:before {
2448
2448
  content: '\e040';
2449
2449
  }
2450
- .material-icons.mi-repeat-one:before,
2451
- .mi.mi-repeat-one:before {
2450
+ .material-icons.repeat-one:before,
2451
+ .mi.repeat-one:before {
2452
2452
  content: '\e041';
2453
2453
  }
2454
- .material-icons.mi-replay:before,
2455
- .mi.mi-replay:before {
2454
+ .material-icons.replay:before,
2455
+ .mi.replay:before {
2456
2456
  content: '\e042';
2457
2457
  }
2458
- .material-icons.mi-replay-10:before,
2459
- .mi.mi-replay-10:before {
2458
+ .material-icons.replay-10:before,
2459
+ .mi.replay-10:before {
2460
2460
  content: '\e059';
2461
2461
  }
2462
- .material-icons.mi-replay-30:before,
2463
- .mi.mi-replay-30:before {
2462
+ .material-icons.replay-30:before,
2463
+ .mi.replay-30:before {
2464
2464
  content: '\e05a';
2465
2465
  }
2466
- .material-icons.mi-replay-5:before,
2467
- .mi.mi-replay-5:before {
2466
+ .material-icons.replay-5:before,
2467
+ .mi.replay-5:before {
2468
2468
  content: '\e05b';
2469
2469
  }
2470
- .material-icons.mi-reply:before,
2471
- .mi.mi-reply:before {
2470
+ .material-icons.reply:before,
2471
+ .mi.reply:before {
2472
2472
  content: '\e15e';
2473
2473
  }
2474
- .material-icons.mi-reply-all:before,
2475
- .mi.mi-reply-all:before {
2474
+ .material-icons.reply-all:before,
2475
+ .mi.reply-all:before {
2476
2476
  content: '\e15f';
2477
2477
  }
2478
- .material-icons.mi-report:before,
2479
- .mi.mi-report:before {
2478
+ .material-icons.report:before,
2479
+ .mi.report:before {
2480
2480
  content: '\e160';
2481
2481
  }
2482
- .material-icons.mi-report-problem:before,
2483
- .mi.mi-report-problem:before {
2482
+ .material-icons.report-problem:before,
2483
+ .mi.report-problem:before {
2484
2484
  content: '\e8b2';
2485
2485
  }
2486
- .material-icons.mi-restaurant-menu:before,
2487
- .mi.mi-restaurant-menu:before {
2486
+ .material-icons.restaurant-menu:before,
2487
+ .mi.restaurant-menu:before {
2488
2488
  content: '\e561';
2489
2489
  }
2490
- .material-icons.mi-restore:before,
2491
- .mi.mi-restore:before {
2490
+ .material-icons.restore:before,
2491
+ .mi.restore:before {
2492
2492
  content: '\e8b3';
2493
2493
  }
2494
- .material-icons.mi-ring-volume:before,
2495
- .mi.mi-ring-volume:before {
2494
+ .material-icons.ring-volume:before,
2495
+ .mi.ring-volume:before {
2496
2496
  content: '\e0d1';
2497
2497
  }
2498
- .material-icons.mi-room:before,
2499
- .mi.mi-room:before {
2498
+ .material-icons.room:before,
2499
+ .mi.room:before {
2500
2500
  content: '\e8b4';
2501
2501
  }
2502
- .material-icons.mi-rotate-90-degrees-ccw:before,
2503
- .mi.mi-rotate-90-degrees-ccw:before {
2502
+ .material-icons.rotate-90-degrees-ccw:before,
2503
+ .mi.rotate-90-degrees-ccw:before {
2504
2504
  content: '\e418';
2505
2505
  }
2506
- .material-icons.mi-rotate-left:before,
2507
- .mi.mi-rotate-left:before {
2506
+ .material-icons.rotate-left:before,
2507
+ .mi.rotate-left:before {
2508
2508
  content: '\e419';
2509
2509
  }
2510
- .material-icons.mi-rotate-right:before,
2511
- .mi.mi-rotate-right:before {
2510
+ .material-icons.rotate-right:before,
2511
+ .mi.rotate-right:before {
2512
2512
  content: '\e41a';
2513
2513
  }
2514
- .material-icons.mi-router:before,
2515
- .mi.mi-router:before {
2514
+ .material-icons.router:before,
2515
+ .mi.router:before {
2516
2516
  content: '\e328';
2517
2517
  }
2518
- .material-icons.mi-satellite:before,
2519
- .mi.mi-satellite:before {
2518
+ .material-icons.satellite:before,
2519
+ .mi.satellite:before {
2520
2520
  content: '\e562';
2521
2521
  }
2522
- .material-icons.mi-save:before,
2523
- .mi.mi-save:before {
2522
+ .material-icons.save:before,
2523
+ .mi.save:before {
2524
2524
  content: '\e161';
2525
2525
  }
2526
- .material-icons.mi-scanner:before,
2527
- .mi.mi-scanner:before {
2526
+ .material-icons.scanner:before,
2527
+ .mi.scanner:before {
2528
2528
  content: '\e329';
2529
2529
  }
2530
- .material-icons.mi-schedule:before,
2531
- .mi.mi-schedule:before {
2530
+ .material-icons.schedule:before,
2531
+ .mi.schedule:before {
2532
2532
  content: '\e8b5';
2533
2533
  }
2534
- .material-icons.mi-school:before,
2535
- .mi.mi-school:before {
2534
+ .material-icons.school:before,
2535
+ .mi.school:before {
2536
2536
  content: '\e80c';
2537
2537
  }
2538
- .material-icons.mi-screen-lock-landscape:before,
2539
- .mi.mi-screen-lock-landscape:before {
2538
+ .material-icons.screen-lock-landscape:before,
2539
+ .mi.screen-lock-landscape:before {
2540
2540
  content: '\e1be';
2541
2541
  }
2542
- .material-icons.mi-screen-lock-portrait:before,
2543
- .mi.mi-screen-lock-portrait:before {
2542
+ .material-icons.screen-lock-portrait:before,
2543
+ .mi.screen-lock-portrait:before {
2544
2544
  content: '\e1bf';
2545
2545
  }
2546
- .material-icons.mi-screen-lock-rotation:before,
2547
- .mi.mi-screen-lock-rotation:before {
2546
+ .material-icons.screen-lock-rotation:before,
2547
+ .mi.screen-lock-rotation:before {
2548
2548
  content: '\e1c0';
2549
2549
  }
2550
- .material-icons.mi-screen-rotation:before,
2551
- .mi.mi-screen-rotation:before {
2550
+ .material-icons.screen-rotation:before,
2551
+ .mi.screen-rotation:before {
2552
2552
  content: '\e1c1';
2553
2553
  }
2554
- .material-icons.mi-sd-card:before,
2555
- .mi.mi-sd-card:before {
2554
+ .material-icons.sd-card:before,
2555
+ .mi.sd-card:before {
2556
2556
  content: '\e623';
2557
2557
  }
2558
- .material-icons.mi-sd-storage:before,
2559
- .mi.mi-sd-storage:before {
2558
+ .material-icons.sd-storage:before,
2559
+ .mi.sd-storage:before {
2560
2560
  content: '\e1c2';
2561
2561
  }
2562
- .material-icons.mi-search:before,
2563
- .mi.mi-search:before {
2562
+ .material-icons.search:before,
2563
+ .mi.search:before {
2564
2564
  content: '\e8b6';
2565
2565
  }
2566
- .material-icons.mi-security:before,
2567
- .mi.mi-security:before {
2566
+ .material-icons.security:before,
2567
+ .mi.security:before {
2568
2568
  content: '\e32a';
2569
2569
  }
2570
- .material-icons.mi-select-all:before,
2571
- .mi.mi-select-all:before {
2570
+ .material-icons.select-all:before,
2571
+ .mi.select-all:before {
2572
2572
  content: '\e162';
2573
2573
  }
2574
- .material-icons.mi-send:before,
2575
- .mi.mi-send:before {
2574
+ .material-icons.send:before,
2575
+ .mi.send:before {
2576
2576
  content: '\e163';
2577
2577
  }
2578
- .material-icons.mi-settings:before,
2579
- .mi.mi-settings:before {
2578
+ .material-icons.settings:before,
2579
+ .mi.settings:before {
2580
2580
  content: '\e8b8';
2581
2581
  }
2582
- .material-icons.mi-settings-applications:before,
2583
- .mi.mi-settings-applications:before {
2582
+ .material-icons.settings-applications:before,
2583
+ .mi.settings-applications:before {
2584
2584
  content: '\e8b9';
2585
2585
  }
2586
- .material-icons.mi-settings-backup-restore:before,
2587
- .mi.mi-settings-backup-restore:before {
2586
+ .material-icons.settings-backup-restore:before,
2587
+ .mi.settings-backup-restore:before {
2588
2588
  content: '\e8ba';
2589
2589
  }
2590
- .material-icons.mi-settings-bluetooth:before,
2591
- .mi.mi-settings-bluetooth:before {
2590
+ .material-icons.settings-bluetooth:before,
2591
+ .mi.settings-bluetooth:before {
2592
2592
  content: '\e8bb';
2593
2593
  }
2594
- .material-icons.mi-settings-brightness:before,
2595
- .mi.mi-settings-brightness:before {
2594
+ .material-icons.settings-brightness:before,
2595
+ .mi.settings-brightness:before {
2596
2596
  content: '\e8bd';
2597
2597
  }
2598
- .material-icons.mi-settings-cell:before,
2599
- .mi.mi-settings-cell:before {
2598
+ .material-icons.settings-cell:before,
2599
+ .mi.settings-cell:before {
2600
2600
  content: '\e8bc';
2601
2601
  }
2602
- .material-icons.mi-settings-ethernet:before,
2603
- .mi.mi-settings-ethernet:before {
2602
+ .material-icons.settings-ethernet:before,
2603
+ .mi.settings-ethernet:before {
2604
2604
  content: '\e8be';
2605
2605
  }
2606
- .material-icons.mi-settings-input-antenna:before,
2607
- .mi.mi-settings-input-antenna:before {
2606
+ .material-icons.settings-input-antenna:before,
2607
+ .mi.settings-input-antenna:before {
2608
2608
  content: '\e8bf';
2609
2609
  }
2610
- .material-icons.mi-settings-input-component:before,
2611
- .mi.mi-settings-input-component:before {
2610
+ .material-icons.settings-input-component:before,
2611
+ .mi.settings-input-component:before {
2612
2612
  content: '\e8c0';
2613
2613
  }
2614
- .material-icons.mi-settings-input-composite:before,
2615
- .mi.mi-settings-input-composite:before {
2614
+ .material-icons.settings-input-composite:before,
2615
+ .mi.settings-input-composite:before {
2616
2616
  content: '\e8c1';
2617
2617
  }
2618
- .material-icons.mi-settings-input-hdmi:before,
2619
- .mi.mi-settings-input-hdmi:before {
2618
+ .material-icons.settings-input-hdmi:before,
2619
+ .mi.settings-input-hdmi:before {
2620
2620
  content: '\e8c2';
2621
2621
  }
2622
- .material-icons.mi-settings-input-svideo:before,
2623
- .mi.mi-settings-input-svideo:before {
2622
+ .material-icons.settings-input-svideo:before,
2623
+ .mi.settings-input-svideo:before {
2624
2624
  content: '\e8c3';
2625
2625
  }
2626
- .material-icons.mi-settings-overscan:before,
2627
- .mi.mi-settings-overscan:before {
2626
+ .material-icons.settings-overscan:before,
2627
+ .mi.settings-overscan:before {
2628
2628
  content: '\e8c4';
2629
2629
  }
2630
- .material-icons.mi-settings-phone:before,
2631
- .mi.mi-settings-phone:before {
2630
+ .material-icons.settings-phone:before,
2631
+ .mi.settings-phone:before {
2632
2632
  content: '\e8c5';
2633
2633
  }
2634
- .material-icons.mi-settings-power:before,
2635
- .mi.mi-settings-power:before {
2634
+ .material-icons.settings-power:before,
2635
+ .mi.settings-power:before {
2636
2636
  content: '\e8c6';
2637
2637
  }
2638
- .material-icons.mi-settings-remote:before,
2639
- .mi.mi-settings-remote:before {
2638
+ .material-icons.settings-remote:before,
2639
+ .mi.settings-remote:before {
2640
2640
  content: '\e8c7';
2641
2641
  }
2642
- .material-icons.mi-settings-system-daydream:before,
2643
- .mi.mi-settings-system-daydream:before {
2642
+ .material-icons.settings-system-daydream:before,
2643
+ .mi.settings-system-daydream:before {
2644
2644
  content: '\e1c3';
2645
2645
  }
2646
- .material-icons.mi-settings-voice:before,
2647
- .mi.mi-settings-voice:before {
2646
+ .material-icons.settings-voice:before,
2647
+ .mi.settings-voice:before {
2648
2648
  content: '\e8c8';
2649
2649
  }
2650
- .material-icons.mi-share:before,
2651
- .mi.mi-share:before {
2650
+ .material-icons.share:before,
2651
+ .mi.share:before {
2652
2652
  content: '\e80d';
2653
2653
  }
2654
- .material-icons.mi-shop:before,
2655
- .mi.mi-shop:before {
2654
+ .material-icons.shop:before,
2655
+ .mi.shop:before {
2656
2656
  content: '\e8c9';
2657
2657
  }
2658
- .material-icons.mi-shop-two:before,
2659
- .mi.mi-shop-two:before {
2658
+ .material-icons.shop-two:before,
2659
+ .mi.shop-two:before {
2660
2660
  content: '\e8ca';
2661
2661
  }
2662
- .material-icons.mi-shopping-basket:before,
2663
- .mi.mi-shopping-basket:before {
2662
+ .material-icons.shopping-basket:before,
2663
+ .mi.shopping-basket:before {
2664
2664
  content: '\e8cb';
2665
2665
  }
2666
- .material-icons.mi-shopping-cart:before,
2667
- .mi.mi-shopping-cart:before {
2666
+ .material-icons.shopping-cart:before,
2667
+ .mi.shopping-cart:before {
2668
2668
  content: '\e8cc';
2669
2669
  }
2670
- .material-icons.mi-shuffle:before,
2671
- .mi.mi-shuffle:before {
2670
+ .material-icons.shuffle:before,
2671
+ .mi.shuffle:before {
2672
2672
  content: '\e043';
2673
2673
  }
2674
- .material-icons.mi-signal-cellular-4-bar:before,
2675
- .mi.mi-signal-cellular-4-bar:before {
2674
+ .material-icons.signal-cellular-4-bar:before,
2675
+ .mi.signal-cellular-4-bar:before {
2676
2676
  content: '\e1c8';
2677
2677
  }
2678
- .material-icons.mi-signal-cellular-connected-no-internet-4-bar:before,
2679
- .mi.mi-signal-cellular-connected-no-internet-4-bar:before {
2678
+ .material-icons.signal-cellular-connected-no-internet-4-bar:before,
2679
+ .mi.signal-cellular-connected-no-internet-4-bar:before {
2680
2680
  content: '\e1cd';
2681
2681
  }
2682
- .material-icons.mi-signal-cellular-no-sim:before,
2683
- .mi.mi-signal-cellular-no-sim:before {
2682
+ .material-icons.signal-cellular-no-sim:before,
2683
+ .mi.signal-cellular-no-sim:before {
2684
2684
  content: '\e1ce';
2685
2685
  }
2686
- .material-icons.mi-signal-cellular-null:before,
2687
- .mi.mi-signal-cellular-null:before {
2686
+ .material-icons.signal-cellular-null:before,
2687
+ .mi.signal-cellular-null:before {
2688
2688
  content: '\e1cf';
2689
2689
  }
2690
- .material-icons.mi-signal-cellular-off:before,
2691
- .mi.mi-signal-cellular-off:before {
2690
+ .material-icons.signal-cellular-off:before,
2691
+ .mi.signal-cellular-off:before {
2692
2692
  content: '\e1d0';
2693
2693
  }
2694
- .material-icons.mi-signal-wifi-4-bar:before,
2695
- .mi.mi-signal-wifi-4-bar:before {
2694
+ .material-icons.signal-wifi-4-bar:before,
2695
+ .mi.signal-wifi-4-bar:before {
2696
2696
  content: '\e1d8';
2697
2697
  }
2698
- .material-icons.mi-signal-wifi-4-bar-lock:before,
2699
- .mi.mi-signal-wifi-4-bar-lock:before {
2698
+ .material-icons.signal-wifi-4-bar-lock:before,
2699
+ .mi.signal-wifi-4-bar-lock:before {
2700
2700
  content: '\e1d9';
2701
2701
  }
2702
- .material-icons.mi-signal-wifi-off:before,
2703
- .mi.mi-signal-wifi-off:before {
2702
+ .material-icons.signal-wifi-off:before,
2703
+ .mi.signal-wifi-off:before {
2704
2704
  content: '\e1da';
2705
2705
  }
2706
- .material-icons.mi-sim-card:before,
2707
- .mi.mi-sim-card:before {
2706
+ .material-icons.sim-card:before,
2707
+ .mi.sim-card:before {
2708
2708
  content: '\e32b';
2709
2709
  }
2710
- .material-icons.mi-sim-card-alert:before,
2711
- .mi.mi-sim-card-alert:before {
2710
+ .material-icons.sim-card-alert:before,
2711
+ .mi.sim-card-alert:before {
2712
2712
  content: '\e624';
2713
2713
  }
2714
- .material-icons.mi-skip-next:before,
2715
- .mi.mi-skip-next:before {
2714
+ .material-icons.skip-next:before,
2715
+ .mi.skip-next:before {
2716
2716
  content: '\e044';
2717
2717
  }
2718
- .material-icons.mi-skip-previous:before,
2719
- .mi.mi-skip-previous:before {
2718
+ .material-icons.skip-previous:before,
2719
+ .mi.skip-previous:before {
2720
2720
  content: '\e045';
2721
2721
  }
2722
- .material-icons.mi-slideshow:before,
2723
- .mi.mi-slideshow:before {
2722
+ .material-icons.slideshow:before,
2723
+ .mi.slideshow:before {
2724
2724
  content: '\e41b';
2725
2725
  }
2726
- .material-icons.mi-smartphone:before,
2727
- .mi.mi-smartphone:before {
2726
+ .material-icons.smartphone:before,
2727
+ .mi.smartphone:before {
2728
2728
  content: '\e32c';
2729
2729
  }
2730
- .material-icons.mi-sms:before,
2731
- .mi.mi-sms:before {
2730
+ .material-icons.sms:before,
2731
+ .mi.sms:before {
2732
2732
  content: '\e625';
2733
2733
  }
2734
- .material-icons.mi-sms-failed:before,
2735
- .mi.mi-sms-failed:before {
2734
+ .material-icons.sms-failed:before,
2735
+ .mi.sms-failed:before {
2736
2736
  content: '\e626';
2737
2737
  }
2738
- .material-icons.mi-snooze:before,
2739
- .mi.mi-snooze:before {
2738
+ .material-icons.snooze:before,
2739
+ .mi.snooze:before {
2740
2740
  content: '\e046';
2741
2741
  }
2742
- .material-icons.mi-sort:before,
2743
- .mi.mi-sort:before {
2742
+ .material-icons.sort:before,
2743
+ .mi.sort:before {
2744
2744
  content: '\e164';
2745
2745
  }
2746
- .material-icons.mi-sort-by-alpha:before,
2747
- .mi.mi-sort-by-alpha:before {
2746
+ .material-icons.sort-by-alpha:before,
2747
+ .mi.sort-by-alpha:before {
2748
2748
  content: '\e053';
2749
2749
  }
2750
- .material-icons.mi-space-bar:before,
2751
- .mi.mi-space-bar:before {
2750
+ .material-icons.space-bar:before,
2751
+ .mi.space-bar:before {
2752
2752
  content: '\e256';
2753
2753
  }
2754
- .material-icons.mi-speaker:before,
2755
- .mi.mi-speaker:before {
2754
+ .material-icons.speaker:before,
2755
+ .mi.speaker:before {
2756
2756
  content: '\e32d';
2757
2757
  }
2758
- .material-icons.mi-speaker-group:before,
2759
- .mi.mi-speaker-group:before {
2758
+ .material-icons.speaker-group:before,
2759
+ .mi.speaker-group:before {
2760
2760
  content: '\e32e';
2761
2761
  }
2762
- .material-icons.mi-speaker-notes:before,
2763
- .mi.mi-speaker-notes:before {
2762
+ .material-icons.speaker-notes:before,
2763
+ .mi.speaker-notes:before {
2764
2764
  content: '\e8cd';
2765
2765
  }
2766
- .material-icons.mi-speaker-phone:before,
2767
- .mi.mi-speaker-phone:before {
2766
+ .material-icons.speaker-phone:before,
2767
+ .mi.speaker-phone:before {
2768
2768
  content: '\e0d2';
2769
2769
  }
2770
- .material-icons.mi-spellcheck:before,
2771
- .mi.mi-spellcheck:before {
2770
+ .material-icons.spellcheck:before,
2771
+ .mi.spellcheck:before {
2772
2772
  content: '\e8ce';
2773
2773
  }
2774
- .material-icons.mi-star:before,
2775
- .mi.mi-star:before {
2774
+ .material-icons.star:before,
2775
+ .mi.star:before {
2776
2776
  content: '\e838';
2777
2777
  }
2778
- .material-icons.mi-star-border:before,
2779
- .mi.mi-star-border:before {
2778
+ .material-icons.star-border:before,
2779
+ .mi.star-border:before {
2780
2780
  content: '\e83a';
2781
2781
  }
2782
- .material-icons.mi-star-half:before,
2783
- .mi.mi-star-half:before {
2782
+ .material-icons.star-half:before,
2783
+ .mi.star-half:before {
2784
2784
  content: '\e839';
2785
2785
  }
2786
- .material-icons.mi-stars:before,
2787
- .mi.mi-stars:before {
2786
+ .material-icons.stars:before,
2787
+ .mi.stars:before {
2788
2788
  content: '\e8d0';
2789
2789
  }
2790
- .material-icons.mi-stay-current-landscape:before,
2791
- .mi.mi-stay-current-landscape:before {
2790
+ .material-icons.stay-current-landscape:before,
2791
+ .mi.stay-current-landscape:before {
2792
2792
  content: '\e0d3';
2793
2793
  }
2794
- .material-icons.mi-stay-current-portrait:before,
2795
- .mi.mi-stay-current-portrait:before {
2794
+ .material-icons.stay-current-portrait:before,
2795
+ .mi.stay-current-portrait:before {
2796
2796
  content: '\e0d4';
2797
2797
  }
2798
- .material-icons.mi-stay-primary-landscape:before,
2799
- .mi.mi-stay-primary-landscape:before {
2798
+ .material-icons.stay-primary-landscape:before,
2799
+ .mi.stay-primary-landscape:before {
2800
2800
  content: '\e0d5';
2801
2801
  }
2802
- .material-icons.mi-stay-primary-portrait:before,
2803
- .mi.mi-stay-primary-portrait:before {
2802
+ .material-icons.stay-primary-portrait:before,
2803
+ .mi.stay-primary-portrait:before {
2804
2804
  content: '\e0d6';
2805
2805
  }
2806
- .material-icons.mi-stop:before,
2807
- .mi.mi-stop:before {
2806
+ .material-icons.stop:before,
2807
+ .mi.stop:before {
2808
2808
  content: '\e047';
2809
2809
  }
2810
- .material-icons.mi-storage:before,
2811
- .mi.mi-storage:before {
2810
+ .material-icons.storage:before,
2811
+ .mi.storage:before {
2812
2812
  content: '\e1db';
2813
2813
  }
2814
- .material-icons.mi-store:before,
2815
- .mi.mi-store:before {
2814
+ .material-icons.store:before,
2815
+ .mi.store:before {
2816
2816
  content: '\e8d1';
2817
2817
  }
2818
- .material-icons.mi-store-mall-directory:before,
2819
- .mi.mi-store-mall-directory:before {
2818
+ .material-icons.store-mall-directory:before,
2819
+ .mi.store-mall-directory:before {
2820
2820
  content: '\e563';
2821
2821
  }
2822
- .material-icons.mi-straighten:before,
2823
- .mi.mi-straighten:before {
2822
+ .material-icons.straighten:before,
2823
+ .mi.straighten:before {
2824
2824
  content: '\e41c';
2825
2825
  }
2826
- .material-icons.mi-strikethrough-s:before,
2827
- .mi.mi-strikethrough-s:before {
2826
+ .material-icons.strikethrough-s:before,
2827
+ .mi.strikethrough-s:before {
2828
2828
  content: '\e257';
2829
2829
  }
2830
- .material-icons.mi-style:before,
2831
- .mi.mi-style:before {
2830
+ .material-icons.style:before,
2831
+ .mi.style:before {
2832
2832
  content: '\e41d';
2833
2833
  }
2834
- .material-icons.mi-subject:before,
2835
- .mi.mi-subject:before {
2834
+ .material-icons.subject:before,
2835
+ .mi.subject:before {
2836
2836
  content: '\e8d2';
2837
2837
  }
2838
- .material-icons.mi-subtitles:before,
2839
- .mi.mi-subtitles:before {
2838
+ .material-icons.subtitles:before,
2839
+ .mi.subtitles:before {
2840
2840
  content: '\e048';
2841
2841
  }
2842
- .material-icons.mi-supervisor-account:before,
2843
- .mi.mi-supervisor-account:before {
2842
+ .material-icons.supervisor-account:before,
2843
+ .mi.supervisor-account:before {
2844
2844
  content: '\e8d3';
2845
2845
  }
2846
- .material-icons.mi-surround-sound:before,
2847
- .mi.mi-surround-sound:before {
2846
+ .material-icons.surround-sound:before,
2847
+ .mi.surround-sound:before {
2848
2848
  content: '\e049';
2849
2849
  }
2850
- .material-icons.mi-swap-calls:before,
2851
- .mi.mi-swap-calls:before {
2850
+ .material-icons.swap-calls:before,
2851
+ .mi.swap-calls:before {
2852
2852
  content: '\e0d7';
2853
2853
  }
2854
- .material-icons.mi-swap-horiz:before,
2855
- .mi.mi-swap-horiz:before {
2854
+ .material-icons.swap-horiz:before,
2855
+ .mi.swap-horiz:before {
2856
2856
  content: '\e8d4';
2857
2857
  }
2858
- .material-icons.mi-swap-vert:before,
2859
- .mi.mi-swap-vert:before {
2858
+ .material-icons.swap-vert:before,
2859
+ .mi.swap-vert:before {
2860
2860
  content: '\e8d5';
2861
2861
  }
2862
- .material-icons.mi-swap-vertical-circle:before,
2863
- .mi.mi-swap-vertical-circle:before {
2862
+ .material-icons.swap-vertical-circle:before,
2863
+ .mi.swap-vertical-circle:before {
2864
2864
  content: '\e8d6';
2865
2865
  }
2866
- .material-icons.mi-switch-camera:before,
2867
- .mi.mi-switch-camera:before {
2866
+ .material-icons.switch-camera:before,
2867
+ .mi.switch-camera:before {
2868
2868
  content: '\e41e';
2869
2869
  }
2870
- .material-icons.mi-switch-video:before,
2871
- .mi.mi-switch-video:before {
2870
+ .material-icons.switch-video:before,
2871
+ .mi.switch-video:before {
2872
2872
  content: '\e41f';
2873
2873
  }
2874
- .material-icons.mi-sync:before,
2875
- .mi.mi-sync:before {
2874
+ .material-icons.sync:before,
2875
+ .mi.sync:before {
2876
2876
  content: '\e627';
2877
2877
  }
2878
- .material-icons.mi-sync-disabled:before,
2879
- .mi.mi-sync-disabled:before {
2878
+ .material-icons.sync-disabled:before,
2879
+ .mi.sync-disabled:before {
2880
2880
  content: '\e628';
2881
2881
  }
2882
- .material-icons.mi-sync-problem:before,
2883
- .mi.mi-sync-problem:before {
2882
+ .material-icons.sync-problem:before,
2883
+ .mi.sync-problem:before {
2884
2884
  content: '\e629';
2885
2885
  }
2886
- .material-icons.mi-system-update:before,
2887
- .mi.mi-system-update:before {
2886
+ .material-icons.system-update:before,
2887
+ .mi.system-update:before {
2888
2888
  content: '\e62a';
2889
2889
  }
2890
- .material-icons.mi-system-update-alt:before,
2891
- .mi.mi-system-update-alt:before {
2890
+ .material-icons.system-update-alt:before,
2891
+ .mi.system-update-alt:before {
2892
2892
  content: '\e8d7';
2893
2893
  }
2894
- .material-icons.mi-tab:before,
2895
- .mi.mi-tab:before {
2894
+ .material-icons.tab:before,
2895
+ .mi.tab:before {
2896
2896
  content: '\e8d8';
2897
2897
  }
2898
- .material-icons.mi-tab-unselected:before,
2899
- .mi.mi-tab-unselected:before {
2898
+ .material-icons.tab-unselected:before,
2899
+ .mi.tab-unselected:before {
2900
2900
  content: '\e8d9';
2901
2901
  }
2902
- .material-icons.mi-tablet:before,
2903
- .mi.mi-tablet:before {
2902
+ .material-icons.tablet:before,
2903
+ .mi.tablet:before {
2904
2904
  content: '\e32f';
2905
2905
  }
2906
- .material-icons.mi-tablet-android:before,
2907
- .mi.mi-tablet-android:before {
2906
+ .material-icons.tablet-android:before,
2907
+ .mi.tablet-android:before {
2908
2908
  content: '\e330';
2909
2909
  }
2910
- .material-icons.mi-tablet-mac:before,
2911
- .mi.mi-tablet-mac:before {
2910
+ .material-icons.tablet-mac:before,
2911
+ .mi.tablet-mac:before {
2912
2912
  content: '\e331';
2913
2913
  }
2914
- .material-icons.mi-tag-faces:before,
2915
- .mi.mi-tag-faces:before {
2914
+ .material-icons.tag-faces:before,
2915
+ .mi.tag-faces:before {
2916
2916
  content: '\e420';
2917
2917
  }
2918
- .material-icons.mi-tap-and-play:before,
2919
- .mi.mi-tap-and-play:before {
2918
+ .material-icons.tap-and-play:before,
2919
+ .mi.tap-and-play:before {
2920
2920
  content: '\e62b';
2921
2921
  }
2922
- .material-icons.mi-terrain:before,
2923
- .mi.mi-terrain:before {
2922
+ .material-icons.terrain:before,
2923
+ .mi.terrain:before {
2924
2924
  content: '\e564';
2925
2925
  }
2926
- .material-icons.mi-text-format:before,
2927
- .mi.mi-text-format:before {
2926
+ .material-icons.text-format:before,
2927
+ .mi.text-format:before {
2928
2928
  content: '\e165';
2929
2929
  }
2930
- .material-icons.mi-textsms:before,
2931
- .mi.mi-textsms:before {
2930
+ .material-icons.textsms:before,
2931
+ .mi.textsms:before {
2932
2932
  content: '\e0d8';
2933
2933
  }
2934
- .material-icons.mi-texture:before,
2935
- .mi.mi-texture:before {
2934
+ .material-icons.texture:before,
2935
+ .mi.texture:before {
2936
2936
  content: '\e421';
2937
2937
  }
2938
- .material-icons.mi-theaters:before,
2939
- .mi.mi-theaters:before {
2938
+ .material-icons.theaters:before,
2939
+ .mi.theaters:before {
2940
2940
  content: '\e8da';
2941
2941
  }
2942
- .material-icons.mi-thumb-down:before,
2943
- .mi.mi-thumb-down:before {
2942
+ .material-icons.thumb-down:before,
2943
+ .mi.thumb-down:before {
2944
2944
  content: '\e8db';
2945
2945
  }
2946
- .material-icons.mi-thumb-up:before,
2947
- .mi.mi-thumb-up:before {
2946
+ .material-icons.thumb-up:before,
2947
+ .mi.thumb-up:before {
2948
2948
  content: '\e8dc';
2949
2949
  }
2950
- .material-icons.mi-thumbs-up-down:before,
2951
- .mi.mi-thumbs-up-down:before {
2950
+ .material-icons.thumbs-up-down:before,
2951
+ .mi.thumbs-up-down:before {
2952
2952
  content: '\e8dd';
2953
2953
  }
2954
- .material-icons.mi-time-to-leave:before,
2955
- .mi.mi-time-to-leave:before {
2954
+ .material-icons.time-to-leave:before,
2955
+ .mi.time-to-leave:before {
2956
2956
  content: '\e62c';
2957
2957
  }
2958
- .material-icons.mi-timelapse:before,
2959
- .mi.mi-timelapse:before {
2958
+ .material-icons.timelapse:before,
2959
+ .mi.timelapse:before {
2960
2960
  content: '\e422';
2961
2961
  }
2962
- .material-icons.mi-timer:before,
2963
- .mi.mi-timer:before {
2962
+ .material-icons.timer:before,
2963
+ .mi.timer:before {
2964
2964
  content: '\e425';
2965
2965
  }
2966
- .material-icons.mi-timer-10:before,
2967
- .mi.mi-timer-10:before {
2966
+ .material-icons.timer-10:before,
2967
+ .mi.timer-10:before {
2968
2968
  content: '\e423';
2969
2969
  }
2970
- .material-icons.mi-timer-3:before,
2971
- .mi.mi-timer-3:before {
2970
+ .material-icons.timer-3:before,
2971
+ .mi.timer-3:before {
2972
2972
  content: '\e424';
2973
2973
  }
2974
- .material-icons.mi-timer-off:before,
2975
- .mi.mi-timer-off:before {
2974
+ .material-icons.timer-off:before,
2975
+ .mi.timer-off:before {
2976
2976
  content: '\e426';
2977
2977
  }
2978
- .material-icons.mi-toc:before,
2979
- .mi.mi-toc:before {
2978
+ .material-icons.toc:before,
2979
+ .mi.toc:before {
2980
2980
  content: '\e8de';
2981
2981
  }
2982
- .material-icons.mi-today:before,
2983
- .mi.mi-today:before {
2982
+ .material-icons.today:before,
2983
+ .mi.today:before {
2984
2984
  content: '\e8df';
2985
2985
  }
2986
- .material-icons.mi-toll:before,
2987
- .mi.mi-toll:before {
2986
+ .material-icons.toll:before,
2987
+ .mi.toll:before {
2988
2988
  content: '\e8e0';
2989
2989
  }
2990
- .material-icons.mi-tonality:before,
2991
- .mi.mi-tonality:before {
2990
+ .material-icons.tonality:before,
2991
+ .mi.tonality:before {
2992
2992
  content: '\e427';
2993
2993
  }
2994
- .material-icons.mi-toys:before,
2995
- .mi.mi-toys:before {
2994
+ .material-icons.toys:before,
2995
+ .mi.toys:before {
2996
2996
  content: '\e332';
2997
2997
  }
2998
- .material-icons.mi-track-changes:before,
2999
- .mi.mi-track-changes:before {
2998
+ .material-icons.track-changes:before,
2999
+ .mi.track-changes:before {
3000
3000
  content: '\e8e1';
3001
3001
  }
3002
- .material-icons.mi-traffic:before,
3003
- .mi.mi-traffic:before {
3002
+ .material-icons.traffic:before,
3003
+ .mi.traffic:before {
3004
3004
  content: '\e565';
3005
3005
  }
3006
- .material-icons.mi-transform:before,
3007
- .mi.mi-transform:before {
3006
+ .material-icons.transform:before,
3007
+ .mi.transform:before {
3008
3008
  content: '\e428';
3009
3009
  }
3010
- .material-icons.mi-translate:before,
3011
- .mi.mi-translate:before {
3010
+ .material-icons.translate:before,
3011
+ .mi.translate:before {
3012
3012
  content: '\e8e2';
3013
3013
  }
3014
- .material-icons.mi-trending-down:before,
3015
- .mi.mi-trending-down:before {
3014
+ .material-icons.trending-down:before,
3015
+ .mi.trending-down:before {
3016
3016
  content: '\e8e3';
3017
3017
  }
3018
- .material-icons.mi-trending-flat:before,
3019
- .mi.mi-trending-flat:before {
3018
+ .material-icons.trending-flat:before,
3019
+ .mi.trending-flat:before {
3020
3020
  content: '\e8e4';
3021
3021
  }
3022
- .material-icons.mi-trending-up:before,
3023
- .mi.mi-trending-up:before {
3022
+ .material-icons.trending-up:before,
3023
+ .mi.trending-up:before {
3024
3024
  content: '\e8e5';
3025
3025
  }
3026
- .material-icons.mi-tune:before,
3027
- .mi.mi-tune:before {
3026
+ .material-icons.tune:before,
3027
+ .mi.tune:before {
3028
3028
  content: '\e429';
3029
3029
  }
3030
- .material-icons.mi-turned-in:before,
3031
- .mi.mi-turned-in:before {
3030
+ .material-icons.turned-in:before,
3031
+ .mi.turned-in:before {
3032
3032
  content: '\e8e6';
3033
3033
  }
3034
- .material-icons.mi-turned-in-not:before,
3035
- .mi.mi-turned-in-not:before {
3034
+ .material-icons.turned-in-not:before,
3035
+ .mi.turned-in-not:before {
3036
3036
  content: '\e8e7';
3037
3037
  }
3038
- .material-icons.mi-tv:before,
3039
- .mi.mi-tv:before {
3038
+ .material-icons.tv:before,
3039
+ .mi.tv:before {
3040
3040
  content: '\e333';
3041
3041
  }
3042
- .material-icons.mi-undo:before,
3043
- .mi.mi-undo:before {
3042
+ .material-icons.undo:before,
3043
+ .mi.undo:before {
3044
3044
  content: '\e166';
3045
3045
  }
3046
- .material-icons.mi-unfold-less:before,
3047
- .mi.mi-unfold-less:before {
3046
+ .material-icons.unfold-less:before,
3047
+ .mi.unfold-less:before {
3048
3048
  content: '\e5d6';
3049
3049
  }
3050
- .material-icons.mi-unfold-more:before,
3051
- .mi.mi-unfold-more:before {
3050
+ .material-icons.unfold-more:before,
3051
+ .mi.unfold-more:before {
3052
3052
  content: '\e5d7';
3053
3053
  }
3054
- .material-icons.mi-usb:before,
3055
- .mi.mi-usb:before {
3054
+ .material-icons.usb:before,
3055
+ .mi.usb:before {
3056
3056
  content: '\e1e0';
3057
3057
  }
3058
- .material-icons.mi-verified-user:before,
3059
- .mi.mi-verified-user:before {
3058
+ .material-icons.verified-user:before,
3059
+ .mi.verified-user:before {
3060
3060
  content: '\e8e8';
3061
3061
  }
3062
- .material-icons.mi-vertical-align-bottom:before,
3063
- .mi.mi-vertical-align-bottom:before {
3062
+ .material-icons.vertical-align-bottom:before,
3063
+ .mi.vertical-align-bottom:before {
3064
3064
  content: '\e258';
3065
3065
  }
3066
- .material-icons.mi-vertical-align-center:before,
3067
- .mi.mi-vertical-align-center:before {
3066
+ .material-icons.vertical-align-center:before,
3067
+ .mi.vertical-align-center:before {
3068
3068
  content: '\e259';
3069
3069
  }
3070
- .material-icons.mi-vertical-align-top:before,
3071
- .mi.mi-vertical-align-top:before {
3070
+ .material-icons.vertical-align-top:before,
3071
+ .mi.vertical-align-top:before {
3072
3072
  content: '\e25a';
3073
3073
  }
3074
- .material-icons.mi-vibration:before,
3075
- .mi.mi-vibration:before {
3074
+ .material-icons.vibration:before,
3075
+ .mi.vibration:before {
3076
3076
  content: '\e62d';
3077
3077
  }
3078
- .material-icons.mi-video-library:before,
3079
- .mi.mi-video-library:before {
3078
+ .material-icons.video-library:before,
3079
+ .mi.video-library:before {
3080
3080
  content: '\e04a';
3081
3081
  }
3082
- .material-icons.mi-videocam:before,
3083
- .mi.mi-videocam:before {
3082
+ .material-icons.videocam:before,
3083
+ .mi.videocam:before {
3084
3084
  content: '\e04b';
3085
3085
  }
3086
- .material-icons.mi-videocam-off:before,
3087
- .mi.mi-videocam-off:before {
3086
+ .material-icons.videocam-off:before,
3087
+ .mi.videocam-off:before {
3088
3088
  content: '\e04c';
3089
3089
  }
3090
- .material-icons.mi-view-agenda:before,
3091
- .mi.mi-view-agenda:before {
3090
+ .material-icons.view-agenda:before,
3091
+ .mi.view-agenda:before {
3092
3092
  content: '\e8e9';
3093
3093
  }
3094
- .material-icons.mi-view-array:before,
3095
- .mi.mi-view-array:before {
3094
+ .material-icons.view-array:before,
3095
+ .mi.view-array:before {
3096
3096
  content: '\e8ea';
3097
3097
  }
3098
- .material-icons.mi-view-carousel:before,
3099
- .mi.mi-view-carousel:before {
3098
+ .material-icons.view-carousel:before,
3099
+ .mi.view-carousel:before {
3100
3100
  content: '\e8eb';
3101
3101
  }
3102
- .material-icons.mi-view-column:before,
3103
- .mi.mi-view-column:before {
3102
+ .material-icons.view-column:before,
3103
+ .mi.view-column:before {
3104
3104
  content: '\e8ec';
3105
3105
  }
3106
- .material-icons.mi-view-comfy:before,
3107
- .mi.mi-view-comfy:before {
3106
+ .material-icons.view-comfy:before,
3107
+ .mi.view-comfy:before {
3108
3108
  content: '\e42a';
3109
3109
  }
3110
- .material-icons.mi-view-compact:before,
3111
- .mi.mi-view-compact:before {
3110
+ .material-icons.view-compact:before,
3111
+ .mi.view-compact:before {
3112
3112
  content: '\e42b';
3113
3113
  }
3114
- .material-icons.mi-view-day:before,
3115
- .mi.mi-view-day:before {
3114
+ .material-icons.view-day:before,
3115
+ .mi.view-day:before {
3116
3116
  content: '\e8ed';
3117
3117
  }
3118
- .material-icons.mi-view-headline:before,
3119
- .mi.mi-view-headline:before {
3118
+ .material-icons.view-headline:before,
3119
+ .mi.view-headline:before {
3120
3120
  content: '\e8ee';
3121
3121
  }
3122
- .material-icons.mi-view-list:before,
3123
- .mi.mi-view-list:before {
3122
+ .material-icons.view-list:before,
3123
+ .mi.view-list:before {
3124
3124
  content: '\e8ef';
3125
3125
  }
3126
- .material-icons.mi-view-module:before,
3127
- .mi.mi-view-module:before {
3126
+ .material-icons.view-module:before,
3127
+ .mi.view-module:before {
3128
3128
  content: '\e8f0';
3129
3129
  }
3130
- .material-icons.mi-view-quilt:before,
3131
- .mi.mi-view-quilt:before {
3130
+ .material-icons.view-quilt:before,
3131
+ .mi.view-quilt:before {
3132
3132
  content: '\e8f1';
3133
3133
  }
3134
- .material-icons.mi-view-stream:before,
3135
- .mi.mi-view-stream:before {
3134
+ .material-icons.view-stream:before,
3135
+ .mi.view-stream:before {
3136
3136
  content: '\e8f2';
3137
3137
  }
3138
- .material-icons.mi-view-week:before,
3139
- .mi.mi-view-week:before {
3138
+ .material-icons.view-week:before,
3139
+ .mi.view-week:before {
3140
3140
  content: '\e8f3';
3141
3141
  }
3142
- .material-icons.mi-vignette:before,
3143
- .mi.mi-vignette:before {
3142
+ .material-icons.vignette:before,
3143
+ .mi.vignette:before {
3144
3144
  content: '\e435';
3145
3145
  }
3146
- .material-icons.mi-visibility:before,
3147
- .mi.mi-visibility:before {
3146
+ .material-icons.visibility:before,
3147
+ .mi.visibility:before {
3148
3148
  content: '\e8f4';
3149
3149
  }
3150
- .material-icons.mi-visibility-off:before,
3151
- .mi.mi-visibility-off:before {
3150
+ .material-icons.visibility-off:before,
3151
+ .mi.visibility-off:before {
3152
3152
  content: '\e8f5';
3153
3153
  }
3154
- .material-icons.mi-voice-chat:before,
3155
- .mi.mi-voice-chat:before {
3154
+ .material-icons.voice-chat:before,
3155
+ .mi.voice-chat:before {
3156
3156
  content: '\e62e';
3157
3157
  }
3158
- .material-icons.mi-voicemail:before,
3159
- .mi.mi-voicemail:before {
3158
+ .material-icons.voicemail:before,
3159
+ .mi.voicemail:before {
3160
3160
  content: '\e0d9';
3161
3161
  }
3162
- .material-icons.mi-volume-down:before,
3163
- .mi.mi-volume-down:before {
3162
+ .material-icons.volume-down:before,
3163
+ .mi.volume-down:before {
3164
3164
  content: '\e04d';
3165
3165
  }
3166
- .material-icons.mi-volume-mute:before,
3167
- .mi.mi-volume-mute:before {
3166
+ .material-icons.volume-mute:before,
3167
+ .mi.volume-mute:before {
3168
3168
  content: '\e04e';
3169
3169
  }
3170
- .material-icons.mi-volume-off:before,
3171
- .mi.mi-volume-off:before {
3170
+ .material-icons.volume-off:before,
3171
+ .mi.volume-off:before {
3172
3172
  content: '\e04f';
3173
3173
  }
3174
- .material-icons.mi-volume-up:before,
3175
- .mi.mi-volume-up:before {
3174
+ .material-icons.volume-up:before,
3175
+ .mi.volume-up:before {
3176
3176
  content: '\e050';
3177
3177
  }
3178
- .material-icons.mi-vpn-key:before,
3179
- .mi.mi-vpn-key:before {
3178
+ .material-icons.vpn-key:before,
3179
+ .mi.vpn-key:before {
3180
3180
  content: '\e0da';
3181
3181
  }
3182
- .material-icons.mi-vpn-lock:before,
3183
- .mi.mi-vpn-lock:before {
3182
+ .material-icons.vpn-lock:before,
3183
+ .mi.vpn-lock:before {
3184
3184
  content: '\e62f';
3185
3185
  }
3186
- .material-icons.mi-wallpaper:before,
3187
- .mi.mi-wallpaper:before {
3186
+ .material-icons.wallpaper:before,
3187
+ .mi.wallpaper:before {
3188
3188
  content: '\e1bc';
3189
3189
  }
3190
- .material-icons.mi-warning:before,
3191
- .mi.mi-warning:before {
3190
+ .material-icons.warning:before,
3191
+ .mi.warning:before {
3192
3192
  content: '\e002';
3193
3193
  }
3194
- .material-icons.mi-watch:before,
3195
- .mi.mi-watch:before {
3194
+ .material-icons.watch:before,
3195
+ .mi.watch:before {
3196
3196
  content: '\e334';
3197
3197
  }
3198
- .material-icons.mi-wb-auto:before,
3199
- .mi.mi-wb-auto:before {
3198
+ .material-icons.wb-auto:before,
3199
+ .mi.wb-auto:before {
3200
3200
  content: '\e42c';
3201
3201
  }
3202
- .material-icons.mi-wb-cloudy:before,
3203
- .mi.mi-wb-cloudy:before {
3202
+ .material-icons.wb-cloudy:before,
3203
+ .mi.wb-cloudy:before {
3204
3204
  content: '\e42d';
3205
3205
  }
3206
- .material-icons.mi-wb-incandescent:before,
3207
- .mi.mi-wb-incandescent:before {
3206
+ .material-icons.wb-incandescent:before,
3207
+ .mi.wb-incandescent:before {
3208
3208
  content: '\e42e';
3209
3209
  }
3210
- .material-icons.mi-wb-iridescent:before,
3211
- .mi.mi-wb-iridescent:before {
3210
+ .material-icons.wb-iridescent:before,
3211
+ .mi.wb-iridescent:before {
3212
3212
  content: '\e436';
3213
3213
  }
3214
- .material-icons.mi-wb-sunny:before,
3215
- .mi.mi-wb-sunny:before {
3214
+ .material-icons.wb-sunny:before,
3215
+ .mi.wb-sunny:before {
3216
3216
  content: '\e430';
3217
3217
  }
3218
- .material-icons.mi-wc:before,
3219
- .mi.mi-wc:before {
3218
+ .material-icons.wc:before,
3219
+ .mi.wc:before {
3220
3220
  content: '\e63d';
3221
3221
  }
3222
- .material-icons.mi-web:before,
3223
- .mi.mi-web:before {
3222
+ .material-icons.web:before,
3223
+ .mi.web:before {
3224
3224
  content: '\e051';
3225
3225
  }
3226
- .material-icons.mi-whatshot:before,
3227
- .mi.mi-whatshot:before {
3226
+ .material-icons.whatshot:before,
3227
+ .mi.whatshot:before {
3228
3228
  content: '\e80e';
3229
3229
  }
3230
- .material-icons.mi-widgets:before,
3231
- .mi.mi-widgets:before {
3230
+ .material-icons.widgets:before,
3231
+ .mi.widgets:before {
3232
3232
  content: '\e1bd';
3233
3233
  }
3234
- .material-icons.mi-wifi:before,
3235
- .mi.mi-wifi:before {
3234
+ .material-icons.wifi:before,
3235
+ .mi.wifi:before {
3236
3236
  content: '\e63e';
3237
3237
  }
3238
- .material-icons.mi-wifi-lock:before,
3239
- .mi.mi-wifi-lock:before {
3238
+ .material-icons.wifi-lock:before,
3239
+ .mi.wifi-lock:before {
3240
3240
  content: '\e1e1';
3241
3241
  }
3242
- .material-icons.mi-wifi-tethering:before,
3243
- .mi.mi-wifi-tethering:before {
3242
+ .material-icons.wifi-tethering:before,
3243
+ .mi.wifi-tethering:before {
3244
3244
  content: '\e1e2';
3245
3245
  }
3246
- .material-icons.mi-work:before,
3247
- .mi.mi-work:before {
3246
+ .material-icons.work:before,
3247
+ .mi.work:before {
3248
3248
  content: '\e8f9';
3249
3249
  }
3250
- .material-icons.mi-wrap-text:before,
3251
- .mi.mi-wrap-text:before {
3250
+ .material-icons.wrap-text:before,
3251
+ .mi.wrap-text:before {
3252
3252
  content: '\e25b';
3253
3253
  }
3254
- .material-icons.mi-youtube-searched-for:before,
3255
- .mi.mi-youtube-searched-for:before {
3254
+ .material-icons.youtube-searched-for:before,
3255
+ .mi.youtube-searched-for:before {
3256
3256
  content: '\e8fa';
3257
3257
  }
3258
- .material-icons.mi-zoom-in:before,
3259
- .mi.mi-zoom-in:before {
3258
+ .material-icons.zoom-in:before,
3259
+ .mi.zoom-in:before {
3260
3260
  content: '\e8ff';
3261
3261
  }
3262
- .material-icons.mi-zoom-out:before,
3263
- .mi.mi-zoom-out:before {
3262
+ .material-icons.zoom-out:before,
3263
+ .mi.zoom-out:before {
3264
3264
  content: '\e900';
3265
3265
  }