Commit a1a3bc73ac0831517402dd7690c4341e0d328eee

Authored by Luigi Serra
1 parent b717550d

graphs updates

Showing 1335 changed files with 77653 additions and 51145 deletions

Too many changes.

To preserve performance only 100 of 1335 files are displayed.

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