Commit c5169e0ee67a0b5f71b5579ff338759545735698

Authored by Renato De Donato
1 parent a1a3bc73

a new hope

Showing 1346 changed files with 53186 additions and 79694 deletions

Too many changes.

To preserve performance only 100 of 1346 files are displayed.

bower_components/Materialize/.bower.json 100644 โ†’ 100755
... ... @@ -64,14 +64,15 @@
64 64 },
65 65 "devDependencies": {},
66 66 "homepage": "https://github.com/Dogfalo/materialize",
67   - "version": "0.97.5",
68   - "_release": "0.97.5",
  67 + "version": "0.97.1",
  68 + "_release": "0.97.1",
69 69 "_resolution": {
70 70 "type": "version",
71   - "tag": "v0.97.5",
72   - "commit": "dc69e030f1c3b4b0da5fbf0e29edac5d09e1829b"
  71 + "tag": "v0.97.1",
  72 + "commit": "634e7fde2086f59d1ec3fae68cf9f187c193fa89"
73 73 },
74 74 "_source": "git://github.com/Dogfalo/materialize.git",
75 75 "_target": "~0.97.1",
76   - "_originalSource": "materialize"
  76 + "_originalSource": "materialize",
  77 + "_direct": true
77 78 }
78 79 \ No newline at end of file
... ...
bower_components/Materialize/.npmignore deleted
1   -images/
2 0 \ No newline at end of file
bower_components/Materialize/.travis.yml 100644 โ†’ 100755
1 1 language: node_js
2   -node_js:
3   - - "0.12"
4   -before_install:
5   - - npm install -g grunt-cli
6 2 git:
7 3 depth: 10
  4 +node_js:
  5 + - "0.10"
  6 +before_install:
  7 + - npm install -g grunt
  8 + - npm install -g grunt-cli
