mithril-materialized 2.0.0-beta.3 → 2.0.0-beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/dist/advanced.css +1888 -0
  2. package/dist/autocomplete.d.ts +3 -3
  3. package/dist/breadcrumb.d.ts +53 -0
  4. package/dist/button.d.ts +10 -10
  5. package/dist/carousel.d.ts +2 -2
  6. package/dist/chip.d.ts +2 -2
  7. package/dist/code-block.d.ts +2 -2
  8. package/dist/collapsible.d.ts +2 -2
  9. package/dist/collection.d.ts +2 -2
  10. package/dist/components.css +2310 -0
  11. package/dist/core.css +3402 -0
  12. package/dist/datepicker.d.ts +66 -0
  13. package/dist/dropdown.d.ts +2 -2
  14. package/dist/file-upload.d.ts +34 -0
  15. package/dist/floating-action-button.d.ts +2 -2
  16. package/dist/forms.css +2284 -0
  17. package/dist/index.css +1451 -144
  18. package/dist/index.d.ts +12 -1
  19. package/dist/index.esm.js +4590 -2612
  20. package/dist/index.js +4610 -2611
  21. package/dist/index.min.css +8 -0
  22. package/dist/index.umd.js +4610 -2611
  23. package/dist/input-options.d.ts +1 -1
  24. package/dist/input.d.ts +9 -9
  25. package/dist/label.d.ts +2 -2
  26. package/dist/material-box.d.ts +2 -2
  27. package/dist/modal.d.ts +2 -2
  28. package/dist/option.d.ts +4 -4
  29. package/dist/pagination.d.ts +2 -2
  30. package/dist/parallax.d.ts +2 -2
  31. package/dist/pickers.css +487 -0
  32. package/dist/pushpin.d.ts +32 -0
  33. package/dist/radio.d.ts +4 -4
  34. package/dist/search-select.d.ts +2 -2
  35. package/dist/select.d.ts +2 -2
  36. package/dist/sidenav.d.ts +76 -0
  37. package/dist/switch.d.ts +2 -2
  38. package/dist/tabs.d.ts +2 -2
  39. package/dist/theme-switcher.d.ts +49 -0
  40. package/dist/timepicker.d.ts +42 -0
  41. package/dist/toast.d.ts +45 -0
  42. package/dist/tooltip.d.ts +59 -0
  43. package/dist/utilities.css +3197 -0
  44. package/dist/wizard.d.ts +58 -0
  45. package/package.json +13 -5
  46. package/sass/components/_breadcrumb.scss +248 -0
  47. package/sass/components/_buttons.scss +3 -3
  48. package/sass/components/_collapsible.scss +8 -8
  49. package/sass/components/_datepicker.scss +45 -14
  50. package/sass/components/_file-upload.scss +228 -0
  51. package/sass/components/_global.scss +7 -5
  52. package/sass/components/_modal.scss +5 -2
  53. package/sass/components/_navbar.scss +13 -5
  54. package/sass/components/_sidenav.scss +164 -7
  55. package/sass/components/_tabs.scss +5 -4
  56. package/sass/components/_theme-switcher.scss +120 -0
  57. package/sass/components/_theme-variables.scss +187 -0
  58. package/sass/components/_timepicker.scss +179 -87
  59. package/sass/components/_wizard.scss +416 -0
  60. package/sass/components/forms/_input-fields.scss +34 -12
  61. package/sass/components/forms/_radio-buttons.scss +10 -10
  62. package/sass/components/forms/_switches.scss +6 -6
  63. package/sass/materialize.scss +7 -0
  64. package/dist/pickers.d.ts +0 -130
