materialize-sass 0.96.1 → 0.96.2

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