8 9 \ No newline at end of file
... ...
bower_components/Materialize/CHANGELOG.md 100644 โ†’ 100755
bower_components/Materialize/CONTRIBUTING.md 100644 โ†’ 100755
... ... @@ -19,75 +19,3 @@
19 19 - Make your changes
20 20 - Submit a pull request with full remarks documenting your changes
21 21 - Pull request MAY then be accepted by project creators
22   -
23   -## Jasmine Testing Guide
24   -**References:**
25   -- [Jasmine Documentation](http://jasmine.github.io/2.0/introduction.html)
26   -- [Grunt Jasmine Plugin](https://github.com/gruntjs/grunt-contrib-jasmine)
27   -- [Example Jasmine Tests](https://github.com/Dogfalo/materialize/tree/master/tests/spec)
28   -- [Travis CI](https://travis-ci.org/Dogfalo/materialize)
29   -
30   -Before you start, make sure you install grunt and all its dependencies. To verify you have all the correct dependencies you can run `grunt travis` and it will run the tests. If you get an errors and have not made any changes, it means you have not installed the proper dependencies.
31   -
32   -Materialize uses Jasmine as the testing framework. We also include a jQuery library which allows you to write tests using jQuery syntax.
33   -
34   -### Starting Out
35   -
36   -First to familiarize yourself with how the tests are structured, you can take a look inside the `tests/` directory. Each component should have its own folder. Follow the file-naming conventions that are used in the existing tests.
37   -
38   -Before writing tests, make sure you are working off of a clean git branch of your fork. This will greatly simplify the Pull Request process.
39   -
40   -### Writing Tests
41   -
42   -Before writing tests, make sure you understand what the expected-behavior of the component actually is. Reading over the component code and documentation will greatly aid you in this regard.
43   -
44   -Use `describe` blocks to section disparate portions of tests and `it` blocks inside those to further break up tests into features. Inside `it` blocks, you can have multiple except statements. As a general testing principle, be sure to try and test both the case and its โ€œinverseโ€ to lessen the chance for false positives.
45   -
46   -Example:
47   -```javascript
48   -expect(toast.first('span').text()).toBe('I am toast content');
49   -expect(toast.first('span').text()).not.toBe('I am toast');
50   -```
51   -
52   -You can use beforeEach, and afterEach in either block to designate code that will execute before or after each item. This is useful if you need to setup some scenario for each test, or reset some things after each test.
53   -
54   -When writing expect statements (Jasmineโ€™s form of assert), it is very important to write an expected behavior string so in the event of an error, the test that failed is very clear.
55   -
56   -Example:
57   -```javascript
58   -expect(toast.length).toBe(0, 'because toast should be removed by now');
59   -```
60   -When this expect statement fails it will list the reason as โ€œbecause toast should be removed by nowโ€.
61   -
62   -Because our components are very front end heavy, familiarize yourself with jQuery ways of interacting with the dom and our components. You can use methods like [trigger](http://api.jquery.com/trigger/), to simulate certain events like the user clicking a button.
63   -
64   -We also understand that testing CSS properties is pretty tough so youโ€™ll have to be creative when writing good tests that ensure the styling is still working. Try and cover as many cases as you can but donโ€™t worry if there are some edge cases. You can add comments describing some problematic edge cases in TODOs so we know about them.
65   -
66   -### Submitting Your Pull Request
67   -
68   -Try and keep your commit history clean and concise. Once you submit your pull request, [Travis CI](https://travis-ci.org/Dogfalo/materialize) will automatically run your tests and will show a checkmark to show that all the tests have passed. Once this is done, weโ€™ll review your tests and code and make comments if there are issues or things we think could be improved. Then once everything looks good weโ€™ll merge the code in!
69   -
70   -
71   -### Useful Jasmine Tips
72   -
73   -1. To only run a specific spec at a time, to avoid wasting your time running all our other tests, you can set the flag `--filter`. For example:
74   - ```
75   - `grunt travis --filter=tabs`
76   - ```
77   -
78   - This would only run specs with tabs in its name.
79   -
80   -2. If you need a timeout in your test (waiting for some animation or action to be executed) you need to use the done callback. In your `it()` behavior function set done as an argument to your anonymous function. Then you can use javascriptโ€™s window `setTimeout`s normally. And when you want the test to finish just call the `done()` function. For example:
81   -
82   - ```javascript
83   - it ('should wait for a timeout', function(done) {
84   - // Execute action
85   - timeout(setTimeout(function() {
86   - // Wait a second
87   - // Test for result
88   - done();
89   - }, 1000);
90   - });
91   - ```
92   -
93   - **Note:** If you add done as a callback, and you donโ€™t call the `done()` function, it will stall forever and error after a max limit of around 5 seconds.
94 22 \ No newline at end of file
... ...
bower_components/Materialize/LICENSE 100644 โ†’ 100755
bower_components/Materialize/bin/materialize.css 100644 โ†’ 100755
Changes suppressed. Click to show
1 1 .materialize-red.lighten-5 {
2   - background-color: #fdeaeb !important;
3   -}
  2 + background-color: #fdeaeb !important; }
4 3  
5 4 .materialize-red-text.text-lighten-5 {
6   - color: #fdeaeb !important;
7   -}
  5 + color: #fdeaeb !important; }
8 6  
9 7 .materialize-red.lighten-4 {
10   - background-color: #f8c1c3 !important;
11   -}
  8 + background-color: #f8c1c3 !important; }
12 9  
13 10 .materialize-red-text.text-lighten-4 {
14   - color: #f8c1c3 !important;
15   -}
  11 + color: #f8c1c3 !important; }
16 12  
17 13 .materialize-red.lighten-3 {
18   - background-color: #f3989b !important;
19   -}
  14 + background-color: #f3989b !important; }
20 15  
21 16 .materialize-red-text.text-lighten-3 {
22   - color: #f3989b !important;
23   -}
  17 + color: #f3989b !important; }
24 18  
25 19 .materialize-red.lighten-2 {
26   - background-color: #ee6e73 !important;
27   -}
  20 + background-color: #ee6e73 !important; }
28 21  
29 22 .materialize-red-text.text-lighten-2 {
30   - color: #ee6e73 !important;
31   -}
  23 + color: #ee6e73 !important; }
32 24  
33 25 .materialize-red.lighten-1 {
34   - background-color: #ea454b !important;
35   -}
  26 + background-color: #ea454b !important; }
36 27  
37 28 .materialize-red-text.text-lighten-1 {
38   - color: #ea454b !important;
39   -}
  29 + color: #ea454b !important; }
40 30  
41 31 .materialize-red {
42   - background-color: #e51c23 !important;
43   -}
  32 + background-color: #e51c23 !important; }
44 33  
45 34 .materialize-red-text {
46   - color: #e51c23 !important;
47   -}
  35 + color: #e51c23 !important; }
48 36  
49 37 .materialize-red.darken-1 {
50   - background-color: #d0181e !important;
51   -}
  38 + background-color: #d0181e !important; }
52 39  
53 40 .materialize-red-text.text-darken-1 {
54   - color: #d0181e !important;
55   -}
  41 + color: #d0181e !important; }
56 42  
57 43 .materialize-red.darken-2 {
58   - background-color: #b9151b !important;
59   -}
  44 + background-color: #b9151b !important; }
60 45  
61 46 .materialize-red-text.text-darken-2 {
62   - color: #b9151b !important;
63   -}
  47 + color: #b9151b !important; }
64 48  
65 49 .materialize-red.darken-3 {
66   - background-color: #a21318 !important;
67   -}
  50 + background-color: #a21318 !important; }
68 51  
69 52 .materialize-red-text.text-darken-3 {
70   - color: #a21318 !important;
71   -}
  53 + color: #a21318 !important; }
72 54  
73 55 .materialize-red.darken-4 {
74   - background-color: #8b1014 !important;
75   -}
  56 + background-color: #8b1014 !important; }
76 57  
77 58 .materialize-red-text.text-darken-4 {
78   - color: #8b1014 !important;
79   -}
  59 + color: #8b1014 !important; }
80 60  
81 61 .red.lighten-5 {
82   - background-color: #FFEBEE !important;
83   -}
  62 + background-color: #FFEBEE !important; }
84 63  
85 64 .red-text.text-lighten-5 {
86   - color: #FFEBEE !important;
87   -}
  65 + color: #FFEBEE !important; }
88 66  
89 67 .red.lighten-4 {
90   - background-color: #FFCDD2 !important;
91   -}
  68 + background-color: #FFCDD2 !important; }
92 69  
93 70 .red-text.text-lighten-4 {
94   - color: #FFCDD2 !important;
95   -}
  71 + color: #FFCDD2 !important; }
96 72  
97 73 .red.lighten-3 {
98   - background-color: #EF9A9A !important;
99   -}
  74 + background-color: #EF9A9A !important; }
100 75  
101 76 .red-text.text-lighten-3 {
102   - color: #EF9A9A !important;
103   -}
  77 + color: #EF9A9A !important; }
104 78  
105 79 .red.lighten-2 {
106   - background-color: #E57373 !important;
107   -}
  80 + background-color: #E57373 !important; }
108 81  
109 82 .red-text.text-lighten-2 {
110   - color: #E57373 !important;
111   -}
  83 + color: #E57373 !important; }
112 84  
113 85 .red.lighten-1 {
114   - background-color: #EF5350 !important;
115   -}
  86 + background-color: #EF5350 !important; }
116 87  
117 88 .red-text.text-lighten-1 {
118   - color: #EF5350 !important;
119   -}
  89 + color: #EF5350 !important; }
120 90  
121 91 .red {
122   - background-color: #F44336 !important;
123   -}
  92 + background-color: #F44336 !important; }
124 93  
125 94 .red-text {
126   - color: #F44336 !important;
127   -}
  95 + color: #F44336 !important; }
128 96  
129 97 .red.darken-1 {
130   - background-color: #E53935 !important;
131   -}
  98 + background-color: #E53935 !important; }
132 99  
133 100 .red-text.text-darken-1 {
134   - color: #E53935 !important;
135   -}
  101 + color: #E53935 !important; }
136 102  
137 103 .red.darken-2 {
138   - background-color: #D32F2F !important;
139   -}
  104 + background-color: #D32F2F !important; }
140 105  
141 106 .red-text.text-darken-2 {
142   - color: #D32F2F !important;
143   -}
  107 + color: #D32F2F !important; }
144 108  
145 109 .red.darken-3 {
146   - background-color: #C62828 !important;
147   -}
  110 + background-color: #C62828 !important; }
148 111  
149 112 .red-text.text-darken-3 {
150   - color: #C62828 !important;
151   -}
  113 + color: #C62828 !important; }
152 114  
153 115 .red.darken-4 {
154   - background-color: #B71C1C !important;
155   -}
  116 + background-color: #B71C1C !important; }
156 117  
157 118 .red-text.text-darken-4 {
158   - color: #B71C1C !important;
159   -}
  119 + color: #B71C1C !important; }
160 120  
161 121 .red.accent-1 {
162   - background-color: #FF8A80 !important;
163   -}
  122 + background-color: #FF8A80 !important; }
164 123  
165 124 .red-text.text-accent-1 {
166   - color: #FF8A80 !important;
167   -}
  125 + color: #FF8A80 !important; }
168 126  
169 127 .red.accent-2 {
170   - background-color: #FF5252 !important;
171   -}
  128 + background-color: #FF5252 !important; }
172 129  
173 130 .red-text.text-accent-2 {
174   - color: #FF5252 !important;
175   -}
  131 + color: #FF5252 !important; }
176 132  
177 133 .red.accent-3 {
178   - background-color: #FF1744 !important;
179   -}
  134 + background-color: #FF1744 !important; }
180 135  
181 136 .red-text.text-accent-3 {
182   - color: #FF1744 !important;
183   -}
  137 + color: #FF1744 !important; }
184 138  
185 139 .red.accent-4 {
186   - background-color: #D50000 !important;
187   -}
  140 + background-color: #D50000 !important; }
188 141  
189 142 .red-text.text-accent-4 {
190   - color: #D50000 !important;
191   -}
  143 + color: #D50000 !important; }
192 144  
193 145 .pink.lighten-5 {
194   - background-color: #fce4ec !important;
195   -}
  146 + background-color: #fce4ec !important; }
196 147  
197 148 .pink-text.text-lighten-5 {
198   - color: #fce4ec !important;
199   -}
  149 + color: #fce4ec !important; }
200 150  
201 151 .pink.lighten-4 {
202   - background-color: #f8bbd0 !important;
203   -}
  152 + background-color: #f8bbd0 !important; }
204 153  
205 154 .pink-text.text-lighten-4 {
206   - color: #f8bbd0 !important;
207   -}
  155 + color: #f8bbd0 !important; }
208 156  
209 157 .pink.lighten-3 {
210   - background-color: #f48fb1 !important;
211   -}
  158 + background-color: #f48fb1 !important; }
212 159  
213 160 .pink-text.text-lighten-3 {
214   - color: #f48fb1 !important;
215   -}
  161 + color: #f48fb1 !important; }
216 162  
217 163 .pink.lighten-2 {
218   - background-color: #f06292 !important;
219   -}
  164 + background-color: #f06292 !important; }
220 165  
221 166 .pink-text.text-lighten-2 {
222   - color: #f06292 !important;
223   -}
  167 + color: #f06292 !important; }
224 168  
225 169 .pink.lighten-1 {
226   - background-color: #ec407a !important;
227   -}
  170 + background-color: #ec407a !important; }
228 171  
229 172 .pink-text.text-lighten-1 {
230   - color: #ec407a !important;
231   -}
  173 + color: #ec407a !important; }
232 174  
233 175 .pink {
234   - background-color: #e91e63 !important;
235   -}
  176 + background-color: #e91e63 !important; }
236 177  
237 178 .pink-text {
238   - color: #e91e63 !important;
239   -}
  179 + color: #e91e63 !important; }
240 180  
241 181 .pink.darken-1 {
242   - background-color: #d81b60 !important;
243   -}
  182 + background-color: #d81b60 !important; }
244 183  
245 184 .pink-text.text-darken-1 {
246   - color: #d81b60 !important;
247   -}
  185 + color: #d81b60 !important; }
248 186  
249 187 .pink.darken-2 {
250   - background-color: #c2185b !important;
251   -}
  188 + background-color: #c2185b !important; }
252 189  
253 190 .pink-text.text-darken-2 {
254   - color: #c2185b !important;
255   -}
  191 + color: #c2185b !important; }
256 192  
257 193 .pink.darken-3 {
258   - background-color: #ad1457 !important;
259   -}
  194 + background-color: #ad1457 !important; }
260 195  
261 196 .pink-text.text-darken-3 {
262   - color: #ad1457 !important;
263   -}
  197 + color: #ad1457 !important; }
264 198  
265 199 .pink.darken-4 {
266   - background-color: #880e4f !important;
267   -}
  200 + background-color: #880e4f !important; }
268 201  
269 202 .pink-text.text-darken-4 {
270   - color: #880e4f !important;
271   -}
  203 + color: #880e4f !important; }
272 204  
273 205 .pink.accent-1 {
274   - background-color: #ff80ab !important;
275   -}
  206 + background-color: #ff80ab !important; }
276 207  
277 208 .pink-text.text-accent-1 {
278   - color: #ff80ab !important;
279   -}
  209 + color: #ff80ab !important; }
280 210  
281 211 .pink.accent-2 {
282   - background-color: #ff4081 !important;
283   -}
  212 + background-color: #ff4081 !important; }
284 213  
285 214 .pink-text.text-accent-2 {
286   - color: #ff4081 !important;
287   -}
  215 + color: #ff4081 !important; }
288 216  
289 217 .pink.accent-3 {
290   - background-color: #f50057 !important;
291   -}
  218 + background-color: #f50057 !important; }
292 219  
293 220 .pink-text.text-accent-3 {
294   - color: #f50057 !important;
295   -}
  221 + color: #f50057 !important; }
296 222  
297 223 .pink.accent-4 {
298   - background-color: #c51162 !important;
299   -}
  224 + background-color: #c51162 !important; }
300 225  
301 226 .pink-text.text-accent-4 {
302   - color: #c51162 !important;
303   -}
  227 + color: #c51162 !important; }
304 228  
305 229 .purple.lighten-5 {
306   - background-color: #f3e5f5 !important;
307   -}
  230 + background-color: #f3e5f5 !important; }
308 231  
309 232 .purple-text.text-lighten-5 {
310   - color: #f3e5f5 !important;
311   -}
  233 + color: #f3e5f5 !important; }
312 234  
313 235 .purple.lighten-4 {
314   - background-color: #e1bee7 !important;
315   -}
  236 + background-color: #e1bee7 !important; }
316 237  
317 238 .purple-text.text-lighten-4 {
318   - color: #e1bee7 !important;
319   -}
  239 + color: #e1bee7 !important; }
320 240  
321 241 .purple.lighten-3 {
322   - background-color: #ce93d8 !important;
323   -}
  242 + background-color: #ce93d8 !important; }
324 243  
325 244 .purple-text.text-lighten-3 {
326   - color: #ce93d8 !important;
327   -}
  245 + color: #ce93d8 !important; }
328 246  
329 247 .purple.lighten-2 {
330   - background-color: #ba68c8 !important;
331   -}
  248 + background-color: #ba68c8 !important; }
332 249  
333 250 .purple-text.text-lighten-2 {
334   - color: #ba68c8 !important;
335   -}
  251 + color: #ba68c8 !important; }
336 252  
337 253 .purple.lighten-1 {
338   - background-color: #ab47bc !important;
339   -}
  254 + background-color: #ab47bc !important; }
340 255  
341 256 .purple-text.text-lighten-1 {
342   - color: #ab47bc !important;
343   -}
  257 + color: #ab47bc !important; }
344 258  
345 259 .purple {
346   - background-color: #9c27b0 !important;
347   -}
  260 + background-color: #9c27b0 !important; }
348 261  
349 262 .purple-text {
350   - color: #9c27b0 !important;
351   -}
  263 + color: #9c27b0 !important; }
352 264  
353 265 .purple.darken-1 {
354   - background-color: #8e24aa !important;
355   -}
  266 + background-color: #8e24aa !important; }
356 267  
357 268 .purple-text.text-darken-1 {
358   - color: #8e24aa !important;
359   -}
  269 + color: #8e24aa !important; }
360 270  
361 271 .purple.darken-2 {
362   - background-color: #7b1fa2 !important;
363   -}
  272 + background-color: #7b1fa2 !important; }
364 273  
365 274 .purple-text.text-darken-2 {
366   - color: #7b1fa2 !important;
367   -}
  275 + color: #7b1fa2 !important; }
368 276  
369 277 .purple.darken-3 {
370   - background-color: #6a1b9a !important;
371   -}
  278 + background-color: #6a1b9a !important; }
372 279  
373 280 .purple-text.text-darken-3 {
374   - color: #6a1b9a !important;
375   -}
  281 + color: #6a1b9a !important; }
376 282  
377 283 .purple.darken-4 {
378   - background-color: #4a148c !important;
379   -}
  284 + background-color: #4a148c !important; }
380 285  
381 286 .purple-text.text-darken-4 {
382   - color: #4a148c !important;
383   -}
  287 + color: #4a148c !important; }
384 288  
385 289 .purple.accent-1 {
386   - background-color: #ea80fc !important;
387   -}
  290 + background-color: #ea80fc !important; }
388 291  
389 292 .purple-text.text-accent-1 {
390   - color: #ea80fc !important;
391   -}
  293 + color: #ea80fc !important; }
392 294  
393 295 .purple.accent-2 {
394   - background-color: #e040fb !important;
395   -}
  296 + background-color: #e040fb !important; }
396 297  
397 298 .purple-text.text-accent-2 {
398   - color: #e040fb !important;
399   -}
  299 + color: #e040fb !important; }
400 300  
401 301 .purple.accent-3 {
402   - background-color: #d500f9 !important;
403   -}
  302 + background-color: #d500f9 !important; }
404 303  
405 304 .purple-text.text-accent-3 {
406   - color: #d500f9 !important;
407   -}
  305 + color: #d500f9 !important; }
408 306  
409 307 .purple.accent-4 {
410   - background-color: #aa00ff !important;
411   -}
  308 + background-color: #aa00ff !important; }
412 309  
413 310 .purple-text.text-accent-4 {
414   - color: #aa00ff !important;
415   -}
  311 + color: #aa00ff !important; }
416 312  
417 313 .deep-purple.lighten-5 {
418   - background-color: #ede7f6 !important;
419   -}
  314 + background-color: #ede7f6 !important; }
420 315  
421 316 .deep-purple-text.text-lighten-5 {
422   - color: #ede7f6 !important;
423   -}
  317 + color: #ede7f6 !important; }
424 318  
425 319 .deep-purple.lighten-4 {
426   - background-color: #d1c4e9 !important;
427   -}
  320 + background-color: #d1c4e9 !important; }
428 321  
429 322 .deep-purple-text.text-lighten-4 {
430   - color: #d1c4e9 !important;
431   -}
  323 + color: #d1c4e9 !important; }
432 324  
433 325 .deep-purple.lighten-3 {
434   - background-color: #b39ddb !important;
435   -}
  326 + background-color: #b39ddb !important; }
436 327  
437 328 .deep-purple-text.text-lighten-3 {
438   - color: #b39ddb !important;
439   -}
  329 + color: #b39ddb !important; }
440 330  
441 331 .deep-purple.lighten-2 {
442   - background-color: #9575cd !important;
443   -}
  332 + background-color: #9575cd !important; }
444 333  
445 334 .deep-purple-text.text-lighten-2 {
446   - color: #9575cd !important;
447   -}
  335 + color: #9575cd !important; }
448 336  
449 337 .deep-purple.lighten-1 {
450   - background-color: #7e57c2 !important;
451   -}
  338 + background-color: #7e57c2 !important; }
452 339  
453 340 .deep-purple-text.text-lighten-1 {
454   - color: #7e57c2 !important;
455   -}
  341 + color: #7e57c2 !important; }
456 342  
457 343 .deep-purple {
458   - background-color: #673ab7 !important;
459   -}
  344 + background-color: #673ab7 !important; }
460 345  
461 346 .deep-purple-text {
462   - color: #673ab7 !important;
463   -}
  347 + color: #673ab7 !important; }
464 348  
465 349 .deep-purple.darken-1 {
466   - background-color: #5e35b1 !important;
467   -}
  350 + background-color: #5e35b1 !important; }
468 351  
469 352 .deep-purple-text.text-darken-1 {
470   - color: #5e35b1 !important;
471   -}
  353 + color: #5e35b1 !important; }
472 354  
473 355 .deep-purple.darken-2 {
474   - background-color: #512da8 !important;
475   -}
  356 + background-color: #512da8 !important; }
476 357  
477 358 .deep-purple-text.text-darken-2 {
478   - color: #512da8 !important;
479   -}
  359 + color: #512da8 !important; }
480 360  
481 361 .deep-purple.darken-3 {
482   - background-color: #4527a0 !important;
483   -}
  362 + background-color: #4527a0 !important; }
484 363  
485 364 .deep-purple-text.text-darken-3 {
486   - color: #4527a0 !important;
487   -}
  365 + color: #4527a0 !important; }
488 366  
489 367 .deep-purple.darken-4 {
490   - background-color: #311b92 !important;
491   -}
  368 + background-color: #311b92 !important; }
492 369  
493 370 .deep-purple-text.text-darken-4 {
494   - color: #311b92 !important;
495   -}
  371 + color: #311b92 !important; }
496 372  
497 373 .deep-purple.accent-1 {
498   - background-color: #b388ff !important;
499   -}
  374 + background-color: #b388ff !important; }
500 375  
501 376 .deep-purple-text.text-accent-1 {
502   - color: #b388ff !important;
503   -}
  377 + color: #b388ff !important; }
504 378  
505 379 .deep-purple.accent-2 {
506   - background-color: #7c4dff !important;
507   -}
  380 + background-color: #7c4dff !important; }
508 381  
509 382 .deep-purple-text.text-accent-2 {
510   - color: #7c4dff !important;
511   -}
  383 + color: #7c4dff !important; }
512 384  
513 385 .deep-purple.accent-3 {
514   - background-color: #651fff !important;
515   -}
  386 + background-color: #651fff !important; }
516 387  
517 388 .deep-purple-text.text-accent-3 {
518   - color: #651fff !important;
519   -}
  389 + color: #651fff !important; }
520 390  
521 391 .deep-purple.accent-4 {
522   - background-color: #6200ea !important;
523   -}
  392 + background-color: #6200ea !important; }
524 393  
525 394 .deep-purple-text.text-accent-4 {
526   - color: #6200ea !important;
527   -}
  395 + color: #6200ea !important; }
528 396  
529 397 .indigo.lighten-5 {
530   - background-color: #e8eaf6 !important;
531   -}
  398 + background-color: #e8eaf6 !important; }
532 399  
533 400 .indigo-text.text-lighten-5 {
534   - color: #e8eaf6 !important;
535   -}
  401 + color: #e8eaf6 !important; }
536 402  
537 403 .indigo.lighten-4 {
538   - background-color: #c5cae9 !important;
539   -}
  404 + background-color: #c5cae9 !important; }
540 405  
541 406 .indigo-text.text-lighten-4 {
542   - color: #c5cae9 !important;
543   -}
  407 + color: #c5cae9 !important; }
544 408  
545 409 .indigo.lighten-3 {
546   - background-color: #9fa8da !important;
547   -}
  410 + background-color: #9fa8da !important; }
548 411  
549 412 .indigo-text.text-lighten-3 {
550   - color: #9fa8da !important;
551   -}
  413 + color: #9fa8da !important; }
552 414  
553 415 .indigo.lighten-2 {
554   - background-color: #7986cb !important;
555   -}
  416 + background-color: #7986cb !important; }
556 417  
557 418 .indigo-text.text-lighten-2 {
558   - color: #7986cb !important;
559   -}
  419 + color: #7986cb !important; }
560 420  
561 421 .indigo.lighten-1 {
562   - background-color: #5c6bc0 !important;
563   -}
  422 + background-color: #5c6bc0 !important; }
564 423  
565 424 .indigo-text.text-lighten-1 {
566   - color: #5c6bc0 !important;
567   -}
  425 + color: #5c6bc0 !important; }
568 426  
569 427 .indigo {
570   - background-color: #3f51b5 !important;
571   -}
  428 + background-color: #3f51b5 !important; }
572 429  
573 430 .indigo-text {
574   - color: #3f51b5 !important;
575   -}
  431 + color: #3f51b5 !important; }
576 432  
577 433 .indigo.darken-1 {
578   - background-color: #3949ab !important;
579   -}
  434 + background-color: #3949ab !important; }
580 435  
581 436 .indigo-text.text-darken-1 {
582   - color: #3949ab !important;
583   -}
  437 + color: #3949ab !important; }
584 438  
585 439 .indigo.darken-2 {
586   - background-color: #303f9f !important;
587   -}
  440 + background-color: #303f9f !important; }
588 441  
589 442 .indigo-text.text-darken-2 {
590   - color: #303f9f !important;
591   -}
  443 + color: #303f9f !important; }
592 444  
593 445 .indigo.darken-3 {
594   - background-color: #283593 !important;
595   -}
  446 + background-color: #283593 !important; }
596 447  
597 448 .indigo-text.text-darken-3 {
598   - color: #283593 !important;
599   -}
  449 + color: #283593 !important; }
600 450  
601 451 .indigo.darken-4 {
602   - background-color: #1a237e !important;
603   -}
  452 + background-color: #1a237e !important; }
604 453  
605 454 .indigo-text.text-darken-4 {
606   - color: #1a237e !important;
607   -}
  455 + color: #1a237e !important; }
608 456  
609 457 .indigo.accent-1 {
610   - background-color: #8c9eff !important;
611   -}
  458 + background-color: #8c9eff !important; }
612 459  
613 460 .indigo-text.text-accent-1 {
614   - color: #8c9eff !important;
615   -}
  461 + color: #8c9eff !important; }
616 462  
617 463 .indigo.accent-2 {
618   - background-color: #536dfe !important;
619   -}
  464 + background-color: #536dfe !important; }
620 465  
621 466 .indigo-text.text-accent-2 {
622   - color: #536dfe !important;
623   -}
  467 + color: #536dfe !important; }
624 468  
625 469 .indigo.accent-3 {
626   - background-color: #3d5afe !important;
627   -}
  470 + background-color: #3d5afe !important; }
628 471  
629 472 .indigo-text.text-accent-3 {
630   - color: #3d5afe !important;
631   -}
  473 + color: #3d5afe !important; }
632 474  
633 475 .indigo.accent-4 {
634   - background-color: #304ffe !important;
635   -}
  476 + background-color: #304ffe !important; }
636 477  
637 478 .indigo-text.text-accent-4 {
638   - color: #304ffe !important;
639   -}
  479 + color: #304ffe !important; }
640 480  
641 481 .blue.lighten-5 {
642   - background-color: #E3F2FD !important;
643   -}
  482 + background-color: #E3F2FD !important; }
644 483  
645 484 .blue-text.text-lighten-5 {
646   - color: #E3F2FD !important;
647   -}
  485 + color: #E3F2FD !important; }
648 486  
649 487 .blue.lighten-4 {
650   - background-color: #BBDEFB !important;
651   -}
  488 + background-color: #BBDEFB !important; }
652 489  
653 490 .blue-text.text-lighten-4 {
654   - color: #BBDEFB !important;
655   -}
  491 + color: #BBDEFB !important; }
656 492  
657 493 .blue.lighten-3 {
658   - background-color: #90CAF9 !important;
659   -}
  494 + background-color: #90CAF9 !important; }
660 495  
661 496 .blue-text.text-lighten-3 {
662   - color: #90CAF9 !important;
663   -}
  497 + color: #90CAF9 !important; }
664 498  
665 499 .blue.lighten-2 {
666   - background-color: #64B5F6 !important;
667   -}
  500 + background-color: #64B5F6 !important; }
668 501  
669 502 .blue-text.text-lighten-2 {
670   - color: #64B5F6 !important;
671   -}
  503 + color: #64B5F6 !important; }
672 504  
673 505 .blue.lighten-1 {
674   - background-color: #42A5F5 !important;
675   -}
  506 + background-color: #42A5F5 !important; }
676 507  
677 508 .blue-text.text-lighten-1 {
678   - color: #42A5F5 !important;
679   -}
  509 + color: #42A5F5 !important; }
680 510  
681 511 .blue {
682   - background-color: #2196F3 !important;
683   -}
  512 + background-color: #2196F3 !important; }
684 513  
685 514 .blue-text {
686   - color: #2196F3 !important;
687   -}
  515 + color: #2196F3 !important; }
688 516  
689 517 .blue.darken-1 {
690   - background-color: #1E88E5 !important;
691   -}
  518 + background-color: #1E88E5 !important; }
692 519  
693 520 .blue-text.text-darken-1 {
694   - color: #1E88E5 !important;
695   -}
  521 + color: #1E88E5 !important; }
696 522  
697 523 .blue.darken-2 {
698   - background-color: #1976D2 !important;
699   -}
  524 + background-color: #1976D2 !important; }
700 525  
701 526 .blue-text.text-darken-2 {
702   - color: #1976D2 !important;
703   -}
  527 + color: #1976D2 !important; }
704 528  
705 529 .blue.darken-3 {
706   - background-color: #1565C0 !important;
707   -}
  530 + background-color: #1565C0 !important; }
708 531  
709 532 .blue-text.text-darken-3 {
710   - color: #1565C0 !important;
711   -}
  533 + color: #1565C0 !important; }
712 534  
713 535 .blue.darken-4 {
714   - background-color: #0D47A1 !important;
715   -}
  536 + background-color: #0D47A1 !important; }
716 537  
717 538 .blue-text.text-darken-4 {
718   - color: #0D47A1 !important;
719   -}
  539 + color: #0D47A1 !important; }
720 540  
721 541 .blue.accent-1 {
722   - background-color: #82B1FF !important;
723   -}
  542 + background-color: #82B1FF !important; }
724 543  
725 544 .blue-text.text-accent-1 {
726   - color: #82B1FF !important;
727   -}
  545 + color: #82B1FF !important; }
728 546  
729 547 .blue.accent-2 {
730   - background-color: #448AFF !important;
731   -}
  548 + background-color: #448AFF !important; }
732 549  
733 550 .blue-text.text-accent-2 {
734   - color: #448AFF !important;
735   -}
  551 + color: #448AFF !important; }
736 552  
737 553 .blue.accent-3 {
738   - background-color: #2979FF !important;
739   -}
  554 + background-color: #2979FF !important; }
740 555  
741 556 .blue-text.text-accent-3 {
742   - color: #2979FF !important;
743   -}
  557 + color: #2979FF !important; }
744 558  
745 559 .blue.accent-4 {
746   - background-color: #2962FF !important;
747   -}
  560 + background-color: #2962FF !important; }
748 561  
749 562 .blue-text.text-accent-4 {
750   - color: #2962FF !important;
751   -}
  563 + color: #2962FF !important; }
752 564  
753 565 .light-blue.lighten-5 {
754   - background-color: #e1f5fe !important;
755   -}
  566 + background-color: #e1f5fe !important; }
756 567  
757 568 .light-blue-text.text-lighten-5 {
758   - color: #e1f5fe !important;
759   -}
  569 + color: #e1f5fe !important; }
760 570  
761 571 .light-blue.lighten-4 {
762   - background-color: #b3e5fc !important;
763   -}
  572 + background-color: #b3e5fc !important; }
764 573  
765 574 .light-blue-text.text-lighten-4 {
766   - color: #b3e5fc !important;
767   -}
  575 + color: #b3e5fc !important; }
768 576  
769 577 .light-blue.lighten-3 {
770   - background-color: #81d4fa !important;
771   -}
  578 + background-color: #81d4fa !important; }
772 579  
773 580 .light-blue-text.text-lighten-3 {
774   - color: #81d4fa !important;
775   -}
  581 + color: #81d4fa !important; }
776 582  
777 583 .light-blue.lighten-2 {
778   - background-color: #4fc3f7 !important;
779   -}
  584 + background-color: #4fc3f7 !important; }
780 585  
781 586 .light-blue-text.text-lighten-2 {
782   - color: #4fc3f7 !important;
783   -}
  587 + color: #4fc3f7 !important; }
784 588  
785 589 .light-blue.lighten-1 {
786   - background-color: #29b6f6 !important;
787   -}
  590 + background-color: #29b6f6 !important; }
788 591  
789 592 .light-blue-text.text-lighten-1 {
790   - color: #29b6f6 !important;
791   -}
  593 + color: #29b6f6 !important; }
792 594  
793 595 .light-blue {
794   - background-color: #03a9f4 !important;
795   -}
  596 + background-color: #03a9f4 !important; }
796 597  
797 598 .light-blue-text {
798   - color: #03a9f4 !important;
799   -}
  599 + color: #03a9f4 !important; }
800 600  
801 601 .light-blue.darken-1 {
802   - background-color: #039be5 !important;
803   -}
  602 + background-color: #039be5 !important; }
804 603  
805 604 .light-blue-text.text-darken-1 {
806   - color: #039be5 !important;
807   -}
  605 + color: #039be5 !important; }
808 606  
809 607 .light-blue.darken-2 {
810   - background-color: #0288d1 !important;
811   -}
  608 + background-color: #0288d1 !important; }
812 609  
813 610 .light-blue-text.text-darken-2 {
814   - color: #0288d1 !important;
815   -}
  611 + color: #0288d1 !important; }
816 612  
817 613 .light-blue.darken-3 {
818   - background-color: #0277bd !important;
819   -}
  614 + background-color: #0277bd !important; }
820 615  
821 616 .light-blue-text.text-darken-3 {
822   - color: #0277bd !important;
823   -}
  617 + color: #0277bd !important; }
824 618  
825 619 .light-blue.darken-4 {
826   - background-color: #01579b !important;
827   -}
  620 + background-color: #01579b !important; }
828 621  
829 622 .light-blue-text.text-darken-4 {
830   - color: #01579b !important;
831   -}
  623 + color: #01579b !important; }
832 624  
833 625 .light-blue.accent-1 {
834   - background-color: #80d8ff !important;
835   -}
  626 + background-color: #80d8ff !important; }
836 627  
837 628 .light-blue-text.text-accent-1 {
838   - color: #80d8ff !important;
839   -}
  629 + color: #80d8ff !important; }
840 630  
841 631 .light-blue.accent-2 {
842   - background-color: #40c4ff !important;
843   -}
  632 + background-color: #40c4ff !important; }
844 633  
845 634 .light-blue-text.text-accent-2 {
846   - color: #40c4ff !important;
847   -}
  635 + color: #40c4ff !important; }
848 636  
849 637 .light-blue.accent-3 {
850   - background-color: #00b0ff !important;
851   -}
  638 + background-color: #00b0ff !important; }
852 639  
853 640 .light-blue-text.text-accent-3 {
854   - color: #00b0ff !important;
855   -}
  641 + color: #00b0ff !important; }
856 642  
857 643 .light-blue.accent-4 {
858   - background-color: #0091ea !important;
859   -}
  644 + background-color: #0091ea !important; }
860 645  
861 646 .light-blue-text.text-accent-4 {
862   - color: #0091ea !important;
863   -}
  647 + color: #0091ea !important; }
864 648  
865 649 .cyan.lighten-5 {
866   - background-color: #e0f7fa !important;
867   -}
  650 + background-color: #e0f7fa !important; }
868 651  
869 652 .cyan-text.text-lighten-5 {
870   - color: #e0f7fa !important;
871   -}
  653 + color: #e0f7fa !important; }
872 654  
873 655 .cyan.lighten-4 {
874   - background-color: #b2ebf2 !important;
875   -}
  656 + background-color: #b2ebf2 !important; }
876 657  
877 658 .cyan-text.text-lighten-4 {
878   - color: #b2ebf2 !important;
879   -}
  659 + color: #b2ebf2 !important; }
880 660  
881 661 .cyan.lighten-3 {
882   - background-color: #80deea !important;
883   -}
  662 + background-color: #80deea !important; }
884 663  
885 664 .cyan-text.text-lighten-3 {
886   - color: #80deea !important;
887   -}
  665 + color: #80deea !important; }
888 666  
889 667 .cyan.lighten-2 {
890   - background-color: #4dd0e1 !important;
891   -}
  668 + background-color: #4dd0e1 !important; }
892 669  
893 670 .cyan-text.text-lighten-2 {
894   - color: #4dd0e1 !important;
895   -}
  671 + color: #4dd0e1 !important; }
896 672  
897 673 .cyan.lighten-1 {
898   - background-color: #26c6da !important;
899   -}
  674 + background-color: #26c6da !important; }
900 675  
901 676 .cyan-text.text-lighten-1 {
902   - color: #26c6da !important;
903   -}
  677 + color: #26c6da !important; }
904 678  
905 679 .cyan {
906   - background-color: #00bcd4 !important;
907   -}
  680 + background-color: #00bcd4 !important; }
908 681  
909 682 .cyan-text {
910   - color: #00bcd4 !important;
911   -}
  683 + color: #00bcd4 !important; }
912 684  
913 685 .cyan.darken-1 {
914   - background-color: #00acc1 !important;
915   -}
  686 + background-color: #00acc1 !important; }
916 687  
917 688 .cyan-text.text-darken-1 {
918   - color: #00acc1 !important;
919   -}
  689 + color: #00acc1 !important; }
920 690  
921 691 .cyan.darken-2 {
922   - background-color: #0097a7 !important;
923   -}
  692 + background-color: #0097a7 !important; }
924 693  
925 694 .cyan-text.text-darken-2 {
926   - color: #0097a7 !important;
927   -}
  695 + color: #0097a7 !important; }
928 696  
929 697 .cyan.darken-3 {
930   - background-color: #00838f !important;
931   -}
  698 + background-color: #00838f !important; }
932 699  
933 700 .cyan-text.text-darken-3 {
934   - color: #00838f !important;
935   -}
  701 + color: #00838f !important; }
936 702  
937 703 .cyan.darken-4 {
938   - background-color: #006064 !important;
939   -}
  704 + background-color: #006064 !important; }
940 705  
941 706 .cyan-text.text-darken-4 {
942   - color: #006064 !important;
943   -}
  707 + color: #006064 !important; }
944 708  
945 709 .cyan.accent-1 {
946   - background-color: #84ffff !important;
947   -}
  710 + background-color: #84ffff !important; }
948 711  
949 712 .cyan-text.text-accent-1 {
950   - color: #84ffff !important;
951   -}
  713 + color: #84ffff !important; }
952 714  
953 715 .cyan.accent-2 {
954   - background-color: #18ffff !important;
955   -}
  716 + background-color: #18ffff !important; }
956 717  
957 718 .cyan-text.text-accent-2 {
958   - color: #18ffff !important;
959   -}
  719 + color: #18ffff !important; }
960 720  
961 721 .cyan.accent-3 {
962   - background-color: #00e5ff !important;
963   -}
  722 + background-color: #00e5ff !important; }
964 723  
965 724 .cyan-text.text-accent-3 {
966   - color: #00e5ff !important;
967   -}
  725 + color: #00e5ff !important; }
968 726  
969 727 .cyan.accent-4 {
970   - background-color: #00b8d4 !important;
971   -}
  728 + background-color: #00b8d4 !important; }
972 729  
973 730 .cyan-text.text-accent-4 {
974   - color: #00b8d4 !important;
975   -}
  731 + color: #00b8d4 !important; }
976 732  
977 733 .teal.lighten-5 {
978   - background-color: #e0f2f1 !important;
979   -}
  734 + background-color: #e0f2f1 !important; }
980 735  
981 736 .teal-text.text-lighten-5 {
982   - color: #e0f2f1 !important;
983   -}
  737 + color: #e0f2f1 !important; }
984 738  
985 739 .teal.lighten-4 {
986   - background-color: #b2dfdb !important;
987   -}
  740 + background-color: #b2dfdb !important; }
988 741  
989 742 .teal-text.text-lighten-4 {
990   - color: #b2dfdb !important;
991   -}
  743 + color: #b2dfdb !important; }
992 744  
993 745 .teal.lighten-3 {
994   - background-color: #80cbc4 !important;
995   -}
  746 + background-color: #80cbc4 !important; }
996 747  
997 748 .teal-text.text-lighten-3 {
998   - color: #80cbc4 !important;
999   -}
  749 + color: #80cbc4 !important; }
1000 750  
1001 751 .teal.lighten-2 {
1002   - background-color: #4db6ac !important;
1003   -}
  752 + background-color: #4db6ac !important; }
1004 753  
1005 754 .teal-text.text-lighten-2 {
1006   - color: #4db6ac !important;
1007   -}
  755 + color: #4db6ac !important; }
1008 756  
1009 757 .teal.lighten-1 {
1010   - background-color: #26a69a !important;
1011   -}
  758 + background-color: #26a69a !important; }
1012 759  
1013 760 .teal-text.text-lighten-1 {
1014   - color: #26a69a !important;
1015   -}
  761 + color: #26a69a !important; }
1016 762  
1017 763 .teal {
1018   - background-color: #009688 !important;
1019   -}
  764 + background-color: #009688 !important; }
1020 765  
1021 766 .teal-text {
1022   - color: #009688 !important;
1023   -}
  767 + color: #009688 !important; }
1024 768  
1025 769 .teal.darken-1 {
1026   - background-color: #00897b !important;
1027   -}
  770 + background-color: #00897b !important; }
1028 771  
1029 772 .teal-text.text-darken-1 {
1030   - color: #00897b !important;
1031   -}
  773 + color: #00897b !important; }
1032 774  
1033 775 .teal.darken-2 {
1034   - background-color: #00796b !important;
1035   -}
  776 + background-color: #00796b !important; }
1036 777  
1037 778 .teal-text.text-darken-2 {
1038   - color: #00796b !important;
1039   -}
  779 + color: #00796b !important; }
1040 780  
1041 781 .teal.darken-3 {
1042   - background-color: #00695c !important;
1043   -}
  782 + background-color: #00695c !important; }
1044 783  
1045 784 .teal-text.text-darken-3 {
1046   - color: #00695c !important;
1047   -}
  785 + color: #00695c !important; }
1048 786  
1049 787 .teal.darken-4 {
1050   - background-color: #004d40 !important;
1051   -}
  788 + background-color: #004d40 !important; }
1052 789  
1053 790 .teal-text.text-darken-4 {
1054   - color: #004d40 !important;
1055   -}
  791 + color: #004d40 !important; }
1056 792  
1057 793 .teal.accent-1 {
1058   - background-color: #a7ffeb !important;
1059   -}
  794 + background-color: #a7ffeb !important; }
1060 795  
1061 796 .teal-text.text-accent-1 {
1062   - color: #a7ffeb !important;
1063   -}
  797 + color: #a7ffeb !important; }
1064 798  
1065 799 .teal.accent-2 {
1066   - background-color: #64ffda !important;
1067   -}
  800 + background-color: #64ffda !important; }
1068 801  
1069 802 .teal-text.text-accent-2 {
1070   - color: #64ffda !important;
1071   -}
  803 + color: #64ffda !important; }
1072 804  
1073 805 .teal.accent-3 {
1074   - background-color: #1de9b6 !important;
1075   -}
  806 + background-color: #1de9b6 !important; }
1076 807  
1077 808 .teal-text.text-accent-3 {
1078   - color: #1de9b6 !important;
1079   -}
  809 + color: #1de9b6 !important; }
1080 810  
1081 811 .teal.accent-4 {
1082   - background-color: #00bfa5 !important;
1083   -}
  812 + background-color: #00bfa5 !important; }
1084 813  
1085 814 .teal-text.text-accent-4 {
1086   - color: #00bfa5 !important;
1087   -}
  815 + color: #00bfa5 !important; }
1088 816  
1089 817 .green.lighten-5 {
1090   - background-color: #E8F5E9 !important;
1091   -}
  818 + background-color: #E8F5E9 !important; }
1092 819  
1093 820 .green-text.text-lighten-5 {
1094   - color: #E8F5E9 !important;
1095   -}
  821 + color: #E8F5E9 !important; }
1096 822  
1097 823 .green.lighten-4 {
1098   - background-color: #C8E6C9 !important;
1099   -}
  824 + background-color: #C8E6C9 !important; }
1100 825  
1101 826 .green-text.text-lighten-4 {
1102   - color: #C8E6C9 !important;
1103   -}
  827 + color: #C8E6C9 !important; }
1104 828  
1105 829 .green.lighten-3 {
1106   - background-color: #A5D6A7 !important;
1107   -}
  830 + background-color: #A5D6A7 !important; }
1108 831  
1109 832 .green-text.text-lighten-3 {
1110   - color: #A5D6A7 !important;
1111   -}
  833 + color: #A5D6A7 !important; }
1112 834  
1113 835 .green.lighten-2 {
1114   - background-color: #81C784 !important;
1115   -}
  836 + background-color: #81C784 !important; }
1116 837  
1117 838 .green-text.text-lighten-2 {
1118   - color: #81C784 !important;
1119   -}
  839 + color: #81C784 !important; }
1120 840  
1121 841 .green.lighten-1 {
1122   - background-color: #66BB6A !important;
1123   -}
  842 + background-color: #66BB6A !important; }
1124 843  
1125 844 .green-text.text-lighten-1 {
1126   - color: #66BB6A !important;
1127   -}
  845 + color: #66BB6A !important; }
1128 846  
1129 847 .green {
1130   - background-color: #4CAF50 !important;
1131   -}
  848 + background-color: #4CAF50 !important; }
1132 849  
1133 850 .green-text {
1134   - color: #4CAF50 !important;
1135   -}
  851 + color: #4CAF50 !important; }
1136 852  
1137 853 .green.darken-1 {
1138   - background-color: #43A047 !important;
1139   -}
  854 + background-color: #43A047 !important; }
1140 855  
1141 856 .green-text.text-darken-1 {
1142   - color: #43A047 !important;
1143   -}
  857 + color: #43A047 !important; }
1144 858  
1145 859 .green.darken-2 {
1146   - background-color: #388E3C !important;
1147   -}
  860 + background-color: #388E3C !important; }
1148 861  
1149 862 .green-text.text-darken-2 {
1150   - color: #388E3C !important;
1151   -}
  863 + color: #388E3C !important; }
1152 864  
1153 865 .green.darken-3 {
1154   - background-color: #2E7D32 !important;
1155   -}
  866 + background-color: #2E7D32 !important; }
1156 867  
1157 868 .green-text.text-darken-3 {
1158   - color: #2E7D32 !important;
1159   -}
  869 + color: #2E7D32 !important; }
1160 870  
1161 871 .green.darken-4 {
1162   - background-color: #1B5E20 !important;
1163   -}
  872 + background-color: #1B5E20 !important; }
1164 873  
1165 874 .green-text.text-darken-4 {
1166   - color: #1B5E20 !important;
1167   -}
  875 + color: #1B5E20 !important; }
1168 876  
1169 877 .green.accent-1 {
1170   - background-color: #B9F6CA !important;
1171   -}
  878 + background-color: #B9F6CA !important; }
1172 879  
1173 880 .green-text.text-accent-1 {
1174   - color: #B9F6CA !important;
1175   -}
  881 + color: #B9F6CA !important; }
1176 882  
1177 883 .green.accent-2 {
1178   - background-color: #69F0AE !important;
1179   -}
  884 + background-color: #69F0AE !important; }
1180 885  
1181 886 .green-text.text-accent-2 {
1182   - color: #69F0AE !important;
1183   -}
  887 + color: #69F0AE !important; }
1184 888  
1185 889 .green.accent-3 {
1186   - background-color: #00E676 !important;
1187   -}
  890 + background-color: #00E676 !important; }
1188 891  
1189 892 .green-text.text-accent-3 {
1190   - color: #00E676 !important;
1191   -}
  893 + color: #00E676 !important; }
1192 894  
1193 895 .green.accent-4 {
1194   - background-color: #00C853 !important;
1195   -}
  896 + background-color: #00C853 !important; }
1196 897  
1197 898 .green-text.text-accent-4 {
1198   - color: #00C853 !important;
1199   -}
  899 + color: #00C853 !important; }
1200 900  
1201 901 .light-green.lighten-5 {
1202   - background-color: #f1f8e9 !important;
1203   -}
  902 + background-color: #f1f8e9 !important; }
1204 903  
1205 904 .light-green-text.text-lighten-5 {
1206   - color: #f1f8e9 !important;
1207   -}
  905 + color: #f1f8e9 !important; }
1208 906  
1209 907 .light-green.lighten-4 {
1210   - background-color: #dcedc8 !important;
1211   -}
  908 + background-color: #dcedc8 !important; }
1212 909  
1213 910 .light-green-text.text-lighten-4 {
1214   - color: #dcedc8 !important;
1215   -}
  911 + color: #dcedc8 !important; }
1216 912  
1217 913 .light-green.lighten-3 {
1218   - background-color: #c5e1a5 !important;
1219   -}
  914 + background-color: #c5e1a5 !important; }
1220 915  
1221 916 .light-green-text.text-lighten-3 {
1222   - color: #c5e1a5 !important;
1223   -}
  917 + color: #c5e1a5 !important; }
1224 918  
1225 919 .light-green.lighten-2 {
1226   - background-color: #aed581 !important;
1227   -}
  920 + background-color: #aed581 !important; }
1228 921  
1229 922 .light-green-text.text-lighten-2 {
1230   - color: #aed581 !important;
1231   -}
  923 + color: #aed581 !important; }
1232 924  
1233 925 .light-green.lighten-1 {
1234   - background-color: #9ccc65 !important;
1235   -}
  926 + background-color: #9ccc65 !important; }
1236 927  
1237 928 .light-green-text.text-lighten-1 {
1238   - color: #9ccc65 !important;
1239   -}
  929 + color: #9ccc65 !important; }
1240 930  
1241 931 .light-green {
1242   - background-color: #8bc34a !important;
1243   -}
  932 + background-color: #8bc34a !important; }
1244 933  
1245 934 .light-green-text {
1246   - color: #8bc34a !important;
1247   -}
  935 + color: #8bc34a !important; }
1248 936  
1249 937 .light-green.darken-1 {
1250   - background-color: #7cb342 !important;
1251   -}
  938 + background-color: #7cb342 !important; }
1252 939  
1253 940 .light-green-text.text-darken-1 {
1254   - color: #7cb342 !important;
1255   -}
  941 + color: #7cb342 !important; }
1256 942  
1257 943 .light-green.darken-2 {
1258   - background-color: #689f38 !important;
1259   -}
  944 + background-color: #689f38 !important; }
1260 945  
1261 946 .light-green-text.text-darken-2 {
1262   - color: #689f38 !important;
1263   -}
  947 + color: #689f38 !important; }
1264 948  
1265 949 .light-green.darken-3 {
1266   - background-color: #558b2f !important;
1267   -}
  950 + background-color: #558b2f !important; }
1268 951  
1269 952 .light-green-text.text-darken-3 {
1270   - color: #558b2f !important;
1271   -}
  953 + color: #558b2f !important; }
1272 954  
1273 955 .light-green.darken-4 {
1274   - background-color: #33691e !important;
1275   -}
  956 + background-color: #33691e !important; }
1276 957  
1277 958 .light-green-text.text-darken-4 {
1278   - color: #33691e !important;
1279   -}
  959 + color: #33691e !important; }
1280 960  
1281 961 .light-green.accent-1 {
1282   - background-color: #ccff90 !important;
1283   -}
  962 + background-color: #ccff90 !important; }
1284 963  
1285 964 .light-green-text.text-accent-1 {
1286   - color: #ccff90 !important;
1287   -}
  965 + color: #ccff90 !important; }
1288 966  
1289 967 .light-green.accent-2 {
1290   - background-color: #b2ff59 !important;
1291   -}
  968 + background-color: #b2ff59 !important; }
1292 969  
1293 970 .light-green-text.text-accent-2 {
1294   - color: #b2ff59 !important;
1295   -}
  971 + color: #b2ff59 !important; }
1296 972  
1297 973 .light-green.accent-3 {
1298   - background-color: #76ff03 !important;
1299   -}
  974 + background-color: #76ff03 !important; }
1300 975  
1301 976 .light-green-text.text-accent-3 {
1302   - color: #76ff03 !important;
1303   -}
  977 + color: #76ff03 !important; }
1304 978  
1305 979 .light-green.accent-4 {
1306   - background-color: #64dd17 !important;
1307   -}
  980 + background-color: #64dd17 !important; }
1308 981  
1309 982 .light-green-text.text-accent-4 {
1310   - color: #64dd17 !important;
1311   -}
  983 + color: #64dd17 !important; }
1312 984  
1313 985 .lime.lighten-5 {
1314   - background-color: #f9fbe7 !important;
1315   -}
  986 + background-color: #f9fbe7 !important; }
1316 987  
1317 988 .lime-text.text-lighten-5 {
1318   - color: #f9fbe7 !important;
1319   -}
  989 + color: #f9fbe7 !important; }
1320 990  
1321 991 .lime.lighten-4 {
1322   - background-color: #f0f4c3 !important;
1323   -}
  992 + background-color: #f0f4c3 !important; }
1324 993  
1325 994 .lime-text.text-lighten-4 {
1326   - color: #f0f4c3 !important;
1327   -}
  995 + color: #f0f4c3 !important; }
1328 996  
1329 997 .lime.lighten-3 {
1330   - background-color: #e6ee9c !important;
1331   -}
  998 + background-color: #e6ee9c !important; }
1332 999  
1333 1000 .lime-text.text-lighten-3 {
1334   - color: #e6ee9c !important;
1335   -}
  1001 + color: #e6ee9c !important; }
1336 1002  
1337 1003 .lime.lighten-2 {
1338   - background-color: #dce775 !important;
1339   -}
  1004 + background-color: #dce775 !important; }
1340 1005  
1341 1006 .lime-text.text-lighten-2 {
1342   - color: #dce775 !important;
1343   -}
  1007 + color: #dce775 !important; }
1344 1008  
1345 1009 .lime.lighten-1 {
1346   - background-color: #d4e157 !important;
1347   -}
  1010 + background-color: #d4e157 !important; }
1348 1011  
1349 1012 .lime-text.text-lighten-1 {
1350   - color: #d4e157 !important;
1351   -}
  1013 + color: #d4e157 !important; }
1352 1014  
1353 1015 .lime {
1354   - background-color: #cddc39 !important;
1355   -}
  1016 + background-color: #cddc39 !important; }
1356 1017  
1357 1018 .lime-text {
1358   - color: #cddc39 !important;
1359   -}
  1019 + color: #cddc39 !important; }
1360 1020  
1361 1021 .lime.darken-1 {
1362   - background-color: #c0ca33 !important;
1363   -}
  1022 + background-color: #c0ca33 !important; }
1364 1023  
1365 1024 .lime-text.text-darken-1 {
1366   - color: #c0ca33 !important;
1367   -}
  1025 + color: #c0ca33 !important; }
1368 1026  
1369 1027 .lime.darken-2 {
1370   - background-color: #afb42b !important;
1371   -}
  1028 + background-color: #afb42b !important; }
1372 1029  
1373 1030 .lime-text.text-darken-2 {
1374   - color: #afb42b !important;
1375   -}
  1031 + color: #afb42b !important; }
1376 1032  
1377 1033 .lime.darken-3 {
1378   - background-color: #9e9d24 !important;
1379   -}
  1034 + background-color: #9e9d24 !important; }
1380 1035  
1381 1036 .lime-text.text-darken-3 {
1382   - color: #9e9d24 !important;
1383   -}
  1037 + color: #9e9d24 !important; }
1384 1038  
1385 1039 .lime.darken-4 {
1386   - background-color: #827717 !important;
1387   -}
  1040 + background-color: #827717 !important; }
1388 1041  
1389 1042 .lime-text.text-darken-4 {
1390   - color: #827717 !important;
1391   -}
  1043 + color: #827717 !important; }
1392 1044  
1393 1045 .lime.accent-1 {
1394   - background-color: #f4ff81 !important;
1395   -}
  1046 + background-color: #f4ff81 !important; }
1396 1047  
1397 1048 .lime-text.text-accent-1 {
1398   - color: #f4ff81 !important;
1399   -}
  1049 + color: #f4ff81 !important; }
1400 1050  
1401 1051 .lime.accent-2 {
1402   - background-color: #eeff41 !important;
1403   -}
  1052 + background-color: #eeff41 !important; }
1404 1053  
1405 1054 .lime-text.text-accent-2 {
1406   - color: #eeff41 !important;
1407   -}
  1055 + color: #eeff41 !important; }
1408 1056  
1409 1057 .lime.accent-3 {
1410   - background-color: #c6ff00 !important;
1411   -}
  1058 + background-color: #c6ff00 !important; }
1412 1059  
1413 1060 .lime-text.text-accent-3 {
1414   - color: #c6ff00 !important;
1415   -}
  1061 + color: #c6ff00 !important; }
1416 1062  
1417 1063 .lime.accent-4 {
1418   - background-color: #aeea00 !important;
1419   -}
  1064 + background-color: #aeea00 !important; }
1420 1065  
1421 1066 .lime-text.text-accent-4 {
1422   - color: #aeea00 !important;
1423   -}
  1067 + color: #aeea00 !important; }
1424 1068  
1425 1069 .yellow.lighten-5 {
1426   - background-color: #fffde7 !important;
1427   -}
  1070 + background-color: #fffde7 !important; }
1428 1071  
1429 1072 .yellow-text.text-lighten-5 {
1430   - color: #fffde7 !important;
1431   -}
  1073 + color: #fffde7 !important; }
1432 1074  
1433 1075 .yellow.lighten-4 {
1434   - background-color: #fff9c4 !important;
1435   -}
  1076 + background-color: #fff9c4 !important; }
1436 1077  
1437 1078 .yellow-text.text-lighten-4 {
1438   - color: #fff9c4 !important;
1439   -}
  1079 + color: #fff9c4 !important; }
1440 1080  
1441 1081 .yellow.lighten-3 {
1442   - background-color: #fff59d !important;
1443   -}
  1082 + background-color: #fff59d !important; }
1444 1083  
1445 1084 .yellow-text.text-lighten-3 {
1446   - color: #fff59d !important;
1447   -}
  1085 + color: #fff59d !important; }
1448 1086  
1449 1087 .yellow.lighten-2 {
1450   - background-color: #fff176 !important;
1451   -}
  1088 + background-color: #fff176 !important; }
1452 1089  
1453 1090 .yellow-text.text-lighten-2 {
1454   - color: #fff176 !important;
1455   -}
  1091 + color: #fff176 !important; }
1456 1092  
1457 1093 .yellow.lighten-1 {
1458   - background-color: #ffee58 !important;
1459   -}
  1094 + background-color: #ffee58 !important; }
1460 1095  
1461 1096 .yellow-text.text-lighten-1 {
1462   - color: #ffee58 !important;
1463   -}
  1097 + color: #ffee58 !important; }
1464 1098  
1465 1099 .yellow {
1466   - background-color: #ffeb3b !important;
1467   -}
  1100 + background-color: #ffeb3b !important; }
1468 1101  
1469 1102 .yellow-text {
1470   - color: #ffeb3b !important;
1471   -}
  1103 + color: #ffeb3b !important; }
1472 1104  
1473 1105 .yellow.darken-1 {
1474   - background-color: #fdd835 !important;
1475   -}
  1106 + background-color: #fdd835 !important; }
1476 1107  
1477 1108 .yellow-text.text-darken-1 {
1478   - color: #fdd835 !important;
1479   -}
  1109 + color: #fdd835 !important; }
1480 1110  
1481 1111 .yellow.darken-2 {
1482   - background-color: #fbc02d !important;
1483   -}
  1112 + background-color: #fbc02d !important; }
1484 1113  
1485 1114 .yellow-text.text-darken-2 {
1486   - color: #fbc02d !important;
1487   -}
  1115 + color: #fbc02d !important; }
1488 1116  
1489 1117 .yellow.darken-3 {
1490   - background-color: #f9a825 !important;
1491   -}
  1118 + background-color: #f9a825 !important; }
1492 1119  
1493 1120 .yellow-text.text-darken-3 {
1494   - color: #f9a825 !important;
1495   -}
  1121 + color: #f9a825 !important; }
1496 1122  
1497 1123 .yellow.darken-4 {
1498   - background-color: #f57f17 !important;
1499   -}
  1124 + background-color: #f57f17 !important; }
1500 1125  
1501 1126 .yellow-text.text-darken-4 {
1502   - color: #f57f17 !important;
1503   -}
  1127 + color: #f57f17 !important; }
1504 1128  
1505 1129 .yellow.accent-1 {
1506   - background-color: #ffff8d !important;
1507   -}
  1130 + background-color: #ffff8d !important; }
1508 1131  
1509 1132 .yellow-text.text-accent-1 {
1510   - color: #ffff8d !important;
1511   -}
  1133 + color: #ffff8d !important; }
1512 1134  
1513 1135 .yellow.accent-2 {
1514   - background-color: #ffff00 !important;
1515   -}
  1136 + background-color: #ffff00 !important; }
1516 1137  
1517 1138 .yellow-text.text-accent-2 {
1518   - color: #ffff00 !important;
1519   -}
  1139 + color: #ffff00 !important; }
1520 1140  
1521 1141 .yellow.accent-3 {
1522   - background-color: #ffea00 !important;
1523   -}
  1142 + background-color: #ffea00 !important; }
1524 1143  
1525 1144 .yellow-text.text-accent-3 {
1526   - color: #ffea00 !important;
1527   -}
  1145 + color: #ffea00 !important; }
1528 1146  
1529 1147 .yellow.accent-4 {
1530   - background-color: #ffd600 !important;
1531   -}
  1148 + background-color: #ffd600 !important; }
1532 1149  
1533 1150 .yellow-text.text-accent-4 {
1534   - color: #ffd600 !important;
1535   -}
  1151 + color: #ffd600 !important; }
1536 1152  
1537 1153 .amber.lighten-5 {
1538   - background-color: #fff8e1 !important;
1539   -}
  1154 + background-color: #fff8e1 !important; }
1540 1155  
1541 1156 .amber-text.text-lighten-5 {
1542   - color: #fff8e1 !important;
1543   -}
  1157 + color: #fff8e1 !important; }
1544 1158  
1545 1159 .amber.lighten-4 {
1546   - background-color: #ffecb3 !important;
1547   -}
  1160 + background-color: #ffecb3 !important; }
1548 1161  
1549 1162 .amber-text.text-lighten-4 {
1550   - color: #ffecb3 !important;
1551   -}
  1163 + color: #ffecb3 !important; }
1552 1164  
1553 1165 .amber.lighten-3 {
1554   - background-color: #ffe082 !important;
1555   -}
  1166 + background-color: #ffe082 !important; }
1556 1167  
1557 1168 .amber-text.text-lighten-3 {
1558   - color: #ffe082 !important;
1559   -}
  1169 + color: #ffe082 !important; }
1560 1170  
1561 1171 .amber.lighten-2 {
1562   - background-color: #ffd54f !important;
1563   -}
  1172 + background-color: #ffd54f !important; }
1564 1173  
1565 1174 .amber-text.text-lighten-2 {
1566   - color: #ffd54f !important;
1567   -}
  1175 + color: #ffd54f !important; }
1568 1176  
1569 1177 .amber.lighten-1 {
1570   - background-color: #ffca28 !important;
1571   -}
  1178 + background-color: #ffca28 !important; }
1572 1179  
1573 1180 .amber-text.text-lighten-1 {
1574   - color: #ffca28 !important;
1575   -}
  1181 + color: #ffca28 !important; }
1576 1182  
1577 1183 .amber {
1578   - background-color: #ffc107 !important;
1579   -}
  1184 + background-color: #ffc107 !important; }
1580 1185  
1581 1186 .amber-text {
1582   - color: #ffc107 !important;
1583   -}
  1187 + color: #ffc107 !important; }
1584 1188  
1585 1189 .amber.darken-1 {
1586   - background-color: #ffb300 !important;
1587   -}
  1190 + background-color: #ffb300 !important; }
1588 1191  
1589 1192 .amber-text.text-darken-1 {
1590   - color: #ffb300 !important;
1591   -}
  1193 + color: #ffb300 !important; }
1592 1194  
1593 1195 .amber.darken-2 {
1594   - background-color: #ffa000 !important;
1595   -}
  1196 + background-color: #ffa000 !important; }
1596 1197  
1597 1198 .amber-text.text-darken-2 {
1598   - color: #ffa000 !important;
1599   -}
  1199 + color: #ffa000 !important; }
1600 1200  
1601 1201 .amber.darken-3 {
1602   - background-color: #ff8f00 !important;
1603   -}
  1202 + background-color: #ff8f00 !important; }
1604 1203  
1605 1204 .amber-text.text-darken-3 {
1606   - color: #ff8f00 !important;
1607   -}
  1205 + color: #ff8f00 !important; }
1608 1206  
1609 1207 .amber.darken-4 {
1610   - background-color: #ff6f00 !important;
1611   -}
  1208 + background-color: #ff6f00 !important; }
1612 1209  
1613 1210 .amber-text.text-darken-4 {
1614   - color: #ff6f00 !important;
1615   -}
  1211 + color: #ff6f00 !important; }
1616 1212  
1617 1213 .amber.accent-1 {
1618   - background-color: #ffe57f !important;
1619   -}
  1214 + background-color: #ffe57f !important; }
1620 1215  
1621 1216 .amber-text.text-accent-1 {
1622   - color: #ffe57f !important;
1623   -}
  1217 + color: #ffe57f !important; }
1624 1218  
1625 1219 .amber.accent-2 {
1626   - background-color: #ffd740 !important;
1627   -}
  1220 + background-color: #ffd740 !important; }
1628 1221  
1629 1222 .amber-text.text-accent-2 {
1630   - color: #ffd740 !important;
1631   -}
  1223 + color: #ffd740 !important; }
1632 1224  
1633 1225 .amber.accent-3 {
1634   - background-color: #ffc400 !important;
1635   -}
  1226 + background-color: #ffc400 !important; }
1636 1227  
1637 1228 .amber-text.text-accent-3 {
1638   - color: #ffc400 !important;
1639   -}
  1229 + color: #ffc400 !important; }
1640 1230  
1641 1231 .amber.accent-4 {
1642   - background-color: #ffab00 !important;
1643   -}
  1232 + background-color: #ffab00 !important; }
1644 1233  
1645 1234 .amber-text.text-accent-4 {
1646   - color: #ffab00 !important;
1647   -}
  1235 + color: #ffab00 !important; }
1648 1236  
1649 1237 .orange.lighten-5 {
1650   - background-color: #fff3e0 !important;
1651   -}
  1238 + background-color: #fff3e0 !important; }
1652 1239  
1653 1240 .orange-text.text-lighten-5 {
1654   - color: #fff3e0 !important;
1655   -}
  1241 + color: #fff3e0 !important; }
1656 1242  
1657 1243 .orange.lighten-4 {
1658   - background-color: #ffe0b2 !important;
1659   -}
  1244 + background-color: #ffe0b2 !important; }
1660 1245  
1661 1246 .orange-text.text-lighten-4 {
1662   - color: #ffe0b2 !important;
1663   -}
  1247 + color: #ffe0b2 !important; }
1664 1248  
1665 1249 .orange.lighten-3 {
1666   - background-color: #ffcc80 !important;
1667   -}
  1250 + background-color: #ffcc80 !important; }
1668 1251  
1669 1252 .orange-text.text-lighten-3 {
1670   - color: #ffcc80 !important;
1671   -}
  1253 + color: #ffcc80 !important; }
1672 1254  
1673 1255 .orange.lighten-2 {
1674   - background-color: #ffb74d !important;
1675   -}
  1256 + background-color: #ffb74d !important; }
1676 1257  
1677 1258 .orange-text.text-lighten-2 {
1678   - color: #ffb74d !important;
1679   -}
  1259 + color: #ffb74d !important; }
1680 1260  
1681 1261 .orange.lighten-1 {
1682   - background-color: #ffa726 !important;
1683   -}
  1262 + background-color: #ffa726 !important; }
1684 1263  
1685 1264 .orange-text.text-lighten-1 {
1686   - color: #ffa726 !important;
1687   -}
  1265 + color: #ffa726 !important; }
1688 1266  
1689 1267 .orange {
1690   - background-color: #ff9800 !important;
1691   -}
  1268 + background-color: #ff9800 !important; }
1692 1269  
1693 1270 .orange-text {
1694   - color: #ff9800 !important;
1695   -}
  1271 + color: #ff9800 !important; }
1696 1272  
1697 1273 .orange.darken-1 {
1698   - background-color: #fb8c00 !important;
1699   -}
  1274 + background-color: #fb8c00 !important; }
1700 1275  
1701 1276 .orange-text.text-darken-1 {
1702   - color: #fb8c00 !important;
1703   -}
  1277 + color: #fb8c00 !important; }
1704 1278  
1705 1279 .orange.darken-2 {
1706   - background-color: #f57c00 !important;
1707   -}
  1280 + background-color: #f57c00 !important; }
1708 1281  
1709 1282 .orange-text.text-darken-2 {
1710   - color: #f57c00 !important;
1711   -}
  1283 + color: #f57c00 !important; }
1712 1284  
1713 1285 .orange.darken-3 {
1714   - background-color: #ef6c00 !important;
1715   -}
  1286 + background-color: #ef6c00 !important; }
1716 1287  
1717 1288 .orange-text.text-darken-3 {
1718   - color: #ef6c00 !important;
1719   -}
  1289 + color: #ef6c00 !important; }
1720 1290  
1721 1291 .orange.darken-4 {
1722   - background-color: #e65100 !important;
1723   -}
  1292 + background-color: #e65100 !important; }
1724 1293  
1725 1294 .orange-text.text-darken-4 {
1726   - color: #e65100 !important;
1727   -}
  1295 + color: #e65100 !important; }
1728 1296  
1729 1297 .orange.accent-1 {
1730   - background-color: #ffd180 !important;
1731   -}
  1298 + background-color: #ffd180 !important; }
1732 1299  
1733 1300 .orange-text.text-accent-1 {
1734   - color: #ffd180 !important;
1735   -}
  1301 + color: #ffd180 !important; }
1736 1302  
1737 1303 .orange.accent-2 {
1738   - background-color: #ffab40 !important;
1739   -}
  1304 + background-color: #ffab40 !important; }
1740 1305  
1741 1306 .orange-text.text-accent-2 {
1742   - color: #ffab40 !important;
1743   -}
  1307 + color: #ffab40 !important; }
1744 1308  
1745 1309 .orange.accent-3 {
1746   - background-color: #ff9100 !important;
1747   -}
  1310 + background-color: #ff9100 !important; }
1748 1311  
1749 1312 .orange-text.text-accent-3 {
1750   - color: #ff9100 !important;
1751   -}
  1313 + color: #ff9100 !important; }
1752 1314  
1753 1315 .orange.accent-4 {
1754   - background-color: #ff6d00 !important;
1755   -}
  1316 + background-color: #ff6d00 !important; }
1756 1317  
1757 1318 .orange-text.text-accent-4 {
1758   - color: #ff6d00 !important;
1759   -}
  1319 + color: #ff6d00 !important; }
1760 1320  
1761 1321 .deep-orange.lighten-5 {
1762   - background-color: #fbe9e7 !important;
1763   -}
  1322 + background-color: #fbe9e7 !important; }
1764 1323  
1765 1324 .deep-orange-text.text-lighten-5 {
1766   - color: #fbe9e7 !important;
1767   -}
  1325 + color: #fbe9e7 !important; }
1768 1326  
1769 1327 .deep-orange.lighten-4 {
1770   - background-color: #ffccbc !important;
1771   -}
  1328 + background-color: #ffccbc !important; }
1772 1329  
1773 1330 .deep-orange-text.text-lighten-4 {
1774   - color: #ffccbc !important;
1775   -}
  1331 + color: #ffccbc !important; }
1776 1332  
1777 1333 .deep-orange.lighten-3 {
1778   - background-color: #ffab91 !important;
1779   -}
  1334 + background-color: #ffab91 !important; }
1780 1335  
1781 1336 .deep-orange-text.text-lighten-3 {
1782   - color: #ffab91 !important;
1783   -}
  1337 + color: #ffab91 !important; }
1784 1338  
1785 1339 .deep-orange.lighten-2 {
1786   - background-color: #ff8a65 !important;
1787   -}
  1340 + background-color: #ff8a65 !important; }
1788 1341  
1789 1342 .deep-orange-text.text-lighten-2 {
1790   - color: #ff8a65 !important;
1791   -}
  1343 + color: #ff8a65 !important; }
1792 1344  
1793 1345 .deep-orange.lighten-1 {
1794   - background-color: #ff7043 !important;
1795   -}
  1346 + background-color: #ff7043 !important; }
1796 1347  
1797 1348 .deep-orange-text.text-lighten-1 {
1798   - color: #ff7043 !important;
1799   -}
  1349 + color: #ff7043 !important; }
1800 1350  
1801 1351 .deep-orange {
1802   - background-color: #ff5722 !important;
1803   -}
  1352 + background-color: #ff5722 !important; }
1804 1353  
1805 1354 .deep-orange-text {
1806   - color: #ff5722 !important;
1807   -}
  1355 + color: #ff5722 !important; }
1808 1356  
1809 1357 .deep-orange.darken-1 {
1810   - background-color: #f4511e !important;
1811   -}
  1358 + background-color: #f4511e !important; }
1812 1359  
1813 1360 .deep-orange-text.text-darken-1 {
1814   - color: #f4511e !important;
1815   -}
  1361 + color: #f4511e !important; }
1816 1362  
1817 1363 .deep-orange.darken-2 {
1818   - background-color: #e64a19 !important;
1819   -}
  1364 + background-color: #e64a19 !important; }
1820 1365  
1821 1366 .deep-orange-text.text-darken-2 {
1822   - color: #e64a19 !important;
1823   -}
  1367 + color: #e64a19 !important; }
1824 1368  
1825 1369 .deep-orange.darken-3 {
1826   - background-color: #d84315 !important;
1827   -}
  1370 + background-color: #d84315 !important; }
1828 1371  
1829 1372 .deep-orange-text.text-darken-3 {
1830   - color: #d84315 !important;
1831   -}
  1373 + color: #d84315 !important; }
1832 1374  
1833 1375 .deep-orange.darken-4 {
1834   - background-color: #bf360c !important;
1835   -}
  1376 + background-color: #bf360c !important; }
1836 1377  
1837 1378 .deep-orange-text.text-darken-4 {
1838   - color: #bf360c !important;
1839   -}
  1379 + color: #bf360c !important; }
1840 1380  
1841 1381 .deep-orange.accent-1 {
1842   - background-color: #ff9e80 !important;
1843   -}
  1382 + background-color: #ff9e80 !important; }
1844 1383  
1845 1384 .deep-orange-text.text-accent-1 {
1846   - color: #ff9e80 !important;
1847   -}
  1385 + color: #ff9e80 !important; }
1848 1386  
1849 1387 .deep-orange.accent-2 {
1850   - background-color: #ff6e40 !important;
1851   -}
  1388 + background-color: #ff6e40 !important; }
1852 1389  
1853 1390 .deep-orange-text.text-accent-2 {
1854   - color: #ff6e40 !important;
1855   -}
  1391 + color: #ff6e40 !important; }
1856 1392  
1857 1393 .deep-orange.accent-3 {
1858   - background-color: #ff3d00 !important;
1859   -}
  1394 + background-color: #ff3d00 !important; }
1860 1395  
1861 1396 .deep-orange-text.text-accent-3 {
1862   - color: #ff3d00 !important;
1863   -}
  1397 + color: #ff3d00 !important; }
1864 1398  
1865 1399 .deep-orange.accent-4 {
1866   - background-color: #dd2c00 !important;
1867   -}
  1400 + background-color: #dd2c00 !important; }
1868 1401  
1869 1402 .deep-orange-text.text-accent-4 {
1870   - color: #dd2c00 !important;
1871   -}
  1403 + color: #dd2c00 !important; }
1872 1404  
1873 1405 .brown.lighten-5 {
1874   - background-color: #efebe9 !important;
1875   -}
  1406 + background-color: #efebe9 !important; }
1876 1407  
1877 1408 .brown-text.text-lighten-5 {
1878   - color: #efebe9 !important;
1879   -}
  1409 + color: #efebe9 !important; }
1880 1410  
1881 1411 .brown.lighten-4 {
1882   - background-color: #d7ccc8 !important;
1883   -}
  1412 + background-color: #d7ccc8 !important; }
1884 1413  
1885 1414 .brown-text.text-lighten-4 {
1886   - color: #d7ccc8 !important;
1887   -}
  1415 + color: #d7ccc8 !important; }
1888 1416  
1889 1417 .brown.lighten-3 {
1890   - background-color: #bcaaa4 !important;
1891   -}
  1418 + background-color: #bcaaa4 !important; }
1892 1419  
1893 1420 .brown-text.text-lighten-3 {
1894   - color: #bcaaa4 !important;
1895   -}
  1421 + color: #bcaaa4 !important; }
1896 1422  
1897 1423 .brown.lighten-2 {
1898   - background-color: #a1887f !important;
1899   -}
  1424 + background-color: #a1887f !important; }
1900 1425  
1901 1426 .brown-text.text-lighten-2 {
1902   - color: #a1887f !important;
1903   -}
  1427 + color: #a1887f !important; }
1904 1428  
1905 1429 .brown.lighten-1 {
1906   - background-color: #8d6e63 !important;
1907   -}
  1430 + background-color: #8d6e63 !important; }
1908 1431  
1909 1432 .brown-text.text-lighten-1 {
1910   - color: #8d6e63 !important;
1911   -}
  1433 + color: #8d6e63 !important; }
1912 1434  
1913 1435 .brown {
1914   - background-color: #795548 !important;
1915   -}
  1436 + background-color: #795548 !important; }
1916 1437  
1917 1438 .brown-text {
1918   - color: #795548 !important;
1919   -}
  1439 + color: #795548 !important; }
1920 1440  
1921 1441 .brown.darken-1 {
1922   - background-color: #6d4c41 !important;
1923   -}
  1442 + background-color: #6d4c41 !important; }
1924 1443  
1925 1444 .brown-text.text-darken-1 {
1926   - color: #6d4c41 !important;
1927   -}
  1445 + color: #6d4c41 !important; }
1928 1446  
1929 1447 .brown.darken-2 {
1930   - background-color: #5d4037 !important;
1931   -}
  1448 + background-color: #5d4037 !important; }
1932 1449  
1933 1450 .brown-text.text-darken-2 {
1934   - color: #5d4037 !important;
1935   -}
  1451 + color: #5d4037 !important; }
1936 1452  
1937 1453 .brown.darken-3 {
1938   - background-color: #4e342e !important;
1939   -}
  1454 + background-color: #4e342e !important; }
1940 1455  
1941 1456 .brown-text.text-darken-3 {
1942   - color: #4e342e !important;
1943   -}
  1457 + color: #4e342e !important; }
1944 1458  
1945 1459 .brown.darken-4 {
1946   - background-color: #3e2723 !important;
1947   -}
  1460 + background-color: #3e2723 !important; }
1948 1461  
1949 1462 .brown-text.text-darken-4 {
1950   - color: #3e2723 !important;
1951   -}
  1463 + color: #3e2723 !important; }
1952 1464  
1953 1465 .blue-grey.lighten-5 {
1954   - background-color: #eceff1 !important;
1955   -}
  1466 + background-color: #eceff1 !important; }
1956 1467  
1957 1468 .blue-grey-text.text-lighten-5 {
1958   - color: #eceff1 !important;
1959   -}
  1469 + color: #eceff1 !important; }
1960 1470  
1961 1471 .blue-grey.lighten-4 {
1962   - background-color: #cfd8dc !important;
1963   -}
  1472 + background-color: #cfd8dc !important; }
1964 1473  
1965 1474 .blue-grey-text.text-lighten-4 {
1966   - color: #cfd8dc !important;
1967   -}
  1475 + color: #cfd8dc !important; }
1968 1476  
1969 1477 .blue-grey.lighten-3 {
1970   - background-color: #b0bec5 !important;
1971   -}
  1478 + background-color: #b0bec5 !important; }
1972 1479  
1973 1480 .blue-grey-text.text-lighten-3 {
1974   - color: #b0bec5 !important;
1975   -}
  1481 + color: #b0bec5 !important; }
1976 1482  
1977 1483 .blue-grey.lighten-2 {
1978   - background-color: #90a4ae !important;
1979   -}
  1484 + background-color: #90a4ae !important; }
1980 1485  
1981 1486 .blue-grey-text.text-lighten-2 {
1982   - color: #90a4ae !important;
1983   -}
  1487 + color: #90a4ae !important; }
1984 1488  
1985 1489 .blue-grey.lighten-1 {
1986   - background-color: #78909c !important;
1987   -}
  1490 + background-color: #78909c !important; }
1988 1491  
1989 1492 .blue-grey-text.text-lighten-1 {
1990   - color: #78909c !important;
1991   -}
  1493 + color: #78909c !important; }
1992 1494  
1993 1495 .blue-grey {
1994   - background-color: #607d8b !important;
1995   -}
  1496 + background-color: #607d8b !important; }
1996 1497  
1997 1498 .blue-grey-text {
1998   - color: #607d8b !important;
1999   -}
  1499 + color: #607d8b !important; }
2000 1500  
2001 1501 .blue-grey.darken-1 {
2002   - background-color: #546e7a !important;
2003   -}
  1502 + background-color: #546e7a !important; }
2004 1503  
2005 1504 .blue-grey-text.text-darken-1 {
2006   - color: #546e7a !important;
2007   -}
  1505 + color: #546e7a !important; }
2008 1506  
2009 1507 .blue-grey.darken-2 {
2010   - background-color: #455a64 !important;
2011   -}
  1508 + background-color: #455a64 !important; }
2012 1509  
2013 1510 .blue-grey-text.text-darken-2 {
2014   - color: #455a64 !important;
2015   -}
  1511 + color: #455a64 !important; }
2016 1512  
2017 1513 .blue-grey.darken-3 {
2018   - background-color: #37474f !important;
2019   -}
  1514 + background-color: #37474f !important; }
2020 1515  
2021 1516 .blue-grey-text.text-darken-3 {
2022   - color: #37474f !important;
2023   -}
  1517 + color: #37474f !important; }
2024 1518  
2025 1519 .blue-grey.darken-4 {
2026   - background-color: #263238 !important;
2027   -}
  1520 + background-color: #263238 !important; }
2028 1521  
2029 1522 .blue-grey-text.text-darken-4 {
2030   - color: #263238 !important;
2031   -}
  1523 + color: #263238 !important; }
2032 1524  
2033 1525 .grey.lighten-5 {
2034   - background-color: #fafafa !important;
2035   -}
  1526 + background-color: #fafafa !important; }
2036 1527  
2037 1528 .grey-text.text-lighten-5 {
2038   - color: #fafafa !important;
2039   -}
  1529 + color: #fafafa !important; }
2040 1530  
2041 1531 .grey.lighten-4 {
2042   - background-color: #f5f5f5 !important;
2043   -}
  1532 + background-color: #f5f5f5 !important; }
2044 1533  
2045 1534 .grey-text.text-lighten-4 {
2046   - color: #f5f5f5 !important;
2047   -}
  1535 + color: #f5f5f5 !important; }
2048 1536  
2049 1537 .grey.lighten-3 {
2050   - background-color: #eeeeee !important;
2051   -}
  1538 + background-color: #eeeeee !important; }
2052 1539  
2053 1540 .grey-text.text-lighten-3 {
2054   - color: #eeeeee !important;
2055   -}
  1541 + color: #eeeeee !important; }
2056 1542  
2057 1543 .grey.lighten-2 {
2058   - background-color: #e0e0e0 !important;
2059   -}
  1544 + background-color: #e0e0e0 !important; }
2060 1545  
2061 1546 .grey-text.text-lighten-2 {
2062   - color: #e0e0e0 !important;
2063   -}
  1547 + color: #e0e0e0 !important; }
2064 1548  
2065 1549 .grey.lighten-1 {
2066   - background-color: #bdbdbd !important;
2067   -}
  1550 + background-color: #bdbdbd !important; }
2068 1551  
2069 1552 .grey-text.text-lighten-1 {
2070   - color: #bdbdbd !important;
2071   -}
  1553 + color: #bdbdbd !important; }
2072 1554  
2073 1555 .grey {
2074   - background-color: #9e9e9e !important;
2075   -}
  1556 + background-color: #9e9e9e !important; }
2076 1557  
2077 1558 .grey-text {
2078   - color: #9e9e9e !important;
2079   -}
  1559 + color: #9e9e9e !important; }
2080 1560  
2081 1561 .grey.darken-1 {
2082   - background-color: #757575 !important;
2083   -}
  1562 + background-color: #757575 !important; }
2084 1563  
2085 1564 .grey-text.text-darken-1 {
2086   - color: #757575 !important;
2087   -}
  1565 + color: #757575 !important; }
2088 1566  
2089 1567 .grey.darken-2 {
2090   - background-color: #616161 !important;
2091   -}
  1568 + background-color: #616161 !important; }
2092 1569  
2093 1570 .grey-text.text-darken-2 {
2094   - color: #616161 !important;
2095   -}
  1571 + color: #616161 !important; }
2096 1572  
2097 1573 .grey.darken-3 {
2098   - background-color: #424242 !important;
2099   -}
  1574 + background-color: #424242 !important; }
2100 1575  
2101 1576 .grey-text.text-darken-3 {
2102   - color: #424242 !important;
2103   -}
  1577 + color: #424242 !important; }
2104 1578  
2105 1579 .grey.darken-4 {
2106   - background-color: #212121 !important;
2107   -}
  1580 + background-color: #212121 !important; }
2108 1581  
2109 1582 .grey-text.text-darken-4 {
2110   - color: #212121 !important;
2111   -}
  1583 + color: #212121 !important; }
2112 1584  
2113 1585 .shades.black {
2114   - background-color: #000000 !important;
2115   -}
  1586 + background-color: #000000 !important; }
2116 1587  
2117 1588 .shades-text.text-black {
2118   - color: #000000 !important;
2119   -}
  1589 + color: #000000 !important; }
2120 1590  
2121 1591 .shades.white {
2122   - background-color: #FFFFFF !important;
2123   -}
  1592 + background-color: #FFFFFF !important; }
2124 1593  
2125 1594 .shades-text.text-white {
2126   - color: #FFFFFF !important;
2127   -}
  1595 + color: #FFFFFF !important; }
2128 1596  
2129 1597 .shades.transparent {
2130   - background-color: transparent !important;
2131   -}
  1598 + background-color: transparent !important; }
2132 1599  
2133 1600 .shades-text.text-transparent {
2134   - color: transparent !important;
2135   -}
  1601 + color: transparent !important; }
2136 1602  
2137 1603 .black {
2138   - background-color: #000000 !important;
2139   -}
  1604 + background-color: #000000 !important; }
2140 1605  
2141 1606 .black-text {
2142   - color: #000000 !important;
2143   -}
  1607 + color: #000000 !important; }
2144 1608  
2145 1609 .white {
2146   - background-color: #FFFFFF !important;
2147   -}
  1610 + background-color: #FFFFFF !important; }
2148 1611  
2149 1612 .white-text {
2150   - color: #FFFFFF !important;
2151   -}
  1613 + color: #FFFFFF !important; }
2152 1614  
2153 1615 .transparent {
2154   - background-color: transparent !important;
2155   -}
  1616 + background-color: transparent !important; }
2156 1617  
2157 1618 .transparent-text {
2158   - color: transparent !important;
2159   -}
  1619 + color: transparent !important; }
2160 1620  
2161 1621 /*** Colors ***/
2162 1622 /*** Badges ***/
2163 1623 /*** Buttons ***/
2164 1624 /*** Cards ***/
2165 1625 /*** Collapsible ***/
2166   -/*** Chips ***/
2167   -/*** Date Picker ***/
2168 1626 /*** Dropdown ***/
2169 1627 /*** Fonts ***/
2170 1628 /*** Forms ***/
... ... @@ -2191,15 +1649,13 @@ html {
2191 1649 -ms-text-size-adjust: 100%;
2192 1650 /* 2 */
2193 1651 -webkit-text-size-adjust: 100%;
2194   - /* 2 */
2195   -}
  1652 + /* 2 */ }
2196 1653  
2197 1654 /**
2198 1655 * Remove default margin.
2199 1656 */
2200 1657 body {
2201   - margin: 0;
2202   -}
  1658 + margin: 0; }