@@ -0,0 +1,3197 @@
1
+ @charset "UTF-8";
2
+ span.badge {
3
+ min-width: 3rem;
4
+ padding: 0 6px;
5
+ margin-left: 14px;
6
+ text-align: center;
7
+ font-size: 1rem;
8
+ line-height: 22px;
9
+ height: 22px;
10
+ color: #757575;
11
+ float: right;
12
+ box-sizing: border-box;
13
+ }
14
+ span.badge.new {
15
+ font-weight: 300;
16
+ font-size: 0.8rem;
17
+ color: #fff;
18
+ background-color: #26a69a;
19
+ border-radius: 2px;
20
+ }
21
+ span.badge.new:after {
22
+ content: " new";
23
+ }
24
+ span.badge[data-badge-caption]::after {
25
+ content: " " attr(data-badge-caption);
26
+ }
27
+
28
+ nav ul a span.badge {
29
+ display: inline-block;
30
+ float: none;
31
+ margin-left: 4px;
32
+ line-height: 22px;
33
+ height: 22px;
34
+ -webkit-font-smoothing: auto;
35
+ }
36
+
37
+ .collection-item span.badge {
38
+ margin-top: calc(0.75rem - 11px);
39
+ }
40
+
41
+ .collapsible span.badge {
42
+ margin-left: auto;
43
+ }
44
+
45
+ .sidenav span.badge {
46
+ margin-top: calc(24px - 11px);
47
+ }
48
+
49
+ table span.badge {
50
+ display: inline-block;
51
+ float: none;
52
+ margin-left: auto;
53
+ }
54
+
55
+ .materialize-red {
56
+ background-color: #e51c23 !important;
57
+ }
58
+
59
+ .materialize-red-text {
60
+ color: #e51c23 !important;
61
+ }
62
+
63
+ .materialize-red.lighten-5 {
64
+ background-color: #fdeaeb !important;
65
+ }
66
+
67
+ .materialize-red-text.text-lighten-5 {
68
+ color: #fdeaeb !important;
69
+ }
70
+
71
+ .materialize-red.lighten-4 {
72
+ background-color: #f8c1c3 !important;
73
+ }
74
+
75
+ .materialize-red-text.text-lighten-4 {
76
+ color: #f8c1c3 !important;
77
+ }
78
+
79
+ .materialize-red.lighten-3 {
80
+ background-color: #f3989b !important;
81
+ }
82
+
83
+ .materialize-red-text.text-lighten-3 {
84
+ color: #f3989b !important;
85
+ }
86
+
87
+ .materialize-red.lighten-2 {
88
+ background-color: #ee6e73 !important;
89
+ }
90
+
91
+ .materialize-red-text.text-lighten-2 {
92
+ color: #ee6e73 !important;
93
+ }
94
+
95
+ .materialize-red.lighten-1 {
96
+ background-color: #ea454b !important;
97
+ }
98
+
99
+ .materialize-red-text.text-lighten-1 {
100
+ color: #ea454b !important;
101
+ }
102
+
103
+ .materialize-red.darken-1 {
104
+ background-color: #d0181e !important;
105
+ }
106
+
107
+ .materialize-red-text.text-darken-1 {
108
+ color: #d0181e !important;
109
+ }
110
+
111
+ .materialize-red.darken-2 {
112
+ background-color: #b9151b !important;
113
+ }
114
+
115
+ .materialize-red-text.text-darken-2 {
116
+ color: #b9151b !important;
117
+ }
118
+
119
+ .materialize-red.darken-3 {
120
+ background-color: #a21318 !important;
121
+ }
122
+
123
+ .materialize-red-text.text-darken-3 {
124
+ color: #a21318 !important;
125
+ }
126
+
127
+ .materialize-red.darken-4 {
128
+ background-color: #8b1014 !important;
129
+ }
130
+
131
+ .materialize-red-text.text-darken-4 {
132
+ color: #8b1014 !important;
133
+ }
134
+
135
+ .red {
136
+ background-color: #F44336 !important;
137
+ }
138
+
139
+ .red-text {
140
+ color: #F44336 !important;
141
+ }
142
+
143
+ .red.lighten-5 {
144
+ background-color: #FFEBEE !important;
145
+ }
146
+
147
+ .red-text.text-lighten-5 {
148
+ color: #FFEBEE !important;
149
+ }
150
+
151
+ .red.lighten-4 {
152
+ background-color: #FFCDD2 !important;
153
+ }
154
+
155
+ .red-text.text-lighten-4 {
156
+ color: #FFCDD2 !important;
157
+ }
158
+
159
+ .red.lighten-3 {
160
+ background-color: #EF9A9A !important;
161
+ }
162
+
163
+ .red-text.text-lighten-3 {
164
+ color: #EF9A9A !important;
165
+ }
166
+
167
+ .red.lighten-2 {
168
+ background-color: #E57373 !important;
169
+ }
170
+
171
+ .red-text.text-lighten-2 {
172
+ color: #E57373 !important;
173
+ }
174
+
175
+ .red.lighten-1 {
176
+ background-color: #EF5350 !important;
177
+ }
178
+
179
+ .red-text.text-lighten-1 {
180
+ color: #EF5350 !important;
181
+ }
182
+
183
+ .red.darken-1 {
184
+ background-color: #E53935 !important;
185
+ }
186
+
187
+ .red-text.text-darken-1 {
188
+ color: #E53935 !important;
189
+ }
190
+
191
+ .red.darken-2 {
192
+ background-color: #D32F2F !important;
193
+ }
194
+
195
+ .red-text.text-darken-2 {
196
+ color: #D32F2F !important;
197
+ }
198
+
199
+ .red.darken-3 {
200
+ background-color: #C62828 !important;
201
+ }
202
+
203
+ .red-text.text-darken-3 {
204
+ color: #C62828 !important;
205
+ }
206
+
207
+ .red.darken-4 {
208
+ background-color: #B71C1C !important;
209
+ }
210
+
211
+ .red-text.text-darken-4 {
212
+ color: #B71C1C !important;
213
+ }
214
+
215
+ .red.accent-1 {
216
+ background-color: #FF8A80 !important;
217
+ }
218
+
219
+ .red-text.text-accent-1 {
220
+ color: #FF8A80 !important;
221
+ }
222
+
223
+ .red.accent-2 {
224
+ background-color: #FF5252 !important;
225
+ }
226
+
227
+ .red-text.text-accent-2 {
228
+ color: #FF5252 !important;
229
+ }
230
+
231
+ .red.accent-3 {
232
+ background-color: #FF1744 !important;
233
+ }
234
+
235
+ .red-text.text-accent-3 {
236
+ color: #FF1744 !important;
237
+ }
238
+
239
+ .red.accent-4 {
240
+ background-color: #D50000 !important;
241
+ }
242
+
243
+ .red-text.text-accent-4 {
244
+ color: #D50000 !important;
245
+ }
246
+
247
+ .pink {
248
+ background-color: #e91e63 !important;
249
+ }
250
+
251
+ .pink-text {
252
+ color: #e91e63 !important;
253
+ }
254
+
255
+ .pink.lighten-5 {
256
+ background-color: #fce4ec !important;
257
+ }
258
+
259
+ .pink-text.text-lighten-5 {
260
+ color: #fce4ec !important;
261
+ }
262
+
263
+ .pink.lighten-4 {
264
+ background-color: #f8bbd0 !important;
265
+ }
266
+
267
+ .pink-text.text-lighten-4 {
268
+ color: #f8bbd0 !important;
269
+ }
270
+
271
+ .pink.lighten-3 {
272
+ background-color: #f48fb1 !important;
273
+ }
274
+
275
+ .pink-text.text-lighten-3 {
276
+ color: #f48fb1 !important;
277
+ }
278
+
279
+ .pink.lighten-2 {
280
+ background-color: #f06292 !important;
281
+ }
282
+
283
+ .pink-text.text-lighten-2 {
284
+ color: #f06292 !important;
285
+ }
286
+
287
+ .pink.lighten-1 {
288
+ background-color: #ec407a !important;
289
+ }
290
+
291
+ .pink-text.text-lighten-1 {
292
+ color: #ec407a !important;
293
+ }
294
+
295
+ .pink.darken-1 {
296
+ background-color: #d81b60 !important;
297
+ }
298
+
299
+ .pink-text.text-darken-1 {
300
+ color: #d81b60 !important;
301
+ }
302
+
303
+ .pink.darken-2 {
304
+ background-color: #c2185b !important;
305
+ }
306
+
307
+ .pink-text.text-darken-2 {
308
+ color: #c2185b !important;
309
+ }
310
+
311
+ .pink.darken-3 {
312
+ background-color: #ad1457 !important;
313
+ }
314
+
315
+ .pink-text.text-darken-3 {
316
+ color: #ad1457 !important;
317
+ }
318
+
319
+ .pink.darken-4 {
320
+ background-color: #880e4f !important;
321
+ }
322
+
323
+ .pink-text.text-darken-4 {
324
+ color: #880e4f !important;
325
+ }
326
+
327
+ .pink.accent-1 {
328
+ background-color: #ff80ab !important;
329
+ }
330
+
331
+ .pink-text.text-accent-1 {
332
+ color: #ff80ab !important;
333
+ }
334
+
335
+ .pink.accent-2 {
336
+ background-color: #ff4081 !important;
337
+ }
338
+
339
+ .pink-text.text-accent-2 {
340
+ color: #ff4081 !important;
341
+ }
342
+
343
+ .pink.accent-3 {
344
+ background-color: #f50057 !important;
345
+ }
346
+
347
+ .pink-text.text-accent-3 {
348
+ color: #f50057 !important;
349
+ }
350
+
351
+ .pink.accent-4 {
352
+ background-color: #c51162 !important;
353
+ }
354
+
355
+ .pink-text.text-accent-4 {
356
+ color: #c51162 !important;
357
+ }
358
+
359
+ .purple {
360
+ background-color: #9c27b0 !important;
361
+ }
362
+
363
+ .purple-text {
364
+ color: #9c27b0 !important;
365
+ }
366
+
367
+ .purple.lighten-5 {
368
+ background-color: #f3e5f5 !important;
369
+ }
370
+
371
+ .purple-text.text-lighten-5 {
372
+ color: #f3e5f5 !important;
373
+ }
374
+
375
+ .purple.lighten-4 {
376
+ background-color: #e1bee7 !important;
377
+ }
378
+
379
+ .purple-text.text-lighten-4 {
380
+ color: #e1bee7 !important;
381
+ }
382
+
383
+ .purple.lighten-3 {
384
+ background-color: #ce93d8 !important;
385
+ }
386
+
387
+ .purple-text.text-lighten-3 {
388
+ color: #ce93d8 !important;
389
+ }
390
+
391
+ .purple.lighten-2 {
392
+ background-color: #ba68c8 !important;
393
+ }
394
+
395
+ .purple-text.text-lighten-2 {
396
+ color: #ba68c8 !important;
397
+ }
398
+
399
+ .purple.lighten-1 {
400
+ background-color: #ab47bc !important;
401
+ }
402
+
403
+ .purple-text.text-lighten-1 {
404
+ color: #ab47bc !important;
405
+ }
406
+
407
+ .purple.darken-1 {
408
+ background-color: #8e24aa !important;
409
+ }
410
+
411
+ .purple-text.text-darken-1 {
412
+ color: #8e24aa !important;
413
+ }
414
+
415
+ .purple.darken-2 {
416
+ background-color: #7b1fa2 !important;
417
+ }
418
+
419
+ .purple-text.text-darken-2 {
420
+ color: #7b1fa2 !important;
421
+ }
422
+
423
+ .purple.darken-3 {
424
+ background-color: #6a1b9a !important;
425
+ }
426
+
427
+ .purple-text.text-darken-3 {
428
+ color: #6a1b9a !important;
429
+ }
430
+
431
+ .purple.darken-4 {
432
+ background-color: #4a148c !important;
433
+ }
434
+
435
+ .purple-text.text-darken-4 {
436
+ color: #4a148c !important;
437
+ }
438
+
439
+ .purple.accent-1 {
440
+ background-color: #ea80fc !important;
441
+ }
442
+
443
+ .purple-text.text-accent-1 {
444
+ color: #ea80fc !important;
445
+ }
446
+
447
+ .purple.accent-2 {
448
+ background-color: #e040fb !important;
449
+ }
450
+
451
+ .purple-text.text-accent-2 {
452
+ color: #e040fb !important;
453
+ }
454
+
455
+ .purple.accent-3 {
456
+ background-color: #d500f9 !important;
457
+ }
458
+
459
+ .purple-text.text-accent-3 {
460
+ color: #d500f9 !important;
461
+ }
462
+
463
+ .purple.accent-4 {
464
+ background-color: #aa00ff !important;
465
+ }
466
+
467
+ .purple-text.text-accent-4 {
468
+ color: #aa00ff !important;
469
+ }
470
+
471
+ .deep-purple {
472
+ background-color: #673ab7 !important;
473
+ }
474
+
475
+ .deep-purple-text {
476
+ color: #673ab7 !important;
477
+ }
478
+
479
+ .deep-purple.lighten-5 {
480
+ background-color: #ede7f6 !important;
481
+ }
482
+
483
+ .deep-purple-text.text-lighten-5 {
484
+ color: #ede7f6 !important;
485
+ }
486
+
487
+ .deep-purple.lighten-4 {
488
+ background-color: #d1c4e9 !important;
489
+ }
490
+
491
+ .deep-purple-text.text-lighten-4 {
492
+ color: #d1c4e9 !important;
493
+ }
494
+
495
+ .deep-purple.lighten-3 {
496
+ background-color: #b39ddb !important;
497
+ }
498
+
499
+ .deep-purple-text.text-lighten-3 {
500
+ color: #b39ddb !important;
501
+ }
502
+
503
+ .deep-purple.lighten-2 {
504
+ background-color: #9575cd !important;
505
+ }
506
+
507
+ .deep-purple-text.text-lighten-2 {
508
+ color: #9575cd !important;
509
+ }
510
+
511
+ .deep-purple.lighten-1 {
512
+ background-color: #7e57c2 !important;
513
+ }
514
+
515
+ .deep-purple-text.text-lighten-1 {
516
+ color: #7e57c2 !important;
517
+ }
518
+
519
+ .deep-purple.darken-1 {
520
+ background-color: #5e35b1 !important;
521
+ }
522
+
523
+ .deep-purple-text.text-darken-1 {
524
+ color: #5e35b1 !important;
525
+ }
526
+
527
+ .deep-purple.darken-2 {
528
+ background-color: #512da8 !important;
529
+ }
530
+
531
+ .deep-purple-text.text-darken-2 {
532
+ color: #512da8 !important;
533
+ }
534
+
535
+ .deep-purple.darken-3 {
536
+ background-color: #4527a0 !important;
537
+ }
538
+
539
+ .deep-purple-text.text-darken-3 {
540
+ color: #4527a0 !important;
541
+ }
542
+
543
+ .deep-purple.darken-4 {
544
+ background-color: #311b92 !important;
545
+ }
546
+
547
+ .deep-purple-text.text-darken-4 {
548
+ color: #311b92 !important;
549
+ }
550
+
551
+ .deep-purple.accent-1 {
552
+ background-color: #b388ff !important;
553
+ }
554
+
555
+ .deep-purple-text.text-accent-1 {
556
+ color: #b388ff !important;
557
+ }
558
+
559
+ .deep-purple.accent-2 {
560
+ background-color: #7c4dff !important;
561
+ }
562
+
563
+ .deep-purple-text.text-accent-2 {
564
+ color: #7c4dff !important;
565
+ }
566
+
567
+ .deep-purple.accent-3 {
568
+ background-color: #651fff !important;
569
+ }
570
+
571
+ .deep-purple-text.text-accent-3 {
572
+ color: #651fff !important;
573
+ }
574
+
575
+ .deep-purple.accent-4 {
576
+ background-color: #6200ea !important;
577
+ }
578
+
579
+ .deep-purple-text.text-accent-4 {
580
+ color: #6200ea !important;
581
+ }
582
+
583
+ .indigo {
584
+ background-color: #3f51b5 !important;
585
+ }
586
+
587
+ .indigo-text {
588
+ color: #3f51b5 !important;
589
+ }
590
+
591
+ .indigo.lighten-5 {
592
+ background-color: #e8eaf6 !important;
593
+ }
594
+
595
+ .indigo-text.text-lighten-5 {
596
+ color: #e8eaf6 !important;
597
+ }
598
+
599
+ .indigo.lighten-4 {
600
+ background-color: #c5cae9 !important;
601
+ }
602
+
603
+ .indigo-text.text-lighten-4 {
604
+ color: #c5cae9 !important;
605
+ }
606
+
607
+ .indigo.lighten-3 {
608
+ background-color: #9fa8da !important;
609
+ }
610
+
611
+ .indigo-text.text-lighten-3 {
612
+ color: #9fa8da !important;
613
+ }
614
+
615
+ .indigo.lighten-2 {
616
+ background-color: #7986cb !important;
617
+ }
618
+
619
+ .indigo-text.text-lighten-2 {
620
+ color: #7986cb !important;
621
+ }
622
+
623
+ .indigo.lighten-1 {
624
+ background-color: #5c6bc0 !important;
625
+ }
626
+
627
+ .indigo-text.text-lighten-1 {
628
+ color: #5c6bc0 !important;
629
+ }
630
+
631
+ .indigo.darken-1 {
632
+ background-color: #3949ab !important;
633
+ }
634
+
635
+ .indigo-text.text-darken-1 {
636
+ color: #3949ab !important;
637
+ }
638
+
639
+ .indigo.darken-2 {
640
+ background-color: #303f9f !important;
641
+ }
642
+
643
+ .indigo-text.text-darken-2 {
644
+ color: #303f9f !important;
645
+ }
646
+
647
+ .indigo.darken-3 {
648
+ background-color: #283593 !important;
649
+ }
650
+
651
+ .indigo-text.text-darken-3 {
652
+ color: #283593 !important;
653
+ }
654
+
655
+ .indigo.darken-4 {
656
+ background-color: #1a237e !important;
657
+ }
658
+
659
+ .indigo-text.text-darken-4 {
660
+ color: #1a237e !important;
661
+ }
662
+
663
+ .indigo.accent-1 {
664
+ background-color: #8c9eff !important;
665
+ }
666
+
667
+ .indigo-text.text-accent-1 {
668
+ color: #8c9eff !important;
669
+ }
670
+
671
+ .indigo.accent-2 {
672
+ background-color: #536dfe !important;
673
+ }
674
+
675
+ .indigo-text.text-accent-2 {
676
+ color: #536dfe !important;
677
+ }
678
+
679
+ .indigo.accent-3 {
680
+ background-color: #3d5afe !important;
681
+ }
682
+
683
+ .indigo-text.text-accent-3 {
684
+ color: #3d5afe !important;
685
+ }
686
+
687
+ .indigo.accent-4 {
688
+ background-color: #304ffe !important;
689
+ }
690
+
691
+ .indigo-text.text-accent-4 {
692
+ color: #304ffe !important;
693
+ }
694
+
695
+ .blue {
696
+ background-color: #2196F3 !important;
697
+ }
698
+
699
+ .blue-text {
700
+ color: #2196F3 !important;
701
+ }
702
+
703
+ .blue.lighten-5 {
704
+ background-color: #E3F2FD !important;
705
+ }
706
+
707
+ .blue-text.text-lighten-5 {
708
+ color: #E3F2FD !important;
709
+ }
710
+
711
+ .blue.lighten-4 {
712
+ background-color: #BBDEFB !important;
713
+ }
714
+
715
+ .blue-text.text-lighten-4 {
716
+ color: #BBDEFB !important;
717
+ }
718
+
719
+ .blue.lighten-3 {
720
+ background-color: #90CAF9 !important;
721
+ }
722
+
723
+ .blue-text.text-lighten-3 {
724
+ color: #90CAF9 !important;
725
+ }
726
+
727
+ .blue.lighten-2 {
728
+ background-color: #64B5F6 !important;
729
+ }
730
+
731
+ .blue-text.text-lighten-2 {
732
+ color: #64B5F6 !important;
733
+ }
734
+
735
+ .blue.lighten-1 {
736
+ background-color: #42A5F5 !important;
737
+ }
738
+
739
+ .blue-text.text-lighten-1 {
740
+ color: #42A5F5 !important;
741
+ }
742
+
743
+ .blue.darken-1 {
744
+ background-color: #1E88E5 !important;
745
+ }
746
+
747
+ .blue-text.text-darken-1 {
748
+ color: #1E88E5 !important;
749
+ }
750
+
751
+ .blue.darken-2 {
752
+ background-color: #1976D2 !important;
753
+ }
754
+
755
+ .blue-text.text-darken-2 {
756
+ color: #1976D2 !important;
757
+ }
758
+
759
+ .blue.darken-3 {
760
+ background-color: #1565C0 !important;
761
+ }
762
+
763
+ .blue-text.text-darken-3 {
764
+ color: #1565C0 !important;
765
+ }
766
+
767
+ .blue.darken-4 {
768
+ background-color: #0D47A1 !important;
769
+ }
770
+
771
+ .blue-text.text-darken-4 {
772
+ color: #0D47A1 !important;
773
+ }
774
+
775
+ .blue.accent-1 {
776
+ background-color: #82B1FF !important;
777
+ }
778
+
779
+ .blue-text.text-accent-1 {
780
+ color: #82B1FF !important;
781
+ }
782
+
783
+ .blue.accent-2 {
784
+ background-color: #448AFF !important;
785
+ }
786
+
787
+ .blue-text.text-accent-2 {
788
+ color: #448AFF !important;
789
+ }
790
+
791
+ .blue.accent-3 {
792
+ background-color: #2979FF !important;
793
+ }
794
+
795
+ .blue-text.text-accent-3 {
796
+ color: #2979FF !important;
797
+ }
798
+
799
+ .blue.accent-4 {
800
+ background-color: #2962FF !important;
801
+ }
802
+
803
+ .blue-text.text-accent-4 {
804
+ color: #2962FF !important;
805
+ }
806
+
807
+ .light-blue {
808
+ background-color: #03a9f4 !important;
809
+ }
810
+
811
+ .light-blue-text {
812
+ color: #03a9f4 !important;
813
+ }
814
+
815
+ .light-blue.lighten-5 {
816
+ background-color: #e1f5fe !important;
817
+ }
818
+
819
+ .light-blue-text.text-lighten-5 {
820
+ color: #e1f5fe !important;
821
+ }
822
+
823
+ .light-blue.lighten-4 {
824
+ background-color: #b3e5fc !important;
825
+ }
826
+
827
+ .light-blue-text.text-lighten-4 {
828
+ color: #b3e5fc !important;
829
+ }
830
+
831
+ .light-blue.lighten-3 {
832
+ background-color: #81d4fa !important;
833
+ }
834
+
835
+ .light-blue-text.text-lighten-3 {
836
+ color: #81d4fa !important;
837
+ }
838
+
839
+ .light-blue.lighten-2 {
840
+ background-color: #4fc3f7 !important;
841
+ }
842
+
843
+ .light-blue-text.text-lighten-2 {
844
+ color: #4fc3f7 !important;
845
+ }
846
+
847
+ .light-blue.lighten-1 {
848
+ background-color: #29b6f6 !important;
849
+ }
850
+
851
+ .light-blue-text.text-lighten-1 {
852
+ color: #29b6f6 !important;
853
+ }
854
+
855
+ .light-blue.darken-1 {
856
+ background-color: #039be5 !important;
857
+ }
858
+
859
+ .light-blue-text.text-darken-1 {
860
+ color: #039be5 !important;
861
+ }
862
+
863
+ .light-blue.darken-2 {
864
+ background-color: #0288d1 !important;
865
+ }
866
+
867
+ .light-blue-text.text-darken-2 {
868
+ color: #0288d1 !important;
869
+ }
870
+
871
+ .light-blue.darken-3 {
872
+ background-color: #0277bd !important;
873
+ }
874
+
875
+ .light-blue-text.text-darken-3 {
876
+ color: #0277bd !important;
877
+ }
878
+
879
+ .light-blue.darken-4 {
880
+ background-color: #01579b !important;
881
+ }
882
+
883
+ .light-blue-text.text-darken-4 {
884
+ color: #01579b !important;
885
+ }
886
+
887
+ .light-blue.accent-1 {
888
+ background-color: #80d8ff !important;
889
+ }
890
+
891
+ .light-blue-text.text-accent-1 {
892
+ color: #80d8ff !important;
893
+ }
894
+
895
+ .light-blue.accent-2 {
896
+ background-color: #40c4ff !important;
897
+ }
898
+
899
+ .light-blue-text.text-accent-2 {
900
+ color: #40c4ff !important;
901
+ }
902
+
903
+ .light-blue.accent-3 {
904
+ background-color: #00b0ff !important;
905
+ }
906
+
907
+ .light-blue-text.text-accent-3 {
908
+ color: #00b0ff !important;
909
+ }
910
+
911
+ .light-blue.accent-4 {
912
+ background-color: #0091ea !important;
913
+ }
914
+
915
+ .light-blue-text.text-accent-4 {
916
+ color: #0091ea !important;
917
+ }
918
+
919
+ .cyan {
920
+ background-color: #00bcd4 !important;
921
+ }
922
+
923
+ .cyan-text {
924
+ color: #00bcd4 !important;
925
+ }
926
+
927
+ .cyan.lighten-5 {
928
+ background-color: #e0f7fa !important;
929
+ }
930
+
931
+ .cyan-text.text-lighten-5 {
932
+ color: #e0f7fa !important;
933
+ }
934
+
935
+ .cyan.lighten-4 {
936
+ background-color: #b2ebf2 !important;
937
+ }
938
+
939
+ .cyan-text.text-lighten-4 {
940
+ color: #b2ebf2 !important;
941
+ }
942
+
943
+ .cyan.lighten-3 {
944
+ background-color: #80deea !important;
945
+ }
946
+
947
+ .cyan-text.text-lighten-3 {
948
+ color: #80deea !important;
949
+ }
950
+
951
+ .cyan.lighten-2 {
952
+ background-color: #4dd0e1 !important;
953
+ }
954
+
955
+ .cyan-text.text-lighten-2 {
956
+ color: #4dd0e1 !important;
957
+ }
958
+
959
+ .cyan.lighten-1 {
960
+ background-color: #26c6da !important;
961
+ }
962
+
963
+ .cyan-text.text-lighten-1 {
964
+ color: #26c6da !important;
965
+ }
966
+
967
+ .cyan.darken-1 {
968
+ background-color: #00acc1 !important;
969
+ }
970
+
971
+ .cyan-text.text-darken-1 {
972
+ color: #00acc1 !important;
973
+ }
974
+
975
+ .cyan.darken-2 {
976
+ background-color: #0097a7 !important;
977
+ }
978
+
979
+ .cyan-text.text-darken-2 {
980
+ color: #0097a7 !important;
981
+ }
982
+
983
+ .cyan.darken-3 {
984
+ background-color: #00838f !important;
985
+ }
986
+
987
+ .cyan-text.text-darken-3 {
988
+ color: #00838f !important;
989
+ }
990
+
991
+ .cyan.darken-4 {
992
+ background-color: #006064 !important;
993
+ }
994
+
995
+ .cyan-text.text-darken-4 {
996
+ color: #006064 !important;
997
+ }
998
+
999
+ .cyan.accent-1 {
1000
+ background-color: #84ffff !important;
1001
+ }
1002
+
1003
+ .cyan-text.text-accent-1 {
1004
+ color: #84ffff !important;
1005
+ }
1006
+
1007
+ .cyan.accent-2 {
1008
+ background-color: #18ffff !important;
1009
+ }
1010
+
1011
+ .cyan-text.text-accent-2 {
1012
+ color: #18ffff !important;
1013
+ }
1014
+
1015
+ .cyan.accent-3 {
1016
+ background-color: #00e5ff !important;
1017
+ }
1018
+
1019
+ .cyan-text.text-accent-3 {
1020
+ color: #00e5ff !important;
1021
+ }
1022
+
1023
+ .cyan.accent-4 {
1024
+ background-color: #00b8d4 !important;
1025
+ }
1026
+
1027
+ .cyan-text.text-accent-4 {
1028
+ color: #00b8d4 !important;
1029
+ }
1030
+
1031
+ .teal {
1032
+ background-color: #009688 !important;
1033
+ }
1034
+
1035
+ .teal-text {
1036
+ color: #009688 !important;
1037
+ }
1038
+
1039
+ .teal.lighten-5 {
1040
+ background-color: #e0f2f1 !important;
1041
+ }
1042
+
1043
+ .teal-text.text-lighten-5 {
1044
+ color: #e0f2f1 !important;
1045
+ }
1046
+
1047
+ .teal.lighten-4 {
1048
+ background-color: #b2dfdb !important;
1049
+ }
1050
+
1051
+ .teal-text.text-lighten-4 {
1052
+ color: #b2dfdb !important;
1053
+ }
1054
+
1055
+ .teal.lighten-3 {
1056
+ background-color: #80cbc4 !important;
1057
+ }
1058
+
1059
+ .teal-text.text-lighten-3 {
1060
+ color: #80cbc4 !important;
1061
+ }
1062
+
1063
+ .teal.lighten-2 {
1064
+ background-color: #4db6ac !important;
1065
+ }
1066
+
1067
+ .teal-text.text-lighten-2 {
1068
+ color: #4db6ac !important;
1069
+ }
1070
+
1071
+ .teal.lighten-1 {
1072
+ background-color: #26a69a !important;
1073
+ }
1074
+
1075
+ .teal-text.text-lighten-1 {
1076
+ color: #26a69a !important;
1077
+ }
1078
+
1079
+ .teal.darken-1 {
1080
+ background-color: #00897b !important;
1081
+ }
1082
+
1083
+ .teal-text.text-darken-1 {
1084
+ color: #00897b !important;
1085
+ }
1086
+
1087
+ .teal.darken-2 {
1088
+ background-color: #00796b !important;
1089
+ }
1090
+
1091
+ .teal-text.text-darken-2 {
1092
+ color: #00796b !important;
1093
+ }
1094
+
1095
+ .teal.darken-3 {
1096
+ background-color: #00695c !important;
1097
+ }
1098
+
1099
+ .teal-text.text-darken-3 {
1100
+ color: #00695c !important;
1101
+ }
1102
+
1103
+ .teal.darken-4 {
1104
+ background-color: #004d40 !important;
1105
+ }
1106
+
1107
+ .teal-text.text-darken-4 {
1108
+ color: #004d40 !important;
1109
+ }
1110
+
1111
+ .teal.accent-1 {
1112
+ background-color: #a7ffeb !important;
1113
+ }
1114
+
1115
+ .teal-text.text-accent-1 {
1116
+ color: #a7ffeb !important;
1117
+ }
1118
+
1119
+ .teal.accent-2 {
1120
+ background-color: #64ffda !important;
1121
+ }
1122
+
1123
+ .teal-text.text-accent-2 {
1124
+ color: #64ffda !important;
1125
+ }
1126
+
1127
+ .teal.accent-3 {
1128
+ background-color: #1de9b6 !important;
1129
+ }
1130
+
1131
+ .teal-text.text-accent-3 {
1132
+ color: #1de9b6 !important;
1133
+ }
1134
+
1135
+ .teal.accent-4 {
1136
+ background-color: #00bfa5 !important;
1137
+ }
1138
+
1139
+ .teal-text.text-accent-4 {
1140
+ color: #00bfa5 !important;
1141
+ }
1142
+
1143
+ .green {
1144
+ background-color: #4CAF50 !important;
1145
+ }
1146
+
1147
+ .green-text {
1148
+ color: #4CAF50 !important;
1149
+ }
1150
+
1151
+ .green.lighten-5 {
1152
+ background-color: #E8F5E9 !important;
1153
+ }
1154
+
1155
+ .green-text.text-lighten-5 {
1156
+ color: #E8F5E9 !important;
1157
+ }
1158
+
1159
+ .green.lighten-4 {
1160
+ background-color: #C8E6C9 !important;
1161
+ }
1162
+
1163
+ .green-text.text-lighten-4 {
1164
+ color: #C8E6C9 !important;
1165
+ }
1166
+
1167
+ .green.lighten-3 {
1168
+ background-color: #A5D6A7 !important;
1169
+ }
1170
+
1171
+ .green-text.text-lighten-3 {
1172
+ color: #A5D6A7 !important;
1173
+ }
1174
+
1175
+ .green.lighten-2 {
1176
+ background-color: #81C784 !important;
1177
+ }
1178
+
1179
+ .green-text.text-lighten-2 {
1180
+ color: #81C784 !important;
1181
+ }
1182
+
1183
+ .green.lighten-1 {
1184
+ background-color: #66BB6A !important;
1185
+ }
1186
+
1187
+ .green-text.text-lighten-1 {
1188
+ color: #66BB6A !important;
1189
+ }
1190
+
1191
+ .green.darken-1 {
1192
+ background-color: #43A047 !important;
1193
+ }
1194
+
1195
+ .green-text.text-darken-1 {
1196
+ color: #43A047 !important;
1197
+ }
1198
+
1199
+ .green.darken-2 {
1200
+ background-color: #388E3C !important;
1201
+ }
1202
+
1203
+ .green-text.text-darken-2 {
1204
+ color: #388E3C !important;
1205
+ }
1206
+
1207
+ .green.darken-3 {
1208
+ background-color: #2E7D32 !important;
1209
+ }
1210
+
1211
+ .green-text.text-darken-3 {
1212
+ color: #2E7D32 !important;
1213
+ }
1214
+
1215
+ .green.darken-4 {
1216
+ background-color: #1B5E20 !important;
1217
+ }
1218
+
1219
+ .green-text.text-darken-4 {
1220
+ color: #1B5E20 !important;
1221
+ }
1222
+
1223
+ .green.accent-1 {
1224
+ background-color: #B9F6CA !important;
1225
+ }
1226
+
1227
+ .green-text.text-accent-1 {
1228
+ color: #B9F6CA !important;
1229
+ }
1230
+
1231
+ .green.accent-2 {
1232
+ background-color: #69F0AE !important;
1233
+ }
1234
+
1235
+ .green-text.text-accent-2 {
1236
+ color: #69F0AE !important;
1237
+ }
1238
+
1239
+ .green.accent-3 {
1240
+ background-color: #00E676 !important;
1241
+ }
1242
+
1243
+ .green-text.text-accent-3 {
1244
+ color: #00E676 !important;
1245
+ }
1246
+
1247
+ .green.accent-4 {
1248
+ background-color: #00C853 !important;
1249
+ }
1250
+
1251
+ .green-text.text-accent-4 {
1252
+ color: #00C853 !important;
1253
+ }
1254
+
1255
+ .light-green {
1256
+ background-color: #8bc34a !important;
1257
+ }
1258
+
1259
+ .light-green-text {
1260
+ color: #8bc34a !important;
1261
+ }
1262
+
1263
+ .light-green.lighten-5 {
1264
+ background-color: #f1f8e9 !important;
1265
+ }
1266
+
1267
+ .light-green-text.text-lighten-5 {
1268
+ color: #f1f8e9 !important;
1269
+ }
1270
+
1271
+ .light-green.lighten-4 {
1272
+ background-color: #dcedc8 !important;
1273
+ }
1274
+
1275
+ .light-green-text.text-lighten-4 {
1276
+ color: #dcedc8 !important;
1277
+ }
1278
+
1279
+ .light-green.lighten-3 {
1280
+ background-color: #c5e1a5 !important;
1281
+ }
1282
+
1283
+ .light-green-text.text-lighten-3 {
1284
+ color: #c5e1a5 !important;
1285
+ }
1286
+
1287
+ .light-green.lighten-2 {
1288
+ background-color: #aed581 !important;
1289
+ }
1290
+
1291
+ .light-green-text.text-lighten-2 {
1292
+ color: #aed581 !important;
1293
+ }
1294
+
1295
+ .light-green.lighten-1 {
1296
+ background-color: #9ccc65 !important;
1297
+ }
1298
+
1299
+ .light-green-text.text-lighten-1 {
1300
+ color: #9ccc65 !important;
1301
+ }
1302
+
1303
+ .light-green.darken-1 {
1304
+ background-color: #7cb342 !important;
1305
+ }
1306
+
1307
+ .light-green-text.text-darken-1 {
1308
+ color: #7cb342 !important;
1309
+ }
1310
+
1311
+ .light-green.darken-2 {
1312
+ background-color: #689f38 !important;
1313
+ }
1314
+
1315
+ .light-green-text.text-darken-2 {
1316
+ color: #689f38 !important;
1317
+ }
1318
+
1319
+ .light-green.darken-3 {
1320
+ background-color: #558b2f !important;
1321
+ }
1322
+
1323
+ .light-green-text.text-darken-3 {
1324
+ color: #558b2f !important;
1325
+ }
1326
+
1327
+ .light-green.darken-4 {
1328
+ background-color: #33691e !important;
1329
+ }
1330
+
1331
+ .light-green-text.text-darken-4 {
1332
+ color: #33691e !important;
1333
+ }
1334
+
1335
+ .light-green.accent-1 {
1336
+ background-color: #ccff90 !important;
1337
+ }
1338
+
1339
+ .light-green-text.text-accent-1 {
1340
+ color: #ccff90 !important;
1341
+ }
1342
+
1343
+ .light-green.accent-2 {
1344
+ background-color: #b2ff59 !important;
1345
+ }
1346
+
1347
+ .light-green-text.text-accent-2 {
1348
+ color: #b2ff59 !important;
1349
+ }
1350
+
1351
+ .light-green.accent-3 {
1352
+ background-color: #76ff03 !important;
1353
+ }
1354
+
1355
+ .light-green-text.text-accent-3 {
1356
+ color: #76ff03 !important;
1357
+ }
1358
+
1359
+ .light-green.accent-4 {
1360
+ background-color: #64dd17 !important;
1361
+ }
1362
+
1363
+ .light-green-text.text-accent-4 {
1364
+ color: #64dd17 !important;
1365
+ }
1366
+
1367
+ .lime {
1368
+ background-color: #cddc39 !important;
1369
+ }
1370
+
1371
+ .lime-text {
1372
+ color: #cddc39 !important;
1373
+ }
1374
+
1375
+ .lime.lighten-5 {
1376
+ background-color: #f9fbe7 !important;
1377
+ }
1378
+
1379
+ .lime-text.text-lighten-5 {
1380
+ color: #f9fbe7 !important;
1381
+ }
1382
+
1383
+ .lime.lighten-4 {
1384
+ background-color: #f0f4c3 !important;
1385
+ }
1386
+
1387
+ .lime-text.text-lighten-4 {
1388
+ color: #f0f4c3 !important;
1389
+ }
1390
+
1391
+ .lime.lighten-3 {
1392
+ background-color: #e6ee9c !important;
1393
+ }
1394
+
1395
+ .lime-text.text-lighten-3 {
1396
+ color: #e6ee9c !important;
1397
+ }
1398
+
1399
+ .lime.lighten-2 {
1400
+ background-color: #dce775 !important;
1401
+ }
1402
+
1403
+ .lime-text.text-lighten-2 {
1404
+ color: #dce775 !important;
1405
+ }
1406
+
1407
+ .lime.lighten-1 {
1408
+ background-color: #d4e157 !important;
1409
+ }
1410
+
1411
+ .lime-text.text-lighten-1 {
1412
+ color: #d4e157 !important;
1413
+ }
1414
+
1415
+ .lime.darken-1 {
1416
+ background-color: #c0ca33 !important;
1417
+ }
1418
+
1419
+ .lime-text.text-darken-1 {
1420
+ color: #c0ca33 !important;
1421
+ }
1422
+
1423
+ .lime.darken-2 {
1424
+ background-color: #afb42b !important;
1425
+ }
1426
+
1427
+ .lime-text.text-darken-2 {
1428
+ color: #afb42b !important;
1429
+ }
1430
+
1431
+ .lime.darken-3 {
1432
+ background-color: #9e9d24 !important;
1433
+ }
1434
+
1435
+ .lime-text.text-darken-3 {
1436
+ color: #9e9d24 !important;
1437
+ }
1438
+
1439
+ .lime.darken-4 {
1440
+ background-color: #827717 !important;
1441
+ }
1442
+
1443
+ .lime-text.text-darken-4 {
1444
+ color: #827717 !important;
1445
+ }
1446
+
1447
+ .lime.accent-1 {
1448
+ background-color: #f4ff81 !important;
1449
+ }
1450
+
1451
+ .lime-text.text-accent-1 {
1452
+ color: #f4ff81 !important;
1453
+ }
1454
+
1455
+ .lime.accent-2 {
1456
+ background-color: #eeff41 !important;
1457
+ }
1458
+
1459
+ .lime-text.text-accent-2 {
1460
+ color: #eeff41 !important;
1461
+ }
1462
+
1463
+ .lime.accent-3 {
1464
+ background-color: #c6ff00 !important;
1465
+ }
1466
+
1467
+ .lime-text.text-accent-3 {
1468
+ color: #c6ff00 !important;
1469
+ }
1470
+
1471
+ .lime.accent-4 {
1472
+ background-color: #aeea00 !important;
1473
+ }
1474
+
1475
+ .lime-text.text-accent-4 {
1476
+ color: #aeea00 !important;
1477
+ }
1478
+
1479
+ .yellow {
1480
+ background-color: #ffeb3b !important;
1481
+ }
1482
+
1483
+ .yellow-text {
1484
+ color: #ffeb3b !important;
1485
+ }
1486
+
1487
+ .yellow.lighten-5 {
1488
+ background-color: #fffde7 !important;
1489
+ }
1490
+
1491
+ .yellow-text.text-lighten-5 {
1492
+ color: #fffde7 !important;
1493
+ }
1494
+
1495
+ .yellow.lighten-4 {
1496
+ background-color: #fff9c4 !important;
1497
+ }
1498
+
1499
+ .yellow-text.text-lighten-4 {
1500
+ color: #fff9c4 !important;
1501
+ }
1502
+
1503
+ .yellow.lighten-3 {
1504
+ background-color: #fff59d !important;
1505
+ }
1506
+
1507
+ .yellow-text.text-lighten-3 {
1508
+ color: #fff59d !important;
1509
+ }
1510
+
1511
+ .yellow.lighten-2 {
1512
+ background-color: #fff176 !important;
1513
+ }
1514
+
1515
+ .yellow-text.text-lighten-2 {
1516
+ color: #fff176 !important;
1517
+ }
1518
+
1519
+ .yellow.lighten-1 {
1520
+ background-color: #ffee58 !important;
1521
+ }
1522
+
1523
+ .yellow-text.text-lighten-1 {
1524
+ color: #ffee58 !important;
1525
+ }
1526
+
1527
+ .yellow.darken-1 {
1528
+ background-color: #fdd835 !important;
1529
+ }
1530
+
1531
+ .yellow-text.text-darken-1 {
1532
+ color: #fdd835 !important;
1533
+ }
1534
+
1535
+ .yellow.darken-2 {
1536
+ background-color: #fbc02d !important;
1537
+ }
1538
+
1539
+ .yellow-text.text-darken-2 {
1540
+ color: #fbc02d !important;
1541
+ }
1542
+
1543
+ .yellow.darken-3 {
1544
+ background-color: #f9a825 !important;
1545
+ }
1546
+
1547
+ .yellow-text.text-darken-3 {
1548
+ color: #f9a825 !important;
1549
+ }
1550
+
1551
+ .yellow.darken-4 {
1552
+ background-color: #f57f17 !important;
1553
+ }
1554
+
1555
+ .yellow-text.text-darken-4 {
1556
+ color: #f57f17 !important;
1557
+ }
1558
+
1559
+ .yellow.accent-1 {
1560
+ background-color: #ffff8d !important;
1561
+ }
1562
+
1563
+ .yellow-text.text-accent-1 {
1564
+ color: #ffff8d !important;
1565
+ }
1566
+
1567
+ .yellow.accent-2 {
1568
+ background-color: #ffff00 !important;
1569
+ }
1570
+
1571
+ .yellow-text.text-accent-2 {
1572
+ color: #ffff00 !important;
1573
+ }
1574
+
1575
+ .yellow.accent-3 {
1576
+ background-color: #ffea00 !important;
1577
+ }
1578
+
1579
+ .yellow-text.text-accent-3 {
1580
+ color: #ffea00 !important;
1581
+ }
1582
+
1583
+ .yellow.accent-4 {
1584
+ background-color: #ffd600 !important;
1585
+ }
1586
+
1587
+ .yellow-text.text-accent-4 {
1588
+ color: #ffd600 !important;
1589
+ }
1590
+
1591
+ .amber {
1592
+ background-color: #ffc107 !important;
1593
+ }
1594
+
1595
+ .amber-text {
1596
+ color: #ffc107 !important;
1597
+ }
1598
+
1599
+ .amber.lighten-5 {
1600
+ background-color: #fff8e1 !important;
1601
+ }
1602
+
1603
+ .amber-text.text-lighten-5 {
1604
+ color: #fff8e1 !important;
1605
+ }
1606
+
1607
+ .amber.lighten-4 {
1608
+ background-color: #ffecb3 !important;
1609
+ }
1610
+
1611
+ .amber-text.text-lighten-4 {
1612
+ color: #ffecb3 !important;
1613
+ }
1614
+
1615
+ .amber.lighten-3 {
1616
+ background-color: #ffe082 !important;
1617
+ }
1618
+
1619
+ .amber-text.text-lighten-3 {
1620
+ color: #ffe082 !important;
1621
+ }
1622
+
1623
+ .amber.lighten-2 {
1624
+ background-color: #ffd54f !important;
1625
+ }
1626
+
1627
+ .amber-text.text-lighten-2 {
1628
+ color: #ffd54f !important;
1629
+ }
1630
+
1631
+ .amber.lighten-1 {
1632
+ background-color: #ffca28 !important;
1633
+ }
1634
+
1635
+ .amber-text.text-lighten-1 {
1636
+ color: #ffca28 !important;
1637
+ }
1638
+
1639
+ .amber.darken-1 {
1640
+ background-color: #ffb300 !important;
1641
+ }
1642
+
1643
+ .amber-text.text-darken-1 {
1644
+ color: #ffb300 !important;
1645
+ }
1646
+
1647
+ .amber.darken-2 {
1648
+ background-color: #ffa000 !important;
1649
+ }
1650
+
1651
+ .amber-text.text-darken-2 {
1652
+ color: #ffa000 !important;
1653
+ }
1654
+
1655
+ .amber.darken-3 {
1656
+ background-color: #ff8f00 !important;
1657
+ }
1658
+
1659
+ .amber-text.text-darken-3 {
1660
+ color: #ff8f00 !important;
1661
+ }
1662
+
1663
+ .amber.darken-4 {
1664
+ background-color: #ff6f00 !important;
1665
+ }
1666
+
1667
+ .amber-text.text-darken-4 {
1668
+ color: #ff6f00 !important;
1669
+ }
1670
+
1671
+ .amber.accent-1 {
1672
+ background-color: #ffe57f !important;
1673
+ }
1674
+
1675
+ .amber-text.text-accent-1 {
1676
+ color: #ffe57f !important;
1677
+ }
1678
+
1679
+ .amber.accent-2 {
1680
+ background-color: #ffd740 !important;
1681
+ }
1682
+
1683
+ .amber-text.text-accent-2 {
1684
+ color: #ffd740 !important;
1685
+ }
1686
+
1687
+ .amber.accent-3 {
1688
+ background-color: #ffc400 !important;
1689
+ }
1690
+
1691
+ .amber-text.text-accent-3 {
1692
+ color: #ffc400 !important;
1693
+ }
1694
+
1695
+ .amber.accent-4 {
1696
+ background-color: #ffab00 !important;
1697
+ }
1698
+
1699
+ .amber-text.text-accent-4 {
1700
+ color: #ffab00 !important;
1701
+ }
1702
+
1703
+ .orange {
1704
+ background-color: #ff9800 !important;
1705
+ }
1706
+
1707
+ .orange-text {
1708
+ color: #ff9800 !important;
1709
+ }
1710
+
1711
+ .orange.lighten-5 {
1712
+ background-color: #fff3e0 !important;
1713
+ }
1714
+
1715
+ .orange-text.text-lighten-5 {
1716
+ color: #fff3e0 !important;
1717
+ }
1718
+
1719
+ .orange.lighten-4 {
1720
+ background-color: #ffe0b2 !important;
1721
+ }
1722
+
1723
+ .orange-text.text-lighten-4 {
1724
+ color: #ffe0b2 !important;
1725
+ }
1726
+
1727
+ .orange.lighten-3 {
1728
+ background-color: #ffcc80 !important;
1729
+ }
1730
+
1731
+ .orange-text.text-lighten-3 {
1732
+ color: #ffcc80 !important;
1733
+ }
1734
+
1735
+ .orange.lighten-2 {
1736
+ background-color: #ffb74d !important;
1737
+ }
1738
+
1739
+ .orange-text.text-lighten-2 {
1740
+ color: #ffb74d !important;
1741
+ }
1742
+
1743
+ .orange.lighten-1 {
1744
+ background-color: #ffa726 !important;
1745
+ }
1746
+
1747
+ .orange-text.text-lighten-1 {
1748
+ color: #ffa726 !important;
1749
+ }
1750
+
1751
+ .orange.darken-1 {
1752
+ background-color: #fb8c00 !important;
1753
+ }
1754
+
1755
+ .orange-text.text-darken-1 {
1756
+ color: #fb8c00 !important;
1757
+ }
1758
+
1759
+ .orange.darken-2 {
1760
+ background-color: #f57c00 !important;
1761
+ }
1762
+
1763
+ .orange-text.text-darken-2 {
1764
+ color: #f57c00 !important;
1765
+ }
1766
+
1767
+ .orange.darken-3 {
1768
+ background-color: #ef6c00 !important;
1769
+ }
1770
+
1771
+ .orange-text.text-darken-3 {
1772
+ color: #ef6c00 !important;
1773
+ }
1774
+
1775
+ .orange.darken-4 {
1776
+ background-color: #e65100 !important;
1777
+ }
1778
+
1779
+ .orange-text.text-darken-4 {
1780
+ color: #e65100 !important;
1781
+ }
1782
+
1783
+ .orange.accent-1 {
1784
+ background-color: #ffd180 !important;
1785
+ }
1786
+
1787
+ .orange-text.text-accent-1 {
1788
+ color: #ffd180 !important;
1789
+ }
1790
+
1791
+ .orange.accent-2 {
1792
+ background-color: #ffab40 !important;
1793
+ }
1794
+
1795
+ .orange-text.text-accent-2 {
1796
+ color: #ffab40 !important;
1797
+ }
1798
+
1799
+ .orange.accent-3 {
1800
+ background-color: #ff9100 !important;
1801
+ }
1802
+
1803
+ .orange-text.text-accent-3 {
1804
+ color: #ff9100 !important;
1805
+ }
1806
+
1807
+ .orange.accent-4 {
1808
+ background-color: #ff6d00 !important;
1809
+ }
1810
+
1811
+ .orange-text.text-accent-4 {
1812
+ color: #ff6d00 !important;
1813
+ }
1814
+
1815
+ .deep-orange {
1816
+ background-color: #ff5722 !important;
1817
+ }
1818
+
1819
+ .deep-orange-text {
1820
+ color: #ff5722 !important;
1821
+ }
1822
+
1823
+ .deep-orange.lighten-5 {
1824
+ background-color: #fbe9e7 !important;
1825
+ }
1826
+
1827
+ .deep-orange-text.text-lighten-5 {
1828
+ color: #fbe9e7 !important;
1829
+ }
1830
+
1831
+ .deep-orange.lighten-4 {
1832
+ background-color: #ffccbc !important;
1833
+ }
1834
+
1835
+ .deep-orange-text.text-lighten-4 {
1836
+ color: #ffccbc !important;
1837
+ }
1838
+
1839
+ .deep-orange.lighten-3 {
1840
+ background-color: #ffab91 !important;
1841
+ }
1842
+
1843
+ .deep-orange-text.text-lighten-3 {
1844
+ color: #ffab91 !important;
1845
+ }
1846
+
1847
+ .deep-orange.lighten-2 {
1848
+ background-color: #ff8a65 !important;
1849
+ }
1850
+
1851
+ .deep-orange-text.text-lighten-2 {
1852
+ color: #ff8a65 !important;
1853
+ }
1854
+
1855
+ .deep-orange.lighten-1 {
1856
+ background-color: #ff7043 !important;
1857
+ }
1858
+
1859
+ .deep-orange-text.text-lighten-1 {
1860
+ color: #ff7043 !important;
1861
+ }
1862
+
1863
+ .deep-orange.darken-1 {
1864
+ background-color: #f4511e !important;
1865
+ }
1866
+
1867
+ .deep-orange-text.text-darken-1 {
1868
+ color: #f4511e !important;
1869
+ }
1870
+
1871
+ .deep-orange.darken-2 {
1872
+ background-color: #e64a19 !important;
1873
+ }
1874
+
1875
+ .deep-orange-text.text-darken-2 {
1876
+ color: #e64a19 !important;
1877
+ }
1878
+
1879
+ .deep-orange.darken-3 {
1880
+ background-color: #d84315 !important;
1881
+ }
1882
+
1883
+ .deep-orange-text.text-darken-3 {
1884
+ color: #d84315 !important;
1885
+ }
1886
+
1887
+ .deep-orange.darken-4 {
1888
+ background-color: #bf360c !important;
1889
+ }
1890
+
1891
+ .deep-orange-text.text-darken-4 {
1892
+ color: #bf360c !important;
1893
+ }
1894
+
1895
+ .deep-orange.accent-1 {
1896
+ background-color: #ff9e80 !important;
1897
+ }
1898
+
1899
+ .deep-orange-text.text-accent-1 {
1900
+ color: #ff9e80 !important;
1901
+ }
1902
+
1903
+ .deep-orange.accent-2 {
1904
+ background-color: #ff6e40 !important;
1905
+ }
1906
+
1907
+ .deep-orange-text.text-accent-2 {
1908
+ color: #ff6e40 !important;
1909
+ }
1910
+
1911
+ .deep-orange.accent-3 {
1912
+ background-color: #ff3d00 !important;
1913
+ }
1914
+
1915
+ .deep-orange-text.text-accent-3 {
1916
+ color: #ff3d00 !important;
1917
+ }
1918
+
1919
+ .deep-orange.accent-4 {
1920
+ background-color: #dd2c00 !important;
1921
+ }
1922
+
1923
+ .deep-orange-text.text-accent-4 {
1924
+ color: #dd2c00 !important;
1925
+ }
1926
+
1927
+ .brown {
1928
+ background-color: #795548 !important;
1929
+ }
1930
+
1931
+ .brown-text {
1932
+ color: #795548 !important;
1933
+ }
1934
+
1935
+ .brown.lighten-5 {
1936
+ background-color: #efebe9 !important;
1937
+ }
1938
+
1939
+ .brown-text.text-lighten-5 {
1940
+ color: #efebe9 !important;
1941
+ }
1942
+
1943
+ .brown.lighten-4 {
1944
+ background-color: #d7ccc8 !important;
1945
+ }
1946
+
1947
+ .brown-text.text-lighten-4 {
1948
+ color: #d7ccc8 !important;
1949
+ }
1950
+
1951
+ .brown.lighten-3 {
1952
+ background-color: #bcaaa4 !important;
1953
+ }
1954
+
1955
+ .brown-text.text-lighten-3 {
1956
+ color: #bcaaa4 !important;
1957
+ }
1958
+
1959
+ .brown.lighten-2 {
1960
+ background-color: #a1887f !important;
1961
+ }
1962
+
1963
+ .brown-text.text-lighten-2 {
1964
+ color: #a1887f !important;
1965
+ }
1966
+
1967
+ .brown.lighten-1 {
1968
+ background-color: #8d6e63 !important;
1969
+ }
1970
+
1971
+ .brown-text.text-lighten-1 {
1972
+ color: #8d6e63 !important;
1973
+ }
1974
+
1975
+ .brown.darken-1 {
1976
+ background-color: #6d4c41 !important;
1977
+ }
1978
+
1979
+ .brown-text.text-darken-1 {
1980
+ color: #6d4c41 !important;
1981
+ }
1982
+
1983
+ .brown.darken-2 {
1984
+ background-color: #5d4037 !important;
1985
+ }
1986
+
1987
+ .brown-text.text-darken-2 {
1988
+ color: #5d4037 !important;
1989
+ }
1990
+
1991
+ .brown.darken-3 {
1992
+ background-color: #4e342e !important;
1993
+ }
1994
+
1995
+ .brown-text.text-darken-3 {
1996
+ color: #4e342e !important;
1997
+ }
1998
+
1999
+ .brown.darken-4 {
2000
+ background-color: #3e2723 !important;
2001
+ }
2002
+
2003
+ .brown-text.text-darken-4 {
2004
+ color: #3e2723 !important;
2005
+ }
2006
+
2007
+ .blue-grey {
2008
+ background-color: #607d8b !important;
2009
+ }
2010
+
2011
+ .blue-grey-text {
2012
+ color: #607d8b !important;
2013
+ }
2014
+
2015
+ .blue-grey.lighten-5 {
2016
+ background-color: #eceff1 !important;
2017
+ }
2018
+
2019
+ .blue-grey-text.text-lighten-5 {
2020
+ color: #eceff1 !important;
2021
+ }
2022
+
2023
+ .blue-grey.lighten-4 {
2024
+ background-color: #cfd8dc !important;
2025
+ }
2026
+
2027
+ .blue-grey-text.text-lighten-4 {
2028
+ color: #cfd8dc !important;
2029
+ }
2030
+
2031
+ .blue-grey.lighten-3 {
2032
+ background-color: #b0bec5 !important;
2033
+ }
2034
+
2035
+ .blue-grey-text.text-lighten-3 {
2036
+ color: #b0bec5 !important;
2037
+ }
2038
+
2039
+ .blue-grey.lighten-2 {
2040
+ background-color: #90a4ae !important;
2041
+ }
2042
+
2043
+ .blue-grey-text.text-lighten-2 {
2044
+ color: #90a4ae !important;
2045
+ }
2046
+
2047
+ .blue-grey.lighten-1 {
2048
+ background-color: #78909c !important;
2049
+ }
2050
+
2051
+ .blue-grey-text.text-lighten-1 {
2052
+ color: #78909c !important;
2053
+ }
2054
+
2055
+ .blue-grey.darken-1 {
2056
+ background-color: #546e7a !important;
2057
+ }
2058
+
2059
+ .blue-grey-text.text-darken-1 {
2060
+ color: #546e7a !important;
2061
+ }
2062
+
2063
+ .blue-grey.darken-2 {
2064
+ background-color: #455a64 !important;
2065
+ }
2066
+
2067
+ .blue-grey-text.text-darken-2 {
2068
+ color: #455a64 !important;
2069
+ }
2070
+
2071
+ .blue-grey.darken-3 {
2072
+ background-color: #37474f !important;
2073
+ }
2074
+
2075
+ .blue-grey-text.text-darken-3 {
2076
+ color: #37474f !important;
2077
+ }
2078
+
2079
+ .blue-grey.darken-4 {
2080
+ background-color: #263238 !important;
2081
+ }
2082
+
2083
+ .blue-grey-text.text-darken-4 {
2084
+ color: #263238 !important;
2085
+ }
2086
+
2087
+ .grey {
2088
+ background-color: #9e9e9e !important;
2089
+ }
2090
+
2091
+ .grey-text {
2092
+ color: #9e9e9e !important;
2093
+ }
2094
+
2095
+ .grey.lighten-5 {
2096
+ background-color: #fafafa !important;
2097
+ }
2098
+
2099
+ .grey-text.text-lighten-5 {
2100
+ color: #fafafa !important;
2101
+ }
2102
+
2103
+ .grey.lighten-4 {
2104
+ background-color: #f5f5f5 !important;
2105
+ }
2106
+
2107
+ .grey-text.text-lighten-4 {
2108
+ color: #f5f5f5 !important;
2109
+ }
2110
+
2111
+ .grey.lighten-3 {
2112
+ background-color: #eeeeee !important;
2113
+ }
2114
+
2115
+ .grey-text.text-lighten-3 {
2116
+ color: #eeeeee !important;
2117
+ }
2118
+
2119
+ .grey.lighten-2 {
2120
+ background-color: #e0e0e0 !important;
2121
+ }
2122
+
2123
+ .grey-text.text-lighten-2 {
2124
+ color: #e0e0e0 !important;
2125
+ }
2126
+
2127
+ .grey.lighten-1 {
2128
+ background-color: #bdbdbd !important;
2129
+ }
2130
+
2131
+ .grey-text.text-lighten-1 {
2132
+ color: #bdbdbd !important;
2133
+ }
2134
+
2135
+ .grey.darken-1 {
2136
+ background-color: #757575 !important;
2137
+ }
2138
+
2139
+ .grey-text.text-darken-1 {
2140
+ color: #757575 !important;
2141
+ }
2142
+
2143
+ .grey.darken-2 {
2144
+ background-color: #616161 !important;
2145
+ }
2146
+
2147
+ .grey-text.text-darken-2 {
2148
+ color: #616161 !important;
2149
+ }
2150
+
2151
+ .grey.darken-3 {
2152
+ background-color: #424242 !important;
2153
+ }
2154
+
2155
+ .grey-text.text-darken-3 {
2156
+ color: #424242 !important;
2157
+ }
2158
+
2159
+ .grey.darken-4 {
2160
+ background-color: #212121 !important;
2161
+ }
2162
+
2163
+ .grey-text.text-darken-4 {
2164
+ color: #212121 !important;
2165
+ }
2166
+
2167
+ .black {
2168
+ background-color: #000000 !important;
2169
+ }
2170
+
2171
+ .black-text {
2172
+ color: #000000 !important;
2173
+ }
2174
+
2175
+ .white {
2176
+ background-color: #FFFFFF !important;
2177
+ }
2178
+
2179
+ .white-text {
2180
+ color: #FFFFFF !important;
2181
+ }
2182
+
2183
+ .transparent {
2184
+ background-color: transparent !important;
2185
+ }
2186
+
2187
+ .transparent-text {
2188
+ color: transparent !important;
2189
+ }
2190
+
2191
+ /* This is needed for some mobile phones to display the Google Icon font properly */
2192
+ .material-icons {
2193
+ text-rendering: optimizeLegibility;
2194
+ font-feature-settings: "liga";
2195
+ }
2196
+
2197
+ .chip {
2198
+ display: inline-block;
2199
+ height: 32px;
2200
+ font-size: 13px;
2201
+ font-weight: 500;
2202
+ color: rgba(0, 0, 0, 0.6);
2203
+ line-height: 32px;
2204
+ padding: 0 12px;
2205
+ border-radius: 16px;
2206
+ background-color: #e4e4e4;
2207
+ margin-bottom: 5px;
2208
+ margin-right: 5px;
2209
+ }
2210
+ .chip:focus {
2211
+ outline: none;
2212
+ background-color: #26a69a;
2213
+ color: #fff;
2214
+ }
2215
+ .chip > img {
2216
+ float: left;
2217
+ margin: 0 8px 0 -12px;
2218
+ height: 32px;
2219
+ width: 32px;
2220
+ border-radius: 50%;
2221
+ }
2222
+ .chip .close {
2223
+ cursor: pointer;
2224
+ float: right;
2225
+ font-size: 16px;
2226
+ line-height: 32px;
2227
+ padding-left: 8px;
2228
+ }
2229
+
2230
+ .chips {
2231
+ border: none;
2232
+ border-bottom: 1px solid #9e9e9e;
2233
+ box-shadow: none;
2234
+ margin: 0 0 8px 0;
2235
+ min-height: 45px;
2236
+ outline: none;
2237
+ transition: all 0.3s;
2238
+ }
2239
+ .chips.focus {
2240
+ border-bottom: 1px solid #26a69a;
2241
+ box-shadow: 0 1px 0 0 #26a69a;
2242
+ }
2243
+ .chips:hover {
2244
+ cursor: text;
2245
+ }
2246
+ .chips .input {
2247
+ background: none;
2248
+ border: 0;
2249
+ color: rgba(0, 0, 0, 0.6);
2250
+ display: inline-block;
2251
+ font-size: 16px;
2252
+ height: 3rem;
2253
+ line-height: 32px;
2254
+ outline: 0;
2255
+ margin: 0;
2256
+ padding: 0 !important;
2257
+ width: 120px !important;
2258
+ }
2259
+ .chips .input:focus {
2260
+ border: 0 !important;
2261
+ box-shadow: none !important;
2262
+ }
2263
+ .chips .autocomplete-content {
2264
+ margin-top: 0;
2265
+ margin-bottom: 0;
2266
+ }
2267
+
2268
+ .prefix ~ .chips {
2269
+ margin-left: 3rem;
2270
+ width: 92%;
2271
+ width: calc(100% - 3rem);
2272
+ }
2273
+
2274
+ .chips:empty ~ label {
2275
+ font-size: 0.8rem;
2276
+ transform: translateY(-140%);
2277
+ }
2278
+
2279
+ html {
2280
+ box-sizing: border-box;
2281
+ }
2282
+
2283
+ *, *:before, *:after {
2284
+ box-sizing: inherit;
2285
+ }
2286
+
2287
+ button,
2288
+ input,
2289
+ optgroup,
2290
+ select,
2291
+ textarea {
2292
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
2293
+ }
2294
+
2295
+ ul:not(.browser-default) {
2296
+ padding-left: 0;
2297
+ list-style-type: none;
2298
+ }
2299
+ ul:not(.browser-default) > li {
2300
+ list-style-type: none;
2301
+ }
2302
+
2303
+ a {
2304
+ color: #039be5;
2305
+ text-decoration: none;
2306
+ -webkit-tap-highlight-color: transparent;
2307
+ }
2308
+
2309
+ .valign-wrapper {
2310
+ display: flex;
2311
+ align-items: center;
2312
+ }
2313
+
2314
+ .clearfix {
2315
+ clear: both;
2316
+ }
2317
+
2318
+ .z-depth-0 {
2319
+ box-shadow: none !important;
2320
+ }
2321
+
2322
+ /* 2dp elevation modified*/
2323
+ .z-depth-1, .toast, .card-panel, .card {
2324
+ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
2325
+ }
2326
+
2327
+ .z-depth-1-half {
2328
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
2329
+ }
2330
+
2331
+ /* 6dp elevation modified*/
2332
+ .z-depth-2 {
2333
+ box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
2334
+ }
2335
+
2336
+ /* 12dp elevation modified*/
2337
+ .z-depth-3 {
2338
+ box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
2339
+ }
2340
+
2341
+ /* 16dp elevation */
2342
+ .z-depth-4 {
2343
+ box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
2344
+ }
2345
+
2346
+ /* 24dp elevation */
2347
+ .z-depth-5 {
2348
+ box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
2349
+ }
2350
+
2351
+ .hoverable {
2352
+ transition: box-shadow 0.25s;
2353
+ }
2354
+ .hoverable:hover {
2355
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2356
+ }
2357
+
2358
+ .divider {
2359
+ height: 1px;
2360
+ overflow: hidden;
2361
+ background-color: #e0e0e0;
2362
+ }
2363
+
2364
+ blockquote {
2365
+ margin: 20px 0;
2366
+ padding-left: 1.5rem;
2367
+ border-left: 5px solid #ee6e73;
2368
+ }
2369
+
2370
+ i {
2371
+ line-height: inherit;
2372
+ }
2373
+ i.left {
2374
+ float: left;
2375
+ margin-right: 15px;
2376
+ }
2377
+ i.right {
2378
+ float: right;
2379
+ margin-left: 15px;
2380
+ }
2381
+ i.tiny {
2382
+ font-size: 1rem;
2383
+ }
2384
+ i.small {
2385
+ font-size: 2rem;
2386
+ }
2387
+ i.medium {
2388
+ font-size: 4rem;
2389
+ }
2390
+ i.large {
2391
+ font-size: 6rem;
2392
+ }
2393
+
2394
+ img.responsive-img,
2395
+ video.responsive-video {
2396
+ max-width: 100%;
2397
+ height: auto;
2398
+ }
2399
+
2400
+ .pagination li {
2401
+ display: inline-block;
2402
+ border-radius: 2px;
2403
+ text-align: center;
2404
+ vertical-align: top;
2405
+ height: 30px;
2406
+ }
2407
+ .pagination li a {
2408
+ color: #444;
2409
+ display: inline-block;
2410
+ font-size: 1.2rem;
2411
+ padding: 0 10px;
2412
+ line-height: 30px;
2413
+ }
2414
+ .pagination li.active a {
2415
+ color: #fff;
2416
+ }
2417
+ .pagination li.active {
2418
+ background-color: #ee6e73;
2419
+ }
2420
+ .pagination li.disabled a {
2421
+ cursor: default;
2422
+ color: #999;
2423
+ }
2424
+ .pagination li i {
2425
+ font-size: 2rem;
2426
+ }
2427
+ .pagination li.pages ul li {
2428
+ display: inline-block;
2429
+ float: none;
2430
+ }
2431
+
2432
+ @media only screen and (max-width : 992px) {
2433
+ .pagination {
2434
+ width: 100%;
2435
+ }
2436
+ .pagination li.prev,
2437
+ .pagination li.next {
2438
+ width: 10%;
2439
+ }
2440
+ .pagination li.pages {
2441
+ width: 80%;
2442
+ overflow: hidden;
2443
+ white-space: nowrap;
2444
+ }
2445
+ }
2446
+ .breadcrumb {
2447
+ display: inline-block;
2448
+ font-size: 18px;
2449
+ color: rgba(255, 255, 255, 0.7);
2450
+ }
2451
+ .breadcrumb i,
2452
+ .breadcrumb [class^=mdi-], .breadcrumb [class*=mdi-],
2453
+ .breadcrumb i.material-icons {
2454
+ display: inline-block;
2455
+ float: left;
2456
+ font-size: 24px;
2457
+ }
2458
+ .breadcrumb:before {
2459
+ content: "\e5cc";
2460
+ color: rgba(255, 255, 255, 0.7);
2461
+ vertical-align: top;
2462
+ display: inline-block;
2463
+ font-family: "Material Icons";
2464
+ font-weight: normal;
2465
+ font-style: normal;
2466
+ font-size: 25px;
2467
+ margin: 0 10px 0 8px;
2468
+ -webkit-font-smoothing: antialiased;
2469
+ float: left;
2470
+ }
2471
+ .breadcrumb:first-child:before {
2472
+ display: none;
2473
+ }
2474
+ .breadcrumb:last-child {
2475
+ color: #fff;
2476
+ }
2477
+
2478
+ .parallax-container {
2479
+ position: relative;
2480
+ overflow: hidden;
2481
+ height: 500px;
2482
+ }
2483
+ .parallax-container .parallax {
2484
+ position: absolute;
2485
+ top: 0;
2486
+ left: 0;
2487
+ right: 0;
2488
+ bottom: 0;
2489
+ z-index: -1;
2490
+ }
2491
+ .parallax-container .parallax img {
2492
+ opacity: 0;
2493
+ position: absolute;
2494
+ left: 50%;
2495
+ bottom: 0;
2496
+ min-width: 100%;
2497
+ min-height: 100%;
2498
+ transform: translate3d(0, 0, 0);
2499
+ transform: translateX(-50%);
2500
+ }
2501
+
2502
+ .pin-top, .pin-bottom {
2503
+ position: relative;
2504
+ }
2505
+
2506
+ .pinned {
2507
+ position: fixed !important;
2508
+ }
2509
+
2510
+ /*********************
2511
+ Transition Classes
2512
+ **********************/
2513
+ ul.staggered-list li {
2514
+ opacity: 0;
2515
+ }
2516
+
2517
+ .fade-in {
2518
+ opacity: 0;
2519
+ transform-origin: 0 50%;
2520
+ }
2521
+
2522
+ /*********************
2523
+ Media Query Classes
2524
+ **********************/
2525
+ @media only screen and (max-width : 600px) {
2526
+ .hide-on-small-only, .hide-on-small-and-down {
2527
+ display: none !important;
2528
+ }
2529
+ }
2530
+
2531
+ @media only screen and (max-width : 992px) {
2532
+ .hide-on-med-and-down {
2533
+ display: none !important;
2534
+ }
2535
+ }
2536
+
2537
+ @media only screen and (min-width : 601px) {
2538
+ .hide-on-med-and-up {
2539
+ display: none !important;
2540
+ }
2541
+ }
2542
+
2543
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
2544
+ .hide-on-med-only {
2545
+ display: none !important;
2546
+ }
2547
+ }
2548
+
2549
+ @media only screen and (min-width : 993px) {
2550
+ .hide-on-large-only {
2551
+ display: none !important;
2552
+ }
2553
+ }
2554
+
2555
+ @media only screen and (min-width : 1201px) {
2556
+ .hide-on-extra-large-only {
2557
+ display: none !important;
2558
+ }
2559
+ }
2560
+
2561
+ @media only screen and (min-width : 1201px) {
2562
+ .show-on-extra-large {
2563
+ display: block !important;
2564
+ }
2565
+ }
2566
+
2567
+ @media only screen and (min-width : 993px) {
2568
+ .show-on-large {
2569
+ display: block !important;
2570
+ }
2571
+ }
2572
+
2573
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
2574
+ .show-on-medium {
2575
+ display: block !important;
2576
+ }
2577
+ }
2578
+
2579
+ @media only screen and (max-width : 600px) {
2580
+ .show-on-small {
2581
+ display: block !important;
2582
+ }
2583
+ }
2584
+
2585
+ @media only screen and (min-width : 601px) {
2586
+ .show-on-medium-and-up {
2587
+ display: block !important;
2588
+ }
2589
+ }
2590
+
2591
+ @media only screen and (max-width : 992px) {
2592
+ .show-on-medium-and-down {
2593
+ display: block !important;
2594
+ }
2595
+ }
2596
+
2597
+ @media only screen and (max-width : 600px) {
2598
+ .center-on-small-only {
2599
+ text-align: center;
2600
+ }
2601
+ }
2602
+
2603
+ .page-footer {
2604
+ padding-top: 20px;
2605
+ color: #fff;
2606
+ background-color: #ee6e73;
2607
+ }
2608
+ .page-footer .footer-copyright {
2609
+ overflow: hidden;
2610
+ min-height: 50px;
2611
+ display: flex;
2612
+ align-items: center;
2613
+ justify-content: space-between;
2614
+ padding: 10px 0px;
2615
+ color: rgba(255, 255, 255, 0.8);
2616
+ background-color: rgba(51, 51, 51, 0.08);
2617
+ }
2618
+
2619
+ table, th, td {
2620
+ border: none;
2621
+ }
2622
+
2623
+ table {
2624
+ width: 100%;
2625
+ display: table;
2626
+ border-collapse: collapse;
2627
+ border-spacing: 0;
2628
+ }
2629
+ table.striped tr {
2630
+ border-bottom: none;
2631
+ }
2632
+ table.striped > tbody > tr:nth-child(odd) {
2633
+ background-color: rgba(242, 242, 242, 0.5);
2634
+ }
2635
+ table.striped > tbody > tr > td {
2636
+ border-radius: 0;
2637
+ }
2638
+ table.highlight > tbody > tr {
2639
+ transition: background-color 0.25s ease;
2640
+ }
2641
+ table.highlight > tbody > tr:hover {
2642
+ background-color: rgba(242, 242, 242, 0.5);
2643
+ }
2644
+ table.centered thead tr th, table.centered tbody tr td {
2645
+ text-align: center;
2646
+ }
2647
+
2648
+ tr {
2649
+ border-bottom: 1px solid rgba(0, 0, 0, 0.12);
2650
+ }
2651
+
2652
+ td, th {
2653
+ padding: 15px 5px;
2654
+ display: table-cell;
2655
+ text-align: left;
2656
+ vertical-align: middle;
2657
+ border-radius: 2px;
2658
+ }
2659
+
2660
+ @media only screen and (max-width : 992px) {
2661
+ table.responsive-table {
2662
+ width: 100%;
2663
+ border-collapse: collapse;
2664
+ border-spacing: 0;
2665
+ display: block;
2666
+ position: relative;
2667
+ /* sort out borders */
2668
+ }
2669
+ table.responsive-table td:empty:before {
2670
+ content: " ";
2671
+ }
2672
+ table.responsive-table th,
2673
+ table.responsive-table td {
2674
+ margin: 0;
2675
+ vertical-align: top;
2676
+ }
2677
+ table.responsive-table th {
2678
+ text-align: left;
2679
+ }
2680
+ table.responsive-table thead {
2681
+ display: block;
2682
+ float: left;
2683
+ }
2684
+ table.responsive-table thead tr {
2685
+ display: block;
2686
+ padding: 0 10px 0 0;
2687
+ }
2688
+ table.responsive-table thead tr th::before {
2689
+ content: " ";
2690
+ }
2691
+ table.responsive-table tbody {
2692
+ display: block;
2693
+ width: auto;
2694
+ position: relative;
2695
+ overflow-x: auto;
2696
+ white-space: nowrap;
2697
+ }
2698
+ table.responsive-table tbody tr {
2699
+ display: inline-block;
2700
+ vertical-align: top;
2701
+ }
2702
+ table.responsive-table th {
2703
+ display: block;
2704
+ text-align: right;
2705
+ }
2706
+ table.responsive-table td {
2707
+ display: block;
2708
+ min-height: 1.25em;
2709
+ text-align: left;
2710
+ }
2711
+ table.responsive-table tr {
2712
+ border-bottom: none;
2713
+ padding: 0 10px;
2714
+ }
2715
+ table.responsive-table thead {
2716
+ border: 0;
2717
+ border-right: 1px solid rgba(0, 0, 0, 0.12);
2718
+ }
2719
+ }
2720
+ .collection {
2721
+ margin: 0.5rem 0 1rem 0;
2722
+ border: 1px solid var(--mm-border-color, #e0e0e0);
2723
+ border-radius: 2px;
2724
+ overflow: hidden;
2725
+ position: relative;
2726
+ }
2727
+ .collection .collection-item {
2728
+ background-color: var(--mm-surface-color, #fff);
2729
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
2730
+ line-height: 1.5rem;
2731
+ padding: 10px 20px;
2732
+ margin: 0;
2733
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
2734
+ }
2735
+ .collection .collection-item.avatar {
2736
+ min-height: 84px;
2737
+ padding-left: 72px;
2738
+ position: relative;
2739
+ }
2740
+ .collection .collection-item.avatar:not(.circle-clipper) > .circle,
2741
+ .collection .collection-item.avatar :not(.circle-clipper) > .circle {
2742
+ position: absolute;
2743
+ width: 42px;
2744
+ height: 42px;
2745
+ overflow: hidden;
2746
+ left: 15px;
2747
+ display: inline-block;
2748
+ vertical-align: middle;
2749
+ }
2750
+ .collection .collection-item.avatar i.circle {
2751
+ font-size: 18px;
2752
+ line-height: 42px;
2753
+ color: #fff;
2754
+ background-color: #999;
2755
+ text-align: center;
2756
+ }
2757
+ .collection .collection-item.avatar .title {
2758
+ font-size: 16px;
2759
+ }
2760
+ .collection .collection-item.avatar p {
2761
+ margin: 0;
2762
+ }
2763
+ .collection .collection-item.avatar .secondary-content {
2764
+ position: absolute;
2765
+ top: 16px;
2766
+ right: 16px;
2767
+ }
2768
+ .collection .collection-item:last-child {
2769
+ border-bottom: none;
2770
+ }
2771
+ .collection .collection-item.active {
2772
+ background-color: #26a69a;
2773
+ color: rgb(234.25, 250.25, 248.75);
2774
+ }
2775
+ .collection .collection-item.active .secondary-content {
2776
+ color: #fff;
2777
+ }
2778
+ .collection a.collection-item {
2779
+ display: block;
2780
+ transition: 0.25s;
2781
+ color: #26a69a;
2782
+ }
2783
+ .collection a.collection-item:not(.active):hover {
2784
+ background-color: #ddd;
2785
+ }
2786
+ .collection.with-header .collection-header {
2787
+ background-color: var(--mm-surface-color, #fff);
2788
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
2789
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
2790
+ padding: 10px 20px;
2791
+ }
2792
+ .collection.with-header .collection-item {
2793
+ padding-left: 30px;
2794
+ }
2795
+ .collection.with-header .collection-item.avatar {
2796
+ padding-left: 72px;
2797
+ }
2798
+
2799
+ .secondary-content {
2800
+ float: right;
2801
+ color: #26a69a;
2802
+ }
2803
+
2804
+ .collapsible .collection {
2805
+ margin: 0;
2806
+ border: none;
2807
+ }
2808
+
2809
+ .video-container {
2810
+ position: relative;
2811
+ padding-bottom: 56.25%;
2812
+ height: 0;
2813
+ overflow: hidden;
2814
+ }
2815
+ .video-container iframe, .video-container object, .video-container embed {
2816
+ position: absolute;
2817
+ top: 0;
2818
+ left: 0;
2819
+ width: 100%;
2820
+ height: 100%;
2821
+ }
2822
+
2823
+ .progress {
2824
+ position: relative;
2825
+ height: 4px;
2826
+ display: block;
2827
+ width: 100%;
2828
+ background-color: #acece6;
2829
+ border-radius: 2px;
2830
+ margin: 0.5rem 0 1rem 0;
2831
+ overflow: hidden;
2832
+ }
2833
+ .progress .determinate {
2834
+ position: absolute;
2835
+ top: 0;
2836
+ left: 0;
2837
+ bottom: 0;
2838
+ background-color: #26a69a;
2839
+ transition: width 0.3s linear;
2840
+ }
2841
+ .progress .indeterminate {
2842
+ background-color: #26a69a;
2843
+ }
2844
+ .progress .indeterminate:before {
2845
+ content: "";
2846
+ position: absolute;
2847
+ background-color: inherit;
2848
+ top: 0;
2849
+ left: 0;
2850
+ bottom: 0;
2851
+ will-change: left, right;
2852
+ animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2853
+ }
2854
+ .progress .indeterminate:after {
2855
+ content: "";
2856
+ position: absolute;
2857
+ background-color: inherit;
2858
+ top: 0;
2859
+ left: 0;
2860
+ bottom: 0;
2861
+ will-change: left, right;
2862
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2863
+ animation-delay: 1.15s;
2864
+ }
2865
+
2866
+ @keyframes indeterminate {
2867
+ 0% {
2868
+ left: -35%;
2869
+ right: 100%;
2870
+ }
2871
+ 60% {
2872
+ left: 100%;
2873
+ right: -90%;
2874
+ }
2875
+ 100% {
2876
+ left: 100%;
2877
+ right: -90%;
2878
+ }
2879
+ }
2880
+ @keyframes indeterminate-short {
2881
+ 0% {
2882
+ left: -200%;
2883
+ right: 100%;
2884
+ }
2885
+ 60% {
2886
+ left: 107%;
2887
+ right: -8%;
2888
+ }
2889
+ 100% {
2890
+ left: 107%;
2891
+ right: -8%;
2892
+ }
2893
+ }
2894
+ /*******************
2895
+ Utility Classes
2896
+ *******************/
2897
+ .hide {
2898
+ display: none !important;
2899
+ }
2900
+
2901
+ .left-align {
2902
+ text-align: left;
2903
+ }
2904
+
2905
+ .right-align {
2906
+ text-align: right;
2907
+ }
2908
+
2909
+ .center, .center-align {
2910
+ text-align: center;
2911
+ }
2912
+
2913
+ .left {
2914
+ float: left !important;
2915
+ }
2916
+
2917
+ .right {
2918
+ float: right !important;
2919
+ }
2920
+
2921
+ .no-select {
2922
+ user-select: none;
2923
+ }
2924
+
2925
+ .circle {
2926
+ border-radius: 50%;
2927
+ }
2928
+
2929
+ .center-block {
2930
+ display: block;
2931
+ margin-left: auto;
2932
+ margin-right: auto;
2933
+ }
2934
+
2935
+ .truncate {
2936
+ display: block;
2937
+ white-space: nowrap;
2938
+ overflow: hidden;
2939
+ text-overflow: ellipsis;
2940
+ }
2941
+
2942
+ .no-padding {
2943
+ padding: 0 !important;
2944
+ }
2945
+
2946
+ .card-panel {
2947
+ transition: box-shadow 0.25s;
2948
+ padding: 24px;
2949
+ margin: 0.5rem 0 1rem 0;
2950
+ border-radius: 2px;
2951
+ background-color: #fff;
2952
+ }
2953
+
2954
+ .card {
2955
+ position: relative;
2956
+ margin: 0.5rem 0 1rem 0;
2957
+ background-color: #fff;
2958
+ transition: box-shadow 0.25s;
2959
+ border-radius: 2px;
2960
+ }
2961
+ .card .card-title {
2962
+ font-size: 24px;
2963
+ font-weight: 300;
2964
+ }
2965
+ .card .card-title.activator {
2966
+ cursor: pointer;
2967
+ }
2968
+ .card.small, .card.medium, .card.large {
2969
+ position: relative;
2970
+ }
2971
+ .card.small .card-image, .card.medium .card-image, .card.large .card-image {
2972
+ max-height: 60%;
2973
+ overflow: hidden;
2974
+ }
2975
+ .card.small .card-image + .card-content, .card.medium .card-image + .card-content, .card.large .card-image + .card-content {
2976
+ max-height: 40%;
2977
+ }
2978
+ .card.small .card-content, .card.medium .card-content, .card.large .card-content {
2979
+ max-height: 100%;
2980
+ overflow: hidden;
2981
+ }
2982
+ .card.small .card-action, .card.medium .card-action, .card.large .card-action {
2983
+ position: absolute;
2984
+ bottom: 0;
2985
+ left: 0;
2986
+ right: 0;
2987
+ }
2988
+ .card.small {
2989
+ height: 300px;
2990
+ }
2991
+ .card.medium {
2992
+ height: 400px;
2993
+ }
2994
+ .card.large {
2995
+ height: 500px;
2996
+ }
2997
+ .card.horizontal {
2998
+ display: flex;
2999
+ }
3000
+ .card.horizontal.small .card-image, .card.horizontal.medium .card-image, .card.horizontal.large .card-image {
3001
+ height: 100%;
3002
+ max-height: none;
3003
+ overflow: visible;
3004
+ }
3005
+ .card.horizontal.small .card-image img, .card.horizontal.medium .card-image img, .card.horizontal.large .card-image img {
3006
+ height: 100%;
3007
+ }
3008
+ .card.horizontal .card-image {
3009
+ max-width: 50%;
3010
+ }
3011
+ .card.horizontal .card-image img {
3012
+ border-radius: 2px 0 0 2px;
3013
+ max-width: 100%;
3014
+ width: auto;
3015
+ }
3016
+ .card.horizontal .card-stacked {
3017
+ display: flex;
3018
+ flex-direction: column;
3019
+ flex: 1;
3020
+ position: relative;
3021
+ }
3022
+ .card.horizontal .card-stacked .card-content {
3023
+ flex-grow: 1;
3024
+ }
3025
+ .card.sticky-action .card-action {
3026
+ z-index: 2;
3027
+ }
3028
+ .card.sticky-action .card-reveal {
3029
+ z-index: 1;
3030
+ padding-bottom: 64px;
3031
+ }
3032
+ .card .card-image {
3033
+ position: relative;
3034
+ }
3035
+ .card .card-image img {
3036
+ display: block;
3037
+ border-radius: 2px 2px 0 0;
3038
+ position: relative;
3039
+ left: 0;
3040
+ right: 0;
3041
+ top: 0;
3042
+ bottom: 0;
3043
+ width: 100%;
3044
+ }
3045
+ .card .card-image .card-title {
3046
+ color: #fff;
3047
+ position: absolute;
3048
+ bottom: 0;
3049
+ left: 0;
3050
+ max-width: 100%;
3051
+ padding: 24px;
3052
+ }
3053
+ .card .card-content {
3054
+ padding: 24px;
3055
+ border-radius: 0 0 2px 2px;
3056
+ }
3057
+ .card .card-content p {
3058
+ margin: 0;
3059
+ }
3060
+ .card .card-content .card-title {
3061
+ display: block;
3062
+ line-height: 32px;
3063
+ margin-bottom: 8px;
3064
+ }
3065
+ .card .card-content .card-title i {
3066
+ line-height: 32px;
3067
+ }
3068
+ .card .card-action {
3069
+ background-color: inherit;
3070
+ border-top: 1px solid rgba(160, 160, 160, 0.2);
3071
+ position: relative;
3072
+ padding: 16px 24px;
3073
+ }
3074
+ .card .card-action:last-child {
3075
+ border-radius: 0 0 2px 2px;
3076
+ }
3077
+ .card .card-action a:not(.btn):not(.btn-large):not(.btn-floating) {
3078
+ color: #ffab40;
3079
+ margin-right: 24px;
3080
+ transition: color 0.3s ease;
3081
+ text-transform: uppercase;
3082
+ }
3083
+ .card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
3084
+ color: rgb(255, 215.8586387435, 166);
3085
+ }
3086
+ .card .card-reveal {
3087
+ padding: 24px;
3088
+ position: absolute;
3089
+ background-color: #fff;
3090
+ width: 100%;
3091
+ overflow-y: auto;
3092
+ left: 0;
3093
+ top: 100%;
3094
+ height: 100%;
3095
+ z-index: 3;
3096
+ display: none;
3097
+ }
3098
+ .card .card-reveal .card-title {
3099
+ cursor: pointer;
3100
+ display: block;
3101
+ }
3102
+
3103
+ #toast-container {
3104
+ display: block;
3105
+ position: fixed;
3106
+ z-index: 10000;
3107
+ }
3108
+ @media only screen and (max-width : 600px) {
3109
+ #toast-container {
3110
+ min-width: 100%;
3111
+ bottom: 0%;
3112
+ }
3113
+ }
3114
+ @media only screen and (min-width : 601px) and (max-width : 992px) {
3115
+ #toast-container {
3116
+ left: 5%;
3117
+ bottom: 7%;
3118
+ max-width: 90%;
3119
+ }
3120
+ }
3121
+ @media only screen and (min-width : 993px) {
3122
+ #toast-container {
3123
+ top: 10%;
3124
+ right: 7%;
3125
+ max-width: 86%;
3126
+ }
3127
+ }
3128
+
3129
+ .toast {
3130
+ border-radius: 2px;
3131
+ top: 35px;
3132
+ width: auto;
3133
+ margin-top: 10px;
3134
+ position: relative;
3135
+ max-width: 100%;
3136
+ height: auto;
3137
+ min-height: 48px;
3138
+ line-height: 1.5em;
3139
+ background-color: #323232;
3140
+ padding: 10px 25px;
3141
+ font-size: 1.1rem;
3142
+ font-weight: 300;
3143
+ color: #fff;
3144
+ display: flex;
3145
+ align-items: center;
3146
+ justify-content: space-between;
3147
+ cursor: default;
3148
+ }
3149
+ .toast .toast-action {
3150
+ color: #eeff41;
3151
+ font-weight: 500;
3152
+ margin-right: -25px;
3153
+ margin-left: 3rem;
3154
+ }
3155
+ .toast.rounded {
3156
+ border-radius: 24px;
3157
+ }
3158
+ @media only screen and (max-width : 600px) {
3159
+ .toast {
3160
+ width: 100%;
3161
+ border-radius: 0;
3162
+ }
3163
+ }
3164
+
3165
+ .pulse {
3166
+ overflow: visible;
3167
+ position: relative;
3168
+ }
3169
+ .pulse::before {
3170
+ content: "";
3171
+ display: block;
3172
+ position: absolute;
3173
+ width: 100%;
3174
+ height: 100%;
3175
+ top: 0;
3176
+ left: 0;
3177
+ background-color: inherit;
3178
+ border-radius: inherit;
3179
+ transition: opacity 0.3s, transform 0.3s;
3180
+ animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
3181
+ z-index: -1;
3182
+ }
3183
+
3184
+ @keyframes pulse-animation {
3185
+ 0% {
3186
+ opacity: 1;
3187
+ transform: scale(1);
3188
+ }
3189
+ 50% {
3190
+ opacity: 0;
3191
+ transform: scale(1.5);
3192
+ }
3193
+ 100% {
3194
+ opacity: 0;
3195
+ transform: scale(1.5);
3196
+ }
3197
+ }