2203 1659  
2204 1660 /* HTML5 display definitions
2205 1661 ========================================================================== */
... ... @@ -2209,35 +1665,18 @@ body {
2209 1665 * and Firefox.
2210 1666 * Correct `block` display not defined for `main` in IE 11.
2211 1667 */
2212   -article,
2213   -aside,
2214   -details,
2215   -figcaption,
2216   -figure,
2217   -footer,
2218   -header,
2219   -hgroup,
2220   -main,
2221   -menu,
2222   -nav,
2223   -section,
2224   -summary {
2225   - display: block;
2226   -}
  1668 +article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  1669 + display: block; }
2227 1670  
2228 1671 /**
2229 1672 * 1. Correct `inline-block` display not defined in IE 8/9.
2230 1673 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
2231 1674 */
2232   -audio,
2233   -canvas,
2234   -progress,
2235   -video {
  1675 +audio, canvas, progress, video {
2236 1676 display: inline-block;
2237 1677 /* 1 */
2238 1678 vertical-align: baseline;
2239   - /* 2 */
2240   -}
  1679 + /* 2 */ }
2241 1680  
2242 1681 /**
2243 1682 * Prevent modern browsers from displaying `audio` without controls.
... ... @@ -2245,17 +1684,14 @@ video {
2245 1684 */
2246 1685 audio:not([controls]) {
2247 1686 display: none;
2248   - height: 0;
2249   -}
  1687 + height: 0; }
2250 1688  
2251 1689 /**
2252 1690 * Address `[hidden]` styling not present in IE 8/9/10.
2253 1691 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
2254 1692 */
2255   -[hidden],
2256   -template {
2257   - display: none;
2258   -}
  1693 +[hidden], template {
  1694 + display: none; }
2259 1695  
2260 1696 /* Links
2261 1697 ========================================================================== */
... ... @@ -2263,16 +1699,13 @@ template {
2263 1699 * Remove the gray background color from active links in IE 10.
2264 1700 */
2265 1701 a {
2266   - background-color: transparent;
2267   -}
  1702 + background-color: transparent; }
2268 1703  
2269 1704 /**
2270 1705 * Improve readability when focused and also mouse hovered in all browsers.
2271 1706 */
2272   -a:active,
2273   -a:hover {
2274   - outline: 0;
2275   -}
  1707 +a:active, a:hover {
  1708 + outline: 0; }
2276 1709  
2277 1710 /* Text-level semantics
2278 1711 ========================================================================== */
... ... @@ -2280,23 +1713,19 @@ a:hover {
2280 1713 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
2281 1714 */
2282 1715 abbr[title] {
2283   - border-bottom: 1px dotted;
2284   -}
  1716 + border-bottom: 1px dotted; }
2285 1717  
2286 1718 /**
2287 1719 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
2288 1720 */
2289   -b,
2290   -strong {
2291   - font-weight: bold;
2292   -}
  1721 +b, strong {
  1722 + font-weight: bold; }
2293 1723  
2294 1724 /**
2295 1725 * Address styling not present in Safari and Chrome.
2296 1726 */
2297 1727 dfn {
2298   - font-style: italic;
2299   -}
  1728 + font-style: italic; }
2300 1729  
2301 1730 /**
2302 1731 * Address variable `h1` font-size and margin within `section` and `article`
... ... @@ -2304,42 +1733,35 @@ dfn {
2304 1733 */
2305 1734 h1 {
2306 1735 font-size: 2em;
2307   - margin: 0.67em 0;
2308   -}
  1736 + margin: 0.67em 0; }
2309 1737  
2310 1738 /**
2311 1739 * Address styling not present in IE 8/9.
2312 1740 */
2313 1741 mark {
2314 1742 background: #ff0;
2315   - color: #000;
2316   -}
  1743 + color: #000; }
2317 1744  
2318 1745 /**
2319 1746 * Address inconsistent and variable font size in all browsers.
2320 1747 */
2321 1748 small {
2322   - font-size: 80%;
2323   -}
  1749 + font-size: 80%; }
2324 1750  
2325 1751 /**
2326 1752 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
2327 1753 */
2328   -sub,
2329   -sup {
  1754 +sub, sup {
2330 1755 font-size: 75%;
2331 1756 line-height: 0;
2332 1757 position: relative;
2333   - vertical-align: baseline;
2334   -}
  1758 + vertical-align: baseline; }
2335 1759  
2336 1760 sup {
2337   - top: -0.5em;
2338   -}
  1761 + top: -0.5em; }
2339 1762  
2340 1763 sub {
2341   - bottom: -0.25em;
2342   -}
  1764 + bottom: -0.25em; }
2343 1765  
2344 1766 /* Embedded content
2345 1767 ========================================================================== */
... ... @@ -2347,15 +1769,13 @@ sub {
2347 1769 * Remove border when inside `a` element in IE 8/9/10.
2348 1770 */
2349 1771 img {
2350   - border: 0;
2351   -}
  1772 + border: 0; }
2352 1773  
2353 1774 /**
2354 1775 * Correct overflow not hidden in IE 9/10/11.
2355 1776 */
2356 1777 svg:not(:root) {
2357   - overflow: hidden;
2358   -}
  1778 + overflow: hidden; }
2359 1779  
2360 1780 /* Grouping content
2361 1781 ========================================================================== */
... ... @@ -2363,34 +1783,28 @@ svg:not(:root) {
2363 1783 * Address margin not present in IE 8/9 and Safari.
2364 1784 */
2365 1785 figure {
2366   - margin: 1em 40px;
2367   -}
  1786 + margin: 1em 40px; }
2368 1787  
2369 1788 /**
2370 1789 * Address differences between Firefox and other browsers.
2371 1790 */
2372 1791 hr {
  1792 + -moz-box-sizing: content-box;
2373 1793 box-sizing: content-box;
2374   - height: 0;
2375   -}
  1794 + height: 0; }
2376 1795  
2377 1796 /**
2378 1797 * Contain overflow in all browsers.
2379 1798 */
2380 1799 pre {
2381   - overflow: auto;
2382   -}
  1800 + overflow: auto; }
2383 1801  
2384 1802 /**
2385 1803 * Address odd `em`-unit font size rendering in all browsers.
2386 1804 */
2387   -code,
2388   -kbd,
2389   -pre,
2390   -samp {
  1805 +code, kbd, pre, samp {
2391 1806 font-family: monospace, monospace;
2392   - font-size: 1em;
2393   -}
  1807 + font-size: 1em; }
2394 1808  
2395 1809 /* Forms
2396 1810 ========================================================================== */
... ... @@ -2404,25 +1818,19 @@ samp {
2404 1818 * 2. Correct font properties not being inherited.
2405 1819 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
2406 1820 */
2407   -button,
2408   -input,
2409   -optgroup,
2410   -select,
2411   -textarea {
  1821 +button, input, optgroup, select, textarea {
2412 1822 color: inherit;
2413 1823 /* 1 */
2414 1824 font: inherit;
2415 1825 /* 2 */
2416 1826 margin: 0;
2417   - /* 3 */
2418   -}
  1827 + /* 3 */ }
2419 1828  
2420 1829 /**
2421 1830 * Address `overflow` set to `hidden` in IE 8/9/10/11.
2422 1831 */
2423 1832 button {
2424   - overflow: visible;
2425   -}
  1833 + overflow: visible; }
2426 1834  
2427 1835 /**
2428 1836 * Address inconsistent `text-transform` inheritance for `button` and `select`.
... ... @@ -2430,10 +1838,8 @@ button {
2430 1838 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
2431 1839 * Correct `select` style inheritance in Firefox.
2432 1840 */
2433   -button,
2434   -select {
2435   - text-transform: none;
2436   -}
  1841 +button, select {
  1842 + text-transform: none; }
2437 1843  
2438 1844 /**
2439 1845 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
... ... @@ -2443,40 +1849,31 @@ select {
2443 1849 * `input` and others.
2444 1850 */
2445 1851 /* 1 */
2446   -html input[type="button"],
2447   -button,
2448   -input[type="reset"],
2449   -input[type="submit"] {
  1852 +html input[type="button"], button, input[type="reset"], input[type="submit"] {
2450 1853 -webkit-appearance: button;
2451 1854 /* 2 */
2452 1855 cursor: pointer;
2453   - /* 3 */
2454   -}
  1856 + /* 3 */ }
2455 1857  
2456 1858 /**
2457 1859 * Re-set default cursor for disabled elements.
2458 1860 */
2459   -button[disabled],
2460   -html input[disabled] {
2461   - cursor: default;
2462   -}
  1861 +button[disabled], html input[disabled] {
  1862 + cursor: default; }
2463 1863  
2464 1864 /**
2465 1865 * Remove inner padding and border in Firefox 4+.
2466 1866 */
2467   -button::-moz-focus-inner,
2468   -input::-moz-focus-inner {
  1867 +button::-moz-focus-inner, input::-moz-focus-inner {
2469 1868 border: 0;
2470   - padding: 0;
2471   -}
  1869 + padding: 0; }
2472 1870  
2473 1871 /**
2474 1872 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
2475 1873 * the UA stylesheet.
2476 1874 */
2477 1875 input {
2478   - line-height: normal;
2479   -}
  1876 + line-height: normal; }
2480 1877  
2481 1878 /**
2482 1879 * It's recommended that you don't attempt to style these elements.
... ... @@ -2485,23 +1882,19 @@ input {
2485 1882 * 1. Address box sizing set to `content-box` in IE 8/9/10.
2486 1883 * 2. Remove excess padding in IE 8/9/10.
2487 1884 */
2488   -input[type="checkbox"],
2489   -input[type="radio"] {
  1885 +input[type="checkbox"], input[type="radio"] {
2490 1886 box-sizing: border-box;
2491 1887 /* 1 */
2492 1888 padding: 0;
2493   - /* 2 */
2494   -}
  1889 + /* 2 */ }
2495 1890  
2496 1891 /**
2497 1892 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
2498 1893 * `font-size` values of the `input`, it causes the cursor style of the
2499 1894 * decrement button to change from `default` to `text`.
2500 1895 */
2501   -input[type="number"]::-webkit-inner-spin-button,
2502   -input[type="number"]::-webkit-outer-spin-button {
2503   - height: auto;
2504   -}
  1896 +input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  1897 + height: auto; }
2505 1898  
2506 1899 /**
2507 1900 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
... ... @@ -2511,19 +1904,18 @@ input[type=&quot;number&quot;]::-webkit-outer-spin-button {
2511 1904 input[type="search"] {
2512 1905 -webkit-appearance: textfield;
2513 1906 /* 1 */
  1907 + -moz-box-sizing: content-box;
  1908 + -webkit-box-sizing: content-box;
2514 1909 /* 2 */
2515   - box-sizing: content-box;
2516   -}
  1910 + box-sizing: content-box; }
2517 1911  
2518 1912 /**
2519 1913 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
2520 1914 * Safari (but not Chrome) clips the cancel button when the search input has
2521 1915 * padding (and `textfield` appearance).
2522 1916 */
2523   -input[type="search"]::-webkit-search-cancel-button,
2524   -input[type="search"]::-webkit-search-decoration {
2525   - -webkit-appearance: none;
2526   -}
  1917 +input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  1918 + -webkit-appearance: none; }
2527 1919  
2528 1920 /**
2529 1921 * Define consistent border, margin, and padding.
... ... @@ -2531,8 +1923,7 @@ input[type=&quot;search&quot;]::-webkit-search-decoration {
2531 1923 fieldset {
2532 1924 border: 1px solid #c0c0c0;
2533 1925 margin: 0 2px;
2534   - padding: 0.35em 0.625em 0.75em;
2535   -}
  1926 + padding: 0.35em 0.625em 0.75em; }
2536 1927  
2537 1928 /**
2538 1929 * 1. Correct `color` not being inherited in IE 8/9/10/11.
... ... @@ -2542,23 +1933,20 @@ legend {
2542 1933 border: 0;
2543 1934 /* 1 */
2544 1935 padding: 0;
2545   - /* 2 */
2546   -}
  1936 + /* 2 */ }
2547 1937  
2548 1938 /**
2549 1939 * Remove default vertical scrollbar in IE 8/9/10/11.
2550 1940 */
2551 1941 textarea {
2552   - overflow: auto;
2553   -}
  1942 + overflow: auto; }
2554 1943  
2555 1944 /**
2556 1945 * Don't inherit the `font-weight` (applied by a rule above).
2557 1946 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
2558 1947 */
2559 1948 optgroup {
2560   - font-weight: bold;
2561   -}
  1949 + font-weight: bold; }
2562 1950  
2563 1951 /* Tables
2564 1952 ========================================================================== */
... ... @@ -2567,142 +1955,101 @@ optgroup {
2567 1955 */
2568 1956 table {
2569 1957 border-collapse: collapse;
2570   - border-spacing: 0;
2571   -}
  1958 + border-spacing: 0; }
2572 1959  
2573   -td,
2574   -th {
2575   - padding: 0;
2576   -}
  1960 +td, th {
  1961 + padding: 0; }
2577 1962  
2578 1963 html {
2579   - box-sizing: border-box;
2580   -}
  1964 + box-sizing: border-box; }
2581 1965  
2582 1966 *, *:before, *:after {
2583   - box-sizing: inherit;
2584   -}
  1967 + box-sizing: inherit; }
2585 1968  
2586 1969 ul {
2587   - list-style-type: none;
2588   -}
  1970 + list-style-type: none; }
2589 1971  
2590 1972 a {
2591 1973 color: #039be5;
2592 1974 text-decoration: none;
2593   - -webkit-tap-highlight-color: transparent;
2594   -}
  1975 + -webkit-tap-highlight-color: transparent; }
2595 1976  
2596 1977 .valign-wrapper {
2597   - display: -webkit-flex;
  1978 + display: -webkit-box;
  1979 + display: -moz-box;
2598 1980 display: -ms-flexbox;
  1981 + display: -webkit-flex;
2599 1982 display: flex;
  1983 + -webkit-flex-align: center;
  1984 + -ms-flex-align: center;
2600 1985 -webkit-align-items: center;
2601   - -ms-flex-align: center;
2602   - align-items: center;
2603   -}
2604   -
2605   -.valign-wrapper .valign {
2606   - display: block;
2607   -}
  1986 + align-items: center; }
  1987 + .valign-wrapper .valign {
  1988 + display: block; }
2608 1989  
2609 1990 ul {
2610   - padding: 0;
2611   -}
2612   -
2613   -ul li {
2614   - list-style-type: none;
2615   -}
  1991 + padding: 0; }
  1992 + ul li {
  1993 + list-style-type: none; }
2616 1994  
2617 1995 .clearfix {
2618   - clear: both;
2619   -}
  1996 + clear: both; }
2620 1997  
2621 1998 .z-depth-0 {
2622   - box-shadow: none !important;
2623   -}
  1999 + box-shadow: none !important; }
2624 2000  
2625 2001 .z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav {
2626   - box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
2627   -}
  2002 + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
2628 2003  
2629 2004 .z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover {
2630   - box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
2631   -}
  2005 + box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
2632 2006  
2633 2007 .z-depth-2 {
2634   - box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2635   -}
  2008 + box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
2636 2009  
2637 2010 .z-depth-3 {
2638   - box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
2639   -}
  2011 + box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }
2640 2012  
2641 2013 .z-depth-4, .modal {
2642   - box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
2643   -}
  2014 + box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); }
2644 2015  
2645 2016 .z-depth-5 {
2646   - box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
2647   -}
2648   -
2649   -.hoverable {
2650   - transition: box-shadow .25s;
2651   - box-shadow: 0;
2652   -}
  2017 + box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); }
2653 2018  
2654 2019 .hoverable:hover {
2655 2020 transition: box-shadow .25s;
2656   - box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2657   -}
  2021 + box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
2658 2022  
2659 2023 .divider {
2660 2024 height: 1px;
2661 2025 overflow: hidden;
2662   - background-color: #e0e0e0;
2663   -}
  2026 + background-color: #e0e0e0; }
2664 2027  
2665 2028 blockquote {
2666 2029 margin: 20px 0;
2667 2030 padding-left: 1.5rem;
2668   - border-left: 5px solid #ee6e73;
2669   -}
  2031 + border-left: 5px solid #ee6e73; }
2670 2032  
2671 2033 i {
2672   - line-height: inherit;
2673   -}
2674   -
2675   -i.left {
2676   - float: left;
2677   - margin-right: 15px;
2678   -}
2679   -
2680   -i.right {
2681   - float: right;
2682   - margin-left: 15px;
2683   -}
2684   -
2685   -i.tiny {
2686   - font-size: 1rem;
2687   -}
2688   -
2689   -i.small {
2690   - font-size: 2rem;
2691   -}
2692   -
2693   -i.medium {
2694   - font-size: 4rem;
2695   -}
2696   -
2697   -i.large {
2698   - font-size: 6rem;
2699   -}
2700   -
2701   -img.responsive-img,
2702   -video.responsive-video {
  2034 + line-height: inherit; }
  2035 + i.left {
  2036 + float: left;
  2037 + margin-right: 15px; }
  2038 + i.right {
  2039 + float: right;
  2040 + margin-left: 15px; }
  2041 + i.tiny {
  2042 + font-size: 1rem; }
  2043 + i.small {
  2044 + font-size: 2rem; }
  2045 + i.medium {
  2046 + font-size: 4rem; }
  2047 + i.large {
  2048 + font-size: 6rem; }
  2049 +
  2050 +img.responsive-img, video.responsive-video {
2703 2051 max-width: 100%;
2704   - height: auto;
2705   -}
  2052 + height: auto; }
2706 2053  
2707 2054 .pagination li {
2708 2055 display: inline-block;
... ... @@ -2710,90 +2057,36 @@ video.responsive-video {
2710 2057 padding: 0 10px;
2711 2058 line-height: 30px;
2712 2059 border-radius: 2px;
2713   - text-align: center;
2714   -}
2715   -
2716   -.pagination li a {
2717   - color: #444;
2718   -}
2719   -
2720   -.pagination li.active a {
2721   - color: #fff;
2722   -}
2723   -
2724   -.pagination li.active {
2725   - background-color: #ee6e73;
2726   -}
2727   -
2728   -.pagination li.disabled a {
2729   - cursor: default;
2730   - color: #999;
2731   -}
2732   -
2733   -.pagination li i {
2734   - font-size: 2.2rem;
2735   - vertical-align: middle;
2736   -}
2737   -
  2060 + text-align: center; }
  2061 + .pagination li a {
  2062 + color: #444; }
  2063 + .pagination li.active a {
  2064 + color: #fff; }
  2065 + .pagination li.active {
  2066 + background-color: #ee6e73; }
  2067 + .pagination li.disabled a {
  2068 + cursor: default;
  2069 + color: #999; }
  2070 + .pagination li i {
  2071 + font-size: 2rem; }
2738 2072 .pagination li.pages ul li {
2739 2073 display: inline-block;
2740   - float: none;
2741   -}
  2074 + float: none; }
2742 2075  
2743   -@media only screen and (max-width: 992px) {
  2076 +@media only screen and (max-width : 992px) {
2744 2077 .pagination {
2745   - width: 100%;
2746   - }
2747   - .pagination li.prev,
2748   - .pagination li.next {
2749   - width: 10%;
2750   - }
2751   - .pagination li.pages {
2752   - width: 80%;
2753   - overflow: hidden;
2754   - white-space: nowrap;
2755   - }
2756   -}
2757   -
2758   -.breadcrumb {
2759   - font-size: 18px;
2760   - color: rgba(255, 255, 255, 0.7);
2761   -}
2762   -
2763   -.breadcrumb i,
2764   -.breadcrumb [class^="mdi-"], .breadcrumb [class*="mdi-"],
2765   -.breadcrumb i.material-icons {
2766   - display: inline-block;
2767   - float: left;
2768   - font-size: 24px;
2769   -}
2770   -
2771   -.breadcrumb:before {
2772   - content: '\E5CC';
2773   - color: rgba(255, 255, 255, 0.7);
2774   - vertical-align: top;
2775   - display: inline-block;
2776   - font-family: 'Material Icons';
2777   - font-weight: normal;
2778   - font-style: normal;
2779   - font-size: 25px;
2780   - margin: 0 10px 0 8px;
2781   - -webkit-font-smoothing: antialiased;
2782   -}
2783   -
2784   -.breadcrumb:first-child:before {
2785   - display: none;
2786   -}
2787   -
2788   -.breadcrumb:last-child {
2789   - color: #fff;
2790   -}
  2078 + width: 100%; }
  2079 + .pagination li.prev, .pagination li.next {
  2080 + width: 10%; }
  2081 + .pagination li.pages {
  2082 + width: 80%;
  2083 + overflow: hidden;
  2084 + white-space: nowrap; } }
2791 2085  
2792 2086 .parallax-container {
2793 2087 position: relative;
2794 2088 overflow: hidden;
2795   - height: 500px;
2796   -}
  2089 + height: 500px; }
2797 2090  
2798 2091 .parallax {
2799 2092 position: absolute;
... ... @@ -2801,344 +2094,250 @@ video.responsive-video {
2801 2094 left: 0;
2802 2095 right: 0;
2803 2096 bottom: 0;
2804   - z-index: -1;
2805   -}
2806   -
2807   -.parallax img {
2808   - display: none;
2809   - position: absolute;
2810   - left: 50%;
2811   - bottom: 0;
2812   - min-width: 100%;
2813   - min-height: 100%;
2814   - -webkit-transform: translate3d(0, 0, 0);
2815   - transform: translate3d(0, 0, 0);
2816   - -webkit-transform: translateX(-50%);
2817   - transform: translateX(-50%);
2818   -}
  2097 + z-index: -1; }
  2098 + .parallax img {
  2099 + display: none;
  2100 + position: absolute;
  2101 + left: 50%;
  2102 + bottom: 0;
  2103 + min-width: 100%;
  2104 + min-height: 100%;
  2105 + -webkit-transform: translate3d(0, 0, 0);
  2106 + transform: translate3d(0, 0, 0);
  2107 + transform: translateX(-50%); }
2819 2108  
2820 2109 .pin-top, .pin-bottom {
2821   - position: relative;
2822   -}
  2110 + position: relative; }
2823 2111  
2824 2112 .pinned {
2825   - position: fixed !important;
2826   -}
  2113 + position: fixed !important; }
2827 2114  
2828 2115 /*********************
2829 2116 Transition Classes
2830 2117 **********************/
2831 2118 ul.staggered-list li {
2832   - opacity: 0;
2833   -}
  2119 + opacity: 0; }
2834 2120  
2835 2121 .fade-in {
2836 2122 opacity: 0;
2837   - -webkit-transform-origin: 0 50%;
2838   - transform-origin: 0 50%;
2839   -}
  2123 + transform-origin: 0 50%; }
2840 2124  
2841 2125 /*********************
2842 2126 Media Query Classes
2843 2127 **********************/
2844   -@media only screen and (max-width: 600px) {
  2128 +@media only screen and (max-width : 600px) {
2845 2129 .hide-on-small-only, .hide-on-small-and-down {
2846   - display: none !important;
2847   - }
2848   -}
  2130 + display: none !important; } }
2849 2131  
2850   -@media only screen and (max-width: 992px) {
  2132 +@media only screen and (max-width : 992px) {
2851 2133 .hide-on-med-and-down {
2852   - display: none !important;
2853   - }
2854   -}
  2134 + display: none !important; } }
2855 2135  
2856   -@media only screen and (min-width: 601px) {
  2136 +@media only screen and (min-width : 601px) {
2857 2137 .hide-on-med-and-up {
2858   - display: none !important;
2859   - }
2860   -}
  2138 + display: none !important; } }
2861 2139  
2862 2140 @media only screen and (min-width: 600px) and (max-width: 992px) {
2863 2141 .hide-on-med-only {
2864   - display: none !important;
2865   - }
2866   -}
  2142 + display: none !important; } }
2867 2143  
2868   -@media only screen and (min-width: 993px) {
  2144 +@media only screen and (min-width : 993px) {
2869 2145 .hide-on-large-only {
2870   - display: none !important;
2871   - }
2872   -}
  2146 + display: none !important; } }
2873 2147  
2874   -@media only screen and (min-width: 993px) {
  2148 +@media only screen and (min-width : 993px) {
2875 2149 .show-on-large {
2876   - display: block !important;
2877   - }
2878   -}
  2150 + display: initial !important; } }
2879 2151  
2880 2152 @media only screen and (min-width: 600px) and (max-width: 992px) {
2881 2153 .show-on-medium {
2882   - display: block !important;
2883   - }
2884   -}
  2154 + display: initial !important; } }
2885 2155  
2886   -@media only screen and (max-width: 600px) {
  2156 +@media only screen and (max-width : 600px) {
2887 2157 .show-on-small {
2888   - display: block !important;
2889   - }
2890   -}
  2158 + display: initial !important; } }
2891 2159  
2892   -@media only screen and (min-width: 601px) {
  2160 +@media only screen and (min-width : 601px) {
2893 2161 .show-on-medium-and-up {
2894   - display: block !important;
2895   - }
2896   -}
  2162 + display: initial !important; } }
2897 2163  
2898   -@media only screen and (max-width: 992px) {
  2164 +@media only screen and (max-width : 992px) {
2899 2165 .show-on-medium-and-down {
2900   - display: block !important;
2901   - }
2902   -}
  2166 + display: initial !important; } }
2903 2167  
2904   -@media only screen and (max-width: 600px) {
  2168 +@media only screen and (max-width : 600px) {
2905 2169 .center-on-small-only {
2906   - text-align: center;
2907   - }
2908   -}
  2170 + text-align: center; } }
2909 2171  
2910 2172 footer.page-footer {
2911 2173 margin-top: 20px;
2912 2174 padding-top: 20px;
2913   - background-color: #ee6e73;
2914   -}
2915   -
2916   -footer.page-footer .footer-copyright {
2917   - overflow: hidden;
2918   - height: 50px;
2919   - line-height: 50px;
2920   - color: rgba(255, 255, 255, 0.8);
2921   - background-color: rgba(51, 51, 51, 0.08);
2922   -}
  2175 + background-color: #ee6e73; }
  2176 + footer.page-footer .footer-copyright {
  2177 + overflow: hidden;
  2178 + height: 50px;
  2179 + line-height: 50px;
  2180 + color: rgba(255, 255, 255, 0.8);
  2181 + background-color: rgba(51, 51, 51, 0.08); }
2923 2182  
2924 2183 table, th, td {
2925   - border: none;
2926   -}
  2184 + border: none; }
2927 2185  
2928 2186 table {
2929 2187 width: 100%;
2930   - display: table;
2931   -}
2932   -
2933   -table.bordered > thead > tr,
2934   -table.bordered > tbody > tr {
2935   - border-bottom: 1px solid #d0d0d0;
2936   -}
2937   -
2938   -table.striped > tbody > tr:nth-child(odd) {
2939   - background-color: #f2f2f2;
2940   -}
2941   -
2942   -table.striped > tbody > tr > td {
2943   - border-radius: 0px;
2944   -}
2945   -
2946   -table.highlight > tbody > tr {
2947   - transition: background-color .25s ease;
2948   -}
2949   -
2950   -table.highlight > tbody > tr:hover {
2951   - background-color: #f2f2f2;
2952   -}
2953   -
2954   -table.centered thead tr th, table.centered tbody tr td {
2955   - text-align: center;
2956   -}
  2188 + display: table; }
  2189 + table.bordered > thead > tr, table.bordered > tbody > tr {
  2190 + border-bottom: 1px solid #d0d0d0; }
  2191 + table.striped > tbody > tr:nth-child(odd) {
  2192 + background-color: #f2f2f2; }
  2193 + table.striped > tbody > tr > td {
  2194 + border-radius: 0px; }
  2195 + table.highlight > tbody > tr {
  2196 + -webkit-transition: background-color .25s ease;
  2197 + -moz-transition: background-color .25s ease;
  2198 + -o-transition: background-color .25s ease;
  2199 + -ms-transition: background-color .25s ease;
  2200 + transition: background-color .25s ease; }
  2201 + table.highlight > tbody > tr:hover {
  2202 + background-color: #f2f2f2; }
  2203 + table.centered thead tr th, table.centered tbody tr td {
  2204 + text-align: center; }
2957 2205  
2958 2206 thead {
2959   - border-bottom: 1px solid #d0d0d0;
2960   -}
  2207 + border-bottom: 1px solid #d0d0d0; }
2961 2208  
2962 2209 td, th {
2963 2210 padding: 15px 5px;
2964 2211 display: table-cell;
2965 2212 text-align: left;
2966 2213 vertical-align: middle;
2967   - border-radius: 2px;
2968   -}
  2214 + border-radius: 2px; }
2969 2215  
2970   -@media only screen and (max-width: 992px) {
  2216 +@media only screen and (max-width : 992px) {
2971 2217 table.responsive-table {
2972 2218 width: 100%;
2973 2219 border-collapse: collapse;
2974 2220 border-spacing: 0;
2975 2221 display: block;
2976 2222 position: relative;
2977   - /* sort out borders */
2978   - }
2979   - table.responsive-table th,
2980   - table.responsive-table td {
2981   - margin: 0;
2982   - vertical-align: top;
2983   - }
2984   - table.responsive-table th {
2985   - text-align: left;
2986   - }
2987   - table.responsive-table thead {
2988   - display: block;
2989   - float: left;
2990   - }
2991   - table.responsive-table thead tr {
2992   - display: block;
2993   - padding: 0 10px 0 0;
2994   - }
2995   - table.responsive-table thead tr th::before {
2996   - content: "\00a0";
2997   - }
2998   - table.responsive-table tbody {
2999   - display: block;
3000   - width: auto;
3001   - position: relative;
3002   - overflow-x: auto;
3003   - white-space: nowrap;
3004   - }
3005   - table.responsive-table tbody tr {
3006   - display: inline-block;
3007   - vertical-align: top;
3008   - }
3009   - table.responsive-table th {
3010   - display: block;
3011   - text-align: right;
3012   - }
3013   - table.responsive-table td {
3014   - display: block;
3015   - min-height: 1.25em;
3016   - text-align: left;
3017   - }
3018   - table.responsive-table tr {
3019   - padding: 0 10px;
3020   - }
3021   - table.responsive-table thead {
3022   - border: 0;
3023   - border-right: 1px solid #d0d0d0;
3024   - }
3025   - table.responsive-table.bordered th {
3026   - border-bottom: 0;
3027   - border-left: 0;
3028   - }
3029   - table.responsive-table.bordered td {
3030   - border-left: 0;
3031   - border-right: 0;
3032   - border-bottom: 0;
3033   - }
3034   - table.responsive-table.bordered tr {
3035   - border: 0;
3036   - }
3037   - table.responsive-table.bordered tbody tr {
3038   - border-right: 1px solid #d0d0d0;
3039   - }
3040   -}
  2223 + /* sort out borders */ }
  2224 + table.responsive-table th, table.responsive-table td {
  2225 + margin: 0;
  2226 + vertical-align: top; }
  2227 + table.responsive-table th {
  2228 + text-align: left; }
  2229 + table.responsive-table thead {
  2230 + display: block;
  2231 + float: left; }
  2232 + table.responsive-table thead tr {
  2233 + display: block;
  2234 + padding: 0 10px 0 0; }
  2235 + table.responsive-table thead tr th::before {
  2236 + content: "\00a0"; }
  2237 + table.responsive-table tbody {
  2238 + display: block;
  2239 + width: auto;
  2240 + position: relative;
  2241 + overflow-x: auto;
  2242 + white-space: nowrap; }
  2243 + table.responsive-table tbody tr {
  2244 + display: inline-block;
  2245 + vertical-align: top; }
  2246 + table.responsive-table th {
  2247 + display: block;
  2248 + text-align: right; }
  2249 + table.responsive-table td {
  2250 + display: block;
  2251 + min-height: 1.25em;
  2252 + text-align: left; }
  2253 + table.responsive-table tr {
  2254 + padding: 0 10px; }
  2255 + table.responsive-table thead {
  2256 + border: 0;
  2257 + border-right: 1px solid #d0d0d0; }
  2258 + table.responsive-table.bordered th {
  2259 + border-bottom: 0;
  2260 + border-left: 0; }
  2261 + table.responsive-table.bordered td {
  2262 + border-left: 0;
  2263 + border-right: 0;
  2264 + border-bottom: 0; }
  2265 + table.responsive-table.bordered tr {
  2266 + border: 0; }
  2267 + table.responsive-table.bordered tbody tr {
  2268 + border-right: 1px solid #d0d0d0; } }
3041 2269  
3042 2270 .collection {
3043 2271 margin: 0.5rem 0 1rem 0;
3044 2272 border: 1px solid #e0e0e0;
3045 2273 border-radius: 2px;
3046 2274 overflow: hidden;
3047   - position: relative;
3048   -}
3049   -
3050   -.collection .collection-item {
3051   - background-color: #fff;
3052   - line-height: 1.5rem;
3053   - padding: 10px 20px;
3054   - margin: 0;
3055   - border-bottom: 1px solid #e0e0e0;
3056   -}
3057   -
3058   -.collection .collection-item.avatar {
3059   - min-height: 84px;
3060   - padding-left: 72px;
3061   - position: relative;
3062   -}
3063   -
3064   -.collection .collection-item.avatar .circle {
3065   - position: absolute;
3066   - width: 42px;
3067   - height: 42px;
3068   - overflow: hidden;
3069   - left: 15px;
3070   - display: inline-block;
3071   - vertical-align: middle;
3072   -}
3073   -
3074   -.collection .collection-item.avatar i.circle {
3075   - font-size: 18px;
3076   - line-height: 42px;
3077   - color: #fff;
3078   - background-color: #999;
3079   - text-align: center;
3080   -}
3081   -
3082   -.collection .collection-item.avatar .title {
3083   - font-size: 16px;
3084   -}
3085   -
3086   -.collection .collection-item.avatar p {
3087   - margin: 0;
3088   -}
3089   -
3090   -.collection .collection-item.avatar .secondary-content {
3091   - position: absolute;
3092   - top: 16px;
3093   - right: 16px;
3094   -}
3095   -
3096   -.collection .collection-item:last-child {
3097   - border-bottom: none;
3098   -}
3099   -
3100   -.collection .collection-item.active {
3101   - background-color: #26a69a;
3102   - color: #eafaf9;
3103   -}
3104   -
3105   -.collection .collection-item.active .secondary-content {
3106   - color: #fff;
3107   -}
3108   -
3109   -.collection a.collection-item {
3110   - display: block;
3111   - transition: .25s;
3112   - color: #26a69a;
3113   -}
3114   -
3115   -.collection a.collection-item:not(.active):hover {
3116   - background-color: #ddd;
3117   -}
3118   -
3119   -.collection.with-header .collection-header {
3120   - background-color: #fff;
3121   - border-bottom: 1px solid #e0e0e0;
3122   - padding: 10px 20px;
3123   -}
3124   -
3125   -.collection.with-header .collection-item {
3126   - padding-left: 30px;
3127   -}
3128   -
3129   -.collection.with-header .collection-item.avatar {
3130   - padding-left: 72px;
3131   -}
  2275 + position: relative; }
  2276 + .collection .collection-item {
  2277 + background-color: #fff;
  2278 + line-height: 1.5rem;
  2279 + padding: 10px 20px;
  2280 + margin: 0;
  2281 + border-bottom: 1px solid #e0e0e0; }
  2282 + .collection .collection-item.avatar {
  2283 + min-height: 84px;
  2284 + padding-left: 72px;
  2285 + position: relative; }
  2286 + .collection .collection-item.avatar .circle {
  2287 + position: absolute;
  2288 + width: 42px;
  2289 + height: 42px;
  2290 + overflow: hidden;
  2291 + left: 15px;
  2292 + display: inline-block;
  2293 + vertical-align: middle; }
  2294 + .collection .collection-item.avatar i.circle {
  2295 + font-size: 18px;
  2296 + line-height: 42px;
  2297 + color: #fff;
  2298 + background-color: #999;
  2299 + text-align: center; }
  2300 + .collection .collection-item.avatar .title {
  2301 + font-size: 16px; }
  2302 + .collection .collection-item.avatar p {
  2303 + margin: 0; }
  2304 + .collection .collection-item.avatar .secondary-content {
  2305 + position: absolute;
  2306 + top: 16px;
  2307 + right: 16px; }
  2308 + .collection .collection-item:last-child {
  2309 + border-bottom: none; }
  2310 + .collection .collection-item.active {
  2311 + background-color: #26a69a;
  2312 + color: #eafaf9; }
  2313 + .collection .collection-item.active .secondary-content {
  2314 + color: #fff; }
  2315 + .collection a.collection-item {
  2316 + display: block;
  2317 + -webkit-transition: 0.25s;
  2318 + -moz-transition: 0.25s;
  2319 + -o-transition: 0.25s;
  2320 + -ms-transition: 0.25s;
  2321 + transition: 0.25s;
  2322 + color: #26a69a; }
  2323 + .collection a.collection-item:not(.active):hover {
  2324 + background-color: #ddd; }
  2325 + .collection.with-header .collection-header {
  2326 + background-color: #fff;
  2327 + border-bottom: 1px solid #e0e0e0;
  2328 + padding: 10px 20px; }
  2329 + .collection.with-header .collection-item {
  2330 + padding-left: 30px; }
  2331 + .collection.with-header .collection-item.avatar {
  2332 + padding-left: 72px; }
3132 2333  
3133 2334 .secondary-content {
3134 2335 float: right;
3135   - color: #26a69a;
3136   -}
  2336 + color: #26a69a; }
3137 2337  
3138 2338 .collapsible .collection {
3139 2339 margin: 0;
3140   - border: none;
3141   -}
  2340 + border: none; }
3142 2341  
3143 2342 span.badge {
3144 2343 min-width: 3rem;
... ... @@ -3149,41 +2348,37 @@ span.badge {
3149 2348 color: #757575;
3150 2349 position: absolute;
3151 2350 right: 15px;
3152   - box-sizing: border-box;
3153   -}
3154   -
3155   -span.badge.new {
3156   - font-weight: 300;
3157   - font-size: 0.8rem;
3158   - color: #fff;
3159   - background-color: #26a69a;
3160   - border-radius: 2px;
3161   -}
3162   -
3163   -span.badge.new:after {
3164   - content: " new";
3165   -}
  2351 + -webkit-box-sizing: border-box;
  2352 + -moz-box-sizing: border-box;
  2353 + box-sizing: border-box; }
  2354 + span.badge.new {
  2355 + font-weight: 300;
  2356 + font-size: 0.8rem;
  2357 + color: #fff;
  2358 + background-color: #26a69a;
  2359 + border-radius: 2px; }
  2360 + span.badge.new:after {
  2361 + content: " new"; }
3166 2362  
3167 2363 nav ul a span.badge {
3168 2364 position: static;
3169 2365 margin-left: 4px;
3170   - line-height: 0;
3171   -}
  2366 + line-height: 0; }
3172 2367  
3173 2368 .video-container {
3174 2369 position: relative;
3175 2370 padding-bottom: 56.25%;
  2371 + padding-top: 30px;
3176 2372 height: 0;
3177   - overflow: hidden;
3178   -}
3179   -
3180   -.video-container iframe, .video-container object, .video-container embed {
3181   - position: absolute;
3182   - top: 0;
3183   - left: 0;
3184   - width: 100%;
3185   - height: 100%;
3186   -}
  2373 + overflow: hidden; }
  2374 + .video-container.no-controls {
  2375 + padding-top: 0; }
  2376 + .video-container iframe, .video-container object, .video-container embed {
  2377 + position: absolute;
  2378 + top: 0;
  2379 + left: 0;
  2380 + width: 100%;
  2381 + height: 100%; }
3187 2382  
3188 2383 .progress {
3189 2384 position: relative;
... ... @@ -3193,179 +2388,182 @@ nav ul a span.badge {
3193 2388 background-color: #acece6;
3194 2389 border-radius: 2px;
3195 2390 margin: 0.5rem 0 1rem 0;
3196   - overflow: hidden;
3197   -}
3198   -
3199   -.progress .determinate {
3200   - position: absolute;
3201   - background-color: inherit;
3202   - top: 0;
3203   - left: 0;
3204   - bottom: 0;
3205   - background-color: #26a69a;
3206   - transition: width .3s linear;
3207   -}
  2391 + overflow: hidden; }
  2392 + .progress .determinate {
  2393 + position: absolute;
  2394 + background-color: inherit;
  2395 + top: 0;
  2396 + left: 0;
  2397 + bottom: 0;
  2398 + background-color: #26a69a;
  2399 + -webkit-transition: width .3s linear;
  2400 + -moz-transition: width .3s linear;
  2401 + -o-transition: width .3s linear;
  2402 + -ms-transition: width .3s linear;
  2403 + transition: width .3s linear; }
  2404 + .progress .indeterminate {
  2405 + background-color: #26a69a; }
  2406 + .progress .indeterminate:before {
  2407 + content: '';
  2408 + position: absolute;
  2409 + background-color: inherit;
  2410 + top: 0;
  2411 + left: 0;
  2412 + bottom: 0;
  2413 + will-change: left, right;
  2414 + -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  2415 + -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  2416 + -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  2417 + -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  2418 + animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
  2419 + .progress .indeterminate:after {
  2420 + content: '';
  2421 + position: absolute;
  2422 + background-color: inherit;
  2423 + top: 0;
  2424 + left: 0;
  2425 + bottom: 0;
  2426 + will-change: left, right;
  2427 + -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  2428 + -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  2429 + -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  2430 + -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  2431 + animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  2432 + -webkit-animation-delay: 1.15s;
  2433 + -moz-animation-delay: 1.15s;
  2434 + -ms-animation-delay: 1.15s;
  2435 + -o-animation-delay: 1.15s;
  2436 + animation-delay: 1.15s; }
3208 2437  
3209   -.progress .indeterminate {
3210   - background-color: #26a69a;
3211   -}
  2438 +@-webkit-keyframes indeterminate {
  2439 + 0% {
  2440 + left: -35%;
  2441 + right: 100%; }
3212 2442  
3213   -.progress .indeterminate:before {
3214   - content: '';
3215   - position: absolute;
3216   - background-color: inherit;
3217   - top: 0;
3218   - left: 0;
3219   - bottom: 0;
3220   - will-change: left, right;
3221   - -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
3222   - animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
3223   -}
  2443 + 60% {
  2444 + left: 100%;
  2445 + right: -90%; }
3224 2446  
3225   -.progress .indeterminate:after {
3226   - content: '';
3227   - position: absolute;
3228   - background-color: inherit;
3229   - top: 0;
3230   - left: 0;
3231   - bottom: 0;
3232   - will-change: left, right;
3233   - -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
3234   - animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
3235   - -webkit-animation-delay: 1.15s;
3236   - animation-delay: 1.15s;
3237   -}
  2447 + 100% {
  2448 + left: 100%;
  2449 + right: -90%; } }
3238 2450  
3239   -@-webkit-keyframes indeterminate {
  2451 +@-moz-keyframes indeterminate {
3240 2452 0% {
3241 2453 left: -35%;
3242   - right: 100%;
3243   - }
  2454 + right: 100%; }
  2455 +
3244 2456 60% {
3245 2457 left: 100%;
3246   - right: -90%;
3247   - }
  2458 + right: -90%; }
  2459 +
3248 2460 100% {
3249 2461 left: 100%;
3250   - right: -90%;
3251   - }
3252   -}
  2462 + right: -90%; } }
3253 2463  
3254 2464 @keyframes indeterminate {
3255 2465 0% {
3256 2466 left: -35%;
3257   - right: 100%;
3258   - }
  2467 + right: 100%; }
  2468 +
3259 2469 60% {
3260 2470 left: 100%;
3261   - right: -90%;
3262   - }
  2471 + right: -90%; }
  2472 +
3263 2473 100% {
3264 2474 left: 100%;
3265   - right: -90%;
3266   - }
3267   -}
  2475 + right: -90%; } }
3268 2476  
3269 2477 @-webkit-keyframes indeterminate-short {
3270 2478 0% {
3271 2479 left: -200%;
3272   - right: 100%;
3273   - }
  2480 + right: 100%; }
  2481 +
  2482 + 60% {
  2483 + left: 107%;
  2484 + right: -8%; }
  2485 +
  2486 + 100% {
  2487 + left: 107%;
  2488 + right: -8%; } }
  2489 +
  2490 +@-moz-keyframes indeterminate-short {
  2491 + 0% {
  2492 + left: -200%;
  2493 + right: 100%; }
  2494 +
3274 2495 60% {
3275 2496 left: 107%;
3276   - right: -8%;
3277   - }
  2497 + right: -8%; }
  2498 +
3278 2499 100% {
3279 2500 left: 107%;
3280   - right: -8%;
3281   - }
3282   -}
  2501 + right: -8%; } }
3283 2502  
3284 2503 @keyframes indeterminate-short {
3285 2504 0% {
3286 2505 left: -200%;
3287   - right: 100%;
3288   - }
  2506 + right: 100%; }
  2507 +
3289 2508 60% {
3290 2509 left: 107%;
3291   - right: -8%;
3292   - }
  2510 + right: -8%; }
  2511 +
3293 2512 100% {
3294 2513 left: 107%;
3295   - right: -8%;
3296   - }
3297   -}
  2514 + right: -8%; } }
3298 2515  
3299 2516 /*******************
3300 2517 Utility Classes
3301 2518 *******************/
3302 2519 .hide {
3303   - display: none !important;
3304   -}
  2520 + display: none !important; }
3305 2521  
3306 2522 .left-align {
3307   - text-align: left;
3308   -}
  2523 + text-align: left; }
3309 2524  
3310 2525 .right-align {
3311   - text-align: right;
3312   -}
  2526 + text-align: right; }
3313 2527  
3314 2528 .center, .center-align {
3315   - text-align: center;
3316   -}
  2529 + text-align: center; }
3317 2530  
3318 2531 .left {
3319   - float: left !important;
3320   -}
  2532 + float: left !important; }
3321 2533  
3322 2534 .right {
3323   - float: right !important;
3324   -}
  2535 + float: right !important; }
3325 2536  
3326 2537 .no-select, input[type=range], input[type=range] + .thumb {
3327 2538 -webkit-touch-callout: none;
3328 2539 -webkit-user-select: none;
  2540 + -khtml-user-select: none;
3329 2541 -moz-user-select: none;
3330 2542 -ms-user-select: none;
3331   - user-select: none;
3332   -}
  2543 + user-select: none; }
3333 2544  
3334 2545 .circle {
3335   - border-radius: 50%;
3336   -}
  2546 + border-radius: 50%; }
3337 2547  
3338 2548 .center-block {
3339 2549 display: block;
3340 2550 margin-left: auto;
3341   - margin-right: auto;
3342   -}
  2551 + margin-right: auto; }
3343 2552  
3344 2553 .truncate {
3345 2554 display: block;
3346 2555 white-space: nowrap;
3347 2556 overflow: hidden;
3348   - text-overflow: ellipsis;
3349   -}
  2557 + text-overflow: ellipsis; }
3350 2558  
3351 2559 .no-padding {
3352   - padding: 0 !important;
3353   -}
3354   -
3355   -/* This is needed for some mobile phones to display the Google Icon font properly */
3356   -.material-icons {
3357   - text-rendering: optimizeLegibility;
3358   - -webkit-font-feature-settings: 'liga';
3359   - -moz-font-feature-settings: 'liga';
3360   - font-feature-settings: 'liga';
3361   -}
  2560 + padding: 0 !important; }
3362 2561  
3363 2562 @font-face {
3364 2563 font-family: "Material-Design-Icons";
3365 2564 src: url("../font/material-design-icons/Material-Design-Icons.eot?#iefix") format("embedded-opentype"), url("../font/material-design-icons/Material-Design-Icons.woff2") format("woff2"), url("../font/material-design-icons/Material-Design-Icons.woff") format("woff"), url("../font/material-design-icons/Material-Design-Icons.ttf") format("truetype"), url("../font/material-design-icons/Material-Design-Icons.svg#Material-Design-Icons") format("svg");
3366 2565 font-weight: normal;
3367   - font-style: normal;
3368   -}
  2566 + font-style: normal; }
3369 2567  
3370 2568 [class^="mdi-"], [class*="mdi-"] {
3371 2569 speak: none;
... ... @@ -3378,53 +2576,29 @@ nav ul a span.badge {
3378 2576 /* Better Font Rendering =========== */
3379 2577 -webkit-font-smoothing: antialiased;
3380 2578 -moz-osx-font-smoothing: grayscale;
3381   - -webkit-transform: translate(0, 0);
3382   - transform: translate(0, 0);
3383   -}
3384   -
3385   -[class^="mdi-"]:before, [class*="mdi-"]:before {
3386   - display: inline-block;
3387   - speak: none;
3388   - text-decoration: inherit;
3389   -}
3390   -
3391   -[class^="mdi-"].pull-left, [class*="mdi-"].pull-left {
3392   - margin-right: .3em;
3393   -}
3394   -
3395   -[class^="mdi-"].pull-right, [class*="mdi-"].pull-right {
3396   - margin-left: .3em;
3397   -}
3398   -
3399   -[class^="mdi-"].mdi-lg:before, [class^="mdi-"].mdi-lg:after, [class*="mdi-"].mdi-lg:before, [class*="mdi-"].mdi-lg:after {
3400   - font-size: 1.33333333em;
3401   - line-height: 0.75em;
3402   - vertical-align: -15%;
3403   -}
3404   -
3405   -[class^="mdi-"].mdi-2x:before, [class^="mdi-"].mdi-2x:after, [class*="mdi-"].mdi-2x:before, [class*="mdi-"].mdi-2x:after {
3406   - font-size: 2em;
3407   -}
3408   -
3409   -[class^="mdi-"].mdi-3x:before, [class^="mdi-"].mdi-3x:after, [class*="mdi-"].mdi-3x:before, [class*="mdi-"].mdi-3x:after {
3410   - font-size: 3em;
3411   -}
3412   -
3413   -[class^="mdi-"].mdi-4x:before, [class^="mdi-"].mdi-4x:after, [class*="mdi-"].mdi-4x:before, [class*="mdi-"].mdi-4x:after {
3414   - font-size: 4em;
3415   -}
3416   -
3417   -[class^="mdi-"].mdi-5x:before, [class^="mdi-"].mdi-5x:after, [class*="mdi-"].mdi-5x:before, [class*="mdi-"].mdi-5x:after {
3418   - font-size: 5em;
3419   -}
3420   -
3421   -[class^="mdi-device-signal-cellular-"]:after,
3422   -[class^="mdi-device-battery-"]:after,
3423   -[class^="mdi-device-battery-charging-"]:after,
3424   -[class^="mdi-device-signal-cellular-connected-no-internet-"]:after,
3425   -[class^="mdi-device-signal-wifi-"]:after,
3426   -[class^="mdi-device-signal-wifi-statusbar-not-connected"]:after,
3427   -.mdi-device-network-wifi:after {
  2579 + transform: translate(0, 0); }
  2580 + [class^="mdi-"]:before, [class*="mdi-"]:before {
  2581 + display: inline-block;
  2582 + speak: none;
  2583 + text-decoration: inherit; }
  2584 + [class^="mdi-"].pull-left, [class*="mdi-"].pull-left {
  2585 + margin-right: .3em; }
  2586 + [class^="mdi-"].pull-right, [class*="mdi-"].pull-right {
  2587 + margin-left: .3em; }
  2588 + [class^="mdi-"].mdi-lg:before, [class^="mdi-"].mdi-lg:after, [class*="mdi-"].mdi-lg:before, [class*="mdi-"].mdi-lg:after {
  2589 + font-size: 1.33333333em;
  2590 + line-height: 0.75em;
  2591 + vertical-align: -15%; }
  2592 + [class^="mdi-"].mdi-2x:before, [class^="mdi-"].mdi-2x:after, [class*="mdi-"].mdi-2x:before, [class*="mdi-"].mdi-2x:after {
  2593 + font-size: 2em; }
  2594 + [class^="mdi-"].mdi-3x:before, [class^="mdi-"].mdi-3x:after, [class*="mdi-"].mdi-3x:before, [class*="mdi-"].mdi-3x:after {
  2595 + font-size: 3em; }
  2596 + [class^="mdi-"].mdi-4x:before, [class^="mdi-"].mdi-4x:after, [class*="mdi-"].mdi-4x:before, [class*="mdi-"].mdi-4x:after {
  2597 + font-size: 4em; }
  2598 + [class^="mdi-"].mdi-5x:before, [class^="mdi-"].mdi-5x:after, [class*="mdi-"].mdi-5x:before, [class*="mdi-"].mdi-5x:after {
  2599 + font-size: 5em; }
  2600 +
  2601 +[class^="mdi-device-signal-cellular-"]:after, [class^="mdi-device-battery-"]:after, [class^="mdi-device-battery-charging-"]:after, [class^="mdi-device-signal-cellular-connected-no-internet-"]:after, [class^="mdi-device-signal-wifi-"]:after, [class^="mdi-device-signal-wifi-statusbar-not-connected"]:after, .mdi-device-network-wifi:after {
3428 2602 opacity: .3;
3429 2603 position: absolute;
3430 2604 left: 0;
... ... @@ -3432,144 +2606,122 @@ nav ul a span.badge {
3432 2606 z-index: 1;
3433 2607 display: inline-block;
3434 2608 speak: none;
3435   - text-decoration: inherit;
3436   -}
  2609 + text-decoration: inherit; }
3437 2610  
3438 2611 [class^="mdi-device-signal-cellular-"]:after {
3439   - content: "\e758";
3440   -}
  2612 + content: "\e758"; }
3441 2613  
3442 2614 [class^="mdi-device-battery-"]:after {
3443   - content: "\e735";
3444   -}
  2615 + content: "\e735"; }
3445 2616  
3446 2617 [class^="mdi-device-battery-charging-"]:after {
3447   - content: "\e733";
3448   -}
  2618 + content: "\e733"; }
3449 2619  
3450 2620 [class^="mdi-device-signal-cellular-connected-no-internet-"]:after {
3451   - content: "\e75d";
3452   -}
  2621 + content: "\e75d"; }
3453 2622  
3454 2623 [class^="mdi-device-signal-wifi-"]:after, .mdi-device-network-wifi:after {
3455   - content: "\e765";
3456   -}
  2624 + content: "\e765"; }
3457 2625  
3458 2626 [class^="mdi-device-signal-wifi-statusbasr-not-connected"]:after {
3459   - content: "\e8f7";
3460   -}
  2627 + content: "\e8f7"; }
3461 2628  
3462 2629 .mdi-device-signal-cellular-off:after, .mdi-device-signal-cellular-null:after, .mdi-device-signal-cellular-no-sim:after, .mdi-device-signal-wifi-off:after, .mdi-device-signal-wifi-4-bar:after, .mdi-device-signal-cellular-4-bar:after, .mdi-device-battery-alert:after, .mdi-device-signal-cellular-connected-no-internet-4-bar:after, .mdi-device-battery-std:after, .mdi-device-battery-full .mdi-device-battery-unknown:after {
3463   - content: "";
3464   -}
  2630 + content: ""; }
3465 2631  
3466 2632 .mdi-fw {
3467 2633 width: 1.28571429em;
3468   - text-align: center;
3469   -}
  2634 + text-align: center; }
3470 2635  
3471 2636 .mdi-ul {
3472 2637 padding-left: 0;
3473 2638 margin-left: 2.14285714em;
3474   - list-style-type: none;
3475   -}
  2639 + list-style-type: none; }
3476 2640  
3477 2641 .mdi-ul > li {
3478   - position: relative;
3479   -}
  2642 + position: relative; }
3480 2643  
3481 2644 .mdi-li {
3482 2645 position: absolute;
3483 2646 left: -2.14285714em;
3484 2647 width: 2.14285714em;
3485 2648 top: 0.14285714em;
3486   - text-align: center;
3487   -}
  2649 + text-align: center; }
3488 2650  
3489 2651 .mdi-li.mdi-lg {
3490   - left: -1.85714286em;
3491   -}
  2652 + left: -1.85714286em; }
3492 2653  
3493 2654 .mdi-border {
3494 2655 padding: .2em .25em .15em;
3495 2656 border: solid 0.08em #eeeeee;
3496   - border-radius: .1em;
3497   -}
  2657 + border-radius: .1em; }
3498 2658  
3499 2659 .mdi-spin {
3500 2660 -webkit-animation: mdi-spin 2s infinite linear;
3501 2661 animation: mdi-spin 2s infinite linear;
3502 2662 -webkit-transform-origin: 50% 50%;
3503   - transform-origin: 50% 50%;
3504   -}
  2663 + -moz-transform-origin: 50% 50%;
  2664 + -o-transform-origin: 50% 50%;
  2665 + transform-origin: 50% 50%; }
3505 2666  
3506 2667 .mdi-pulse {
3507 2668 -webkit-animation: mdi-spin 1s steps(8) infinite;
3508 2669 animation: mdi-spin 1s steps(8) infinite;
3509 2670 -webkit-transform-origin: 50% 50%;
3510   - transform-origin: 50% 50%;
3511   -}
  2671 + -moz-transform-origin: 50% 50%;
  2672 + -o-transform-origin: 50% 50%;
  2673 + transform-origin: 50% 50%; }
3512 2674  
3513 2675 @-webkit-keyframes mdi-spin {
3514 2676 0% {
3515 2677 -webkit-transform: rotate(0deg);
3516   - transform: rotate(0deg);
3517   - }
  2678 + transform: rotate(0deg); }
  2679 +
3518 2680 100% {
3519 2681 -webkit-transform: rotate(359deg);
3520   - transform: rotate(359deg);
3521   - }
3522   -}
  2682 + transform: rotate(359deg); } }
3523 2683  
3524 2684 @keyframes mdi-spin {
3525 2685 0% {
3526 2686 -webkit-transform: rotate(0deg);
3527   - transform: rotate(0deg);
3528   - }
  2687 + transform: rotate(0deg); }
  2688 +
3529 2689 100% {
3530 2690 -webkit-transform: rotate(359deg);
3531   - transform: rotate(359deg);
3532   - }
3533   -}
  2691 + transform: rotate(359deg); } }
3534 2692  
3535 2693 .mdi-rotate-90 {
3536 2694 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
3537 2695 -webkit-transform: rotate(90deg);
3538   - transform: rotate(90deg);
3539   -}
  2696 + -ms-transform: rotate(90deg);
  2697 + transform: rotate(90deg); }
3540 2698  
3541 2699 .mdi-rotate-180 {
3542 2700 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
3543 2701 -webkit-transform: rotate(180deg);
3544   - transform: rotate(180deg);
3545   -}
  2702 + -ms-transform: rotate(180deg);
  2703 + transform: rotate(180deg); }
3546 2704  
3547 2705 .mdi-rotate-270 {
3548 2706 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
3549 2707 -webkit-transform: rotate(270deg);
3550   - transform: rotate(270deg);
3551   -}
  2708 + -ms-transform: rotate(270deg);
  2709 + transform: rotate(270deg); }
3552 2710  
3553 2711 .mdi-flip-horizontal {
3554 2712 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
3555 2713 -webkit-transform: scale(-1, 1);
3556   - transform: scale(-1, 1);
3557   -}
  2714 + -ms-transform: scale(-1, 1);
  2715 + transform: scale(-1, 1); }
3558 2716  
3559 2717 .mdi-flip-vertical {
3560 2718 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
3561 2719 -webkit-transform: scale(1, -1);
3562   - transform: scale(1, -1);
3563   -}
3564   -
3565   -:root .mdi-rotate-90,
3566   -:root .mdi-rotate-180,
3567   -:root .mdi-rotate-270,
3568   -:root .mdi-flip-horizontal,
3569   -:root .mdi-flip-vertical {
3570   - -webkit-filter: none;
3571   - filter: none;
3572   -}
  2720 + -ms-transform: scale(1, -1);
  2721 + transform: scale(1, -1); }
  2722 +
  2723 +:root .mdi-rotate-90, :root .mdi-rotate-180, :root .mdi-rotate-270, :root .mdi-flip-horizontal, :root .mdi-flip-vertical {
  2724 + filter: none; }
3573 2725  
3574 2726 .mdi-stack {
3575 2727 position: relative;
... ... @@ -3577,4326 +2729,2936 @@ nav ul a span.badge {
3577 2729 width: 2em;
3578 2730 height: 2em;
3579 2731 line-height: 2em;
3580   - vertical-align: middle;
3581   -}
  2732 + vertical-align: middle; }
3582 2733  
3583   -.mdi-stack-1x,
3584   -.mdi-stack-2x {
  2734 +.mdi-stack-1x, .mdi-stack-2x {
3585 2735 position: absolute;
3586 2736 left: 0;
3587 2737 width: 100%;
3588   - text-align: center;
3589   -}
  2738 + text-align: center; }
3590 2739  
3591 2740 .mdi-stack-1x {
3592   - line-height: inherit;
3593   -}
  2741 + line-height: inherit; }
3594 2742  
3595 2743 .mdi-stack-2x {
3596   - font-size: 2em;
3597   -}
  2744 + font-size: 2em; }
3598 2745  
3599 2746 .mdi-inverse {
3600   - color: #ffffff;
3601   -}
  2747 + color: #ffffff; }
3602 2748  
3603 2749 /* Start Icons */
3604 2750 .mdi-action-3d-rotation:before {
3605   - content: "\e600";
3606   -}
  2751 + content: "\e600"; }
3607 2752  
3608 2753 .mdi-action-accessibility:before {
3609   - content: "\e601";
3610   -}
  2754 + content: "\e601"; }
3611 2755  
3612 2756 .mdi-action-account-balance-wallet:before {
3613   - content: "\e602";
3614   -}
  2757 + content: "\e602"; }
3615 2758  
3616 2759 .mdi-action-account-balance:before {
3617   - content: "\e603";
3618   -}
  2760 + content: "\e603"; }
3619 2761  
3620 2762 .mdi-action-account-box:before {
3621   - content: "\e604";
3622   -}
  2763 + content: "\e604"; }
3623 2764  
3624 2765 .mdi-action-account-child:before {
3625   - content: "\e605";
3626   -}
  2766 + content: "\e605"; }
3627 2767  
3628 2768 .mdi-action-account-circle:before {
3629   - content: "\e606";
3630   -}
  2769 + content: "\e606"; }
3631 2770  
3632 2771 .mdi-action-add-shopping-cart:before {
3633   - content: "\e607";
3634   -}
  2772 + content: "\e607"; }
3635 2773  
3636 2774 .mdi-action-alarm-add:before {
3637   - content: "\e608";
3638   -}
  2775 + content: "\e608"; }
3639 2776  
3640 2777 .mdi-action-alarm-off:before {
3641   - content: "\e609";
3642   -}
  2778 + content: "\e609"; }
3643 2779  
3644 2780 .mdi-action-alarm-on:before {
3645   - content: "\e60a";
3646   -}
  2781 + content: "\e60a"; }
3647 2782  
3648 2783 .mdi-action-alarm:before {
3649   - content: "\e60b";
3650   -}
  2784 + content: "\e60b"; }
3651 2785  
3652 2786 .mdi-action-android:before {
3653   - content: "\e60c";
3654   -}
  2787 + content: "\e60c"; }
3655 2788  
3656 2789 .mdi-action-announcement:before {
3657   - content: "\e60d";
3658   -}
  2790 + content: "\e60d"; }
3659 2791  
3660 2792 .mdi-action-aspect-ratio:before {
3661   - content: "\e60e";
3662   -}
  2793 + content: "\e60e"; }
3663 2794  
3664 2795 .mdi-action-assessment:before {
3665   - content: "\e60f";
3666   -}
  2796 + content: "\e60f"; }
3667 2797  
3668 2798 .mdi-action-assignment-ind:before {
3669   - content: "\e610";
3670   -}
  2799 + content: "\e610"; }
3671 2800  
3672 2801 .mdi-action-assignment-late:before {
3673   - content: "\e611";
3674   -}
  2802 + content: "\e611"; }
3675 2803  
3676 2804 .mdi-action-assignment-return:before {
3677   - content: "\e612";
3678   -}
  2805 + content: "\e612"; }
3679 2806  
3680 2807 .mdi-action-assignment-returned:before {
3681   - content: "\e613";
3682   -}
  2808 + content: "\e613"; }
3683 2809  
3684 2810 .mdi-action-assignment-turned-in:before {
3685   - content: "\e614";
3686   -}
  2811 + content: "\e614"; }
3687 2812  
3688 2813 .mdi-action-assignment:before {
3689   - content: "\e615";
3690   -}
  2814 + content: "\e615"; }
3691 2815  
3692 2816 .mdi-action-autorenew:before {
3693   - content: "\e616";
3694   -}
  2817 + content: "\e616"; }
3695 2818  
3696 2819 .mdi-action-backup:before {
3697   - content: "\e617";
3698   -}
  2820 + content: "\e617"; }
3699 2821  
3700 2822 .mdi-action-book:before {
3701   - content: "\e618";
3702   -}
  2823 + content: "\e618"; }
3703 2824  
3704 2825 .mdi-action-bookmark-outline:before {
3705   - content: "\e619";
3706   -}
  2826 + content: "\e619"; }
3707 2827  
3708 2828 .mdi-action-bookmark:before {
3709   - content: "\e61a";
3710   -}
  2829 + content: "\e61a"; }
3711 2830  
3712 2831 .mdi-action-bug-report:before {
3713   - content: "\e61b";
3714   -}
  2832 + content: "\e61b"; }
3715 2833  
3716 2834 .mdi-action-cached:before {
3717   - content: "\e61c";
3718   -}
  2835 + content: "\e61c"; }
3719 2836  
3720 2837 .mdi-action-check-circle:before {
3721   - content: "\e61d";
3722   -}
  2838 + content: "\e61d"; }
3723 2839  
3724 2840 .mdi-action-class:before {
3725   - content: "\e61e";
3726   -}
  2841 + content: "\e61e"; }
3727 2842  
3728 2843 .mdi-action-credit-card:before {
3729   - content: "\e61f";
3730   -}
  2844 + content: "\e61f"; }
3731 2845  
3732 2846 .mdi-action-dashboard:before {
3733   - content: "\e620";
3734   -}
  2847 + content: "\e620"; }
3735 2848  
3736 2849 .mdi-action-delete:before {
3737   - content: "\e621";
3738   -}
  2850 + content: "\e621"; }
3739 2851  
3740 2852 .mdi-action-description:before {
3741   - content: "\e622";
3742   -}
  2853 + content: "\e622"; }
3743 2854  
3744 2855 .mdi-action-dns:before {
3745   - content: "\e623";
3746   -}
  2856 + content: "\e623"; }
3747 2857  
3748 2858 .mdi-action-done-all:before {
3749   - content: "\e624";
3750   -}
  2859 + content: "\e624"; }
3751 2860  
3752 2861 .mdi-action-done:before {
3753   - content: "\e625";
3754   -}
  2862 + content: "\e625"; }
3755 2863  
3756 2864 .mdi-action-event:before {
3757   - content: "\e626";
3758   -}
  2865 + content: "\e626"; }
3759 2866  
3760 2867 .mdi-action-exit-to-app:before {
3761   - content: "\e627";
3762   -}
  2868 + content: "\e627"; }
3763 2869  
3764 2870 .mdi-action-explore:before {
3765   - content: "\e628";
3766   -}
  2871 + content: "\e628"; }
3767 2872  
3768 2873 .mdi-action-extension:before {
3769   - content: "\e629";
3770   -}
  2874 + content: "\e629"; }
3771 2875  
3772 2876 .mdi-action-face-unlock:before {
3773   - content: "\e62a";
3774   -}
  2877 + content: "\e62a"; }
3775 2878  
3776 2879 .mdi-action-favorite-outline:before {
3777   - content: "\e62b";
3778   -}
  2880 + content: "\e62b"; }
3779 2881  
3780 2882 .mdi-action-favorite:before {
3781   - content: "\e62c";
3782   -}
  2883 + content: "\e62c"; }
3783 2884  
3784 2885 .mdi-action-find-in-page:before {
3785   - content: "\e62d";
3786   -}
  2886 + content: "\e62d"; }
3787 2887  
3788 2888 .mdi-action-find-replace:before {
3789   - content: "\e62e";
3790   -}
  2889 + content: "\e62e"; }
3791 2890  
3792 2891 .mdi-action-flip-to-back:before {
3793   - content: "\e62f";
3794   -}
  2892 + content: "\e62f"; }
3795 2893  
3796 2894 .mdi-action-flip-to-front:before {
3797   - content: "\e630";
3798   -}
  2895 + content: "\e630"; }
3799 2896  
3800 2897 .mdi-action-get-app:before {
3801   - content: "\e631";
3802   -}
  2898 + content: "\e631"; }
3803 2899  
3804 2900 .mdi-action-grade:before {
3805   - content: "\e632";
3806   -}
  2901 + content: "\e632"; }
3807 2902  
3808 2903 .mdi-action-group-work:before {
3809   - content: "\e633";
3810   -}
  2904 + content: "\e633"; }
3811 2905  
3812 2906 .mdi-action-help:before {
3813   - content: "\e634";
3814   -}
  2907 + content: "\e634"; }
3815 2908  
3816 2909 .mdi-action-highlight-remove:before {
3817   - content: "\e635";
3818   -}
  2910 + content: "\e635"; }
3819 2911  
3820 2912 .mdi-action-history:before {
3821   - content: "\e636";
3822   -}
  2913 + content: "\e636"; }
3823 2914  
3824 2915 .mdi-action-home:before {
3825   - content: "\e637";
3826   -}
  2916 + content: "\e637"; }
3827 2917  
3828 2918 .mdi-action-https:before {
3829   - content: "\e638";
3830   -}
  2919 + content: "\e638"; }
3831 2920  
3832 2921 .mdi-action-info-outline:before {
3833   - content: "\e639";
3834   -}
  2922 + content: "\e639"; }
3835 2923  
3836 2924 .mdi-action-info:before {
3837   - content: "\e63a";
3838   -}
  2925 + content: "\e63a"; }
3839 2926  
3840 2927 .mdi-action-input:before {
3841   - content: "\e63b";
3842   -}
  2928 + content: "\e63b"; }
3843 2929  
3844 2930 .mdi-action-invert-colors:before {
3845   - content: "\e63c";
3846   -}
  2931 + content: "\e63c"; }
3847 2932  
3848 2933 .mdi-action-label-outline:before {
3849   - content: "\e63d";
3850   -}
  2934 + content: "\e63d"; }
3851 2935  
3852 2936 .mdi-action-label:before {
3853   - content: "\e63e";
3854   -}
  2937 + content: "\e63e"; }
3855 2938  
3856 2939 .mdi-action-language:before {
3857   - content: "\e63f";
3858   -}
  2940 + content: "\e63f"; }
3859 2941  
3860 2942 .mdi-action-launch:before {
3861   - content: "\e640";
3862   -}
  2943 + content: "\e640"; }
3863 2944  
3864 2945 .mdi-action-list:before {
3865   - content: "\e641";
3866   -}
  2946 + content: "\e641"; }
3867 2947  
3868 2948 .mdi-action-lock-open:before {
3869   - content: "\e642";
3870   -}
  2949 + content: "\e642"; }
3871 2950  
3872 2951 .mdi-action-lock-outline:before {
3873   - content: "\e643";
3874   -}
  2952 + content: "\e643"; }
3875 2953  
3876 2954 .mdi-action-lock:before {
3877   - content: "\e644";
3878   -}
  2955 + content: "\e644"; }
3879 2956  
3880 2957 .mdi-action-loyalty:before {
3881   - content: "\e645";
3882   -}
  2958 + content: "\e645"; }
3883 2959  
3884 2960 .mdi-action-markunread-mailbox:before {
3885   - content: "\e646";
3886   -}
  2961 + content: "\e646"; }
3887 2962  
3888 2963 .mdi-action-note-add:before {
3889   - content: "\e647";
3890   -}
  2964 + content: "\e647"; }
3891 2965  
3892 2966 .mdi-action-open-in-browser:before {
3893   - content: "\e648";
3894   -}
  2967 + content: "\e648"; }
3895 2968  
3896 2969 .mdi-action-open-in-new:before {
3897   - content: "\e649";
3898   -}
  2970 + content: "\e649"; }
3899 2971  
3900 2972 .mdi-action-open-with:before {
3901   - content: "\e64a";
3902   -}
  2973 + content: "\e64a"; }
3903 2974  
3904 2975 .mdi-action-pageview:before {
3905   - content: "\e64b";
3906   -}
  2976 + content: "\e64b"; }
3907 2977  
3908 2978 .mdi-action-payment:before {
3909   - content: "\e64c";
3910   -}
  2979 + content: "\e64c"; }
3911 2980  
3912 2981 .mdi-action-perm-camera-mic:before {
3913   - content: "\e64d";
3914   -}
  2982 + content: "\e64d"; }
3915 2983  
3916 2984 .mdi-action-perm-contact-cal:before {
3917   - content: "\e64e";
3918   -}
  2985 + content: "\e64e"; }
3919 2986  
3920 2987 .mdi-action-perm-data-setting:before {
3921   - content: "\e64f";
3922   -}
  2988 + content: "\e64f"; }
3923 2989  
3924 2990 .mdi-action-perm-device-info:before {
3925   - content: "\e650";
3926   -}
  2991 + content: "\e650"; }
3927 2992  
3928 2993 .mdi-action-perm-identity:before {
3929   - content: "\e651";
3930   -}
  2994 + content: "\e651"; }
3931 2995  
3932 2996 .mdi-action-perm-media:before {
3933   - content: "\e652";
3934   -}
  2997 + content: "\e652"; }
3935 2998  
3936 2999 .mdi-action-perm-phone-msg:before {
3937   - content: "\e653";
3938   -}
  3000 + content: "\e653"; }
3939 3001  
3940 3002 .mdi-action-perm-scan-wifi:before {
3941   - content: "\e654";
3942   -}
  3003 + content: "\e654"; }
3943 3004  
3944 3005 .mdi-action-picture-in-picture:before {
3945   - content: "\e655";
3946   -}
  3006 + content: "\e655"; }
3947 3007  
3948 3008 .mdi-action-polymer:before {
3949   - content: "\e656";
3950   -}
  3009 + content: "\e656"; }
3951 3010  
3952 3011 .mdi-action-print:before {
3953   - content: "\e657";
3954   -}
  3012 + content: "\e657"; }
3955 3013  
3956 3014 .mdi-action-query-builder:before {
3957   - content: "\e658";
3958   -}
  3015 + content: "\e658"; }
3959 3016  
3960 3017 .mdi-action-question-answer:before {
3961   - content: "\e659";
3962   -}
  3018 + content: "\e659"; }
3963 3019  
3964 3020 .mdi-action-receipt:before {
3965   - content: "\e65a";
3966   -}
  3021 + content: "\e65a"; }
3967 3022  
3968 3023 .mdi-action-redeem:before {
3969   - content: "\e65b";
3970   -}
  3024 + content: "\e65b"; }
3971 3025  
3972 3026 .mdi-action-reorder:before {
3973   - content: "\e65c";
3974   -}
  3027 + content: "\e65c"; }
3975 3028  
3976 3029 .mdi-action-report-problem:before {
3977   - content: "\e65d";
3978   -}
  3030 + content: "\e65d"; }
3979 3031  
3980 3032 .mdi-action-restore:before {
3981   - content: "\e65e";
3982   -}
  3033 + content: "\e65e"; }
3983 3034  
3984 3035 .mdi-action-room:before {
3985   - content: "\e65f";
3986   -}
  3036 + content: "\e65f"; }
3987 3037  
3988 3038 .mdi-action-schedule:before {
3989   - content: "\e660";
3990   -}
  3039 + content: "\e660"; }
3991 3040  
3992 3041 .mdi-action-search:before {
3993   - content: "\e661";
3994   -}
  3042 + content: "\e661"; }
3995 3043  
3996 3044 .mdi-action-settings-applications:before {
3997   - content: "\e662";
3998   -}
  3045 + content: "\e662"; }
3999 3046  
4000 3047 .mdi-action-settings-backup-restore:before {
4001   - content: "\e663";
4002   -}
  3048 + content: "\e663"; }
4003 3049  
4004 3050 .mdi-action-settings-bluetooth:before {
4005   - content: "\e664";
4006   -}
  3051 + content: "\e664"; }
4007 3052  
4008 3053 .mdi-action-settings-cell:before {
4009   - content: "\e665";
4010   -}
  3054 + content: "\e665"; }
4011 3055  
4012 3056 .mdi-action-settings-display:before {
4013   - content: "\e666";
4014   -}
  3057 + content: "\e666"; }
4015 3058  
4016 3059 .mdi-action-settings-ethernet:before {
4017   - content: "\e667";
4018   -}
  3060 + content: "\e667"; }
4019 3061  
4020 3062 .mdi-action-settings-input-antenna:before {
4021   - content: "\e668";
4022   -}
  3063 + content: "\e668"; }
4023 3064  
4024 3065 .mdi-action-settings-input-component:before {
4025   - content: "\e669";
4026   -}
  3066 + content: "\e669"; }
4027 3067  
4028 3068 .mdi-action-settings-input-composite:before {
4029   - content: "\e66a";
4030   -}
  3069 + content: "\e66a"; }
4031 3070  
4032 3071 .mdi-action-settings-input-hdmi:before {
4033   - content: "\e66b";
4034   -}
  3072 + content: "\e66b"; }
4035 3073  
4036 3074 .mdi-action-settings-input-svideo:before {
4037   - content: "\e66c";
4038   -}
  3075 + content: "\e66c"; }
4039 3076  
4040 3077 .mdi-action-settings-overscan:before {
4041   - content: "\e66d";
4042   -}
  3078 + content: "\e66d"; }
4043 3079  
4044 3080 .mdi-action-settings-phone:before {
4045   - content: "\e66e";
4046   -}
  3081 + content: "\e66e"; }
4047 3082  
4048 3083 .mdi-action-settings-power:before {
4049   - content: "\e66f";
4050   -}
  3084 + content: "\e66f"; }
4051 3085  
4052 3086 .mdi-action-settings-remote:before {
4053   - content: "\e670";
4054   -}
  3087 + content: "\e670"; }
4055 3088  
4056 3089 .mdi-action-settings-voice:before {
4057   - content: "\e671";
4058   -}
  3090 + content: "\e671"; }
4059 3091  
4060 3092 .mdi-action-settings:before {
4061   - content: "\e672";
4062   -}
  3093 + content: "\e672"; }
4063 3094  
4064 3095 .mdi-action-shop-two:before {
4065   - content: "\e673";
4066   -}
  3096 + content: "\e673"; }
4067 3097  
4068 3098 .mdi-action-shop:before {
4069   - content: "\e674";
4070   -}
  3099 + content: "\e674"; }
4071 3100  
4072 3101 .mdi-action-shopping-basket:before {
4073   - content: "\e675";
4074   -}
  3102 + content: "\e675"; }
4075 3103  
4076 3104 .mdi-action-shopping-cart:before {
4077   - content: "\e676";
4078   -}
  3105 + content: "\e676"; }
4079 3106  
4080 3107 .mdi-action-speaker-notes:before {
4081   - content: "\e677";
4082   -}
  3108 + content: "\e677"; }
4083 3109  
4084 3110 .mdi-action-spellcheck:before {
4085   - content: "\e678";
4086   -}
  3111 + content: "\e678"; }
4087 3112  
4088 3113 .mdi-action-star-rate:before {
4089   - content: "\e679";
4090   -}
  3114 + content: "\e679"; }
4091 3115  
4092 3116 .mdi-action-stars:before {
4093   - content: "\e67a";
4094   -}
  3117 + content: "\e67a"; }
4095 3118  
4096 3119 .mdi-action-store:before {
4097   - content: "\e67b";
4098   -}
  3120 + content: "\e67b"; }
4099 3121  
4100 3122 .mdi-action-subject:before {
4101   - content: "\e67c";
4102   -}
  3123 + content: "\e67c"; }
4103 3124  
4104 3125 .mdi-action-supervisor-account:before {
4105   - content: "\e67d";
4106   -}
  3126 + content: "\e67d"; }
4107 3127  
4108 3128 .mdi-action-swap-horiz:before {
4109   - content: "\e67e";
4110   -}
  3129 + content: "\e67e"; }
4111 3130  
4112 3131 .mdi-action-swap-vert-circle:before {
4113   - content: "\e67f";
4114   -}
  3132 + content: "\e67f"; }
4115 3133  
4116 3134 .mdi-action-swap-vert:before {
4117   - content: "\e680";
4118   -}
  3135 + content: "\e680"; }
4119 3136  
4120 3137 .mdi-action-system-update-tv:before {
4121   - content: "\e681";
4122   -}
  3138 + content: "\e681"; }
4123 3139  
4124 3140 .mdi-action-tab-unselected:before {
4125   - content: "\e682";
4126   -}
  3141 + content: "\e682"; }
4127 3142  
4128 3143 .mdi-action-tab:before {
4129   - content: "\e683";
4130   -}
  3144 + content: "\e683"; }
4131 3145  
4132 3146 .mdi-action-theaters:before {
4133   - content: "\e684";
4134   -}
  3147 + content: "\e684"; }
4135 3148  
4136 3149 .mdi-action-thumb-down:before {
4137   - content: "\e685";
4138   -}
  3150 + content: "\e685"; }
4139 3151  
4140 3152 .mdi-action-thumb-up:before {
4141   - content: "\e686";
4142   -}
  3153 + content: "\e686"; }
4143 3154  
4144 3155 .mdi-action-thumbs-up-down:before {
4145   - content: "\e687";
4146   -}
  3156 + content: "\e687"; }
4147 3157  
4148 3158 .mdi-action-toc:before {
4149   - content: "\e688";
4150   -}
  3159 + content: "\e688"; }
4151 3160  
4152 3161 .mdi-action-today:before {
4153   - content: "\e689";
4154   -}
  3162 + content: "\e689"; }
4155 3163  
4156 3164 .mdi-action-track-changes:before {
4157   - content: "\e68a";
4158   -}
  3165 + content: "\e68a"; }
4159 3166  
4160 3167 .mdi-action-translate:before {
4161   - content: "\e68b";
4162   -}
  3168 + content: "\e68b"; }
4163 3169  
4164 3170 .mdi-action-trending-down:before {
4165   - content: "\e68c";
4166   -}
  3171 + content: "\e68c"; }
4167 3172  
4168 3173 .mdi-action-trending-neutral:before {
4169   - content: "\e68d";
4170   -}
  3174 + content: "\e68d"; }
4171 3175  
4172 3176 .mdi-action-trending-up:before {
4173   - content: "\e68e";
4174   -}
  3177 + content: "\e68e"; }
4175 3178  
4176 3179 .mdi-action-turned-in-not:before {
4177   - content: "\e68f";
4178   -}
  3180 + content: "\e68f"; }
4179 3181  
4180 3182 .mdi-action-turned-in:before {
4181   - content: "\e690";
4182   -}
  3183 + content: "\e690"; }
4183 3184  
4184 3185 .mdi-action-verified-user:before {
4185   - content: "\e691";
4186   -}
  3186 + content: "\e691"; }
4187 3187  
4188 3188 .mdi-action-view-agenda:before {
4189   - content: "\e692";
4190   -}
  3189 + content: "\e692"; }
4191 3190  
4192 3191 .mdi-action-view-array:before {
4193   - content: "\e693";
4194   -}
  3192 + content: "\e693"; }
4195 3193  
4196 3194 .mdi-action-view-carousel:before {
4197   - content: "\e694";
4198   -}
  3195 + content: "\e694"; }
4199 3196  
4200 3197 .mdi-action-view-column:before {
4201   - content: "\e695";
4202   -}
  3198 + content: "\e695"; }
4203 3199  
4204 3200 .mdi-action-view-day:before {
4205   - content: "\e696";
4206   -}
  3201 + content: "\e696"; }
4207 3202  
4208 3203 .mdi-action-view-headline:before {
4209   - content: "\e697";
4210   -}
  3204 + content: "\e697"; }
4211 3205  
4212 3206 .mdi-action-view-list:before {
4213   - content: "\e698";
4214   -}
  3207 + content: "\e698"; }
4215 3208  
4216 3209 .mdi-action-view-module:before {
4217   - content: "\e699";
4218   -}
  3210 + content: "\e699"; }
4219 3211  
4220 3212 .mdi-action-view-quilt:before {
4221   - content: "\e69a";
4222   -}
  3213 + content: "\e69a"; }
4223 3214  
4224 3215 .mdi-action-view-stream:before {
4225   - content: "\e69b";
4226   -}
  3216 + content: "\e69b"; }
4227 3217  
4228 3218 .mdi-action-view-week:before {
4229   - content: "\e69c";
4230   -}
  3219 + content: "\e69c"; }
4231 3220  
4232 3221 .mdi-action-visibility-off:before {
4233   - content: "\e69d";
4234   -}
  3222 + content: "\e69d"; }
4235 3223  
4236 3224 .mdi-action-visibility:before {
4237   - content: "\e69e";
4238   -}
  3225 + content: "\e69e"; }
4239 3226  
4240 3227 .mdi-action-wallet-giftcard:before {
4241   - content: "\e69f";
4242   -}
  3228 + content: "\e69f"; }
4243 3229  
4244 3230 .mdi-action-wallet-membership:before {
4245   - content: "\e6a0";
4246   -}
  3231 + content: "\e6a0"; }
4247 3232  
4248 3233 .mdi-action-wallet-travel:before {
4249   - content: "\e6a1";
4250   -}
  3234 + content: "\e6a1"; }
4251 3235  
4252 3236 .mdi-action-work:before {
4253   - content: "\e6a2";
4254   -}
  3237 + content: "\e6a2"; }
4255 3238  
4256 3239 .mdi-alert-error:before {
4257   - content: "\e6a3";
4258   -}
  3240 + content: "\e6a3"; }
4259 3241  
4260 3242 .mdi-alert-warning:before {
4261   - content: "\e6a4";
4262   -}
  3243 + content: "\e6a4"; }
4263 3244  
4264 3245 .mdi-av-album:before {
4265   - content: "\e6a5";
4266   -}
  3246 + content: "\e6a5"; }
4267 3247  
4268 3248 .mdi-av-closed-caption:before {
4269   - content: "\e6a6";
4270   -}
  3249 + content: "\e6a6"; }
4271 3250  
4272 3251 .mdi-av-equalizer:before {
4273   - content: "\e6a7";
4274   -}
  3252 + content: "\e6a7"; }
4275 3253  
4276 3254 .mdi-av-explicit:before {
4277   - content: "\e6a8";
4278   -}
  3255 + content: "\e6a8"; }
4279 3256  
4280 3257 .mdi-av-fast-forward:before {
4281   - content: "\e6a9";
4282   -}
  3258 + content: "\e6a9"; }
4283 3259  
4284 3260 .mdi-av-fast-rewind:before {
4285   - content: "\e6aa";
4286   -}
  3261 + content: "\e6aa"; }
4287 3262  
4288 3263 .mdi-av-games:before {
4289   - content: "\e6ab";
4290   -}
  3264 + content: "\e6ab"; }
4291 3265  
4292 3266 .mdi-av-hearing:before {
4293   - content: "\e6ac";
4294   -}
  3267 + content: "\e6ac"; }
4295 3268  
4296 3269 .mdi-av-high-quality:before {
4297   - content: "\e6ad";
4298   -}
  3270 + content: "\e6ad"; }
4299 3271  
4300 3272 .mdi-av-loop:before {
4301   - content: "\e6ae";
4302   -}
  3273 + content: "\e6ae"; }
4303 3274  
4304 3275 .mdi-av-mic-none:before {
4305   - content: "\e6af";
4306   -}
  3276 + content: "\e6af"; }
4307 3277  
4308 3278 .mdi-av-mic-off:before {
4309   - content: "\e6b0";
4310   -}
  3279 + content: "\e6b0"; }
4311 3280  
4312 3281 .mdi-av-mic:before {
4313   - content: "\e6b1";
4314   -}
  3282 + content: "\e6b1"; }
4315 3283  
4316 3284 .mdi-av-movie:before {
4317   - content: "\e6b2";
4318   -}
  3285 + content: "\e6b2"; }
4319 3286  
4320 3287 .mdi-av-my-library-add:before {
4321   - content: "\e6b3";
4322   -}
  3288 + content: "\e6b3"; }
4323 3289  
4324 3290 .mdi-av-my-library-books:before {
4325   - content: "\e6b4";
4326   -}
  3291 + content: "\e6b4"; }
4327 3292  
4328 3293 .mdi-av-my-library-music:before {
4329   - content: "\e6b5";
4330   -}
  3294 + content: "\e6b5"; }
4331 3295  
4332 3296 .mdi-av-new-releases:before {
4333   - content: "\e6b6";
4334   -}
  3297 + content: "\e6b6"; }
4335 3298  
4336 3299 .mdi-av-not-interested:before {
4337   - content: "\e6b7";
4338   -}
  3300 + content: "\e6b7"; }
4339 3301  
4340 3302 .mdi-av-pause-circle-fill:before {
4341   - content: "\e6b8";
4342   -}
  3303 + content: "\e6b8"; }
4343 3304  
4344 3305 .mdi-av-pause-circle-outline:before {
4345   - content: "\e6b9";
4346   -}
  3306 + content: "\e6b9"; }
4347 3307  
4348 3308 .mdi-av-pause:before {
4349   - content: "\e6ba";
4350   -}
  3309 + content: "\e6ba"; }
4351 3310  
4352 3311 .mdi-av-play-arrow:before {
4353   - content: "\e6bb";
4354   -}
  3312 + content: "\e6bb"; }
4355 3313  
4356 3314 .mdi-av-play-circle-fill:before {
4357   - content: "\e6bc";
4358   -}
  3315 + content: "\e6bc"; }
4359 3316  
4360 3317 .mdi-av-play-circle-outline:before {
4361   - content: "\e6bd";
4362   -}
  3318 + content: "\e6bd"; }
4363 3319  
4364 3320 .mdi-av-play-shopping-bag:before {
4365   - content: "\e6be";
4366   -}
  3321 + content: "\e6be"; }
4367 3322  
4368 3323 .mdi-av-playlist-add:before {
4369   - content: "\e6bf";
4370   -}
  3324 + content: "\e6bf"; }
4371 3325  
4372 3326 .mdi-av-queue-music:before {
4373   - content: "\e6c0";
4374   -}
  3327 + content: "\e6c0"; }
4375 3328  
4376 3329 .mdi-av-queue:before {
4377   - content: "\e6c1";
4378   -}
  3330 + content: "\e6c1"; }
4379 3331  
4380 3332 .mdi-av-radio:before {
4381   - content: "\e6c2";
4382   -}
  3333 + content: "\e6c2"; }
4383 3334  
4384 3335 .mdi-av-recent-actors:before {
4385   - content: "\e6c3";
4386   -}
  3336 + content: "\e6c3"; }
4387 3337  
4388 3338 .mdi-av-repeat-one:before {
4389   - content: "\e6c4";
4390   -}
  3339 + content: "\e6c4"; }
4391 3340  
4392 3341 .mdi-av-repeat:before {
4393   - content: "\e6c5";
4394   -}
  3342 + content: "\e6c5"; }
4395 3343  
4396 3344 .mdi-av-replay:before {
4397   - content: "\e6c6";
4398   -}
  3345 + content: "\e6c6"; }
4399 3346  
4400 3347 .mdi-av-shuffle:before {
4401   - content: "\e6c7";
4402   -}
  3348 + content: "\e6c7"; }
4403 3349  
4404 3350 .mdi-av-skip-next:before {
4405   - content: "\e6c8";
4406   -}
  3351 + content: "\e6c8"; }
4407 3352  
4408 3353 .mdi-av-skip-previous:before {
4409   - content: "\e6c9";
4410   -}
  3354 + content: "\e6c9"; }
4411 3355  
4412 3356 .mdi-av-snooze:before {
4413   - content: "\e6ca";
4414   -}
  3357 + content: "\e6ca"; }
4415 3358  
4416 3359 .mdi-av-stop:before {
4417   - content: "\e6cb";
4418   -}
  3360 + content: "\e6cb"; }
4419 3361  
4420 3362 .mdi-av-subtitles:before {
4421   - content: "\e6cc";
4422   -}
  3363 + content: "\e6cc"; }
4423 3364  
4424 3365 .mdi-av-surround-sound:before {
4425   - content: "\e6cd";
4426   -}
  3366 + content: "\e6cd"; }
4427 3367  
4428 3368 .mdi-av-timer:before {
4429   - content: "\e6ce";
4430   -}
  3369 + content: "\e6ce"; }
4431 3370  
4432 3371 .mdi-av-video-collection:before {
4433   - content: "\e6cf";
4434   -}
  3372 + content: "\e6cf"; }
4435 3373  
4436 3374 .mdi-av-videocam-off:before {
4437   - content: "\e6d0";
4438   -}
  3375 + content: "\e6d0"; }
4439 3376  
4440 3377 .mdi-av-videocam:before {
4441   - content: "\e6d1";
4442   -}
  3378 + content: "\e6d1"; }
4443 3379  
4444 3380 .mdi-av-volume-down:before {
4445   - content: "\e6d2";
4446   -}
  3381 + content: "\e6d2"; }
4447 3382  
4448 3383 .mdi-av-volume-mute:before {
4449   - content: "\e6d3";
4450   -}
  3384 + content: "\e6d3"; }
4451 3385  
4452 3386 .mdi-av-volume-off:before {
4453   - content: "\e6d4";
4454   -}
  3387 + content: "\e6d4"; }
4455 3388  
4456 3389 .mdi-av-volume-up:before {
4457   - content: "\e6d5";
4458   -}
  3390 + content: "\e6d5"; }
4459 3391  
4460 3392 .mdi-av-web:before {
4461   - content: "\e6d6";
4462   -}
  3393 + content: "\e6d6"; }
4463 3394  
4464 3395 .mdi-communication-business:before {
4465   - content: "\e6d7";
4466   -}
  3396 + content: "\e6d7"; }
4467 3397  
4468 3398 .mdi-communication-call-end:before {
4469   - content: "\e6d8";
4470   -}
  3399 + content: "\e6d8"; }
4471 3400  
4472 3401 .mdi-communication-call-made:before {
4473   - content: "\e6d9";
4474   -}
  3402 + content: "\e6d9"; }
4475 3403  
4476 3404 .mdi-communication-call-merge:before {
4477   - content: "\e6da";
4478   -}
  3405 + content: "\e6da"; }
4479 3406  
4480 3407 .mdi-communication-call-missed:before {
4481   - content: "\e6db";
4482   -}
  3408 + content: "\e6db"; }
4483 3409  
4484 3410 .mdi-communication-call-received:before {
4485   - content: "\e6dc";
4486   -}
  3411 + content: "\e6dc"; }
4487 3412  
4488 3413 .mdi-communication-call-split:before {
4489   - content: "\e6dd";
4490   -}
  3414 + content: "\e6dd"; }
4491 3415  
4492 3416 .mdi-communication-call:before {
4493   - content: "\e6de";
4494   -}
  3417 + content: "\e6de"; }
4495 3418  
4496 3419 .mdi-communication-chat:before {
4497   - content: "\e6df";
4498   -}
  3420 + content: "\e6df"; }
4499 3421  
4500 3422 .mdi-communication-clear-all:before {
4501   - content: "\e6e0";
4502   -}
  3423 + content: "\e6e0"; }
4503 3424  
4504 3425 .mdi-communication-comment:before {
4505   - content: "\e6e1";
4506   -}
  3426 + content: "\e6e1"; }
4507 3427  
4508 3428 .mdi-communication-contacts:before {
4509   - content: "\e6e2";
4510   -}
  3429 + content: "\e6e2"; }
4511 3430  
4512 3431 .mdi-communication-dialer-sip:before {
4513   - content: "\e6e3";
4514   -}
  3432 + content: "\e6e3"; }
4515 3433  
4516 3434 .mdi-communication-dialpad:before {
4517   - content: "\e6e4";
4518   -}
  3435 + content: "\e6e4"; }
4519 3436  
4520 3437 .mdi-communication-dnd-on:before {
4521   - content: "\e6e5";
4522   -}
  3438 + content: "\e6e5"; }
4523 3439  
4524 3440 .mdi-communication-email:before {
4525   - content: "\e6e6";
4526   -}
  3441 + content: "\e6e6"; }
4527 3442  
4528 3443 .mdi-communication-forum:before {
4529   - content: "\e6e7";
4530   -}
  3444 + content: "\e6e7"; }
4531 3445  
4532 3446 .mdi-communication-import-export:before {
4533   - content: "\e6e8";
4534   -}
  3447 + content: "\e6e8"; }
4535 3448  
4536 3449 .mdi-communication-invert-colors-off:before {
4537   - content: "\e6e9";
4538   -}
  3450 + content: "\e6e9"; }
4539 3451  
4540 3452 .mdi-communication-invert-colors-on:before {
4541   - content: "\e6ea";
4542   -}
  3453 + content: "\e6ea"; }
4543 3454  
4544 3455 .mdi-communication-live-help:before {
4545   - content: "\e6eb";
4546   -}
  3456 + content: "\e6eb"; }
4547 3457  
4548 3458 .mdi-communication-location-off:before {
4549   - content: "\e6ec";
4550   -}
  3459 + content: "\e6ec"; }
4551 3460  
4552 3461 .mdi-communication-location-on:before {
4553   - content: "\e6ed";
4554   -}
  3462 + content: "\e6ed"; }
4555 3463  
4556 3464 .mdi-communication-message:before {
4557   - content: "\e6ee";
4558   -}
  3465 + content: "\e6ee"; }
4559 3466  
4560 3467 .mdi-communication-messenger:before {
4561   - content: "\e6ef";
4562   -}
  3468 + content: "\e6ef"; }
4563 3469  
4564 3470 .mdi-communication-no-sim:before {
4565   - content: "\e6f0";
4566   -}
  3471 + content: "\e6f0"; }
4567 3472  
4568 3473 .mdi-communication-phone:before {
4569   - content: "\e6f1";
4570   -}
  3474 + content: "\e6f1"; }
4571 3475  
4572 3476 .mdi-communication-portable-wifi-off:before {
4573   - content: "\e6f2";
4574   -}
  3477 + content: "\e6f2"; }
4575 3478  
4576 3479 .mdi-communication-quick-contacts-dialer:before {
4577   - content: "\e6f3";
4578   -}
  3480 + content: "\e6f3"; }
4579 3481  
4580 3482 .mdi-communication-quick-contacts-mail:before {
4581   - content: "\e6f4";
4582   -}
  3483 + content: "\e6f4"; }
4583 3484  
4584 3485 .mdi-communication-ring-volume:before {
4585   - content: "\e6f5";
4586   -}
  3486 + content: "\e6f5"; }
4587 3487  
4588 3488 .mdi-communication-stay-current-landscape:before {
4589   - content: "\e6f6";
4590   -}
  3489 + content: "\e6f6"; }
4591 3490  
4592 3491 .mdi-communication-stay-current-portrait:before {
4593   - content: "\e6f7";
4594   -}
  3492 + content: "\e6f7"; }
4595 3493  
4596 3494 .mdi-communication-stay-primary-landscape:before {
4597   - content: "\e6f8";
4598   -}
  3495 + content: "\e6f8"; }
4599 3496  
4600 3497 .mdi-communication-stay-primary-portrait:before {
4601   - content: "\e6f9";
4602   -}
  3498 + content: "\e6f9"; }
4603 3499  
4604 3500 .mdi-communication-swap-calls:before {
4605   - content: "\e6fa";
4606   -}
  3501 + content: "\e6fa"; }
4607 3502  
4608 3503 .mdi-communication-textsms:before {
4609   - content: "\e6fb";
4610   -}
  3504 + content: "\e6fb"; }
4611 3505  
4612 3506 .mdi-communication-voicemail:before {
4613   - content: "\e6fc";
4614   -}
  3507 + content: "\e6fc"; }
4615 3508  
4616 3509 .mdi-communication-vpn-key:before {
4617   - content: "\e6fd";
4618   -}
  3510 + content: "\e6fd"; }
4619 3511  
4620 3512 .mdi-content-add-box:before {
4621   - content: "\e6fe";
4622   -}
  3513 + content: "\e6fe"; }
4623 3514  
4624 3515 .mdi-content-add-circle-outline:before {
4625   - content: "\e6ff";
4626   -}
  3516 + content: "\e6ff"; }
4627 3517  
4628 3518 .mdi-content-add-circle:before {
4629   - content: "\e700";
4630   -}
  3519 + content: "\e700"; }
4631 3520  
4632 3521 .mdi-content-add:before {
4633   - content: "\e701";
4634   -}
  3522 + content: "\e701"; }
4635 3523  
4636 3524 .mdi-content-archive:before {
4637   - content: "\e702";
4638   -}
  3525 + content: "\e702"; }
4639 3526  
4640 3527 .mdi-content-backspace:before {
4641   - content: "\e703";
4642   -}
  3528 + content: "\e703"; }
4643 3529  
4644 3530 .mdi-content-block:before {
4645   - content: "\e704";
4646   -}
  3531 + content: "\e704"; }
4647 3532  
4648 3533 .mdi-content-clear:before {
4649   - content: "\e705";
4650   -}
  3534 + content: "\e705"; }
4651 3535  
4652 3536 .mdi-content-content-copy:before {
4653   - content: "\e706";
4654   -}
  3537 + content: "\e706"; }
4655 3538  
4656 3539 .mdi-content-content-cut:before {
4657   - content: "\e707";
4658   -}
  3540 + content: "\e707"; }
4659 3541  
4660 3542 .mdi-content-content-paste:before {
4661   - content: "\e708";
4662   -}
  3543 + content: "\e708"; }
4663 3544  
4664 3545 .mdi-content-create:before {
4665   - content: "\e709";
4666   -}
  3546 + content: "\e709"; }
4667 3547  
4668 3548 .mdi-content-drafts:before {
4669   - content: "\e70a";
4670   -}
  3549 + content: "\e70a"; }
4671 3550  
4672 3551 .mdi-content-filter-list:before {
4673   - content: "\e70b";
4674   -}
  3552 + content: "\e70b"; }
4675 3553  
4676 3554 .mdi-content-flag:before {
4677   - content: "\e70c";
4678   -}
  3555 + content: "\e70c"; }
4679 3556  
4680 3557 .mdi-content-forward:before {
4681   - content: "\e70d";
4682   -}
  3558 + content: "\e70d"; }
4683 3559  
4684 3560 .mdi-content-gesture:before {
4685   - content: "\e70e";
4686   -}
  3561 + content: "\e70e"; }
4687 3562  
4688 3563 .mdi-content-inbox:before {
4689   - content: "\e70f";
4690   -}
  3564 + content: "\e70f"; }
4691 3565  
4692 3566 .mdi-content-link:before {
4693   - content: "\e710";
4694   -}
  3567 + content: "\e710"; }
4695 3568  
4696 3569 .mdi-content-mail:before {
4697   - content: "\e711";
4698   -}
  3570 + content: "\e711"; }
4699 3571  
4700 3572 .mdi-content-markunread:before {
4701   - content: "\e712";
4702   -}
  3573 + content: "\e712"; }
4703 3574  
4704 3575 .mdi-content-redo:before {
4705   - content: "\e713";
4706   -}
  3576 + content: "\e713"; }
4707 3577  
4708 3578 .mdi-content-remove-circle-outline:before {
4709   - content: "\e714";
4710   -}
  3579 + content: "\e714"; }
4711 3580  
4712 3581 .mdi-content-remove-circle:before {
4713   - content: "\e715";
4714   -}
  3582 + content: "\e715"; }
4715 3583  
4716 3584 .mdi-content-remove:before {
4717   - content: "\e716";
4718   -}
  3585 + content: "\e716"; }
4719 3586  
4720 3587 .mdi-content-reply-all:before {
4721   - content: "\e717";
4722   -}
  3588 + content: "\e717"; }
4723 3589  
4724 3590 .mdi-content-reply:before {
4725   - content: "\e718";
4726   -}
  3591 + content: "\e718"; }
4727 3592  
4728 3593 .mdi-content-report:before {
4729   - content: "\e719";
4730   -}
  3594 + content: "\e719"; }
4731 3595  
4732 3596 .mdi-content-save:before {
4733   - content: "\e71a";
4734   -}
  3597 + content: "\e71a"; }
4735 3598  
4736 3599 .mdi-content-select-all:before {
4737   - content: "\e71b";
4738   -}
  3600 + content: "\e71b"; }
4739 3601  
4740 3602 .mdi-content-send:before {
4741   - content: "\e71c";
4742   -}
  3603 + content: "\e71c"; }
4743 3604  
4744 3605 .mdi-content-sort:before {
4745   - content: "\e71d";
4746   -}
  3606 + content: "\e71d"; }
4747 3607  
4748 3608 .mdi-content-text-format:before {
4749   - content: "\e71e";
4750   -}
  3609 + content: "\e71e"; }
4751 3610  
4752 3611 .mdi-content-undo:before {
4753   - content: "\e71f";
4754   -}
  3612 + content: "\e71f"; }
4755 3613  
4756 3614 .mdi-editor-attach-file:before {
4757   - content: "\e776";
4758   -}
  3615 + content: "\e776"; }
4759 3616  
4760 3617 .mdi-editor-attach-money:before {
4761   - content: "\e777";
4762   -}
  3618 + content: "\e777"; }
4763 3619  
4764 3620 .mdi-editor-border-all:before {
4765   - content: "\e778";
4766   -}
  3621 + content: "\e778"; }
4767 3622  
4768 3623 .mdi-editor-border-bottom:before {
4769   - content: "\e779";
4770   -}
  3624 + content: "\e779"; }
4771 3625  
4772 3626 .mdi-editor-border-clear:before {
4773   - content: "\e77a";
4774   -}
  3627 + content: "\e77a"; }
4775 3628  
4776 3629 .mdi-editor-border-color:before {
4777   - content: "\e77b";
4778   -}
  3630 + content: "\e77b"; }
4779 3631  
4780 3632 .mdi-editor-border-horizontal:before {
4781   - content: "\e77c";
4782   -}
  3633 + content: "\e77c"; }
4783 3634  
4784 3635 .mdi-editor-border-inner:before {
4785   - content: "\e77d";
4786   -}
  3636 + content: "\e77d"; }
4787 3637  
4788 3638 .mdi-editor-border-left:before {
4789   - content: "\e77e";
4790   -}
  3639 + content: "\e77e"; }
4791 3640  
4792 3641 .mdi-editor-border-outer:before {
4793   - content: "\e77f";
4794   -}
  3642 + content: "\e77f"; }
4795 3643  
4796 3644 .mdi-editor-border-right:before {
4797   - content: "\e780";
4798   -}
  3645 + content: "\e780"; }
4799 3646  
4800 3647 .mdi-editor-border-style:before {
4801   - content: "\e781";
4802   -}
  3648 + content: "\e781"; }
4803 3649  
4804 3650 .mdi-editor-border-top:before {
4805   - content: "\e782";
4806   -}
  3651 + content: "\e782"; }
4807 3652  
4808 3653 .mdi-editor-border-vertical:before {
4809   - content: "\e783";
4810   -}
  3654 + content: "\e783"; }
4811 3655  
4812 3656 .mdi-editor-format-align-center:before {
4813   - content: "\e784";
4814   -}
  3657 + content: "\e784"; }
4815 3658  
4816 3659 .mdi-editor-format-align-justify:before {
4817   - content: "\e785";
4818   -}
  3660 + content: "\e785"; }
4819 3661  
4820 3662 .mdi-editor-format-align-left:before {
4821   - content: "\e786";
4822   -}
  3663 + content: "\e786"; }
4823 3664  
4824 3665 .mdi-editor-format-align-right:before {
4825   - content: "\e787";
4826   -}
  3666 + content: "\e787"; }
4827 3667  
4828 3668 .mdi-editor-format-bold:before {
4829   - content: "\e788";
4830   -}
  3669 + content: "\e788"; }
4831 3670  
4832 3671 .mdi-editor-format-clear:before {
4833   - content: "\e789";
4834   -}
  3672 + content: "\e789"; }
4835 3673  
4836 3674 .mdi-editor-format-color-fill:before {
4837   - content: "\e78a";
4838   -}
  3675 + content: "\e78a"; }
4839 3676  
4840 3677 .mdi-editor-format-color-reset:before {
4841   - content: "\e78b";
4842   -}
  3678 + content: "\e78b"; }
4843 3679  
4844 3680 .mdi-editor-format-color-text:before {
4845   - content: "\e78c";
4846   -}
  3681 + content: "\e78c"; }
4847 3682  
4848 3683 .mdi-editor-format-indent-decrease:before {
4849   - content: "\e78d";
4850   -}
  3684 + content: "\e78d"; }
4851 3685  
4852 3686 .mdi-editor-format-indent-increase:before {
4853   - content: "\e78e";
4854   -}
  3687 + content: "\e78e"; }
4855 3688  
4856 3689 .mdi-editor-format-italic:before {
4857   - content: "\e78f";
4858   -}
  3690 + content: "\e78f"; }
4859 3691  
4860 3692 .mdi-editor-format-line-spacing:before {
4861   - content: "\e790";
4862   -}
  3693 + content: "\e790"; }
4863 3694  
4864 3695 .mdi-editor-format-list-bulleted:before {
4865   - content: "\e791";
4866   -}
  3696 + content: "\e791"; }
4867 3697  
4868 3698 .mdi-editor-format-list-numbered:before {
4869   - content: "\e792";
4870   -}
  3699 + content: "\e792"; }
4871 3700  
4872 3701 .mdi-editor-format-paint:before {
4873   - content: "\e793";
4874   -}
  3702 + content: "\e793"; }
4875 3703  
4876 3704 .mdi-editor-format-quote:before {
4877   - content: "\e794";
4878   -}
  3705 + content: "\e794"; }
4879 3706  
4880 3707 .mdi-editor-format-size:before {
4881   - content: "\e795";
4882   -}
  3708 + content: "\e795"; }
4883 3709  
4884 3710 .mdi-editor-format-strikethrough:before {
4885   - content: "\e796";
4886   -}
  3711 + content: "\e796"; }
4887 3712  
4888 3713 .mdi-editor-format-textdirection-l-to-r:before {
4889   - content: "\e797";
4890   -}
  3714 + content: "\e797"; }
4891 3715  
4892 3716 .mdi-editor-format-textdirection-r-to-l:before {
4893   - content: "\e798";
4894   -}
  3717 + content: "\e798"; }
4895 3718  
4896 3719 .mdi-editor-format-underline:before {
4897   - content: "\e799";
4898   -}
  3720 + content: "\e799"; }
4899 3721  
4900 3722 .mdi-editor-functions:before {
4901   - content: "\e79a";
4902   -}
  3723 + content: "\e79a"; }
4903 3724  
4904 3725 .mdi-editor-insert-chart:before {
4905   - content: "\e79b";
4906   -}
  3726 + content: "\e79b"; }
4907 3727  
4908 3728 .mdi-editor-insert-comment:before {
4909   - content: "\e79c";
4910   -}
  3729 + content: "\e79c"; }
4911 3730  
4912 3731 .mdi-editor-insert-drive-file:before {
4913   - content: "\e79d";
4914   -}
  3732 + content: "\e79d"; }
4915 3733  
4916 3734 .mdi-editor-insert-emoticon:before {
4917   - content: "\e79e";
4918   -}
  3735 + content: "\e79e"; }
4919 3736  
4920 3737 .mdi-editor-insert-invitation:before {
4921   - content: "\e79f";
4922   -}
  3738 + content: "\e79f"; }
4923 3739  
4924 3740 .mdi-editor-insert-link:before {
4925   - content: "\e7a0";
4926   -}
  3741 + content: "\e7a0"; }
4927 3742  
4928 3743 .mdi-editor-insert-photo:before {
4929   - content: "\e7a1";
4930   -}
  3744 + content: "\e7a1"; }
4931 3745  
4932 3746 .mdi-editor-merge-type:before {
4933   - content: "\e7a2";
4934   -}
  3747 + content: "\e7a2"; }
4935 3748  
4936 3749 .mdi-editor-mode-comment:before {
4937   - content: "\e7a3";
4938   -}
  3750 + content: "\e7a3"; }
4939 3751  
4940 3752 .mdi-editor-mode-edit:before {
4941   - content: "\e7a4";
4942   -}
  3753 + content: "\e7a4"; }
4943 3754  
4944 3755 .mdi-editor-publish:before {
4945   - content: "\e7a5";
4946   -}
  3756 + content: "\e7a5"; }
4947 3757  
4948 3758 .mdi-editor-vertical-align-bottom:before {
4949   - content: "\e7a6";
4950   -}
  3759 + content: "\e7a6"; }
4951 3760  
4952 3761 .mdi-editor-vertical-align-center:before {
4953   - content: "\e7a7";
4954   -}
  3762 + content: "\e7a7"; }
4955 3763  
4956 3764 .mdi-editor-vertical-align-top:before {
4957   - content: "\e7a8";
4958   -}
  3765 + content: "\e7a8"; }
4959 3766  
4960 3767 .mdi-editor-wrap-text:before {
4961   - content: "\e7a9";
4962   -}
  3768 + content: "\e7a9"; }
4963 3769  
4964 3770 .mdi-file-attachment:before {
4965   - content: "\e7aa";
4966   -}
  3771 + content: "\e7aa"; }
4967 3772  
4968 3773 .mdi-file-cloud-circle:before {
4969   - content: "\e7ab";
4970   -}
  3774 + content: "\e7ab"; }
4971 3775  
4972 3776 .mdi-file-cloud-done:before {
4973   - content: "\e7ac";
4974   -}
  3777 + content: "\e7ac"; }
4975 3778  
4976 3779 .mdi-file-cloud-download:before {
4977   - content: "\e7ad";
4978   -}
  3780 + content: "\e7ad"; }
4979 3781  
4980 3782 .mdi-file-cloud-off:before {
4981   - content: "\e7ae";
4982   -}
  3783 + content: "\e7ae"; }
4983 3784  
4984 3785 .mdi-file-cloud-queue:before {
4985   - content: "\e7af";
4986   -}
  3786 + content: "\e7af"; }
4987 3787  
4988 3788 .mdi-file-cloud-upload:before {
4989   - content: "\e7b0";
4990   -}
  3789 + content: "\e7b0"; }
4991 3790  
4992 3791 .mdi-file-cloud:before {
4993   - content: "\e7b1";
4994   -}
  3792 + content: "\e7b1"; }
4995 3793  
4996 3794 .mdi-file-file-download:before {
4997   - content: "\e7b2";
4998   -}
  3795 + content: "\e7b2"; }
4999 3796  
5000 3797 .mdi-file-file-upload:before {
5001   - content: "\e7b3";
5002   -}
  3798 + content: "\e7b3"; }
5003 3799  
5004 3800 .mdi-file-folder-open:before {
5005   - content: "\e7b4";
5006   -}
  3801 + content: "\e7b4"; }
5007 3802  
5008 3803 .mdi-file-folder-shared:before {
5009   - content: "\e7b5";
5010   -}
  3804 + content: "\e7b5"; }
5011 3805  
5012 3806 .mdi-file-folder:before {
5013   - content: "\e7b6";
5014   -}
  3807 + content: "\e7b6"; }
5015 3808  
5016 3809 .mdi-device-access-alarm:before {
5017   - content: "\e720";
5018   -}
  3810 + content: "\e720"; }
5019 3811  
5020 3812 .mdi-device-access-alarms:before {
5021   - content: "\e721";
5022   -}
  3813 + content: "\e721"; }
5023 3814  
5024 3815 .mdi-device-access-time:before {
5025   - content: "\e722";
5026   -}
  3816 + content: "\e722"; }
5027 3817  
5028 3818 .mdi-device-add-alarm:before {
5029   - content: "\e723";
5030   -}
  3819 + content: "\e723"; }
5031 3820  
5032 3821 .mdi-device-airplanemode-off:before {
5033   - content: "\e724";
5034   -}
  3822 + content: "\e724"; }
5035 3823  
5036 3824 .mdi-device-airplanemode-on:before {
5037   - content: "\e725";
5038   -}
  3825 + content: "\e725"; }
5039 3826  
5040 3827 .mdi-device-battery-20:before {
5041   - content: "\e726";
5042   -}
  3828 + content: "\e726"; }
5043 3829  
5044 3830 .mdi-device-battery-30:before {
5045   - content: "\e727";
5046   -}
  3831 + content: "\e727"; }
5047 3832  
5048 3833 .mdi-device-battery-50:before {
5049   - content: "\e728";
5050   -}
  3834 + content: "\e728"; }
5051 3835  
5052 3836 .mdi-device-battery-60:before {
5053   - content: "\e729";
5054   -}
  3837 + content: "\e729"; }
5055 3838  
5056 3839 .mdi-device-battery-80:before {
5057   - content: "\e72a";
5058   -}
  3840 + content: "\e72a"; }
5059 3841  
5060 3842 .mdi-device-battery-90:before {
5061   - content: "\e72b";
5062   -}
  3843 + content: "\e72b"; }
5063 3844  
5064 3845 .mdi-device-battery-alert:before {
5065   - content: "\e72c";
5066   -}
  3846 + content: "\e72c"; }
5067 3847  
5068 3848 .mdi-device-battery-charging-20:before {
5069   - content: "\e72d";
5070   -}
  3849 + content: "\e72d"; }
5071 3850  
5072 3851 .mdi-device-battery-charging-30:before {
5073   - content: "\e72e";
5074   -}
  3852 + content: "\e72e"; }
5075 3853  
5076 3854 .mdi-device-battery-charging-50:before {
5077   - content: "\e72f";
5078   -}
  3855 + content: "\e72f"; }
5079 3856  
5080 3857 .mdi-device-battery-charging-60:before {
5081   - content: "\e730";
5082   -}
  3858 + content: "\e730"; }
5083 3859  
5084 3860 .mdi-device-battery-charging-80:before {
5085   - content: "\e731";
5086   -}
  3861 + content: "\e731"; }
5087 3862  
5088 3863 .mdi-device-battery-charging-90:before {
5089   - content: "\e732";
5090   -}
  3864 + content: "\e732"; }
5091 3865  
5092 3866 .mdi-device-battery-charging-full:before {
5093   - content: "\e733";
5094   -}
  3867 + content: "\e733"; }
5095 3868  
5096 3869 .mdi-device-battery-full:before {
5097   - content: "\e734";
5098   -}
  3870 + content: "\e734"; }
5099 3871  
5100 3872 .mdi-device-battery-std:before {
5101   - content: "\e735";
5102   -}
  3873 + content: "\e735"; }
5103 3874  
5104 3875 .mdi-device-battery-unknown:before {
5105   - content: "\e736";
5106   -}
  3876 + content: "\e736"; }
5107 3877  
5108 3878 .mdi-device-bluetooth-connected:before {
5109   - content: "\e737";
5110   -}
  3879 + content: "\e737"; }
5111 3880  
5112 3881 .mdi-device-bluetooth-disabled:before {
5113   - content: "\e738";
5114   -}
  3882 + content: "\e738"; }
5115 3883  
5116 3884 .mdi-device-bluetooth-searching:before {
5117   - content: "\e739";
5118   -}
  3885 + content: "\e739"; }
5119 3886  
5120 3887 .mdi-device-bluetooth:before {
5121   - content: "\e73a";
5122   -}
  3888 + content: "\e73a"; }
5123 3889  
5124 3890 .mdi-device-brightness-auto:before {
5125   - content: "\e73b";
5126   -}
  3891 + content: "\e73b"; }
5127 3892  
5128 3893 .mdi-device-brightness-high:before {
5129   - content: "\e73c";
5130   -}
  3894 + content: "\e73c"; }
5131 3895  
5132 3896 .mdi-device-brightness-low:before {
5133   - content: "\e73d";
5134   -}
  3897 + content: "\e73d"; }
5135 3898  
5136 3899 .mdi-device-brightness-medium:before {
5137   - content: "\e73e";
5138   -}
  3900 + content: "\e73e"; }
5139 3901  
5140 3902 .mdi-device-data-usage:before {
5141   - content: "\e73f";
5142   -}
  3903 + content: "\e73f"; }
5143 3904  
5144 3905 .mdi-device-developer-mode:before {
5145   - content: "\e740";
5146   -}
  3906 + content: "\e740"; }
5147 3907  
5148 3908 .mdi-device-devices:before {
5149   - content: "\e741";
5150   -}
  3909 + content: "\e741"; }
5151 3910  
5152 3911 .mdi-device-dvr:before {
5153   - content: "\e742";
5154   -}
  3912 + content: "\e742"; }
5155 3913  
5156 3914 .mdi-device-gps-fixed:before {
5157   - content: "\e743";
5158   -}
  3915 + content: "\e743"; }
5159 3916  
5160 3917 .mdi-device-gps-not-fixed:before {
5161   - content: "\e744";
5162   -}
  3918 + content: "\e744"; }
5163 3919  
5164 3920 .mdi-device-gps-off:before {
5165   - content: "\e745";
5166   -}
  3921 + content: "\e745"; }
5167 3922  
5168 3923 .mdi-device-location-disabled:before {
5169   - content: "\e746";
5170   -}
  3924 + content: "\e746"; }
5171 3925  
5172 3926 .mdi-device-location-searching:before {
5173   - content: "\e747";
5174   -}
  3927 + content: "\e747"; }
5175 3928  
5176 3929 .mdi-device-multitrack-audio:before {
5177   - content: "\e748";
5178   -}
  3930 + content: "\e748"; }
5179 3931  
5180 3932 .mdi-device-network-cell:before {
5181   - content: "\e749";
5182   -}
  3933 + content: "\e749"; }
5183 3934  
5184 3935 .mdi-device-network-wifi:before {
5185   - content: "\e74a";
5186   -}
  3936 + content: "\e74a"; }
5187 3937  
5188 3938 .mdi-device-nfc:before {
5189   - content: "\e74b";
5190   -}
  3939 + content: "\e74b"; }
5191 3940  
5192 3941 .mdi-device-now-wallpaper:before {
5193   - content: "\e74c";
5194   -}
  3942 + content: "\e74c"; }
5195 3943  
5196 3944 .mdi-device-now-widgets:before {
5197   - content: "\e74d";
5198   -}
  3945 + content: "\e74d"; }
5199 3946  
5200 3947 .mdi-device-screen-lock-landscape:before {
5201   - content: "\e74e";
5202   -}
  3948 + content: "\e74e"; }
5203 3949  
5204 3950 .mdi-device-screen-lock-portrait:before {
5205   - content: "\e74f";
5206   -}
  3951 + content: "\e74f"; }
5207 3952  
5208 3953 .mdi-device-screen-lock-rotation:before {
5209   - content: "\e750";
5210   -}
  3954 + content: "\e750"; }
5211 3955  
5212 3956 .mdi-device-screen-rotation:before {
5213   - content: "\e751";
5214   -}
  3957 + content: "\e751"; }
5215 3958  
5216 3959 .mdi-device-sd-storage:before {
5217   - content: "\e752";
5218   -}
  3960 + content: "\e752"; }
5219 3961  
5220 3962 .mdi-device-settings-system-daydream:before {
5221   - content: "\e753";
5222   -}
  3963 + content: "\e753"; }
5223 3964  
5224 3965 .mdi-device-signal-cellular-0-bar:before {
5225   - content: "\e754";
5226   -}
  3966 + content: "\e754"; }
5227 3967  
5228 3968 .mdi-device-signal-cellular-1-bar:before {
5229   - content: "\e755";
5230   -}
  3969 + content: "\e755"; }
5231 3970  
5232 3971 .mdi-device-signal-cellular-2-bar:before {
5233   - content: "\e756";
5234   -}
  3972 + content: "\e756"; }
5235 3973  
5236 3974 .mdi-device-signal-cellular-3-bar:before {
5237   - content: "\e757";
5238   -}
  3975 + content: "\e757"; }
5239 3976  
5240 3977 .mdi-device-signal-cellular-4-bar:before {
5241   - content: "\e758";
5242   -}
  3978 + content: "\e758"; }
5243 3979  
5244 3980 .mdi-signal-wifi-statusbar-connected-no-internet-after:before {
5245   - content: "\e8f6";
5246   -}
  3981 + content: "\e8f6"; }
5247 3982  
5248 3983 .mdi-device-signal-cellular-connected-no-internet-0-bar:before {
5249   - content: "\e759";
5250   -}
  3984 + content: "\e759"; }
5251 3985  
5252 3986 .mdi-device-signal-cellular-connected-no-internet-1-bar:before {
5253   - content: "\e75a";
5254   -}
  3987 + content: "\e75a"; }
5255 3988  
5256 3989 .mdi-device-signal-cellular-connected-no-internet-2-bar:before {
5257   - content: "\e75b";
5258   -}
  3990 + content: "\e75b"; }
5259 3991  
5260 3992 .mdi-device-signal-cellular-connected-no-internet-3-bar:before {
5261   - content: "\e75c";
5262   -}
  3993 + content: "\e75c"; }
5263 3994  
5264 3995 .mdi-device-signal-cellular-connected-no-internet-4-bar:before {
5265   - content: "\e75d";
5266   -}
  3996 + content: "\e75d"; }
5267 3997  
5268 3998 .mdi-device-signal-cellular-no-sim:before {
5269   - content: "\e75e";
5270   -}
  3999 + content: "\e75e"; }
5271 4000  
5272 4001 .mdi-device-signal-cellular-null:before {
5273   - content: "\e75f";
5274   -}
  4002 + content: "\e75f"; }
5275 4003  
5276 4004 .mdi-device-signal-cellular-off:before {
5277   - content: "\e760";
5278   -}
  4005 + content: "\e760"; }
5279 4006  
5280 4007 .mdi-device-signal-wifi-0-bar:before {
5281   - content: "\e761";
5282   -}
  4008 + content: "\e761"; }
5283 4009  
5284 4010 .mdi-device-signal-wifi-1-bar:before {
5285   - content: "\e762";
5286   -}
  4011 + content: "\e762"; }
5287 4012  
5288 4013 .mdi-device-signal-wifi-2-bar:before {
5289   - content: "\e763";
5290   -}
  4014 + content: "\e763"; }
5291 4015  
5292 4016 .mdi-device-signal-wifi-3-bar:before {
5293   - content: "\e764";
5294   -}
  4017 + content: "\e764"; }
5295 4018  
5296 4019 .mdi-device-signal-wifi-4-bar:before {
5297   - content: "\e765";
5298   -}
  4020 + content: "\e765"; }
5299 4021  
5300 4022 .mdi-device-signal-wifi-off:before {
5301   - content: "\e766";
5302   -}
  4023 + content: "\e766"; }
5303 4024  
5304 4025 .mdi-device-signal-wifi-statusbar-1-bar:before {
5305   - content: "\e767";
5306   -}
  4026 + content: "\e767"; }
5307 4027  
5308 4028 .mdi-device-signal-wifi-statusbar-2-bar:before {
5309   - content: "\e768";
5310   -}
  4029 + content: "\e768"; }
5311 4030  
5312 4031 .mdi-device-signal-wifi-statusbar-3-bar:before {
5313   - content: "\e769";
5314   -}
  4032 + content: "\e769"; }
5315 4033  
5316 4034 .mdi-device-signal-wifi-statusbar-4-bar:before {
5317   - content: "\e76a";
5318   -}
  4035 + content: "\e76a"; }
5319 4036  
5320 4037 .mdi-device-signal-wifi-statusbar-connected-no-internet-:before {
5321   - content: "\e76b";
5322   -}
  4038 + content: "\e76b"; }
5323 4039  
5324 4040 .mdi-device-signal-wifi-statusbar-connected-no-internet:before {
5325   - content: "\e76f";
5326   -}
  4041 + content: "\e76f"; }
5327 4042  
5328 4043 .mdi-device-signal-wifi-statusbar-connected-no-internet-2:before {
5329   - content: "\e76c";
5330   -}
  4044 + content: "\e76c"; }
5331 4045  
5332 4046 .mdi-device-signal-wifi-statusbar-connected-no-internet-3:before {
5333   - content: "\e76d";
5334   -}
  4047 + content: "\e76d"; }
5335 4048  
5336 4049 .mdi-device-signal-wifi-statusbar-connected-no-internet-4:before {
5337   - content: "\e76e";
5338   -}
  4050 + content: "\e76e"; }
5339 4051  
5340 4052 .mdi-signal-wifi-statusbar-not-connected-after:before {
5341   - content: "\e8f7";
5342   -}
  4053 + content: "\e8f7"; }
5343 4054  
5344 4055 .mdi-device-signal-wifi-statusbar-not-connected:before {
5345   - content: "\e770";
5346   -}
  4056 + content: "\e770"; }
5347 4057  
5348 4058 .mdi-device-signal-wifi-statusbar-null:before {
5349   - content: "\e771";
5350   -}
  4059 + content: "\e771"; }
5351 4060  
5352 4061 .mdi-device-storage:before {
5353   - content: "\e772";
5354   -}
  4062 + content: "\e772"; }
5355 4063  
5356 4064 .mdi-device-usb:before {
5357   - content: "\e773";
5358   -}
  4065 + content: "\e773"; }
5359 4066  
5360 4067 .mdi-device-wifi-lock:before {
5361   - content: "\e774";
5362   -}
  4068 + content: "\e774"; }
5363 4069  
5364 4070 .mdi-device-wifi-tethering:before {
5365   - content: "\e775";
5366   -}
  4071 + content: "\e775"; }
5367 4072  
5368 4073 .mdi-hardware-cast-connected:before {
5369   - content: "\e7b7";
5370   -}
  4074 + content: "\e7b7"; }
5371 4075  
5372 4076 .mdi-hardware-cast:before {
5373   - content: "\e7b8";
5374   -}
  4077 + content: "\e7b8"; }
5375 4078  
5376 4079 .mdi-hardware-computer:before {
5377   - content: "\e7b9";
5378   -}
  4080 + content: "\e7b9"; }
5379 4081  
5380 4082 .mdi-hardware-desktop-mac:before {
5381   - content: "\e7ba";
5382   -}
  4083 + content: "\e7ba"; }
5383 4084  
5384 4085 .mdi-hardware-desktop-windows:before {
5385   - content: "\e7bb";
5386   -}
  4086 + content: "\e7bb"; }
5387 4087  
5388 4088 .mdi-hardware-dock:before {
5389   - content: "\e7bc";
5390   -}
  4089 + content: "\e7bc"; }
5391 4090  
5392 4091 .mdi-hardware-gamepad:before {
5393   - content: "\e7bd";
5394   -}
  4092 + content: "\e7bd"; }
5395 4093  
5396 4094 .mdi-hardware-headset-mic:before {
5397   - content: "\e7be";
5398   -}
  4095 + content: "\e7be"; }
5399 4096  
5400 4097 .mdi-hardware-headset:before {
5401   - content: "\e7bf";
5402   -}
  4098 + content: "\e7bf"; }
5403 4099  
5404 4100 .mdi-hardware-keyboard-alt:before {
5405   - content: "\e7c0";
5406   -}
  4101 + content: "\e7c0"; }
5407 4102  
5408 4103 .mdi-hardware-keyboard-arrow-down:before {
5409   - content: "\e7c1";
5410   -}
  4104 + content: "\e7c1"; }
5411 4105  
5412 4106 .mdi-hardware-keyboard-arrow-left:before {
5413   - content: "\e7c2";
5414   -}
  4107 + content: "\e7c2"; }
5415 4108  
5416 4109 .mdi-hardware-keyboard-arrow-right:before {
5417   - content: "\e7c3";
5418   -}
  4110 + content: "\e7c3"; }
5419 4111  
5420 4112 .mdi-hardware-keyboard-arrow-up:before {
5421   - content: "\e7c4";
5422   -}
  4113 + content: "\e7c4"; }
5423 4114  
5424 4115 .mdi-hardware-keyboard-backspace:before {
5425   - content: "\e7c5";
5426   -}
  4116 + content: "\e7c5"; }
5427 4117  
5428 4118 .mdi-hardware-keyboard-capslock:before {
5429   - content: "\e7c6";
5430   -}
  4119 + content: "\e7c6"; }
5431 4120  
5432 4121 .mdi-hardware-keyboard-control:before {
5433   - content: "\e7c7";
5434   -}
  4122 + content: "\e7c7"; }
5435 4123  
5436 4124 .mdi-hardware-keyboard-hide:before {
5437   - content: "\e7c8";
5438   -}
  4125 + content: "\e7c8"; }
5439 4126  
5440 4127 .mdi-hardware-keyboard-return:before {
5441   - content: "\e7c9";
5442   -}
  4128 + content: "\e7c9"; }
5443 4129  
5444 4130 .mdi-hardware-keyboard-tab:before {
5445   - content: "\e7ca";
5446   -}
  4131 + content: "\e7ca"; }
5447 4132  
5448 4133 .mdi-hardware-keyboard-voice:before {
5449   - content: "\e7cb";
5450   -}
  4134 + content: "\e7cb"; }
5451 4135  
5452 4136 .mdi-hardware-keyboard:before {
5453   - content: "\e7cc";
5454   -}
  4137 + content: "\e7cc"; }
5455 4138  
5456 4139 .mdi-hardware-laptop-chromebook:before {
5457   - content: "\e7cd";
5458   -}
  4140 + content: "\e7cd"; }
5459 4141  
5460 4142 .mdi-hardware-laptop-mac:before {
5461   - content: "\e7ce";
5462   -}
  4143 + content: "\e7ce"; }
5463 4144  
5464 4145 .mdi-hardware-laptop-windows:before {
5465   - content: "\e7cf";
5466   -}
  4146 + content: "\e7cf"; }
5467 4147  
5468 4148 .mdi-hardware-laptop:before {
5469   - content: "\e7d0";
5470   -}
  4149 + content: "\e7d0"; }
5471 4150  
5472 4151 .mdi-hardware-memory:before {
5473   - content: "\e7d1";
5474   -}
  4152 + content: "\e7d1"; }
5475 4153  
5476 4154 .mdi-hardware-mouse:before {
5477   - content: "\e7d2";
5478   -}
  4155 + content: "\e7d2"; }
5479 4156  
5480 4157 .mdi-hardware-phone-android:before {
5481   - content: "\e7d3";
5482   -}
  4158 + content: "\e7d3"; }
5483 4159  
5484 4160 .mdi-hardware-phone-iphone:before {
5485   - content: "\e7d4";
5486   -}
  4161 + content: "\e7d4"; }
5487 4162  
5488 4163 .mdi-hardware-phonelink-off:before {
5489   - content: "\e7d5";
5490   -}
  4164 + content: "\e7d5"; }
5491 4165  
5492 4166 .mdi-hardware-phonelink:before {
5493   - content: "\e7d6";
5494   -}
  4167 + content: "\e7d6"; }
5495 4168  
5496 4169 .mdi-hardware-security:before {
5497   - content: "\e7d7";
5498   -}
  4170 + content: "\e7d7"; }
5499 4171  
5500 4172 .mdi-hardware-sim-card:before {
5501   - content: "\e7d8";
5502   -}
  4173 + content: "\e7d8"; }
5503 4174  
5504 4175 .mdi-hardware-smartphone:before {
5505   - content: "\e7d9";
5506   -}
  4176 + content: "\e7d9"; }
5507 4177  
5508 4178 .mdi-hardware-speaker:before {
5509   - content: "\e7da";
5510   -}
  4179 + content: "\e7da"; }
5511 4180  
5512 4181 .mdi-hardware-tablet-android:before {
5513   - content: "\e7db";
5514   -}
  4182 + content: "\e7db"; }
5515 4183  
5516 4184 .mdi-hardware-tablet-mac:before {
5517   - content: "\e7dc";
5518   -}
  4185 + content: "\e7dc"; }
5519 4186  
5520 4187 .mdi-hardware-tablet:before {
5521   - content: "\e7dd";
5522   -}
  4188 + content: "\e7dd"; }
5523 4189  
5524 4190 .mdi-hardware-tv:before {
5525   - content: "\e7de";
5526   -}
  4191 + content: "\e7de"; }
5527 4192  
5528 4193 .mdi-hardware-watch:before {
5529   - content: "\e7df";
5530   -}
  4194 + content: "\e7df"; }
5531 4195  
5532 4196 .mdi-image-add-to-photos:before {
5533   - content: "\e7e0";
5534   -}
  4197 + content: "\e7e0"; }
5535 4198  
5536 4199 .mdi-image-adjust:before {
5537   - content: "\e7e1";
5538   -}
  4200 + content: "\e7e1"; }
5539 4201  
5540 4202 .mdi-image-assistant-photo:before {
5541   - content: "\e7e2";
5542   -}
  4203 + content: "\e7e2"; }
5543 4204  
5544 4205 .mdi-image-audiotrack:before {
5545   - content: "\e7e3";
5546   -}
  4206 + content: "\e7e3"; }
5547 4207  
5548 4208 .mdi-image-blur-circular:before {
5549   - content: "\e7e4";
5550   -}
  4209 + content: "\e7e4"; }
5551 4210  
5552 4211 .mdi-image-blur-linear:before {
5553   - content: "\e7e5";
5554   -}
  4212 + content: "\e7e5"; }
5555 4213  
5556 4214 .mdi-image-blur-off:before {
5557   - content: "\e7e6";
5558   -}
  4215 + content: "\e7e6"; }
5559 4216  
5560 4217 .mdi-image-blur-on:before {
5561   - content: "\e7e7";
5562   -}
  4218 + content: "\e7e7"; }
5563 4219  
5564 4220 .mdi-image-brightness-1:before {
5565   - content: "\e7e8";
5566   -}
  4221 + content: "\e7e8"; }
5567 4222  
5568 4223 .mdi-image-brightness-2:before {
5569   - content: "\e7e9";
5570   -}
  4224 + content: "\e7e9"; }
5571 4225  
5572 4226 .mdi-image-brightness-3:before {
5573   - content: "\e7ea";
5574   -}
  4227 + content: "\e7ea"; }
5575 4228  
5576 4229 .mdi-image-brightness-4:before {
5577   - content: "\e7eb";
5578   -}
  4230 + content: "\e7eb"; }
5579 4231  
5580 4232 .mdi-image-brightness-5:before {
5581   - content: "\e7ec";
5582   -}
  4233 + content: "\e7ec"; }
5583 4234  
5584 4235 .mdi-image-brightness-6:before {
5585   - content: "\e7ed";
5586   -}
  4236 + content: "\e7ed"; }
5587 4237  
5588 4238 .mdi-image-brightness-7:before {
5589   - content: "\e7ee";
5590   -}
  4239 + content: "\e7ee"; }
5591 4240  
5592 4241 .mdi-image-brush:before {
5593   - content: "\e7ef";
5594   -}
  4242 + content: "\e7ef"; }
5595 4243  
5596 4244 .mdi-image-camera-alt:before {
5597   - content: "\e7f0";
5598   -}
  4245 + content: "\e7f0"; }
5599 4246  
5600 4247 .mdi-image-camera-front:before {
5601   - content: "\e7f1";
5602   -}
  4248 + content: "\e7f1"; }
5603 4249  
5604 4250 .mdi-image-camera-rear:before {
5605   - content: "\e7f2";
5606   -}
  4251 + content: "\e7f2"; }
5607 4252  
5608 4253 .mdi-image-camera-roll:before {
5609   - content: "\e7f3";
5610   -}
  4254 + content: "\e7f3"; }
5611 4255  
5612 4256 .mdi-image-camera:before {
5613   - content: "\e7f4";
5614   -}
  4257 + content: "\e7f4"; }
5615 4258  
5616 4259 .mdi-image-center-focus-strong:before {
5617   - content: "\e7f5";
5618   -}
  4260 + content: "\e7f5"; }
5619 4261  
5620 4262 .mdi-image-center-focus-weak:before {
5621   - content: "\e7f6";
5622   -}
  4263 + content: "\e7f6"; }
5623 4264  
5624 4265 .mdi-image-collections:before {
5625   - content: "\e7f7";
5626   -}
  4266 + content: "\e7f7"; }
5627 4267  
5628 4268 .mdi-image-color-lens:before {
5629   - content: "\e7f8";
5630   -}
  4269 + content: "\e7f8"; }
5631 4270  
5632 4271 .mdi-image-colorize:before {
5633   - content: "\e7f9";
5634   -}
  4272 + content: "\e7f9"; }
5635 4273  
5636 4274 .mdi-image-compare:before {
5637   - content: "\e7fa";
5638   -}
  4275 + content: "\e7fa"; }
5639 4276  
5640 4277 .mdi-image-control-point-duplicate:before {
5641   - content: "\e7fb";
5642   -}
  4278 + content: "\e7fb"; }
5643 4279  
5644 4280 .mdi-image-control-point:before {
5645   - content: "\e7fc";
5646   -}
  4281 + content: "\e7fc"; }
5647 4282  
5648 4283 .mdi-image-crop-3-2:before {
5649   - content: "\e7fd";
5650   -}
  4284 + content: "\e7fd"; }
5651 4285  
5652 4286 .mdi-image-crop-5-4:before {
5653   - content: "\e7fe";
5654   -}
  4287 + content: "\e7fe"; }
5655 4288  
5656 4289 .mdi-image-crop-7-5:before {
5657   - content: "\e7ff";
5658   -}
  4290 + content: "\e7ff"; }
5659 4291  
5660 4292 .mdi-image-crop-16-9:before {
5661   - content: "\e800";
5662   -}
  4293 + content: "\e800"; }
5663 4294  
5664 4295 .mdi-image-crop-din:before {
5665   - content: "\e801";
5666   -}
  4296 + content: "\e801"; }
5667 4297  
5668 4298 .mdi-image-crop-free:before {
5669   - content: "\e802";
5670   -}
  4299 + content: "\e802"; }
5671 4300  
5672 4301 .mdi-image-crop-landscape:before {
5673   - content: "\e803";
5674   -}
  4302 + content: "\e803"; }
5675 4303  
5676 4304 .mdi-image-crop-original:before {
5677   - content: "\e804";
5678   -}
  4305 + content: "\e804"; }
5679 4306  
5680 4307 .mdi-image-crop-portrait:before {
5681   - content: "\e805";
5682   -}
  4308 + content: "\e805"; }
5683 4309  
5684 4310 .mdi-image-crop-square:before {
5685   - content: "\e806";
5686   -}
  4311 + content: "\e806"; }
5687 4312  
5688 4313 .mdi-image-crop:before {
5689   - content: "\e807";
5690   -}
  4314 + content: "\e807"; }
5691 4315  
5692 4316 .mdi-image-dehaze:before {
5693   - content: "\e808";
5694   -}
  4317 + content: "\e808"; }
5695 4318  
5696 4319 .mdi-image-details:before {
5697   - content: "\e809";
5698   -}
  4320 + content: "\e809"; }
5699 4321  
5700 4322 .mdi-image-edit:before {
5701   - content: "\e80a";
5702   -}
  4323 + content: "\e80a"; }
5703 4324  
5704 4325 .mdi-image-exposure-minus-1:before {
5705   - content: "\e80b";
5706   -}
  4326 + content: "\e80b"; }
5707 4327  
5708 4328 .mdi-image-exposure-minus-2:before {
5709   - content: "\e80c";
5710   -}
  4329 + content: "\e80c"; }
5711 4330  
5712 4331 .mdi-image-exposure-plus-1:before {
5713   - content: "\e80d";
5714   -}
  4332 + content: "\e80d"; }
5715 4333  
5716 4334 .mdi-image-exposure-plus-2:before {
5717   - content: "\e80e";
5718   -}
  4335 + content: "\e80e"; }
5719 4336  
5720 4337 .mdi-image-exposure-zero:before {
5721   - content: "\e80f";
5722   -}
  4338 + content: "\e80f"; }
5723 4339  
5724 4340 .mdi-image-exposure:before {
5725   - content: "\e810";
5726   -}
  4341 + content: "\e810"; }
5727 4342  
5728 4343 .mdi-image-filter-1:before {
5729   - content: "\e811";
5730   -}
  4344 + content: "\e811"; }
5731 4345  
5732 4346 .mdi-image-filter-2:before {
5733   - content: "\e812";
5734   -}
  4347 + content: "\e812"; }
5735 4348  
5736 4349 .mdi-image-filter-3:before {
5737   - content: "\e813";
5738   -}
  4350 + content: "\e813"; }
5739 4351  
5740 4352 .mdi-image-filter-4:before {
5741   - content: "\e814";
5742   -}
  4353 + content: "\e814"; }
5743 4354  
5744 4355 .mdi-image-filter-5:before {
5745   - content: "\e815";
5746   -}
  4356 + content: "\e815"; }
5747 4357  
5748 4358 .mdi-image-filter-6:before {
5749   - content: "\e816";
5750   -}
  4359 + content: "\e816"; }
5751 4360  
5752 4361 .mdi-image-filter-7:before {
5753   - content: "\e817";
5754   -}
  4362 + content: "\e817"; }
5755 4363  
5756 4364 .mdi-image-filter-8:before {
5757   - content: "\e818";
5758   -}
  4365 + content: "\e818"; }
5759 4366  
5760 4367 .mdi-image-filter-9-plus:before {
5761   - content: "\e819";
5762   -}
  4368 + content: "\e819"; }
5763 4369  
5764 4370 .mdi-image-filter-9:before {
5765   - content: "\e81a";
5766   -}
  4371 + content: "\e81a"; }
5767 4372  
5768 4373 .mdi-image-filter-b-and-w:before {
5769   - content: "\e81b";
5770   -}
  4374 + content: "\e81b"; }
5771 4375  
5772 4376 .mdi-image-filter-center-focus:before {
5773   - content: "\e81c";
5774   -}
  4377 + content: "\e81c"; }
5775 4378  
5776 4379 .mdi-image-filter-drama:before {
5777   - content: "\e81d";
5778   -}
  4380 + content: "\e81d"; }
5779 4381  
5780 4382 .mdi-image-filter-frames:before {
5781   - content: "\e81e";
5782   -}
  4383 + content: "\e81e"; }
5783 4384  
5784 4385 .mdi-image-filter-hdr:before {
5785   - content: "\e81f";
5786   -}
  4386 + content: "\e81f"; }
5787 4387  
5788 4388 .mdi-image-filter-none:before {
5789   - content: "\e820";
5790   -}
  4389 + content: "\e820"; }
5791 4390  
5792 4391 .mdi-image-filter-tilt-shift:before {
5793   - content: "\e821";
5794   -}
  4392 + content: "\e821"; }
5795 4393  
5796 4394 .mdi-image-filter-vintage:before {
5797   - content: "\e822";
5798   -}
  4395 + content: "\e822"; }
5799 4396  
5800 4397 .mdi-image-filter:before {
5801   - content: "\e823";
5802   -}
  4398 + content: "\e823"; }
5803 4399  
5804 4400 .mdi-image-flare:before {
5805   - content: "\e824";
5806   -}
  4401 + content: "\e824"; }
5807 4402  
5808 4403 .mdi-image-flash-auto:before {
5809   - content: "\e825";
5810   -}
  4404 + content: "\e825"; }
5811 4405  
5812 4406 .mdi-image-flash-off:before {
5813   - content: "\e826";
5814   -}
  4407 + content: "\e826"; }
5815 4408  
5816 4409 .mdi-image-flash-on:before {
5817   - content: "\e827";
5818   -}
  4410 + content: "\e827"; }
5819 4411  
5820 4412 .mdi-image-flip:before {
5821   - content: "\e828";
5822   -}
  4413 + content: "\e828"; }
5823 4414  
5824 4415 .mdi-image-gradient:before {
5825   - content: "\e829";
5826   -}
  4416 + content: "\e829"; }
5827 4417  
5828 4418 .mdi-image-grain:before {
5829   - content: "\e82a";
5830   -}
  4419 + content: "\e82a"; }
5831 4420  
5832 4421 .mdi-image-grid-off:before {
5833   - content: "\e82b";
5834   -}
  4422 + content: "\e82b"; }
5835 4423  
5836 4424 .mdi-image-grid-on:before {
5837   - content: "\e82c";
5838   -}
  4425 + content: "\e82c"; }
5839 4426  
5840 4427 .mdi-image-hdr-off:before {
5841   - content: "\e82d";
5842   -}
  4428 + content: "\e82d"; }
5843 4429  
5844 4430 .mdi-image-hdr-on:before {
5845   - content: "\e82e";
5846   -}
  4431 + content: "\e82e"; }
5847 4432  
5848 4433 .mdi-image-hdr-strong:before {
5849   - content: "\e82f";
5850   -}
  4434 + content: "\e82f"; }
5851 4435  
5852 4436 .mdi-image-hdr-weak:before {
5853   - content: "\e830";
5854   -}
  4437 + content: "\e830"; }
5855 4438  
5856 4439 .mdi-image-healing:before {
5857   - content: "\e831";
5858   -}
  4440 + content: "\e831"; }
5859 4441  
5860 4442 .mdi-image-image-aspect-ratio:before {
5861   - content: "\e832";
5862   -}
  4443 + content: "\e832"; }
5863 4444  
5864 4445 .mdi-image-image:before {
5865   - content: "\e833";
5866   -}
  4446 + content: "\e833"; }
5867 4447  
5868 4448 .mdi-image-iso:before {
5869   - content: "\e834";
5870   -}
  4449 + content: "\e834"; }
5871 4450  
5872 4451 .mdi-image-landscape:before {
5873   - content: "\e835";
5874   -}
  4452 + content: "\e835"; }
5875 4453  
5876 4454 .mdi-image-leak-add:before {
5877   - content: "\e836";
5878   -}
  4455 + content: "\e836"; }
5879 4456  
5880 4457 .mdi-image-leak-remove:before {
5881   - content: "\e837";
5882   -}
  4458 + content: "\e837"; }
5883 4459  
5884 4460 .mdi-image-lens:before {
5885   - content: "\e838";
5886   -}
  4461 + content: "\e838"; }
5887 4462  
5888 4463 .mdi-image-looks-3:before {
5889   - content: "\e839";
5890   -}
  4464 + content: "\e839"; }
5891 4465  
5892 4466 .mdi-image-looks-4:before {
5893   - content: "\e83a";
5894   -}
  4467 + content: "\e83a"; }
5895 4468  
5896 4469 .mdi-image-looks-5:before {
5897   - content: "\e83b";
5898   -}
  4470 + content: "\e83b"; }
5899 4471  
5900 4472 .mdi-image-looks-6:before {
5901   - content: "\e83c";
5902   -}
  4473 + content: "\e83c"; }
5903 4474  
5904 4475 .mdi-image-looks-one:before {
5905   - content: "\e83d";
5906   -}
  4476 + content: "\e83d"; }
5907 4477  
5908 4478 .mdi-image-looks-two:before {
5909   - content: "\e83e";
5910   -}
  4479 + content: "\e83e"; }
5911 4480  
5912 4481 .mdi-image-looks:before {
5913   - content: "\e83f";
5914   -}
  4482 + content: "\e83f"; }
5915 4483  
5916 4484 .mdi-image-loupe:before {
5917   - content: "\e840";
5918   -}
  4485 + content: "\e840"; }
5919 4486  
5920 4487 .mdi-image-movie-creation:before {
5921   - content: "\e841";
5922   -}
  4488 + content: "\e841"; }
5923 4489  
5924 4490 .mdi-image-nature-people:before {
5925   - content: "\e842";
5926   -}
  4491 + content: "\e842"; }
5927 4492  
5928 4493 .mdi-image-nature:before {
5929   - content: "\e843";
5930   -}
  4494 + content: "\e843"; }
5931 4495  
5932 4496 .mdi-image-navigate-before:before {
5933   - content: "\e844";
5934   -}
  4497 + content: "\e844"; }
5935 4498  
5936 4499 .mdi-image-navigate-next:before {
5937   - content: "\e845";
5938   -}
  4500 + content: "\e845"; }
5939 4501  
5940 4502 .mdi-image-palette:before {
5941   - content: "\e846";
5942   -}
  4503 + content: "\e846"; }
5943 4504  
5944 4505 .mdi-image-panorama-fisheye:before {
5945   - content: "\e847";
5946   -}
  4506 + content: "\e847"; }
5947 4507  
5948 4508 .mdi-image-panorama-horizontal:before {
5949   - content: "\e848";
5950   -}
  4509 + content: "\e848"; }
5951 4510  
5952 4511 .mdi-image-panorama-vertical:before {
5953   - content: "\e849";
5954   -}
  4512 + content: "\e849"; }
5955 4513  
5956 4514 .mdi-image-panorama-wide-angle:before {
5957   - content: "\e84a";
5958   -}
  4515 + content: "\e84a"; }
5959 4516  
5960 4517 .mdi-image-panorama:before {
5961   - content: "\e84b";
5962   -}
  4518 + content: "\e84b"; }
5963 4519  
5964 4520 .mdi-image-photo-album:before {
5965   - content: "\e84c";
5966   -}
  4521 + content: "\e84c"; }
5967 4522  
5968 4523 .mdi-image-photo-camera:before {
5969   - content: "\e84d";
5970   -}
  4524 + content: "\e84d"; }
5971 4525  
5972 4526 .mdi-image-photo-library:before {
5973   - content: "\e84e";
5974   -}
  4527 + content: "\e84e"; }
5975 4528  
5976 4529 .mdi-image-photo:before {
5977   - content: "\e84f";
5978   -}
  4530 + content: "\e84f"; }
5979 4531  
5980 4532 .mdi-image-portrait:before {
5981   - content: "\e850";
5982   -}
  4533 + content: "\e850"; }
5983 4534  
5984 4535 .mdi-image-remove-red-eye:before {
5985   - content: "\e851";
5986   -}
  4536 + content: "\e851"; }
5987 4537  
5988 4538 .mdi-image-rotate-left:before {
5989   - content: "\e852";
5990   -}
  4539 + content: "\e852"; }
5991 4540  
5992 4541 .mdi-image-rotate-right:before {
5993   - content: "\e853";
5994   -}
  4542 + content: "\e853"; }
5995 4543  
5996 4544 .mdi-image-slideshow:before {
5997   - content: "\e854";
5998   -}
  4545 + content: "\e854"; }
5999 4546  
6000 4547 .mdi-image-straighten:before {
6001   - content: "\e855";
6002   -}
  4548 + content: "\e855"; }
6003 4549  
6004 4550 .mdi-image-style:before {
6005   - content: "\e856";
6006   -}
  4551 + content: "\e856"; }
6007 4552  
6008 4553 .mdi-image-switch-camera:before {
6009   - content: "\e857";
6010   -}
  4554 + content: "\e857"; }
6011 4555  
6012 4556 .mdi-image-switch-video:before {
6013   - content: "\e858";
6014   -}
  4557 + content: "\e858"; }
6015 4558  
6016 4559 .mdi-image-tag-faces:before {
6017   - content: "\e859";
6018   -}
  4560 + content: "\e859"; }
6019 4561  
6020 4562 .mdi-image-texture:before {
6021   - content: "\e85a";
6022   -}
  4563 + content: "\e85a"; }
6023 4564  
6024 4565 .mdi-image-timelapse:before {
6025   - content: "\e85b";
6026   -}
  4566 + content: "\e85b"; }
6027 4567  
6028 4568 .mdi-image-timer-3:before {
6029   - content: "\e85c";
6030   -}
  4569 + content: "\e85c"; }
6031 4570  
6032 4571 .mdi-image-timer-10:before {
6033   - content: "\e85d";
6034   -}
  4572 + content: "\e85d"; }
6035 4573  
6036 4574 .mdi-image-timer-auto:before {
6037   - content: "\e85e";
6038   -}
  4575 + content: "\e85e"; }
6039 4576  
6040 4577 .mdi-image-timer-off:before {
6041   - content: "\e85f";
6042   -}
  4578 + content: "\e85f"; }
6043 4579  
6044 4580 .mdi-image-timer:before {
6045   - content: "\e860";
6046   -}
  4581 + content: "\e860"; }
6047 4582  
6048 4583 .mdi-image-tonality:before {
6049   - content: "\e861";
6050   -}
  4584 + content: "\e861"; }
6051 4585  
6052 4586 .mdi-image-transform:before {
6053   - content: "\e862";
6054   -}
  4587 + content: "\e862"; }
6055 4588  
6056 4589 .mdi-image-tune:before {
6057   - content: "\e863";
6058   -}
  4590 + content: "\e863"; }
6059 4591  
6060 4592 .mdi-image-wb-auto:before {
6061   - content: "\e864";
6062   -}
  4593 + content: "\e864"; }
6063 4594  
6064 4595 .mdi-image-wb-cloudy:before {
6065   - content: "\e865";
6066   -}
  4596 + content: "\e865"; }
6067 4597  
6068 4598 .mdi-image-wb-incandescent:before {
6069   - content: "\e866";
6070   -}
  4599 + content: "\e866"; }
6071 4600  
6072 4601 .mdi-image-wb-irradescent:before {
6073   - content: "\e867";
6074   -}
  4602 + content: "\e867"; }
6075 4603  
6076 4604 .mdi-image-wb-sunny:before {
6077   - content: "\e868";
6078   -}
  4605 + content: "\e868"; }
6079 4606  
6080 4607 .mdi-maps-beenhere:before {
6081   - content: "\e869";
6082   -}
  4608 + content: "\e869"; }
6083 4609  
6084 4610 .mdi-maps-directions-bike:before {
6085   - content: "\e86a";
6086   -}
  4611 + content: "\e86a"; }
6087 4612  
6088 4613 .mdi-maps-directions-bus:before {
6089   - content: "\e86b";
6090   -}
  4614 + content: "\e86b"; }
6091 4615  
6092 4616 .mdi-maps-directions-car:before {
6093   - content: "\e86c";
6094   -}
  4617 + content: "\e86c"; }
6095 4618  
6096 4619 .mdi-maps-directions-ferry:before {
6097   - content: "\e86d";
6098   -}
  4620 + content: "\e86d"; }
6099 4621  
6100 4622 .mdi-maps-directions-subway:before {
6101   - content: "\e86e";
6102   -}
  4623 + content: "\e86e"; }
6103 4624  
6104 4625 .mdi-maps-directions-train:before {
6105   - content: "\e86f";
6106   -}
  4626 + content: "\e86f"; }
6107 4627  
6108 4628 .mdi-maps-directions-transit:before {
6109   - content: "\e870";
6110   -}
  4629 + content: "\e870"; }
6111 4630  
6112 4631 .mdi-maps-directions-walk:before {
6113   - content: "\e871";
6114   -}
  4632 + content: "\e871"; }
6115 4633  
6116 4634 .mdi-maps-directions:before {
6117   - content: "\e872";
6118   -}
  4635 + content: "\e872"; }
6119 4636  
6120 4637 .mdi-maps-flight:before {
6121   - content: "\e873";
6122   -}
  4638 + content: "\e873"; }
6123 4639  
6124 4640 .mdi-maps-hotel:before {
6125   - content: "\e874";
6126   -}
  4641 + content: "\e874"; }
6127 4642  
6128 4643 .mdi-maps-layers-clear:before {
6129   - content: "\e875";
6130   -}
  4644 + content: "\e875"; }
6131 4645  
6132 4646 .mdi-maps-layers:before {
6133   - content: "\e876";
6134   -}
  4647 + content: "\e876"; }
6135 4648  
6136 4649 .mdi-maps-local-airport:before {
6137   - content: "\e877";
6138   -}
  4650 + content: "\e877"; }
6139 4651  
6140 4652 .mdi-maps-local-atm:before {
6141   - content: "\e878";
6142   -}
  4653 + content: "\e878"; }
6143 4654  
6144 4655 .mdi-maps-local-attraction:before {
6145   - content: "\e879";
6146   -}
  4656 + content: "\e879"; }
6147 4657  
6148 4658 .mdi-maps-local-bar:before {
6149   - content: "\e87a";
6150   -}
  4659 + content: "\e87a"; }
6151 4660  
6152 4661 .mdi-maps-local-cafe:before {
6153   - content: "\e87b";
6154   -}
  4662 + content: "\e87b"; }
6155 4663  
6156 4664 .mdi-maps-local-car-wash:before {
6157   - content: "\e87c";
6158   -}
  4665 + content: "\e87c"; }
6159 4666  
6160 4667 .mdi-maps-local-convenience-store:before {
6161   - content: "\e87d";
6162   -}
  4668 + content: "\e87d"; }
6163 4669  
6164 4670 .mdi-maps-local-drink:before {
6165   - content: "\e87e";
6166   -}
  4671 + content: "\e87e"; }
6167 4672  
6168 4673 .mdi-maps-local-florist:before {
6169   - content: "\e87f";
6170   -}
  4674 + content: "\e87f"; }
6171 4675  
6172 4676 .mdi-maps-local-gas-station:before {
6173   - content: "\e880";
6174   -}
  4677 + content: "\e880"; }
6175 4678  
6176 4679 .mdi-maps-local-grocery-store:before {
6177   - content: "\e881";
6178   -}
  4680 + content: "\e881"; }
6179 4681  
6180 4682 .mdi-maps-local-hospital:before {
6181   - content: "\e882";
6182   -}
  4683 + content: "\e882"; }
6183 4684  
6184 4685 .mdi-maps-local-hotel:before {
6185   - content: "\e883";
6186   -}
  4686 + content: "\e883"; }
6187 4687  
6188 4688 .mdi-maps-local-laundry-service:before {
6189   - content: "\e884";
6190   -}
  4689 + content: "\e884"; }
6191 4690  
6192 4691 .mdi-maps-local-library:before {
6193   - content: "\e885";
6194   -}
  4692 + content: "\e885"; }
6195 4693  
6196 4694 .mdi-maps-local-mall:before {
6197   - content: "\e886";
6198   -}
  4695 + content: "\e886"; }
6199 4696  
6200 4697 .mdi-maps-local-movies:before {
6201   - content: "\e887";
6202   -}
  4698 + content: "\e887"; }
6203 4699  
6204 4700 .mdi-maps-local-offer:before {
6205   - content: "\e888";
6206   -}
  4701 + content: "\e888"; }
6207 4702  
6208 4703 .mdi-maps-local-parking:before {
6209   - content: "\e889";
6210   -}
  4704 + content: "\e889"; }
6211 4705  
6212 4706 .mdi-maps-local-pharmacy:before {
6213   - content: "\e88a";
6214   -}
  4707 + content: "\e88a"; }
6215 4708  
6216 4709 .mdi-maps-local-phone:before {
6217   - content: "\e88b";
6218   -}
  4710 + content: "\e88b"; }
6219 4711  
6220 4712 .mdi-maps-local-pizza:before {
6221   - content: "\e88c";
6222   -}
  4713 + content: "\e88c"; }
6223 4714  
6224 4715 .mdi-maps-local-play:before {
6225   - content: "\e88d";
6226   -}
  4716 + content: "\e88d"; }
6227 4717  
6228 4718 .mdi-maps-local-post-office:before {
6229   - content: "\e88e";
6230   -}
  4719 + content: "\e88e"; }
6231 4720  
6232 4721 .mdi-maps-local-print-shop:before {
6233   - content: "\e88f";
6234   -}
  4722 + content: "\e88f"; }
6235 4723  
6236 4724 .mdi-maps-local-restaurant:before {
6237   - content: "\e890";
6238   -}
  4725 + content: "\e890"; }
6239 4726  
6240 4727 .mdi-maps-local-see:before {
6241   - content: "\e891";
6242   -}
  4728 + content: "\e891"; }
6243 4729  
6244 4730 .mdi-maps-local-shipping:before {
6245   - content: "\e892";
6246   -}
  4731 + content: "\e892"; }
6247 4732  
6248 4733 .mdi-maps-local-taxi:before {
6249   - content: "\e893";
6250   -}
  4734 + content: "\e893"; }
6251 4735  
6252 4736 .mdi-maps-location-history:before {
6253   - content: "\e894";
6254   -}
  4737 + content: "\e894"; }
6255 4738  
6256 4739 .mdi-maps-map:before {
6257   - content: "\e895";
6258   -}
  4740 + content: "\e895"; }
6259 4741  
6260 4742 .mdi-maps-my-location:before {
6261   - content: "\e896";
6262   -}
  4743 + content: "\e896"; }
6263 4744  
6264 4745 .mdi-maps-navigation:before {
6265   - content: "\e897";
6266   -}
  4746 + content: "\e897"; }
6267 4747  
6268 4748 .mdi-maps-pin-drop:before {
6269   - content: "\e898";
6270   -}
  4749 + content: "\e898"; }
6271 4750  
6272 4751 .mdi-maps-place:before {
6273   - content: "\e899";
6274   -}
  4752 + content: "\e899"; }
6275 4753  
6276 4754 .mdi-maps-rate-review:before {
6277   - content: "\e89a";
6278   -}
  4755 + content: "\e89a"; }
6279 4756  
6280 4757 .mdi-maps-restaurant-menu:before {
6281   - content: "\e89b";
6282   -}
  4758 + content: "\e89b"; }
6283 4759  
6284 4760 .mdi-maps-satellite:before {
6285   - content: "\e89c";
6286   -}
  4761 + content: "\e89c"; }
6287 4762  
6288 4763 .mdi-maps-store-mall-directory:before {
6289   - content: "\e89d";
6290   -}
  4764 + content: "\e89d"; }
6291 4765  
6292 4766 .mdi-maps-terrain:before {
6293   - content: "\e89e";
6294   -}
  4767 + content: "\e89e"; }
6295 4768  
6296 4769 .mdi-maps-traffic:before {
6297   - content: "\e89f";
6298   -}
  4770 + content: "\e89f"; }
6299 4771  
6300 4772 .mdi-navigation-apps:before {
6301   - content: "\e8a0";
6302   -}
  4773 + content: "\e8a0"; }
6303 4774  
6304 4775 .mdi-navigation-arrow-back:before {
6305   - content: "\e8a1";
6306   -}
  4776 + content: "\e8a1"; }
6307 4777  
6308 4778 .mdi-navigation-arrow-drop-down-circle:before {
6309   - content: "\e8a2";
6310   -}
  4779 + content: "\e8a2"; }
6311 4780  
6312 4781 .mdi-navigation-arrow-drop-down:before {
6313   - content: "\e8a3";
6314   -}
  4782 + content: "\e8a3"; }
6315 4783  
6316 4784 .mdi-navigation-arrow-drop-up:before {
6317   - content: "\e8a4";
6318   -}
  4785 + content: "\e8a4"; }
6319 4786  
6320 4787 .mdi-navigation-arrow-forward:before {
6321   - content: "\e8a5";
6322   -}
  4788 + content: "\e8a5"; }
6323 4789  
6324 4790 .mdi-navigation-cancel:before {
6325   - content: "\e8a6";
6326   -}
  4791 + content: "\e8a6"; }
6327 4792  
6328 4793 .mdi-navigation-check:before {
6329   - content: "\e8a7";
6330   -}
  4794 + content: "\e8a7"; }
6331 4795  
6332 4796 .mdi-navigation-chevron-left:before {
6333   - content: "\e8a8";
6334   -}
  4797 + content: "\e8a8"; }
6335 4798  
6336 4799 .mdi-navigation-chevron-right:before {
6337   - content: "\e8a9";
6338   -}
  4800 + content: "\e8a9"; }
6339 4801  
6340 4802 .mdi-navigation-close:before {
6341   - content: "\e8aa";
6342   -}
  4803 + content: "\e8aa"; }
6343 4804  
6344 4805 .mdi-navigation-expand-less:before {
6345   - content: "\e8ab";
6346   -}
  4806 + content: "\e8ab"; }
6347 4807  
6348 4808 .mdi-navigation-expand-more:before {
6349   - content: "\e8ac";
6350   -}
  4809 + content: "\e8ac"; }
6351 4810  
6352 4811 .mdi-navigation-fullscreen-exit:before {
6353   - content: "\e8ad";
6354   -}
  4812 + content: "\e8ad"; }
6355 4813  
6356 4814 .mdi-navigation-fullscreen:before {
6357   - content: "\e8ae";
6358   -}
  4815 + content: "\e8ae"; }
6359 4816  
6360 4817 .mdi-navigation-menu:before {
6361   - content: "\e8af";
6362   -}
  4818 + content: "\e8af"; }
6363 4819  
6364 4820 .mdi-navigation-more-horiz:before {
6365   - content: "\e8b0";
6366   -}
  4821 + content: "\e8b0"; }
6367 4822  
6368 4823 .mdi-navigation-more-vert:before {
6369   - content: "\e8b1";
6370   -}
  4824 + content: "\e8b1"; }
6371 4825  
6372 4826 .mdi-navigation-refresh:before {
6373   - content: "\e8b2";
6374   -}
  4827 + content: "\e8b2"; }
6375 4828  
6376 4829 .mdi-navigation-unfold-less:before {
6377   - content: "\e8b3";
6378   -}
  4830 + content: "\e8b3"; }
6379 4831  
6380 4832 .mdi-navigation-unfold-more:before {
6381   - content: "\e8b4";
6382   -}
  4833 + content: "\e8b4"; }
6383 4834  
6384 4835 .mdi-notification-adb:before {
6385   - content: "\e8b5";
6386   -}
  4836 + content: "\e8b5"; }
6387 4837  
6388 4838 .mdi-notification-bluetooth-audio:before {
6389   - content: "\e8b6";
6390   -}
  4839 + content: "\e8b6"; }
6391 4840  
6392 4841 .mdi-notification-disc-full:before {
6393   - content: "\e8b7";
6394   -}
  4842 + content: "\e8b7"; }
6395 4843  
6396 4844 .mdi-notification-dnd-forwardslash:before {
6397   - content: "\e8b8";
6398   -}
  4845 + content: "\e8b8"; }
6399 4846  
6400 4847 .mdi-notification-do-not-disturb:before {
6401   - content: "\e8b9";
6402   -}
  4848 + content: "\e8b9"; }
6403 4849  
6404 4850 .mdi-notification-drive-eta:before {
6405   - content: "\e8ba";
6406   -}
  4851 + content: "\e8ba"; }
6407 4852  
6408 4853 .mdi-notification-event-available:before {
6409   - content: "\e8bb";
6410   -}
  4854 + content: "\e8bb"; }
6411 4855  
6412 4856 .mdi-notification-event-busy:before {
6413   - content: "\e8bc";
6414   -}
  4857 + content: "\e8bc"; }
6415 4858  
6416 4859 .mdi-notification-event-note:before {
6417   - content: "\e8bd";
6418   -}
  4860 + content: "\e8bd"; }
6419 4861  
6420 4862 .mdi-notification-folder-special:before {
6421   - content: "\e8be";
6422   -}
  4863 + content: "\e8be"; }
6423 4864  
6424 4865 .mdi-notification-mms:before {
6425   - content: "\e8bf";
6426   -}
  4866 + content: "\e8bf"; }
6427 4867  
6428 4868 .mdi-notification-more:before {
6429   - content: "\e8c0";
6430   -}
  4869 + content: "\e8c0"; }
6431 4870  
6432 4871 .mdi-notification-network-locked:before {
6433   - content: "\e8c1";
6434   -}
  4872 + content: "\e8c1"; }
6435 4873  
6436 4874 .mdi-notification-phone-bluetooth-speaker:before {
6437   - content: "\e8c2";
6438   -}
  4875 + content: "\e8c2"; }
6439 4876  
6440 4877 .mdi-notification-phone-forwarded:before {
6441   - content: "\e8c3";
6442   -}
  4878 + content: "\e8c3"; }
6443 4879  
6444 4880 .mdi-notification-phone-in-talk:before {
6445   - content: "\e8c4";
6446   -}
  4881 + content: "\e8c4"; }
6447 4882  
6448 4883 .mdi-notification-phone-locked:before {
6449   - content: "\e8c5";
6450   -}
  4884 + content: "\e8c5"; }
6451 4885  
6452 4886 .mdi-notification-phone-missed:before {
6453   - content: "\e8c6";
6454   -}
  4887 + content: "\e8c6"; }
6455 4888  
6456 4889 .mdi-notification-phone-paused:before {
6457   - content: "\e8c7";
6458   -}
  4890 + content: "\e8c7"; }
6459 4891  
6460 4892 .mdi-notification-play-download:before {
6461   - content: "\e8c8";
6462   -}
  4893 + content: "\e8c8"; }
6463 4894  
6464 4895 .mdi-notification-play-install:before {
6465   - content: "\e8c9";
6466   -}
  4896 + content: "\e8c9"; }
6467 4897  
6468 4898 .mdi-notification-sd-card:before {
6469   - content: "\e8ca";
6470   -}
  4899 + content: "\e8ca"; }
6471 4900  
6472 4901 .mdi-notification-sim-card-alert:before {
6473   - content: "\e8cb";
6474   -}
  4902 + content: "\e8cb"; }
6475 4903  
6476 4904 .mdi-notification-sms-failed:before {
6477   - content: "\e8cc";
6478   -}
  4905 + content: "\e8cc"; }
6479 4906  
6480 4907 .mdi-notification-sms:before {
6481   - content: "\e8cd";
6482   -}
  4908 + content: "\e8cd"; }
6483 4909  
6484 4910 .mdi-notification-sync-disabled:before {
6485   - content: "\e8ce";
6486   -}
  4911 + content: "\e8ce"; }
6487 4912  
6488 4913 .mdi-notification-sync-problem:before {
6489   - content: "\e8cf";
6490   -}
  4914 + content: "\e8cf"; }
6491 4915  
6492 4916 .mdi-notification-sync:before {
6493   - content: "\e8d0";
6494   -}
  4917 + content: "\e8d0"; }
6495 4918  
6496 4919 .mdi-notification-system-update:before {
6497   - content: "\e8d1";
6498   -}
  4920 + content: "\e8d1"; }
6499 4921  
6500 4922 .mdi-notification-tap-and-play:before {
6501   - content: "\e8d2";
6502   -}
  4923 + content: "\e8d2"; }
6503 4924  
6504 4925 .mdi-notification-time-to-leave:before {
6505   - content: "\e8d3";
6506   -}
  4926 + content: "\e8d3"; }
6507 4927  
6508 4928 .mdi-notification-vibration:before {
6509   - content: "\e8d4";
6510   -}
  4929 + content: "\e8d4"; }
6511 4930  
6512 4931 .mdi-notification-voice-chat:before {
6513   - content: "\e8d5";
6514   -}
  4932 + content: "\e8d5"; }
6515 4933  
6516